aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2009-02-15 21:36:21 +0000
committerdos-reis <gdr@axiomatics.org>2009-02-15 21:36:21 +0000
commit54c2b07353f228554b92269a9a4e688683ae85d6 (patch)
tree846dd35b996287dcc63bbef1ab70f94c4eb99211 /src
parent79f5a19fba15519dfa7fe82f4dd1f0e91652cded (diff)
downloadopen-axiom-54c2b07353f228554b92269a9a4e688683ae85d6.tar.gz
* algebra/data.spad.pamphlet (ByteBuffer): Tidy. Manage size
explicitly. * algebra/net.spad.pamphlet (writeBytes!$InetClientStreamSocket): Convert buffer to array before calling VM function. (readBytes!$InetClientStreamSocket): Likewise. * interp/sys-utility.boot (makeByteBuffer): Don't ask for fill pointers.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog10
-rw-r--r--src/algebra/data.spad.pamphlet56
-rw-r--r--src/algebra/net.spad.pamphlet5
-rw-r--r--src/interp/sys-utility.boot3
-rw-r--r--src/share/algebra/browse.daase1278
-rw-r--r--src/share/algebra/category.daase1220
-rw-r--r--src/share/algebra/compress.daase1314
-rw-r--r--src/share/algebra/interp.daase8806
-rw-r--r--src/share/algebra/operation.daase25842
9 files changed, 19275 insertions, 19259 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 59a7ea4c..01ad0fac 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
+2009-02-15 Gabriel Dos Reis <gdr@cs.tamu.edu>
+
+ * algebra/data.spad.pamphlet (ByteBuffer): Tidy. Manage size
+ explicitly.
+ * algebra/net.spad.pamphlet (writeBytes!$InetClientStreamSocket):
+ Convert buffer to array before calling VM function.
+ (readBytes!$InetClientStreamSocket): Likewise.
+ * interp/sys-utility.boot (makeByteBuffer): Don't ask for fill
+ pointers.
+
2009-02-09 Gabriel Dos Reis <gdr@cs.tamu.edu>
* lib/openpty.c: #include <sys/ioctl.h>, <termios.h>, and
diff --git a/src/algebra/data.spad.pamphlet b/src/algebra/data.spad.pamphlet
index f40d8b1a..43a3b07d 100644
--- a/src/algebra/data.spad.pamphlet
+++ b/src/algebra/data.spad.pamphlet
@@ -214,6 +214,7 @@ import Byte
)abbrev domain BYTEBUF ByteBuffer
++ Author: Gabriel Dos Reis
++ Date Created: April 19, 2008
+++ Date Last Modified: February 15, 2009
++ Related Constructor:
++ Description:
++ ByteBuffer provides datatype for buffers of bytes. This domain
@@ -230,62 +231,67 @@ import Byte
++ Note: a value of type ByteBuffer is 0-based indexed, as opposed
++ Vector, but not unlike PrimitiveArray Byte.
ByteBuffer(): Public == Private where
- Public == Join(OneDimensionalArrayAggregate Byte, CoercibleTo String) with
+ Public == Join(OneDimensionalArrayAggregate Byte,_
+ CoercibleTo PrimitiveArray Byte,CoercibleTo String) with
byteBuffer: NonNegativeInteger -> %
++ byteBuffer(n) creates a buffer of capacity n, and length 0.
- _#: % -> NonNegativeInteger
- ++ #buf returns the number of active elements in the buffer.
capacity: % -> NonNegativeInteger
++ capacity(buf) returns the pre-allocated maximum size of `buf'.
setLength!: (%,NonNegativeInteger) -> NonNegativeInteger
++ setLength!(buf,n) sets the number of active bytes in the
++ `buf'. Error if `n' is more than the capacity.
+ finiteAggregate ++ A ByteBuffer object is a finite aggregate
Private == add
+ -- A buffer object is a pair of a simple array, and the count
+ -- of active number in the array. Note that we cannot use
+ -- Lisp-level fill pointers because that would not guarantee that
+ -- the implementation uses a simple representation, therefore
+ -- complicating FFI interface.
+ Rep == Record(ary: PrimitiveArray Byte, sz: NonNegativeInteger)
+
makeByteBuffer(n: NonNegativeInteger): % ==
- makeByteBuffer(n)$Lisp
+ per [makeByteBuffer(n)$Lisp,n]$Rep
- byteBuffer n ==
- buf := makeByteBuffer n
- setLength!(buf,0)
- buf
+ byteBuffer n == makeByteBuffer n
empty() == byteBuffer 0
- new(n,b) == makeByteBuffer(n,b)$Lisp
+ new(n,b) == per [makeByteBuffer(n,b)$Lisp,n]$Rep
+
+ # buf == rep(buf).sz
+
+ capacity buf == # rep(buf).ary
- qelt(buf,i) ==
- AREF(buf,i)$Lisp
+ qelt(buf,i) == qelt(rep(buf).ary,i)$PrimitiveArray(Byte)
elt(buf: %,i: Integer) ==
- i >= capacity buf => error "index out of range"
+ i >= # buf => error "index out of range"
qelt(buf,i)
qsetelt!(buf,i,b) ==
- SETF(AREF(buf,i)$Lisp,b)$Lisp
+ qsetelt!(rep(buf).ary,i,b)$PrimitiveArray(Byte)
setelt(buf: %,i: Integer, b: Byte) ==
- i >= capacity buf => error "index out of range"
- qsetelt!(buf,i,b)
-
- capacity buf == ARRAY_-DIMENSION(buf,0)$Lisp
+ i >= # buf => error "index out of range"
+ qsetelt!(rep(buf).ary,i,b)
minIndex buf == 0
- maxIndex buf == capacity(buf)::Integer - 1
-
- # buf == LENGTH(buf)$Lisp
+ maxIndex buf == (# buf)::Integer - 1
- x = y ==
- EQUAL(x,y)$Lisp
+ x = y == rep x = rep y
setLength!(buf,n) ==
n > capacity buf =>
error "attempt to set length higher than capacity"
- SETF(FILL_-POINTER(buf)$Lisp,n)$Lisp
+ rep(buf).sz := n
+
+ coerce(buf: %): PrimitiveArray Byte ==
+ rep(buf).ary
coerce(buf: %): String ==
s: String := MAKE_-STRING(#buf)$Lisp
- for i in 0..(#buf - 1) repeat
+ for i in 0..maxIndex buf repeat
qsetelt!(s,i + 1,qelt(buf,i)::Character)$String
s
@@ -346,7 +352,7 @@ DataArray(N: PositiveInteger, T: SetCategory): Public == Private where
\section{License}
<<license>>=
---Copyright (C) 2007-2008, Gabriel Dos Reis.
+--Copyright (C) 2007-2009, Gabriel Dos Reis.
--All rights reserved.
--
--Redistribution and use in source and binary forms, with or without
diff --git a/src/algebra/net.spad.pamphlet b/src/algebra/net.spad.pamphlet
index ee5e8326..c1a3620a 100644
--- a/src/algebra/net.spad.pamphlet
+++ b/src/algebra/net.spad.pamphlet
@@ -422,7 +422,8 @@ InetClientStreamSocket(): Public == Private where
readBytes!(x,b) ==
not isConnected? x => error "socket is not connected"
n: NonNegativeInteger :=
- readFromStreamSocket(rep(x).%sock,b, capacity b)$Lisp
+ readFromStreamSocket(rep(x).%sock,b::PrimitiveArray(Byte),
+ capacity b)$Lisp
setLength!(b,n)
readByte! x ==
@@ -431,7 +432,7 @@ InetClientStreamSocket(): Public == Private where
writeBytes!(x,b) ==
not isConnected? x => error "socket is not connected"
- writeToStreamSocket(rep(x).%sock,b, #b)$Lisp
+ writeToStreamSocket(rep(x).%sock,b::PrimitiveArray(Byte), #b)$Lisp
writeByte!(x,b) ==
not isConnected? x => error "socket is not connected"
diff --git a/src/interp/sys-utility.boot b/src/interp/sys-utility.boot
index 31781fae..ad353d3b 100644
--- a/src/interp/sys-utility.boot
+++ b/src/interp/sys-utility.boot
@@ -320,8 +320,7 @@ writeByteToStreamSocket(s,b) ==
--%
makeByteBuffer(n,b == 0) ==
- MAKE_-ARRAY(n,KEYWORD::ELEMENT_-TYPE,"%Byte",
- KEYWORD::FILL_-POINTER,true, KEYWORD::INITIAL_-ELEMENT,b)
+ MAKE_-ARRAY(n,KEYWORD::ELEMENT_-TYPE,"%Byte",KEYWORD::INITIAL_-ELEMENT,b)
quoteForm t ==
["QUOTE",t]
diff --git a/src/share/algebra/browse.daase b/src/share/algebra/browse.daase
index ca8b2a89..62771912 100644
--- a/src/share/algebra/browse.daase
+++ b/src/share/algebra/browse.daase
@@ -1,12 +1,12 @@
-(2282814 . 3443021571)
+(2282835 . 3443721767)
(-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.")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
NIL
(-20 S)
((|constructor| (NIL "The class of abelian groups,{} \\spadignore{i.e.} additive monoids where each element has an additive inverse. \\blankline")) (* (($ (|Integer|) $) "\\spad{n*x} is the product of \\spad{x} by the integer \\spad{n}.")) (- (($ $ $) "\\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(\\spad{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(\\spad{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(\\spad{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(\\spad{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(\\spad{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(\\spad{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}.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . 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(\\spad{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(\\spad{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(\\spad{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(\\spad{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(\\spad{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(\\spad{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(\\spad{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(\\spad{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}.")))
-((-4404 . T) (-4402 . T) (-4401 . T) ((-4409 "*") . T) (-4400 . T) (-4405 . T) (-4399 . T))
+((-4405 . T) (-4403 . T) (-4402 . T) ((-4410 "*") . T) (-4401 . T) (-4406 . T) (-4400 . 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 -3191)
+(-32 R -3195)
((|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 -1034) (QUOTE (-563)))))
(-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 -4407)))
+((|HasAttribute| |#1| (QUOTE -4408)))
(-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}.")))
-((-4407 . T) (-4408 . T))
+((-4408 . T) (-4409 . 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")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . 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 -3191 UP UPUP -2995)
+(-40 -3195 UP UPUP -3593)
((|constructor| (NIL "Function field defined by \\spad{f}(\\spad{x},{} \\spad{y}) = 0.")) (|knownInfBasis| (((|Void|) (|NonNegativeInteger|)) "\\spad{knownInfBasis(n)} \\undocumented{}")))
-((-4400 |has| (-407 |#2|) (-363)) (-4405 |has| (-407 |#2|) (-363)) (-4399 |has| (-407 |#2|) (-363)) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| (-407 |#2|) (QUOTE (-145))) (|HasCategory| (-407 |#2|) (QUOTE (-147))) (|HasCategory| (-407 |#2|) (QUOTE (-349))) (-4032 (|HasCategory| (-407 |#2|) (QUOTE (-363))) (|HasCategory| (-407 |#2|) (QUOTE (-349)))) (|HasCategory| (-407 |#2|) (QUOTE (-363))) (|HasCategory| (-407 |#2|) (QUOTE (-368))) (-4032 (-12 (|HasCategory| (-407 |#2|) (QUOTE (-233))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (|HasCategory| (-407 |#2|) (QUOTE (-349)))) (-4032 (-12 (|HasCategory| (-407 |#2|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (-12 (|HasCategory| (-407 |#2|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-407 |#2|) (QUOTE (-349))))) (|HasCategory| (-407 |#2|) (LIST (QUOTE -636) (QUOTE (-563)))) (-4032 (|HasCategory| (-407 |#2|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (|HasCategory| (-407 |#2|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-407 |#2|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| (-407 |#2|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (-12 (|HasCategory| (-407 |#2|) (QUOTE (-233))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))))
-(-41 R -3191)
+((-4401 |has| (-407 |#2|) (-363)) (-4406 |has| (-407 |#2|) (-363)) (-4400 |has| (-407 |#2|) (-363)) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| (-407 |#2|) (QUOTE (-145))) (|HasCategory| (-407 |#2|) (QUOTE (-147))) (|HasCategory| (-407 |#2|) (QUOTE (-349))) (-4034 (|HasCategory| (-407 |#2|) (QUOTE (-363))) (|HasCategory| (-407 |#2|) (QUOTE (-349)))) (|HasCategory| (-407 |#2|) (QUOTE (-363))) (|HasCategory| (-407 |#2|) (QUOTE (-368))) (-4034 (-12 (|HasCategory| (-407 |#2|) (QUOTE (-233))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (|HasCategory| (-407 |#2|) (QUOTE (-349)))) (-4034 (-12 (|HasCategory| (-407 |#2|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (-12 (|HasCategory| (-407 |#2|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-407 |#2|) (QUOTE (-349))))) (|HasCategory| (-407 |#2|) (LIST (QUOTE -636) (QUOTE (-563)))) (-4034 (|HasCategory| (-407 |#2|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (|HasCategory| (-407 |#2|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-407 |#2|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| (-407 |#2|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (-12 (|HasCategory| (-407 |#2|) (QUOTE (-233))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))))
+(-41 R -3195)
((|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 (-452))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -430) (|devaluate| |#1|)))))
@@ -106,23 +106,23 @@ NIL
((|HasCategory| |#1| (QUOTE (-307))))
(-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{\\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.")))
-((-4404 |has| |#1| (-555)) (-4402 . T) (-4401 . T))
+((-4405 |has| |#1| (-555)) (-4403 . T) (-4402 . T))
((|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555))))
(-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.")))
-((-4407 . T) (-4408 . T))
-((-4032 (-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-846))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2557) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2557) (|devaluate| |#2|))))))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-846))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-846))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2557) (|devaluate| |#2|)))))))
+((-4408 . T) (-4409 . T))
+((-4034 (-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-846))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2556) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2556) (|devaluate| |#2|))))))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-846))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-846))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2556) (|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 -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-363))))
(-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}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4401 . T) (-4402 . T) (-4404 . T))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4402 . T) (-4403 . T) (-4405 . 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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
((|HasCategory| $ (QUOTE (-1045))) (|HasCategory| $ (LIST (QUOTE -1034) (QUOTE (-563)))))
(-49)
((|constructor| (NIL "This domain implements anonymous functions")) (|body| (((|Syntax|) $) "\\spad{body(f)} returns the body of the unnamed function \\spad{`f'}.")) (|parameters| (((|List| (|Symbol|)) $) "\\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}.")))
-((-4404 . T))
+((-4405 . 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 -3191)
+(-54 |Base| R -3195)
((|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")))
-((-4407 . T) (-4408 . T))
+((-4408 . T) (-4409 . 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}")))
-((-4408 . T) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
+((-4409 . T) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|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}.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
-(-61 -3348)
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+(-61 -3352)
((|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 -3348)
+(-62 -3352)
((|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 -3348)
+(-63 -3352)
((|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 -3348)
+(-64 -3352)
((|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 -3348)
+(-65 -3352)
((|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 -3348)
+(-66 -3352)
((|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 -3348)
+(-67 -3352)
((|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 -3348)
+(-68 -3352)
((|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 -3348)
+(-69 -3352)
((|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 -3348)
+(-70 -3352)
((|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 -3348)
+(-71 -3352)
((|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 -3348)
+(-72 -3352)
((|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 -3348)
+(-73 -3352)
((|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 -3348)
+(-74 -3352)
((|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 -3348)
+(-77 -3352)
((|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 -3348)
+(-78 -3352)
((|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 -3348)
+(-79 -3352)
((|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 -3348)
+(-80 -3352)
((|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 -3348)
+(-81 -3352)
((|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 -3348)
+(-82 -3352)
((|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 -3348)
+(-83 -3352)
((|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 -3348)
+(-84 -3352)
((|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 -3348)
+(-85 -3352)
((|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 -3348)
+(-86 -3352)
((|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 -3348)
+(-87 -3352)
((|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 -3348)
+(-88 -3352)
((|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 -3348)
+(-89 -3352)
((|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 (-363))))
(-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}.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-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\".")))
-((-4407 . T))
+((-4408 . 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.")))
-((-4407 . T) ((-4409 "*") . T) (-4408 . T) (-4404 . T) (-4402 . T) (-4401 . T) (-4400 . T) (-4405 . T) (-4399 . T) (-4398 . T) (-4397 . T) (-4396 . T) (-4395 . T) (-4403 . T) (-4406 . T) (|NullSquare| . T) (|JacobiIdentity| . T) (-4394 . T))
+((-4408 . T) ((-4410 "*") . T) (-4409 . T) (-4405 . T) (-4403 . T) (-4402 . T) (-4401 . T) (-4406 . T) (-4400 . T) (-4399 . T) (-4398 . T) (-4397 . T) (-4396 . T) (-4404 . T) (-4407 . T) (|NullSquare| . T) (|JacobiIdentity| . T) (-4395 . 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}.")))
-((-4404 . T))
+((-4405 . 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{\\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}.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-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 (-4409 "*"))))
+((|HasAttribute| |#1| (QUOTE (-4410 "*"))))
(-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")))
-((-4407 . T))
+((-4408 . 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.")))
-((-4408 . T))
+((-4409 . 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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| (-563) (QUOTE (-905))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| (-563) (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-147))) (|HasCategory| (-563) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-563) (QUOTE (-1018))) (|HasCategory| (-563) (QUOTE (-816))) (-4032 (|HasCategory| (-563) (QUOTE (-816))) (|HasCategory| (-563) (QUOTE (-846)))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-1144))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-563) (QUOTE (-233))) (|HasCategory| (-563) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-563) (LIST (QUOTE -514) (QUOTE (-1169)) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -309) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -286) (QUOTE (-563)) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-307))) (|HasCategory| (-563) (QUOTE (-545))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-563) (LIST (QUOTE -636) (QUOTE (-563)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (|HasCategory| (-563) (QUOTE (-145)))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| (-563) (QUOTE (-905))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| (-563) (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-147))) (|HasCategory| (-563) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-563) (QUOTE (-1018))) (|HasCategory| (-563) (QUOTE (-816))) (-4034 (|HasCategory| (-563) (QUOTE (-816))) (|HasCategory| (-563) (QUOTE (-846)))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-1144))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-563) (QUOTE (-233))) (|HasCategory| (-563) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-563) (LIST (QUOTE -514) (QUOTE (-1169)) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -309) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -286) (QUOTE (-563)) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-307))) (|HasCategory| (-563) (QUOTE (-545))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-563) (LIST (QUOTE -636) (QUOTE (-563)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (|HasCategory| (-563) (QUOTE (-145)))))
(-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| (($ (|Symbol|) (|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| (((|Symbol|) $) "\\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}")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
((-12 (|HasCategory| (-112) (QUOTE (-1093))) (|HasCategory| (-112) (LIST (QUOTE -309) (QUOTE (-112))))) (|HasCategory| (-112) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-112) (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-112) (QUOTE (-1093))) (|HasCategory| (-112) (LIST (QUOTE -610) (QUOTE (-858)))))
(-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}")))
-((-4402 . T) (-4401 . T))
+((-4403 . T) (-4402 . 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}.")) (|false| (($) "\\spad{false} is a logical constant.")) (|true| (($) "\\spad{true} is a logical constant.")))
@@ -388,22 +388,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| (($ $ (|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| (((|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!| (($ $ (|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| (($ $ (|String|)) "\\spad{assert(op,{} s)} attaches property \\spad{s} to \\spad{op}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.")) (|has?| (((|Boolean|) $ (|String|)) "\\spad{has?(op,{} s)} tests if property \\spad{s} is attached to \\spad{op}.")) (|is?| (((|Boolean|) $ (|Symbol|)) "\\spad{is?(op,{} s)} tests if the name of \\spad{op} is \\spad{s}.")) (|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.")) (|arity| (((|Union| (|NonNegativeInteger|) "failed") $) "\\spad{arity(op)} returns \\spad{n} if \\spad{op} is \\spad{n}-ary,{} and \"failed\" if \\spad{op} has arbitrary arity.")) (|operator| (($ (|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}.")) (|name| (((|Symbol|) $) "\\spad{name(op)} returns the name of \\spad{op}.")))
NIL
NIL
-(-115 -3191 UP)
+(-115 -3195 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
(-116 |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}.")))
-((-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-117 |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}.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| (-116 |#1|) (QUOTE (-905))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| (-116 |#1|) (QUOTE (-145))) (|HasCategory| (-116 |#1|) (QUOTE (-147))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-116 |#1|) (QUOTE (-1018))) (|HasCategory| (-116 |#1|) (QUOTE (-816))) (-4032 (|HasCategory| (-116 |#1|) (QUOTE (-816))) (|HasCategory| (-116 |#1|) (QUOTE (-846)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-116 |#1|) (QUOTE (-1144))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| (-116 |#1|) (QUOTE (-233))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -514) (QUOTE (-1169)) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -309) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -286) (LIST (QUOTE -116) (|devaluate| |#1|)) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (QUOTE (-307))) (|HasCategory| (-116 |#1|) (QUOTE (-545))) (|HasCategory| (-116 |#1|) (QUOTE (-846))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-116 |#1|) (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-116 |#1|) (QUOTE (-905)))) (|HasCategory| (-116 |#1|) (QUOTE (-145)))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| (-116 |#1|) (QUOTE (-905))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| (-116 |#1|) (QUOTE (-145))) (|HasCategory| (-116 |#1|) (QUOTE (-147))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-116 |#1|) (QUOTE (-1018))) (|HasCategory| (-116 |#1|) (QUOTE (-816))) (-4034 (|HasCategory| (-116 |#1|) (QUOTE (-816))) (|HasCategory| (-116 |#1|) (QUOTE (-846)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-116 |#1|) (QUOTE (-1144))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| (-116 |#1|) (QUOTE (-233))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -514) (QUOTE (-1169)) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -309) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -286) (LIST (QUOTE -116) (|devaluate| |#1|)) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (QUOTE (-307))) (|HasCategory| (-116 |#1|) (QUOTE (-545))) (|HasCategory| (-116 |#1|) (QUOTE (-846))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-116 |#1|) (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-116 |#1|) (QUOTE (-905)))) (|HasCategory| (-116 |#1|) (QUOTE (-145)))))
(-118 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 -4408)))
+((|HasAttribute| |#1| (QUOTE -4409)))
(-119 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
@@ -414,15 +414,15 @@ NIL
NIL
(-121 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")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-122 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}}.")) (|or| (($ $ $) "\\spad{a or b} returns the logical {\\em or} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|and| (($ $ $) "\\spad{a and b} returns the logical {\\em and} 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}}.")) (|not| (($ $) "\\spad{not(b)} returns the logical {\\em not} of bit aggregate \\axiom{\\spad{b}}.")))
NIL
NIL
(-123)
((|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}}.")) (|or| (($ $ $) "\\spad{a or b} returns the logical {\\em or} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|and| (($ $ $) "\\spad{a and b} returns the logical {\\em and} 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}}.")) (|not| (($ $) "\\spad{not(b)} returns the logical {\\em not} of bit aggregate \\axiom{\\spad{b}}.")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
NIL
(-124 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")))
@@ -430,20 +430,20 @@ NIL
NIL
(-125 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")))
-((-4407 . T) (-4408 . T))
+((-4408 . T) (-4409 . T))
NIL
(-126 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.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-127 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.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-128)
-((|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.}")) (|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'.")) (|#| (((|NonNegativeInteger|) $) "\\spad{\\#buf} returns the number of active elements in the buffer.")) (|byteBuffer| (($ (|NonNegativeInteger|)) "\\spad{byteBuffer(n)} creates a buffer of capacity \\spad{n},{} and length 0.")))
-((-4408 . T) (-4407 . T))
-((-4032 (-12 (|HasCategory| (-129) (QUOTE (-846))) (|HasCategory| (-129) (LIST (QUOTE -309) (QUOTE (-129))))) (-12 (|HasCategory| (-129) (QUOTE (-1093))) (|HasCategory| (-129) (LIST (QUOTE -309) (QUOTE (-129)))))) (-4032 (-12 (|HasCategory| (-129) (QUOTE (-1093))) (|HasCategory| (-129) (LIST (QUOTE -309) (QUOTE (-129))))) (|HasCategory| (-129) (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-129) (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| (-129) (QUOTE (-846))) (|HasCategory| (-129) (QUOTE (-1093)))) (|HasCategory| (-129) (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-129) (QUOTE (-1093))) (|HasCategory| (-129) (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| (-129) (QUOTE (-1093))) (|HasCategory| (-129) (LIST (QUOTE -309) (QUOTE (-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.")))
+((-4409 . T) (-4408 . T))
+((-4034 (-12 (|HasCategory| (-129) (QUOTE (-846))) (|HasCategory| (-129) (LIST (QUOTE -309) (QUOTE (-129))))) (-12 (|HasCategory| (-129) (QUOTE (-1093))) (|HasCategory| (-129) (LIST (QUOTE -309) (QUOTE (-129)))))) (-4034 (-12 (|HasCategory| (-129) (QUOTE (-1093))) (|HasCategory| (-129) (LIST (QUOTE -309) (QUOTE (-129))))) (|HasCategory| (-129) (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-129) (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| (-129) (QUOTE (-846))) (|HasCategory| (-129) (QUOTE (-1093)))) (|HasCategory| (-129) (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-129) (QUOTE (-1093))) (|HasCategory| (-129) (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| (-129) (QUOTE (-1093))) (|HasCategory| (-129) (LIST (QUOTE -309) (QUOTE (-129))))))
(-129)
((|constructor| (NIL "Byte is the datatype of 8-bit sized unsigned integer values.")) (|sample| (($) "\\spad{sample()} returns 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
@@ -466,13 +466,13 @@ NIL
NIL
(-134)
((|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.")))
-(((-4409 "*") . T))
+(((-4410 "*") . T))
NIL
-(-135 |minix| -3304 S T$)
+(-135 |minix| -3308 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}.")))
NIL
NIL
-(-136 |minix| -3304 R)
+(-136 |minix| -3308 R)
((|constructor| (NIL "CartesianTensor(minix,{}dim,{}\\spad{R}) provides Cartesian tensors with components belonging to a commutative ring \\spad{R}. These tensors can have any number of indices. Each index takes values from \\spad{minix} to \\spad{minix + dim - 1}.")) (|sample| (($) "\\spad{sample()} returns an object of type \\%.")) (|unravel| (($ (|List| |#3|)) "\\spad{unravel(t)} produces a tensor from a list of components such that \\indented{2}{\\spad{unravel(ravel(t)) = t}.}")) (|ravel| (((|List| |#3|) $) "\\spad{ravel(t)} produces a list of components from a tensor such that \\indented{2}{\\spad{unravel(ravel(t)) = t}.}")) (|leviCivitaSymbol| (($) "\\spad{leviCivitaSymbol()} is the rank \\spad{dim} tensor defined by \\spad{leviCivitaSymbol()(i1,{}...idim) = +1/0/-1} if \\spad{i1,{}...,{}idim} is an even/is nota /is an odd permutation of \\spad{minix,{}...,{}minix+dim-1}.")) (|kroneckerDelta| (($) "\\spad{kroneckerDelta()} is the rank 2 tensor defined by \\indented{3}{\\spad{kroneckerDelta()(i,{}j)}} \\indented{6}{\\spad{= 1\\space{2}if i = j}} \\indented{6}{\\spad{= 0 if\\space{2}i \\~= j}}")) (|reindex| (($ $ (|List| (|Integer|))) "\\spad{reindex(t,{}[i1,{}...,{}idim])} permutes the indices of \\spad{t}. For example,{} if \\spad{r = reindex(t,{} [4,{}1,{}2,{}3])} for a rank 4 tensor \\spad{t},{} then \\spad{r} is the rank for tensor given by \\indented{4}{\\spad{r(i,{}j,{}k,{}l) = t(l,{}i,{}j,{}k)}.}")) (|transpose| (($ $ (|Integer|) (|Integer|)) "\\spad{transpose(t,{}i,{}j)} exchanges the \\spad{i}\\spad{-}th and \\spad{j}\\spad{-}th indices of \\spad{t}. For example,{} if \\spad{r = transpose(t,{}2,{}3)} for a rank 4 tensor \\spad{t},{} then \\spad{r} is the rank 4 tensor given by \\indented{4}{\\spad{r(i,{}j,{}k,{}l) = t(i,{}k,{}j,{}l)}.}") (($ $) "\\spad{transpose(t)} exchanges the first and last indices of \\spad{t}. For example,{} if \\spad{r = transpose(t)} for a rank 4 tensor \\spad{t},{} then \\spad{r} is the rank 4 tensor given by \\indented{4}{\\spad{r(i,{}j,{}k,{}l) = t(l,{}j,{}k,{}i)}.}")) (|contract| (($ $ (|Integer|) (|Integer|)) "\\spad{contract(t,{}i,{}j)} is the contraction of tensor \\spad{t} which sums along the \\spad{i}\\spad{-}th and \\spad{j}\\spad{-}th indices. For example,{} if \\spad{r = contract(t,{}1,{}3)} for a rank 4 tensor \\spad{t},{} then \\spad{r} is the rank 2 \\spad{(= 4 - 2)} tensor given by \\indented{4}{\\spad{r(i,{}j) = sum(h=1..dim,{}t(h,{}i,{}h,{}j))}.}") (($ $ (|Integer|) $ (|Integer|)) "\\spad{contract(t,{}i,{}s,{}j)} is the inner product of tenors \\spad{s} and \\spad{t} which sums along the \\spad{k1}\\spad{-}th index of \\spad{t} and the \\spad{k2}\\spad{-}th index of \\spad{s}. For example,{} if \\spad{r = contract(s,{}2,{}t,{}1)} for rank 3 tensors rank 3 tensors \\spad{s} and \\spad{t},{} then \\spad{r} is the rank 4 \\spad{(= 3 + 3 - 2)} tensor given by \\indented{4}{\\spad{r(i,{}j,{}k,{}l) = sum(h=1..dim,{}s(i,{}h,{}j)*t(h,{}k,{}l))}.}")) (* (($ $ $) "\\spad{s*t} is the inner product of the tensors \\spad{s} and \\spad{t} which contracts the last index of \\spad{s} with the first index of \\spad{t},{} \\spadignore{i.e.} \\indented{4}{\\spad{t*s = contract(t,{}rank t,{} s,{} 1)}} \\indented{4}{\\spad{t*s = sum(k=1..N,{} t[i1,{}..,{}iN,{}k]*s[k,{}j1,{}..,{}jM])}} This is compatible with the use of \\spad{M*v} to denote the matrix-vector inner product.")) (|product| (($ $ $) "\\spad{product(s,{}t)} is the outer product of the tensors \\spad{s} and \\spad{t}. For example,{} if \\spad{r = product(s,{}t)} for rank 2 tensors \\spad{s} and \\spad{t},{} then \\spad{r} is a rank 4 tensor given by \\indented{4}{\\spad{r(i,{}j,{}k,{}l) = s(i,{}j)*t(k,{}l)}.}")) (|elt| ((|#3| $ (|List| (|Integer|))) "\\spad{elt(t,{}[i1,{}...,{}iN])} gives a component of a rank \\spad{N} tensor.") ((|#3| $ (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{elt(t,{}i,{}j,{}k,{}l)} gives a component of a rank 4 tensor.") ((|#3| $ (|Integer|) (|Integer|) (|Integer|)) "\\spad{elt(t,{}i,{}j,{}k)} gives a component of a rank 3 tensor.") ((|#3| $ (|Integer|) (|Integer|)) "\\spad{elt(t,{}i,{}j)} gives a component of a rank 2 tensor.") ((|#3| $ (|Integer|)) "\\spad{elt(t,{}i)} gives a component of a rank 1 tensor.") ((|#3| $) "\\spad{elt(t)} gives the component of a rank 0 tensor.")) (|rank| (((|NonNegativeInteger|) $) "\\spad{rank(t)} returns the tensorial rank of \\spad{t} (that is,{} the number of indices). This is the same as the graded module degree.")) (|coerce| (($ (|List| $)) "\\spad{coerce([t_1,{}...,{}t_dim])} allows tensors to be constructed using lists.") (($ (|List| |#3|)) "\\spad{coerce([r_1,{}...,{}r_dim])} allows tensors to be constructed using lists.") (($ (|SquareMatrix| |#2| |#3|)) "\\spad{coerce(m)} views a matrix as a rank 2 tensor.") (($ (|DirectProduct| |#2| |#3|)) "\\spad{coerce(v)} views a vector as a rank 1 tensor.")))
NIL
NIL
@@ -494,8 +494,8 @@ NIL
NIL
(-141)
((|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}.")))
-((-4407 . T) (-4397 . T) (-4408 . T))
-((-4032 (-12 (|HasCategory| (-144) (QUOTE (-368))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144))))) (-12 (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144)))))) (|HasCategory| (-144) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-144) (QUOTE (-368))) (|HasCategory| (-144) (QUOTE (-846))) (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144))))))
+((-4408 . T) (-4398 . T) (-4409 . T))
+((-4034 (-12 (|HasCategory| (-144) (QUOTE (-368))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144))))) (-12 (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144)))))) (|HasCategory| (-144) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-144) (QUOTE (-368))) (|HasCategory| (-144) (QUOTE (-846))) (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144))))))
(-142 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{\\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{\\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
@@ -510,7 +510,7 @@ NIL
NIL
(-145)
((|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.")))
-((-4404 . T))
+((-4405 . T))
NIL
(-146 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}.")))
@@ -518,9 +518,9 @@ NIL
NIL
(-147)
((|constructor| (NIL "Rings of Characteristic Zero.")))
-((-4404 . T))
+((-4405 . T))
NIL
-(-148 -3191 UP UPUP)
+(-148 -3195 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
@@ -531,14 +531,14 @@ NIL
(-150 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 -611) (QUOTE (-536)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasAttribute| |#1| (QUOTE -4407)))
+((|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasAttribute| |#1| (QUOTE -4408)))
(-151 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
(-152 |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.")))
-((-4402 . T) (-4401 . T) (-4404 . T))
+((-4403 . T) (-4402 . T) (-4405 . T))
NIL
(-153)
((|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.")))
@@ -560,7 +560,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
-(-158 R -3191)
+(-158 R -3195)
((|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
@@ -591,10 +591,10 @@ NIL
(-165 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 (-905))) (|HasCategory| |#2| (QUOTE (-545))) (|HasCategory| |#2| (QUOTE (-998))) (|HasCategory| |#2| (QUOTE (-1193))) (|HasCategory| |#2| (QUOTE (-1054))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (QUOTE (-363))) (|HasAttribute| |#2| (QUOTE -4403)) (|HasAttribute| |#2| (QUOTE -4406)) (|HasCategory| |#2| (QUOTE (-307))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-846))))
+((|HasCategory| |#2| (QUOTE (-905))) (|HasCategory| |#2| (QUOTE (-545))) (|HasCategory| |#2| (QUOTE (-998))) (|HasCategory| |#2| (QUOTE (-1193))) (|HasCategory| |#2| (QUOTE (-1054))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (QUOTE (-363))) (|HasAttribute| |#2| (QUOTE -4404)) (|HasAttribute| |#2| (QUOTE -4407)) (|HasCategory| |#2| (QUOTE (-307))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-846))))
(-166 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})")))
-((-4400 -4032 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) (-4403 |has| |#1| (-6 -4403)) (-4406 |has| |#1| (-6 -4406)) (-1413 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 -4034 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) (-4404 |has| |#1| (-6 -4404)) (-4407 |has| |#1| (-6 -4407)) (-1413 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-167 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.")))
@@ -606,8 +606,8 @@ NIL
NIL
(-169 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}.")))
-((-4400 -4032 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) (-4403 |has| |#1| (-6 -4403)) (-4406 |has| |#1| (-6 -4406)) (-1413 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-349))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-349)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-368))) (-4032 (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (QUOTE (-349)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-349)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-349)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-349)))) (-12 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-349)))) (-12 (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-349)))) (|HasCategory| |#1| (QUOTE (-233))) (-12 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-349)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-349)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-824)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-846)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-1018)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-1193)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-363))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-905))))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-905)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-905))))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (QUOTE (-998))) (|HasCategory| |#1| (QUOTE (-1193)))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-555)))) (-4032 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-349)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-824))) (|HasCategory| |#1| (QUOTE (-1054))) (-12 (|HasCategory| |#1| (QUOTE (-1054))) (|HasCategory| |#1| (QUOTE (-1193)))) (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-363)))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-233))) (-12 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasAttribute| |#1| (QUOTE -4403)) (|HasAttribute| |#1| (QUOTE -4406)) (-12 (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169))))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-349)))))
+((-4401 -4034 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) (-4404 |has| |#1| (-6 -4404)) (-4407 |has| |#1| (-6 -4407)) (-1413 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-349))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-349)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-368))) (-4034 (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (QUOTE (-349)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-349)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-349)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-349)))) (-12 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-349)))) (-12 (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-349)))) (|HasCategory| |#1| (QUOTE (-233))) (-12 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-349)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-349)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-824)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-846)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-1018)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-1193)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-363))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-905))))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-905)))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-905))))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (QUOTE (-998))) (|HasCategory| |#1| (QUOTE (-1193)))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-555)))) (-4034 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-349)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-824))) (|HasCategory| |#1| (QUOTE (-1054))) (-12 (|HasCategory| |#1| (QUOTE (-1054))) (|HasCategory| |#1| (QUOTE (-1193)))) (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-363)))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-233))) (-12 (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasAttribute| |#1| (QUOTE -4404)) (|HasAttribute| |#1| (QUOTE -4407)) (-12 (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169))))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-349)))))
(-170 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
@@ -618,7 +618,7 @@ NIL
NIL
(-172)
((|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.")))
-(((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+(((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-173)
((|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.")))
@@ -626,7 +626,7 @@ NIL
NIL
(-174 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}.")))
-(((-4409 "*") . T) (-4400 . T) (-4405 . T) (-4399 . T) (-4401 . T) (-4402 . T) (-4404 . T))
+(((-4410 "*") . T) (-4401 . T) (-4406 . T) (-4400 . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-175)
((|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| (((|Union| (|Binding|) "failed") (|Symbol|) $) "\\spad{findBinding(c,{}n)} returns the first binding associated with \\spad{`n'}. Otherwise `failed'.")) (|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}.")))
@@ -680,7 +680,7 @@ NIL
((|constructor| (NIL "This domain provides implementations for constructors.")) (|findConstructor| (((|Maybe| $) (|Symbol|)) "\\spad{findConstructor(s)} attempts to find a constructor named \\spad{s}. If successful,{} returns that constructor; otherwise,{} returns \\spad{nothing}.")))
NIL
NIL
-(-188 R -3191)
+(-188 R -3195)
((|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
@@ -788,23 +788,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
-(-215 -3191 UP UPUP R)
+(-215 -3195 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
-(-216 -3191 FP)
+(-216 -3195 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
(-217)
((|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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| (-563) (QUOTE (-905))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| (-563) (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-147))) (|HasCategory| (-563) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-563) (QUOTE (-1018))) (|HasCategory| (-563) (QUOTE (-816))) (-4032 (|HasCategory| (-563) (QUOTE (-816))) (|HasCategory| (-563) (QUOTE (-846)))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-1144))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-563) (QUOTE (-233))) (|HasCategory| (-563) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-563) (LIST (QUOTE -514) (QUOTE (-1169)) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -309) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -286) (QUOTE (-563)) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-307))) (|HasCategory| (-563) (QUOTE (-545))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-563) (LIST (QUOTE -636) (QUOTE (-563)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (|HasCategory| (-563) (QUOTE (-145)))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| (-563) (QUOTE (-905))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| (-563) (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-147))) (|HasCategory| (-563) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-563) (QUOTE (-1018))) (|HasCategory| (-563) (QUOTE (-816))) (-4034 (|HasCategory| (-563) (QUOTE (-816))) (|HasCategory| (-563) (QUOTE (-846)))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-1144))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-563) (QUOTE (-233))) (|HasCategory| (-563) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-563) (LIST (QUOTE -514) (QUOTE (-1169)) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -309) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -286) (QUOTE (-563)) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-307))) (|HasCategory| (-563) (QUOTE (-545))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-563) (LIST (QUOTE -636) (QUOTE (-563)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (|HasCategory| (-563) (QUOTE (-145)))))
(-218)
((|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
-(-219 R -3191)
+(-219 R -3195)
((|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
@@ -818,19 +818,19 @@ NIL
NIL
(-222 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}.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-223 |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}.")))
-((-4404 . T))
+((-4405 . T))
NIL
-(-224 R -3191)
+(-224 R -3195)
((|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
(-225)
((|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}.")))
-((-1403 . T) (-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-1402 . T) (-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-226)
((|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{\\spad{Bi}(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{\\spad{Bi}''(x) - x * \\spad{Bi}(x) = 0}.}") (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{airyBi(x)} is the Airy function \\spad{\\spad{Bi}(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{\\spad{Bi}''(x) - x * \\spad{Bi}(x) = 0}.}")) (|airyAi| (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{airyAi(x)} is the Airy function \\spad{\\spad{Ai}(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{\\spad{Ai}''(x) - x * \\spad{Ai}(x) = 0}.}") (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{airyAi(x)} is the Airy function \\spad{\\spad{Ai}(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{\\spad{Ai}''(x) - x * \\spad{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*\\%\\spad{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*\\%\\spad{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*\\%\\spad{pi}) - J(-v,{}x))/sin(v*\\%\\spad{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*\\%\\spad{pi}) - J(-v,{}x))/sin(v*\\%\\spad{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)}.}")))
@@ -838,15 +838,15 @@ NIL
NIL
(-227 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}")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-555))) (|HasAttribute| |#1| (QUOTE (-4409 "*"))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-555))) (|HasAttribute| |#1| (QUOTE (-4410 "*"))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-228 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
(-229 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.")))
-((-4408 . T))
+((-4409 . T))
NIL
(-230 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}.")))
@@ -854,7 +854,7 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-233))))
(-231 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}.")))
-((-4404 . T))
+((-4405 . T))
NIL
(-232 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.")))
@@ -862,36 +862,36 @@ NIL
NIL
(-233)
((|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.")))
-((-4404 . T))
+((-4405 . T))
NIL
(-234 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 -4407)))
+((|HasAttribute| |#1| (QUOTE -4408)))
(-235 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}.")))
-((-4408 . T))
+((-4409 . T))
NIL
(-236)
((|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")))
NIL
NIL
-(-237 S -3304 R)
+(-237 S -3308 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 (-363))) (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (QUOTE (-844))) (|HasAttribute| |#3| (QUOTE -4404)) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (QUOTE (-1093))))
-(-238 -3304 R)
+((|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (QUOTE (-844))) (|HasAttribute| |#3| (QUOTE -4405)) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (QUOTE (-1093))))
+(-238 -3308 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")))
-((-4401 |has| |#2| (-1045)) (-4402 |has| |#2| (-1045)) (-4404 |has| |#2| (-6 -4404)) ((-4409 "*") |has| |#2| (-172)) (-4407 . T))
+((-4402 |has| |#2| (-1045)) (-4403 |has| |#2| (-1045)) (-4405 |has| |#2| (-6 -4405)) ((-4410 "*") |has| |#2| (-172)) (-4408 . T))
NIL
-(-239 -3304 A B)
+(-239 -3308 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}.")))
NIL
NIL
-(-240 -3304 R)
+(-240 -3308 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.")))
-((-4401 |has| |#2| (-1045)) (-4402 |has| |#2| (-1045)) (-4404 |has| |#2| (-6 -4404)) ((-4409 "*") |has| |#2| (-172)) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))))) (-4032 (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (QUOTE (-363))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-363)))) (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (QUOTE (-789))) (-4032 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-844)))) (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-172))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-1045)))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-172)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-233)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-368)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-722)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-789)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-844)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093))))) (-4032 (-12 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1045))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-4032 (-12 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| (-563) (QUOTE (-846))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-4032 (|HasCategory| |#2| (QUOTE (-1045))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093)))) (|HasAttribute| |#2| (QUOTE -4404)) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))))
+((-4402 |has| |#2| (-1045)) (-4403 |has| |#2| (-1045)) (-4405 |has| |#2| (-6 -4405)) ((-4410 "*") |has| |#2| (-172)) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))))) (-4034 (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (QUOTE (-363))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-363)))) (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (QUOTE (-789))) (-4034 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-844)))) (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-172))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-1045)))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-172)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-233)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-368)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-722)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-789)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-844)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093))))) (-4034 (-12 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1045))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-4034 (-12 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| (-563) (QUOTE (-846))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-4034 (|HasCategory| |#2| (QUOTE (-1045))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093)))) (|HasAttribute| |#2| (QUOTE -4405)) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))))
(-241)
((|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
@@ -902,7 +902,7 @@ NIL
NIL
(-243)
((|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}.")))
-((-4400 . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-244 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.")))
@@ -910,16 +910,16 @@ NIL
NIL
(-245 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}")))
-((-4408 . T) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
+((-4409 . T) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
(-246 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
(-247 |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")))
-(((-4409 "*") |has| |#2| (-172)) (-4400 |has| |#2| (-555)) (-4405 |has| |#2| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#2| (QUOTE (-905))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-172))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-555)))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363))) (|HasAttribute| |#2| (QUOTE -4405)) (|HasCategory| |#2| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-145)))))
+(((-4410 "*") |has| |#2| (-172)) (-4401 |has| |#2| (-555)) (-4406 |has| |#2| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#2| (QUOTE (-905))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-172))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-555)))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363))) (|HasAttribute| |#2| (QUOTE -4406)) (|HasCategory| |#2| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-145)))))
(-248)
((|showSummary| (((|Void|) $) "\\spad{showSummary(d)} prints out implementation detail information of domain \\spad{`d'}.")) (|reflect| (($ (|ConstructorCall|)) "\\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|) $) "\\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
@@ -930,23 +930,23 @@ NIL
NIL
(-250 |n| R M S)
((|constructor| (NIL "This constructor provides a direct product type with a left matrix-module view.")))
-((-4404 -4032 (-2190 (|has| |#4| (-1045)) (|has| |#4| (-233))) (-2190 (|has| |#4| (-1045)) (|has| |#4| (-896 (-1169)))) (|has| |#4| (-6 -4404)) (-2190 (|has| |#4| (-1045)) (|has| |#4| (-636 (-563))))) (-4401 |has| |#4| (-1045)) (-4402 |has| |#4| (-1045)) ((-4409 "*") |has| |#4| (-172)) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-363))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-722))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-789))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-844))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169)))))) (|HasCategory| |#4| (QUOTE (-363))) (-4032 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-363))) (|HasCategory| |#4| (QUOTE (-1045)))) (-4032 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-363)))) (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (QUOTE (-789))) (-4032 (|HasCategory| |#4| (QUOTE (-789))) (|HasCategory| |#4| (QUOTE (-844)))) (|HasCategory| |#4| (QUOTE (-844))) (|HasCategory| |#4| (QUOTE (-722))) (|HasCategory| |#4| (QUOTE (-172))) (-4032 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-1045)))) (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4032 (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1045)))) (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-172)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-233)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-363)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-368)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-722)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-789)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-844)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-1045)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-1093))))) (-4032 (-12 (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-363))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-722))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-789))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-844))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-1045))) (-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-4032 (-12 (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-363))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-722))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-789))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-844))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| (-563) (QUOTE (-846))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1045)))) (-4032 (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1045)))) (|HasCategory| |#4| (QUOTE (-722))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169)))))) (-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-4032 (|HasCategory| |#4| (QUOTE (-1045))) (-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-1093)))) (-4032 (|HasAttribute| |#4| (QUOTE -4404)) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1045)))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169)))))) (|HasCategory| |#4| (QUOTE (-131))) (|HasCategory| |#4| (QUOTE (-25))) (|HasCategory| |#4| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))))
+((-4405 -4034 (-2188 (|has| |#4| (-1045)) (|has| |#4| (-233))) (-2188 (|has| |#4| (-1045)) (|has| |#4| (-896 (-1169)))) (|has| |#4| (-6 -4405)) (-2188 (|has| |#4| (-1045)) (|has| |#4| (-636 (-563))))) (-4402 |has| |#4| (-1045)) (-4403 |has| |#4| (-1045)) ((-4410 "*") |has| |#4| (-172)) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-363))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-722))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-789))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-844))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169)))))) (|HasCategory| |#4| (QUOTE (-363))) (-4034 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-363))) (|HasCategory| |#4| (QUOTE (-1045)))) (-4034 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-363)))) (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (QUOTE (-789))) (-4034 (|HasCategory| |#4| (QUOTE (-789))) (|HasCategory| |#4| (QUOTE (-844)))) (|HasCategory| |#4| (QUOTE (-844))) (|HasCategory| |#4| (QUOTE (-722))) (|HasCategory| |#4| (QUOTE (-172))) (-4034 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-1045)))) (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4034 (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1045)))) (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-172)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-233)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-363)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-368)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-722)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-789)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-844)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-1045)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-1093))))) (-4034 (-12 (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-363))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-722))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-789))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-844))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-1045))) (-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-4034 (-12 (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-363))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-722))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-789))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-844))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| (-563) (QUOTE (-846))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1045)))) (-4034 (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1045)))) (|HasCategory| |#4| (QUOTE (-722))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169)))))) (-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563))))) (-4034 (|HasCategory| |#4| (QUOTE (-1045))) (-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (QUOTE (-1093)))) (-4034 (|HasAttribute| |#4| (QUOTE -4405)) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1045)))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#4| (QUOTE (-1045))) (|HasCategory| |#4| (LIST (QUOTE -896) (QUOTE (-1169)))))) (|HasCategory| |#4| (QUOTE (-131))) (|HasCategory| |#4| (QUOTE (-25))) (|HasCategory| |#4| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))))
(-251 |n| R S)
((|constructor| (NIL "This constructor provides a direct product of \\spad{R}-modules with an \\spad{R}-module view.")))
-((-4404 -4032 (-2190 (|has| |#3| (-1045)) (|has| |#3| (-233))) (-2190 (|has| |#3| (-1045)) (|has| |#3| (-896 (-1169)))) (|has| |#3| (-6 -4404)) (-2190 (|has| |#3| (-1045)) (|has| |#3| (-636 (-563))))) (-4401 |has| |#3| (-1045)) (-4402 |has| |#3| (-1045)) ((-4409 "*") |has| |#3| (-172)) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))))) (|HasCategory| |#3| (QUOTE (-363))) (-4032 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (QUOTE (-1045)))) (-4032 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-363)))) (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (QUOTE (-789))) (-4032 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (QUOTE (-844)))) (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (QUOTE (-172))) (-4032 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-1045)))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4032 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1045)))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-172)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-233)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-363)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-368)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-722)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-789)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-844)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1045)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1093))))) (-4032 (-12 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1045))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-4032 (-12 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| (-563) (QUOTE (-846))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1045)))) (-4032 (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1045)))) (|HasCategory| |#3| (QUOTE (-722))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-4032 (|HasCategory| |#3| (QUOTE (-1045))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1093)))) (-4032 (|HasAttribute| |#3| (QUOTE -4404)) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1045)))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))))
+((-4405 -4034 (-2188 (|has| |#3| (-1045)) (|has| |#3| (-233))) (-2188 (|has| |#3| (-1045)) (|has| |#3| (-896 (-1169)))) (|has| |#3| (-6 -4405)) (-2188 (|has| |#3| (-1045)) (|has| |#3| (-636 (-563))))) (-4402 |has| |#3| (-1045)) (-4403 |has| |#3| (-1045)) ((-4410 "*") |has| |#3| (-172)) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))))) (|HasCategory| |#3| (QUOTE (-363))) (-4034 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (QUOTE (-1045)))) (-4034 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-363)))) (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (QUOTE (-789))) (-4034 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (QUOTE (-844)))) (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (QUOTE (-172))) (-4034 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-1045)))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4034 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1045)))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-172)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-233)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-363)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-368)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-722)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-789)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-844)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1045)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1093))))) (-4034 (-12 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1045))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-4034 (-12 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| (-563) (QUOTE (-846))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1045)))) (-4034 (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1045)))) (|HasCategory| |#3| (QUOTE (-722))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-4034 (|HasCategory| |#3| (QUOTE (-1045))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1093)))) (-4034 (|HasAttribute| |#3| (QUOTE -4405)) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1045)))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))))
(-252 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 (-233))))
(-253 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.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
NIL
(-254 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}.")))
-((-4407 . T) (-4408 . T))
+((-4408 . T) (-4409 . T))
NIL
(-255)
((|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.")))
@@ -986,8 +986,8 @@ NIL
NIL
(-264 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")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-905))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#3| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#3| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#3| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#3| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasAttribute| |#1| (QUOTE -4405)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-905))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#3| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#3| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#3| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#3| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasAttribute| |#1| (QUOTE -4406)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-265 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
@@ -1032,11 +1032,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
-(-276 R -3191)
+(-276 R -3195)
((|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{\\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
-(-277 R -3191)
+(-277 R -3195)
((|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{\\spad{ki}} was rewritten as \\spad{\\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
@@ -1058,7 +1058,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-1093))))
(-282 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}.")))
-((-4408 . T))
+((-4409 . T))
NIL
(-283 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}.")))
@@ -1079,18 +1079,18 @@ NIL
(-287 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 -4408)))
+((|HasAttribute| |#1| (QUOTE -4409)))
(-288 |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
-(-289 S R |Mod| -2472 -3164 |exactQuo|)
+(-289 S R |Mod| -4219 -4300 |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")))
-((-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-290)
((|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.")))
-((-4400 . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-291)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: October 24,{} 2007 Date Last Modified: January 19,{} 2008. An `Environment' is a stack of scope.")) (|categoryFrame| (($) "the current category environment in the interpreter.")) (|currentEnv| (($) "the current normal environment in effect.")) (|setProperties!| (($ (|Symbol|) (|List| (|Property|)) $) "setBinding!(\\spad{n},{}props,{}\\spad{e}) set the list of properties of \\spad{`n'} to `props' in `e'.")) (|getProperties| (((|Union| (|List| (|Property|)) "failed") (|Symbol|) $) "getBinding(\\spad{n},{}\\spad{e}) returns the list of properties of \\spad{`n'} in \\spad{e}; otherwise `failed'.")) (|setProperty!| (($ (|Symbol|) (|Symbol|) (|SExpression|) $) "\\spad{setProperty!(n,{}p,{}v,{}e)} binds the property `(\\spad{p},{}\\spad{v})' to \\spad{`n'} in the topmost scope of `e'.")) (|getProperty| (((|Union| (|SExpression|) "failed") (|Symbol|) (|Symbol|) $) "\\spad{getProperty(n,{}p,{}e)} returns the value of property with name \\spad{`p'} for the symbol \\spad{`n'} in environment `e'. Otherwise,{} `failed'.")) (|scopes| (((|List| (|Scope|)) $) "\\spad{scopes(e)} returns the stack of scopes in environment \\spad{e}.")) (|empty| (($) "\\spad{empty()} constructs an empty environment")))
@@ -1106,21 +1106,21 @@ NIL
NIL
(-294 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.")))
-((-4404 -4032 (|has| |#1| (-1045)) (|has| |#1| (-473))) (-4401 |has| |#1| (-1045)) (-4402 |has| |#1| (-1045)))
-((|HasCategory| |#1| (QUOTE (-363))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4032 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (QUOTE (-722)))) (|HasCategory| |#1| (QUOTE (-473))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-1093)))) (-4032 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#1| (QUOTE (-1105)))) (|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-302))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-473)))) (-4032 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-722)))) (-4032 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (QUOTE (-1045)))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#1| (QUOTE (-172))))
+((-4405 -4034 (|has| |#1| (-1045)) (|has| |#1| (-473))) (-4402 |has| |#1| (-1045)) (-4403 |has| |#1| (-1045)))
+((|HasCategory| |#1| (QUOTE (-363))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4034 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (QUOTE (-722)))) (|HasCategory| |#1| (QUOTE (-473))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-1093)))) (-4034 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#1| (QUOTE (-1105)))) (|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-302))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-473)))) (-4034 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-722)))) (-4034 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (QUOTE (-1045)))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#1| (QUOTE (-172))))
(-295 |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.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2557) (|devaluate| |#2|)))))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-1093))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2556) (|devaluate| |#2|)))))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-1093))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))))
(-296)
((|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
-(-297 -3191 S)
+(-297 -3195 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
-(-298 E -3191)
+(-298 E -3195)
((|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
@@ -1158,7 +1158,7 @@ NIL
NIL
(-307)
((|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 \\spad{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}.")))
-((-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-308 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}.")))
@@ -1168,7 +1168,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
-(-310 -3191)
+(-310 -3195)
((|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
@@ -1182,8 +1182,8 @@ NIL
NIL
(-313 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))}.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-905))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-145))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-147))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-1018))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-816))) (-4032 (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-816))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-846)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-1144))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-233))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -514) (QUOTE (-1169)) (LIST (QUOTE -1243) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -309) (LIST (QUOTE -1243) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -286) (LIST (QUOTE -1243) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)) (LIST (QUOTE -1243) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-307))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-545))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-846))) (-12 (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-905))) (|HasCategory| $ (QUOTE (-145)))) (-4032 (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-145))) (-12 (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-905))) (|HasCategory| $ (QUOTE (-145))))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-905))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-145))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-147))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-1018))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-816))) (-4034 (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-816))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-846)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-1144))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-233))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -514) (QUOTE (-1169)) (LIST (QUOTE -1243) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -309) (LIST (QUOTE -1243) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (LIST (QUOTE -286) (LIST (QUOTE -1243) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)) (LIST (QUOTE -1243) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-307))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-545))) (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-846))) (-12 (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-905))) (|HasCategory| $ (QUOTE (-145)))) (-4034 (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-145))) (-12 (|HasCategory| (-1243 |#1| |#2| |#3| |#4|) (QUOTE (-905))) (|HasCategory| $ (QUOTE (-145))))))
(-314 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
@@ -1194,9 +1194,9 @@ NIL
NIL
(-316 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.")))
-((-4404 -4032 (-2190 (|has| |#1| (-1045)) (|has| |#1| (-636 (-563)))) (-12 (|has| |#1| (-555)) (-4032 (-2190 (|has| |#1| (-1045)) (|has| |#1| (-636 (-563)))) (|has| |#1| (-1045)) (|has| |#1| (-473)))) (|has| |#1| (-1045)) (|has| |#1| (-473))) (-4402 |has| |#1| (-172)) (-4401 |has| |#1| (-172)) ((-4409 "*") |has| |#1| (-555)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-555)) (-4399 |has| |#1| (-555)))
-((-4032 (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| |#1| (QUOTE (-555))) (-4032 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (-4032 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (QUOTE (-1105)))) (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563))))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-1045)))) (-12 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555)))) (-4032 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563))))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-1105)))) (-4032 (|HasCategory| |#1| (QUOTE (-21))) (-12 (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))))) (-4032 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-1105)))) (-4032 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))))) (-4032 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4032 (-12 (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-1105))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| $ (QUOTE (-1045))) (|HasCategory| $ (LIST (QUOTE -1034) (QUOTE (-563)))))
-(-317 R -3191)
+((-4405 -4034 (-2188 (|has| |#1| (-1045)) (|has| |#1| (-636 (-563)))) (-12 (|has| |#1| (-555)) (-4034 (-2188 (|has| |#1| (-1045)) (|has| |#1| (-636 (-563)))) (|has| |#1| (-1045)) (|has| |#1| (-473)))) (|has| |#1| (-1045)) (|has| |#1| (-473))) (-4403 |has| |#1| (-172)) (-4402 |has| |#1| (-172)) ((-4410 "*") |has| |#1| (-555)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-555)) (-4400 |has| |#1| (-555)))
+((-4034 (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| |#1| (QUOTE (-555))) (-4034 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (-4034 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (QUOTE (-1105)))) (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563))))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-1045)))) (-12 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555)))) (-4034 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563))))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-1105)))) (-4034 (|HasCategory| |#1| (QUOTE (-21))) (-12 (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))))) (-4034 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-1105)))) (-4034 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))))) (-4034 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#1| (QUOTE (-1045)))) (-4034 (-12 (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-1105))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| $ (QUOTE (-1045))) (|HasCategory| $ (LIST (QUOTE -1034) (QUOTE (-563)))))
+(-317 R -3195)
((|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{\\spad{yi}(a) = \\spad{bi}}. Note: eqi must be of the form \\spad{\\spad{fi}(x,{} y1 x,{} y2 x,{}...,{} yn x) y1'(x) + \\spad{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
@@ -1206,8 +1206,8 @@ NIL
NIL
(-319 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.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|)))) (|HasCategory| (-407 (-563)) (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-363))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasSignature| |#1| (LIST (QUOTE -1693) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4032 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -3698) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2606) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|)))) (|HasCategory| (-407 (-563)) (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-363))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasSignature| |#1| (LIST (QUOTE -1692) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4034 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -2062) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2605) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))))
(-320 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
@@ -1218,7 +1218,7 @@ NIL
NIL
(-322 S)
((|constructor| (NIL "The free abelian group on a set \\spad{S} is the monoid of finite sums of the form \\spad{reduce(+,{}[\\spad{ni} * \\spad{si}])} where the \\spad{si}\\spad{'s} are in \\spad{S},{} and the \\spad{ni}\\spad{'s} are integers. The operation is commutative.")))
-((-4402 . T) (-4401 . T))
+((-4403 . T) (-4402 . T))
((|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-788))))
(-323 S E)
((|constructor| (NIL "A free abelian monoid on a set \\spad{S} is the monoid of finite sums of the form \\spad{reduce(+,{}[\\spad{ni} * \\spad{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(\\spad{ei},{} \\spad{fi}) \\spad{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}.")))
@@ -1234,19 +1234,19 @@ NIL
((|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-172))))
(-326 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.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4401 . T) (-4402 . T) (-4404 . T))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-327 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.")))
-((-4408 . T) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
-(-328 S -3191)
+((-4409 . T) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
+(-328 S -3195)
((|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 (-368))))
-(-329 -3191)
+(-329 -3195)
((|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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-330)
((|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.")))
@@ -1264,15 +1264,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
-(-334 S -3191 UP UPUP R)
+(-334 S -3195 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
-(-335 -3191 UP UPUP R)
+(-335 -3195 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
-(-336 -3191 UP UPUP R)
+(-336 -3195 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
@@ -1286,32 +1286,32 @@ NIL
NIL
(-339 |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{\\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.}")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . T))
((|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-379)))) (|HasCategory| $ (QUOTE (-1045))) (|HasCategory| $ (LIST (QUOTE -1034) (QUOTE (-563)))))
(-340 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
-(-341 S -3191 UP UPUP)
+(-341 S -3195 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(\\spad{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 (-368))) (|HasCategory| |#2| (QUOTE (-363))))
-(-342 -3191 UP UPUP)
+(-342 -3195 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(\\spad{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.")))
-((-4400 |has| (-407 |#2|) (-363)) (-4405 |has| (-407 |#2|) (-363)) (-4399 |has| (-407 |#2|) (-363)) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 |has| (-407 |#2|) (-363)) (-4406 |has| (-407 |#2|) (-363)) (-4400 |has| (-407 |#2|) (-363)) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-343 |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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((-4032 (|HasCategory| (-906 |#1|) (QUOTE (-145))) (|HasCategory| (-906 |#1|) (QUOTE (-368)))) (|HasCategory| (-906 |#1|) (QUOTE (-147))) (|HasCategory| (-906 |#1|) (QUOTE (-368))) (|HasCategory| (-906 |#1|) (QUOTE (-145))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((-4034 (|HasCategory| (-906 |#1|) (QUOTE (-145))) (|HasCategory| (-906 |#1|) (QUOTE (-368)))) (|HasCategory| (-906 |#1|) (QUOTE (-147))) (|HasCategory| (-906 |#1|) (QUOTE (-368))) (|HasCategory| (-906 |#1|) (QUOTE (-145))))
(-344 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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((-4032 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-145))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((-4034 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-145))))
(-345 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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((-4032 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-145))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((-4034 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-145))))
(-346 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
@@ -1326,33 +1326,33 @@ NIL
NIL
(-349)
((|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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
-(-350 R UP -3191)
+(-350 R UP -3195)
((|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{\\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{\\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{\\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{\\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{\\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{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(x)} returns a square-free factorisation of \\spad{x}")))
NIL
NIL
(-351 |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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((-4032 (|HasCategory| (-906 |#1|) (QUOTE (-145))) (|HasCategory| (-906 |#1|) (QUOTE (-368)))) (|HasCategory| (-906 |#1|) (QUOTE (-147))) (|HasCategory| (-906 |#1|) (QUOTE (-368))) (|HasCategory| (-906 |#1|) (QUOTE (-145))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((-4034 (|HasCategory| (-906 |#1|) (QUOTE (-145))) (|HasCategory| (-906 |#1|) (QUOTE (-368)))) (|HasCategory| (-906 |#1|) (QUOTE (-147))) (|HasCategory| (-906 |#1|) (QUOTE (-368))) (|HasCategory| (-906 |#1|) (QUOTE (-145))))
(-352 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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((-4032 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-145))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((-4034 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-145))))
(-353 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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((-4032 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-145))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((-4034 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-145))))
(-354 |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}.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((-4032 (|HasCategory| (-906 |#1|) (QUOTE (-145))) (|HasCategory| (-906 |#1|) (QUOTE (-368)))) (|HasCategory| (-906 |#1|) (QUOTE (-147))) (|HasCategory| (-906 |#1|) (QUOTE (-368))) (|HasCategory| (-906 |#1|) (QUOTE (-145))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((-4034 (|HasCategory| (-906 |#1|) (QUOTE (-145))) (|HasCategory| (-906 |#1|) (QUOTE (-368)))) (|HasCategory| (-906 |#1|) (QUOTE (-147))) (|HasCategory| (-906 |#1|) (QUOTE (-368))) (|HasCategory| (-906 |#1|) (QUOTE (-145))))
(-355 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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((-4032 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-145))))
-(-356 -3191 GF)
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((-4034 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-145))))
+(-356 -3195 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
@@ -1360,21 +1360,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
-(-358 -3191 FP FPP)
+(-358 -3195 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 \\spad{fi} = sum ai/fi} or returns \"failed\" if no such list of \\spad{ai}\\spad{'s} exists.")))
NIL
NIL
(-359 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}.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((-4032 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-145))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((-4034 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-145))))
(-360 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
(-361 S)
((|constructor| (NIL "The free group on a set \\spad{S} is the group of finite products of the form \\spad{reduce(*,{}[\\spad{si} ** \\spad{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.")))
-((-4404 . T))
+((-4405 . T))
NIL
(-362 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.")))
@@ -1382,7 +1382,7 @@ NIL
NIL
(-363)
((|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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-364 |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.")))
@@ -1398,7 +1398,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-555))))
(-367 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{\\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{\\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.")))
-((-4404 |has| |#1| (-555)) (-4402 . T) (-4401 . T))
+((-4405 |has| |#1| (-555)) (-4403 . T) (-4402 . T))
NIL
(-368)
((|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.")))
@@ -1410,7 +1410,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-363))))
(-370 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.")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-371 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.")))
@@ -1419,14 +1419,14 @@ NIL
(-372 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 -4408)) (|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-1093))))
+((|HasAttribute| |#1| (QUOTE -4409)) (|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-1093))))
(-373 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]}.")))
-((-4407 . T))
+((-4408 . T))
NIL
(-374 |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) (-4402 . T) (-4401 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4403 . T) (-4402 . T))
NIL
(-375 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.")))
@@ -1438,7 +1438,7 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))))
(-377 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}")))
-((-4404 . T))
+((-4405 . T))
NIL
(-378 |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}.")))
@@ -1446,7 +1446,7 @@ NIL
NIL
(-379)
((|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{\\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}.")))
-((-4390 . T) (-4398 . T) (-1403 . T) (-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4391 . T) (-4399 . T) (-1402 . T) (-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-380 |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}.")))
@@ -1454,11 +1454,11 @@ NIL
NIL
(-381 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}")))
-((-4402 . T) (-4401 . T))
+((-4403 . T) (-4402 . T))
((|HasCategory| |#1| (QUOTE (-172))))
(-382 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}.")))
-((-4402 . T) (-4401 . T))
+((-4403 . T) (-4402 . T))
NIL
(-383)
((|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}.")))
@@ -1470,7 +1470,7 @@ NIL
NIL
(-385 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.")))
-((-4402 . T) (-4401 . T))
+((-4403 . T) (-4402 . T))
((|HasCategory| |#1| (QUOTE (-172))))
(-386 S)
((|constructor| (NIL "The free monoid on a set \\spad{S} is the monoid of finite products of the form \\spad{reduce(*,{}[\\spad{si} ** \\spad{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.")))
@@ -1478,7 +1478,7 @@ NIL
((|HasCategory| |#1| (QUOTE (-846))))
(-387)
((|constructor| (NIL "A category of domains which model machine arithmetic used by machines in the AXIOM-NAG link.")))
-((-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-388)
((|constructor| (NIL "This domain provides an interface to names in the file system.")))
@@ -1490,13 +1490,13 @@ NIL
NIL
(-390 |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")))
-((-4402 . T) (-4401 . T))
+((-4403 . T) (-4402 . T))
NIL
(-391)
((|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
-(-392 -3191 UP UPUP R)
+(-392 -3195 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
@@ -1520,11 +1520,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
-(-398 -3348 |returnType| -4093 |symbols|)
+(-398 -3352 |returnType| -4094 |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
-(-399 -3191 UP)
+(-399 -3195 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
@@ -1538,15 +1538,15 @@ NIL
NIL
(-402)
((|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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-403 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 -4390)) (|HasAttribute| |#1| (QUOTE -4398)))
+((|HasAttribute| |#1| (QUOTE -4391)) (|HasAttribute| |#1| (QUOTE -4399)))
(-404)
((|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\".")))
-((-1403 . T) (-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-1402 . T) (-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-405 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.")))
@@ -1558,15 +1558,15 @@ NIL
NIL
(-407 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.")))
-((-4394 -12 (|has| |#1| (-6 -4405)) (|has| |#1| (-452)) (|has| |#1| (-6 -4394))) (-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-905))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-824)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-816))) (-4032 (|HasCategory| |#1| (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-846)))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-824)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-1144))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379)))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-824)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-824))))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (-12 (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-824))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-824)))) (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-545))) (-12 (|HasAttribute| |#1| (QUOTE -4405)) (|HasAttribute| |#1| (QUOTE -4394)) (|HasCategory| |#1| (QUOTE (-452)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
+((-4395 -12 (|has| |#1| (-6 -4406)) (|has| |#1| (-452)) (|has| |#1| (-6 -4395))) (-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-905))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-824)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-816))) (-4034 (|HasCategory| |#1| (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-846)))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-824)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-1144))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379)))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-824)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-824))))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (-12 (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-824))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-824)))) (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-545))) (-12 (|HasAttribute| |#1| (QUOTE -4406)) (|HasAttribute| |#1| (QUOTE -4395)) (|HasCategory| |#1| (QUOTE (-452)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-408 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(\\spad{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
(-409 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(\\spad{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.")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-410 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")))
@@ -1580,11 +1580,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
-(-413 R -3191 UP A)
+(-413 R -3195 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)}.")))
-((-4404 . T))
+((-4405 . T))
NIL
-(-414 R -3191 UP A |ibasis|)
+(-414 R -3195 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 -1034) (|devaluate| |#2|))))
@@ -1598,12 +1598,12 @@ NIL
((|HasCategory| |#2| (QUOTE (-363))))
(-417 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{\\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{\\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.")))
-((-4404 |has| |#1| (-555)) (-4402 . T) (-4401 . T))
+((-4405 |has| |#1| (-555)) (-4403 . T) (-4402 . T))
NIL
(-418 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.")))
-((-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -309) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -286) (QUOTE $) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-1212))) (-4032 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-1212)))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-452))))
+((-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -309) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -286) (QUOTE $) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-1212))) (-4034 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-1212)))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-452))))
(-419 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
@@ -1630,17 +1630,17 @@ NIL
((|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-368))))
(-425 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}.")))
-((-4407 . T) (-4397 . T) (-4408 . T))
+((-4408 . T) (-4398 . T) (-4409 . T))
NIL
-(-426 R -3191)
+(-426 R -3195)
((|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
(-427 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")))
-((-4394 -12 (|has| |#1| (-6 -4394)) (|has| |#2| (-6 -4394))) (-4401 . T) (-4402 . T) (-4404 . T))
-((-12 (|HasAttribute| |#1| (QUOTE -4394)) (|HasAttribute| |#2| (QUOTE -4394))))
-(-428 R -3191)
+((-4395 -12 (|has| |#1| (-6 -4395)) (|has| |#2| (-6 -4395))) (-4402 . T) (-4403 . T) (-4405 . T))
+((-12 (|HasAttribute| |#1| (QUOTE -4395)) (|HasAttribute| |#2| (QUOTE -4395))))
+(-428 R -3195)
((|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
@@ -1650,17 +1650,17 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-473))) (|HasCategory| |#2| (QUOTE (-1105))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536)))))
(-430 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{\\spad{si}(a1,{}...,{}an)**ni} in \\spad{x} by \\spad{\\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{\\spad{si}(a)**ni} in \\spad{x} by \\spad{\\spad{fi}(a)} for any \\spad{a}.") (($ $ (|List| (|BasicOperator|)) (|List| $) (|Symbol|)) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [f1,{}...,{}fm],{} y)} replaces every \\spad{\\spad{si}(a)} in \\spad{x} by \\spad{\\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}.")))
-((-4404 -4032 (|has| |#1| (-1045)) (|has| |#1| (-473))) (-4402 |has| |#1| (-172)) (-4401 |has| |#1| (-172)) ((-4409 "*") |has| |#1| (-555)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-555)) (-4399 |has| |#1| (-555)))
+((-4405 -4034 (|has| |#1| (-1045)) (|has| |#1| (-473))) (-4403 |has| |#1| (-172)) (-4402 |has| |#1| (-172)) ((-4410 "*") |has| |#1| (-555)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-555)) (-4400 |has| |#1| (-555)))
NIL
-(-431 R -3191)
+(-431 R -3195)
((|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
-(-432 R -3191)
+(-432 R -3195)
((|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{\\spad{ai} = \\spad{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{\\spad{ai} = \\spad{qi}(a)},{} and \\spad{q(a) = 0}. This operation uses the technique of \\spadglossSee{groebner bases}{Groebner basis}.")))
NIL
((|HasCategory| |#2| (QUOTE (-27))))
-(-433 R -3191)
+(-433 R -3195)
((|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
@@ -1668,7 +1668,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
-(-435 R -3191 UP)
+(-435 R -3195 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 -1034) (QUOTE (-48)))))
@@ -1700,7 +1700,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
-(-443 R UP -3191)
+(-443 R UP -3195)
((|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
@@ -1738,16 +1738,16 @@ NIL
NIL
(-452)
((|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}.")))
-((-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-453 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")))
-((-4404 |has| (-407 (-948 |#1|)) (-555)) (-4402 . T) (-4401 . T))
+((-4405 |has| (-407 (-948 |#1|)) (-555)) (-4403 . T) (-4402 . T))
((|HasCategory| (-407 (-948 |#1|)) (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| (-407 (-948 |#1|)) (QUOTE (-555))))
(-454 |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")))
-(((-4409 "*") |has| |#2| (-172)) (-4400 |has| |#2| (-555)) (-4405 |has| |#2| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#2| (QUOTE (-905))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-172))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-555)))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363))) (|HasAttribute| |#2| (QUOTE -4405)) (|HasCategory| |#2| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-145)))))
+(((-4410 "*") |has| |#2| (-172)) (-4401 |has| |#2| (-555)) (-4406 |has| |#2| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#2| (QUOTE (-905))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-172))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-555)))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363))) (|HasAttribute| |#2| (QUOTE -4406)) (|HasCategory| |#2| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-145)))))
(-455 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
@@ -1774,7 +1774,7 @@ NIL
NIL
(-461 |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")))
-((-4402 . T) (-4401 . T))
+((-4403 . T) (-4402 . T))
NIL
(-462 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}.")))
@@ -1782,7 +1782,7 @@ NIL
NIL
(-463 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}}.")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#4| (LIST (QUOTE -610) (QUOTE (-858)))))
(-464 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}.")))
@@ -1812,7 +1812,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
-(-471 |lv| -3191 R)
+(-471 |lv| -3195 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
@@ -1822,23 +1822,23 @@ NIL
NIL
(-473)
((|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}.")))
-((-4404 . T))
+((-4405 . T))
NIL
(-474 |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.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|)))) (|HasCategory| (-407 (-563)) (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-363))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasSignature| |#1| (LIST (QUOTE -1693) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4032 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -3698) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2606) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|)))) (|HasCategory| (-407 (-563)) (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-363))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasSignature| |#1| (LIST (QUOTE -1692) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4034 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -2062) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2605) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))))
(-475 |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.")))
-((-4408 . T))
-((-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2557) (|devaluate| |#2|)))))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-846))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))))
+((-4409 . T))
+((-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2556) (|devaluate| |#2|)))))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-846))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))))
(-476 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)}")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -610) (QUOTE (-858)))))
(-477)
((|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{\\spad{pi}()} returns the symbolic \\%\\spad{pi}.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-478)
((|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'.")))
@@ -1846,29 +1846,29 @@ NIL
NIL
(-479 |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.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2557) (|devaluate| |#2|)))))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-1093))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2556) (|devaluate| |#2|)))))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-1093))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))))
(-480)
((|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
(-481 |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")))
-(((-4409 "*") |has| |#2| (-172)) (-4400 |has| |#2| (-555)) (-4405 |has| |#2| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#2| (QUOTE (-905))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-172))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-555)))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363))) (|HasAttribute| |#2| (QUOTE -4405)) (|HasCategory| |#2| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-145)))))
-(-482 -3304 S)
+(((-4410 "*") |has| |#2| (-172)) (-4401 |has| |#2| (-555)) (-4406 |has| |#2| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#2| (QUOTE (-905))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-172))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-555)))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363))) (|HasAttribute| |#2| (QUOTE -4406)) (|HasCategory| |#2| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-145)))))
+(-482 -3308 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}.")))
-((-4401 |has| |#2| (-1045)) (-4402 |has| |#2| (-1045)) (-4404 |has| |#2| (-6 -4404)) ((-4409 "*") |has| |#2| (-172)) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))))) (-4032 (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (QUOTE (-363))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-363)))) (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (QUOTE (-789))) (-4032 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-844)))) (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-172))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-1045)))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-172)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-233)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-368)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-722)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-789)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-844)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093))))) (-4032 (-12 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1045))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-4032 (-12 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| (-563) (QUOTE (-846))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-4032 (|HasCategory| |#2| (QUOTE (-1045))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093)))) (|HasAttribute| |#2| (QUOTE -4404)) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))))
+((-4402 |has| |#2| (-1045)) (-4403 |has| |#2| (-1045)) (-4405 |has| |#2| (-6 -4405)) ((-4410 "*") |has| |#2| (-172)) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))))) (-4034 (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (QUOTE (-363))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-363)))) (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (QUOTE (-789))) (-4034 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-844)))) (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-172))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-1045)))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-172)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-233)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-368)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-722)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-789)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-844)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093))))) (-4034 (-12 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1045))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-4034 (-12 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| (-563) (QUOTE (-846))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-4034 (|HasCategory| |#2| (QUOTE (-1045))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093)))) (|HasAttribute| |#2| (QUOTE -4405)) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))))
(-483)
((|constructor| (NIL "This domain represents the header of a definition.")) (|parameters| (((|List| (|Identifier|)) $) "\\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| (|Identifier|))) "\\spad{headAst(f,{}[x1,{}..,{}xn])} constructs a function definition header.")))
NIL
NIL
(-484 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}.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
-(-485 -3191 UP UPUP R)
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+(-485 -3195 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
@@ -1878,12 +1878,12 @@ NIL
NIL
(-487)
((|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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| (-563) (QUOTE (-905))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| (-563) (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-147))) (|HasCategory| (-563) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-563) (QUOTE (-1018))) (|HasCategory| (-563) (QUOTE (-816))) (-4032 (|HasCategory| (-563) (QUOTE (-816))) (|HasCategory| (-563) (QUOTE (-846)))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-1144))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-563) (QUOTE (-233))) (|HasCategory| (-563) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-563) (LIST (QUOTE -514) (QUOTE (-1169)) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -309) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -286) (QUOTE (-563)) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-307))) (|HasCategory| (-563) (QUOTE (-545))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-563) (LIST (QUOTE -636) (QUOTE (-563)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (|HasCategory| (-563) (QUOTE (-145)))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| (-563) (QUOTE (-905))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| (-563) (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-147))) (|HasCategory| (-563) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-563) (QUOTE (-1018))) (|HasCategory| (-563) (QUOTE (-816))) (-4034 (|HasCategory| (-563) (QUOTE (-816))) (|HasCategory| (-563) (QUOTE (-846)))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-1144))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-563) (QUOTE (-233))) (|HasCategory| (-563) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-563) (LIST (QUOTE -514) (QUOTE (-1169)) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -309) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -286) (QUOTE (-563)) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-307))) (|HasCategory| (-563) (QUOTE (-545))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-563) (LIST (QUOTE -636) (QUOTE (-563)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (|HasCategory| (-563) (QUOTE (-145)))))
(-488 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 -4407)) (|HasAttribute| |#1| (QUOTE -4408)) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))))
+((|HasAttribute| |#1| (QUOTE -4408)) (|HasAttribute| |#1| (QUOTE -4409)) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))))
(-489 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
@@ -1904,33 +1904,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
-(-494 -3191 UP |AlExt| |AlPol|)
+(-494 -3195 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
(-495)
((|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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
((|HasCategory| $ (QUOTE (-1045))) (|HasCategory| $ (LIST (QUOTE -1034) (QUOTE (-563)))))
(-496 S |mn|)
((|constructor| (NIL "\\indented{1}{Author Micheal Monagan Aug/87} This is the basic one dimensional array data type.")))
-((-4408 . T) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
+((-4409 . T) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
(-497 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.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-498 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
-(-499 R UP -3191)
+(-499 R UP -3195)
((|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{\\spad{mi}} is represented as follows: \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,{}w2,{}...,{}wn} and \\spad{\\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{\\spad{mi}} is given by \\spad{\\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{\\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{\\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
(-500 |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}.")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
((-12 (|HasCategory| (-112) (QUOTE (-1093))) (|HasCategory| (-112) (LIST (QUOTE -309) (QUOTE (-112))))) (|HasCategory| (-112) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-112) (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-112) (QUOTE (-1093))) (|HasCategory| (-112) (LIST (QUOTE -610) (QUOTE (-858)))))
(-501 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)}.")))
@@ -1944,7 +1944,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{\\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{\\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
-(-504 -3191 |Expon| |VarSet| |DPoly|)
+(-504 -3195 |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 -611) (QUOTE (-1169)))))
@@ -1994,36 +1994,36 @@ NIL
((|HasCategory| |#2| (QUOTE (-788))))
(-516 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}")))
-((-4408 . T) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
+((-4409 . T) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
(-517)
((|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
(-518 |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}.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((-4032 (|HasCategory| (-580 |#1|) (QUOTE (-145))) (|HasCategory| (-580 |#1|) (QUOTE (-368)))) (|HasCategory| (-580 |#1|) (QUOTE (-147))) (|HasCategory| (-580 |#1|) (QUOTE (-368))) (|HasCategory| (-580 |#1|) (QUOTE (-145))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((-4034 (|HasCategory| (-580 |#1|) (QUOTE (-145))) (|HasCategory| (-580 |#1|) (QUOTE (-368)))) (|HasCategory| (-580 |#1|) (QUOTE (-147))) (|HasCategory| (-580 |#1|) (QUOTE (-368))) (|HasCategory| (-580 |#1|) (QUOTE (-145))))
(-519 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}.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-520 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.")))
-((-4408 . T) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
+((-4409 . T) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
(-521 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 -4408)))
+((|HasAttribute| |#3| (QUOTE -4409)))
(-522 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 -4408)))
+((|HasAttribute| |#7| (QUOTE -4409)))
(-523 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.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-555))) (|HasAttribute| |#1| (QUOTE (-4409 "*"))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-555))) (|HasAttribute| |#1| (QUOTE (-4410 "*"))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-524)
((|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
@@ -2056,7 +2056,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
-(-532 K -3191 |Par|)
+(-532 K -3195 |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
@@ -2080,7 +2080,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
-(-538 K -3191 |Par|)
+(-538 K -3195 |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
@@ -2110,7 +2110,7 @@ NIL
NIL
(-545)
((|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{n-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.")))
-((-4405 . T) (-4406 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4406 . T) (-4407 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-546)
((|constructor| (NIL "This domain is a datatype for (signed) integer values of precision 16 bits.")))
@@ -2126,13 +2126,13 @@ NIL
NIL
(-549 |Key| |Entry| |addDom|)
((|constructor| (NIL "This domain is used to provide a conditional \"add\" domain for the implementation of \\spadtype{Table}.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2557) (|devaluate| |#2|)))))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-1093))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))))
-(-550 R -3191)
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2556) (|devaluate| |#2|)))))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-1093))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))))
+(-550 R -3195)
((|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
-(-551 R0 -3191 UP UPUP R)
+(-551 R0 -3195 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
@@ -2142,7 +2142,7 @@ NIL
NIL
(-553 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.")))
-((-1403 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-1402 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-554 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.")))
@@ -2150,9 +2150,9 @@ NIL
NIL
(-555)
((|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.")))
-((-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
-(-556 R -3191)
+(-556 R -3195)
((|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,{}[[\\spad{ci},{} \\spad{gi}]]]} such that the \\spad{gi}\\spad{'s} are among \\spad{[g1,{}...,{}gn]},{} and \\spad{d(h+sum(\\spad{ci} log(\\spad{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
@@ -2164,7 +2164,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
-(-559 R -3191 L)
+(-559 R -3195 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,{}[[\\spad{ci},{} \\spad{ui}]]]} such that the \\spad{ui}\\spad{'s} are among \\spad{[u1,{}...,{}un]} and \\spad{d(h + sum(\\spad{ci} log(\\spad{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,{}[[\\spad{ci},{} \\spad{ui}]]]} such that the \\spad{ui}\\spad{'s} are among \\spad{[u1,{}...,{}un]} and \\spad{d(h + sum(\\spad{ci} log(\\spad{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 -651) (|devaluate| |#2|))))
@@ -2172,31 +2172,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
-(-561 -3191 UP UPUP R)
+(-561 -3195 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
-(-562 -3191 UP)
+(-562 -3195 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
(-563)
((|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.")) (|random| (($ $) "\\spad{random(n)} returns a random integer from 0 to \\spad{n-1}.")))
-((-4389 . T) (-4395 . T) (-4399 . T) (-4394 . T) (-4405 . T) (-4406 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4390 . T) (-4396 . T) (-4400 . T) (-4395 . T) (-4406 . T) (-4407 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-564)
((|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
-(-565 R -3191 L)
+(-565 R -3195 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,{}[[\\spad{ci},{} \\spad{ui}]]]} such that the \\spad{ui}\\spad{'s} are among \\spad{[u1,{}...,{}un]} and \\spad{d(h + sum(\\spad{ci} log(\\spad{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 -651) (|devaluate| |#2|))))
-(-566 R -3191)
+(-566 R -3195)
((|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 -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-1132)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-626)))))
-(-567 -3191 UP)
+(-567 -3195 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,{}[[\\spad{ci},{} \\spad{gi}]]]} such that the \\spad{gi}\\spad{'s} are among \\spad{[g1,{}...,{}gn]},{} \\spad{ci' = 0},{} and \\spad{(h+sum(\\spad{ci} log(\\spad{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
@@ -2204,27 +2204,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
-(-569 -3191)
+(-569 -3195)
((|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,{} [[\\spad{ci},{}\\spad{gi}]]]} such that the \\spad{gi}\\spad{'s} are among \\spad{[g1,{}...,{}gn]},{} \\spad{dci/dx = 0},{} and \\spad{d(h + sum(\\spad{ci} log(\\spad{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
(-570 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.")))
-((-1403 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-1402 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-571)
((|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 \\spad{fi} = sum ai/fi} or returns \"failed\" if no such list of \\spad{ai}\\spad{'s} exists.")))
NIL
NIL
-(-572 R -3191)
+(-572 R -3195)
((|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 -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-284))) (|HasCategory| |#2| (QUOTE (-626))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169))))) (-12 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-284)))) (|HasCategory| |#1| (QUOTE (-555))))
-(-573 -3191 UP)
+(-573 -3195 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' + +/[\\spad{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(+,{}[\\spad{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(+,{}[\\spad{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
-(-574 R -3191)
+(-574 R -3195)
((|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
@@ -2246,27 +2246,27 @@ NIL
NIL
(-579 |p| |unBalanced?|)
((|constructor| (NIL "This domain implements \\spad{Zp},{} the \\spad{p}-adic completion of the integers. This is an internal domain.")))
-((-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-580 |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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
((|HasCategory| $ (QUOTE (-147))) (|HasCategory| $ (QUOTE (-145))) (|HasCategory| $ (QUOTE (-368))))
(-581)
((|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
-(-582 R -3191)
+(-582 R -3195)
((|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
-(-583 E -3191)
+(-583 E -3195)
((|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
-(-584 -3191)
+(-584 -3195)
((|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}.")))
-((-4402 . T) (-4401 . T))
+((-4403 . T) (-4402 . T))
((|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-1169)))))
(-585 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")))
@@ -2294,19 +2294,19 @@ NIL
NIL
(-591 |mn|)
((|constructor| (NIL "This domain implements low-level strings")) (|hash| (((|Integer|) $) "\\spad{hash(x)} provides a hashing function for strings")))
-((-4408 . T) (-4407 . T))
-((-4032 (-12 (|HasCategory| (-144) (QUOTE (-846))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144))))) (-12 (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144)))))) (-4032 (|HasCategory| (-144) (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144)))))) (|HasCategory| (-144) (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| (-144) (QUOTE (-846))) (|HasCategory| (-144) (QUOTE (-1093)))) (|HasCategory| (-144) (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144))))))
+((-4409 . T) (-4408 . T))
+((-4034 (-12 (|HasCategory| (-144) (QUOTE (-846))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144))))) (-12 (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144)))))) (-4034 (|HasCategory| (-144) (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144)))))) (|HasCategory| (-144) (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| (-144) (QUOTE (-846))) (|HasCategory| (-144) (QUOTE (-1093)))) (|HasCategory| (-144) (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144))))))
(-592 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
(-593 |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}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|)))) (|HasCategory| (-563) (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-363))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -1693) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|)))) (|HasCategory| (-563) (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-363))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -1692) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))))
(-594 |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}.") (($ $ |#1|) "\\spad{x*c} returns the product of \\spad{c} and the series \\spad{x}.") (($ |#1| $) "\\spad{c*x} returns the product of \\spad{c} 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.}")))
-((-4402 |has| |#1| (-555)) (-4401 |has| |#1| (-555)) ((-4409 "*") |has| |#1| (-555)) (-4400 |has| |#1| (-555)) (-4404 . T))
+((-4403 |has| |#1| (-555)) (-4402 |has| |#1| (-555)) ((-4410 "*") |has| |#1| (-555)) (-4401 |has| |#1| (-555)) (-4405 . T))
((|HasCategory| |#1| (QUOTE (-555))))
(-595 A B)
((|constructor| (NIL "Functions defined on streams with entries in two sets.")) (|map| (((|InfiniteTuple| |#2|) (|Mapping| |#2| |#1|) (|InfiniteTuple| |#1|)) "\\spad{map(f,{}[x0,{}x1,{}x2,{}...])} returns \\spad{[f(x0),{}f(x1),{}f(x2),{}..]}.")))
@@ -2316,7 +2316,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
-(-597 R -3191 FG)
+(-597 R -3195 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{\\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{\\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
@@ -2326,12 +2326,12 @@ NIL
NIL
(-599 R |mn|)
((|constructor| (NIL "\\indented{2}{This type represents vector like objects with varying lengths} and a user-specified initial index.")))
-((-4408 . T) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#1| (QUOTE (-1045))) (-12 (|HasCategory| |#1| (QUOTE (-998))) (|HasCategory| |#1| (QUOTE (-1045)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
+((-4409 . T) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#1| (QUOTE (-1045))) (-12 (|HasCategory| |#1| (QUOTE (-998))) (|HasCategory| |#1| (QUOTE (-1045)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
(-600 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 -4408)) (|HasCategory| |#2| (QUOTE (-846))) (|HasAttribute| |#1| (QUOTE -4407)) (|HasCategory| |#3| (QUOTE (-1093))))
+((|HasAttribute| |#1| (QUOTE -4409)) (|HasCategory| |#2| (QUOTE (-846))) (|HasAttribute| |#1| (QUOTE -4408)) (|HasCategory| |#3| (QUOTE (-1093))))
(-601 |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
@@ -2346,19 +2346,19 @@ NIL
NIL
(-604 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).")))
-((-4404 -4032 (-2190 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))) (-4402 . T) (-4401 . T))
-((-4032 (|HasCategory| |#2| (LIST (QUOTE -367) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|)))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#2| (LIST (QUOTE -367) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -367) (|devaluate| |#1|))))
+((-4405 -4034 (-2188 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))) (-4403 . T) (-4402 . T))
+((-4034 (|HasCategory| |#2| (LIST (QUOTE -367) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|)))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#2| (LIST (QUOTE -367) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -367) (|devaluate| |#1|))))
(-605 |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.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (QUOTE (-1151))) (LIST (QUOTE |:|) (QUOTE -2557) (|devaluate| |#1|)))))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| (-1151) (QUOTE (-846))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (QUOTE (-1151))) (LIST (QUOTE |:|) (QUOTE -2556) (|devaluate| |#1|)))))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| (-1151) (QUOTE (-846))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (LIST (QUOTE -610) (QUOTE (-858)))))
(-606 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
(-607 |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}.")))
-((-4408 . T))
+((-4409 . T))
NIL
(-608 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")))
@@ -2376,7 +2376,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
-(-612 -3191 UP)
+(-612 -3195 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
@@ -2398,19 +2398,19 @@ NIL
NIL
(-617 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.")))
-((-4404 . T))
+((-4405 . T))
NIL
(-618 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}.")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . T))
((|HasCategory| |#1| (QUOTE (-844))))
-(-619 R -3191)
+(-619 R -3195)
((|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
(-620 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")))
-((-4402 . T) (-4401 . T) ((-4409 "*") . T) (-4400 . T) (-4404 . T))
+((-4403 . T) (-4402 . T) ((-4410 "*") . T) (-4401 . T) (-4405 . T))
((|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))))
(-621 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.")))
@@ -2426,7 +2426,7 @@ NIL
NIL
(-624 |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}}.")))
-((-4404 . T))
+((-4405 . T))
NIL
(-625 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}}.")))
@@ -2436,30 +2436,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(\\%\\spad{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{\\spad{li}(x)} returns the logarithmic integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{dx / log(x)}.")) (|Ci| (($ $) "\\spad{\\spad{Ci}(x)} returns the cosine integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{cos(x) / x dx}.")) (|Si| (($ $) "\\spad{\\spad{Si}(x)} returns the sine integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{sin(x) / x dx}.")) (|Ei| (($ $) "\\spad{\\spad{Ei}(x)} returns the exponential integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{exp(x)/x dx}.")))
NIL
NIL
-(-627 R -3191)
+(-627 R -3195)
((|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{\\spad{li}(f)} denotes the logarithmic integral")) (|Ci| ((|#2| |#2|) "\\spad{\\spad{Ci}(f)} denotes the cosine integral")) (|Si| ((|#2| |#2|) "\\spad{\\spad{Si}(f)} denotes the sine integral")) (|Ei| ((|#2| |#2|) "\\spad{\\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
-(-628 |lv| -3191)
+(-628 |lv| -3195)
((|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
(-629)
((|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.")))
-((-4408 . T))
-((-12 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (QUOTE (-1151))) (LIST (QUOTE |:|) (QUOTE -2557) (QUOTE (-52))))))) (-4032 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (QUOTE (-1093))) (|HasCategory| (-52) (QUOTE (-1093)))) (-4032 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-52) (QUOTE (-1093))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| (-52) (QUOTE (-1093))) (|HasCategory| (-52) (LIST (QUOTE -309) (QUOTE (-52))))) (|HasCategory| (-1151) (QUOTE (-846))) (-4032 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-52) (QUOTE (-1093))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (QUOTE (-1093))))
+((-4409 . T))
+((-12 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (QUOTE (-1151))) (LIST (QUOTE |:|) (QUOTE -2556) (QUOTE (-52))))))) (-4034 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (QUOTE (-1093))) (|HasCategory| (-52) (QUOTE (-1093)))) (-4034 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-52) (QUOTE (-1093))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| (-52) (QUOTE (-1093))) (|HasCategory| (-52) (LIST (QUOTE -309) (QUOTE (-52))))) (|HasCategory| (-1151) (QUOTE (-846))) (-4034 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-52) (QUOTE (-1093))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (QUOTE (-1093))))
(-630 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 (-363))))
(-631 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) (-4402 . T) (-4401 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4403 . T) (-4402 . T))
NIL
(-632 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).")))
-((-4404 -4032 (-2190 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))) (-4402 . T) (-4401 . T))
-((-4032 (|HasCategory| |#2| (LIST (QUOTE -367) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|)))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#2| (LIST (QUOTE -367) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -367) (|devaluate| |#1|))))
+((-4405 -4034 (-2188 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))) (-4403 . T) (-4402 . T))
+((-4034 (|HasCategory| |#2| (LIST (QUOTE -367) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|)))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#2| (LIST (QUOTE -367) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#2| (LIST (QUOTE -417) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -367) (|devaluate| |#1|))))
(-633 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
@@ -2471,10 +2471,10 @@ NIL
(-635 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
-((-2176 (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-363))))
+((-2174 (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-363))))
(-636 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}.")))
-((-4404 . T))
+((-4405 . T))
NIL
(-637 A B)
((|constructor| (NIL "\\spadtype{ListToMap} allows mappings to be described by a pair of lists of equal lengths. The image of an element \\spad{x},{} which appears in position \\spad{n} in the first list,{} is then the \\spad{n}th element of the second list. A default value or default function can be specified to be used when \\spad{x} does not appear in the first list. In the absence of defaults,{} an error will occur in that case.")) (|match| ((|#2| (|List| |#1|) (|List| |#2|) |#1| (|Mapping| |#2| |#1|)) "\\spad{match(la,{} lb,{} a,{} f)} creates a map defined by lists \\spad{la} and \\spad{lb} of equal length. and applies this map to a. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Argument \\spad{f} is a default function to call if a is not in \\spad{la}. The value returned is then obtained by applying \\spad{f} to argument a.") (((|Mapping| |#2| |#1|) (|List| |#1|) (|List| |#2|) (|Mapping| |#2| |#1|)) "\\spad{match(la,{} lb,{} f)} creates a map defined by lists \\spad{la} and \\spad{lb} of equal length. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Argument \\spad{f} is used as the function to call when the given function argument is not in \\spad{la}. The value returned is \\spad{f} applied to that argument.") ((|#2| (|List| |#1|) (|List| |#2|) |#1| |#2|) "\\spad{match(la,{} lb,{} a,{} b)} creates a map defined by lists \\spad{la} and \\spad{lb} of equal length. and applies this map to a. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Argument \\spad{b} is the default target value if a is not in \\spad{la}. Error: if \\spad{la} and \\spad{lb} are not of equal length.") (((|Mapping| |#2| |#1|) (|List| |#1|) (|List| |#2|) |#2|) "\\spad{match(la,{} lb,{} b)} creates a map defined by lists \\spad{la} and \\spad{lb} of equal length,{} where \\spad{b} is used as the default target value if the given function argument is not in \\spad{la}. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Error: if \\spad{la} and \\spad{lb} are not of equal length.") ((|#2| (|List| |#1|) (|List| |#2|) |#1|) "\\spad{match(la,{} lb,{} a)} creates a map defined by lists \\spad{la} and \\spad{lb} of equal length,{} where \\spad{a} is used as the default source value if the given one is not in \\spad{la}. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Error: if \\spad{la} and \\spad{lb} are not of equal length.") (((|Mapping| |#2| |#1|) (|List| |#1|) (|List| |#2|)) "\\spad{match(la,{} lb)} creates a map with no default source or target values defined by lists \\spad{la} and \\spad{lb} of equal length. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Error: if \\spad{la} and \\spad{lb} are not of equal length. Note: when this map is applied,{} an error occurs when applied to a value missing from \\spad{la}.")))
@@ -2490,16 +2490,16 @@ NIL
NIL
(-640 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()} returns the empty list.")))
-((-4408 . T) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-824))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
+((-4409 . T) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-824))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
(-641 T$)
((|constructor| (NIL "This domain represents AST for Spad literals.")))
NIL
NIL
(-642 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.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-643 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")) (* (($ |#1| $) "\\spad{r*x} returns the left multiplication of the module element \\spad{x} by the ring element \\spad{r}.")))
NIL
@@ -2511,22 +2511,22 @@ NIL
(-645 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 -4408)))
+((|HasAttribute| |#1| (QUOTE -4409)))
(-646 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
-(-647 R -3191 L)
+(-647 R -3195 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
(-648 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}}")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-363))))
(-649 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}")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-363))))
(-650 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}.")))
@@ -2534,15 +2534,15 @@ NIL
((|HasCategory| |#2| (QUOTE (-363))))
(-651 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}.")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . T))
NIL
-(-652 -3191 UP)
+(-652 -3195 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))))
-(-653 A -3397)
+(-653 A -4231)
((|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}}")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-363))))
(-654 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.")))
@@ -2558,7 +2558,7 @@ NIL
NIL
(-657 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}.")))
-((-4402 . T) (-4401 . T))
+((-4403 . T) (-4402 . T))
((|HasCategory| |#1| (QUOTE (-787))))
(-658 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 \\spad{fi} = sum ai/fi} or returns \"failed\" if no such exists.")))
@@ -2566,7 +2566,7 @@ NIL
NIL
(-659 |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) (-4402 . T) (-4401 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4403 . T) (-4402 . T))
((|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-172))))
(-660 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}.")))
@@ -2574,13 +2574,13 @@ NIL
NIL
(-661 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}.")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
NIL
-(-662 -3191)
+(-662 -3195)
((|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
-(-663 -3191 |Row| |Col| M)
+(-663 -3195 |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
@@ -2590,8 +2590,8 @@ NIL
NIL
(-665 |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.")))
-((-4404 . T) (-4407 . T) (-4401 . T) (-4402 . T))
-((|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasAttribute| |#2| (QUOTE (-4409 "*"))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))))) (|HasCategory| |#2| (QUOTE (-307))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-555))) (-4032 (|HasAttribute| |#2| (QUOTE (-4409 "*"))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-233)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-172))))
+((-4405 . T) (-4408 . T) (-4402 . T) (-4403 . T))
+((|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasAttribute| |#2| (QUOTE (-4410 "*"))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))))) (|HasCategory| |#2| (QUOTE (-307))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-555))) (-4034 (|HasAttribute| |#2| (QUOTE (-4410 "*"))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-233)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-172))))
(-666)
((|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
@@ -2611,7 +2611,7 @@ NIL
(-670 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
-((-4032 (-12 (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
+((-4034 (-12 (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (QUOTE (-1045))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
(-671)
((|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
@@ -2655,10 +2655,10 @@ NIL
(-681 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{\\spad{ri} := nrows \\spad{mi}},{} \\spad{\\spad{ci} := ncols \\spad{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 (-4409 "*"))) (|HasCategory| |#2| (QUOTE (-307))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-555))))
+((|HasAttribute| |#2| (QUOTE (-4410 "*"))) (|HasCategory| |#2| (QUOTE (-307))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-555))))
(-682 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{\\spad{ri} := nrows \\spad{mi}},{} \\spad{\\spad{ci} := ncols \\spad{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")))
-((-4407 . T) (-4408 . T))
+((-4408 . T) (-4409 . T))
NIL
(-683 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.")))
@@ -2666,8 +2666,8 @@ NIL
((|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-555))))
(-684 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.")))
-((-4407 . T) (-4408 . T))
-((-4032 (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-555))) (|HasAttribute| |#1| (QUOTE (-4409 "*"))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
+((-4408 . T) (-4409 . T))
+((-4034 (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-555))) (|HasAttribute| |#1| (QUOTE (-4410 "*"))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
(-685 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
@@ -2676,7 +2676,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
-(-687 S -3191 FLAF FLAS)
+(-687 S -3195 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
@@ -2686,11 +2686,11 @@ NIL
NIL
(-689)
((|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")))
-((-4400 . T) (-4405 |has| (-694) (-363)) (-4399 |has| (-694) (-363)) (-1413 . T) (-4406 |has| (-694) (-6 -4406)) (-4403 |has| (-694) (-6 -4403)) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| (-694) (QUOTE (-147))) (|HasCategory| (-694) (QUOTE (-145))) (|HasCategory| (-694) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-694) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| (-694) (QUOTE (-368))) (|HasCategory| (-694) (QUOTE (-363))) (-4032 (|HasCategory| (-694) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-694) (QUOTE (-363)))) (|HasCategory| (-694) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-694) (QUOTE (-233))) (-4032 (|HasCategory| (-694) (QUOTE (-363))) (|HasCategory| (-694) (QUOTE (-349)))) (|HasCategory| (-694) (QUOTE (-349))) (|HasCategory| (-694) (LIST (QUOTE -286) (QUOTE (-694)) (QUOTE (-694)))) (|HasCategory| (-694) (LIST (QUOTE -309) (QUOTE (-694)))) (|HasCategory| (-694) (LIST (QUOTE -514) (QUOTE (-1169)) (QUOTE (-694)))) (|HasCategory| (-694) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-694) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-694) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-694) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (-4032 (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-363))) (|HasCategory| (-694) (QUOTE (-349)))) (|HasCategory| (-694) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-694) (QUOTE (-1018))) (|HasCategory| (-694) (QUOTE (-1193))) (-12 (|HasCategory| (-694) (QUOTE (-998))) (|HasCategory| (-694) (QUOTE (-1193)))) (-4032 (-12 (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905)))) (|HasCategory| (-694) (QUOTE (-363))) (-12 (|HasCategory| (-694) (QUOTE (-349))) (|HasCategory| (-694) (QUOTE (-905))))) (-4032 (-12 (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905)))) (-12 (|HasCategory| (-694) (QUOTE (-363))) (|HasCategory| (-694) (QUOTE (-905)))) (-12 (|HasCategory| (-694) (QUOTE (-349))) (|HasCategory| (-694) (QUOTE (-905))))) (|HasCategory| (-694) (QUOTE (-545))) (-12 (|HasCategory| (-694) (QUOTE (-1054))) (|HasCategory| (-694) (QUOTE (-1193)))) (|HasCategory| (-694) (QUOTE (-1054))) (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905))) (-4032 (-12 (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905)))) (|HasCategory| (-694) (QUOTE (-363)))) (-4032 (-12 (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905)))) (|HasCategory| (-694) (QUOTE (-555)))) (-12 (|HasCategory| (-694) (QUOTE (-233))) (|HasCategory| (-694) (QUOTE (-363)))) (-12 (|HasCategory| (-694) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-694) (QUOTE (-363)))) (|HasCategory| (-694) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-694) (QUOTE (-846))) (|HasCategory| (-694) (QUOTE (-555))) (|HasAttribute| (-694) (QUOTE -4406)) (|HasAttribute| (-694) (QUOTE -4403)) (-12 (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905)))) (|HasCategory| (-694) (QUOTE (-145)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905)))) (|HasCategory| (-694) (QUOTE (-349)))))
+((-4401 . T) (-4406 |has| (-694) (-363)) (-4400 |has| (-694) (-363)) (-1413 . T) (-4407 |has| (-694) (-6 -4407)) (-4404 |has| (-694) (-6 -4404)) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| (-694) (QUOTE (-147))) (|HasCategory| (-694) (QUOTE (-145))) (|HasCategory| (-694) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-694) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| (-694) (QUOTE (-368))) (|HasCategory| (-694) (QUOTE (-363))) (-4034 (|HasCategory| (-694) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-694) (QUOTE (-363)))) (|HasCategory| (-694) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-694) (QUOTE (-233))) (-4034 (|HasCategory| (-694) (QUOTE (-363))) (|HasCategory| (-694) (QUOTE (-349)))) (|HasCategory| (-694) (QUOTE (-349))) (|HasCategory| (-694) (LIST (QUOTE -286) (QUOTE (-694)) (QUOTE (-694)))) (|HasCategory| (-694) (LIST (QUOTE -309) (QUOTE (-694)))) (|HasCategory| (-694) (LIST (QUOTE -514) (QUOTE (-1169)) (QUOTE (-694)))) (|HasCategory| (-694) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-694) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-694) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-694) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (-4034 (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-363))) (|HasCategory| (-694) (QUOTE (-349)))) (|HasCategory| (-694) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-694) (QUOTE (-1018))) (|HasCategory| (-694) (QUOTE (-1193))) (-12 (|HasCategory| (-694) (QUOTE (-998))) (|HasCategory| (-694) (QUOTE (-1193)))) (-4034 (-12 (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905)))) (|HasCategory| (-694) (QUOTE (-363))) (-12 (|HasCategory| (-694) (QUOTE (-349))) (|HasCategory| (-694) (QUOTE (-905))))) (-4034 (-12 (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905)))) (-12 (|HasCategory| (-694) (QUOTE (-363))) (|HasCategory| (-694) (QUOTE (-905)))) (-12 (|HasCategory| (-694) (QUOTE (-349))) (|HasCategory| (-694) (QUOTE (-905))))) (|HasCategory| (-694) (QUOTE (-545))) (-12 (|HasCategory| (-694) (QUOTE (-1054))) (|HasCategory| (-694) (QUOTE (-1193)))) (|HasCategory| (-694) (QUOTE (-1054))) (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905))) (-4034 (-12 (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905)))) (|HasCategory| (-694) (QUOTE (-363)))) (-4034 (-12 (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905)))) (|HasCategory| (-694) (QUOTE (-555)))) (-12 (|HasCategory| (-694) (QUOTE (-233))) (|HasCategory| (-694) (QUOTE (-363)))) (-12 (|HasCategory| (-694) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-694) (QUOTE (-363)))) (|HasCategory| (-694) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-694) (QUOTE (-846))) (|HasCategory| (-694) (QUOTE (-555))) (|HasAttribute| (-694) (QUOTE -4407)) (|HasAttribute| (-694) (QUOTE -4404)) (-12 (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905)))) (|HasCategory| (-694) (QUOTE (-145)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-694) (QUOTE (-307))) (|HasCategory| (-694) (QUOTE (-905)))) (|HasCategory| (-694) (QUOTE (-349)))))
(-690 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}.")))
-((-4408 . T))
+((-4409 . T))
NIL
(-691 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}.")))
@@ -2700,13 +2700,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
-(-693 OV E -3191 PG)
+(-693 OV E -3195 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
(-694)
((|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}")))
-((-1403 . T) (-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-1402 . T) (-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-695 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.")))
@@ -2714,7 +2714,7 @@ NIL
NIL
(-696)
((|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}")))
-((-4406 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4407 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-697 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")))
@@ -2736,7 +2736,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
-(-702 S -3209 I)
+(-702 S -3213 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
@@ -2746,7 +2746,7 @@ NIL
NIL
(-704 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)}.}")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-705 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}.")))
@@ -2756,25 +2756,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
-(-707 R |Mod| -2472 -3164 |exactQuo|)
+(-707 R |Mod| -4219 -4300 |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")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-708 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")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4403 |has| |#1| (-363)) (-4405 |has| |#1| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-1144))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-233))) (|HasAttribute| |#1| (QUOTE -4405)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4404 |has| |#1| (-363)) (-4406 |has| |#1| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-1144))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (QUOTE (-233))) (|HasAttribute| |#1| (QUOTE -4406)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-709 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
(-710 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}.")))
-((-4402 |has| |#1| (-172)) (-4401 |has| |#1| (-172)) (-4404 . T))
+((-4403 |has| |#1| (-172)) (-4402 |has| |#1| (-172)) (-4405 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))))
-(-711 R |Mod| -2472 -3164 |exactQuo|)
+(-711 R |Mod| -4219 -4300 |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")))
-((-4404 . T))
+((-4405 . T))
NIL
(-712 S R)
((|constructor| (NIL "The category of modules over a commutative ring. \\blankline")))
@@ -2782,11 +2782,11 @@ NIL
NIL
(-713 R)
((|constructor| (NIL "The category of modules over a commutative ring. \\blankline")))
-((-4402 . T) (-4401 . T))
+((-4403 . T) (-4402 . T))
NIL
-(-714 -3191)
+(-714 -3195)
((|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]]}.")))
-((-4404 . T))
+((-4405 . T))
NIL
(-715 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.")))
@@ -2810,7 +2810,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-349))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-368))))
(-720 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.")))
-((-4400 |has| |#1| (-363)) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 |has| |#1| (-363)) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-721 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.")))
@@ -2820,7 +2820,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
-(-723 -3191 UP)
+(-723 -3195 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
@@ -2838,8 +2838,8 @@ NIL
NIL
(-727 |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.")))
-(((-4409 "*") |has| |#2| (-172)) (-4400 |has| |#2| (-555)) (-4405 |has| |#2| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#2| (QUOTE (-905))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-172))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-555)))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363))) (|HasAttribute| |#2| (QUOTE -4405)) (|HasCategory| |#2| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-145)))))
+(((-4410 "*") |has| |#2| (-172)) (-4401 |has| |#2| (-555)) (-4406 |has| |#2| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#2| (QUOTE (-905))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-172))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-555)))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-860 |#1|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363))) (|HasAttribute| |#2| (QUOTE -4406)) (|HasCategory| |#2| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-145)))))
(-728 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
@@ -2854,15 +2854,15 @@ NIL
NIL
(-731 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}.")))
-((-4402 |has| |#1| (-172)) (-4401 |has| |#1| (-172)) (-4404 . T))
+((-4403 |has| |#1| (-172)) (-4402 |has| |#1| (-172)) (-4405 . T))
((-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-846))))
(-732 S)
((|constructor| (NIL "A multi-set aggregate is a set which keeps track of the multiplicity of its elements.")))
-((-4397 . T) (-4408 . T))
+((-4398 . T) (-4409 . T))
NIL
(-733 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}.")))
-((-4407 . T) (-4397 . T) (-4408 . T))
+((-4408 . T) (-4398 . T) (-4409 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-734)
((|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.")))
@@ -2874,7 +2874,7 @@ NIL
NIL
(-736 |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}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4402 . T) (-4401 . T) (-4404 . T))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4403 . T) (-4402 . T) (-4405 . T))
NIL
(-737 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")))
@@ -2890,7 +2890,7 @@ NIL
NIL
(-740 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}.")))
-((-4402 . T) (-4401 . T))
+((-4403 . T) (-4402 . T))
NIL
(-741)
((|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}.")))
@@ -2972,11 +2972,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
-(-761 -3191)
+(-761 -3195)
((|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
-(-762 P -3191)
+(-762 P -3195)
((|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
@@ -2984,7 +2984,7 @@ NIL
NIL
NIL
NIL
-(-764 UP -3191)
+(-764 UP -3195)
((|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{\\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{\\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{\\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{\\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{\\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{\\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
@@ -2998,9 +2998,9 @@ NIL
NIL
(-767)
((|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.")))
-(((-4409 "*") . T))
+(((-4410 "*") . T))
NIL
-(-768 R -3191)
+(-768 R -3195)
((|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
@@ -3020,7 +3020,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
-(-773 -3191 |ExtF| |SUEx| |ExtP| |n|)
+(-773 -3195 |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
@@ -3034,23 +3034,23 @@ NIL
NIL
(-776 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.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-905))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169))))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169))))) (-4032 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169)))) (-2176 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169)))))) (-4032 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169)))) (-2176 (|HasCategory| |#1| (QUOTE (-545)))) (-2176 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169)))) (-2176 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-563))))) (-2176 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169)))) (-2176 (|HasCategory| |#1| (LIST (QUOTE -988) (QUOTE (-563))))))) (|HasAttribute| |#1| (QUOTE -4405)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-905))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169))))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169))))) (-4034 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169)))) (-2174 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169)))))) (-4034 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169)))) (-2174 (|HasCategory| |#1| (QUOTE (-545)))) (-2174 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169)))) (-2174 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-563))))) (-2174 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-1169)))) (-2174 (|HasCategory| |#1| (LIST (QUOTE -988) (QUOTE (-563))))))) (|HasAttribute| |#1| (QUOTE -4406)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-777 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
(-778 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)}")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4403 |has| |#1| (-363)) (-4405 |has| |#1| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-1144))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-233))) (|HasAttribute| |#1| (QUOTE -4405)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4404 |has| |#1| (-363)) (-4406 |has| |#1| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-1144))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-233))) (|HasAttribute| |#1| (QUOTE -4406)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-779 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 -407) (QUOTE (-563))))))
(-780 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.}")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
NIL
(-781 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}.")))
@@ -3102,25 +3102,25 @@ NIL
((|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-545))) (|HasCategory| |#2| (QUOTE (-1054))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-368))))
(-793 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,{}\\spad{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}.")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . T))
NIL
-(-794 -4032 R OS S)
+(-794 -4034 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
(-795 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}.")))
-((-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|) (|devaluate| |#1|))) (-4032 (|HasCategory| (-995 |#1|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4032 (|HasCategory| (-995 |#1|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-1054))) (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| (-995 |#1|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-995 |#1|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))))
+((-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|) (|devaluate| |#1|))) (-4034 (|HasCategory| (-995 |#1|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4034 (|HasCategory| (-995 |#1|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-1054))) (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| (-995 |#1|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-995 |#1|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))))
(-796)
((|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
-(-797 R -3191 L)
+(-797 R -3195 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{\\spad{yi}}\\spad{'s} form a basis for the solutions of \\spad{op y = 0}.")))
NIL
NIL
-(-798 R -3191)
+(-798 R -3195)
((|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
@@ -3128,7 +3128,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
-(-800 R -3191)
+(-800 R -3195)
((|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
@@ -3136,11 +3136,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
-(-802 -3191 UP UPUP R)
+(-802 -3195 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
-(-803 -3191 UP L LQ)
+(-803 -3195 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
@@ -3148,41 +3148,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
-(-805 -3191 UP L LQ)
+(-805 -3195 UP L LQ)
((|constructor| (NIL "In-field solution of Riccati equations,{} primitive case.")) (|changeVar| ((|#3| |#3| (|Fraction| |#2|)) "\\spad{changeVar(+/[\\spad{ai} D^i],{} a)} returns the operator \\spad{+/[\\spad{ai} (D+a)\\spad{^i}]}.") ((|#3| |#3| |#2|) "\\spad{changeVar(+/[\\spad{ai} D^i],{} a)} returns the operator \\spad{+/[\\spad{ai} (D+a)\\spad{^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{\\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{\\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 \\spad{ai}}} is \\spad{\\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
-(-806 -3191 UP)
+(-806 -3195 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
-(-807 -3191 L UP A LO)
+(-807 -3195 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
-(-808 -3191 UP)
+(-808 -3195 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{\\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 \\spad{ai}}} is \\spad{\\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))))
-(-809 -3191 LO)
+(-809 -3195 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
-(-810 -3191 LODO)
+(-810 -3195 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(\\spad{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(\\spad{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
-(-811 -3304 S |f|)
+(-811 -3308 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}.")))
-((-4401 |has| |#2| (-1045)) (-4402 |has| |#2| (-1045)) (-4404 |has| |#2| (-6 -4404)) ((-4409 "*") |has| |#2| (-172)) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))))) (-4032 (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (QUOTE (-363))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-363)))) (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (QUOTE (-789))) (-4032 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-844)))) (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-172))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-1045)))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-172)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-233)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-368)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-722)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-789)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-844)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093))))) (-4032 (-12 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1045))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-4032 (-12 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| (-563) (QUOTE (-846))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-4032 (|HasCategory| |#2| (QUOTE (-1045))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093)))) (|HasAttribute| |#2| (QUOTE -4404)) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))))
+((-4402 |has| |#2| (-1045)) (-4403 |has| |#2| (-1045)) (-4405 |has| |#2| (-6 -4405)) ((-4410 "*") |has| |#2| (-172)) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))))) (-4034 (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (QUOTE (-363))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-363)))) (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (QUOTE (-789))) (-4034 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-844)))) (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-172))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-1045)))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1045)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-172)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-233)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-368)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-722)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-789)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-844)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093))))) (-4034 (-12 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1045))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-4034 (-12 (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-789))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-844))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| (-563) (QUOTE (-846))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1045)))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169))))) (-4034 (|HasCategory| |#2| (QUOTE (-1045))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-1093)))) (|HasAttribute| |#2| (QUOTE -4405)) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))))
(-812 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")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-905))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-814 (-1169)) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-814 (-1169)) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-814 (-1169)) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-814 (-1169)) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-814 (-1169)) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasAttribute| |#1| (QUOTE -4405)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-905))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-814 (-1169)) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-814 (-1169)) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-814 (-1169)) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-814 (-1169)) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-814 (-1169)) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasAttribute| |#1| (QUOTE -4406)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-813 |Kernels| R |var|)
((|constructor| (NIL "This constructor produces an ordinary differential ring from a partial differential ring by specifying a variable.")))
-(((-4409 "*") |has| |#2| (-363)) (-4400 |has| |#2| (-363)) (-4405 |has| |#2| (-363)) (-4399 |has| |#2| (-363)) (-4404 . T) (-4402 . T) (-4401 . T))
+(((-4410 "*") |has| |#2| (-363)) (-4401 |has| |#2| (-363)) (-4406 |has| |#2| (-363)) (-4400 |has| |#2| (-363)) (-4405 . T) (-4403 . T) (-4402 . T))
((|HasCategory| |#2| (QUOTE (-363))))
(-814 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})).")))
@@ -3194,7 +3194,7 @@ NIL
NIL
(-816)
((|constructor| (NIL "The category of ordered commutative integral domains,{} where ordering and the arithmetic operations are compatible \\blankline")))
-((-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-817)
((|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}")))
@@ -3222,7 +3222,7 @@ NIL
NIL
(-823 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}.")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . T))
((|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-233))))
(-824)
((|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.")))
@@ -3234,7 +3234,7 @@ NIL
NIL
(-826 S)
((|constructor| (NIL "to become an in order iterator")) (|min| ((|#1| $) "\\spad{min(u)} returns the smallest entry in the multiset aggregate \\spad{u}.")))
-((-4407 . T) (-4397 . T) (-4408 . T))
+((-4408 . T) (-4398 . T) (-4409 . T))
NIL
(-827)
((|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.")))
@@ -3246,8 +3246,8 @@ NIL
NIL
(-829 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.")))
-((-4404 |has| |#1| (-844)))
-((|HasCategory| |#1| (QUOTE (-844))) (-4032 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-844)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-4032 (|HasCategory| |#1| (QUOTE (-844))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-21))))
+((-4405 |has| |#1| (-844)))
+((|HasCategory| |#1| (QUOTE (-844))) (-4034 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-844)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-4034 (|HasCategory| |#1| (QUOTE (-844))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-21))))
(-830 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.")) (|arity| (((|Arity|) $) "\\spad{arity(op)} returns the arity of the operator `op'.")) (|name| ((|#2| $) "\\spad{name(op)} returns the externam name of `op'.")))
NIL
@@ -3258,7 +3258,7 @@ NIL
NIL
(-832 R)
((|constructor| (NIL "Algebra of ADDITIVE operators over a ring.")))
-((-4402 |has| |#1| (-172)) (-4401 |has| |#1| (-172)) (-4404 . T))
+((-4403 |has| |#1| (-172)) (-4402 |has| |#1| (-172)) (-4405 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))))
(-833)
((|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).")))
@@ -3286,13 +3286,13 @@ NIL
NIL
(-839 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.")))
-((-4404 |has| |#1| (-844)))
-((|HasCategory| |#1| (QUOTE (-844))) (-4032 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-844)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-4032 (|HasCategory| |#1| (QUOTE (-844))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-21))))
+((-4405 |has| |#1| (-844)))
+((|HasCategory| |#1| (QUOTE (-844))) (-4034 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-844)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-4034 (|HasCategory| |#1| (QUOTE (-844))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-21))))
(-840)
((|constructor| (NIL "Ordered finite sets.")) (|max| (($) "\\spad{max} is the maximum value of \\%.")) (|min| (($) "\\spad{min} is the minimum value of \\%.")))
NIL
NIL
-(-841 -3304 S)
+(-841 -3308 S)
((|constructor| (NIL "\\indented{3}{This package provides ordering functions on vectors which} are suitable parameters for OrderedDirectProduct.")) (|reverseLex| (((|Boolean|) (|Vector| |#2|) (|Vector| |#2|)) "\\spad{reverseLex(v1,{}v2)} return \\spad{true} if the vector \\spad{v1} is less than the vector \\spad{v2} in the ordering which is total degree refined by the reverse lexicographic ordering.")) (|totalLex| (((|Boolean|) (|Vector| |#2|) (|Vector| |#2|)) "\\spad{totalLex(v1,{}v2)} return \\spad{true} if the vector \\spad{v1} is less than the vector \\spad{v2} in the ordering which is total degree refined by lexicographic ordering.")) (|pureLex| (((|Boolean|) (|Vector| |#2|) (|Vector| |#2|)) "\\spad{pureLex(v1,{}v2)} return \\spad{true} if the vector \\spad{v1} is less than the vector \\spad{v2} in the lexicographic ordering.")))
NIL
NIL
@@ -3306,7 +3306,7 @@ NIL
NIL
(-844)
((|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.")))
-((-4404 . T))
+((-4405 . T))
NIL
(-845 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.")))
@@ -3322,7 +3322,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-172))))
(-848 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)}.}")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-849 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.")))
@@ -3330,11 +3330,11 @@ NIL
((|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555))))
(-850 R |sigma| -1648)
((|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.")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-363))))
(-851 |x| R |sigma| -1648)
((|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}.")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . T))
((|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-363))))
(-852 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..)}.")))
@@ -3378,7 +3378,7 @@ NIL
NIL
(-862 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)")))
-((-4402 |has| |#1| (-172)) (-4401 |has| |#1| (-172)) (-4404 . T))
+((-4403 |has| |#1| (-172)) (-4402 |has| |#1| (-172)) (-4405 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))))
(-863 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).")))
@@ -3390,24 +3390,24 @@ NIL
NIL
(-865 |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}.")))
-((-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-866 |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).")))
-((-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-867 |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).")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| (-866 |#1|) (QUOTE (-905))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| (-866 |#1|) (QUOTE (-145))) (|HasCategory| (-866 |#1|) (QUOTE (-147))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-866 |#1|) (QUOTE (-1018))) (|HasCategory| (-866 |#1|) (QUOTE (-816))) (-4032 (|HasCategory| (-866 |#1|) (QUOTE (-816))) (|HasCategory| (-866 |#1|) (QUOTE (-846)))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-866 |#1|) (QUOTE (-1144))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| (-866 |#1|) (QUOTE (-233))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -514) (QUOTE (-1169)) (LIST (QUOTE -866) (|devaluate| |#1|)))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -309) (LIST (QUOTE -866) (|devaluate| |#1|)))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -286) (LIST (QUOTE -866) (|devaluate| |#1|)) (LIST (QUOTE -866) (|devaluate| |#1|)))) (|HasCategory| (-866 |#1|) (QUOTE (-307))) (|HasCategory| (-866 |#1|) (QUOTE (-545))) (|HasCategory| (-866 |#1|) (QUOTE (-846))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-866 |#1|) (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-866 |#1|) (QUOTE (-905)))) (|HasCategory| (-866 |#1|) (QUOTE (-145)))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| (-866 |#1|) (QUOTE (-905))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| (-866 |#1|) (QUOTE (-145))) (|HasCategory| (-866 |#1|) (QUOTE (-147))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-866 |#1|) (QUOTE (-1018))) (|HasCategory| (-866 |#1|) (QUOTE (-816))) (-4034 (|HasCategory| (-866 |#1|) (QUOTE (-816))) (|HasCategory| (-866 |#1|) (QUOTE (-846)))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-866 |#1|) (QUOTE (-1144))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| (-866 |#1|) (QUOTE (-233))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -514) (QUOTE (-1169)) (LIST (QUOTE -866) (|devaluate| |#1|)))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -309) (LIST (QUOTE -866) (|devaluate| |#1|)))) (|HasCategory| (-866 |#1|) (LIST (QUOTE -286) (LIST (QUOTE -866) (|devaluate| |#1|)) (LIST (QUOTE -866) (|devaluate| |#1|)))) (|HasCategory| (-866 |#1|) (QUOTE (-307))) (|HasCategory| (-866 |#1|) (QUOTE (-545))) (|HasCategory| (-866 |#1|) (QUOTE (-846))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-866 |#1|) (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-866 |#1|) (QUOTE (-905)))) (|HasCategory| (-866 |#1|) (QUOTE (-145)))))
(-868 |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)}.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#2| (QUOTE (-905))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-816))) (-4032 (|HasCategory| |#2| (QUOTE (-816))) (|HasCategory| |#2| (QUOTE (-846)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-1144))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-307))) (|HasCategory| |#2| (QUOTE (-545))) (|HasCategory| |#2| (QUOTE (-846))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-145)))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#2| (QUOTE (-905))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-816))) (-4034 (|HasCategory| |#2| (QUOTE (-816))) (|HasCategory| |#2| (QUOTE (-846)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-1144))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-307))) (|HasCategory| |#2| (QUOTE (-545))) (|HasCategory| |#2| (QUOTE (-846))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-145)))))
(-869 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 (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))))
(-870)
((|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
@@ -3463,7 +3463,7 @@ NIL
(-883 |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 (-2176 (|HasCategory| |#2| (QUOTE (-1045)))) (-2176 (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169)))))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (-2176 (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169)))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169)))))
+((-12 (-2174 (|HasCategory| |#2| (QUOTE (-1045)))) (-2174 (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169)))))) (-12 (|HasCategory| |#2| (QUOTE (-1045))) (-2174 (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169)))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169)))))
(-884 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
@@ -3472,7 +3472,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
-(-886 R -3209)
+(-886 R -3213)
((|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
@@ -3496,7 +3496,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
-(-892 UP -3191)
+(-892 UP -3195)
((|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
@@ -3514,19 +3514,19 @@ NIL
NIL
(-896 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}.")))
-((-4404 . T))
+((-4405 . T))
NIL
(-897 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 (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-898 |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
(-899 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.")))
-((-4404 . T))
+((-4405 . T))
NIL
(-900 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}.")))
@@ -3534,8 +3534,8 @@ NIL
NIL
(-901 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.")))
-((-4404 . T))
-((-4032 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-846)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-846))))
+((-4405 . T))
+((-4034 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-846)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-846))))
(-902 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 \\spad{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
@@ -3550,13 +3550,13 @@ NIL
((|HasCategory| |#1| (QUOTE (-145))))
(-905)
((|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 \\spad{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}.")))
-((-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-906 |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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
((|HasCategory| $ (QUOTE (-147))) (|HasCategory| $ (QUOTE (-145))) (|HasCategory| $ (QUOTE (-368))))
-(-907 R0 -3191 UP UPUP R)
+(-907 R0 -3195 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
@@ -3570,7 +3570,7 @@ NIL
NIL
(-910 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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-911 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.")))
@@ -3584,7 +3584,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(\\spad{li})} constructs the janko group acting on the 100 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed. Error: if {\\em \\spad{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(\\spad{li})} constructs the mathieu group acting on the 24 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed. Error: if {\\em \\spad{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(\\spad{li})} constructs the mathieu group acting on the 23 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed. Error: if {\\em \\spad{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(\\spad{li})} constructs the mathieu group acting on the 22 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed. Error: if {\\em \\spad{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(\\spad{li})} constructs the mathieu group acting on the 12 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed Error: if {\\em \\spad{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(\\spad{li})} constructs the mathieu group acting on the 11 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed. error,{} if {\\em \\spad{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 \\spad{ni}}.")) (|alternatingGroup| (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{alternatingGroup(\\spad{li})} constructs the alternating group acting on the integers in the list {\\em \\spad{li}},{} generators are in general the {\\em n-2}-cycle {\\em (\\spad{li}.3,{}...,{}\\spad{li}.n)} and the 3-cycle {\\em (\\spad{li}.1,{}\\spad{li}.2,{}\\spad{li}.3)},{} if \\spad{n} is odd and product of the 2-cycle {\\em (\\spad{li}.1,{}\\spad{li}.2)} with {\\em n-2}-cycle {\\em (\\spad{li}.3,{}...,{}\\spad{li}.n)} and the 3-cycle {\\em (\\spad{li}.1,{}\\spad{li}.2,{}\\spad{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(\\spad{li})} constructs the symmetric group acting on the integers in the list {\\em \\spad{li}},{} generators are the cycle given by {\\em \\spad{li}} and the 2-cycle {\\em (\\spad{li}.1,{}\\spad{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
-(-914 -3191)
+(-914 -3195)
((|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
@@ -3594,17 +3594,17 @@ NIL
NIL
(-916)
((|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)}")))
-((-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-917)
((|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}.")))
-(((-4409 "*") . T))
+(((-4410 "*") . T))
NIL
-(-918 -3191 P)
+(-918 -3195 P)
((|constructor| (NIL "This package exports interpolation algorithms")) (|LagrangeInterpolation| ((|#2| (|List| |#1|) (|List| |#1|)) "\\spad{LagrangeInterpolation(l1,{}l2)} \\undocumented")))
NIL
NIL
-(-919 |xx| -3191)
+(-919 |xx| -3195)
((|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
@@ -3628,7 +3628,7 @@ NIL
((|constructor| (NIL "This package exports plotting tools")) (|calcRanges| (((|List| (|Segment| (|DoubleFloat|))) (|List| (|List| (|Point| (|DoubleFloat|))))) "\\spad{calcRanges(l)} \\undocumented")))
NIL
NIL
-(-925 R -3191)
+(-925 R -3195)
((|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| (|String|)) "\\spad{assert(x,{} s)} makes the assertion \\spad{s} about \\spad{x}. Error: if \\spad{x} is not a symbol.")))
NIL
NIL
@@ -3640,7 +3640,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
-(-928 S R -3191)
+(-928 S R -3195)
((|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
@@ -3660,11 +3660,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 -882) (|devaluate| |#1|))))
-(-933 R -3191 -3209)
+(-933 R -3195 -3213)
((|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
-(-934 -3209)
+(-934 -3213)
((|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
@@ -3686,8 +3686,8 @@ NIL
NIL
(-939 R)
((|constructor| (NIL "This domain implements points in coordinate space")))
-((-4408 . T) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#1| (QUOTE (-1045))) (-12 (|HasCategory| |#1| (QUOTE (-998))) (|HasCategory| |#1| (QUOTE (-1045)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
+((-4409 . T) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#1| (QUOTE (-1045))) (-12 (|HasCategory| |#1| (QUOTE (-998))) (|HasCategory| |#1| (QUOTE (-1045)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
(-940 |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
@@ -3707,12 +3707,12 @@ NIL
(-944 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 (-905))) (|HasAttribute| |#2| (QUOTE -4405)) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#4| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#4| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#4| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#4| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (QUOTE (-846))))
+((|HasCategory| |#2| (QUOTE (-905))) (|HasAttribute| |#2| (QUOTE -4406)) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#4| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#4| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#4| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#4| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (QUOTE (-846))))
(-945 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}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
NIL
-(-946 E V R P -3191)
+(-946 E V R P -3195)
((|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
@@ -3722,9 +3722,9 @@ NIL
NIL
(-948 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}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-905))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-1169) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-1169) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-1169) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-1169) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-1169) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363))) (|HasAttribute| |#1| (QUOTE -4405)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
-(-949 E V R P -3191)
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-905))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-1169) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-1169) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-1169) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-1169) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-1169) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363))) (|HasAttribute| |#1| (QUOTE -4406)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(-949 E V R P -3195)
((|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 (-452))))
@@ -3746,13 +3746,13 @@ NIL
NIL
(-954 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")))
-((-4408 . T) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
+((-4409 . T) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
(-955)
((|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
-(-956 -3191)
+(-956 -3195)
((|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{\\spad{ai} = \\spad{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{\\spad{ai} = \\spad{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
@@ -3766,12 +3766,12 @@ NIL
NIL
(-959 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}")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-6 -4405)) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-131)))) (|HasAttribute| |#1| (QUOTE -4405)))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-6 -4406)) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-131)))) (|HasAttribute| |#1| (QUOTE -4406)))
(-960 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")))
-((-4404 -12 (|has| |#2| (-473)) (|has| |#1| (-473))))
-((-4032 (-12 (|HasCategory| |#1| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-789)))) (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-846))))) (-12 (|HasCategory| |#1| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-789)))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#1| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-789))))) (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#1| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-789))))) (-12 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#2| (QUOTE (-473)))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#2| (QUOTE (-473)))) (-12 (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-722))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-368)))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#2| (QUOTE (-473)))) (-12 (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-722)))) (-12 (|HasCategory| |#1| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-789))))) (-12 (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-722)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-846)))))
+((-4405 -12 (|has| |#2| (-473)) (|has| |#1| (-473))))
+((-4034 (-12 (|HasCategory| |#1| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-789)))) (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-846))))) (-12 (|HasCategory| |#1| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-789)))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#1| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-789))))) (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#1| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-789))))) (-12 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#2| (QUOTE (-473)))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#2| (QUOTE (-473)))) (-12 (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-722))))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-368)))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#1| (QUOTE (-473))) (|HasCategory| |#2| (QUOTE (-473)))) (-12 (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-722)))) (-12 (|HasCategory| |#1| (QUOTE (-789))) (|HasCategory| |#2| (QUOTE (-789))))) (-12 (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-722)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-846)))))
(-961)
((|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| (($ (|Symbol|) (|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| (((|Symbol|) $) "\\spad{name(p)} returns the name of property \\spad{p}")))
NIL
@@ -3786,7 +3786,7 @@ NIL
NIL
(-964 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}.")))
-((-4407 . T) (-4408 . T))
+((-4408 . T) (-4409 . T))
NIL
(-965 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}}")))
@@ -3806,7 +3806,7 @@ NIL
NIL
(-969 |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}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4401 . T) (-4402 . T) (-4404 . T))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-970)
((|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}.")))
@@ -3818,7 +3818,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-555))))
(-972 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.")))
-((-4407 . T))
+((-4408 . T))
NIL
(-973 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.")))
@@ -3834,7 +3834,7 @@ NIL
NIL
(-976 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}.")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
NIL
(-977 R1 R2)
((|constructor| (NIL "This package \\undocumented")) (|map| (((|Point| |#2|) (|Mapping| |#2| |#1|) (|Point| |#1|)) "\\spad{map(f,{}p)} \\undocumented")))
@@ -3852,7 +3852,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
-(-981 K R UP -3191)
+(-981 K R UP -3195)
((|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{\\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{\\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{\\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{\\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{\\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{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")))
NIL
NIL
@@ -3882,7 +3882,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-905))) (|HasCategory| |#2| (QUOTE (-545))) (|HasCategory| |#2| (QUOTE (-307))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-816))) (|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-1144))))
(-988 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}.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-989 |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}.")))
@@ -3894,7 +3894,7 @@ NIL
NIL
(-991 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.")))
-((-4407 . T) (-4408 . T))
+((-4408 . T) (-4409 . T))
NIL
(-992 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}.")))
@@ -3902,7 +3902,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-545))) (|HasCategory| |#2| (QUOTE (-1054))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-290))))
(-993 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}.")))
-((-4400 |has| |#1| (-290)) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 |has| |#1| (-290)) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-994 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}.")))
@@ -3910,12 +3910,12 @@ NIL
NIL
(-995 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.}")))
-((-4400 |has| |#1| (-290)) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-363))) (-4032 (|HasCategory| |#1| (QUOTE (-290))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-290))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-1054))) (|HasCategory| |#1| (QUOTE (-545))))
+((-4401 |has| |#1| (-290)) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-363))) (-4034 (|HasCategory| |#1| (QUOTE (-290))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-290))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -286) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-1054))) (|HasCategory| |#1| (QUOTE (-545))))
(-996 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}.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-997 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
@@ -3924,14 +3924,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
-(-999 -3191 UP UPUP |radicnd| |n|)
+(-999 -3195 UP UPUP |radicnd| |n|)
((|constructor| (NIL "Function field defined by y**n = \\spad{f}(\\spad{x}).")))
-((-4400 |has| (-407 |#2|) (-363)) (-4405 |has| (-407 |#2|) (-363)) (-4399 |has| (-407 |#2|) (-363)) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| (-407 |#2|) (QUOTE (-145))) (|HasCategory| (-407 |#2|) (QUOTE (-147))) (|HasCategory| (-407 |#2|) (QUOTE (-349))) (-4032 (|HasCategory| (-407 |#2|) (QUOTE (-363))) (|HasCategory| (-407 |#2|) (QUOTE (-349)))) (|HasCategory| (-407 |#2|) (QUOTE (-363))) (|HasCategory| (-407 |#2|) (QUOTE (-368))) (-4032 (-12 (|HasCategory| (-407 |#2|) (QUOTE (-233))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (|HasCategory| (-407 |#2|) (QUOTE (-349)))) (-4032 (-12 (|HasCategory| (-407 |#2|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (-12 (|HasCategory| (-407 |#2|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-407 |#2|) (QUOTE (-349))))) (|HasCategory| (-407 |#2|) (LIST (QUOTE -636) (QUOTE (-563)))) (-4032 (|HasCategory| (-407 |#2|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (|HasCategory| (-407 |#2|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-407 |#2|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| (-407 |#2|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (-12 (|HasCategory| (-407 |#2|) (QUOTE (-233))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))))
+((-4401 |has| (-407 |#2|) (-363)) (-4406 |has| (-407 |#2|) (-363)) (-4400 |has| (-407 |#2|) (-363)) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| (-407 |#2|) (QUOTE (-145))) (|HasCategory| (-407 |#2|) (QUOTE (-147))) (|HasCategory| (-407 |#2|) (QUOTE (-349))) (-4034 (|HasCategory| (-407 |#2|) (QUOTE (-363))) (|HasCategory| (-407 |#2|) (QUOTE (-349)))) (|HasCategory| (-407 |#2|) (QUOTE (-363))) (|HasCategory| (-407 |#2|) (QUOTE (-368))) (-4034 (-12 (|HasCategory| (-407 |#2|) (QUOTE (-233))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (|HasCategory| (-407 |#2|) (QUOTE (-349)))) (-4034 (-12 (|HasCategory| (-407 |#2|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (-12 (|HasCategory| (-407 |#2|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-407 |#2|) (QUOTE (-349))))) (|HasCategory| (-407 |#2|) (LIST (QUOTE -636) (QUOTE (-563)))) (-4034 (|HasCategory| (-407 |#2|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (|HasCategory| (-407 |#2|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-407 |#2|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| (-407 |#2|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))) (-12 (|HasCategory| (-407 |#2|) (QUOTE (-233))) (|HasCategory| (-407 |#2|) (QUOTE (-363)))))
(-1000 |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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| (-563) (QUOTE (-905))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| (-563) (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-147))) (|HasCategory| (-563) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-563) (QUOTE (-1018))) (|HasCategory| (-563) (QUOTE (-816))) (-4032 (|HasCategory| (-563) (QUOTE (-816))) (|HasCategory| (-563) (QUOTE (-846)))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-1144))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-563) (QUOTE (-233))) (|HasCategory| (-563) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-563) (LIST (QUOTE -514) (QUOTE (-1169)) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -309) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -286) (QUOTE (-563)) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-307))) (|HasCategory| (-563) (QUOTE (-545))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-563) (LIST (QUOTE -636) (QUOTE (-563)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (|HasCategory| (-563) (QUOTE (-145)))))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| (-563) (QUOTE (-905))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| (-563) (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-147))) (|HasCategory| (-563) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-563) (QUOTE (-1018))) (|HasCategory| (-563) (QUOTE (-816))) (-4034 (|HasCategory| (-563) (QUOTE (-816))) (|HasCategory| (-563) (QUOTE (-846)))) (|HasCategory| (-563) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-1144))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| (-563) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| (-563) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| (-563) (QUOTE (-233))) (|HasCategory| (-563) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| (-563) (LIST (QUOTE -514) (QUOTE (-1169)) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -309) (QUOTE (-563)))) (|HasCategory| (-563) (LIST (QUOTE -286) (QUOTE (-563)) (QUOTE (-563)))) (|HasCategory| (-563) (QUOTE (-307))) (|HasCategory| (-563) (QUOTE (-545))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-563) (LIST (QUOTE -636) (QUOTE (-563)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-563) (QUOTE (-905)))) (|HasCategory| (-563) (QUOTE (-145)))))
(-1001)
((|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
@@ -3951,7 +3951,7 @@ NIL
(-1005 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 -4408)) (|HasCategory| |#2| (QUOTE (-1093))))
+((|HasAttribute| |#1| (QUOTE -4409)) (|HasCategory| |#2| (QUOTE (-1093))))
(-1006 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
@@ -3962,21 +3962,21 @@ NIL
NIL
(-1008)
((|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}}")))
-((-4400 . T) (-4405 . T) (-4399 . T) (-4402 . T) (-4401 . T) ((-4409 "*") . T) (-4404 . T))
+((-4401 . T) (-4406 . T) (-4400 . T) (-4403 . T) (-4402 . T) ((-4410 "*") . T) (-4405 . T))
NIL
-(-1009 R -3191)
+(-1009 R -3195)
((|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
-(-1010 R -3191)
+(-1010 R -3195)
((|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
-(-1011 -3191 UP)
+(-1011 -3195 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
-(-1012 -3191 UP)
+(-1012 -3195 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
@@ -4010,9 +4010,9 @@ NIL
NIL
(-1020 |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")))
-((-4400 . T) (-4405 . T) (-4399 . T) (-4402 . T) (-4401 . T) ((-4409 "*") . T) (-4404 . T))
-((-4032 (|HasCategory| (-407 (-563)) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-407 (-563)) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-407 (-563)) (LIST (QUOTE -1034) (QUOTE (-563)))))
-(-1021 -3191 L)
+((-4401 . T) (-4406 . T) (-4400 . T) (-4403 . T) (-4402 . T) ((-4410 "*") . T) (-4405 . T))
+((-4034 (|HasCategory| (-407 (-563)) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-407 (-563)) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-407 (-563)) (LIST (QUOTE -1034) (QUOTE (-563)))))
+(-1021 -3195 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{\\spad{fi}} must satisfy \\spad{op \\spad{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
@@ -4022,12 +4022,12 @@ NIL
((|HasCategory| |#1| (QUOTE (-1093))))
(-1023 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.")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -610) (QUOTE (-858)))))
(-1024 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(\\spad{pi},{}n)} returns the matrix {\\em (deltai,{}\\spad{pi}(i))} (Kronecker delta) if the permutation {\\em \\spad{pi}} is in list notation and permutes {\\em {1,{}2,{}...,{}n}}.") (((|Matrix| (|Integer|)) (|Permutation| (|Integer|)) (|Integer|)) "\\spad{permutationRepresentation(\\spad{pi},{}n)} returns the matrix {\\em (deltai,{}\\spad{pi}(i))} (Kronecker delta) for a permutation {\\em \\spad{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 \\spad{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 \\spad{ai}} and {\\em \\spad{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 (-4409 "*"))))
+((|HasAttribute| |#1| (QUOTE (-4410 "*"))))
(-1025 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
@@ -4048,14 +4048,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
-(-1030 -3191 |Expon| |VarSet| |FPol| |LFPol|)
+(-1030 -3195 |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")))
-(((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+(((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-1031)
((|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.}")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (QUOTE (-1169))) (LIST (QUOTE |:|) (QUOTE -2557) (QUOTE (-52))))))) (-4032 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (QUOTE (-1093))) (|HasCategory| (-52) (QUOTE (-1093)))) (-4032 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-52) (QUOTE (-1093))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| (-52) (QUOTE (-1093))) (|HasCategory| (-52) (LIST (QUOTE -309) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (QUOTE (-1093))) (|HasCategory| (-1169) (QUOTE (-846))) (|HasCategory| (-52) (QUOTE (-1093))) (-4032 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (QUOTE (-1169))) (LIST (QUOTE |:|) (QUOTE -2556) (QUOTE (-52))))))) (-4034 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (QUOTE (-1093))) (|HasCategory| (-52) (QUOTE (-1093)))) (-4034 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-52) (QUOTE (-1093))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| (-52) (QUOTE (-1093))) (|HasCategory| (-52) (LIST (QUOTE -309) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (QUOTE (-1093))) (|HasCategory| (-1169) (QUOTE (-846))) (|HasCategory| (-52) (QUOTE (-1093))) (-4034 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))))
(-1032)
((|constructor| (NIL "This domain represents `return' expressions.")) (|expression| (((|SpadAst|) $) "\\spad{expression(e)} returns the expression returned by `e'.")))
NIL
@@ -4098,7 +4098,7 @@ NIL
NIL
(-1042 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}.")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
((-12 (|HasCategory| (-776 |#1| (-860 |#2|)) (QUOTE (-1093))) (|HasCategory| (-776 |#1| (-860 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -776) (|devaluate| |#1|) (LIST (QUOTE -860) (|devaluate| |#2|)))))) (|HasCategory| (-776 |#1| (-860 |#2|)) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-776 |#1| (-860 |#2|)) (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| (-860 |#2|) (QUOTE (-368))) (|HasCategory| (-776 |#1| (-860 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))))
(-1043)
((|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")))
@@ -4110,9 +4110,9 @@ NIL
NIL
(-1045)
((|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.")))
-((-4404 . T))
+((-4405 . T))
NIL
-(-1046 |xx| -3191)
+(-1046 |xx| -3195)
((|constructor| (NIL "This package exports rational interpolation algorithms")))
NIL
NIL
@@ -4122,12 +4122,12 @@ NIL
((|HasCategory| |#4| (QUOTE (-307))) (|HasCategory| |#4| (QUOTE (-363))) (|HasCategory| |#4| (QUOTE (-555))) (|HasCategory| |#4| (QUOTE (-172))))
(-1048 |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")))
-((-4407 . T) (-4402 . T) (-4401 . T))
+((-4408 . T) (-4403 . T) (-4402 . T))
NIL
(-1049 |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}.")))
-((-4407 . T) (-4402 . T) (-4401 . T))
-((-4032 (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|))))) (|HasCategory| |#3| (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-363)))) (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (QUOTE (-307))) (|HasCategory| |#3| (QUOTE (-555))) (|HasCategory| |#3| (QUOTE (-172))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (|HasCategory| |#3| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4403 . T) (-4402 . T))
+((-4034 (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|))))) (|HasCategory| |#3| (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-363)))) (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (QUOTE (-307))) (|HasCategory| |#3| (QUOTE (-555))) (|HasCategory| |#3| (QUOTE (-172))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (|HasCategory| |#3| (LIST (QUOTE -610) (QUOTE (-858)))))
(-1050 |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
@@ -4146,7 +4146,7 @@ NIL
NIL
(-1054)
((|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.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-1055 |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")))
@@ -4154,19 +4154,19 @@ NIL
NIL
(-1056)
((|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.")))
-((-4395 . T) (-4399 . T) (-4394 . T) (-4405 . T) (-4406 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4396 . T) (-4400 . T) (-4395 . T) (-4406 . T) (-4407 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-1057)
((|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}")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (QUOTE (-1169))) (LIST (QUOTE |:|) (QUOTE -2557) (QUOTE (-52))))))) (-4032 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (QUOTE (-1093))) (|HasCategory| (-52) (QUOTE (-1093)))) (-4032 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-52) (QUOTE (-1093))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| (-52) (QUOTE (-1093))) (|HasCategory| (-52) (LIST (QUOTE -309) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (QUOTE (-1093))) (|HasCategory| (-1169) (QUOTE (-846))) (|HasCategory| (-52) (QUOTE (-1093))) (-4032 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (QUOTE (-1169))) (LIST (QUOTE |:|) (QUOTE -2556) (QUOTE (-52))))))) (-4034 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (QUOTE (-1093))) (|HasCategory| (-52) (QUOTE (-1093)))) (-4034 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-52) (QUOTE (-1093))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| (-52) (QUOTE (-1093))) (|HasCategory| (-52) (LIST (QUOTE -309) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (QUOTE (-1093))) (|HasCategory| (-1169) (QUOTE (-846))) (|HasCategory| (-52) (QUOTE (-1093))) (-4034 (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-52) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (LIST (QUOTE -610) (QUOTE (-858)))))
(-1058 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 (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-545))) (|HasCategory| |#2| (LIST (QUOTE -38) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -988) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#4| (LIST (QUOTE -611) (QUOTE (-1169)))))
(-1059 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}}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
NIL
(-1060)
((|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'.")))
@@ -4190,7 +4190,7 @@ NIL
NIL
(-1065 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,{}...,{}\\spad{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,{}...,{}\\spad{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(\\spad{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}.")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
NIL
(-1066 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.")))
@@ -4204,11 +4204,11 @@ NIL
((|constructor| (NIL "This domain implements named rules")) (|name| (((|Symbol|) $) "\\spad{name(x)} returns the symbol")))
NIL
NIL
-(-1069 |Base| R -3191)
+(-1069 |Base| R -3195)
((|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
-(-1070 |Base| R -3191)
+(-1070 |Base| R -3195)
((|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
@@ -4222,8 +4222,8 @@ NIL
NIL
(-1073 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.")))
-((-4400 |has| |#1| (-363)) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-349))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-349)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-368))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-349)))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-363)))))
+((-4401 |has| |#1| (-363)) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-349))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-349)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-368))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-349)))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#1| (QUOTE (-349))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-363)))))
(-1074 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
@@ -4250,8 +4250,8 @@ NIL
NIL
(-1080 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")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-905))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-1081 (-1169)) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-1081 (-1169)) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-1081 (-1169)) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-1081 (-1169)) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-1081 (-1169)) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasAttribute| |#1| (QUOTE -4405)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-905))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-1081 (-1169)) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-1081 (-1169)) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-1081 (-1169)) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-1081 (-1169)) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-1081 (-1169)) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasAttribute| |#1| (QUOTE -4406)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-1081 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
@@ -4294,7 +4294,7 @@ NIL
NIL
(-1091 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}.")))
-((-4397 . T))
+((-4398 . T))
NIL
(-1092 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{=}}")) (|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}.")))
@@ -4310,8 +4310,8 @@ NIL
NIL
(-1095 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)}}")))
-((-4407 . T) (-4397 . T) (-4408 . T))
-((-4032 (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
+((-4408 . T) (-4398 . T) (-4409 . T))
+((-4034 (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
(-1096 |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{\\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
@@ -4338,7 +4338,7 @@ NIL
NIL
(-1102 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.}")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
NIL
(-1103)
((|constructor| (NIL "SymmetricGroupCombinatoricFunctions contains combinatoric functions concerning symmetric groups and representation theory: list young tableaus,{} improper partitions,{} subsets bijection of Coleman.")) (|unrankImproperPartitions1| (((|List| (|Integer|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{unrankImproperPartitions1(n,{}m,{}k)} computes the {\\em k}\\spad{-}th improper partition of nonnegative \\spad{n} in at most \\spad{m} nonnegative parts ordered as follows: first,{} in reverse lexicographically according to their non-zero parts,{} then according to their positions (\\spadignore{i.e.} lexicographical order using {\\em subSet}: {\\em [3,{}0,{}0] < [0,{}3,{}0] < [0,{}0,{}3] < [2,{}1,{}0] < [2,{}0,{}1] < [0,{}2,{}1] < [1,{}2,{}0] < [1,{}0,{}2] < [0,{}1,{}2] < [1,{}1,{}1]}). Note: counting of subtrees is done by {\\em numberOfImproperPartitionsInternal}.")) (|unrankImproperPartitions0| (((|List| (|Integer|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{unrankImproperPartitions0(n,{}m,{}k)} computes the {\\em k}\\spad{-}th improper partition of nonnegative \\spad{n} in \\spad{m} nonnegative parts in reverse lexicographical order. Example: {\\em [0,{}0,{}3] < [0,{}1,{}2] < [0,{}2,{}1] < [0,{}3,{}0] < [1,{}0,{}2] < [1,{}1,{}1] < [1,{}2,{}0] < [2,{}0,{}1] < [2,{}1,{}0] < [3,{}0,{}0]}. Error: if \\spad{k} is negative or too big. Note: counting of subtrees is done by \\spadfunFrom{numberOfImproperPartitions}{SymmetricGroupCombinatoricFunctions}.")) (|subSet| (((|List| (|Integer|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{subSet(n,{}m,{}k)} calculates the {\\em k}\\spad{-}th {\\em m}-subset of the set {\\em 0,{}1,{}...,{}(n-1)} in the lexicographic order considered as a decreasing map from {\\em 0,{}...,{}(m-1)} into {\\em 0,{}...,{}(n-1)}. See \\spad{S}.\\spad{G}. Williamson: Theorem 1.60. Error: if not {\\em (0 <= m <= n and 0 < = k < (n choose m))}.")) (|numberOfImproperPartitions| (((|Integer|) (|Integer|) (|Integer|)) "\\spad{numberOfImproperPartitions(n,{}m)} computes the number of partitions of the nonnegative integer \\spad{n} in \\spad{m} nonnegative parts with regarding the order (improper partitions). Example: {\\em numberOfImproperPartitions (3,{}3)} is 10,{} since {\\em [0,{}0,{}3],{} [0,{}1,{}2],{} [0,{}2,{}1],{} [0,{}3,{}0],{} [1,{}0,{}2],{} [1,{}1,{}1],{} [1,{}2,{}0],{} [2,{}0,{}1],{} [2,{}1,{}0],{} [3,{}0,{}0]} are the possibilities. Note: this operation has a recursive implementation.")) (|nextPartition| (((|Vector| (|Integer|)) (|List| (|Integer|)) (|Vector| (|Integer|)) (|Integer|)) "\\spad{nextPartition(gamma,{}part,{}number)} generates the partition of {\\em number} which follows {\\em part} according to the right-to-left lexicographical order. The partition has the property that its components do not exceed the corresponding components of {\\em gamma}. the first partition is achieved by {\\em part=[]}. Also,{} {\\em []} indicates that {\\em part} is the last partition.") (((|Vector| (|Integer|)) (|Vector| (|Integer|)) (|Vector| (|Integer|)) (|Integer|)) "\\spad{nextPartition(gamma,{}part,{}number)} generates the partition of {\\em number} which follows {\\em part} according to the right-to-left lexicographical order. The partition has the property that its components do not exceed the corresponding components of {\\em gamma}. The first partition is achieved by {\\em part=[]}. Also,{} {\\em []} indicates that {\\em part} is the last partition.")) (|nextLatticePermutation| (((|List| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|)) (|Boolean|)) "\\spad{nextLatticePermutation(lambda,{}lattP,{}constructNotFirst)} generates the lattice permutation according to the proper partition {\\em lambda} succeeding the lattice permutation {\\em lattP} in lexicographical order as long as {\\em constructNotFirst} is \\spad{true}. If {\\em constructNotFirst} is \\spad{false},{} the first lattice permutation is returned. The result {\\em nil} indicates that {\\em lattP} has no successor.")) (|nextColeman| (((|Matrix| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|)) (|Matrix| (|Integer|))) "\\spad{nextColeman(alpha,{}beta,{}C)} generates the next Coleman matrix of column sums {\\em alpha} and row sums {\\em beta} according to the lexicographical order from bottom-to-top. The first Coleman matrix is achieved by {\\em C=new(1,{}1,{}0)}. Also,{} {\\em new(1,{}1,{}0)} indicates that \\spad{C} is the last Coleman matrix.")) (|makeYoungTableau| (((|Matrix| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{makeYoungTableau(lambda,{}gitter)} computes for a given lattice permutation {\\em gitter} and for an improper partition {\\em lambda} the corresponding standard tableau of shape {\\em lambda}. Notes: see {\\em listYoungTableaus}. The entries are from {\\em 0,{}...,{}n-1}.")) (|listYoungTableaus| (((|List| (|Matrix| (|Integer|))) (|List| (|Integer|))) "\\spad{listYoungTableaus(lambda)} where {\\em lambda} is a proper partition generates the list of all standard tableaus of shape {\\em lambda} by means of lattice permutations. The numbers of the lattice permutation are interpreted as column labels. Hence the contents of these lattice permutations are the conjugate of {\\em lambda}. Notes: the functions {\\em nextLatticePermutation} and {\\em makeYoungTableau} are used. The entries are from {\\em 0,{}...,{}n-1}.")) (|inverseColeman| (((|List| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|)) (|Matrix| (|Integer|))) "\\spad{inverseColeman(alpha,{}beta,{}C)}: there is a bijection from the set of matrices having nonnegative entries and row sums {\\em alpha},{} column sums {\\em beta} to the set of {\\em Salpha - Sbeta} double cosets of the symmetric group {\\em Sn}. ({\\em Salpha} is the Young subgroup corresponding to the improper partition {\\em alpha}). For such a matrix \\spad{C},{} inverseColeman(\\spad{alpha},{}\\spad{beta},{}\\spad{C}) calculates the lexicographical smallest {\\em \\spad{pi}} in the corresponding double coset. Note: the resulting permutation {\\em \\spad{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,{}\\spad{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 \\spad{pi}} of such a double coset,{} coleman(\\spad{alpha},{}\\spad{beta},{}\\spad{pi}) generates the Coleman-matrix corresponding to {\\em alpha,{} beta,{} \\spad{pi}}. Note: The permutation {\\em \\spad{pi}} of {\\em {1,{}2,{}...,{}n}} has to be given in list form. Note: the inverse of this map is {\\em inverseColeman} (if {\\em \\spad{pi}} is the lexicographical smallest permutation in the coset). For details see James/Kerber.")))
@@ -4354,8 +4354,8 @@ NIL
NIL
(-1106 |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}.")))
-((-4401 |has| |#3| (-1045)) (-4402 |has| |#3| (-1045)) (-4404 |has| |#3| (-6 -4404)) ((-4409 "*") |has| |#3| (-172)) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))))) (-4032 (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1093)))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1045)))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#3| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#3| (QUOTE (-363))) (-4032 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (QUOTE (-1045)))) (-4032 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-363)))) (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (QUOTE (-789))) (-4032 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (QUOTE (-844)))) (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (QUOTE (-172))) (-4032 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-1045)))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4032 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (QUOTE (-1093)))) (-4032 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (QUOTE (-1045)))) (-4032 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (QUOTE (-1045)))) (-4032 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (QUOTE (-1045)))) (-4032 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1045)))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-25)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-131)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-172)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-233)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-363)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-368)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-722)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-789)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-844)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1045)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1093))))) (-4032 (-12 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1045))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-4032 (-12 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| (-563) (QUOTE (-846))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1045)))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169))))) (-4032 (|HasCategory| |#3| (QUOTE (-1045))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1093)))) (|HasAttribute| |#3| (QUOTE -4404)) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))))
+((-4402 |has| |#3| (-1045)) (-4403 |has| |#3| (-1045)) (-4405 |has| |#3| (-6 -4405)) ((-4410 "*") |has| |#3| (-172)) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))))) (-4034 (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1093)))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1045)))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#3| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#3| (QUOTE (-363))) (-4034 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (QUOTE (-1045)))) (-4034 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-363)))) (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (QUOTE (-789))) (-4034 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (QUOTE (-844)))) (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (QUOTE (-172))) (-4034 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-1045)))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (-4034 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (QUOTE (-1093)))) (-4034 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (QUOTE (-1045)))) (-4034 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (QUOTE (-1045)))) (-4034 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (QUOTE (-1045)))) (-4034 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1045)))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-25)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-131)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-172)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-233)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-363)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-368)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-722)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-789)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-844)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1045)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1093))))) (-4034 (-12 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1045))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-4034 (-12 (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-363))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-722))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-789))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-844))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563)))))) (|HasCategory| (-563) (QUOTE (-846))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1045)))) (-12 (|HasCategory| |#3| (QUOTE (-1045))) (|HasCategory| |#3| (LIST (QUOTE -896) (QUOTE (-1169))))) (-4034 (|HasCategory| |#3| (QUOTE (-1045))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563)))))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#3| (QUOTE (-1093)))) (|HasAttribute| |#3| (QUOTE -4405)) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#3| (QUOTE (-1093))) (|HasCategory| |#3| (LIST (QUOTE -309) (|devaluate| |#3|)))))
(-1107 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
@@ -4364,7 +4364,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
-(-1109 R -3191)
+(-1109 R -3195)
((|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
@@ -4382,19 +4382,19 @@ NIL
NIL
(-1113)
((|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}.")) (|not| (($ $) "\\spad{not(n)} returns the bit-by-bit logical {\\em not} of the single integer \\spad{n}.")) (|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.")))
-((-4395 . T) (-4399 . T) (-4394 . T) (-4405 . T) (-4406 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4396 . T) (-4400 . T) (-4395 . T) (-4406 . T) (-4407 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-1114 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}.")))
-((-4407 . T) (-4408 . T))
+((-4408 . T) (-4409 . T))
NIL
(-1115 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 (-363))) (|HasAttribute| |#3| (QUOTE (-4409 "*"))) (|HasCategory| |#3| (QUOTE (-172))))
+((|HasCategory| |#3| (QUOTE (-363))) (|HasAttribute| |#3| (QUOTE (-4410 "*"))) (|HasCategory| |#3| (QUOTE (-172))))
(-1116 |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.")))
-((-4407 . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4408 . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-1117 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}.")))
@@ -4402,17 +4402,17 @@ NIL
NIL
(-1118 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.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-905))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363))) (|HasAttribute| |#1| (QUOTE -4405)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-905))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363))) (|HasAttribute| |#1| (QUOTE -4406)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-1119 |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}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-363))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-363))))
(-1120 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}")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
NIL
-(-1121 UP -3191)
+(-1121 UP -3195)
((|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
@@ -4466,19 +4466,19 @@ NIL
NIL
(-1134 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.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| (-1133 |#1| |#2|) (LIST (QUOTE -309) (LIST (QUOTE -1133) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1133 |#1| |#2|) (QUOTE (-1093)))) (|HasCategory| (-1133 |#1| |#2|) (QUOTE (-1093))) (-4032 (|HasCategory| (-1133 |#1| |#2|) (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| (-1133 |#1| |#2|) (LIST (QUOTE -309) (LIST (QUOTE -1133) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1133 |#1| |#2|) (QUOTE (-1093))))) (|HasCategory| (-1133 |#1| |#2|) (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| (-1133 |#1| |#2|) (LIST (QUOTE -309) (LIST (QUOTE -1133) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1133 |#1| |#2|) (QUOTE (-1093)))) (|HasCategory| (-1133 |#1| |#2|) (QUOTE (-1093))) (-4034 (|HasCategory| (-1133 |#1| |#2|) (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| (-1133 |#1| |#2|) (LIST (QUOTE -309) (LIST (QUOTE -1133) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1133 |#1| |#2|) (QUOTE (-1093))))) (|HasCategory| (-1133 |#1| |#2|) (LIST (QUOTE -610) (QUOTE (-858)))))
(-1135 |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}.")))
-((-4404 . T) (-4396 |has| |#2| (-6 (-4409 "*"))) (-4407 . T) (-4401 . T) (-4402 . T))
-((|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasAttribute| |#2| (QUOTE (-4409 "*"))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (QUOTE (-307))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-363))) (-4032 (|HasAttribute| |#2| (QUOTE (-4409 "*"))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-233)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-172))))
+((-4405 . T) (-4397 |has| |#2| (-6 (-4410 "*"))) (-4408 . T) (-4402 . T) (-4403 . T))
+((|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasAttribute| |#2| (QUOTE (-4410 "*"))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (QUOTE (-307))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-363))) (-4034 (|HasAttribute| |#2| (QUOTE (-4410 "*"))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-233)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-172))))
(-1136 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
(-1137)
((|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.")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
NIL
(-1138 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.}")))
@@ -4486,12 +4486,12 @@ NIL
NIL
(-1139 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.")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -610) (QUOTE (-858)))))
(-1140 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}.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-1141 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
@@ -4502,8 +4502,8 @@ NIL
NIL
(-1143 |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.")))
-((-4408 . T))
-((-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2557) (|devaluate| |#2|)))))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-846))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))))
+((-4409 . T))
+((-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2556) (|devaluate| |#2|)))))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-846))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))))
(-1144)
((|constructor| (NIL "A class of objects which can be 'stepped through'. Repeated applications of \\spadfun{nextItem} is guaranteed never to return duplicate items and only return \"failed\" after exhausting all elements of the domain. This assumes that the sequence starts with \\spad{init()}. For infinite domains,{} repeated application of \\spadfun{nextItem} is not required to reach all possible domain elements starting from any initial element. \\blankline Conditional attributes: \\indented{2}{infinite\\tab{15}repeated \\spad{nextItem}\\spad{'s} are never \"failed\".}")) (|nextItem| (((|Union| $ "failed") $) "\\spad{nextItem(x)} returns the next item,{} or \"failed\" if domain is exhausted.")) (|init| (($) "\\spad{init()} chooses an initial object for stepping.")))
NIL
@@ -4526,20 +4526,20 @@ NIL
NIL
(-1149 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.")))
-((-4408 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4409 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-1150)
((|constructor| (NIL "A category for string-like objects")) (|string| (($ (|Integer|)) "\\spad{string(i)} returns the decimal representation of \\spad{i} in a string")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
NIL
(-1151)
NIL
-((-4408 . T) (-4407 . T))
-((-4032 (-12 (|HasCategory| (-144) (QUOTE (-846))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144))))) (-12 (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144)))))) (|HasCategory| (-144) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-144) (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144))))))
+((-4409 . T) (-4408 . T))
+((-4034 (-12 (|HasCategory| (-144) (QUOTE (-846))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144))))) (-12 (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144)))))) (|HasCategory| (-144) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| (-144) (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| (-144) (QUOTE (-1093))) (|HasCategory| (-144) (LIST (QUOTE -309) (QUOTE (-144))))))
(-1152 |Entry|)
((|constructor| (NIL "This domain provides tables where the keys are strings. A specialized hash function for strings is used.")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (QUOTE (-1151))) (LIST (QUOTE |:|) (QUOTE -2557) (|devaluate| |#1|)))))) (-4032 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-1093)))) (-4032 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (QUOTE (-1093))) (|HasCategory| (-1151) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (QUOTE (-1151))) (LIST (QUOTE |:|) (QUOTE -2556) (|devaluate| |#1|)))))) (-4034 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-1093)))) (-4034 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (QUOTE (-1093))) (|HasCategory| (-1151) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (LIST (QUOTE -610) (QUOTE (-858)))))
(-1153 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 1.")) (|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,{}\\spad{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
@@ -4570,9 +4570,9 @@ NIL
NIL
(-1160 |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.")))
-(((-4409 "*") -4032 (-2190 (|has| |#1| (-363)) (|has| (-1167 |#1| |#2| |#3|) (-816))) (|has| |#1| (-172)) (-2190 (|has| |#1| (-363)) (|has| (-1167 |#1| |#2| |#3|) (-905)))) (-4400 -4032 (-2190 (|has| |#1| (-363)) (|has| (-1167 |#1| |#2| |#3|) (-816))) (|has| |#1| (-555)) (-2190 (|has| |#1| (-363)) (|has| (-1167 |#1| |#2| |#3|) (-905)))) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) (-4401 . T) (-4402 . T) (-4404 . T))
-((-4032 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-1144))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -286) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -309) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -514) (QUOTE (-1169)) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-4032 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-145)))) (-4032 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-147)))) (-4032 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|)))))) (-4032 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|))))) (|HasCategory| (-563) (QUOTE (-1105))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-363))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-363)))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-4032 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-363))))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-1144))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -286) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -309) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -514) (QUOTE (-1169)) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -1693) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))) (-4032 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -3698) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2606) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-145))) (-4032 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-555)))) (-4032 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4032 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-172)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-145)))))
-(-1161 R -3191)
+(((-4410 "*") -4034 (-2188 (|has| |#1| (-363)) (|has| (-1167 |#1| |#2| |#3|) (-816))) (|has| |#1| (-172)) (-2188 (|has| |#1| (-363)) (|has| (-1167 |#1| |#2| |#3|) (-905)))) (-4401 -4034 (-2188 (|has| |#1| (-363)) (|has| (-1167 |#1| |#2| |#3|) (-816))) (|has| |#1| (-555)) (-2188 (|has| |#1| (-363)) (|has| (-1167 |#1| |#2| |#3|) (-905)))) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) (-4402 . T) (-4403 . T) (-4405 . T))
+((-4034 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-1144))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -286) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -309) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -514) (QUOTE (-1169)) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-4034 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-145)))) (-4034 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-147)))) (-4034 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|)))))) (-4034 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|))))) (|HasCategory| (-563) (QUOTE (-1105))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-363))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-363)))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-4034 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-363))))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-1144))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -286) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -309) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -514) (QUOTE (-1169)) (LIST (QUOTE -1167) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -1692) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))) (-4034 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -2062) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2605) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-145))) (-4034 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-555)))) (-4034 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4034 (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-172)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1167 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(-1161 R -3195)
((|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
@@ -4590,16 +4590,16 @@ NIL
NIL
(-1165 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.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4403 |has| |#1| (-363)) (-4405 |has| |#1| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-1144))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-233))) (|HasAttribute| |#1| (QUOTE -4405)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4404 |has| |#1| (-363)) (-4406 |has| |#1| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-1144))) (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-233))) (|HasAttribute| |#1| (QUOTE -4406)) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-1166 |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}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|)))) (|HasCategory| (-407 (-563)) (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-363))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasSignature| |#1| (LIST (QUOTE -1693) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4032 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -3698) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2606) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|)))) (|HasCategory| (-407 (-563)) (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-363))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasSignature| |#1| (LIST (QUOTE -1692) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4034 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -2062) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2605) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))))
(-1167 |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}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-767)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-767)) (|devaluate| |#1|)))) (|HasCategory| (-767) (QUOTE (-1105))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-767))))) (|HasSignature| |#1| (LIST (QUOTE -1693) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-767))))) (|HasCategory| |#1| (QUOTE (-363))) (-4032 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -3698) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2606) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-767)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-767)) (|devaluate| |#1|)))) (|HasCategory| (-767) (QUOTE (-1105))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-767))))) (|HasSignature| |#1| (LIST (QUOTE -1692) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-767))))) (|HasCategory| |#1| (QUOTE (-363))) (-4034 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -2062) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2605) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))))
(-1168)
((|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
@@ -4614,8 +4614,8 @@ NIL
NIL
(-1171 R)
((|constructor| (NIL "This domain implements symmetric polynomial")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-6 -4405)) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| (-967) (QUOTE (-131))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasAttribute| |#1| (QUOTE -4405)))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-6 -4406)) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-452))) (-12 (|HasCategory| (-967) (QUOTE (-131))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasAttribute| |#1| (QUOTE -4406)))
(-1172)
((|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
@@ -4641,7 +4641,7 @@ NIL
NIL
NIL
(-1178)
-((|constructor| (NIL "The package \\spadtype{System} provides information about the runtime system and its characteristics.")) (|loadNativeModule| (((|Void|) (|String|)) "\\spad{loadNativeModule(path)} loads the native modile designated by \\spadvar{\\spad{path}}.")) (|nativeModuleExtension| (((|String|)) "\\spad{nativeModuleExtension()} returns a string representation of a filename extension for native modules.")) (|hostPlatform| (((|String|)) "\\spad{hostPlatform()} returns a string `triplet' description of the platform hosting the running OpenAxiom system.")) (|rootDirectory| (((|String|)) "\\spad{rootDirectory()} returns the pathname of the root directory for the running OpenAxiom system.")))
+((|constructor| (NIL "The package \\spadtype{System} provides information about the runtime system and its characteristics.")) (|loadNativeModule| (((|Void|) (|String|)) "\\spad{loadNativeModule(path)} loads the native modile designated by \\spadvar{\\spad{path}}.")) (|nativeModuleExtension| (((|String|)) "\\spad{nativeModuleExtension} is a string representation of a filename extension for native modules.")) (|hostByteOrder| (((|ByteOrder|)) "\\sapd{hostByteOrder}")) (|hostPlatform| (((|String|)) "\\spad{hostPlatform} is a string `triplet' description of the platform hosting the running OpenAxiom system.")) (|rootDirectory| (((|String|)) "\\spad{rootDirectory()} returns the pathname of the root directory for the running OpenAxiom system.")))
NIL
NIL
(-1179 S)
@@ -4654,8 +4654,8 @@ NIL
NIL
(-1181 |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}")))
-((-4407 . T) (-4408 . T))
-((-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2557) (|devaluate| |#2|)))))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-1093))) (-4032 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4408 . T) (-4409 . T))
+((-12 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -309) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2387) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2556) (|devaluate| |#2|)))))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| |#2| (QUOTE (-1093)))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -611) (QUOTE (-536)))) (-12 (|HasCategory| |#2| (QUOTE (-1093))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#2| (QUOTE (-1093))) (-4034 (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-858)))) (|HasCategory| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (LIST (QUOTE -610) (QUOTE (-858)))))
(-1182 R)
((|constructor| (NIL "Expands tangents of sums and scalar products.")) (|tanNa| ((|#1| |#1| (|Integer|)) "\\spad{tanNa(a,{} n)} returns \\spad{f(a)} such that if \\spad{a = tan(u)} then \\spad{f(a) = tan(n * u)}.")) (|tanAn| (((|SparseUnivariatePolynomial| |#1|) |#1| (|PositiveInteger|)) "\\spad{tanAn(a,{} n)} returns \\spad{P(x)} such that if \\spad{a = tan(u)} then \\spad{P(tan(u/n)) = 0}.")) (|tanSum| ((|#1| (|List| |#1|)) "\\spad{tanSum([a1,{}...,{}an])} returns \\spad{f(a1,{}...,{}an)} such that if \\spad{\\spad{ai} = tan(\\spad{ui})} then \\spad{f(a1,{}...,{}an) = tan(u1 + ... + un)}.")))
NIL
@@ -4666,7 +4666,7 @@ NIL
NIL
(-1184 |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})}.")))
-((-4408 . T))
+((-4409 . T))
NIL
(-1185 |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.")))
@@ -4706,8 +4706,8 @@ NIL
NIL
(-1194 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}.")))
-((-4408 . T) (-4407 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
+((-4409 . T) (-4408 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1093))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
(-1195 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
@@ -4716,7 +4716,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
-(-1197 R -3191)
+(-1197 R -3195)
((|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
@@ -4724,7 +4724,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
-(-1199 R -3191)
+(-1199 R -3195)
((|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 -611) (LIST (QUOTE -888) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -882) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -882) (|devaluate| |#1|)))))
@@ -4734,12 +4734,12 @@ NIL
((|HasCategory| |#4| (QUOTE (-368))))
(-1201 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.")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
NIL
(-1202 |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}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-363))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-363))))
(-1203 |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
@@ -4752,7 +4752,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 (-1093))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))))
-(-1206 -3191)
+(-1206 -3195)
((|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
@@ -4778,7 +4778,7 @@ NIL
NIL
(-1212)
((|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.")))
-((-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-1213)
((|constructor| (NIL "This domain is a datatype for (unsigned) integer values of precision 16 bits.")))
@@ -4798,7 +4798,7 @@ NIL
NIL
(-1217 |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.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) (-4401 . T) (-4402 . T) (-4404 . T))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-1218 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)}.")))
@@ -4806,16 +4806,16 @@ NIL
((|HasCategory| |#2| (QUOTE (-363))))
(-1219 |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)}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) (-4401 . T) (-4402 . T) (-4404 . T))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-1220 |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)}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) (-4401 . T) (-4402 . T) (-4404 . T))
-((-4032 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-816)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-846)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-905)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1144)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169)))))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-4032 (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-145))))) (-4032 (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-147))))) (-4032 (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-233)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|))))) (|HasCategory| (-563) (QUOTE (-1105))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-363))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-905)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1018)))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-816)))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-816)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-846))))) (-4032 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-816)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-846)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-905)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1144)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169)))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1144)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -1693) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))) (-4032 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -3698) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2606) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-846)))) (|HasCategory| |#2| (QUOTE (-905))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-545)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-307)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-145))))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) (-4402 . T) (-4403 . T) (-4405 . T))
+((-4034 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-816)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-846)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-905)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1144)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169)))))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-4034 (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-145))))) (-4034 (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-147))))) (-4034 (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-233)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|))))) (|HasCategory| (-563) (QUOTE (-1105))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-363))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-905)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1018)))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-816)))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-816)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-846))))) (-4034 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-816)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-846)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-905)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1144)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-1169)))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1144)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -286) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -309) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -514) (QUOTE (-1169)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -1692) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))) (-4034 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -2062) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2605) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-846)))) (|HasCategory| |#2| (QUOTE (-905))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-545)))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-307)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-145))))))
(-1221 |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.")))
-(((-4409 "*") -4032 (-2190 (|has| |#1| (-363)) (|has| (-1249 |#1| |#2| |#3|) (-816))) (|has| |#1| (-172)) (-2190 (|has| |#1| (-363)) (|has| (-1249 |#1| |#2| |#3|) (-905)))) (-4400 -4032 (-2190 (|has| |#1| (-363)) (|has| (-1249 |#1| |#2| |#3|) (-816))) (|has| |#1| (-555)) (-2190 (|has| |#1| (-363)) (|has| (-1249 |#1| |#2| |#3|) (-905)))) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) (-4401 . T) (-4402 . T) (-4404 . T))
-((-4032 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-1144))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -286) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -309) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -514) (QUOTE (-1169)) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-4032 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-145)))) (-4032 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-147)))) (-4032 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|)))))) (-4032 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|))))) (|HasCategory| (-563) (QUOTE (-1105))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-363))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-363)))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-4032 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-363))))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-1144))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -286) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -309) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -514) (QUOTE (-1169)) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -1693) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))) (-4032 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -3698) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2606) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-145))) (-4032 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-555)))) (-4032 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4032 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-172)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4410 "*") -4034 (-2188 (|has| |#1| (-363)) (|has| (-1249 |#1| |#2| |#3|) (-816))) (|has| |#1| (-172)) (-2188 (|has| |#1| (-363)) (|has| (-1249 |#1| |#2| |#3|) (-905)))) (-4401 -4034 (-2188 (|has| |#1| (-363)) (|has| (-1249 |#1| |#2| |#3|) (-816))) (|has| |#1| (-555)) (-2188 (|has| |#1| (-363)) (|has| (-1249 |#1| |#2| |#3|) (-905)))) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) (-4402 . T) (-4403 . T) (-4405 . T))
+((-4034 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-1144))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -286) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -309) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -514) (QUOTE (-1169)) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (-4034 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-145)))) (-4034 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-147)))) (-4034 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|)))))) (-4034 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-563)) (|devaluate| |#1|))))) (|HasCategory| (-563) (QUOTE (-1105))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-363))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-1169)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-363)))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-4034 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-363))))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-1144))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -286) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -309) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -514) (QUOTE (-1169)) (LIST (QUOTE -1249) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -1692) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-563))))) (-4034 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -2062) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2605) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-545))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-307))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-145))) (-4034 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-555)))) (-4034 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4034 (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-816))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-172)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-905))) (|HasCategory| |#1| (QUOTE (-363)))) (-12 (|HasCategory| (-1249 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-363)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-1222 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
@@ -4850,8 +4850,8 @@ NIL
NIL
(-1230 |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}")))
-(((-4409 "*") |has| |#2| (-172)) (-4400 |has| |#2| (-555)) (-4403 |has| |#2| (-363)) (-4405 |has| |#2| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#2| (QUOTE (-905))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-172))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-555)))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4032 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-4032 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1144))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasAttribute| |#2| (QUOTE -4405)) (|HasCategory| |#2| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (-4032 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-145)))))
+(((-4410 "*") |has| |#2| (-172)) (-4401 |has| |#2| (-555)) (-4404 |has| |#2| (-363)) (-4406 |has| |#2| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#2| (QUOTE (-905))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-172))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-555)))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-379)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-379))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -882) (QUOTE (-563)))) (|HasCategory| |#2| (LIST (QUOTE -882) (QUOTE (-563))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-379)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -611) (LIST (QUOTE -888) (QUOTE (-563)))))) (-12 (|HasCategory| (-1075) (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#2| (LIST (QUOTE -611) (QUOTE (-536))))) (|HasCategory| |#2| (QUOTE (-846))) (|HasCategory| |#2| (LIST (QUOTE -636) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (QUOTE (-563)))) (-4034 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| |#2| (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (-4034 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-1144))) (|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasAttribute| |#2| (QUOTE -4406)) (|HasCategory| |#2| (QUOTE (-452))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (-4034 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-905)))) (|HasCategory| |#2| (QUOTE (-145)))))
(-1231 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
@@ -4862,15 +4862,15 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363))) (|HasCategory| |#2| (QUOTE (-452))) (|HasCategory| |#2| (QUOTE (-555))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-1144))))
(-1233 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}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4403 |has| |#1| (-363)) (-4405 |has| |#1| (-6 -4405)) (-4402 . T) (-4401 . T) (-4404 . T))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4404 |has| |#1| (-363)) (-4406 |has| |#1| (-6 -4406)) (-4403 . T) (-4402 . T) (-4405 . T))
NIL
(-1234 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 -896) (QUOTE (-1169)))) (|HasSignature| |#2| (LIST (QUOTE *) (LIST (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#2|)))) (|HasCategory| |#3| (QUOTE (-1105))) (|HasSignature| |#2| (LIST (QUOTE **) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasSignature| |#2| (LIST (QUOTE -1693) (LIST (|devaluate| |#2|) (QUOTE (-1169))))))
+((|HasCategory| |#2| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#2| (LIST (QUOTE *) (LIST (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#2|)))) (|HasCategory| |#3| (QUOTE (-1105))) (|HasSignature| |#2| (LIST (QUOTE **) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasSignature| |#2| (LIST (QUOTE -1692) (LIST (|devaluate| |#2|) (QUOTE (-1169))))))
(-1235 |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.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4401 . T) (-4402 . T) (-4404 . T))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-1236 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}.")))
@@ -4882,7 +4882,7 @@ NIL
NIL
(-1238 |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.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) (-4401 . T) (-4402 . T) (-4404 . T))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-1239 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)}.")))
@@ -4890,24 +4890,24 @@ NIL
NIL
(-1240 |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)}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) (-4401 . T) (-4402 . T) (-4404 . T))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-1241 |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)}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|)))) (|HasCategory| (-407 (-563)) (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-363))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasSignature| |#1| (LIST (QUOTE -1693) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4032 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -3698) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2606) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|)))) (|HasCategory| (-407 (-563)) (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-363))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasSignature| |#1| (LIST (QUOTE -1692) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4034 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -2062) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2605) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))))
(-1242 |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}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4405 |has| |#1| (-363)) (-4399 |has| |#1| (-363)) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|)))) (|HasCategory| (-407 (-563)) (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-363))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-4032 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasSignature| |#1| (LIST (QUOTE -1693) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4032 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -3698) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2606) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4406 |has| |#1| (-363)) (-4400 |has| |#1| (-363)) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#1| (QUOTE (-172))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563))) (|devaluate| |#1|)))) (|HasCategory| (-407 (-563)) (QUOTE (-1105))) (|HasCategory| |#1| (QUOTE (-363))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-4034 (|HasCategory| |#1| (QUOTE (-363))) (|HasCategory| |#1| (QUOTE (-555)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasSignature| |#1| (LIST (QUOTE -1692) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -407) (QUOTE (-563)))))) (-4034 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -2062) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2605) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))))
(-1243 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))}.")))
-(((-4409 "*") |has| (-1242 |#2| |#3| |#4|) (-172)) (-4400 |has| (-1242 |#2| |#3| |#4|) (-555)) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| (-1242 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-1242 |#2| |#3| |#4|) (QUOTE (-145))) (|HasCategory| (-1242 |#2| |#3| |#4|) (QUOTE (-147))) (|HasCategory| (-1242 |#2| |#3| |#4|) (QUOTE (-172))) (-4032 (|HasCategory| (-1242 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-1242 |#2| |#3| |#4|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| (-1242 |#2| |#3| |#4|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-1242 |#2| |#3| |#4|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-1242 |#2| |#3| |#4|) (QUOTE (-363))) (|HasCategory| (-1242 |#2| |#3| |#4|) (QUOTE (-452))) (|HasCategory| (-1242 |#2| |#3| |#4|) (QUOTE (-555))))
+(((-4410 "*") |has| (-1242 |#2| |#3| |#4|) (-172)) (-4401 |has| (-1242 |#2| |#3| |#4|) (-555)) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| (-1242 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-1242 |#2| |#3| |#4|) (QUOTE (-145))) (|HasCategory| (-1242 |#2| |#3| |#4|) (QUOTE (-147))) (|HasCategory| (-1242 |#2| |#3| |#4|) (QUOTE (-172))) (-4034 (|HasCategory| (-1242 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-1242 |#2| |#3| |#4|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563)))))) (|HasCategory| (-1242 |#2| |#3| |#4|) (LIST (QUOTE -1034) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| (-1242 |#2| |#3| |#4|) (LIST (QUOTE -1034) (QUOTE (-563)))) (|HasCategory| (-1242 |#2| |#3| |#4|) (QUOTE (-363))) (|HasCategory| (-1242 |#2| |#3| |#4|) (QUOTE (-452))) (|HasCategory| (-1242 |#2| |#3| |#4|) (QUOTE (-555))))
(-1244 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 -4408)))
+((|HasAttribute| |#1| (QUOTE -4409)))
(-1245 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
@@ -4919,20 +4919,20 @@ NIL
(-1247 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 (-563)))) (|HasCategory| |#2| (QUOTE (-955))) (|HasCategory| |#2| (QUOTE (-1193))) (|HasSignature| |#2| (LIST (QUOTE -2606) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -3698) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (QUOTE (-1169))))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363))))
+((|HasCategory| |#2| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#2| (QUOTE (-955))) (|HasCategory| |#2| (QUOTE (-1193))) (|HasSignature| |#2| (LIST (QUOTE -2605) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -2062) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (QUOTE (-1169))))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#2| (QUOTE (-363))))
(-1248 |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.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4401 . T) (-4402 . T) (-4404 . T))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-1249 |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 1st order coefficient 1.")) (|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}.")))
-(((-4409 "*") |has| |#1| (-172)) (-4400 |has| |#1| (-555)) (-4401 . T) (-4402 . T) (-4404 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (-4032 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-767)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-767)) (|devaluate| |#1|)))) (|HasCategory| (-767) (QUOTE (-1105))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-767))))) (|HasSignature| |#1| (LIST (QUOTE -1693) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-767))))) (|HasCategory| |#1| (QUOTE (-363))) (-4032 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -3698) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2606) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))))
+(((-4410 "*") |has| |#1| (-172)) (-4401 |has| |#1| (-555)) (-4402 . T) (-4403 . T) (-4405 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasCategory| |#1| (QUOTE (-555))) (-4034 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-555)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -896) (QUOTE (-1169)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-767)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-767)) (|devaluate| |#1|)))) (|HasCategory| (-767) (QUOTE (-1105))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-767))))) (|HasSignature| |#1| (LIST (QUOTE -1692) (LIST (|devaluate| |#1|) (QUOTE (-1169)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-767))))) (|HasCategory| |#1| (QUOTE (-363))) (-4034 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-563)))) (|HasCategory| |#1| (QUOTE (-955))) (|HasCategory| |#1| (QUOTE (-1193))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasSignature| |#1| (LIST (QUOTE -2062) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1169))))) (|HasSignature| |#1| (LIST (QUOTE -2605) (LIST (LIST (QUOTE -640) (QUOTE (-1169))) (|devaluate| |#1|)))))))
(-1250 |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
-(-1251 -3191 UP L UTS)
+(-1251 -3195 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 (-555))))
@@ -4950,7 +4950,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-998))) (|HasCategory| |#2| (QUOTE (-1045))) (|HasCategory| |#2| (QUOTE (-722))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-25))))
(-1255 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.")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
NIL
(-1256 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}.")))
@@ -4958,8 +4958,8 @@ NIL
NIL
(-1257 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.")))
-((-4408 . T) (-4407 . T))
-((-4032 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4032 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4032 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#1| (QUOTE (-1045))) (-12 (|HasCategory| |#1| (QUOTE (-998))) (|HasCategory| |#1| (QUOTE (-1045)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
+((-4409 . T) (-4408 . T))
+((-4034 (-12 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|))))) (-4034 (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858))))) (|HasCategory| |#1| (LIST (QUOTE -611) (QUOTE (-536)))) (-4034 (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093)))) (|HasCategory| |#1| (QUOTE (-846))) (|HasCategory| (-563) (QUOTE (-846))) (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-722))) (|HasCategory| |#1| (QUOTE (-1045))) (-12 (|HasCategory| |#1| (QUOTE (-998))) (|HasCategory| |#1| (QUOTE (-1045)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-858)))) (-12 (|HasCategory| |#1| (QUOTE (-1093))) (|HasCategory| |#1| (LIST (QUOTE -309) (|devaluate| |#1|)))))
(-1258)
((|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,{}\\spad{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{\\spad{gi}} of domain \\spadtype{GraphImage}. The contents of viewport,{} \\spad{v},{} will contain \\spad{\\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(\\spad{gi},{}lopt)} creates and displays a viewport window of the domain \\spadtype{TwoDimensionalViewport} whose graph field is assigned to be the given graph,{} \\spad{\\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
@@ -4986,13 +4986,13 @@ NIL
NIL
(-1264 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}.")))
-((-4402 . T) (-4401 . T))
+((-4403 . T) (-4402 . T))
NIL
(-1265 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
-(-1266 K R UP -3191)
+(-1266 K R UP -3195)
((|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{\\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{\\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{\\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{\\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{\\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{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")))
NIL
NIL
@@ -5006,56 +5006,56 @@ NIL
NIL
(-1269 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)")))
-((-4402 |has| |#1| (-172)) (-4401 |has| |#1| (-172)) (-4404 . T))
+((-4403 |has| |#1| (-172)) (-4402 |has| |#1| (-172)) (-4405 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))))
(-1270 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}}.")))
-((-4408 . T) (-4407 . T))
+((-4409 . T) (-4408 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#4| (LIST (QUOTE -309) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -611) (QUOTE (-536)))) (|HasCategory| |#4| (QUOTE (-1093))) (|HasCategory| |#1| (QUOTE (-555))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#4| (LIST (QUOTE -610) (QUOTE (-858)))))
(-1271 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})")))
-((-4401 . T) (-4402 . T) (-4404 . T))
+((-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-1272 |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.")))
-((-4404 . T) (-4400 |has| |#2| (-6 -4400)) (-4402 . T) (-4401 . T))
-((|HasCategory| |#2| (QUOTE (-172))) (|HasAttribute| |#2| (QUOTE -4400)))
+((-4405 . T) (-4401 |has| |#2| (-6 -4401)) (-4403 . T) (-4402 . T))
+((|HasCategory| |#2| (QUOTE (-172))) (|HasAttribute| |#2| (QUOTE -4401)))
(-1273 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
(-1274 |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}.")))
-((-4400 |has| |#2| (-6 -4400)) (-4402 . T) (-4401 . T) (-4404 . T))
+((-4401 |has| |#2| (-6 -4401)) (-4403 . T) (-4402 . T) (-4405 . T))
NIL
-(-1275 S -3191)
+(-1275 S -3195)
((|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 (-368))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))))
-(-1276 -3191)
+(-1276 -3195)
((|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}.")))
-((-4399 . T) (-4405 . T) (-4400 . T) ((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+((-4400 . T) (-4406 . T) (-4401 . T) ((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
(-1277 |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}}.")))
-((-4400 |has| |#2| (-6 -4400)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -713) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasAttribute| |#2| (QUOTE -4400)))
+((-4401 |has| |#2| (-6 -4401)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -713) (LIST (QUOTE -407) (QUOTE (-563))))) (|HasAttribute| |#2| (QUOTE -4401)))
(-1278 |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}.")))
-((-4400 |has| |#2| (-6 -4400)) (-4402 . T) (-4401 . T) (-4404 . T))
+((-4401 |has| |#2| (-6 -4401)) (-4403 . T) (-4402 . T) (-4405 . T))
NIL
(-1279 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.")))
-((-4400 |has| |#1| (-6 -4400)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#1| (QUOTE (-172))) (|HasAttribute| |#1| (QUOTE -4400)))
+((-4401 |has| |#1| (-6 -4401)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#1| (QUOTE (-172))) (|HasAttribute| |#1| (QUOTE -4401)))
(-1280 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}.")))
-((-4404 . T) (-4405 |has| |#1| (-6 -4405)) (-4400 |has| |#1| (-6 -4400)) (-4402 . T) (-4401 . T))
-((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasAttribute| |#1| (QUOTE -4404)) (|HasAttribute| |#1| (QUOTE -4405)) (|HasAttribute| |#1| (QUOTE -4400)))
+((-4405 . T) (-4406 |has| |#1| (-6 -4406)) (-4401 |has| |#1| (-6 -4401)) (-4403 . T) (-4402 . T))
+((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-363))) (|HasAttribute| |#1| (QUOTE -4405)) (|HasAttribute| |#1| (QUOTE -4406)) (|HasAttribute| |#1| (QUOTE -4401)))
(-1281 |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.")))
-((-4400 |has| |#2| (-6 -4400)) (-4402 . T) (-4401 . T) (-4404 . T))
-((|HasCategory| |#2| (QUOTE (-172))) (|HasAttribute| |#2| (QUOTE -4400)))
+((-4401 |has| |#2| (-6 -4401)) (-4403 . T) (-4402 . T) (-4405 . T))
+((|HasCategory| |#2| (QUOTE (-172))) (|HasAttribute| |#2| (QUOTE -4401)))
(-1282 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
@@ -5070,7 +5070,7 @@ NIL
NIL
(-1285 |p|)
((|constructor| (NIL "IntegerMod(\\spad{n}) creates the ring of integers reduced modulo the integer \\spad{n}.")))
-(((-4409 "*") . T) (-4401 . T) (-4402 . T) (-4404 . T))
+(((-4410 "*") . T) (-4402 . T) (-4403 . T) (-4405 . T))
NIL
NIL
NIL
@@ -5088,4 +5088,4 @@ NIL
NIL
NIL
NIL
-((-3 NIL 2282794 2282799 2282804 2282809) (-2 NIL 2282774 2282779 2282784 2282789) (-1 NIL 2282754 2282759 2282764 2282769) (0 NIL 2282734 2282739 2282744 2282749) (-1285 "ZMOD.spad" 2282543 2282556 2282672 2282729) (-1284 "ZLINDEP.spad" 2281587 2281598 2282533 2282538) (-1283 "ZDSOLVE.spad" 2271436 2271458 2281577 2281582) (-1282 "YSTREAM.spad" 2270929 2270940 2271426 2271431) (-1281 "XRPOLY.spad" 2270149 2270169 2270785 2270854) (-1280 "XPR.spad" 2267940 2267953 2269867 2269966) (-1279 "XPOLY.spad" 2267495 2267506 2267796 2267865) (-1278 "XPOLYC.spad" 2266812 2266828 2267421 2267490) (-1277 "XPBWPOLY.spad" 2265249 2265269 2266592 2266661) (-1276 "XF.spad" 2263710 2263725 2265151 2265244) (-1275 "XF.spad" 2262151 2262168 2263594 2263599) (-1274 "XFALG.spad" 2259175 2259191 2262077 2262146) (-1273 "XEXPPKG.spad" 2258426 2258452 2259165 2259170) (-1272 "XDPOLY.spad" 2258040 2258056 2258282 2258351) (-1271 "XALG.spad" 2257700 2257711 2257996 2258035) (-1270 "WUTSET.spad" 2253539 2253556 2257346 2257373) (-1269 "WP.spad" 2252738 2252782 2253397 2253464) (-1268 "WHILEAST.spad" 2252536 2252545 2252728 2252733) (-1267 "WHEREAST.spad" 2252207 2252216 2252526 2252531) (-1266 "WFFINTBS.spad" 2249770 2249792 2252197 2252202) (-1265 "WEIER.spad" 2247984 2247995 2249760 2249765) (-1264 "VSPACE.spad" 2247657 2247668 2247952 2247979) (-1263 "VSPACE.spad" 2247350 2247363 2247647 2247652) (-1262 "VOID.spad" 2247027 2247036 2247340 2247345) (-1261 "VIEW.spad" 2244649 2244658 2247017 2247022) (-1260 "VIEWDEF.spad" 2239846 2239855 2244639 2244644) (-1259 "VIEW3D.spad" 2223681 2223690 2239836 2239841) (-1258 "VIEW2D.spad" 2211418 2211427 2223671 2223676) (-1257 "VECTOR.spad" 2210093 2210104 2210344 2210371) (-1256 "VECTOR2.spad" 2208720 2208733 2210083 2210088) (-1255 "VECTCAT.spad" 2206620 2206631 2208688 2208715) (-1254 "VECTCAT.spad" 2204328 2204341 2206398 2206403) (-1253 "VARIABLE.spad" 2204108 2204123 2204318 2204323) (-1252 "UTYPE.spad" 2203752 2203761 2204098 2204103) (-1251 "UTSODETL.spad" 2203045 2203069 2203708 2203713) (-1250 "UTSODE.spad" 2201233 2201253 2203035 2203040) (-1249 "UTS.spad" 2196022 2196050 2199700 2199797) (-1248 "UTSCAT.spad" 2193473 2193489 2195920 2196017) (-1247 "UTSCAT.spad" 2190568 2190586 2193017 2193022) (-1246 "UTS2.spad" 2190161 2190196 2190558 2190563) (-1245 "URAGG.spad" 2184793 2184804 2190151 2190156) (-1244 "URAGG.spad" 2179389 2179402 2184749 2184754) (-1243 "UPXSSING.spad" 2177032 2177058 2178470 2178603) (-1242 "UPXS.spad" 2174180 2174208 2175164 2175313) (-1241 "UPXSCONS.spad" 2171937 2171957 2172312 2172461) (-1240 "UPXSCCA.spad" 2170502 2170522 2171783 2171932) (-1239 "UPXSCCA.spad" 2169209 2169231 2170492 2170497) (-1238 "UPXSCAT.spad" 2167790 2167806 2169055 2169204) (-1237 "UPXS2.spad" 2167331 2167384 2167780 2167785) (-1236 "UPSQFREE.spad" 2165743 2165757 2167321 2167326) (-1235 "UPSCAT.spad" 2163336 2163360 2165641 2165738) (-1234 "UPSCAT.spad" 2160635 2160661 2162942 2162947) (-1233 "UPOLYC.spad" 2155613 2155624 2160477 2160630) (-1232 "UPOLYC.spad" 2150483 2150496 2155349 2155354) (-1231 "UPOLYC2.spad" 2149952 2149971 2150473 2150478) (-1230 "UP.spad" 2147109 2147124 2147502 2147655) (-1229 "UPMP.spad" 2145999 2146012 2147099 2147104) (-1228 "UPDIVP.spad" 2145562 2145576 2145989 2145994) (-1227 "UPDECOMP.spad" 2143799 2143813 2145552 2145557) (-1226 "UPCDEN.spad" 2143006 2143022 2143789 2143794) (-1225 "UP2.spad" 2142368 2142389 2142996 2143001) (-1224 "UNISEG.spad" 2141721 2141732 2142287 2142292) (-1223 "UNISEG2.spad" 2141214 2141227 2141677 2141682) (-1222 "UNIFACT.spad" 2140315 2140327 2141204 2141209) (-1221 "ULS.spad" 2130867 2130895 2131960 2132389) (-1220 "ULSCONS.spad" 2123261 2123281 2123633 2123782) (-1219 "ULSCCAT.spad" 2120990 2121010 2123107 2123256) (-1218 "ULSCCAT.spad" 2118827 2118849 2120946 2120951) (-1217 "ULSCAT.spad" 2117043 2117059 2118673 2118822) (-1216 "ULS2.spad" 2116555 2116608 2117033 2117038) (-1215 "UINT8.spad" 2116432 2116441 2116545 2116550) (-1214 "UINT32.spad" 2116308 2116317 2116422 2116427) (-1213 "UINT16.spad" 2116184 2116193 2116298 2116303) (-1212 "UFD.spad" 2115249 2115258 2116110 2116179) (-1211 "UFD.spad" 2114376 2114387 2115239 2115244) (-1210 "UDVO.spad" 2113223 2113232 2114366 2114371) (-1209 "UDPO.spad" 2110650 2110661 2113179 2113184) (-1208 "TYPE.spad" 2110582 2110591 2110640 2110645) (-1207 "TYPEAST.spad" 2110501 2110510 2110572 2110577) (-1206 "TWOFACT.spad" 2109151 2109166 2110491 2110496) (-1205 "TUPLE.spad" 2108635 2108646 2109050 2109055) (-1204 "TUBETOOL.spad" 2105472 2105481 2108625 2108630) (-1203 "TUBE.spad" 2104113 2104130 2105462 2105467) (-1202 "TS.spad" 2102702 2102718 2103678 2103775) (-1201 "TSETCAT.spad" 2089829 2089846 2102670 2102697) (-1200 "TSETCAT.spad" 2076942 2076961 2089785 2089790) (-1199 "TRMANIP.spad" 2071308 2071325 2076648 2076653) (-1198 "TRIMAT.spad" 2070267 2070292 2071298 2071303) (-1197 "TRIGMNIP.spad" 2068784 2068801 2070257 2070262) (-1196 "TRIGCAT.spad" 2068296 2068305 2068774 2068779) (-1195 "TRIGCAT.spad" 2067806 2067817 2068286 2068291) (-1194 "TREE.spad" 2066377 2066388 2067413 2067440) (-1193 "TRANFUN.spad" 2066208 2066217 2066367 2066372) (-1192 "TRANFUN.spad" 2066037 2066048 2066198 2066203) (-1191 "TOPSP.spad" 2065711 2065720 2066027 2066032) (-1190 "TOOLSIGN.spad" 2065374 2065385 2065701 2065706) (-1189 "TEXTFILE.spad" 2063931 2063940 2065364 2065369) (-1188 "TEX.spad" 2061063 2061072 2063921 2063926) (-1187 "TEX1.spad" 2060619 2060630 2061053 2061058) (-1186 "TEMUTL.spad" 2060174 2060183 2060609 2060614) (-1185 "TBCMPPK.spad" 2058267 2058290 2060164 2060169) (-1184 "TBAGG.spad" 2057303 2057326 2058247 2058262) (-1183 "TBAGG.spad" 2056347 2056372 2057293 2057298) (-1182 "TANEXP.spad" 2055723 2055734 2056337 2056342) (-1181 "TABLE.spad" 2054134 2054157 2054404 2054431) (-1180 "TABLEAU.spad" 2053615 2053626 2054124 2054129) (-1179 "TABLBUMP.spad" 2050398 2050409 2053605 2053610) (-1178 "SYSTEM.spad" 2049672 2049681 2050388 2050393) (-1177 "SYSSOLP.spad" 2047145 2047156 2049662 2049667) (-1176 "SYSNNI.spad" 2046321 2046332 2047135 2047140) (-1175 "SYSINT.spad" 2045794 2045805 2046311 2046316) (-1174 "SYNTAX.spad" 2042064 2042073 2045784 2045789) (-1173 "SYMTAB.spad" 2040120 2040129 2042054 2042059) (-1172 "SYMS.spad" 2036105 2036114 2040110 2040115) (-1171 "SYMPOLY.spad" 2035112 2035123 2035194 2035321) (-1170 "SYMFUNC.spad" 2034587 2034598 2035102 2035107) (-1169 "SYMBOL.spad" 2032014 2032023 2034577 2034582) (-1168 "SWITCH.spad" 2028771 2028780 2032004 2032009) (-1167 "SUTS.spad" 2025670 2025698 2027238 2027335) (-1166 "SUPXS.spad" 2022805 2022833 2023802 2023951) (-1165 "SUP.spad" 2019574 2019585 2020355 2020508) (-1164 "SUPFRACF.spad" 2018679 2018697 2019564 2019569) (-1163 "SUP2.spad" 2018069 2018082 2018669 2018674) (-1162 "SUMRF.spad" 2017035 2017046 2018059 2018064) (-1161 "SUMFS.spad" 2016668 2016685 2017025 2017030) (-1160 "SULS.spad" 2007207 2007235 2008313 2008742) (-1159 "SUCHTAST.spad" 2006976 2006985 2007197 2007202) (-1158 "SUCH.spad" 2006656 2006671 2006966 2006971) (-1157 "SUBSPACE.spad" 1998663 1998678 2006646 2006651) (-1156 "SUBRESP.spad" 1997823 1997837 1998619 1998624) (-1155 "STTF.spad" 1993922 1993938 1997813 1997818) (-1154 "STTFNC.spad" 1990390 1990406 1993912 1993917) (-1153 "STTAYLOR.spad" 1982788 1982799 1990271 1990276) (-1152 "STRTBL.spad" 1981293 1981310 1981442 1981469) (-1151 "STRING.spad" 1980702 1980711 1980716 1980743) (-1150 "STRICAT.spad" 1980490 1980499 1980670 1980697) (-1149 "STREAM.spad" 1977348 1977359 1980015 1980030) (-1148 "STREAM3.spad" 1976893 1976908 1977338 1977343) (-1147 "STREAM2.spad" 1975961 1975974 1976883 1976888) (-1146 "STREAM1.spad" 1975665 1975676 1975951 1975956) (-1145 "STINPROD.spad" 1974571 1974587 1975655 1975660) (-1144 "STEP.spad" 1973772 1973781 1974561 1974566) (-1143 "STBL.spad" 1972298 1972326 1972465 1972480) (-1142 "STAGG.spad" 1971373 1971384 1972288 1972293) (-1141 "STAGG.spad" 1970446 1970459 1971363 1971368) (-1140 "STACK.spad" 1969797 1969808 1970053 1970080) (-1139 "SREGSET.spad" 1967501 1967518 1969443 1969470) (-1138 "SRDCMPK.spad" 1966046 1966066 1967491 1967496) (-1137 "SRAGG.spad" 1961143 1961152 1966014 1966041) (-1136 "SRAGG.spad" 1956260 1956271 1961133 1961138) (-1135 "SQMATRIX.spad" 1953876 1953894 1954792 1954879) (-1134 "SPLTREE.spad" 1948428 1948441 1953312 1953339) (-1133 "SPLNODE.spad" 1945016 1945029 1948418 1948423) (-1132 "SPFCAT.spad" 1943793 1943802 1945006 1945011) (-1131 "SPECOUT.spad" 1942343 1942352 1943783 1943788) (-1130 "SPADXPT.spad" 1934482 1934491 1942333 1942338) (-1129 "spad-parser.spad" 1933947 1933956 1934472 1934477) (-1128 "SPADAST.spad" 1933648 1933657 1933937 1933942) (-1127 "SPACEC.spad" 1917661 1917672 1933638 1933643) (-1126 "SPACE3.spad" 1917437 1917448 1917651 1917656) (-1125 "SORTPAK.spad" 1916982 1916995 1917393 1917398) (-1124 "SOLVETRA.spad" 1914739 1914750 1916972 1916977) (-1123 "SOLVESER.spad" 1913259 1913270 1914729 1914734) (-1122 "SOLVERAD.spad" 1909269 1909280 1913249 1913254) (-1121 "SOLVEFOR.spad" 1907689 1907707 1909259 1909264) (-1120 "SNTSCAT.spad" 1907289 1907306 1907657 1907684) (-1119 "SMTS.spad" 1905549 1905575 1906854 1906951) (-1118 "SMP.spad" 1902988 1903008 1903378 1903505) (-1117 "SMITH.spad" 1901831 1901856 1902978 1902983) (-1116 "SMATCAT.spad" 1899941 1899971 1901775 1901826) (-1115 "SMATCAT.spad" 1897983 1898015 1899819 1899824) (-1114 "SKAGG.spad" 1896944 1896955 1897951 1897978) (-1113 "SINT.spad" 1895770 1895779 1896810 1896939) (-1112 "SIMPAN.spad" 1895498 1895507 1895760 1895765) (-1111 "SIG.spad" 1894826 1894835 1895488 1895493) (-1110 "SIGNRF.spad" 1893934 1893945 1894816 1894821) (-1109 "SIGNEF.spad" 1893203 1893220 1893924 1893929) (-1108 "SIGAST.spad" 1892584 1892593 1893193 1893198) (-1107 "SHP.spad" 1890502 1890517 1892540 1892545) (-1106 "SHDP.spad" 1880213 1880240 1880722 1880853) (-1105 "SGROUP.spad" 1879821 1879830 1880203 1880208) (-1104 "SGROUP.spad" 1879427 1879438 1879811 1879816) (-1103 "SGCF.spad" 1872308 1872317 1879417 1879422) (-1102 "SFRTCAT.spad" 1871236 1871253 1872276 1872303) (-1101 "SFRGCD.spad" 1870299 1870319 1871226 1871231) (-1100 "SFQCMPK.spad" 1864936 1864956 1870289 1870294) (-1099 "SFORT.spad" 1864371 1864385 1864926 1864931) (-1098 "SEXOF.spad" 1864214 1864254 1864361 1864366) (-1097 "SEX.spad" 1864106 1864115 1864204 1864209) (-1096 "SEXCAT.spad" 1861657 1861697 1864096 1864101) (-1095 "SET.spad" 1859957 1859968 1861078 1861117) (-1094 "SETMN.spad" 1858391 1858408 1859947 1859952) (-1093 "SETCAT.spad" 1857876 1857885 1858381 1858386) (-1092 "SETCAT.spad" 1857359 1857370 1857866 1857871) (-1091 "SETAGG.spad" 1853880 1853891 1857339 1857354) (-1090 "SETAGG.spad" 1850409 1850422 1853870 1853875) (-1089 "SEQAST.spad" 1850112 1850121 1850399 1850404) (-1088 "SEGXCAT.spad" 1849234 1849247 1850102 1850107) (-1087 "SEG.spad" 1849047 1849058 1849153 1849158) (-1086 "SEGCAT.spad" 1847954 1847965 1849037 1849042) (-1085 "SEGBIND.spad" 1847026 1847037 1847909 1847914) (-1084 "SEGBIND2.spad" 1846722 1846735 1847016 1847021) (-1083 "SEGAST.spad" 1846436 1846445 1846712 1846717) (-1082 "SEG2.spad" 1845861 1845874 1846392 1846397) (-1081 "SDVAR.spad" 1845137 1845148 1845851 1845856) (-1080 "SDPOL.spad" 1842527 1842538 1842818 1842945) (-1079 "SCPKG.spad" 1840606 1840617 1842517 1842522) (-1078 "SCOPE.spad" 1839751 1839760 1840596 1840601) (-1077 "SCACHE.spad" 1838433 1838444 1839741 1839746) (-1076 "SASTCAT.spad" 1838342 1838351 1838423 1838428) (-1075 "SAOS.spad" 1838214 1838223 1838332 1838337) (-1074 "SAERFFC.spad" 1837927 1837947 1838204 1838209) (-1073 "SAE.spad" 1836102 1836118 1836713 1836848) (-1072 "SAEFACT.spad" 1835803 1835823 1836092 1836097) (-1071 "RURPK.spad" 1833444 1833460 1835793 1835798) (-1070 "RULESET.spad" 1832885 1832909 1833434 1833439) (-1069 "RULE.spad" 1831089 1831113 1832875 1832880) (-1068 "RULECOLD.spad" 1830941 1830954 1831079 1831084) (-1067 "RSTRCAST.spad" 1830658 1830667 1830931 1830936) (-1066 "RSETGCD.spad" 1827036 1827056 1830648 1830653) (-1065 "RSETCAT.spad" 1816820 1816837 1827004 1827031) (-1064 "RSETCAT.spad" 1806624 1806643 1816810 1816815) (-1063 "RSDCMPK.spad" 1805076 1805096 1806614 1806619) (-1062 "RRCC.spad" 1803460 1803490 1805066 1805071) (-1061 "RRCC.spad" 1801842 1801874 1803450 1803455) (-1060 "RPTAST.spad" 1801544 1801553 1801832 1801837) (-1059 "RPOLCAT.spad" 1780904 1780919 1801412 1801539) (-1058 "RPOLCAT.spad" 1759978 1759995 1780488 1780493) (-1057 "ROUTINE.spad" 1755841 1755850 1758625 1758652) (-1056 "ROMAN.spad" 1755169 1755178 1755707 1755836) (-1055 "ROIRC.spad" 1754249 1754281 1755159 1755164) (-1054 "RNS.spad" 1753152 1753161 1754151 1754244) (-1053 "RNS.spad" 1752141 1752152 1753142 1753147) (-1052 "RNG.spad" 1751876 1751885 1752131 1752136) (-1051 "RMODULE.spad" 1751514 1751525 1751866 1751871) (-1050 "RMCAT2.spad" 1750922 1750979 1751504 1751509) (-1049 "RMATRIX.spad" 1749746 1749765 1750089 1750128) (-1048 "RMATCAT.spad" 1745279 1745310 1749702 1749741) (-1047 "RMATCAT.spad" 1740702 1740735 1745127 1745132) (-1046 "RINTERP.spad" 1740590 1740610 1740692 1740697) (-1045 "RING.spad" 1740060 1740069 1740570 1740585) (-1044 "RING.spad" 1739538 1739549 1740050 1740055) (-1043 "RIDIST.spad" 1738922 1738931 1739528 1739533) (-1042 "RGCHAIN.spad" 1737501 1737517 1738407 1738434) (-1041 "RGBCSPC.spad" 1737282 1737294 1737491 1737496) (-1040 "RGBCMDL.spad" 1736812 1736824 1737272 1737277) (-1039 "RF.spad" 1734426 1734437 1736802 1736807) (-1038 "RFFACTOR.spad" 1733888 1733899 1734416 1734421) (-1037 "RFFACT.spad" 1733623 1733635 1733878 1733883) (-1036 "RFDIST.spad" 1732611 1732620 1733613 1733618) (-1035 "RETSOL.spad" 1732028 1732041 1732601 1732606) (-1034 "RETRACT.spad" 1731456 1731467 1732018 1732023) (-1033 "RETRACT.spad" 1730882 1730895 1731446 1731451) (-1032 "RETAST.spad" 1730694 1730703 1730872 1730877) (-1031 "RESULT.spad" 1728754 1728763 1729341 1729368) (-1030 "RESRING.spad" 1728101 1728148 1728692 1728749) (-1029 "RESLATC.spad" 1727425 1727436 1728091 1728096) (-1028 "REPSQ.spad" 1727154 1727165 1727415 1727420) (-1027 "REP.spad" 1724706 1724715 1727144 1727149) (-1026 "REPDB.spad" 1724411 1724422 1724696 1724701) (-1025 "REP2.spad" 1713983 1713994 1724253 1724258) (-1024 "REP1.spad" 1707973 1707984 1713933 1713938) (-1023 "REGSET.spad" 1705770 1705787 1707619 1707646) (-1022 "REF.spad" 1705099 1705110 1705725 1705730) (-1021 "REDORDER.spad" 1704275 1704292 1705089 1705094) (-1020 "RECLOS.spad" 1703058 1703078 1703762 1703855) (-1019 "REALSOLV.spad" 1702190 1702199 1703048 1703053) (-1018 "REAL.spad" 1702062 1702071 1702180 1702185) (-1017 "REAL0Q.spad" 1699344 1699359 1702052 1702057) (-1016 "REAL0.spad" 1696172 1696187 1699334 1699339) (-1015 "RDUCEAST.spad" 1695893 1695902 1696162 1696167) (-1014 "RDIV.spad" 1695544 1695569 1695883 1695888) (-1013 "RDIST.spad" 1695107 1695118 1695534 1695539) (-1012 "RDETRS.spad" 1693903 1693921 1695097 1695102) (-1011 "RDETR.spad" 1692010 1692028 1693893 1693898) (-1010 "RDEEFS.spad" 1691083 1691100 1692000 1692005) (-1009 "RDEEF.spad" 1690079 1690096 1691073 1691078) (-1008 "RCFIELD.spad" 1687265 1687274 1689981 1690074) (-1007 "RCFIELD.spad" 1684537 1684548 1687255 1687260) (-1006 "RCAGG.spad" 1682449 1682460 1684527 1684532) (-1005 "RCAGG.spad" 1680288 1680301 1682368 1682373) (-1004 "RATRET.spad" 1679648 1679659 1680278 1680283) (-1003 "RATFACT.spad" 1679340 1679352 1679638 1679643) (-1002 "RANDSRC.spad" 1678659 1678668 1679330 1679335) (-1001 "RADUTIL.spad" 1678413 1678422 1678649 1678654) (-1000 "RADIX.spad" 1675314 1675328 1676880 1676973) (-999 "RADFF.spad" 1673728 1673764 1673846 1674002) (-998 "RADCAT.spad" 1673322 1673330 1673718 1673723) (-997 "RADCAT.spad" 1672914 1672924 1673312 1673317) (-996 "QUEUE.spad" 1672257 1672267 1672521 1672548) (-995 "QUAT.spad" 1670839 1670849 1671181 1671246) (-994 "QUATCT2.spad" 1670458 1670476 1670829 1670834) (-993 "QUATCAT.spad" 1668623 1668633 1670388 1670453) (-992 "QUATCAT.spad" 1666539 1666551 1668306 1668311) (-991 "QUAGG.spad" 1665365 1665375 1666507 1666534) (-990 "QQUTAST.spad" 1665134 1665142 1665355 1665360) (-989 "QFORM.spad" 1664597 1664611 1665124 1665129) (-988 "QFCAT.spad" 1663300 1663310 1664499 1664592) (-987 "QFCAT.spad" 1661594 1661606 1662795 1662800) (-986 "QFCAT2.spad" 1661285 1661301 1661584 1661589) (-985 "QEQUAT.spad" 1660842 1660850 1661275 1661280) (-984 "QCMPACK.spad" 1655589 1655608 1660832 1660837) (-983 "QALGSET.spad" 1651664 1651696 1655503 1655508) (-982 "QALGSET2.spad" 1649660 1649678 1651654 1651659) (-981 "PWFFINTB.spad" 1646970 1646991 1649650 1649655) (-980 "PUSHVAR.spad" 1646299 1646318 1646960 1646965) (-979 "PTRANFN.spad" 1642425 1642435 1646289 1646294) (-978 "PTPACK.spad" 1639513 1639523 1642415 1642420) (-977 "PTFUNC2.spad" 1639334 1639348 1639503 1639508) (-976 "PTCAT.spad" 1638583 1638593 1639302 1639329) (-975 "PSQFR.spad" 1637890 1637914 1638573 1638578) (-974 "PSEUDLIN.spad" 1636748 1636758 1637880 1637885) (-973 "PSETPK.spad" 1622181 1622197 1636626 1636631) (-972 "PSETCAT.spad" 1616101 1616124 1622161 1622176) (-971 "PSETCAT.spad" 1609995 1610020 1616057 1616062) (-970 "PSCURVE.spad" 1608978 1608986 1609985 1609990) (-969 "PSCAT.spad" 1607745 1607774 1608876 1608973) (-968 "PSCAT.spad" 1606602 1606633 1607735 1607740) (-967 "PRTITION.spad" 1605547 1605555 1606592 1606597) (-966 "PRTDAST.spad" 1605266 1605274 1605537 1605542) (-965 "PRS.spad" 1594828 1594845 1605222 1605227) (-964 "PRQAGG.spad" 1594259 1594269 1594796 1594823) (-963 "PROPLOG.spad" 1593662 1593670 1594249 1594254) (-962 "PROPFRML.spad" 1591580 1591591 1593652 1593657) (-961 "PROPERTY.spad" 1591074 1591082 1591570 1591575) (-960 "PRODUCT.spad" 1588754 1588766 1589040 1589095) (-959 "PR.spad" 1587140 1587152 1587845 1587972) (-958 "PRINT.spad" 1586892 1586900 1587130 1587135) (-957 "PRIMES.spad" 1585143 1585153 1586882 1586887) (-956 "PRIMELT.spad" 1583124 1583138 1585133 1585138) (-955 "PRIMCAT.spad" 1582747 1582755 1583114 1583119) (-954 "PRIMARR.spad" 1581752 1581762 1581930 1581957) (-953 "PRIMARR2.spad" 1580475 1580487 1581742 1581747) (-952 "PREASSOC.spad" 1579847 1579859 1580465 1580470) (-951 "PPCURVE.spad" 1578984 1578992 1579837 1579842) (-950 "PORTNUM.spad" 1578759 1578767 1578974 1578979) (-949 "POLYROOT.spad" 1577588 1577610 1578715 1578720) (-948 "POLY.spad" 1574885 1574895 1575402 1575529) (-947 "POLYLIFT.spad" 1574146 1574169 1574875 1574880) (-946 "POLYCATQ.spad" 1572248 1572270 1574136 1574141) (-945 "POLYCAT.spad" 1565654 1565675 1572116 1572243) (-944 "POLYCAT.spad" 1558362 1558385 1564826 1564831) (-943 "POLY2UP.spad" 1557810 1557824 1558352 1558357) (-942 "POLY2.spad" 1557405 1557417 1557800 1557805) (-941 "POLUTIL.spad" 1556346 1556375 1557361 1557366) (-940 "POLTOPOL.spad" 1555094 1555109 1556336 1556341) (-939 "POINT.spad" 1553933 1553943 1554020 1554047) (-938 "PNTHEORY.spad" 1550599 1550607 1553923 1553928) (-937 "PMTOOLS.spad" 1549356 1549370 1550589 1550594) (-936 "PMSYM.spad" 1548901 1548911 1549346 1549351) (-935 "PMQFCAT.spad" 1548488 1548502 1548891 1548896) (-934 "PMPRED.spad" 1547957 1547971 1548478 1548483) (-933 "PMPREDFS.spad" 1547401 1547423 1547947 1547952) (-932 "PMPLCAT.spad" 1546471 1546489 1547333 1547338) (-931 "PMLSAGG.spad" 1546052 1546066 1546461 1546466) (-930 "PMKERNEL.spad" 1545619 1545631 1546042 1546047) (-929 "PMINS.spad" 1545195 1545205 1545609 1545614) (-928 "PMFS.spad" 1544768 1544786 1545185 1545190) (-927 "PMDOWN.spad" 1544054 1544068 1544758 1544763) (-926 "PMASS.spad" 1543066 1543074 1544044 1544049) (-925 "PMASSFS.spad" 1542035 1542051 1543056 1543061) (-924 "PLOTTOOL.spad" 1541815 1541823 1542025 1542030) (-923 "PLOT.spad" 1536646 1536654 1541805 1541810) (-922 "PLOT3D.spad" 1533066 1533074 1536636 1536641) (-921 "PLOT1.spad" 1532207 1532217 1533056 1533061) (-920 "PLEQN.spad" 1519423 1519450 1532197 1532202) (-919 "PINTERP.spad" 1519039 1519058 1519413 1519418) (-918 "PINTERPA.spad" 1518821 1518837 1519029 1519034) (-917 "PI.spad" 1518428 1518436 1518795 1518816) (-916 "PID.spad" 1517384 1517392 1518354 1518423) (-915 "PICOERCE.spad" 1517041 1517051 1517374 1517379) (-914 "PGROEB.spad" 1515638 1515652 1517031 1517036) (-913 "PGE.spad" 1506891 1506899 1515628 1515633) (-912 "PGCD.spad" 1505773 1505790 1506881 1506886) (-911 "PFRPAC.spad" 1504916 1504926 1505763 1505768) (-910 "PFR.spad" 1501573 1501583 1504818 1504911) (-909 "PFOTOOLS.spad" 1500831 1500847 1501563 1501568) (-908 "PFOQ.spad" 1500201 1500219 1500821 1500826) (-907 "PFO.spad" 1499620 1499647 1500191 1500196) (-906 "PF.spad" 1499194 1499206 1499425 1499518) (-905 "PFECAT.spad" 1496860 1496868 1499120 1499189) (-904 "PFECAT.spad" 1494554 1494564 1496816 1496821) (-903 "PFBRU.spad" 1492424 1492436 1494544 1494549) (-902 "PFBR.spad" 1489962 1489985 1492414 1492419) (-901 "PERM.spad" 1485643 1485653 1489792 1489807) (-900 "PERMGRP.spad" 1480379 1480389 1485633 1485638) (-899 "PERMCAT.spad" 1478931 1478941 1480359 1480374) (-898 "PERMAN.spad" 1477463 1477477 1478921 1478926) (-897 "PENDTREE.spad" 1476802 1476812 1477092 1477097) (-896 "PDRING.spad" 1475293 1475303 1476782 1476797) (-895 "PDRING.spad" 1473792 1473804 1475283 1475288) (-894 "PDEPROB.spad" 1472807 1472815 1473782 1473787) (-893 "PDEPACK.spad" 1466809 1466817 1472797 1472802) (-892 "PDECOMP.spad" 1466271 1466288 1466799 1466804) (-891 "PDECAT.spad" 1464625 1464633 1466261 1466266) (-890 "PCOMP.spad" 1464476 1464489 1464615 1464620) (-889 "PBWLB.spad" 1463058 1463075 1464466 1464471) (-888 "PATTERN.spad" 1457489 1457499 1463048 1463053) (-887 "PATTERN2.spad" 1457225 1457237 1457479 1457484) (-886 "PATTERN1.spad" 1455527 1455543 1457215 1457220) (-885 "PATRES.spad" 1453074 1453086 1455517 1455522) (-884 "PATRES2.spad" 1452736 1452750 1453064 1453069) (-883 "PATMATCH.spad" 1450893 1450924 1452444 1452449) (-882 "PATMAB.spad" 1450318 1450328 1450883 1450888) (-881 "PATLRES.spad" 1449402 1449416 1450308 1450313) (-880 "PATAB.spad" 1449166 1449176 1449392 1449397) (-879 "PARTPERM.spad" 1446528 1446536 1449156 1449161) (-878 "PARSURF.spad" 1445956 1445984 1446518 1446523) (-877 "PARSU2.spad" 1445751 1445767 1445946 1445951) (-876 "script-parser.spad" 1445271 1445279 1445741 1445746) (-875 "PARSCURV.spad" 1444699 1444727 1445261 1445266) (-874 "PARSC2.spad" 1444488 1444504 1444689 1444694) (-873 "PARPCURV.spad" 1443946 1443974 1444478 1444483) (-872 "PARPC2.spad" 1443735 1443751 1443936 1443941) (-871 "PAN2EXPR.spad" 1443147 1443155 1443725 1443730) (-870 "PALETTE.spad" 1442117 1442125 1443137 1443142) (-869 "PAIR.spad" 1441100 1441113 1441705 1441710) (-868 "PADICRC.spad" 1438430 1438448 1439605 1439698) (-867 "PADICRAT.spad" 1436445 1436457 1436666 1436759) (-866 "PADIC.spad" 1436140 1436152 1436371 1436440) (-865 "PADICCT.spad" 1434681 1434693 1436066 1436135) (-864 "PADEPAC.spad" 1433360 1433379 1434671 1434676) (-863 "PADE.spad" 1432100 1432116 1433350 1433355) (-862 "OWP.spad" 1431340 1431370 1431958 1432025) (-861 "OVERSET.spad" 1430913 1430921 1431330 1431335) (-860 "OVAR.spad" 1430694 1430717 1430903 1430908) (-859 "OUT.spad" 1429778 1429786 1430684 1430689) (-858 "OUTFORM.spad" 1419074 1419082 1429768 1429773) (-857 "OUTBFILE.spad" 1418492 1418500 1419064 1419069) (-856 "OUTBCON.spad" 1417490 1417498 1418482 1418487) (-855 "OUTBCON.spad" 1416486 1416496 1417480 1417485) (-854 "OSI.spad" 1415961 1415969 1416476 1416481) (-853 "OSGROUP.spad" 1415879 1415887 1415951 1415956) (-852 "ORTHPOL.spad" 1414340 1414350 1415796 1415801) (-851 "OREUP.spad" 1413793 1413821 1414020 1414059) (-850 "ORESUP.spad" 1413092 1413116 1413473 1413512) (-849 "OREPCTO.spad" 1410911 1410923 1413012 1413017) (-848 "OREPCAT.spad" 1404968 1404978 1410867 1410906) (-847 "OREPCAT.spad" 1398915 1398927 1404816 1404821) (-846 "ORDSET.spad" 1398081 1398089 1398905 1398910) (-845 "ORDSET.spad" 1397245 1397255 1398071 1398076) (-844 "ORDRING.spad" 1396635 1396643 1397225 1397240) (-843 "ORDRING.spad" 1396033 1396043 1396625 1396630) (-842 "ORDMON.spad" 1395888 1395896 1396023 1396028) (-841 "ORDFUNS.spad" 1395014 1395030 1395878 1395883) (-840 "ORDFIN.spad" 1394834 1394842 1395004 1395009) (-839 "ORDCOMP.spad" 1393299 1393309 1394381 1394410) (-838 "ORDCOMP2.spad" 1392584 1392596 1393289 1393294) (-837 "OPTPROB.spad" 1391222 1391230 1392574 1392579) (-836 "OPTPACK.spad" 1383607 1383615 1391212 1391217) (-835 "OPTCAT.spad" 1381282 1381290 1383597 1383602) (-834 "OPSIG.spad" 1380934 1380942 1381272 1381277) (-833 "OPQUERY.spad" 1380483 1380491 1380924 1380929) (-832 "OP.spad" 1380225 1380235 1380305 1380372) (-831 "OPERCAT.spad" 1379813 1379823 1380215 1380220) (-830 "OPERCAT.spad" 1379399 1379411 1379803 1379808) (-829 "ONECOMP.spad" 1378144 1378154 1378946 1378975) (-828 "ONECOMP2.spad" 1377562 1377574 1378134 1378139) (-827 "OMSERVER.spad" 1376564 1376572 1377552 1377557) (-826 "OMSAGG.spad" 1376352 1376362 1376520 1376559) (-825 "OMPKG.spad" 1374964 1374972 1376342 1376347) (-824 "OM.spad" 1373929 1373937 1374954 1374959) (-823 "OMLO.spad" 1373354 1373366 1373815 1373854) (-822 "OMEXPR.spad" 1373188 1373198 1373344 1373349) (-821 "OMERR.spad" 1372731 1372739 1373178 1373183) (-820 "OMERRK.spad" 1371765 1371773 1372721 1372726) (-819 "OMENC.spad" 1371109 1371117 1371755 1371760) (-818 "OMDEV.spad" 1365398 1365406 1371099 1371104) (-817 "OMCONN.spad" 1364807 1364815 1365388 1365393) (-816 "OINTDOM.spad" 1364570 1364578 1364733 1364802) (-815 "OFMONOID.spad" 1360757 1360767 1364560 1364565) (-814 "ODVAR.spad" 1360018 1360028 1360747 1360752) (-813 "ODR.spad" 1359662 1359688 1359830 1359979) (-812 "ODPOL.spad" 1357008 1357018 1357348 1357475) (-811 "ODP.spad" 1346855 1346875 1347228 1347359) (-810 "ODETOOLS.spad" 1345438 1345457 1346845 1346850) (-809 "ODESYS.spad" 1343088 1343105 1345428 1345433) (-808 "ODERTRIC.spad" 1339029 1339046 1343045 1343050) (-807 "ODERED.spad" 1338416 1338440 1339019 1339024) (-806 "ODERAT.spad" 1335967 1335984 1338406 1338411) (-805 "ODEPRRIC.spad" 1332858 1332880 1335957 1335962) (-804 "ODEPROB.spad" 1332115 1332123 1332848 1332853) (-803 "ODEPRIM.spad" 1329389 1329411 1332105 1332110) (-802 "ODEPAL.spad" 1328765 1328789 1329379 1329384) (-801 "ODEPACK.spad" 1315367 1315375 1328755 1328760) (-800 "ODEINT.spad" 1314798 1314814 1315357 1315362) (-799 "ODEIFTBL.spad" 1312193 1312201 1314788 1314793) (-798 "ODEEF.spad" 1307560 1307576 1312183 1312188) (-797 "ODECONST.spad" 1307079 1307097 1307550 1307555) (-796 "ODECAT.spad" 1305675 1305683 1307069 1307074) (-795 "OCT.spad" 1303813 1303823 1304529 1304568) (-794 "OCTCT2.spad" 1303457 1303478 1303803 1303808) (-793 "OC.spad" 1301231 1301241 1303413 1303452) (-792 "OC.spad" 1298730 1298742 1300914 1300919) (-791 "OCAMON.spad" 1298578 1298586 1298720 1298725) (-790 "OASGP.spad" 1298393 1298401 1298568 1298573) (-789 "OAMONS.spad" 1297913 1297921 1298383 1298388) (-788 "OAMON.spad" 1297774 1297782 1297903 1297908) (-787 "OAGROUP.spad" 1297636 1297644 1297764 1297769) (-786 "NUMTUBE.spad" 1297223 1297239 1297626 1297631) (-785 "NUMQUAD.spad" 1285085 1285093 1297213 1297218) (-784 "NUMODE.spad" 1276221 1276229 1285075 1285080) (-783 "NUMINT.spad" 1273779 1273787 1276211 1276216) (-782 "NUMFMT.spad" 1272619 1272627 1273769 1273774) (-781 "NUMERIC.spad" 1264691 1264701 1272424 1272429) (-780 "NTSCAT.spad" 1263193 1263209 1264659 1264686) (-779 "NTPOLFN.spad" 1262738 1262748 1263110 1263115) (-778 "NSUP.spad" 1255748 1255758 1260288 1260441) (-777 "NSUP2.spad" 1255140 1255152 1255738 1255743) (-776 "NSMP.spad" 1251335 1251354 1251643 1251770) (-775 "NREP.spad" 1249707 1249721 1251325 1251330) (-774 "NPCOEF.spad" 1248953 1248973 1249697 1249702) (-773 "NORMRETR.spad" 1248551 1248590 1248943 1248948) (-772 "NORMPK.spad" 1246453 1246472 1248541 1248546) (-771 "NORMMA.spad" 1246141 1246167 1246443 1246448) (-770 "NONE.spad" 1245882 1245890 1246131 1246136) (-769 "NONE1.spad" 1245558 1245568 1245872 1245877) (-768 "NODE1.spad" 1245027 1245043 1245548 1245553) (-767 "NNI.spad" 1243914 1243922 1245001 1245022) (-766 "NLINSOL.spad" 1242536 1242546 1243904 1243909) (-765 "NIPROB.spad" 1241077 1241085 1242526 1242531) (-764 "NFINTBAS.spad" 1238537 1238554 1241067 1241072) (-763 "NETCLT.spad" 1238511 1238522 1238527 1238532) (-762 "NCODIV.spad" 1236709 1236725 1238501 1238506) (-761 "NCNTFRAC.spad" 1236351 1236365 1236699 1236704) (-760 "NCEP.spad" 1234511 1234525 1236341 1236346) (-759 "NASRING.spad" 1234107 1234115 1234501 1234506) (-758 "NASRING.spad" 1233701 1233711 1234097 1234102) (-757 "NARNG.spad" 1233045 1233053 1233691 1233696) (-756 "NARNG.spad" 1232387 1232397 1233035 1233040) (-755 "NAGSP.spad" 1231460 1231468 1232377 1232382) (-754 "NAGS.spad" 1220985 1220993 1231450 1231455) (-753 "NAGF07.spad" 1219378 1219386 1220975 1220980) (-752 "NAGF04.spad" 1213610 1213618 1219368 1219373) (-751 "NAGF02.spad" 1207419 1207427 1213600 1213605) (-750 "NAGF01.spad" 1203022 1203030 1207409 1207414) (-749 "NAGE04.spad" 1196482 1196490 1203012 1203017) (-748 "NAGE02.spad" 1186824 1186832 1196472 1196477) (-747 "NAGE01.spad" 1182708 1182716 1186814 1186819) (-746 "NAGD03.spad" 1180628 1180636 1182698 1182703) (-745 "NAGD02.spad" 1173159 1173167 1180618 1180623) (-744 "NAGD01.spad" 1167272 1167280 1173149 1173154) (-743 "NAGC06.spad" 1163059 1163067 1167262 1167267) (-742 "NAGC05.spad" 1161528 1161536 1163049 1163054) (-741 "NAGC02.spad" 1160783 1160791 1161518 1161523) (-740 "NAALG.spad" 1160318 1160328 1160751 1160778) (-739 "NAALG.spad" 1159873 1159885 1160308 1160313) (-738 "MULTSQFR.spad" 1156831 1156848 1159863 1159868) (-737 "MULTFACT.spad" 1156214 1156231 1156821 1156826) (-736 "MTSCAT.spad" 1154248 1154269 1156112 1156209) (-735 "MTHING.spad" 1153905 1153915 1154238 1154243) (-734 "MSYSCMD.spad" 1153339 1153347 1153895 1153900) (-733 "MSET.spad" 1151281 1151291 1153045 1153084) (-732 "MSETAGG.spad" 1151126 1151136 1151249 1151276) (-731 "MRING.spad" 1148097 1148109 1150834 1150901) (-730 "MRF2.spad" 1147665 1147679 1148087 1148092) (-729 "MRATFAC.spad" 1147211 1147228 1147655 1147660) (-728 "MPRFF.spad" 1145241 1145260 1147201 1147206) (-727 "MPOLY.spad" 1142676 1142691 1143035 1143162) (-726 "MPCPF.spad" 1141940 1141959 1142666 1142671) (-725 "MPC3.spad" 1141755 1141795 1141930 1141935) (-724 "MPC2.spad" 1141397 1141430 1141745 1141750) (-723 "MONOTOOL.spad" 1139732 1139749 1141387 1141392) (-722 "MONOID.spad" 1139051 1139059 1139722 1139727) (-721 "MONOID.spad" 1138368 1138378 1139041 1139046) (-720 "MONOGEN.spad" 1137114 1137127 1138228 1138363) (-719 "MONOGEN.spad" 1135882 1135897 1136998 1137003) (-718 "MONADWU.spad" 1133896 1133904 1135872 1135877) (-717 "MONADWU.spad" 1131908 1131918 1133886 1133891) (-716 "MONAD.spad" 1131052 1131060 1131898 1131903) (-715 "MONAD.spad" 1130194 1130204 1131042 1131047) (-714 "MOEBIUS.spad" 1128880 1128894 1130174 1130189) (-713 "MODULE.spad" 1128750 1128760 1128848 1128875) (-712 "MODULE.spad" 1128640 1128652 1128740 1128745) (-711 "MODRING.spad" 1127971 1128010 1128620 1128635) (-710 "MODOP.spad" 1126630 1126642 1127793 1127860) (-709 "MODMONOM.spad" 1126359 1126377 1126620 1126625) (-708 "MODMON.spad" 1123118 1123134 1123837 1123990) (-707 "MODFIELD.spad" 1122476 1122515 1123020 1123113) (-706 "MMLFORM.spad" 1121336 1121344 1122466 1122471) (-705 "MMAP.spad" 1121076 1121110 1121326 1121331) (-704 "MLO.spad" 1119503 1119513 1121032 1121071) (-703 "MLIFT.spad" 1118075 1118092 1119493 1119498) (-702 "MKUCFUNC.spad" 1117608 1117626 1118065 1118070) (-701 "MKRECORD.spad" 1117210 1117223 1117598 1117603) (-700 "MKFUNC.spad" 1116591 1116601 1117200 1117205) (-699 "MKFLCFN.spad" 1115547 1115557 1116581 1116586) (-698 "MKCHSET.spad" 1115412 1115422 1115537 1115542) (-697 "MKBCFUNC.spad" 1114897 1114915 1115402 1115407) (-696 "MINT.spad" 1114336 1114344 1114799 1114892) (-695 "MHROWRED.spad" 1112837 1112847 1114326 1114331) (-694 "MFLOAT.spad" 1111353 1111361 1112727 1112832) (-693 "MFINFACT.spad" 1110753 1110775 1111343 1111348) (-692 "MESH.spad" 1108485 1108493 1110743 1110748) (-691 "MDDFACT.spad" 1106678 1106688 1108475 1108480) (-690 "MDAGG.spad" 1105965 1105975 1106658 1106673) (-689 "MCMPLX.spad" 1101939 1101947 1102553 1102754) (-688 "MCDEN.spad" 1101147 1101159 1101929 1101934) (-687 "MCALCFN.spad" 1098249 1098275 1101137 1101142) (-686 "MAYBE.spad" 1097533 1097544 1098239 1098244) (-685 "MATSTOR.spad" 1094809 1094819 1097523 1097528) (-684 "MATRIX.spad" 1093513 1093523 1093997 1094024) (-683 "MATLIN.spad" 1090839 1090863 1093397 1093402) (-682 "MATCAT.spad" 1082424 1082446 1090807 1090834) (-681 "MATCAT.spad" 1073881 1073905 1082266 1082271) (-680 "MATCAT2.spad" 1073149 1073197 1073871 1073876) (-679 "MAPPKG3.spad" 1072048 1072062 1073139 1073144) (-678 "MAPPKG2.spad" 1071382 1071394 1072038 1072043) (-677 "MAPPKG1.spad" 1070200 1070210 1071372 1071377) (-676 "MAPPAST.spad" 1069513 1069521 1070190 1070195) (-675 "MAPHACK3.spad" 1069321 1069335 1069503 1069508) (-674 "MAPHACK2.spad" 1069086 1069098 1069311 1069316) (-673 "MAPHACK1.spad" 1068716 1068726 1069076 1069081) (-672 "MAGMA.spad" 1066506 1066523 1068706 1068711) (-671 "MACROAST.spad" 1066085 1066093 1066496 1066501) (-670 "M3D.spad" 1063781 1063791 1065463 1065468) (-669 "LZSTAGG.spad" 1061009 1061019 1063771 1063776) (-668 "LZSTAGG.spad" 1058235 1058247 1060999 1061004) (-667 "LWORD.spad" 1054940 1054957 1058225 1058230) (-666 "LSTAST.spad" 1054724 1054732 1054930 1054935) (-665 "LSQM.spad" 1052950 1052964 1053348 1053399) (-664 "LSPP.spad" 1052483 1052500 1052940 1052945) (-663 "LSMP.spad" 1051323 1051351 1052473 1052478) (-662 "LSMP1.spad" 1049127 1049141 1051313 1051318) (-661 "LSAGG.spad" 1048796 1048806 1049095 1049122) (-660 "LSAGG.spad" 1048485 1048497 1048786 1048791) (-659 "LPOLY.spad" 1047439 1047458 1048341 1048410) (-658 "LPEFRAC.spad" 1046696 1046706 1047429 1047434) (-657 "LO.spad" 1046097 1046111 1046630 1046657) (-656 "LOGIC.spad" 1045699 1045707 1046087 1046092) (-655 "LOGIC.spad" 1045299 1045309 1045689 1045694) (-654 "LODOOPS.spad" 1044217 1044229 1045289 1045294) (-653 "LODO.spad" 1043601 1043617 1043897 1043936) (-652 "LODOF.spad" 1042645 1042662 1043558 1043563) (-651 "LODOCAT.spad" 1041303 1041313 1042601 1042640) (-650 "LODOCAT.spad" 1039959 1039971 1041259 1041264) (-649 "LODO2.spad" 1039232 1039244 1039639 1039678) (-648 "LODO1.spad" 1038632 1038642 1038912 1038951) (-647 "LODEEF.spad" 1037404 1037422 1038622 1038627) (-646 "LNAGG.spad" 1033206 1033216 1037394 1037399) (-645 "LNAGG.spad" 1028972 1028984 1033162 1033167) (-644 "LMOPS.spad" 1025708 1025725 1028962 1028967) (-643 "LMODULE.spad" 1025350 1025360 1025698 1025703) (-642 "LMDICT.spad" 1024633 1024643 1024901 1024928) (-641 "LITERAL.spad" 1024539 1024550 1024623 1024628) (-640 "LIST.spad" 1022257 1022267 1023686 1023713) (-639 "LIST3.spad" 1021548 1021562 1022247 1022252) (-638 "LIST2.spad" 1020188 1020200 1021538 1021543) (-637 "LIST2MAP.spad" 1017065 1017077 1020178 1020183) (-636 "LINEXP.spad" 1016497 1016507 1017045 1017060) (-635 "LINDEP.spad" 1015274 1015286 1016409 1016414) (-634 "LIMITRF.spad" 1013188 1013198 1015264 1015269) (-633 "LIMITPS.spad" 1012071 1012084 1013178 1013183) (-632 "LIE.spad" 1010085 1010097 1011361 1011506) (-631 "LIECAT.spad" 1009561 1009571 1010011 1010080) (-630 "LIECAT.spad" 1009065 1009077 1009517 1009522) (-629 "LIB.spad" 1007113 1007121 1007724 1007739) (-628 "LGROBP.spad" 1004466 1004485 1007103 1007108) (-627 "LF.spad" 1003385 1003401 1004456 1004461) (-626 "LFCAT.spad" 1002404 1002412 1003375 1003380) (-625 "LEXTRIPK.spad" 997907 997922 1002394 1002399) (-624 "LEXP.spad" 995910 995937 997887 997902) (-623 "LETAST.spad" 995609 995617 995900 995905) (-622 "LEADCDET.spad" 993993 994010 995599 995604) (-621 "LAZM3PK.spad" 992697 992719 993983 993988) (-620 "LAUPOL.spad" 991386 991399 992290 992359) (-619 "LAPLACE.spad" 990959 990975 991376 991381) (-618 "LA.spad" 990399 990413 990881 990920) (-617 "LALG.spad" 990175 990185 990379 990394) (-616 "LALG.spad" 989959 989971 990165 990170) (-615 "KVTFROM.spad" 989694 989704 989949 989954) (-614 "KTVLOGIC.spad" 989117 989125 989684 989689) (-613 "KRCFROM.spad" 988855 988865 989107 989112) (-612 "KOVACIC.spad" 987568 987585 988845 988850) (-611 "KONVERT.spad" 987290 987300 987558 987563) (-610 "KOERCE.spad" 987027 987037 987280 987285) (-609 "KERNEL.spad" 985562 985572 986811 986816) (-608 "KERNEL2.spad" 985265 985277 985552 985557) (-607 "KDAGG.spad" 984368 984390 985245 985260) (-606 "KDAGG.spad" 983479 983503 984358 984363) (-605 "KAFILE.spad" 982442 982458 982677 982704) (-604 "JORDAN.spad" 980269 980281 981732 981877) (-603 "JOINAST.spad" 979963 979971 980259 980264) (-602 "JAVACODE.spad" 979829 979837 979953 979958) (-601 "IXAGG.spad" 977952 977976 979819 979824) (-600 "IXAGG.spad" 975930 975956 977799 977804) (-599 "IVECTOR.spad" 974701 974716 974856 974883) (-598 "ITUPLE.spad" 973846 973856 974691 974696) (-597 "ITRIGMNP.spad" 972657 972676 973836 973841) (-596 "ITFUN3.spad" 972151 972165 972647 972652) (-595 "ITFUN2.spad" 971881 971893 972141 972146) (-594 "ITAYLOR.spad" 969673 969688 971717 971842) (-593 "ISUPS.spad" 962084 962099 968647 968744) (-592 "ISUMP.spad" 961581 961597 962074 962079) (-591 "ISTRING.spad" 960584 960597 960750 960777) (-590 "ISAST.spad" 960303 960311 960574 960579) (-589 "IRURPK.spad" 959016 959035 960293 960298) (-588 "IRSN.spad" 956976 956984 959006 959011) (-587 "IRRF2F.spad" 955451 955461 956932 956937) (-586 "IRREDFFX.spad" 955052 955063 955441 955446) (-585 "IROOT.spad" 953383 953393 955042 955047) (-584 "IR.spad" 951172 951186 953238 953265) (-583 "IR2.spad" 950192 950208 951162 951167) (-582 "IR2F.spad" 949392 949408 950182 950187) (-581 "IPRNTPK.spad" 949152 949160 949382 949387) (-580 "IPF.spad" 948717 948729 948957 949050) (-579 "IPADIC.spad" 948478 948504 948643 948712) (-578 "IP4ADDR.spad" 948035 948043 948468 948473) (-577 "IOMODE.spad" 947656 947664 948025 948030) (-576 "IOBFILE.spad" 947017 947025 947646 947651) (-575 "IOBCON.spad" 946882 946890 947007 947012) (-574 "INVLAPLA.spad" 946527 946543 946872 946877) (-573 "INTTR.spad" 939773 939790 946517 946522) (-572 "INTTOOLS.spad" 937484 937500 939347 939352) (-571 "INTSLPE.spad" 936790 936798 937474 937479) (-570 "INTRVL.spad" 936356 936366 936704 936785) (-569 "INTRF.spad" 934720 934734 936346 936351) (-568 "INTRET.spad" 934152 934162 934710 934715) (-567 "INTRAT.spad" 932827 932844 934142 934147) (-566 "INTPM.spad" 931190 931206 932470 932475) (-565 "INTPAF.spad" 928958 928976 931122 931127) (-564 "INTPACK.spad" 919268 919276 928948 928953) (-563 "INT.spad" 918629 918637 919122 919263) (-562 "INTHERTR.spad" 917895 917912 918619 918624) (-561 "INTHERAL.spad" 917561 917585 917885 917890) (-560 "INTHEORY.spad" 913974 913982 917551 917556) (-559 "INTG0.spad" 907437 907455 913906 913911) (-558 "INTFTBL.spad" 901466 901474 907427 907432) (-557 "INTFACT.spad" 900525 900535 901456 901461) (-556 "INTEF.spad" 898840 898856 900515 900520) (-555 "INTDOM.spad" 897455 897463 898766 898835) (-554 "INTDOM.spad" 896132 896142 897445 897450) (-553 "INTCAT.spad" 894385 894395 896046 896127) (-552 "INTBIT.spad" 893888 893896 894375 894380) (-551 "INTALG.spad" 893070 893097 893878 893883) (-550 "INTAF.spad" 892562 892578 893060 893065) (-549 "INTABL.spad" 891080 891111 891243 891270) (-548 "INT8.spad" 890960 890968 891070 891075) (-547 "INT32.spad" 890839 890847 890950 890955) (-546 "INT16.spad" 890718 890726 890829 890834) (-545 "INS.spad" 888185 888193 890620 890713) (-544 "INS.spad" 885738 885748 888175 888180) (-543 "INPSIGN.spad" 885172 885185 885728 885733) (-542 "INPRODPF.spad" 884238 884257 885162 885167) (-541 "INPRODFF.spad" 883296 883320 884228 884233) (-540 "INNMFACT.spad" 882267 882284 883286 883291) (-539 "INMODGCD.spad" 881751 881781 882257 882262) (-538 "INFSP.spad" 880036 880058 881741 881746) (-537 "INFPROD0.spad" 879086 879105 880026 880031) (-536 "INFORM.spad" 876247 876255 879076 879081) (-535 "INFORM1.spad" 875872 875882 876237 876242) (-534 "INFINITY.spad" 875424 875432 875862 875867) (-533 "INETCLTS.spad" 875401 875409 875414 875419) (-532 "INEP.spad" 873933 873955 875391 875396) (-531 "INDE.spad" 873662 873679 873923 873928) (-530 "INCRMAPS.spad" 873083 873093 873652 873657) (-529 "INBFILE.spad" 872155 872163 873073 873078) (-528 "INBFF.spad" 867925 867936 872145 872150) (-527 "INBCON.spad" 866213 866221 867915 867920) (-526 "INBCON.spad" 864499 864509 866203 866208) (-525 "INAST.spad" 864164 864172 864489 864494) (-524 "IMPTAST.spad" 863872 863880 864154 864159) (-523 "IMATRIX.spad" 862817 862843 863329 863356) (-522 "IMATQF.spad" 861911 861955 862773 862778) (-521 "IMATLIN.spad" 860516 860540 861867 861872) (-520 "ILIST.spad" 859172 859187 859699 859726) (-519 "IIARRAY2.spad" 858560 858598 858779 858806) (-518 "IFF.spad" 857970 857986 858241 858334) (-517 "IFAST.spad" 857584 857592 857960 857965) (-516 "IFARRAY.spad" 855071 855086 856767 856794) (-515 "IFAMON.spad" 854933 854950 855027 855032) (-514 "IEVALAB.spad" 854322 854334 854923 854928) (-513 "IEVALAB.spad" 853709 853723 854312 854317) (-512 "IDPO.spad" 853507 853519 853699 853704) (-511 "IDPOAMS.spad" 853263 853275 853497 853502) (-510 "IDPOAM.spad" 852983 852995 853253 853258) (-509 "IDPC.spad" 851917 851929 852973 852978) (-508 "IDPAM.spad" 851662 851674 851907 851912) (-507 "IDPAG.spad" 851409 851421 851652 851657) (-506 "IDENT.spad" 851181 851189 851399 851404) (-505 "IDECOMP.spad" 848418 848436 851171 851176) (-504 "IDEAL.spad" 843341 843380 848353 848358) (-503 "ICDEN.spad" 842492 842508 843331 843336) (-502 "ICARD.spad" 841681 841689 842482 842487) (-501 "IBPTOOLS.spad" 840274 840291 841671 841676) (-500 "IBITS.spad" 839473 839486 839910 839937) (-499 "IBATOOL.spad" 836348 836367 839463 839468) (-498 "IBACHIN.spad" 834835 834850 836338 836343) (-497 "IARRAY2.spad" 833823 833849 834442 834469) (-496 "IARRAY1.spad" 832868 832883 833006 833033) (-495 "IAN.spad" 831081 831089 832684 832777) (-494 "IALGFACT.spad" 830682 830715 831071 831076) (-493 "HYPCAT.spad" 830106 830114 830672 830677) (-492 "HYPCAT.spad" 829528 829538 830096 830101) (-491 "HOSTNAME.spad" 829336 829344 829518 829523) (-490 "HOMOTOP.spad" 829079 829089 829326 829331) (-489 "HOAGG.spad" 826347 826357 829069 829074) (-488 "HOAGG.spad" 823390 823402 826114 826119) (-487 "HEXADEC.spad" 821492 821500 821857 821950) (-486 "HEUGCD.spad" 820507 820518 821482 821487) (-485 "HELLFDIV.spad" 820097 820121 820497 820502) (-484 "HEAP.spad" 819489 819499 819704 819731) (-483 "HEADAST.spad" 819020 819028 819479 819484) (-482 "HDP.spad" 808863 808879 809240 809371) (-481 "HDMP.spad" 806039 806054 806657 806784) (-480 "HB.spad" 804276 804284 806029 806034) (-479 "HASHTBL.spad" 802746 802777 802957 802984) (-478 "HASAST.spad" 802462 802470 802736 802741) (-477 "HACKPI.spad" 801945 801953 802364 802457) (-476 "GTSET.spad" 800884 800900 801591 801618) (-475 "GSTBL.spad" 799403 799438 799577 799592) (-474 "GSERIES.spad" 796570 796597 797535 797684) (-473 "GROUP.spad" 795839 795847 796550 796565) (-472 "GROUP.spad" 795116 795126 795829 795834) (-471 "GROEBSOL.spad" 793604 793625 795106 795111) (-470 "GRMOD.spad" 792175 792187 793594 793599) (-469 "GRMOD.spad" 790744 790758 792165 792170) (-468 "GRIMAGE.spad" 783349 783357 790734 790739) (-467 "GRDEF.spad" 781728 781736 783339 783344) (-466 "GRAY.spad" 780187 780195 781718 781723) (-465 "GRALG.spad" 779234 779246 780177 780182) (-464 "GRALG.spad" 778279 778293 779224 779229) (-463 "GPOLSET.spad" 777733 777756 777961 777988) (-462 "GOSPER.spad" 776998 777016 777723 777728) (-461 "GMODPOL.spad" 776136 776163 776966 776993) (-460 "GHENSEL.spad" 775205 775219 776126 776131) (-459 "GENUPS.spad" 771306 771319 775195 775200) (-458 "GENUFACT.spad" 770883 770893 771296 771301) (-457 "GENPGCD.spad" 770467 770484 770873 770878) (-456 "GENMFACT.spad" 769919 769938 770457 770462) (-455 "GENEEZ.spad" 767858 767871 769909 769914) (-454 "GDMP.spad" 764876 764893 765652 765779) (-453 "GCNAALG.spad" 758771 758798 764670 764737) (-452 "GCDDOM.spad" 757943 757951 758697 758766) (-451 "GCDDOM.spad" 757177 757187 757933 757938) (-450 "GB.spad" 754695 754733 757133 757138) (-449 "GBINTERN.spad" 750715 750753 754685 754690) (-448 "GBF.spad" 746472 746510 750705 750710) (-447 "GBEUCLID.spad" 744346 744384 746462 746467) (-446 "GAUSSFAC.spad" 743643 743651 744336 744341) (-445 "GALUTIL.spad" 741965 741975 743599 743604) (-444 "GALPOLYU.spad" 740411 740424 741955 741960) (-443 "GALFACTU.spad" 738576 738595 740401 740406) (-442 "GALFACT.spad" 728709 728720 738566 738571) (-441 "FVFUN.spad" 725732 725740 728699 728704) (-440 "FVC.spad" 724784 724792 725722 725727) (-439 "FUNDESC.spad" 724462 724470 724774 724779) (-438 "FUNCTION.spad" 724311 724323 724452 724457) (-437 "FT.spad" 722604 722612 724301 724306) (-436 "FTEM.spad" 721767 721775 722594 722599) (-435 "FSUPFACT.spad" 720667 720686 721703 721708) (-434 "FST.spad" 718753 718761 720657 720662) (-433 "FSRED.spad" 718231 718247 718743 718748) (-432 "FSPRMELT.spad" 717055 717071 718188 718193) (-431 "FSPECF.spad" 715132 715148 717045 717050) (-430 "FS.spad" 709194 709204 714907 715127) (-429 "FS.spad" 703034 703046 708749 708754) (-428 "FSINT.spad" 702692 702708 703024 703029) (-427 "FSERIES.spad" 701879 701891 702512 702611) (-426 "FSCINT.spad" 701192 701208 701869 701874) (-425 "FSAGG.spad" 700309 700319 701148 701187) (-424 "FSAGG.spad" 699388 699400 700229 700234) (-423 "FSAGG2.spad" 698087 698103 699378 699383) (-422 "FS2UPS.spad" 692570 692604 698077 698082) (-421 "FS2.spad" 692215 692231 692560 692565) (-420 "FS2EXPXP.spad" 691338 691361 692205 692210) (-419 "FRUTIL.spad" 690280 690290 691328 691333) (-418 "FR.spad" 683974 683984 689304 689373) (-417 "FRNAALG.spad" 679061 679071 683916 683969) (-416 "FRNAALG.spad" 674160 674172 679017 679022) (-415 "FRNAAF2.spad" 673614 673632 674150 674155) (-414 "FRMOD.spad" 673008 673038 673545 673550) (-413 "FRIDEAL.spad" 672203 672224 672988 673003) (-412 "FRIDEAL2.spad" 671805 671837 672193 672198) (-411 "FRETRCT.spad" 671316 671326 671795 671800) (-410 "FRETRCT.spad" 670693 670705 671174 671179) (-409 "FRAMALG.spad" 669021 669034 670649 670688) (-408 "FRAMALG.spad" 667381 667396 669011 669016) (-407 "FRAC.spad" 664480 664490 664883 665056) (-406 "FRAC2.spad" 664083 664095 664470 664475) (-405 "FR2.spad" 663417 663429 664073 664078) (-404 "FPS.spad" 660226 660234 663307 663412) (-403 "FPS.spad" 657063 657073 660146 660151) (-402 "FPC.spad" 656105 656113 656965 657058) (-401 "FPC.spad" 655233 655243 656095 656100) (-400 "FPATMAB.spad" 654995 655005 655223 655228) (-399 "FPARFRAC.spad" 653468 653485 654985 654990) (-398 "FORTRAN.spad" 651974 652017 653458 653463) (-397 "FORT.spad" 650903 650911 651964 651969) (-396 "FORTFN.spad" 648073 648081 650893 650898) (-395 "FORTCAT.spad" 647757 647765 648063 648068) (-394 "FORMULA.spad" 645221 645229 647747 647752) (-393 "FORMULA1.spad" 644700 644710 645211 645216) (-392 "FORDER.spad" 644391 644415 644690 644695) (-391 "FOP.spad" 643592 643600 644381 644386) (-390 "FNLA.spad" 643016 643038 643560 643587) (-389 "FNCAT.spad" 641603 641611 643006 643011) (-388 "FNAME.spad" 641495 641503 641593 641598) (-387 "FMTC.spad" 641293 641301 641421 641490) (-386 "FMONOID.spad" 638348 638358 641249 641254) (-385 "FM.spad" 638043 638055 638282 638309) (-384 "FMFUN.spad" 635073 635081 638033 638038) (-383 "FMC.spad" 634125 634133 635063 635068) (-382 "FMCAT.spad" 631779 631797 634093 634120) (-381 "FM1.spad" 631136 631148 631713 631740) (-380 "FLOATRP.spad" 628857 628871 631126 631131) (-379 "FLOAT.spad" 622145 622153 628723 628852) (-378 "FLOATCP.spad" 619562 619576 622135 622140) (-377 "FLINEXP.spad" 619274 619284 619542 619557) (-376 "FLINEXP.spad" 618940 618952 619210 619215) (-375 "FLASORT.spad" 618260 618272 618930 618935) (-374 "FLALG.spad" 615906 615925 618186 618255) (-373 "FLAGG.spad" 612924 612934 615886 615901) (-372 "FLAGG.spad" 609843 609855 612807 612812) (-371 "FLAGG2.spad" 608524 608540 609833 609838) (-370 "FINRALG.spad" 606553 606566 608480 608519) (-369 "FINRALG.spad" 604508 604523 606437 606442) (-368 "FINITE.spad" 603660 603668 604498 604503) (-367 "FINAALG.spad" 592641 592651 603602 603655) (-366 "FINAALG.spad" 581634 581646 592597 592602) (-365 "FILE.spad" 581217 581227 581624 581629) (-364 "FILECAT.spad" 579735 579752 581207 581212) (-363 "FIELD.spad" 579141 579149 579637 579730) (-362 "FIELD.spad" 578633 578643 579131 579136) (-361 "FGROUP.spad" 577242 577252 578613 578628) (-360 "FGLMICPK.spad" 576029 576044 577232 577237) (-359 "FFX.spad" 575404 575419 575745 575838) (-358 "FFSLPE.spad" 574893 574914 575394 575399) (-357 "FFPOLY.spad" 566145 566156 574883 574888) (-356 "FFPOLY2.spad" 565205 565222 566135 566140) (-355 "FFP.spad" 564602 564622 564921 565014) (-354 "FF.spad" 564050 564066 564283 564376) (-353 "FFNBX.spad" 562562 562582 563766 563859) (-352 "FFNBP.spad" 561075 561092 562278 562371) (-351 "FFNB.spad" 559540 559561 560756 560849) (-350 "FFINTBAS.spad" 556954 556973 559530 559535) (-349 "FFIELDC.spad" 554529 554537 556856 556949) (-348 "FFIELDC.spad" 552190 552200 554519 554524) (-347 "FFHOM.spad" 550938 550955 552180 552185) (-346 "FFF.spad" 548373 548384 550928 550933) (-345 "FFCGX.spad" 547220 547240 548089 548182) (-344 "FFCGP.spad" 546109 546129 546936 547029) (-343 "FFCG.spad" 544901 544922 545790 545883) (-342 "FFCAT.spad" 537928 537950 544740 544896) (-341 "FFCAT.spad" 531034 531058 537848 537853) (-340 "FFCAT2.spad" 530779 530819 531024 531029) (-339 "FEXPR.spad" 522488 522534 530535 530574) (-338 "FEVALAB.spad" 522194 522204 522478 522483) (-337 "FEVALAB.spad" 521685 521697 521971 521976) (-336 "FDIV.spad" 521127 521151 521675 521680) (-335 "FDIVCAT.spad" 519169 519193 521117 521122) (-334 "FDIVCAT.spad" 517209 517235 519159 519164) (-333 "FDIV2.spad" 516863 516903 517199 517204) (-332 "FCPAK1.spad" 515416 515424 516853 516858) (-331 "FCOMP.spad" 514795 514805 515406 515411) (-330 "FC.spad" 504710 504718 514785 514790) (-329 "FAXF.spad" 497645 497659 504612 504705) (-328 "FAXF.spad" 490632 490648 497601 497606) (-327 "FARRAY.spad" 488778 488788 489815 489842) (-326 "FAMR.spad" 486898 486910 488676 488773) (-325 "FAMR.spad" 485002 485016 486782 486787) (-324 "FAMONOID.spad" 484652 484662 484956 484961) (-323 "FAMONC.spad" 482874 482886 484642 484647) (-322 "FAGROUP.spad" 482480 482490 482770 482797) (-321 "FACUTIL.spad" 480676 480693 482470 482475) (-320 "FACTFUNC.spad" 479852 479862 480666 480671) (-319 "EXPUPXS.spad" 476685 476708 477984 478133) (-318 "EXPRTUBE.spad" 473913 473921 476675 476680) (-317 "EXPRODE.spad" 470785 470801 473903 473908) (-316 "EXPR.spad" 466060 466070 466774 467181) (-315 "EXPR2UPS.spad" 462152 462165 466050 466055) (-314 "EXPR2.spad" 461855 461867 462142 462147) (-313 "EXPEXPAN.spad" 458793 458818 459427 459520) (-312 "EXIT.spad" 458464 458472 458783 458788) (-311 "EXITAST.spad" 458200 458208 458454 458459) (-310 "EVALCYC.spad" 457658 457672 458190 458195) (-309 "EVALAB.spad" 457222 457232 457648 457653) (-308 "EVALAB.spad" 456784 456796 457212 457217) (-307 "EUCDOM.spad" 454326 454334 456710 456779) (-306 "EUCDOM.spad" 451930 451940 454316 454321) (-305 "ESTOOLS.spad" 443770 443778 451920 451925) (-304 "ESTOOLS2.spad" 443371 443385 443760 443765) (-303 "ESTOOLS1.spad" 443056 443067 443361 443366) (-302 "ES.spad" 435603 435611 443046 443051) (-301 "ES.spad" 428056 428066 435501 435506) (-300 "ESCONT.spad" 424829 424837 428046 428051) (-299 "ESCONT1.spad" 424578 424590 424819 424824) (-298 "ES2.spad" 424073 424089 424568 424573) (-297 "ES1.spad" 423639 423655 424063 424068) (-296 "ERROR.spad" 420960 420968 423629 423634) (-295 "EQTBL.spad" 419432 419454 419641 419668) (-294 "EQ.spad" 414306 414316 417105 417217) (-293 "EQ2.spad" 414022 414034 414296 414301) (-292 "EP.spad" 410336 410346 414012 414017) (-291 "ENV.spad" 409038 409046 410326 410331) (-290 "ENTIRER.spad" 408706 408714 408982 409033) (-289 "EMR.spad" 407907 407948 408632 408701) (-288 "ELTAGG.spad" 406147 406166 407897 407902) (-287 "ELTAGG.spad" 404351 404372 406103 406108) (-286 "ELTAB.spad" 403798 403816 404341 404346) (-285 "ELFUTS.spad" 403177 403196 403788 403793) (-284 "ELEMFUN.spad" 402866 402874 403167 403172) (-283 "ELEMFUN.spad" 402553 402563 402856 402861) (-282 "ELAGG.spad" 400496 400506 402533 402548) (-281 "ELAGG.spad" 398376 398388 400415 400420) (-280 "ELABEXPR.spad" 397307 397315 398366 398371) (-279 "EFUPXS.spad" 394083 394113 397263 397268) (-278 "EFULS.spad" 390919 390942 394039 394044) (-277 "EFSTRUC.spad" 388874 388890 390909 390914) (-276 "EF.spad" 383640 383656 388864 388869) (-275 "EAB.spad" 381916 381924 383630 383635) (-274 "E04UCFA.spad" 381452 381460 381906 381911) (-273 "E04NAFA.spad" 381029 381037 381442 381447) (-272 "E04MBFA.spad" 380609 380617 381019 381024) (-271 "E04JAFA.spad" 380145 380153 380599 380604) (-270 "E04GCFA.spad" 379681 379689 380135 380140) (-269 "E04FDFA.spad" 379217 379225 379671 379676) (-268 "E04DGFA.spad" 378753 378761 379207 379212) (-267 "E04AGNT.spad" 374595 374603 378743 378748) (-266 "DVARCAT.spad" 371280 371290 374585 374590) (-265 "DVARCAT.spad" 367963 367975 371270 371275) (-264 "DSMP.spad" 365394 365408 365699 365826) (-263 "DROPT.spad" 359339 359347 365384 365389) (-262 "DROPT1.spad" 359002 359012 359329 359334) (-261 "DROPT0.spad" 353829 353837 358992 358997) (-260 "DRAWPT.spad" 351984 351992 353819 353824) (-259 "DRAW.spad" 344584 344597 351974 351979) (-258 "DRAWHACK.spad" 343892 343902 344574 344579) (-257 "DRAWCX.spad" 341334 341342 343882 343887) (-256 "DRAWCURV.spad" 340871 340886 341324 341329) (-255 "DRAWCFUN.spad" 330043 330051 340861 340866) (-254 "DQAGG.spad" 328211 328221 330011 330038) (-253 "DPOLCAT.spad" 323552 323568 328079 328206) (-252 "DPOLCAT.spad" 318979 318997 323508 323513) (-251 "DPMO.spad" 311205 311221 311343 311644) (-250 "DPMM.spad" 303444 303462 303569 303870) (-249 "DOMCTOR.spad" 303336 303344 303434 303439) (-248 "DOMAIN.spad" 302467 302475 303326 303331) (-247 "DMP.spad" 299689 299704 300261 300388) (-246 "DLP.spad" 299037 299047 299679 299684) (-245 "DLIST.spad" 297616 297626 298220 298247) (-244 "DLAGG.spad" 296027 296037 297606 297611) (-243 "DIVRING.spad" 295569 295577 295971 296022) (-242 "DIVRING.spad" 295155 295165 295559 295564) (-241 "DISPLAY.spad" 293335 293343 295145 295150) (-240 "DIRPROD.spad" 282915 282931 283555 283686) (-239 "DIRPROD2.spad" 281723 281741 282905 282910) (-238 "DIRPCAT.spad" 280665 280681 281587 281718) (-237 "DIRPCAT.spad" 279336 279354 280260 280265) (-236 "DIOSP.spad" 278161 278169 279326 279331) (-235 "DIOPS.spad" 277145 277155 278141 278156) (-234 "DIOPS.spad" 276103 276115 277101 277106) (-233 "DIFRING.spad" 275395 275403 276083 276098) (-232 "DIFRING.spad" 274695 274705 275385 275390) (-231 "DIFEXT.spad" 273854 273864 274675 274690) (-230 "DIFEXT.spad" 272930 272942 273753 273758) (-229 "DIAGG.spad" 272560 272570 272910 272925) (-228 "DIAGG.spad" 272198 272210 272550 272555) (-227 "DHMATRIX.spad" 270502 270512 271655 271682) (-226 "DFSFUN.spad" 263910 263918 270492 270497) (-225 "DFLOAT.spad" 260631 260639 263800 263905) (-224 "DFINTTLS.spad" 258840 258856 260621 260626) (-223 "DERHAM.spad" 256750 256782 258820 258835) (-222 "DEQUEUE.spad" 256068 256078 256357 256384) (-221 "DEGRED.spad" 255683 255697 256058 256063) (-220 "DEFINTRF.spad" 253208 253218 255673 255678) (-219 "DEFINTEF.spad" 251704 251720 253198 253203) (-218 "DEFAST.spad" 251072 251080 251694 251699) (-217 "DECIMAL.spad" 249178 249186 249539 249632) (-216 "DDFACT.spad" 246977 246994 249168 249173) (-215 "DBLRESP.spad" 246575 246599 246967 246972) (-214 "DBASE.spad" 245229 245239 246565 246570) (-213 "DATAARY.spad" 244691 244704 245219 245224) (-212 "D03FAFA.spad" 244519 244527 244681 244686) (-211 "D03EEFA.spad" 244339 244347 244509 244514) (-210 "D03AGNT.spad" 243419 243427 244329 244334) (-209 "D02EJFA.spad" 242881 242889 243409 243414) (-208 "D02CJFA.spad" 242359 242367 242871 242876) (-207 "D02BHFA.spad" 241849 241857 242349 242354) (-206 "D02BBFA.spad" 241339 241347 241839 241844) (-205 "D02AGNT.spad" 236143 236151 241329 241334) (-204 "D01WGTS.spad" 234462 234470 236133 236138) (-203 "D01TRNS.spad" 234439 234447 234452 234457) (-202 "D01GBFA.spad" 233961 233969 234429 234434) (-201 "D01FCFA.spad" 233483 233491 233951 233956) (-200 "D01ASFA.spad" 232951 232959 233473 233478) (-199 "D01AQFA.spad" 232397 232405 232941 232946) (-198 "D01APFA.spad" 231821 231829 232387 232392) (-197 "D01ANFA.spad" 231315 231323 231811 231816) (-196 "D01AMFA.spad" 230825 230833 231305 231310) (-195 "D01ALFA.spad" 230365 230373 230815 230820) (-194 "D01AKFA.spad" 229891 229899 230355 230360) (-193 "D01AJFA.spad" 229414 229422 229881 229886) (-192 "D01AGNT.spad" 225473 225481 229404 229409) (-191 "CYCLOTOM.spad" 224979 224987 225463 225468) (-190 "CYCLES.spad" 221811 221819 224969 224974) (-189 "CVMP.spad" 221228 221238 221801 221806) (-188 "CTRIGMNP.spad" 219718 219734 221218 221223) (-187 "CTOR.spad" 219413 219421 219708 219713) (-186 "CTORKIND.spad" 219016 219024 219403 219408) (-185 "CTORCAT.spad" 218265 218273 219006 219011) (-184 "CTORCAT.spad" 217512 217522 218255 218260) (-183 "CTORCALL.spad" 217092 217100 217502 217507) (-182 "CSTTOOLS.spad" 216335 216348 217082 217087) (-181 "CRFP.spad" 210039 210052 216325 216330) (-180 "CRCEAST.spad" 209759 209767 210029 210034) (-179 "CRAPACK.spad" 208802 208812 209749 209754) (-178 "CPMATCH.spad" 208302 208317 208727 208732) (-177 "CPIMA.spad" 208007 208026 208292 208297) (-176 "COORDSYS.spad" 202900 202910 207997 208002) (-175 "CONTOUR.spad" 202302 202310 202890 202895) (-174 "CONTFRAC.spad" 197914 197924 202204 202297) (-173 "CONDUIT.spad" 197672 197680 197904 197909) (-172 "COMRING.spad" 197346 197354 197610 197667) (-171 "COMPPROP.spad" 196860 196868 197336 197341) (-170 "COMPLPAT.spad" 196627 196642 196850 196855) (-169 "COMPLEX.spad" 190651 190661 190895 191156) (-168 "COMPLEX2.spad" 190364 190376 190641 190646) (-167 "COMPFACT.spad" 189966 189980 190354 190359) (-166 "COMPCAT.spad" 188034 188044 189700 189961) (-165 "COMPCAT.spad" 185795 185807 187463 187468) (-164 "COMMUPC.spad" 185541 185559 185785 185790) (-163 "COMMONOP.spad" 185074 185082 185531 185536) (-162 "COMM.spad" 184883 184891 185064 185069) (-161 "COMMAAST.spad" 184646 184654 184873 184878) (-160 "COMBOPC.spad" 183551 183559 184636 184641) (-159 "COMBINAT.spad" 182296 182306 183541 183546) (-158 "COMBF.spad" 179664 179680 182286 182291) (-157 "COLOR.spad" 178501 178509 179654 179659) (-156 "COLONAST.spad" 178167 178175 178491 178496) (-155 "CMPLXRT.spad" 177876 177893 178157 178162) (-154 "CLLCTAST.spad" 177538 177546 177866 177871) (-153 "CLIP.spad" 173630 173638 177528 177533) (-152 "CLIF.spad" 172269 172285 173586 173625) (-151 "CLAGG.spad" 168754 168764 172259 172264) (-150 "CLAGG.spad" 165110 165122 168617 168622) (-149 "CINTSLPE.spad" 164435 164448 165100 165105) (-148 "CHVAR.spad" 162513 162535 164425 164430) (-147 "CHARZ.spad" 162428 162436 162493 162508) (-146 "CHARPOL.spad" 161936 161946 162418 162423) (-145 "CHARNZ.spad" 161689 161697 161916 161931) (-144 "CHAR.spad" 159557 159565 161679 161684) (-143 "CFCAT.spad" 158873 158881 159547 159552) (-142 "CDEN.spad" 158031 158045 158863 158868) (-141 "CCLASS.spad" 156180 156188 157442 157481) (-140 "CATEGORY.spad" 155270 155278 156170 156175) (-139 "CATCTOR.spad" 155161 155169 155260 155265) (-138 "CATAST.spad" 154788 154796 155151 155156) (-137 "CASEAST.spad" 154502 154510 154778 154783) (-136 "CARTEN.spad" 149605 149629 154492 154497) (-135 "CARTEN2.spad" 148991 149018 149595 149600) (-134 "CARD.spad" 146280 146288 148965 148986) (-133 "CAPSLAST.spad" 146054 146062 146270 146275) (-132 "CACHSET.spad" 145676 145684 146044 146049) (-131 "CABMON.spad" 145229 145237 145666 145671) (-130 "BYTEORD.spad" 144904 144912 145219 145224) (-129 "BYTE.spad" 144325 144333 144894 144899) (-128 "BYTEBUF.spad" 142157 142165 143494 143521) (-127 "BTREE.spad" 141226 141236 141764 141791) (-126 "BTOURN.spad" 140229 140239 140833 140860) (-125 "BTCAT.spad" 139617 139627 140197 140224) (-124 "BTCAT.spad" 139025 139037 139607 139612) (-123 "BTAGG.spad" 138147 138155 138993 139020) (-122 "BTAGG.spad" 137289 137299 138137 138142) (-121 "BSTREE.spad" 136024 136034 136896 136923) (-120 "BRILL.spad" 134219 134230 136014 136019) (-119 "BRAGG.spad" 133143 133153 134209 134214) (-118 "BRAGG.spad" 132031 132043 133099 133104) (-117 "BPADICRT.spad" 130012 130024 130267 130360) (-116 "BPADIC.spad" 129676 129688 129938 130007) (-115 "BOUNDZRO.spad" 129332 129349 129666 129671) (-114 "BOP.spad" 124796 124804 129322 129327) (-113 "BOP1.spad" 122182 122192 124752 124757) (-112 "BOOLEAN.spad" 121506 121514 122172 122177) (-111 "BMODULE.spad" 121218 121230 121474 121501) (-110 "BITS.spad" 120637 120645 120854 120881) (-109 "BINDING.spad" 120056 120064 120627 120632) (-108 "BINARY.spad" 118167 118175 118523 118616) (-107 "BGAGG.spad" 117364 117374 118147 118162) (-106 "BGAGG.spad" 116569 116581 117354 117359) (-105 "BFUNCT.spad" 116133 116141 116549 116564) (-104 "BEZOUT.spad" 115267 115294 116083 116088) (-103 "BBTREE.spad" 112086 112096 114874 114901) (-102 "BASTYPE.spad" 111758 111766 112076 112081) (-101 "BASTYPE.spad" 111428 111438 111748 111753) (-100 "BALFACT.spad" 110867 110880 111418 111423) (-99 "AUTOMOR.spad" 110314 110323 110847 110862) (-98 "ATTREG.spad" 107033 107040 110066 110309) (-97 "ATTRBUT.spad" 103056 103063 107013 107028) (-96 "ATTRAST.spad" 102773 102780 103046 103051) (-95 "ATRIG.spad" 102243 102250 102763 102768) (-94 "ATRIG.spad" 101711 101720 102233 102238) (-93 "ASTCAT.spad" 101615 101622 101701 101706) (-92 "ASTCAT.spad" 101517 101526 101605 101610) (-91 "ASTACK.spad" 100850 100859 101124 101151) (-90 "ASSOCEQ.spad" 99650 99661 100806 100811) (-89 "ASP9.spad" 98731 98744 99640 99645) (-88 "ASP8.spad" 97774 97787 98721 98726) (-87 "ASP80.spad" 97096 97109 97764 97769) (-86 "ASP7.spad" 96256 96269 97086 97091) (-85 "ASP78.spad" 95707 95720 96246 96251) (-84 "ASP77.spad" 95076 95089 95697 95702) (-83 "ASP74.spad" 94168 94181 95066 95071) (-82 "ASP73.spad" 93439 93452 94158 94163) (-81 "ASP6.spad" 92306 92319 93429 93434) (-80 "ASP55.spad" 90815 90828 92296 92301) (-79 "ASP50.spad" 88632 88645 90805 90810) (-78 "ASP4.spad" 87927 87940 88622 88627) (-77 "ASP49.spad" 86926 86939 87917 87922) (-76 "ASP42.spad" 85333 85372 86916 86921) (-75 "ASP41.spad" 83912 83951 85323 85328) (-74 "ASP35.spad" 82900 82913 83902 83907) (-73 "ASP34.spad" 82201 82214 82890 82895) (-72 "ASP33.spad" 81761 81774 82191 82196) (-71 "ASP31.spad" 80901 80914 81751 81756) (-70 "ASP30.spad" 79793 79806 80891 80896) (-69 "ASP29.spad" 79259 79272 79783 79788) (-68 "ASP28.spad" 70532 70545 79249 79254) (-67 "ASP27.spad" 69429 69442 70522 70527) (-66 "ASP24.spad" 68516 68529 69419 69424) (-65 "ASP20.spad" 67980 67993 68506 68511) (-64 "ASP1.spad" 67361 67374 67970 67975) (-63 "ASP19.spad" 62047 62060 67351 67356) (-62 "ASP12.spad" 61461 61474 62037 62042) (-61 "ASP10.spad" 60732 60745 61451 61456) (-60 "ARRAY2.spad" 60092 60101 60339 60366) (-59 "ARRAY1.spad" 58927 58936 59275 59302) (-58 "ARRAY12.spad" 57596 57607 58917 58922) (-57 "ARR2CAT.spad" 53258 53279 57564 57591) (-56 "ARR2CAT.spad" 48940 48963 53248 53253) (-55 "ARITY.spad" 48508 48515 48930 48935) (-54 "APPRULE.spad" 47752 47774 48498 48503) (-53 "APPLYORE.spad" 47367 47380 47742 47747) (-52 "ANY.spad" 45709 45716 47357 47362) (-51 "ANY1.spad" 44780 44789 45699 45704) (-50 "ANTISYM.spad" 43219 43235 44760 44775) (-49 "ANON.spad" 42916 42923 43209 43214) (-48 "AN.spad" 41217 41224 42732 42825) (-47 "AMR.spad" 39396 39407 41115 41212) (-46 "AMR.spad" 37412 37425 39133 39138) (-45 "ALIST.spad" 34824 34845 35174 35201) (-44 "ALGSC.spad" 33947 33973 34696 34749) (-43 "ALGPKG.spad" 29656 29667 33903 33908) (-42 "ALGMFACT.spad" 28845 28859 29646 29651) (-41 "ALGMANIP.spad" 26265 26280 28642 28647) (-40 "ALGFF.spad" 24580 24607 24797 24953) (-39 "ALGFACT.spad" 23701 23711 24570 24575) (-38 "ALGEBRA.spad" 23534 23543 23657 23696) (-37 "ALGEBRA.spad" 23399 23410 23524 23529) (-36 "ALAGG.spad" 22909 22930 23367 23394) (-35 "AHYP.spad" 22290 22297 22899 22904) (-34 "AGG.spad" 20599 20606 22280 22285) (-33 "AGG.spad" 18872 18881 20555 20560) (-32 "AF.spad" 17297 17312 18807 18812) (-31 "ADDAST.spad" 16975 16982 17287 17292) (-30 "ACPLOT.spad" 15546 15553 16965 16970) (-29 "ACFS.spad" 13297 13306 15448 15541) (-28 "ACFS.spad" 11134 11145 13287 13292) (-27 "ACF.spad" 7736 7743 11036 11129) (-26 "ACF.spad" 4424 4433 7726 7731) (-25 "ABELSG.spad" 3965 3972 4414 4419) (-24 "ABELSG.spad" 3504 3513 3955 3960) (-23 "ABELMON.spad" 3047 3054 3494 3499) (-22 "ABELMON.spad" 2588 2597 3037 3042) (-21 "ABELGRP.spad" 2160 2167 2578 2583) (-20 "ABELGRP.spad" 1730 1739 2150 2155) (-19 "A1AGG.spad" 870 879 1698 1725) (-18 "A1AGG.spad" 30 41 860 865)) \ No newline at end of file
+((-3 NIL 2282815 2282820 2282825 2282830) (-2 NIL 2282795 2282800 2282805 2282810) (-1 NIL 2282775 2282780 2282785 2282790) (0 NIL 2282755 2282760 2282765 2282770) (-1285 "ZMOD.spad" 2282564 2282577 2282693 2282750) (-1284 "ZLINDEP.spad" 2281608 2281619 2282554 2282559) (-1283 "ZDSOLVE.spad" 2271457 2271479 2281598 2281603) (-1282 "YSTREAM.spad" 2270950 2270961 2271447 2271452) (-1281 "XRPOLY.spad" 2270170 2270190 2270806 2270875) (-1280 "XPR.spad" 2267961 2267974 2269888 2269987) (-1279 "XPOLY.spad" 2267516 2267527 2267817 2267886) (-1278 "XPOLYC.spad" 2266833 2266849 2267442 2267511) (-1277 "XPBWPOLY.spad" 2265270 2265290 2266613 2266682) (-1276 "XF.spad" 2263731 2263746 2265172 2265265) (-1275 "XF.spad" 2262172 2262189 2263615 2263620) (-1274 "XFALG.spad" 2259196 2259212 2262098 2262167) (-1273 "XEXPPKG.spad" 2258447 2258473 2259186 2259191) (-1272 "XDPOLY.spad" 2258061 2258077 2258303 2258372) (-1271 "XALG.spad" 2257721 2257732 2258017 2258056) (-1270 "WUTSET.spad" 2253560 2253577 2257367 2257394) (-1269 "WP.spad" 2252759 2252803 2253418 2253485) (-1268 "WHILEAST.spad" 2252557 2252566 2252749 2252754) (-1267 "WHEREAST.spad" 2252228 2252237 2252547 2252552) (-1266 "WFFINTBS.spad" 2249791 2249813 2252218 2252223) (-1265 "WEIER.spad" 2248005 2248016 2249781 2249786) (-1264 "VSPACE.spad" 2247678 2247689 2247973 2248000) (-1263 "VSPACE.spad" 2247371 2247384 2247668 2247673) (-1262 "VOID.spad" 2247048 2247057 2247361 2247366) (-1261 "VIEW.spad" 2244670 2244679 2247038 2247043) (-1260 "VIEWDEF.spad" 2239867 2239876 2244660 2244665) (-1259 "VIEW3D.spad" 2223702 2223711 2239857 2239862) (-1258 "VIEW2D.spad" 2211439 2211448 2223692 2223697) (-1257 "VECTOR.spad" 2210114 2210125 2210365 2210392) (-1256 "VECTOR2.spad" 2208741 2208754 2210104 2210109) (-1255 "VECTCAT.spad" 2206641 2206652 2208709 2208736) (-1254 "VECTCAT.spad" 2204349 2204362 2206419 2206424) (-1253 "VARIABLE.spad" 2204129 2204144 2204339 2204344) (-1252 "UTYPE.spad" 2203773 2203782 2204119 2204124) (-1251 "UTSODETL.spad" 2203066 2203090 2203729 2203734) (-1250 "UTSODE.spad" 2201254 2201274 2203056 2203061) (-1249 "UTS.spad" 2196043 2196071 2199721 2199818) (-1248 "UTSCAT.spad" 2193494 2193510 2195941 2196038) (-1247 "UTSCAT.spad" 2190589 2190607 2193038 2193043) (-1246 "UTS2.spad" 2190182 2190217 2190579 2190584) (-1245 "URAGG.spad" 2184814 2184825 2190172 2190177) (-1244 "URAGG.spad" 2179410 2179423 2184770 2184775) (-1243 "UPXSSING.spad" 2177053 2177079 2178491 2178624) (-1242 "UPXS.spad" 2174201 2174229 2175185 2175334) (-1241 "UPXSCONS.spad" 2171958 2171978 2172333 2172482) (-1240 "UPXSCCA.spad" 2170523 2170543 2171804 2171953) (-1239 "UPXSCCA.spad" 2169230 2169252 2170513 2170518) (-1238 "UPXSCAT.spad" 2167811 2167827 2169076 2169225) (-1237 "UPXS2.spad" 2167352 2167405 2167801 2167806) (-1236 "UPSQFREE.spad" 2165764 2165778 2167342 2167347) (-1235 "UPSCAT.spad" 2163357 2163381 2165662 2165759) (-1234 "UPSCAT.spad" 2160656 2160682 2162963 2162968) (-1233 "UPOLYC.spad" 2155634 2155645 2160498 2160651) (-1232 "UPOLYC.spad" 2150504 2150517 2155370 2155375) (-1231 "UPOLYC2.spad" 2149973 2149992 2150494 2150499) (-1230 "UP.spad" 2147130 2147145 2147523 2147676) (-1229 "UPMP.spad" 2146020 2146033 2147120 2147125) (-1228 "UPDIVP.spad" 2145583 2145597 2146010 2146015) (-1227 "UPDECOMP.spad" 2143820 2143834 2145573 2145578) (-1226 "UPCDEN.spad" 2143027 2143043 2143810 2143815) (-1225 "UP2.spad" 2142389 2142410 2143017 2143022) (-1224 "UNISEG.spad" 2141742 2141753 2142308 2142313) (-1223 "UNISEG2.spad" 2141235 2141248 2141698 2141703) (-1222 "UNIFACT.spad" 2140336 2140348 2141225 2141230) (-1221 "ULS.spad" 2130888 2130916 2131981 2132410) (-1220 "ULSCONS.spad" 2123282 2123302 2123654 2123803) (-1219 "ULSCCAT.spad" 2121011 2121031 2123128 2123277) (-1218 "ULSCCAT.spad" 2118848 2118870 2120967 2120972) (-1217 "ULSCAT.spad" 2117064 2117080 2118694 2118843) (-1216 "ULS2.spad" 2116576 2116629 2117054 2117059) (-1215 "UINT8.spad" 2116453 2116462 2116566 2116571) (-1214 "UINT32.spad" 2116329 2116338 2116443 2116448) (-1213 "UINT16.spad" 2116205 2116214 2116319 2116324) (-1212 "UFD.spad" 2115270 2115279 2116131 2116200) (-1211 "UFD.spad" 2114397 2114408 2115260 2115265) (-1210 "UDVO.spad" 2113244 2113253 2114387 2114392) (-1209 "UDPO.spad" 2110671 2110682 2113200 2113205) (-1208 "TYPE.spad" 2110603 2110612 2110661 2110666) (-1207 "TYPEAST.spad" 2110522 2110531 2110593 2110598) (-1206 "TWOFACT.spad" 2109172 2109187 2110512 2110517) (-1205 "TUPLE.spad" 2108656 2108667 2109071 2109076) (-1204 "TUBETOOL.spad" 2105493 2105502 2108646 2108651) (-1203 "TUBE.spad" 2104134 2104151 2105483 2105488) (-1202 "TS.spad" 2102723 2102739 2103699 2103796) (-1201 "TSETCAT.spad" 2089850 2089867 2102691 2102718) (-1200 "TSETCAT.spad" 2076963 2076982 2089806 2089811) (-1199 "TRMANIP.spad" 2071329 2071346 2076669 2076674) (-1198 "TRIMAT.spad" 2070288 2070313 2071319 2071324) (-1197 "TRIGMNIP.spad" 2068805 2068822 2070278 2070283) (-1196 "TRIGCAT.spad" 2068317 2068326 2068795 2068800) (-1195 "TRIGCAT.spad" 2067827 2067838 2068307 2068312) (-1194 "TREE.spad" 2066398 2066409 2067434 2067461) (-1193 "TRANFUN.spad" 2066229 2066238 2066388 2066393) (-1192 "TRANFUN.spad" 2066058 2066069 2066219 2066224) (-1191 "TOPSP.spad" 2065732 2065741 2066048 2066053) (-1190 "TOOLSIGN.spad" 2065395 2065406 2065722 2065727) (-1189 "TEXTFILE.spad" 2063952 2063961 2065385 2065390) (-1188 "TEX.spad" 2061084 2061093 2063942 2063947) (-1187 "TEX1.spad" 2060640 2060651 2061074 2061079) (-1186 "TEMUTL.spad" 2060195 2060204 2060630 2060635) (-1185 "TBCMPPK.spad" 2058288 2058311 2060185 2060190) (-1184 "TBAGG.spad" 2057324 2057347 2058268 2058283) (-1183 "TBAGG.spad" 2056368 2056393 2057314 2057319) (-1182 "TANEXP.spad" 2055744 2055755 2056358 2056363) (-1181 "TABLE.spad" 2054155 2054178 2054425 2054452) (-1180 "TABLEAU.spad" 2053636 2053647 2054145 2054150) (-1179 "TABLBUMP.spad" 2050419 2050430 2053626 2053631) (-1178 "SYSTEM.spad" 2049647 2049656 2050409 2050414) (-1177 "SYSSOLP.spad" 2047120 2047131 2049637 2049642) (-1176 "SYSNNI.spad" 2046296 2046307 2047110 2047115) (-1175 "SYSINT.spad" 2045769 2045780 2046286 2046291) (-1174 "SYNTAX.spad" 2042039 2042048 2045759 2045764) (-1173 "SYMTAB.spad" 2040095 2040104 2042029 2042034) (-1172 "SYMS.spad" 2036080 2036089 2040085 2040090) (-1171 "SYMPOLY.spad" 2035087 2035098 2035169 2035296) (-1170 "SYMFUNC.spad" 2034562 2034573 2035077 2035082) (-1169 "SYMBOL.spad" 2031989 2031998 2034552 2034557) (-1168 "SWITCH.spad" 2028746 2028755 2031979 2031984) (-1167 "SUTS.spad" 2025645 2025673 2027213 2027310) (-1166 "SUPXS.spad" 2022780 2022808 2023777 2023926) (-1165 "SUP.spad" 2019549 2019560 2020330 2020483) (-1164 "SUPFRACF.spad" 2018654 2018672 2019539 2019544) (-1163 "SUP2.spad" 2018044 2018057 2018644 2018649) (-1162 "SUMRF.spad" 2017010 2017021 2018034 2018039) (-1161 "SUMFS.spad" 2016643 2016660 2017000 2017005) (-1160 "SULS.spad" 2007182 2007210 2008288 2008717) (-1159 "SUCHTAST.spad" 2006951 2006960 2007172 2007177) (-1158 "SUCH.spad" 2006631 2006646 2006941 2006946) (-1157 "SUBSPACE.spad" 1998638 1998653 2006621 2006626) (-1156 "SUBRESP.spad" 1997798 1997812 1998594 1998599) (-1155 "STTF.spad" 1993897 1993913 1997788 1997793) (-1154 "STTFNC.spad" 1990365 1990381 1993887 1993892) (-1153 "STTAYLOR.spad" 1982763 1982774 1990246 1990251) (-1152 "STRTBL.spad" 1981268 1981285 1981417 1981444) (-1151 "STRING.spad" 1980677 1980686 1980691 1980718) (-1150 "STRICAT.spad" 1980465 1980474 1980645 1980672) (-1149 "STREAM.spad" 1977323 1977334 1979990 1980005) (-1148 "STREAM3.spad" 1976868 1976883 1977313 1977318) (-1147 "STREAM2.spad" 1975936 1975949 1976858 1976863) (-1146 "STREAM1.spad" 1975640 1975651 1975926 1975931) (-1145 "STINPROD.spad" 1974546 1974562 1975630 1975635) (-1144 "STEP.spad" 1973747 1973756 1974536 1974541) (-1143 "STBL.spad" 1972273 1972301 1972440 1972455) (-1142 "STAGG.spad" 1971348 1971359 1972263 1972268) (-1141 "STAGG.spad" 1970421 1970434 1971338 1971343) (-1140 "STACK.spad" 1969772 1969783 1970028 1970055) (-1139 "SREGSET.spad" 1967476 1967493 1969418 1969445) (-1138 "SRDCMPK.spad" 1966021 1966041 1967466 1967471) (-1137 "SRAGG.spad" 1961118 1961127 1965989 1966016) (-1136 "SRAGG.spad" 1956235 1956246 1961108 1961113) (-1135 "SQMATRIX.spad" 1953851 1953869 1954767 1954854) (-1134 "SPLTREE.spad" 1948403 1948416 1953287 1953314) (-1133 "SPLNODE.spad" 1944991 1945004 1948393 1948398) (-1132 "SPFCAT.spad" 1943768 1943777 1944981 1944986) (-1131 "SPECOUT.spad" 1942318 1942327 1943758 1943763) (-1130 "SPADXPT.spad" 1934457 1934466 1942308 1942313) (-1129 "spad-parser.spad" 1933922 1933931 1934447 1934452) (-1128 "SPADAST.spad" 1933623 1933632 1933912 1933917) (-1127 "SPACEC.spad" 1917636 1917647 1933613 1933618) (-1126 "SPACE3.spad" 1917412 1917423 1917626 1917631) (-1125 "SORTPAK.spad" 1916957 1916970 1917368 1917373) (-1124 "SOLVETRA.spad" 1914714 1914725 1916947 1916952) (-1123 "SOLVESER.spad" 1913234 1913245 1914704 1914709) (-1122 "SOLVERAD.spad" 1909244 1909255 1913224 1913229) (-1121 "SOLVEFOR.spad" 1907664 1907682 1909234 1909239) (-1120 "SNTSCAT.spad" 1907264 1907281 1907632 1907659) (-1119 "SMTS.spad" 1905524 1905550 1906829 1906926) (-1118 "SMP.spad" 1902963 1902983 1903353 1903480) (-1117 "SMITH.spad" 1901806 1901831 1902953 1902958) (-1116 "SMATCAT.spad" 1899916 1899946 1901750 1901801) (-1115 "SMATCAT.spad" 1897958 1897990 1899794 1899799) (-1114 "SKAGG.spad" 1896919 1896930 1897926 1897953) (-1113 "SINT.spad" 1895745 1895754 1896785 1896914) (-1112 "SIMPAN.spad" 1895473 1895482 1895735 1895740) (-1111 "SIG.spad" 1894801 1894810 1895463 1895468) (-1110 "SIGNRF.spad" 1893909 1893920 1894791 1894796) (-1109 "SIGNEF.spad" 1893178 1893195 1893899 1893904) (-1108 "SIGAST.spad" 1892559 1892568 1893168 1893173) (-1107 "SHP.spad" 1890477 1890492 1892515 1892520) (-1106 "SHDP.spad" 1880188 1880215 1880697 1880828) (-1105 "SGROUP.spad" 1879796 1879805 1880178 1880183) (-1104 "SGROUP.spad" 1879402 1879413 1879786 1879791) (-1103 "SGCF.spad" 1872283 1872292 1879392 1879397) (-1102 "SFRTCAT.spad" 1871211 1871228 1872251 1872278) (-1101 "SFRGCD.spad" 1870274 1870294 1871201 1871206) (-1100 "SFQCMPK.spad" 1864911 1864931 1870264 1870269) (-1099 "SFORT.spad" 1864346 1864360 1864901 1864906) (-1098 "SEXOF.spad" 1864189 1864229 1864336 1864341) (-1097 "SEX.spad" 1864081 1864090 1864179 1864184) (-1096 "SEXCAT.spad" 1861632 1861672 1864071 1864076) (-1095 "SET.spad" 1859932 1859943 1861053 1861092) (-1094 "SETMN.spad" 1858366 1858383 1859922 1859927) (-1093 "SETCAT.spad" 1857851 1857860 1858356 1858361) (-1092 "SETCAT.spad" 1857334 1857345 1857841 1857846) (-1091 "SETAGG.spad" 1853855 1853866 1857314 1857329) (-1090 "SETAGG.spad" 1850384 1850397 1853845 1853850) (-1089 "SEQAST.spad" 1850087 1850096 1850374 1850379) (-1088 "SEGXCAT.spad" 1849209 1849222 1850077 1850082) (-1087 "SEG.spad" 1849022 1849033 1849128 1849133) (-1086 "SEGCAT.spad" 1847929 1847940 1849012 1849017) (-1085 "SEGBIND.spad" 1847001 1847012 1847884 1847889) (-1084 "SEGBIND2.spad" 1846697 1846710 1846991 1846996) (-1083 "SEGAST.spad" 1846411 1846420 1846687 1846692) (-1082 "SEG2.spad" 1845836 1845849 1846367 1846372) (-1081 "SDVAR.spad" 1845112 1845123 1845826 1845831) (-1080 "SDPOL.spad" 1842502 1842513 1842793 1842920) (-1079 "SCPKG.spad" 1840581 1840592 1842492 1842497) (-1078 "SCOPE.spad" 1839726 1839735 1840571 1840576) (-1077 "SCACHE.spad" 1838408 1838419 1839716 1839721) (-1076 "SASTCAT.spad" 1838317 1838326 1838398 1838403) (-1075 "SAOS.spad" 1838189 1838198 1838307 1838312) (-1074 "SAERFFC.spad" 1837902 1837922 1838179 1838184) (-1073 "SAE.spad" 1836077 1836093 1836688 1836823) (-1072 "SAEFACT.spad" 1835778 1835798 1836067 1836072) (-1071 "RURPK.spad" 1833419 1833435 1835768 1835773) (-1070 "RULESET.spad" 1832860 1832884 1833409 1833414) (-1069 "RULE.spad" 1831064 1831088 1832850 1832855) (-1068 "RULECOLD.spad" 1830916 1830929 1831054 1831059) (-1067 "RSTRCAST.spad" 1830633 1830642 1830906 1830911) (-1066 "RSETGCD.spad" 1827011 1827031 1830623 1830628) (-1065 "RSETCAT.spad" 1816795 1816812 1826979 1827006) (-1064 "RSETCAT.spad" 1806599 1806618 1816785 1816790) (-1063 "RSDCMPK.spad" 1805051 1805071 1806589 1806594) (-1062 "RRCC.spad" 1803435 1803465 1805041 1805046) (-1061 "RRCC.spad" 1801817 1801849 1803425 1803430) (-1060 "RPTAST.spad" 1801519 1801528 1801807 1801812) (-1059 "RPOLCAT.spad" 1780879 1780894 1801387 1801514) (-1058 "RPOLCAT.spad" 1759953 1759970 1780463 1780468) (-1057 "ROUTINE.spad" 1755816 1755825 1758600 1758627) (-1056 "ROMAN.spad" 1755144 1755153 1755682 1755811) (-1055 "ROIRC.spad" 1754224 1754256 1755134 1755139) (-1054 "RNS.spad" 1753127 1753136 1754126 1754219) (-1053 "RNS.spad" 1752116 1752127 1753117 1753122) (-1052 "RNG.spad" 1751851 1751860 1752106 1752111) (-1051 "RMODULE.spad" 1751489 1751500 1751841 1751846) (-1050 "RMCAT2.spad" 1750897 1750954 1751479 1751484) (-1049 "RMATRIX.spad" 1749721 1749740 1750064 1750103) (-1048 "RMATCAT.spad" 1745254 1745285 1749677 1749716) (-1047 "RMATCAT.spad" 1740677 1740710 1745102 1745107) (-1046 "RINTERP.spad" 1740565 1740585 1740667 1740672) (-1045 "RING.spad" 1740035 1740044 1740545 1740560) (-1044 "RING.spad" 1739513 1739524 1740025 1740030) (-1043 "RIDIST.spad" 1738897 1738906 1739503 1739508) (-1042 "RGCHAIN.spad" 1737476 1737492 1738382 1738409) (-1041 "RGBCSPC.spad" 1737257 1737269 1737466 1737471) (-1040 "RGBCMDL.spad" 1736787 1736799 1737247 1737252) (-1039 "RF.spad" 1734401 1734412 1736777 1736782) (-1038 "RFFACTOR.spad" 1733863 1733874 1734391 1734396) (-1037 "RFFACT.spad" 1733598 1733610 1733853 1733858) (-1036 "RFDIST.spad" 1732586 1732595 1733588 1733593) (-1035 "RETSOL.spad" 1732003 1732016 1732576 1732581) (-1034 "RETRACT.spad" 1731431 1731442 1731993 1731998) (-1033 "RETRACT.spad" 1730857 1730870 1731421 1731426) (-1032 "RETAST.spad" 1730669 1730678 1730847 1730852) (-1031 "RESULT.spad" 1728729 1728738 1729316 1729343) (-1030 "RESRING.spad" 1728076 1728123 1728667 1728724) (-1029 "RESLATC.spad" 1727400 1727411 1728066 1728071) (-1028 "REPSQ.spad" 1727129 1727140 1727390 1727395) (-1027 "REP.spad" 1724681 1724690 1727119 1727124) (-1026 "REPDB.spad" 1724386 1724397 1724671 1724676) (-1025 "REP2.spad" 1713958 1713969 1724228 1724233) (-1024 "REP1.spad" 1707948 1707959 1713908 1713913) (-1023 "REGSET.spad" 1705745 1705762 1707594 1707621) (-1022 "REF.spad" 1705074 1705085 1705700 1705705) (-1021 "REDORDER.spad" 1704250 1704267 1705064 1705069) (-1020 "RECLOS.spad" 1703033 1703053 1703737 1703830) (-1019 "REALSOLV.spad" 1702165 1702174 1703023 1703028) (-1018 "REAL.spad" 1702037 1702046 1702155 1702160) (-1017 "REAL0Q.spad" 1699319 1699334 1702027 1702032) (-1016 "REAL0.spad" 1696147 1696162 1699309 1699314) (-1015 "RDUCEAST.spad" 1695868 1695877 1696137 1696142) (-1014 "RDIV.spad" 1695519 1695544 1695858 1695863) (-1013 "RDIST.spad" 1695082 1695093 1695509 1695514) (-1012 "RDETRS.spad" 1693878 1693896 1695072 1695077) (-1011 "RDETR.spad" 1691985 1692003 1693868 1693873) (-1010 "RDEEFS.spad" 1691058 1691075 1691975 1691980) (-1009 "RDEEF.spad" 1690054 1690071 1691048 1691053) (-1008 "RCFIELD.spad" 1687240 1687249 1689956 1690049) (-1007 "RCFIELD.spad" 1684512 1684523 1687230 1687235) (-1006 "RCAGG.spad" 1682424 1682435 1684502 1684507) (-1005 "RCAGG.spad" 1680263 1680276 1682343 1682348) (-1004 "RATRET.spad" 1679623 1679634 1680253 1680258) (-1003 "RATFACT.spad" 1679315 1679327 1679613 1679618) (-1002 "RANDSRC.spad" 1678634 1678643 1679305 1679310) (-1001 "RADUTIL.spad" 1678388 1678397 1678624 1678629) (-1000 "RADIX.spad" 1675289 1675303 1676855 1676948) (-999 "RADFF.spad" 1673703 1673739 1673821 1673977) (-998 "RADCAT.spad" 1673297 1673305 1673693 1673698) (-997 "RADCAT.spad" 1672889 1672899 1673287 1673292) (-996 "QUEUE.spad" 1672232 1672242 1672496 1672523) (-995 "QUAT.spad" 1670814 1670824 1671156 1671221) (-994 "QUATCT2.spad" 1670433 1670451 1670804 1670809) (-993 "QUATCAT.spad" 1668598 1668608 1670363 1670428) (-992 "QUATCAT.spad" 1666514 1666526 1668281 1668286) (-991 "QUAGG.spad" 1665340 1665350 1666482 1666509) (-990 "QQUTAST.spad" 1665109 1665117 1665330 1665335) (-989 "QFORM.spad" 1664572 1664586 1665099 1665104) (-988 "QFCAT.spad" 1663275 1663285 1664474 1664567) (-987 "QFCAT.spad" 1661569 1661581 1662770 1662775) (-986 "QFCAT2.spad" 1661260 1661276 1661559 1661564) (-985 "QEQUAT.spad" 1660817 1660825 1661250 1661255) (-984 "QCMPACK.spad" 1655564 1655583 1660807 1660812) (-983 "QALGSET.spad" 1651639 1651671 1655478 1655483) (-982 "QALGSET2.spad" 1649635 1649653 1651629 1651634) (-981 "PWFFINTB.spad" 1646945 1646966 1649625 1649630) (-980 "PUSHVAR.spad" 1646274 1646293 1646935 1646940) (-979 "PTRANFN.spad" 1642400 1642410 1646264 1646269) (-978 "PTPACK.spad" 1639488 1639498 1642390 1642395) (-977 "PTFUNC2.spad" 1639309 1639323 1639478 1639483) (-976 "PTCAT.spad" 1638558 1638568 1639277 1639304) (-975 "PSQFR.spad" 1637865 1637889 1638548 1638553) (-974 "PSEUDLIN.spad" 1636723 1636733 1637855 1637860) (-973 "PSETPK.spad" 1622156 1622172 1636601 1636606) (-972 "PSETCAT.spad" 1616076 1616099 1622136 1622151) (-971 "PSETCAT.spad" 1609970 1609995 1616032 1616037) (-970 "PSCURVE.spad" 1608953 1608961 1609960 1609965) (-969 "PSCAT.spad" 1607720 1607749 1608851 1608948) (-968 "PSCAT.spad" 1606577 1606608 1607710 1607715) (-967 "PRTITION.spad" 1605522 1605530 1606567 1606572) (-966 "PRTDAST.spad" 1605241 1605249 1605512 1605517) (-965 "PRS.spad" 1594803 1594820 1605197 1605202) (-964 "PRQAGG.spad" 1594234 1594244 1594771 1594798) (-963 "PROPLOG.spad" 1593637 1593645 1594224 1594229) (-962 "PROPFRML.spad" 1591555 1591566 1593627 1593632) (-961 "PROPERTY.spad" 1591049 1591057 1591545 1591550) (-960 "PRODUCT.spad" 1588729 1588741 1589015 1589070) (-959 "PR.spad" 1587115 1587127 1587820 1587947) (-958 "PRINT.spad" 1586867 1586875 1587105 1587110) (-957 "PRIMES.spad" 1585118 1585128 1586857 1586862) (-956 "PRIMELT.spad" 1583099 1583113 1585108 1585113) (-955 "PRIMCAT.spad" 1582722 1582730 1583089 1583094) (-954 "PRIMARR.spad" 1581727 1581737 1581905 1581932) (-953 "PRIMARR2.spad" 1580450 1580462 1581717 1581722) (-952 "PREASSOC.spad" 1579822 1579834 1580440 1580445) (-951 "PPCURVE.spad" 1578959 1578967 1579812 1579817) (-950 "PORTNUM.spad" 1578734 1578742 1578949 1578954) (-949 "POLYROOT.spad" 1577563 1577585 1578690 1578695) (-948 "POLY.spad" 1574860 1574870 1575377 1575504) (-947 "POLYLIFT.spad" 1574121 1574144 1574850 1574855) (-946 "POLYCATQ.spad" 1572223 1572245 1574111 1574116) (-945 "POLYCAT.spad" 1565629 1565650 1572091 1572218) (-944 "POLYCAT.spad" 1558337 1558360 1564801 1564806) (-943 "POLY2UP.spad" 1557785 1557799 1558327 1558332) (-942 "POLY2.spad" 1557380 1557392 1557775 1557780) (-941 "POLUTIL.spad" 1556321 1556350 1557336 1557341) (-940 "POLTOPOL.spad" 1555069 1555084 1556311 1556316) (-939 "POINT.spad" 1553908 1553918 1553995 1554022) (-938 "PNTHEORY.spad" 1550574 1550582 1553898 1553903) (-937 "PMTOOLS.spad" 1549331 1549345 1550564 1550569) (-936 "PMSYM.spad" 1548876 1548886 1549321 1549326) (-935 "PMQFCAT.spad" 1548463 1548477 1548866 1548871) (-934 "PMPRED.spad" 1547932 1547946 1548453 1548458) (-933 "PMPREDFS.spad" 1547376 1547398 1547922 1547927) (-932 "PMPLCAT.spad" 1546446 1546464 1547308 1547313) (-931 "PMLSAGG.spad" 1546027 1546041 1546436 1546441) (-930 "PMKERNEL.spad" 1545594 1545606 1546017 1546022) (-929 "PMINS.spad" 1545170 1545180 1545584 1545589) (-928 "PMFS.spad" 1544743 1544761 1545160 1545165) (-927 "PMDOWN.spad" 1544029 1544043 1544733 1544738) (-926 "PMASS.spad" 1543041 1543049 1544019 1544024) (-925 "PMASSFS.spad" 1542010 1542026 1543031 1543036) (-924 "PLOTTOOL.spad" 1541790 1541798 1542000 1542005) (-923 "PLOT.spad" 1536621 1536629 1541780 1541785) (-922 "PLOT3D.spad" 1533041 1533049 1536611 1536616) (-921 "PLOT1.spad" 1532182 1532192 1533031 1533036) (-920 "PLEQN.spad" 1519398 1519425 1532172 1532177) (-919 "PINTERP.spad" 1519014 1519033 1519388 1519393) (-918 "PINTERPA.spad" 1518796 1518812 1519004 1519009) (-917 "PI.spad" 1518403 1518411 1518770 1518791) (-916 "PID.spad" 1517359 1517367 1518329 1518398) (-915 "PICOERCE.spad" 1517016 1517026 1517349 1517354) (-914 "PGROEB.spad" 1515613 1515627 1517006 1517011) (-913 "PGE.spad" 1506866 1506874 1515603 1515608) (-912 "PGCD.spad" 1505748 1505765 1506856 1506861) (-911 "PFRPAC.spad" 1504891 1504901 1505738 1505743) (-910 "PFR.spad" 1501548 1501558 1504793 1504886) (-909 "PFOTOOLS.spad" 1500806 1500822 1501538 1501543) (-908 "PFOQ.spad" 1500176 1500194 1500796 1500801) (-907 "PFO.spad" 1499595 1499622 1500166 1500171) (-906 "PF.spad" 1499169 1499181 1499400 1499493) (-905 "PFECAT.spad" 1496835 1496843 1499095 1499164) (-904 "PFECAT.spad" 1494529 1494539 1496791 1496796) (-903 "PFBRU.spad" 1492399 1492411 1494519 1494524) (-902 "PFBR.spad" 1489937 1489960 1492389 1492394) (-901 "PERM.spad" 1485618 1485628 1489767 1489782) (-900 "PERMGRP.spad" 1480354 1480364 1485608 1485613) (-899 "PERMCAT.spad" 1478906 1478916 1480334 1480349) (-898 "PERMAN.spad" 1477438 1477452 1478896 1478901) (-897 "PENDTREE.spad" 1476777 1476787 1477067 1477072) (-896 "PDRING.spad" 1475268 1475278 1476757 1476772) (-895 "PDRING.spad" 1473767 1473779 1475258 1475263) (-894 "PDEPROB.spad" 1472782 1472790 1473757 1473762) (-893 "PDEPACK.spad" 1466784 1466792 1472772 1472777) (-892 "PDECOMP.spad" 1466246 1466263 1466774 1466779) (-891 "PDECAT.spad" 1464600 1464608 1466236 1466241) (-890 "PCOMP.spad" 1464451 1464464 1464590 1464595) (-889 "PBWLB.spad" 1463033 1463050 1464441 1464446) (-888 "PATTERN.spad" 1457464 1457474 1463023 1463028) (-887 "PATTERN2.spad" 1457200 1457212 1457454 1457459) (-886 "PATTERN1.spad" 1455502 1455518 1457190 1457195) (-885 "PATRES.spad" 1453049 1453061 1455492 1455497) (-884 "PATRES2.spad" 1452711 1452725 1453039 1453044) (-883 "PATMATCH.spad" 1450868 1450899 1452419 1452424) (-882 "PATMAB.spad" 1450293 1450303 1450858 1450863) (-881 "PATLRES.spad" 1449377 1449391 1450283 1450288) (-880 "PATAB.spad" 1449141 1449151 1449367 1449372) (-879 "PARTPERM.spad" 1446503 1446511 1449131 1449136) (-878 "PARSURF.spad" 1445931 1445959 1446493 1446498) (-877 "PARSU2.spad" 1445726 1445742 1445921 1445926) (-876 "script-parser.spad" 1445246 1445254 1445716 1445721) (-875 "PARSCURV.spad" 1444674 1444702 1445236 1445241) (-874 "PARSC2.spad" 1444463 1444479 1444664 1444669) (-873 "PARPCURV.spad" 1443921 1443949 1444453 1444458) (-872 "PARPC2.spad" 1443710 1443726 1443911 1443916) (-871 "PAN2EXPR.spad" 1443122 1443130 1443700 1443705) (-870 "PALETTE.spad" 1442092 1442100 1443112 1443117) (-869 "PAIR.spad" 1441075 1441088 1441680 1441685) (-868 "PADICRC.spad" 1438405 1438423 1439580 1439673) (-867 "PADICRAT.spad" 1436420 1436432 1436641 1436734) (-866 "PADIC.spad" 1436115 1436127 1436346 1436415) (-865 "PADICCT.spad" 1434656 1434668 1436041 1436110) (-864 "PADEPAC.spad" 1433335 1433354 1434646 1434651) (-863 "PADE.spad" 1432075 1432091 1433325 1433330) (-862 "OWP.spad" 1431315 1431345 1431933 1432000) (-861 "OVERSET.spad" 1430888 1430896 1431305 1431310) (-860 "OVAR.spad" 1430669 1430692 1430878 1430883) (-859 "OUT.spad" 1429753 1429761 1430659 1430664) (-858 "OUTFORM.spad" 1419049 1419057 1429743 1429748) (-857 "OUTBFILE.spad" 1418467 1418475 1419039 1419044) (-856 "OUTBCON.spad" 1417465 1417473 1418457 1418462) (-855 "OUTBCON.spad" 1416461 1416471 1417455 1417460) (-854 "OSI.spad" 1415936 1415944 1416451 1416456) (-853 "OSGROUP.spad" 1415854 1415862 1415926 1415931) (-852 "ORTHPOL.spad" 1414315 1414325 1415771 1415776) (-851 "OREUP.spad" 1413768 1413796 1413995 1414034) (-850 "ORESUP.spad" 1413067 1413091 1413448 1413487) (-849 "OREPCTO.spad" 1410886 1410898 1412987 1412992) (-848 "OREPCAT.spad" 1404943 1404953 1410842 1410881) (-847 "OREPCAT.spad" 1398890 1398902 1404791 1404796) (-846 "ORDSET.spad" 1398056 1398064 1398880 1398885) (-845 "ORDSET.spad" 1397220 1397230 1398046 1398051) (-844 "ORDRING.spad" 1396610 1396618 1397200 1397215) (-843 "ORDRING.spad" 1396008 1396018 1396600 1396605) (-842 "ORDMON.spad" 1395863 1395871 1395998 1396003) (-841 "ORDFUNS.spad" 1394989 1395005 1395853 1395858) (-840 "ORDFIN.spad" 1394809 1394817 1394979 1394984) (-839 "ORDCOMP.spad" 1393274 1393284 1394356 1394385) (-838 "ORDCOMP2.spad" 1392559 1392571 1393264 1393269) (-837 "OPTPROB.spad" 1391197 1391205 1392549 1392554) (-836 "OPTPACK.spad" 1383582 1383590 1391187 1391192) (-835 "OPTCAT.spad" 1381257 1381265 1383572 1383577) (-834 "OPSIG.spad" 1380909 1380917 1381247 1381252) (-833 "OPQUERY.spad" 1380458 1380466 1380899 1380904) (-832 "OP.spad" 1380200 1380210 1380280 1380347) (-831 "OPERCAT.spad" 1379788 1379798 1380190 1380195) (-830 "OPERCAT.spad" 1379374 1379386 1379778 1379783) (-829 "ONECOMP.spad" 1378119 1378129 1378921 1378950) (-828 "ONECOMP2.spad" 1377537 1377549 1378109 1378114) (-827 "OMSERVER.spad" 1376539 1376547 1377527 1377532) (-826 "OMSAGG.spad" 1376327 1376337 1376495 1376534) (-825 "OMPKG.spad" 1374939 1374947 1376317 1376322) (-824 "OM.spad" 1373904 1373912 1374929 1374934) (-823 "OMLO.spad" 1373329 1373341 1373790 1373829) (-822 "OMEXPR.spad" 1373163 1373173 1373319 1373324) (-821 "OMERR.spad" 1372706 1372714 1373153 1373158) (-820 "OMERRK.spad" 1371740 1371748 1372696 1372701) (-819 "OMENC.spad" 1371084 1371092 1371730 1371735) (-818 "OMDEV.spad" 1365373 1365381 1371074 1371079) (-817 "OMCONN.spad" 1364782 1364790 1365363 1365368) (-816 "OINTDOM.spad" 1364545 1364553 1364708 1364777) (-815 "OFMONOID.spad" 1360732 1360742 1364535 1364540) (-814 "ODVAR.spad" 1359993 1360003 1360722 1360727) (-813 "ODR.spad" 1359637 1359663 1359805 1359954) (-812 "ODPOL.spad" 1356983 1356993 1357323 1357450) (-811 "ODP.spad" 1346830 1346850 1347203 1347334) (-810 "ODETOOLS.spad" 1345413 1345432 1346820 1346825) (-809 "ODESYS.spad" 1343063 1343080 1345403 1345408) (-808 "ODERTRIC.spad" 1339004 1339021 1343020 1343025) (-807 "ODERED.spad" 1338391 1338415 1338994 1338999) (-806 "ODERAT.spad" 1335942 1335959 1338381 1338386) (-805 "ODEPRRIC.spad" 1332833 1332855 1335932 1335937) (-804 "ODEPROB.spad" 1332090 1332098 1332823 1332828) (-803 "ODEPRIM.spad" 1329364 1329386 1332080 1332085) (-802 "ODEPAL.spad" 1328740 1328764 1329354 1329359) (-801 "ODEPACK.spad" 1315342 1315350 1328730 1328735) (-800 "ODEINT.spad" 1314773 1314789 1315332 1315337) (-799 "ODEIFTBL.spad" 1312168 1312176 1314763 1314768) (-798 "ODEEF.spad" 1307535 1307551 1312158 1312163) (-797 "ODECONST.spad" 1307054 1307072 1307525 1307530) (-796 "ODECAT.spad" 1305650 1305658 1307044 1307049) (-795 "OCT.spad" 1303788 1303798 1304504 1304543) (-794 "OCTCT2.spad" 1303432 1303453 1303778 1303783) (-793 "OC.spad" 1301206 1301216 1303388 1303427) (-792 "OC.spad" 1298705 1298717 1300889 1300894) (-791 "OCAMON.spad" 1298553 1298561 1298695 1298700) (-790 "OASGP.spad" 1298368 1298376 1298543 1298548) (-789 "OAMONS.spad" 1297888 1297896 1298358 1298363) (-788 "OAMON.spad" 1297749 1297757 1297878 1297883) (-787 "OAGROUP.spad" 1297611 1297619 1297739 1297744) (-786 "NUMTUBE.spad" 1297198 1297214 1297601 1297606) (-785 "NUMQUAD.spad" 1285060 1285068 1297188 1297193) (-784 "NUMODE.spad" 1276196 1276204 1285050 1285055) (-783 "NUMINT.spad" 1273754 1273762 1276186 1276191) (-782 "NUMFMT.spad" 1272594 1272602 1273744 1273749) (-781 "NUMERIC.spad" 1264666 1264676 1272399 1272404) (-780 "NTSCAT.spad" 1263168 1263184 1264634 1264661) (-779 "NTPOLFN.spad" 1262713 1262723 1263085 1263090) (-778 "NSUP.spad" 1255723 1255733 1260263 1260416) (-777 "NSUP2.spad" 1255115 1255127 1255713 1255718) (-776 "NSMP.spad" 1251310 1251329 1251618 1251745) (-775 "NREP.spad" 1249682 1249696 1251300 1251305) (-774 "NPCOEF.spad" 1248928 1248948 1249672 1249677) (-773 "NORMRETR.spad" 1248526 1248565 1248918 1248923) (-772 "NORMPK.spad" 1246428 1246447 1248516 1248521) (-771 "NORMMA.spad" 1246116 1246142 1246418 1246423) (-770 "NONE.spad" 1245857 1245865 1246106 1246111) (-769 "NONE1.spad" 1245533 1245543 1245847 1245852) (-768 "NODE1.spad" 1245002 1245018 1245523 1245528) (-767 "NNI.spad" 1243889 1243897 1244976 1244997) (-766 "NLINSOL.spad" 1242511 1242521 1243879 1243884) (-765 "NIPROB.spad" 1241052 1241060 1242501 1242506) (-764 "NFINTBAS.spad" 1238512 1238529 1241042 1241047) (-763 "NETCLT.spad" 1238486 1238497 1238502 1238507) (-762 "NCODIV.spad" 1236684 1236700 1238476 1238481) (-761 "NCNTFRAC.spad" 1236326 1236340 1236674 1236679) (-760 "NCEP.spad" 1234486 1234500 1236316 1236321) (-759 "NASRING.spad" 1234082 1234090 1234476 1234481) (-758 "NASRING.spad" 1233676 1233686 1234072 1234077) (-757 "NARNG.spad" 1233020 1233028 1233666 1233671) (-756 "NARNG.spad" 1232362 1232372 1233010 1233015) (-755 "NAGSP.spad" 1231435 1231443 1232352 1232357) (-754 "NAGS.spad" 1220960 1220968 1231425 1231430) (-753 "NAGF07.spad" 1219353 1219361 1220950 1220955) (-752 "NAGF04.spad" 1213585 1213593 1219343 1219348) (-751 "NAGF02.spad" 1207394 1207402 1213575 1213580) (-750 "NAGF01.spad" 1202997 1203005 1207384 1207389) (-749 "NAGE04.spad" 1196457 1196465 1202987 1202992) (-748 "NAGE02.spad" 1186799 1186807 1196447 1196452) (-747 "NAGE01.spad" 1182683 1182691 1186789 1186794) (-746 "NAGD03.spad" 1180603 1180611 1182673 1182678) (-745 "NAGD02.spad" 1173134 1173142 1180593 1180598) (-744 "NAGD01.spad" 1167247 1167255 1173124 1173129) (-743 "NAGC06.spad" 1163034 1163042 1167237 1167242) (-742 "NAGC05.spad" 1161503 1161511 1163024 1163029) (-741 "NAGC02.spad" 1160758 1160766 1161493 1161498) (-740 "NAALG.spad" 1160293 1160303 1160726 1160753) (-739 "NAALG.spad" 1159848 1159860 1160283 1160288) (-738 "MULTSQFR.spad" 1156806 1156823 1159838 1159843) (-737 "MULTFACT.spad" 1156189 1156206 1156796 1156801) (-736 "MTSCAT.spad" 1154223 1154244 1156087 1156184) (-735 "MTHING.spad" 1153880 1153890 1154213 1154218) (-734 "MSYSCMD.spad" 1153314 1153322 1153870 1153875) (-733 "MSET.spad" 1151256 1151266 1153020 1153059) (-732 "MSETAGG.spad" 1151101 1151111 1151224 1151251) (-731 "MRING.spad" 1148072 1148084 1150809 1150876) (-730 "MRF2.spad" 1147640 1147654 1148062 1148067) (-729 "MRATFAC.spad" 1147186 1147203 1147630 1147635) (-728 "MPRFF.spad" 1145216 1145235 1147176 1147181) (-727 "MPOLY.spad" 1142651 1142666 1143010 1143137) (-726 "MPCPF.spad" 1141915 1141934 1142641 1142646) (-725 "MPC3.spad" 1141730 1141770 1141905 1141910) (-724 "MPC2.spad" 1141372 1141405 1141720 1141725) (-723 "MONOTOOL.spad" 1139707 1139724 1141362 1141367) (-722 "MONOID.spad" 1139026 1139034 1139697 1139702) (-721 "MONOID.spad" 1138343 1138353 1139016 1139021) (-720 "MONOGEN.spad" 1137089 1137102 1138203 1138338) (-719 "MONOGEN.spad" 1135857 1135872 1136973 1136978) (-718 "MONADWU.spad" 1133871 1133879 1135847 1135852) (-717 "MONADWU.spad" 1131883 1131893 1133861 1133866) (-716 "MONAD.spad" 1131027 1131035 1131873 1131878) (-715 "MONAD.spad" 1130169 1130179 1131017 1131022) (-714 "MOEBIUS.spad" 1128855 1128869 1130149 1130164) (-713 "MODULE.spad" 1128725 1128735 1128823 1128850) (-712 "MODULE.spad" 1128615 1128627 1128715 1128720) (-711 "MODRING.spad" 1127946 1127985 1128595 1128610) (-710 "MODOP.spad" 1126605 1126617 1127768 1127835) (-709 "MODMONOM.spad" 1126334 1126352 1126595 1126600) (-708 "MODMON.spad" 1123093 1123109 1123812 1123965) (-707 "MODFIELD.spad" 1122451 1122490 1122995 1123088) (-706 "MMLFORM.spad" 1121311 1121319 1122441 1122446) (-705 "MMAP.spad" 1121051 1121085 1121301 1121306) (-704 "MLO.spad" 1119478 1119488 1121007 1121046) (-703 "MLIFT.spad" 1118050 1118067 1119468 1119473) (-702 "MKUCFUNC.spad" 1117583 1117601 1118040 1118045) (-701 "MKRECORD.spad" 1117185 1117198 1117573 1117578) (-700 "MKFUNC.spad" 1116566 1116576 1117175 1117180) (-699 "MKFLCFN.spad" 1115522 1115532 1116556 1116561) (-698 "MKCHSET.spad" 1115387 1115397 1115512 1115517) (-697 "MKBCFUNC.spad" 1114872 1114890 1115377 1115382) (-696 "MINT.spad" 1114311 1114319 1114774 1114867) (-695 "MHROWRED.spad" 1112812 1112822 1114301 1114306) (-694 "MFLOAT.spad" 1111328 1111336 1112702 1112807) (-693 "MFINFACT.spad" 1110728 1110750 1111318 1111323) (-692 "MESH.spad" 1108460 1108468 1110718 1110723) (-691 "MDDFACT.spad" 1106653 1106663 1108450 1108455) (-690 "MDAGG.spad" 1105940 1105950 1106633 1106648) (-689 "MCMPLX.spad" 1101914 1101922 1102528 1102729) (-688 "MCDEN.spad" 1101122 1101134 1101904 1101909) (-687 "MCALCFN.spad" 1098224 1098250 1101112 1101117) (-686 "MAYBE.spad" 1097508 1097519 1098214 1098219) (-685 "MATSTOR.spad" 1094784 1094794 1097498 1097503) (-684 "MATRIX.spad" 1093488 1093498 1093972 1093999) (-683 "MATLIN.spad" 1090814 1090838 1093372 1093377) (-682 "MATCAT.spad" 1082399 1082421 1090782 1090809) (-681 "MATCAT.spad" 1073856 1073880 1082241 1082246) (-680 "MATCAT2.spad" 1073124 1073172 1073846 1073851) (-679 "MAPPKG3.spad" 1072023 1072037 1073114 1073119) (-678 "MAPPKG2.spad" 1071357 1071369 1072013 1072018) (-677 "MAPPKG1.spad" 1070175 1070185 1071347 1071352) (-676 "MAPPAST.spad" 1069488 1069496 1070165 1070170) (-675 "MAPHACK3.spad" 1069296 1069310 1069478 1069483) (-674 "MAPHACK2.spad" 1069061 1069073 1069286 1069291) (-673 "MAPHACK1.spad" 1068691 1068701 1069051 1069056) (-672 "MAGMA.spad" 1066481 1066498 1068681 1068686) (-671 "MACROAST.spad" 1066060 1066068 1066471 1066476) (-670 "M3D.spad" 1063756 1063766 1065438 1065443) (-669 "LZSTAGG.spad" 1060984 1060994 1063746 1063751) (-668 "LZSTAGG.spad" 1058210 1058222 1060974 1060979) (-667 "LWORD.spad" 1054915 1054932 1058200 1058205) (-666 "LSTAST.spad" 1054699 1054707 1054905 1054910) (-665 "LSQM.spad" 1052925 1052939 1053323 1053374) (-664 "LSPP.spad" 1052458 1052475 1052915 1052920) (-663 "LSMP.spad" 1051298 1051326 1052448 1052453) (-662 "LSMP1.spad" 1049102 1049116 1051288 1051293) (-661 "LSAGG.spad" 1048771 1048781 1049070 1049097) (-660 "LSAGG.spad" 1048460 1048472 1048761 1048766) (-659 "LPOLY.spad" 1047414 1047433 1048316 1048385) (-658 "LPEFRAC.spad" 1046671 1046681 1047404 1047409) (-657 "LO.spad" 1046072 1046086 1046605 1046632) (-656 "LOGIC.spad" 1045674 1045682 1046062 1046067) (-655 "LOGIC.spad" 1045274 1045284 1045664 1045669) (-654 "LODOOPS.spad" 1044192 1044204 1045264 1045269) (-653 "LODO.spad" 1043576 1043592 1043872 1043911) (-652 "LODOF.spad" 1042620 1042637 1043533 1043538) (-651 "LODOCAT.spad" 1041278 1041288 1042576 1042615) (-650 "LODOCAT.spad" 1039934 1039946 1041234 1041239) (-649 "LODO2.spad" 1039207 1039219 1039614 1039653) (-648 "LODO1.spad" 1038607 1038617 1038887 1038926) (-647 "LODEEF.spad" 1037379 1037397 1038597 1038602) (-646 "LNAGG.spad" 1033181 1033191 1037369 1037374) (-645 "LNAGG.spad" 1028947 1028959 1033137 1033142) (-644 "LMOPS.spad" 1025683 1025700 1028937 1028942) (-643 "LMODULE.spad" 1025325 1025335 1025673 1025678) (-642 "LMDICT.spad" 1024608 1024618 1024876 1024903) (-641 "LITERAL.spad" 1024514 1024525 1024598 1024603) (-640 "LIST.spad" 1022232 1022242 1023661 1023688) (-639 "LIST3.spad" 1021523 1021537 1022222 1022227) (-638 "LIST2.spad" 1020163 1020175 1021513 1021518) (-637 "LIST2MAP.spad" 1017040 1017052 1020153 1020158) (-636 "LINEXP.spad" 1016472 1016482 1017020 1017035) (-635 "LINDEP.spad" 1015249 1015261 1016384 1016389) (-634 "LIMITRF.spad" 1013163 1013173 1015239 1015244) (-633 "LIMITPS.spad" 1012046 1012059 1013153 1013158) (-632 "LIE.spad" 1010060 1010072 1011336 1011481) (-631 "LIECAT.spad" 1009536 1009546 1009986 1010055) (-630 "LIECAT.spad" 1009040 1009052 1009492 1009497) (-629 "LIB.spad" 1007088 1007096 1007699 1007714) (-628 "LGROBP.spad" 1004441 1004460 1007078 1007083) (-627 "LF.spad" 1003360 1003376 1004431 1004436) (-626 "LFCAT.spad" 1002379 1002387 1003350 1003355) (-625 "LEXTRIPK.spad" 997882 997897 1002369 1002374) (-624 "LEXP.spad" 995885 995912 997862 997877) (-623 "LETAST.spad" 995584 995592 995875 995880) (-622 "LEADCDET.spad" 993968 993985 995574 995579) (-621 "LAZM3PK.spad" 992672 992694 993958 993963) (-620 "LAUPOL.spad" 991361 991374 992265 992334) (-619 "LAPLACE.spad" 990934 990950 991351 991356) (-618 "LA.spad" 990374 990388 990856 990895) (-617 "LALG.spad" 990150 990160 990354 990369) (-616 "LALG.spad" 989934 989946 990140 990145) (-615 "KVTFROM.spad" 989669 989679 989924 989929) (-614 "KTVLOGIC.spad" 989092 989100 989659 989664) (-613 "KRCFROM.spad" 988830 988840 989082 989087) (-612 "KOVACIC.spad" 987543 987560 988820 988825) (-611 "KONVERT.spad" 987265 987275 987533 987538) (-610 "KOERCE.spad" 987002 987012 987255 987260) (-609 "KERNEL.spad" 985537 985547 986786 986791) (-608 "KERNEL2.spad" 985240 985252 985527 985532) (-607 "KDAGG.spad" 984343 984365 985220 985235) (-606 "KDAGG.spad" 983454 983478 984333 984338) (-605 "KAFILE.spad" 982417 982433 982652 982679) (-604 "JORDAN.spad" 980244 980256 981707 981852) (-603 "JOINAST.spad" 979938 979946 980234 980239) (-602 "JAVACODE.spad" 979804 979812 979928 979933) (-601 "IXAGG.spad" 977927 977951 979794 979799) (-600 "IXAGG.spad" 975905 975931 977774 977779) (-599 "IVECTOR.spad" 974676 974691 974831 974858) (-598 "ITUPLE.spad" 973821 973831 974666 974671) (-597 "ITRIGMNP.spad" 972632 972651 973811 973816) (-596 "ITFUN3.spad" 972126 972140 972622 972627) (-595 "ITFUN2.spad" 971856 971868 972116 972121) (-594 "ITAYLOR.spad" 969648 969663 971692 971817) (-593 "ISUPS.spad" 962059 962074 968622 968719) (-592 "ISUMP.spad" 961556 961572 962049 962054) (-591 "ISTRING.spad" 960559 960572 960725 960752) (-590 "ISAST.spad" 960278 960286 960549 960554) (-589 "IRURPK.spad" 958991 959010 960268 960273) (-588 "IRSN.spad" 956951 956959 958981 958986) (-587 "IRRF2F.spad" 955426 955436 956907 956912) (-586 "IRREDFFX.spad" 955027 955038 955416 955421) (-585 "IROOT.spad" 953358 953368 955017 955022) (-584 "IR.spad" 951147 951161 953213 953240) (-583 "IR2.spad" 950167 950183 951137 951142) (-582 "IR2F.spad" 949367 949383 950157 950162) (-581 "IPRNTPK.spad" 949127 949135 949357 949362) (-580 "IPF.spad" 948692 948704 948932 949025) (-579 "IPADIC.spad" 948453 948479 948618 948687) (-578 "IP4ADDR.spad" 948010 948018 948443 948448) (-577 "IOMODE.spad" 947631 947639 948000 948005) (-576 "IOBFILE.spad" 946992 947000 947621 947626) (-575 "IOBCON.spad" 946857 946865 946982 946987) (-574 "INVLAPLA.spad" 946502 946518 946847 946852) (-573 "INTTR.spad" 939748 939765 946492 946497) (-572 "INTTOOLS.spad" 937459 937475 939322 939327) (-571 "INTSLPE.spad" 936765 936773 937449 937454) (-570 "INTRVL.spad" 936331 936341 936679 936760) (-569 "INTRF.spad" 934695 934709 936321 936326) (-568 "INTRET.spad" 934127 934137 934685 934690) (-567 "INTRAT.spad" 932802 932819 934117 934122) (-566 "INTPM.spad" 931165 931181 932445 932450) (-565 "INTPAF.spad" 928933 928951 931097 931102) (-564 "INTPACK.spad" 919243 919251 928923 928928) (-563 "INT.spad" 918604 918612 919097 919238) (-562 "INTHERTR.spad" 917870 917887 918594 918599) (-561 "INTHERAL.spad" 917536 917560 917860 917865) (-560 "INTHEORY.spad" 913949 913957 917526 917531) (-559 "INTG0.spad" 907412 907430 913881 913886) (-558 "INTFTBL.spad" 901441 901449 907402 907407) (-557 "INTFACT.spad" 900500 900510 901431 901436) (-556 "INTEF.spad" 898815 898831 900490 900495) (-555 "INTDOM.spad" 897430 897438 898741 898810) (-554 "INTDOM.spad" 896107 896117 897420 897425) (-553 "INTCAT.spad" 894360 894370 896021 896102) (-552 "INTBIT.spad" 893863 893871 894350 894355) (-551 "INTALG.spad" 893045 893072 893853 893858) (-550 "INTAF.spad" 892537 892553 893035 893040) (-549 "INTABL.spad" 891055 891086 891218 891245) (-548 "INT8.spad" 890935 890943 891045 891050) (-547 "INT32.spad" 890814 890822 890925 890930) (-546 "INT16.spad" 890693 890701 890804 890809) (-545 "INS.spad" 888160 888168 890595 890688) (-544 "INS.spad" 885713 885723 888150 888155) (-543 "INPSIGN.spad" 885147 885160 885703 885708) (-542 "INPRODPF.spad" 884213 884232 885137 885142) (-541 "INPRODFF.spad" 883271 883295 884203 884208) (-540 "INNMFACT.spad" 882242 882259 883261 883266) (-539 "INMODGCD.spad" 881726 881756 882232 882237) (-538 "INFSP.spad" 880011 880033 881716 881721) (-537 "INFPROD0.spad" 879061 879080 880001 880006) (-536 "INFORM.spad" 876222 876230 879051 879056) (-535 "INFORM1.spad" 875847 875857 876212 876217) (-534 "INFINITY.spad" 875399 875407 875837 875842) (-533 "INETCLTS.spad" 875376 875384 875389 875394) (-532 "INEP.spad" 873908 873930 875366 875371) (-531 "INDE.spad" 873637 873654 873898 873903) (-530 "INCRMAPS.spad" 873058 873068 873627 873632) (-529 "INBFILE.spad" 872130 872138 873048 873053) (-528 "INBFF.spad" 867900 867911 872120 872125) (-527 "INBCON.spad" 866188 866196 867890 867895) (-526 "INBCON.spad" 864474 864484 866178 866183) (-525 "INAST.spad" 864139 864147 864464 864469) (-524 "IMPTAST.spad" 863847 863855 864129 864134) (-523 "IMATRIX.spad" 862792 862818 863304 863331) (-522 "IMATQF.spad" 861886 861930 862748 862753) (-521 "IMATLIN.spad" 860491 860515 861842 861847) (-520 "ILIST.spad" 859147 859162 859674 859701) (-519 "IIARRAY2.spad" 858535 858573 858754 858781) (-518 "IFF.spad" 857945 857961 858216 858309) (-517 "IFAST.spad" 857559 857567 857935 857940) (-516 "IFARRAY.spad" 855046 855061 856742 856769) (-515 "IFAMON.spad" 854908 854925 855002 855007) (-514 "IEVALAB.spad" 854297 854309 854898 854903) (-513 "IEVALAB.spad" 853684 853698 854287 854292) (-512 "IDPO.spad" 853482 853494 853674 853679) (-511 "IDPOAMS.spad" 853238 853250 853472 853477) (-510 "IDPOAM.spad" 852958 852970 853228 853233) (-509 "IDPC.spad" 851892 851904 852948 852953) (-508 "IDPAM.spad" 851637 851649 851882 851887) (-507 "IDPAG.spad" 851384 851396 851627 851632) (-506 "IDENT.spad" 851156 851164 851374 851379) (-505 "IDECOMP.spad" 848393 848411 851146 851151) (-504 "IDEAL.spad" 843316 843355 848328 848333) (-503 "ICDEN.spad" 842467 842483 843306 843311) (-502 "ICARD.spad" 841656 841664 842457 842462) (-501 "IBPTOOLS.spad" 840249 840266 841646 841651) (-500 "IBITS.spad" 839448 839461 839885 839912) (-499 "IBATOOL.spad" 836323 836342 839438 839443) (-498 "IBACHIN.spad" 834810 834825 836313 836318) (-497 "IARRAY2.spad" 833798 833824 834417 834444) (-496 "IARRAY1.spad" 832843 832858 832981 833008) (-495 "IAN.spad" 831056 831064 832659 832752) (-494 "IALGFACT.spad" 830657 830690 831046 831051) (-493 "HYPCAT.spad" 830081 830089 830647 830652) (-492 "HYPCAT.spad" 829503 829513 830071 830076) (-491 "HOSTNAME.spad" 829311 829319 829493 829498) (-490 "HOMOTOP.spad" 829054 829064 829301 829306) (-489 "HOAGG.spad" 826322 826332 829044 829049) (-488 "HOAGG.spad" 823365 823377 826089 826094) (-487 "HEXADEC.spad" 821467 821475 821832 821925) (-486 "HEUGCD.spad" 820482 820493 821457 821462) (-485 "HELLFDIV.spad" 820072 820096 820472 820477) (-484 "HEAP.spad" 819464 819474 819679 819706) (-483 "HEADAST.spad" 818995 819003 819454 819459) (-482 "HDP.spad" 808838 808854 809215 809346) (-481 "HDMP.spad" 806014 806029 806632 806759) (-480 "HB.spad" 804251 804259 806004 806009) (-479 "HASHTBL.spad" 802721 802752 802932 802959) (-478 "HASAST.spad" 802437 802445 802711 802716) (-477 "HACKPI.spad" 801920 801928 802339 802432) (-476 "GTSET.spad" 800859 800875 801566 801593) (-475 "GSTBL.spad" 799378 799413 799552 799567) (-474 "GSERIES.spad" 796545 796572 797510 797659) (-473 "GROUP.spad" 795814 795822 796525 796540) (-472 "GROUP.spad" 795091 795101 795804 795809) (-471 "GROEBSOL.spad" 793579 793600 795081 795086) (-470 "GRMOD.spad" 792150 792162 793569 793574) (-469 "GRMOD.spad" 790719 790733 792140 792145) (-468 "GRIMAGE.spad" 783324 783332 790709 790714) (-467 "GRDEF.spad" 781703 781711 783314 783319) (-466 "GRAY.spad" 780162 780170 781693 781698) (-465 "GRALG.spad" 779209 779221 780152 780157) (-464 "GRALG.spad" 778254 778268 779199 779204) (-463 "GPOLSET.spad" 777708 777731 777936 777963) (-462 "GOSPER.spad" 776973 776991 777698 777703) (-461 "GMODPOL.spad" 776111 776138 776941 776968) (-460 "GHENSEL.spad" 775180 775194 776101 776106) (-459 "GENUPS.spad" 771281 771294 775170 775175) (-458 "GENUFACT.spad" 770858 770868 771271 771276) (-457 "GENPGCD.spad" 770442 770459 770848 770853) (-456 "GENMFACT.spad" 769894 769913 770432 770437) (-455 "GENEEZ.spad" 767833 767846 769884 769889) (-454 "GDMP.spad" 764851 764868 765627 765754) (-453 "GCNAALG.spad" 758746 758773 764645 764712) (-452 "GCDDOM.spad" 757918 757926 758672 758741) (-451 "GCDDOM.spad" 757152 757162 757908 757913) (-450 "GB.spad" 754670 754708 757108 757113) (-449 "GBINTERN.spad" 750690 750728 754660 754665) (-448 "GBF.spad" 746447 746485 750680 750685) (-447 "GBEUCLID.spad" 744321 744359 746437 746442) (-446 "GAUSSFAC.spad" 743618 743626 744311 744316) (-445 "GALUTIL.spad" 741940 741950 743574 743579) (-444 "GALPOLYU.spad" 740386 740399 741930 741935) (-443 "GALFACTU.spad" 738551 738570 740376 740381) (-442 "GALFACT.spad" 728684 728695 738541 738546) (-441 "FVFUN.spad" 725707 725715 728674 728679) (-440 "FVC.spad" 724759 724767 725697 725702) (-439 "FUNDESC.spad" 724437 724445 724749 724754) (-438 "FUNCTION.spad" 724286 724298 724427 724432) (-437 "FT.spad" 722579 722587 724276 724281) (-436 "FTEM.spad" 721742 721750 722569 722574) (-435 "FSUPFACT.spad" 720642 720661 721678 721683) (-434 "FST.spad" 718728 718736 720632 720637) (-433 "FSRED.spad" 718206 718222 718718 718723) (-432 "FSPRMELT.spad" 717030 717046 718163 718168) (-431 "FSPECF.spad" 715107 715123 717020 717025) (-430 "FS.spad" 709169 709179 714882 715102) (-429 "FS.spad" 703009 703021 708724 708729) (-428 "FSINT.spad" 702667 702683 702999 703004) (-427 "FSERIES.spad" 701854 701866 702487 702586) (-426 "FSCINT.spad" 701167 701183 701844 701849) (-425 "FSAGG.spad" 700284 700294 701123 701162) (-424 "FSAGG.spad" 699363 699375 700204 700209) (-423 "FSAGG2.spad" 698062 698078 699353 699358) (-422 "FS2UPS.spad" 692545 692579 698052 698057) (-421 "FS2.spad" 692190 692206 692535 692540) (-420 "FS2EXPXP.spad" 691313 691336 692180 692185) (-419 "FRUTIL.spad" 690255 690265 691303 691308) (-418 "FR.spad" 683949 683959 689279 689348) (-417 "FRNAALG.spad" 679036 679046 683891 683944) (-416 "FRNAALG.spad" 674135 674147 678992 678997) (-415 "FRNAAF2.spad" 673589 673607 674125 674130) (-414 "FRMOD.spad" 672983 673013 673520 673525) (-413 "FRIDEAL.spad" 672178 672199 672963 672978) (-412 "FRIDEAL2.spad" 671780 671812 672168 672173) (-411 "FRETRCT.spad" 671291 671301 671770 671775) (-410 "FRETRCT.spad" 670668 670680 671149 671154) (-409 "FRAMALG.spad" 668996 669009 670624 670663) (-408 "FRAMALG.spad" 667356 667371 668986 668991) (-407 "FRAC.spad" 664455 664465 664858 665031) (-406 "FRAC2.spad" 664058 664070 664445 664450) (-405 "FR2.spad" 663392 663404 664048 664053) (-404 "FPS.spad" 660201 660209 663282 663387) (-403 "FPS.spad" 657038 657048 660121 660126) (-402 "FPC.spad" 656080 656088 656940 657033) (-401 "FPC.spad" 655208 655218 656070 656075) (-400 "FPATMAB.spad" 654970 654980 655198 655203) (-399 "FPARFRAC.spad" 653443 653460 654960 654965) (-398 "FORTRAN.spad" 651949 651992 653433 653438) (-397 "FORT.spad" 650878 650886 651939 651944) (-396 "FORTFN.spad" 648048 648056 650868 650873) (-395 "FORTCAT.spad" 647732 647740 648038 648043) (-394 "FORMULA.spad" 645196 645204 647722 647727) (-393 "FORMULA1.spad" 644675 644685 645186 645191) (-392 "FORDER.spad" 644366 644390 644665 644670) (-391 "FOP.spad" 643567 643575 644356 644361) (-390 "FNLA.spad" 642991 643013 643535 643562) (-389 "FNCAT.spad" 641578 641586 642981 642986) (-388 "FNAME.spad" 641470 641478 641568 641573) (-387 "FMTC.spad" 641268 641276 641396 641465) (-386 "FMONOID.spad" 638323 638333 641224 641229) (-385 "FM.spad" 638018 638030 638257 638284) (-384 "FMFUN.spad" 635048 635056 638008 638013) (-383 "FMC.spad" 634100 634108 635038 635043) (-382 "FMCAT.spad" 631754 631772 634068 634095) (-381 "FM1.spad" 631111 631123 631688 631715) (-380 "FLOATRP.spad" 628832 628846 631101 631106) (-379 "FLOAT.spad" 622120 622128 628698 628827) (-378 "FLOATCP.spad" 619537 619551 622110 622115) (-377 "FLINEXP.spad" 619249 619259 619517 619532) (-376 "FLINEXP.spad" 618915 618927 619185 619190) (-375 "FLASORT.spad" 618235 618247 618905 618910) (-374 "FLALG.spad" 615881 615900 618161 618230) (-373 "FLAGG.spad" 612899 612909 615861 615876) (-372 "FLAGG.spad" 609818 609830 612782 612787) (-371 "FLAGG2.spad" 608499 608515 609808 609813) (-370 "FINRALG.spad" 606528 606541 608455 608494) (-369 "FINRALG.spad" 604483 604498 606412 606417) (-368 "FINITE.spad" 603635 603643 604473 604478) (-367 "FINAALG.spad" 592616 592626 603577 603630) (-366 "FINAALG.spad" 581609 581621 592572 592577) (-365 "FILE.spad" 581192 581202 581599 581604) (-364 "FILECAT.spad" 579710 579727 581182 581187) (-363 "FIELD.spad" 579116 579124 579612 579705) (-362 "FIELD.spad" 578608 578618 579106 579111) (-361 "FGROUP.spad" 577217 577227 578588 578603) (-360 "FGLMICPK.spad" 576004 576019 577207 577212) (-359 "FFX.spad" 575379 575394 575720 575813) (-358 "FFSLPE.spad" 574868 574889 575369 575374) (-357 "FFPOLY.spad" 566120 566131 574858 574863) (-356 "FFPOLY2.spad" 565180 565197 566110 566115) (-355 "FFP.spad" 564577 564597 564896 564989) (-354 "FF.spad" 564025 564041 564258 564351) (-353 "FFNBX.spad" 562537 562557 563741 563834) (-352 "FFNBP.spad" 561050 561067 562253 562346) (-351 "FFNB.spad" 559515 559536 560731 560824) (-350 "FFINTBAS.spad" 556929 556948 559505 559510) (-349 "FFIELDC.spad" 554504 554512 556831 556924) (-348 "FFIELDC.spad" 552165 552175 554494 554499) (-347 "FFHOM.spad" 550913 550930 552155 552160) (-346 "FFF.spad" 548348 548359 550903 550908) (-345 "FFCGX.spad" 547195 547215 548064 548157) (-344 "FFCGP.spad" 546084 546104 546911 547004) (-343 "FFCG.spad" 544876 544897 545765 545858) (-342 "FFCAT.spad" 537903 537925 544715 544871) (-341 "FFCAT.spad" 531009 531033 537823 537828) (-340 "FFCAT2.spad" 530754 530794 530999 531004) (-339 "FEXPR.spad" 522463 522509 530510 530549) (-338 "FEVALAB.spad" 522169 522179 522453 522458) (-337 "FEVALAB.spad" 521660 521672 521946 521951) (-336 "FDIV.spad" 521102 521126 521650 521655) (-335 "FDIVCAT.spad" 519144 519168 521092 521097) (-334 "FDIVCAT.spad" 517184 517210 519134 519139) (-333 "FDIV2.spad" 516838 516878 517174 517179) (-332 "FCPAK1.spad" 515391 515399 516828 516833) (-331 "FCOMP.spad" 514770 514780 515381 515386) (-330 "FC.spad" 504685 504693 514760 514765) (-329 "FAXF.spad" 497620 497634 504587 504680) (-328 "FAXF.spad" 490607 490623 497576 497581) (-327 "FARRAY.spad" 488753 488763 489790 489817) (-326 "FAMR.spad" 486873 486885 488651 488748) (-325 "FAMR.spad" 484977 484991 486757 486762) (-324 "FAMONOID.spad" 484627 484637 484931 484936) (-323 "FAMONC.spad" 482849 482861 484617 484622) (-322 "FAGROUP.spad" 482455 482465 482745 482772) (-321 "FACUTIL.spad" 480651 480668 482445 482450) (-320 "FACTFUNC.spad" 479827 479837 480641 480646) (-319 "EXPUPXS.spad" 476660 476683 477959 478108) (-318 "EXPRTUBE.spad" 473888 473896 476650 476655) (-317 "EXPRODE.spad" 470760 470776 473878 473883) (-316 "EXPR.spad" 466035 466045 466749 467156) (-315 "EXPR2UPS.spad" 462127 462140 466025 466030) (-314 "EXPR2.spad" 461830 461842 462117 462122) (-313 "EXPEXPAN.spad" 458768 458793 459402 459495) (-312 "EXIT.spad" 458439 458447 458758 458763) (-311 "EXITAST.spad" 458175 458183 458429 458434) (-310 "EVALCYC.spad" 457633 457647 458165 458170) (-309 "EVALAB.spad" 457197 457207 457623 457628) (-308 "EVALAB.spad" 456759 456771 457187 457192) (-307 "EUCDOM.spad" 454301 454309 456685 456754) (-306 "EUCDOM.spad" 451905 451915 454291 454296) (-305 "ESTOOLS.spad" 443745 443753 451895 451900) (-304 "ESTOOLS2.spad" 443346 443360 443735 443740) (-303 "ESTOOLS1.spad" 443031 443042 443336 443341) (-302 "ES.spad" 435578 435586 443021 443026) (-301 "ES.spad" 428031 428041 435476 435481) (-300 "ESCONT.spad" 424804 424812 428021 428026) (-299 "ESCONT1.spad" 424553 424565 424794 424799) (-298 "ES2.spad" 424048 424064 424543 424548) (-297 "ES1.spad" 423614 423630 424038 424043) (-296 "ERROR.spad" 420935 420943 423604 423609) (-295 "EQTBL.spad" 419407 419429 419616 419643) (-294 "EQ.spad" 414281 414291 417080 417192) (-293 "EQ2.spad" 413997 414009 414271 414276) (-292 "EP.spad" 410311 410321 413987 413992) (-291 "ENV.spad" 409013 409021 410301 410306) (-290 "ENTIRER.spad" 408681 408689 408957 409008) (-289 "EMR.spad" 407882 407923 408607 408676) (-288 "ELTAGG.spad" 406122 406141 407872 407877) (-287 "ELTAGG.spad" 404326 404347 406078 406083) (-286 "ELTAB.spad" 403773 403791 404316 404321) (-285 "ELFUTS.spad" 403152 403171 403763 403768) (-284 "ELEMFUN.spad" 402841 402849 403142 403147) (-283 "ELEMFUN.spad" 402528 402538 402831 402836) (-282 "ELAGG.spad" 400471 400481 402508 402523) (-281 "ELAGG.spad" 398351 398363 400390 400395) (-280 "ELABEXPR.spad" 397282 397290 398341 398346) (-279 "EFUPXS.spad" 394058 394088 397238 397243) (-278 "EFULS.spad" 390894 390917 394014 394019) (-277 "EFSTRUC.spad" 388849 388865 390884 390889) (-276 "EF.spad" 383615 383631 388839 388844) (-275 "EAB.spad" 381891 381899 383605 383610) (-274 "E04UCFA.spad" 381427 381435 381881 381886) (-273 "E04NAFA.spad" 381004 381012 381417 381422) (-272 "E04MBFA.spad" 380584 380592 380994 380999) (-271 "E04JAFA.spad" 380120 380128 380574 380579) (-270 "E04GCFA.spad" 379656 379664 380110 380115) (-269 "E04FDFA.spad" 379192 379200 379646 379651) (-268 "E04DGFA.spad" 378728 378736 379182 379187) (-267 "E04AGNT.spad" 374570 374578 378718 378723) (-266 "DVARCAT.spad" 371255 371265 374560 374565) (-265 "DVARCAT.spad" 367938 367950 371245 371250) (-264 "DSMP.spad" 365369 365383 365674 365801) (-263 "DROPT.spad" 359314 359322 365359 365364) (-262 "DROPT1.spad" 358977 358987 359304 359309) (-261 "DROPT0.spad" 353804 353812 358967 358972) (-260 "DRAWPT.spad" 351959 351967 353794 353799) (-259 "DRAW.spad" 344559 344572 351949 351954) (-258 "DRAWHACK.spad" 343867 343877 344549 344554) (-257 "DRAWCX.spad" 341309 341317 343857 343862) (-256 "DRAWCURV.spad" 340846 340861 341299 341304) (-255 "DRAWCFUN.spad" 330018 330026 340836 340841) (-254 "DQAGG.spad" 328186 328196 329986 330013) (-253 "DPOLCAT.spad" 323527 323543 328054 328181) (-252 "DPOLCAT.spad" 318954 318972 323483 323488) (-251 "DPMO.spad" 311180 311196 311318 311619) (-250 "DPMM.spad" 303419 303437 303544 303845) (-249 "DOMCTOR.spad" 303311 303319 303409 303414) (-248 "DOMAIN.spad" 302442 302450 303301 303306) (-247 "DMP.spad" 299664 299679 300236 300363) (-246 "DLP.spad" 299012 299022 299654 299659) (-245 "DLIST.spad" 297591 297601 298195 298222) (-244 "DLAGG.spad" 296002 296012 297581 297586) (-243 "DIVRING.spad" 295544 295552 295946 295997) (-242 "DIVRING.spad" 295130 295140 295534 295539) (-241 "DISPLAY.spad" 293310 293318 295120 295125) (-240 "DIRPROD.spad" 282890 282906 283530 283661) (-239 "DIRPROD2.spad" 281698 281716 282880 282885) (-238 "DIRPCAT.spad" 280640 280656 281562 281693) (-237 "DIRPCAT.spad" 279311 279329 280235 280240) (-236 "DIOSP.spad" 278136 278144 279301 279306) (-235 "DIOPS.spad" 277120 277130 278116 278131) (-234 "DIOPS.spad" 276078 276090 277076 277081) (-233 "DIFRING.spad" 275370 275378 276058 276073) (-232 "DIFRING.spad" 274670 274680 275360 275365) (-231 "DIFEXT.spad" 273829 273839 274650 274665) (-230 "DIFEXT.spad" 272905 272917 273728 273733) (-229 "DIAGG.spad" 272535 272545 272885 272900) (-228 "DIAGG.spad" 272173 272185 272525 272530) (-227 "DHMATRIX.spad" 270477 270487 271630 271657) (-226 "DFSFUN.spad" 263885 263893 270467 270472) (-225 "DFLOAT.spad" 260606 260614 263775 263880) (-224 "DFINTTLS.spad" 258815 258831 260596 260601) (-223 "DERHAM.spad" 256725 256757 258795 258810) (-222 "DEQUEUE.spad" 256043 256053 256332 256359) (-221 "DEGRED.spad" 255658 255672 256033 256038) (-220 "DEFINTRF.spad" 253183 253193 255648 255653) (-219 "DEFINTEF.spad" 251679 251695 253173 253178) (-218 "DEFAST.spad" 251047 251055 251669 251674) (-217 "DECIMAL.spad" 249153 249161 249514 249607) (-216 "DDFACT.spad" 246952 246969 249143 249148) (-215 "DBLRESP.spad" 246550 246574 246942 246947) (-214 "DBASE.spad" 245204 245214 246540 246545) (-213 "DATAARY.spad" 244666 244679 245194 245199) (-212 "D03FAFA.spad" 244494 244502 244656 244661) (-211 "D03EEFA.spad" 244314 244322 244484 244489) (-210 "D03AGNT.spad" 243394 243402 244304 244309) (-209 "D02EJFA.spad" 242856 242864 243384 243389) (-208 "D02CJFA.spad" 242334 242342 242846 242851) (-207 "D02BHFA.spad" 241824 241832 242324 242329) (-206 "D02BBFA.spad" 241314 241322 241814 241819) (-205 "D02AGNT.spad" 236118 236126 241304 241309) (-204 "D01WGTS.spad" 234437 234445 236108 236113) (-203 "D01TRNS.spad" 234414 234422 234427 234432) (-202 "D01GBFA.spad" 233936 233944 234404 234409) (-201 "D01FCFA.spad" 233458 233466 233926 233931) (-200 "D01ASFA.spad" 232926 232934 233448 233453) (-199 "D01AQFA.spad" 232372 232380 232916 232921) (-198 "D01APFA.spad" 231796 231804 232362 232367) (-197 "D01ANFA.spad" 231290 231298 231786 231791) (-196 "D01AMFA.spad" 230800 230808 231280 231285) (-195 "D01ALFA.spad" 230340 230348 230790 230795) (-194 "D01AKFA.spad" 229866 229874 230330 230335) (-193 "D01AJFA.spad" 229389 229397 229856 229861) (-192 "D01AGNT.spad" 225448 225456 229379 229384) (-191 "CYCLOTOM.spad" 224954 224962 225438 225443) (-190 "CYCLES.spad" 221786 221794 224944 224949) (-189 "CVMP.spad" 221203 221213 221776 221781) (-188 "CTRIGMNP.spad" 219693 219709 221193 221198) (-187 "CTOR.spad" 219388 219396 219683 219688) (-186 "CTORKIND.spad" 218991 218999 219378 219383) (-185 "CTORCAT.spad" 218240 218248 218981 218986) (-184 "CTORCAT.spad" 217487 217497 218230 218235) (-183 "CTORCALL.spad" 217067 217075 217477 217482) (-182 "CSTTOOLS.spad" 216310 216323 217057 217062) (-181 "CRFP.spad" 210014 210027 216300 216305) (-180 "CRCEAST.spad" 209734 209742 210004 210009) (-179 "CRAPACK.spad" 208777 208787 209724 209729) (-178 "CPMATCH.spad" 208277 208292 208702 208707) (-177 "CPIMA.spad" 207982 208001 208267 208272) (-176 "COORDSYS.spad" 202875 202885 207972 207977) (-175 "CONTOUR.spad" 202277 202285 202865 202870) (-174 "CONTFRAC.spad" 197889 197899 202179 202272) (-173 "CONDUIT.spad" 197647 197655 197879 197884) (-172 "COMRING.spad" 197321 197329 197585 197642) (-171 "COMPPROP.spad" 196835 196843 197311 197316) (-170 "COMPLPAT.spad" 196602 196617 196825 196830) (-169 "COMPLEX.spad" 190626 190636 190870 191131) (-168 "COMPLEX2.spad" 190339 190351 190616 190621) (-167 "COMPFACT.spad" 189941 189955 190329 190334) (-166 "COMPCAT.spad" 188009 188019 189675 189936) (-165 "COMPCAT.spad" 185770 185782 187438 187443) (-164 "COMMUPC.spad" 185516 185534 185760 185765) (-163 "COMMONOP.spad" 185049 185057 185506 185511) (-162 "COMM.spad" 184858 184866 185039 185044) (-161 "COMMAAST.spad" 184621 184629 184848 184853) (-160 "COMBOPC.spad" 183526 183534 184611 184616) (-159 "COMBINAT.spad" 182271 182281 183516 183521) (-158 "COMBF.spad" 179639 179655 182261 182266) (-157 "COLOR.spad" 178476 178484 179629 179634) (-156 "COLONAST.spad" 178142 178150 178466 178471) (-155 "CMPLXRT.spad" 177851 177868 178132 178137) (-154 "CLLCTAST.spad" 177513 177521 177841 177846) (-153 "CLIP.spad" 173605 173613 177503 177508) (-152 "CLIF.spad" 172244 172260 173561 173600) (-151 "CLAGG.spad" 168729 168739 172234 172239) (-150 "CLAGG.spad" 165085 165097 168592 168597) (-149 "CINTSLPE.spad" 164410 164423 165075 165080) (-148 "CHVAR.spad" 162488 162510 164400 164405) (-147 "CHARZ.spad" 162403 162411 162468 162483) (-146 "CHARPOL.spad" 161911 161921 162393 162398) (-145 "CHARNZ.spad" 161664 161672 161891 161906) (-144 "CHAR.spad" 159532 159540 161654 161659) (-143 "CFCAT.spad" 158848 158856 159522 159527) (-142 "CDEN.spad" 158006 158020 158838 158843) (-141 "CCLASS.spad" 156155 156163 157417 157456) (-140 "CATEGORY.spad" 155245 155253 156145 156150) (-139 "CATCTOR.spad" 155136 155144 155235 155240) (-138 "CATAST.spad" 154763 154771 155126 155131) (-137 "CASEAST.spad" 154477 154485 154753 154758) (-136 "CARTEN.spad" 149580 149604 154467 154472) (-135 "CARTEN2.spad" 148966 148993 149570 149575) (-134 "CARD.spad" 146255 146263 148940 148961) (-133 "CAPSLAST.spad" 146029 146037 146245 146250) (-132 "CACHSET.spad" 145651 145659 146019 146024) (-131 "CABMON.spad" 145204 145212 145641 145646) (-130 "BYTEORD.spad" 144879 144887 145194 145199) (-129 "BYTE.spad" 144300 144308 144869 144874) (-128 "BYTEBUF.spad" 142157 142165 143469 143496) (-127 "BTREE.spad" 141226 141236 141764 141791) (-126 "BTOURN.spad" 140229 140239 140833 140860) (-125 "BTCAT.spad" 139617 139627 140197 140224) (-124 "BTCAT.spad" 139025 139037 139607 139612) (-123 "BTAGG.spad" 138147 138155 138993 139020) (-122 "BTAGG.spad" 137289 137299 138137 138142) (-121 "BSTREE.spad" 136024 136034 136896 136923) (-120 "BRILL.spad" 134219 134230 136014 136019) (-119 "BRAGG.spad" 133143 133153 134209 134214) (-118 "BRAGG.spad" 132031 132043 133099 133104) (-117 "BPADICRT.spad" 130012 130024 130267 130360) (-116 "BPADIC.spad" 129676 129688 129938 130007) (-115 "BOUNDZRO.spad" 129332 129349 129666 129671) (-114 "BOP.spad" 124796 124804 129322 129327) (-113 "BOP1.spad" 122182 122192 124752 124757) (-112 "BOOLEAN.spad" 121506 121514 122172 122177) (-111 "BMODULE.spad" 121218 121230 121474 121501) (-110 "BITS.spad" 120637 120645 120854 120881) (-109 "BINDING.spad" 120056 120064 120627 120632) (-108 "BINARY.spad" 118167 118175 118523 118616) (-107 "BGAGG.spad" 117364 117374 118147 118162) (-106 "BGAGG.spad" 116569 116581 117354 117359) (-105 "BFUNCT.spad" 116133 116141 116549 116564) (-104 "BEZOUT.spad" 115267 115294 116083 116088) (-103 "BBTREE.spad" 112086 112096 114874 114901) (-102 "BASTYPE.spad" 111758 111766 112076 112081) (-101 "BASTYPE.spad" 111428 111438 111748 111753) (-100 "BALFACT.spad" 110867 110880 111418 111423) (-99 "AUTOMOR.spad" 110314 110323 110847 110862) (-98 "ATTREG.spad" 107033 107040 110066 110309) (-97 "ATTRBUT.spad" 103056 103063 107013 107028) (-96 "ATTRAST.spad" 102773 102780 103046 103051) (-95 "ATRIG.spad" 102243 102250 102763 102768) (-94 "ATRIG.spad" 101711 101720 102233 102238) (-93 "ASTCAT.spad" 101615 101622 101701 101706) (-92 "ASTCAT.spad" 101517 101526 101605 101610) (-91 "ASTACK.spad" 100850 100859 101124 101151) (-90 "ASSOCEQ.spad" 99650 99661 100806 100811) (-89 "ASP9.spad" 98731 98744 99640 99645) (-88 "ASP8.spad" 97774 97787 98721 98726) (-87 "ASP80.spad" 97096 97109 97764 97769) (-86 "ASP7.spad" 96256 96269 97086 97091) (-85 "ASP78.spad" 95707 95720 96246 96251) (-84 "ASP77.spad" 95076 95089 95697 95702) (-83 "ASP74.spad" 94168 94181 95066 95071) (-82 "ASP73.spad" 93439 93452 94158 94163) (-81 "ASP6.spad" 92306 92319 93429 93434) (-80 "ASP55.spad" 90815 90828 92296 92301) (-79 "ASP50.spad" 88632 88645 90805 90810) (-78 "ASP4.spad" 87927 87940 88622 88627) (-77 "ASP49.spad" 86926 86939 87917 87922) (-76 "ASP42.spad" 85333 85372 86916 86921) (-75 "ASP41.spad" 83912 83951 85323 85328) (-74 "ASP35.spad" 82900 82913 83902 83907) (-73 "ASP34.spad" 82201 82214 82890 82895) (-72 "ASP33.spad" 81761 81774 82191 82196) (-71 "ASP31.spad" 80901 80914 81751 81756) (-70 "ASP30.spad" 79793 79806 80891 80896) (-69 "ASP29.spad" 79259 79272 79783 79788) (-68 "ASP28.spad" 70532 70545 79249 79254) (-67 "ASP27.spad" 69429 69442 70522 70527) (-66 "ASP24.spad" 68516 68529 69419 69424) (-65 "ASP20.spad" 67980 67993 68506 68511) (-64 "ASP1.spad" 67361 67374 67970 67975) (-63 "ASP19.spad" 62047 62060 67351 67356) (-62 "ASP12.spad" 61461 61474 62037 62042) (-61 "ASP10.spad" 60732 60745 61451 61456) (-60 "ARRAY2.spad" 60092 60101 60339 60366) (-59 "ARRAY1.spad" 58927 58936 59275 59302) (-58 "ARRAY12.spad" 57596 57607 58917 58922) (-57 "ARR2CAT.spad" 53258 53279 57564 57591) (-56 "ARR2CAT.spad" 48940 48963 53248 53253) (-55 "ARITY.spad" 48508 48515 48930 48935) (-54 "APPRULE.spad" 47752 47774 48498 48503) (-53 "APPLYORE.spad" 47367 47380 47742 47747) (-52 "ANY.spad" 45709 45716 47357 47362) (-51 "ANY1.spad" 44780 44789 45699 45704) (-50 "ANTISYM.spad" 43219 43235 44760 44775) (-49 "ANON.spad" 42916 42923 43209 43214) (-48 "AN.spad" 41217 41224 42732 42825) (-47 "AMR.spad" 39396 39407 41115 41212) (-46 "AMR.spad" 37412 37425 39133 39138) (-45 "ALIST.spad" 34824 34845 35174 35201) (-44 "ALGSC.spad" 33947 33973 34696 34749) (-43 "ALGPKG.spad" 29656 29667 33903 33908) (-42 "ALGMFACT.spad" 28845 28859 29646 29651) (-41 "ALGMANIP.spad" 26265 26280 28642 28647) (-40 "ALGFF.spad" 24580 24607 24797 24953) (-39 "ALGFACT.spad" 23701 23711 24570 24575) (-38 "ALGEBRA.spad" 23534 23543 23657 23696) (-37 "ALGEBRA.spad" 23399 23410 23524 23529) (-36 "ALAGG.spad" 22909 22930 23367 23394) (-35 "AHYP.spad" 22290 22297 22899 22904) (-34 "AGG.spad" 20599 20606 22280 22285) (-33 "AGG.spad" 18872 18881 20555 20560) (-32 "AF.spad" 17297 17312 18807 18812) (-31 "ADDAST.spad" 16975 16982 17287 17292) (-30 "ACPLOT.spad" 15546 15553 16965 16970) (-29 "ACFS.spad" 13297 13306 15448 15541) (-28 "ACFS.spad" 11134 11145 13287 13292) (-27 "ACF.spad" 7736 7743 11036 11129) (-26 "ACF.spad" 4424 4433 7726 7731) (-25 "ABELSG.spad" 3965 3972 4414 4419) (-24 "ABELSG.spad" 3504 3513 3955 3960) (-23 "ABELMON.spad" 3047 3054 3494 3499) (-22 "ABELMON.spad" 2588 2597 3037 3042) (-21 "ABELGRP.spad" 2160 2167 2578 2583) (-20 "ABELGRP.spad" 1730 1739 2150 2155) (-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 f7e35655..a55e54a3 100644
--- a/src/share/algebra/category.daase
+++ b/src/share/algebra/category.daase
@@ -1,15 +1,15 @@
-(162091 . 3443021577)
-(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((#0=(-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) #0#) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))))
-((((-563)) . T) (($) -4032 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)) (|has| |#1| (-555))) (((-407 (-563))) -4032 (|has| |#1| (-363)) (|has| |#1| (-349)) (|has| |#1| (-1034 (-407 (-563))))) ((|#1|) . T))
+(162113 . 3443721773)
+(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((#0=(-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) #0#) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))))
+((((-563)) . T) (($) -4034 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)) (|has| |#1| (-555))) (((-407 (-563))) -4034 (|has| |#1| (-363)) (|has| |#1| (-349)) (|has| |#1| (-1034 (-407 (-563))))) ((|#1|) . T))
(((|#2| |#2|) . T))
((((-563)) . T))
-((($ $) -4032 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) ((|#2| |#2|) . T) ((#0=(-407 (-563)) #0#) |has| |#2| (-38 (-407 (-563)))))
+((($ $) -4034 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) ((|#2| |#2|) . T) ((#0=(-407 (-563)) #0#) |has| |#2| (-38 (-407 (-563)))))
((($) . T))
(((|#1|) . T))
((($) . T) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
(((|#2|) . T))
-((($) -4032 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) ((|#2|) . T) (((-407 (-563))) |has| |#2| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) ((|#2|) . T) (((-407 (-563))) |has| |#2| (-38 (-407 (-563)))))
(|has| |#1| (-905))
((((-858)) . T))
((((-858)) . T))
@@ -24,19 +24,19 @@
((((-225)) . T) (((-858)) . T))
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(((|#1|) . T))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-844)))
-((($ $) . T) ((#0=(-407 (-563)) #0#) -4032 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1| |#1|) . T))
-(-4032 (|has| |#1| (-816)) (|has| |#1| (-846)))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-844)))
+((($ $) . T) ((#0=(-407 (-563)) #0#) -4034 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1| |#1|) . T))
+(-4034 (|has| |#1| (-816)) (|has| |#1| (-846)))
((((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) (((-563)) |has| |#1| (-1034 (-563))) ((|#1|) . T))
((((-858)) . T))
((((-858)) . T))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
(|has| |#1| (-844))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(((|#1| |#2| |#3|) . T))
((((-1174)) . T))
((((-563)) . T) (((-866 |#1|)) . T) (($) . T) (((-407 (-563))) . T))
-((($) . T) (((-407 (-563))) -4032 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
+((($) . T) (((-407 (-563))) -4034 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
((((-858)) . T))
((((-1174)) . T))
(((|#4|) . T))
@@ -46,14 +46,14 @@
(((|#1|) . T) ((|#2|) . T))
((((-1174)) . T))
(((|#1|) . T) (((-563)) |has| |#1| (-1034 (-563))) (((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
-(((|#2| (-482 (-3608 |#1|) (-767))) . T))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(((|#2| (-482 (-3610 |#1|) (-767))) . T))
(((|#1| (-531 (-1169))) . T))
(((#0=(-866 |#1|) #0#) . T) ((#1=(-407 (-563)) #1#) . T) (($ $) . T))
-((((-1151)) . T) (((-858)) . T))
+((((-1151)) . T) (((-954 (-129))) . T) (((-858)) . T))
((((-858)) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(|has| |#4| (-368))
(|has| |#3| (-368))
(((|#1|) . T))
@@ -66,13 +66,13 @@
(|has| |#1| (-145))
(|has| |#1| (-147))
(|has| |#1| (-555))
-((((-563)) . T) (((-407 (-563))) -4032 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563))))) ((|#2|) . T) (($) -4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) (((-860 |#1|)) . T))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
-((((-2 (|:| -2555 |#1|) (|:| -1654 |#2|))) . T))
+((((-563)) . T) (((-407 (-563))) -4034 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563))))) ((|#2|) . T) (($) -4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) (((-860 |#1|)) . T))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
+((((-2 (|:| -2552 |#1|) (|:| -3311 |#2|))) . T))
((($) . T))
-((((-563)) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) ((|#1|) . T) (($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) (((-1169)) . T))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
+((((-563)) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) ((|#1|) . T) (($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) (((-1169)) . T))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
((((-536)) |has| |#1| (-611 (-536))))
((((-1169)) . T))
((((-563)) . T) (($) . T))
@@ -83,66 +83,66 @@
((((-858)) . T))
((((-858)) . T))
((((-407 (-563))) . T) (($) . T))
-((((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (((-1249 |#1| |#2| |#3|)) |has| |#1| (-363)) (($) . T) ((|#1|) . T))
+((((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (((-1249 |#1| |#2| |#3|)) |has| |#1| (-363)) (($) . T) ((|#1|) . T))
((((-858)) . T))
(((|#1|) . T))
((((-858)) . T))
((((-858)) . T))
-(((|#1|) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) . T))
+(((|#1|) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) . T))
(((|#1| |#2|) . T))
((((-858)) . T))
(((|#1|) . T))
-(((#0=(-407 (-563)) #0#) |has| |#2| (-38 (-407 (-563)))) ((|#2| |#2|) . T) (($ $) -4032 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+(((#0=(-407 (-563)) #0#) |has| |#2| (-38 (-407 (-563)))) ((|#2| |#2|) . T) (($ $) -4034 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
(((|#1|) . T))
(((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) (($) . T))
-((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
-((($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+((($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
(((|#1|) . T) (((-407 (-563))) . T) (($) . T))
(((|#1|) . T) (((-407 (-563))) . T) (($) . T))
(((|#1|) . T) (((-407 (-563))) . T) (($) . T))
((((-407 (-563))) . T) (($) . T) (((-563)) . T))
-(((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))) ((|#1| |#1|) . T) (($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
+(((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))) ((|#1| |#1|) . T) (($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
(((|#2|) . T))
-((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) . T) (($) -4032 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) . T) (($) -4034 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
((($ $) . T))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
-((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) . T) (($) -4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) . T) (($) -4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
((($) . T))
(((|#1|) . T))
(((|#1|) . T))
(|has| |#1| (-368))
(((|#1|) . T))
(((|#1|) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
((((-858)) . T))
(((|#1| |#2|) . T))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)))
(((|#1| |#1|) . T))
((((-858)) . T))
(|has| |#1| (-555))
(((|#2| |#2|) -12 (|has| |#1| (-363)) (|has| |#2| (-309 |#2|))) (((-1169) |#2|) -12 (|has| |#1| (-363)) (|has| |#2| (-514 (-1169) |#2|))))
((((-407 |#2|)) . T) (((-407 (-563))) . T) (($) . T))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-844)))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-844)))
((($ $) . T) ((#0=(-407 (-563)) #0#) . T))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
(|has| |#1| (-1093))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
(|has| |#1| (-1093))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
(|has| |#1| (-844))
((($) . T) (((-407 (-563))) . T))
(((|#1|) . T))
((((-563) (-129)) . T))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-349)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-349)))
((((-129)) . T))
((((-1174)) . T))
-(-4032 (|has| |#4| (-789)) (|has| |#4| (-844)))
-(-4032 (|has| |#4| (-789)) (|has| |#4| (-844)))
-(-4032 (|has| |#3| (-789)) (|has| |#3| (-844)))
-(-4032 (|has| |#3| (-789)) (|has| |#3| (-844)))
+(-4034 (|has| |#4| (-789)) (|has| |#4| (-844)))
+(-4034 (|has| |#4| (-789)) (|has| |#4| (-844)))
+(-4034 (|has| |#3| (-789)) (|has| |#3| (-844)))
+(-4034 (|has| |#3| (-789)) (|has| |#3| (-844)))
(((|#1| |#2|) . T))
(((|#1| |#2|) . T))
(|has| |#1| (-1093))
@@ -156,33 +156,33 @@
((((-563)) . T))
((((-563)) . T))
(((|#1|) . T))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-722)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-722)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
(((|#1| (-767)) . T))
(|has| |#2| (-789))
-(-4032 (|has| |#2| (-789)) (|has| |#2| (-844)))
+(-4034 (|has| |#2| (-789)) (|has| |#2| (-844)))
(|has| |#2| (-844))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1| |#2|) . T))
((((-1151) |#1|) . T))
((((-563) (-129)) . T))
(((|#1|) . T))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
(((|#3| (-767)) . T))
(|has| |#1| (-147))
(|has| |#1| (-145))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
(|has| |#1| (-1093))
((((-407 (-563))) . T) (((-563)) . T))
((((-563)) . T) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))))
-((((-563)) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) ((|#1|) . T) (($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#2|) . T))
+((((-563)) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) ((|#1|) . T) (($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#2|) . T))
((((-1169) |#2|) |has| |#2| (-514 (-1169) |#2|)) ((|#2| |#2|) |has| |#2| (-309 |#2|)))
((((-407 (-563))) . T) (((-563)) . T))
-((((-563)) . T) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) (((-1075)) . T) ((|#1|) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))
+((((-563)) . T) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) (((-1075)) . T) ((|#1|) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))
(((|#1|) . T) (($) . T))
((((-563)) . T))
((((-563)) . T))
-((($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) |has| |#1| (-172)))
+((($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) |has| |#1| (-172)))
((((-563)) . T))
((((-563)) . T))
(((#0=(-694) (-1165 #0#)) . T))
@@ -201,13 +201,13 @@
((((-858)) . T))
((((-858)) . T))
(((|#1| |#1|) . T))
-(((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))) ((|#1| |#1|) . T) (($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
-((($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
+(((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))) ((|#1| |#1|) . T) (($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
+((($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
(((|#1|) . T))
(((|#1|) . T))
-((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) . T) (($) -4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
-((($) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
-((($) -4032 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045))) ((|#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))))
+((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) . T) (($) -4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
+((($) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045))) ((|#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))))
((((-858)) . T))
((((-858)) . T))
((((-858)) . T))
@@ -218,17 +218,17 @@
((((-169 (-225))) |has| |#1| (-1018)) (((-169 (-379))) |has| |#1| (-1018)) (((-536)) |has| |#1| (-611 (-536))) (((-1165 |#1|)) . T) (((-888 (-563))) |has| |#1| (-611 (-888 (-563)))) (((-888 (-379))) |has| |#1| (-611 (-888 (-379)))))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(((|#1|) . T))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-844)))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-844)))
-((((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))) ((|#2|) |has| |#1| (-363)) ((|#1|) |has| |#1| (-172)))
-(((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-844)))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-844)))
+((((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))) ((|#2|) |has| |#1| (-363)) ((|#1|) |has| |#1| (-172)))
+(((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))))
(|has| |#1| (-363))
((((-858)) . T))
((((-129)) . T))
(-12 (|has| |#4| (-233)) (|has| |#4| (-1045)))
(-12 (|has| |#3| (-233)) (|has| |#3| (-1045)))
-(-4032 (|has| |#4| (-172)) (|has| |#4| (-844)) (|has| |#4| (-1045)))
-(-4032 (|has| |#3| (-172)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
+(-4034 (|has| |#4| (-172)) (|has| |#4| (-844)) (|has| |#4| (-1045)))
+(-4034 (|has| |#3| (-172)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
((((-858)) . T) (((-1174)) . T))
((((-858)) . T) (((-1174)) . T))
((((-1174)) . T))
@@ -237,14 +237,14 @@
(((|#1|) . T))
((((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) (((-563)) |has| |#1| (-1034 (-563))) ((|#1|) . T))
(((|#1|) . T) (((-563)) |has| |#1| (-636 (-563))))
-(((|#2|) . T) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
-(((|#1|) . T) (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) . T))
+(((|#2|) . T) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
+(((|#1|) . T) (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) . T))
(|has| |#1| (-555))
-((((-563)) -4032 (|has| |#4| (-172)) (|has| |#4| (-844)) (-12 (|has| |#4| (-1034 (-563))) (|has| |#4| (-1093))) (|has| |#4| (-1045))) ((|#4|) -4032 (|has| |#4| (-172)) (|has| |#4| (-1093))) (((-407 (-563))) -12 (|has| |#4| (-1034 (-407 (-563)))) (|has| |#4| (-1093))))
-((((-563)) -4032 (|has| |#3| (-172)) (|has| |#3| (-844)) (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093))) (|has| |#3| (-1045))) ((|#3|) -4032 (|has| |#3| (-172)) (|has| |#3| (-1093))) (((-407 (-563))) -12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093))))
+((((-563)) -4034 (|has| |#4| (-172)) (|has| |#4| (-844)) (-12 (|has| |#4| (-1034 (-563))) (|has| |#4| (-1093))) (|has| |#4| (-1045))) ((|#4|) -4034 (|has| |#4| (-172)) (|has| |#4| (-1093))) (((-407 (-563))) -12 (|has| |#4| (-1034 (-407 (-563)))) (|has| |#4| (-1093))))
+((((-563)) -4034 (|has| |#3| (-172)) (|has| |#3| (-844)) (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093))) (|has| |#3| (-1045))) ((|#3|) -4034 (|has| |#3| (-172)) (|has| |#3| (-1093))) (((-407 (-563))) -12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093))))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(|has| |#1| (-555))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
(((|#1|) . T))
(|has| |#1| (-555))
(|has| |#1| (-555))
@@ -255,21 +255,21 @@
(((|#2|) . T) (($) . T) (((-407 (-563))) . T))
(-12 (|has| |#1| (-1093)) (|has| |#2| (-1093)))
((($) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) . T))
-((((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (((-1167 |#1| |#2| |#3|)) |has| |#1| (-363)) (($) . T) ((|#1|) . T))
-(((|#1|) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) . T))
+((((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (((-1167 |#1| |#2| |#3|)) |has| |#1| (-363)) (($) . T) ((|#1|) . T))
+(((|#1|) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) . T))
(((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) (($) . T))
-(((|#4| |#4|) -4032 (|has| |#4| (-172)) (|has| |#4| (-363)) (|has| |#4| (-1045))) (($ $) |has| |#4| (-172)))
-(((|#3| |#3|) -4032 (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-1045))) (($ $) |has| |#3| (-172)))
+(((|#4| |#4|) -4034 (|has| |#4| (-172)) (|has| |#4| (-363)) (|has| |#4| (-1045))) (($ $) |has| |#4| (-172)))
+(((|#3| |#3|) -4034 (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-1045))) (($ $) |has| |#3| (-172)))
(((|#1|) . T))
(((|#2|) . T))
((((-536)) |has| |#2| (-611 (-536))) (((-888 (-379))) |has| |#2| (-611 (-888 (-379)))) (((-888 (-563))) |has| |#2| (-611 (-888 (-563)))))
((((-858)) . T))
(((|#1| |#2| |#3| |#4|) . T))
-((((-2 (|:| -2555 |#1|) (|:| -1654 |#2|))) . T) (((-858)) . T))
+((((-2 (|:| -2552 |#1|) (|:| -3311 |#2|))) . T) (((-858)) . T))
((((-536)) |has| |#1| (-611 (-536))) (((-888 (-379))) |has| |#1| (-611 (-888 (-379)))) (((-888 (-563))) |has| |#1| (-611 (-888 (-563)))))
-(((|#4|) -4032 (|has| |#4| (-172)) (|has| |#4| (-363)) (|has| |#4| (-1045))) (($) |has| |#4| (-172)))
-(((|#3|) -4032 (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-1045))) (($) |has| |#3| (-172)))
-((((-2 (|:| -2555 |#1|) (|:| -1654 |#2|))) . T))
+(((|#4|) -4034 (|has| |#4| (-172)) (|has| |#4| (-363)) (|has| |#4| (-1045))) (($) |has| |#4| (-172)))
+(((|#3|) -4034 (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-1045))) (($) |has| |#3| (-172)))
+((((-2 (|:| -2552 |#1|) (|:| -3311 |#2|))) . T))
((((-858)) . T))
((((-858)) . T))
((((-536)) . T) (((-563)) . T) (((-888 (-563))) . T) (((-379)) . T) (((-225)) . T))
@@ -277,14 +277,14 @@
(((|#1|) . T) (((-563)) |has| |#1| (-1034 (-563))) (((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))))
((($) . T) (((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) . T))
((((-407 $) (-407 $)) |has| |#2| (-555)) (($ $) . T) ((|#2| |#2|) . T))
-((((-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) . T))
+((((-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) . T))
(((|#1|) . T))
(|has| |#2| (-905))
((((-1151) (-52)) . T))
((((-563)) |has| #0=(-407 |#2|) (-636 (-563))) ((#0#) . T))
((((-536)) . T) (((-225)) . T) (((-379)) . T) (((-888 (-379))) . T))
((((-858)) . T))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)))
(((|#1|) |has| |#1| (-172)))
(((|#1| $) |has| |#1| (-286 |#1| |#1|)))
((((-858)) . T))
@@ -296,15 +296,15 @@
(((|#2|) . T) (((-563)) . T) (((-815 |#1|)) . T))
(|has| |#1| (-1093))
(((|#1|) . T))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
((((-536)) |has| |#1| (-611 (-536))))
((((-858)) . T) (((-1174)) . T))
-((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
((((-1174)) . T))
-((($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
-((($) -4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
(|has| |#1| (-233))
-((($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
(((|#1| (-531 (-814 (-1169)))) . T))
(((|#1| (-967)) . T))
(((#0=(-866 |#1|) $) |has| #0# (-286 #0# #0#)))
@@ -313,7 +313,7 @@
(((|#1|) . T))
(((|#2| |#2|) . T))
(|has| |#1| (-1144))
-((((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) . T))
+((((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) . T))
(|has| (-1243 |#1| |#2| |#3| |#4|) (-145))
(|has| (-1243 |#1| |#2| |#3| |#4|) (-147))
(|has| |#1| (-145))
@@ -325,27 +325,27 @@
(((|#2|) . T))
(((|#1|) . T))
(((|#2|) . T) (((-563)) |has| |#2| (-636 (-563))))
-((((-1118 |#1| (-1169))) . T) (((-563)) . T) (((-814 (-1169))) . T) (($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) (((-1169)) . T))
+((((-1118 |#1| (-1169))) . T) (((-563)) . T) (((-814 (-1169))) . T) (($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) (((-1169)) . T))
(|has| |#2| (-368))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
((($) . T) ((|#1|) . T))
(((|#2|) |has| |#2| (-1045)))
((((-858)) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((#0=(-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) #0#) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((#0=(-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) #0#) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))))
(((|#1|) . T))
-((((-1257 (-339 (-1707) (-1707 (QUOTE X)) (-694)))) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((#0=(-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) #0#) |has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))))
+((((-1257 (-339 (-1706) (-1706 (QUOTE X)) (-694)))) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((#0=(-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) #0#) |has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))))
((((-858)) . T))
((((-563) |#1|) . T))
((((-536)) -12 (|has| |#1| (-611 (-536))) (|has| |#2| (-611 (-536)))) (((-888 (-379))) -12 (|has| |#1| (-611 (-888 (-379)))) (|has| |#2| (-611 (-888 (-379))))) (((-888 (-563))) -12 (|has| |#1| (-611 (-888 (-563)))) (|has| |#2| (-611 (-888 (-563))))))
((($) . T))
((((-858)) . T))
-((($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
+((($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
((((-858)) . T))
((($) . T))
((($) . T))
((($) . T))
-((($) -4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
((((-858)) . T))
((((-858)) . T))
(|has| (-1242 |#2| |#3| |#4|) (-147))
@@ -356,16 +356,16 @@
((((-858)) . T))
(((|#1|) . T))
(((|#1|) . T))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)))
(((|#1|) . T))
((((-563) |#1|) . T))
(((|#2|) |has| |#2| (-172)))
(((|#1|) |has| |#1| (-172)))
(((|#1|) . T))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-844)))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-844)))
((((-858)) |has| |#1| (-1093)))
-(-4032 (|has| |#1| (-473)) (|has| |#1| (-722)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)) (|has| |#1| (-1105)))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-349)))
+(-4034 (|has| |#1| (-473)) (|has| |#1| (-722)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)) (|has| |#1| (-1105)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-349)))
((((-906 |#1|)) . T))
((((-407 |#2|) |#3|) . T))
(|has| |#1| (-15 * (|#1| (-563) |#1|)))
@@ -377,7 +377,7 @@
(((|#1|) . T))
((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) |has| |#1| (-172)) (($) |has| |#1| (-555)))
(|has| |#1| (-363))
-(-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))
+(-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))
(|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))
(|has| |#1| (-363))
((((-563)) . T))
@@ -390,35 +390,35 @@
((((-563) |#1|) . T))
((((-858)) . T))
(((|#2|) . T))
-(-4032 (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
+(-4034 (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
((((-563)) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) |has| |#1| (-172)) (($) |has| |#1| (-555)))
((($) |has| |#1| (-555)) (((-563)) . T))
-(-4032 (|has| |#2| (-789)) (|has| |#2| (-844)))
-(-4032 (|has| |#2| (-789)) (|has| |#2| (-844)))
-((((-1249 |#1| |#2| |#3|)) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-563)) . T) ((|#1|) |has| |#1| (-172)))
-((((-1253 |#2|)) . T) (((-1249 |#1| |#2| |#3|)) . T) (((-1221 |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (((-563)) . T) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))))
+(-4034 (|has| |#2| (-789)) (|has| |#2| (-844)))
+(-4034 (|has| |#2| (-789)) (|has| |#2| (-844)))
+((((-1249 |#1| |#2| |#3|)) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-563)) . T) ((|#1|) |has| |#1| (-172)))
+((((-1253 |#2|)) . T) (((-1249 |#1| |#2| |#3|)) . T) (((-1221 |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (((-563)) . T) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))))
((($) |has| |#1| (-555)) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) (((-563)) . T))
(((|#1|) . T))
((((-1169)) -12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045))))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(-12 (|has| |#1| (-363)) (|has| |#2| (-816)))
-(-4032 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)) (|has| |#1| (-555)))
-(((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))) ((|#1| |#1|) . T) (($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-555))))
+(-4034 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)) (|has| |#1| (-555)))
+(((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))) ((|#1| |#1|) . T) (($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-555))))
((($ $) |has| |#1| (-555)))
(((#0=(-694) (-1165 #0#)) . T))
((((-858)) . T) (((-1257 |#4|)) . T))
((((-858)) . T) (((-1257 |#3|)) . T))
-((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) . T) (($) -4032 (|has| |#1| (-172)) (|has| |#1| (-555))))
+((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) . T) (($) -4034 (|has| |#1| (-172)) (|has| |#1| (-555))))
((($) |has| |#1| (-555)))
((((-858)) . T))
((($) . T))
-((($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((#0=(-407 (-563)) #0#) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((#1=(-1249 |#1| |#2| |#3|) #1#) |has| |#1| (-363)) ((|#1| |#1|) . T))
-(((|#1| |#1|) . T) (($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((#0=(-407 (-563)) #0#) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))))
-((($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
-((($) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (((-1249 |#1| |#2| |#3|)) |has| |#1| (-363)) ((|#1|) . T))
-(((|#1|) . T) (($) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))))
+((($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((#0=(-407 (-563)) #0#) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((#1=(-1249 |#1| |#2| |#3|) #1#) |has| |#1| (-363)) ((|#1| |#1|) . T))
+(((|#1| |#1|) . T) (($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((#0=(-407 (-563)) #0#) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))))
+((($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (((-1249 |#1| |#2| |#3|)) |has| |#1| (-363)) ((|#1|) . T))
+(((|#1|) . T) (($) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))))
(((|#3|) |has| |#3| (-1045)))
-((($) -4032 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
(|has| |#1| (-1093))
(((|#2| (-815 |#1|)) . T))
(((|#1|) . T))
@@ -431,39 +431,39 @@
((((-144)) . T))
(((|#3|) |has| |#3| (-1093)) (((-563)) -12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093))) (((-407 (-563))) -12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093))))
((((-858)) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(((|#1|) . T))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
((((-536)) |has| |#1| (-611 (-536))))
-((((-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) . T))
+((((-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) . T))
(|has| |#1| (-363))
((((-1174)) . T))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-844)))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-844)))
((((-1169) |#1|) |has| |#1| (-514 (-1169) |#1|)) ((|#1| |#1|) |has| |#1| (-309 |#1|)))
(|has| |#2| (-816))
(|has| |#1| (-38 (-407 (-563))))
(|has| |#1| (-844))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
((((-858)) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
((((-536)) |has| |#1| (-611 (-536))))
(((|#1| |#2|) . T))
((((-1169)) -12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169)))))
((((-1151) |#1|) . T))
(((|#1| |#2| |#3| (-531 |#3|)) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(|has| |#1| (-368))
(|has| |#1| (-368))
(|has| |#1| (-368))
((((-858)) . T))
(((|#1|) . T))
-(-4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
+(-4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
(|has| |#1| (-368))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
((((-563)) . T))
((((-563)) . T))
(((|#1|) . T) (((-563)) . T))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
((((-858)) . T))
((((-858)) . T))
(((|#1|) . T) (((-407 (-563))) . T) (((-563)) . T) (($) . T))
@@ -474,10 +474,10 @@
((((-563) |#4|) . T))
((((-563) |#3|) . T))
(((|#1|) . T) (((-563)) |has| |#1| (-636 (-563))))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
((((-1243 |#1| |#2| |#3| |#4|)) . T))
((((-407 (-563))) . T) (((-563)) . T))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
(((|#1| |#1|) . T))
(((|#1|) . T))
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
@@ -488,7 +488,7 @@
((((-563)) . T))
((($) . T) (((-563)) . T) (((-407 (-563))) . T))
(((|#1| |#1|) . T) (($ $) . T) ((#0=(-407 (-563)) #0#) . T))
-((((-563)) -4032 (|has| |#2| (-172)) (|has| |#2| (-844)) (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-1045))) ((|#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-1093))) (((-407 (-563))) -12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093))))
+((((-563)) -4034 (|has| |#2| (-172)) (|has| |#2| (-844)) (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-1045))) ((|#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-1093))) (((-407 (-563))) -12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093))))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -507,45 +507,45 @@
((($) . T))
((($ $) . T) ((#0=(-1169) $) . T) ((#0# |#1|) . T))
(((|#2|) |has| |#2| (-172)))
-((($) -4032 (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) ((|#2|) |has| |#2| (-172)) (((-407 (-563))) |has| |#2| (-38 (-407 (-563)))))
-(((|#2| |#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))) (($ $) |has| |#2| (-172)))
+((($) -4034 (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) ((|#2|) |has| |#2| (-172)) (((-407 (-563))) |has| |#2| (-38 (-407 (-563)))))
+(((|#2| |#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))) (($ $) |has| |#2| (-172)))
((((-144)) . T))
(((|#1|) . T))
(-12 (|has| |#1| (-368)) (|has| |#2| (-368)))
((((-858)) . T))
-(((|#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))) (($) |has| |#2| (-172)))
+(((|#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))) (($) |has| |#2| (-172)))
(((|#1|) . T))
((((-858)) . T))
(|has| |#1| (-1093))
(|has| $ (-147))
((((-1174)) . T))
((((-563) |#1|) . T))
-((($) -4032 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)) (|has| |#1| (-555))) (((-407 (-563))) -4032 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
+((($) -4034 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)) (|has| |#1| (-555))) (((-407 (-563))) -4034 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
((((-1169)) -12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169)))))
(|has| |#1| (-363))
-(-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))
+(-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))
(|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))
(|has| |#1| (-363))
(|has| |#1| (-15 * (|#1| (-767) |#1|)))
(((|#1|) . T))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
((((-858)) . T))
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
(((|#2| (-531 (-860 |#1|))) . T))
((((-858)) . T))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(((|#1|) . T))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
((((-580 |#1|)) . T))
((($) . T))
((((-563)) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) |has| |#1| (-172)) (($) |has| |#1| (-555)))
(((|#1|) . T) (($) . T))
((((-563)) |has| |#1| (-636 (-563))) ((|#1|) . T))
-((((-1167 |#1| |#2| |#3|)) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-563)) . T) ((|#1|) |has| |#1| (-172)))
-((((-1253 |#2|)) . T) (((-1167 |#1| |#2| |#3|)) . T) (((-1160 |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (((-563)) . T) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))))
+((((-1167 |#1| |#2| |#3|)) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-563)) . T) ((|#1|) |has| |#1| (-172)))
+((((-1253 |#2|)) . T) (((-1167 |#1| |#2| |#3|)) . T) (((-1160 |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (((-563)) . T) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))))
(((|#4|) . T))
(((|#3|) . T))
((((-866 |#1|)) . T) (($) . T) (((-407 (-563))) . T))
@@ -554,35 +554,35 @@
(((|#1|) . T))
((((-858)) . T))
((((-858)) . T))
-((((-563)) . T) (((-407 (-563))) -4032 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563))))) ((|#2|) . T) (($) -4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) (((-860 |#1|)) . T))
+((((-563)) . T) (((-407 (-563))) -4034 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563))))) ((|#2|) . T) (($) -4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) (((-860 |#1|)) . T))
((((-563) |#2|) . T))
((((-858)) . T))
((((-858)) . T))
((((-858)) . T))
(((|#1| |#2| |#3| |#4| |#5|) . T))
-(((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))) ((|#1| |#1|) . T) (($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-555))))
-((($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((#0=(-407 (-563)) #0#) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((#1=(-1167 |#1| |#2| |#3|) #1#) |has| |#1| (-363)) ((|#1| |#1|) . T))
-(((|#1| |#1|) . T) (($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((#0=(-407 (-563)) #0#) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))))
-((($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
+(((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))) ((|#1| |#1|) . T) (($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-555))))
+((($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((#0=(-407 (-563)) #0#) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((#1=(-1167 |#1| |#2| |#3|) #1#) |has| |#1| (-363)) ((|#1| |#1|) . T))
+(((|#1| |#1|) . T) (($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((#0=(-407 (-563)) #0#) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))))
+((($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
((((-858)) . T))
(((|#2|) |has| |#2| (-1045)))
(|has| |#1| (-1093))
-((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) . T) (($) -4032 (|has| |#1| (-172)) (|has| |#1| (-555))))
-((($) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (((-1167 |#1| |#2| |#3|)) |has| |#1| (-363)) ((|#1|) . T))
-(((|#1|) . T) (($) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))))
-((($) -4032 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) . T) (($) -4034 (|has| |#1| (-172)) (|has| |#1| (-555))))
+((($) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (((-1167 |#1| |#2| |#3|)) |has| |#1| (-363)) ((|#1|) . T))
+(((|#1|) . T) (($) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))))
+((($) -4034 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
(((|#1|) |has| |#1| (-172)) (($) . T))
(((|#1|) . T))
-(((#0=(-407 (-563)) #0#) |has| |#2| (-38 (-407 (-563)))) ((|#2| |#2|) . T) (($ $) -4032 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+(((#0=(-407 (-563)) #0#) |has| |#2| (-38 (-407 (-563)))) ((|#2| |#2|) . T) (($ $) -4034 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
((((-858)) . T))
-((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
((($ $) . T) ((|#2| $) . T) ((|#2| |#1|) . T))
-((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) |has| |#1| (-172)) (($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
+((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) |has| |#1| (-172)) (($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
(((#0=(-1075) |#1|) . T) ((#0# $) . T) (($ $) . T))
-((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) . T) (($) -4032 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) . T) (($) -4034 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
((($) . T))
(((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) (($) . T))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
(((|#1|) . T))
(((|#2|) |has| |#2| (-1093)) (((-563)) -12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (((-407 (-563))) -12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093))))
(((|#2|) |has| |#1| (-363)))
@@ -605,8 +605,8 @@
(|has| |#1| (-145))
(|has| |#1| (-147))
((((-1174)) . T))
-((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
-((($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+((($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
((((-407 (-563))) . T) (($) . T))
((((-407 (-563))) . T) (($) . T))
((((-407 (-563))) . T) (($) . T))
@@ -617,13 +617,13 @@
(((|#1| (-767) (-1075)) . T))
((((-407 (-563))) |has| |#2| (-363)) (($) . T))
(((|#1| (-531 (-1081 (-1169))) (-1081 (-1169))) . T))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
(((|#1|) . T))
-((((-995 |#1|)) . T) (((-563)) . T) ((|#1|) . T) (((-407 (-563))) -4032 (|has| (-995 |#1|) (-1034 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-722)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+((((-995 |#1|)) . T) (((-563)) . T) ((|#1|) . T) (((-407 (-563))) -4034 (|has| (-995 |#1|) (-1034 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-722)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
(|has| |#2| (-789))
-(-4032 (|has| |#2| (-789)) (|has| |#2| (-844)))
+(-4034 (|has| |#2| (-789)) (|has| |#2| (-844)))
(|has| |#1| (-368))
(|has| |#1| (-368))
(|has| |#1| (-368))
@@ -655,34 +655,34 @@
(((|#4| |#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))
(((|#2|) . T) (((-563)) |has| |#2| (-1034 (-563))) (((-407 (-563))) |has| |#2| (-1034 (-407 (-563)))))
(((|#3| |#3|) -12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093))))
-(((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))))
(((|#1|) . T))
(((|#1| |#2|) . T))
((($) . T))
((($) . T))
(((|#2|) . T))
(((|#3|) . T))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
-(((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))))
(((|#2|) . T))
-((((-858)) -4032 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-610 (-858))) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093))) (((-1257 |#2|)) . T))
+((((-858)) -4034 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-610 (-858))) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093))) (((-1257 |#2|)) . T))
((((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((|#1|) . T) (((-563)) . T) (($) . T))
(((|#1|) |has| |#1| (-172)))
((((-563)) . T))
-((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) |has| |#1| (-172)) (($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
-((($) -4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) |has| |#1| (-172)) (($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
+((($) -4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
((((-563) (-144)) . T))
-((($) -4032 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045))) ((|#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))))
+((($) -4034 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045))) ((|#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))))
((((-563)) . T))
(((|#1|) . T) ((|#2|) . T) (((-563)) . T))
-((($) |has| |#1| (-555)) ((|#1|) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) (((-563)) . T))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1045)))
+((($) |has| |#1| (-555)) ((|#1|) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) (((-563)) . T))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1045)))
(((|#1|) . T))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1045)))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1045)))
(((|#2|) |has| |#1| (-363)))
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(((|#1| |#1|) . T) (($ $) . T))
-((($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) |has| |#1| (-172)))
+((($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) |has| |#1| (-172)))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
((((-1174)) . T))
(((|#1| (-531 #0=(-1169)) #0#) . T))
@@ -690,34 +690,34 @@
(|has| |#4| (-172))
(|has| |#3| (-172))
(((#0=(-407 (-948 |#1|)) #0#) . T))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
(|has| |#1| (-1093))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
(|has| |#1| (-1093))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
((((-536)) |has| |#1| (-611 (-536))))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
((((-858)) . T) (((-1174)) . T))
((((-1174)) . T))
(((|#1| |#1|) |has| |#1| (-172)))
-((($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
+((($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(((|#1|) . T))
((((-407 (-948 |#1|))) . T))
(((|#1|) |has| |#1| (-172)))
-((($) -4032 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+((($) -4034 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
((((-858)) . T))
((((-1243 |#1| |#2| |#3| |#4|)) . T))
(((|#1|) |has| |#1| (-1045)) (((-563)) -12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))))
(((|#1| |#2|) . T))
-(-4032 (|has| |#3| (-172)) (|has| |#3| (-722)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
+(-4034 (|has| |#3| (-172)) (|has| |#3| (-722)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
(|has| |#3| (-789))
-(-4032 (|has| |#3| (-789)) (|has| |#3| (-844)))
+(-4034 (|has| |#3| (-789)) (|has| |#3| (-844)))
(|has| |#3| (-844))
(((|#1|) . T))
-((((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))) ((|#2|) |has| |#1| (-363)) ((|#1|) |has| |#1| (-172)))
-(((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))))
+((((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))) ((|#2|) |has| |#1| (-363)) ((|#1|) |has| |#1| (-172)))
+(((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))))
(((|#2|) . T))
((((-858)) . T))
((((-858)) . T))
@@ -732,22 +732,22 @@
(|has| |#1| (-1093))
(((|#2|) . T))
((((-536)) |has| |#2| (-611 (-536))) (((-888 (-379))) |has| |#2| (-611 (-888 (-379)))) (((-888 (-563))) |has| |#2| (-611 (-888 (-563)))))
-(((|#4|) -4032 (|has| |#4| (-172)) (|has| |#4| (-363))))
-(((|#3|) -4032 (|has| |#3| (-172)) (|has| |#3| (-363))))
+(((|#4|) -4034 (|has| |#4| (-172)) (|has| |#4| (-363))))
+(((|#3|) -4034 (|has| |#3| (-172)) (|has| |#3| (-363))))
((((-858)) . T))
(((|#1|) . T))
-(-4032 (|has| |#2| (-452)) (|has| |#2| (-905)))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-905)))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-905)))
+(-4034 (|has| |#2| (-452)) (|has| |#2| (-905)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-905)))
((($ $) . T) ((#0=(-1169) $) |has| |#1| (-233)) ((#0# |#1|) |has| |#1| (-233)) ((#1=(-814 (-1169)) |#1|) . T) ((#1# $) . T))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-905)))
((((-563) |#2|) . T))
((((-858)) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
-((($) -4032 (|has| |#3| (-172)) (|has| |#3| (-844)) (|has| |#3| (-1045))) ((|#3|) -4032 (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-1045))))
+((($) -4034 (|has| |#3| (-172)) (|has| |#3| (-844)) (|has| |#3| (-1045))) ((|#3|) -4034 (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-1045))))
((((-563) |#1|) . T))
(|has| (-407 |#2|) (-147))
(|has| (-407 |#2|) (-145))
@@ -760,15 +760,15 @@
(|has| |#1| (-555))
(|has| |#1| (-38 (-407 (-563))))
(|has| |#1| (-38 (-407 (-563))))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
((((-858)) . T))
-((((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) . T))
+((((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) . T))
(|has| |#1| (-38 (-407 (-563))))
-((((-388) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) . T))
+((((-388) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) . T))
(|has| |#1| (-38 (-407 (-563))))
(|has| |#2| (-1144))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
((((-858)) . T) (((-1174)) . T))
((((-858)) . T) (((-1174)) . T))
((((-858)) . T) (((-1174)) . T))
@@ -786,7 +786,7 @@
((((-388) (-1151)) . T))
(|has| |#1| (-555))
((((-563) |#1|) . T))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
((((-563)) . T) (($) . T) (((-407 (-563))) . T))
((((-563)) . T) (($) . T) (((-407 (-563))) . T))
(((|#2|) . T))
@@ -802,7 +802,7 @@
((((-640 |#1|)) . T))
((((-858)) . T))
((((-536)) |has| |#1| (-611 (-536))))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
(((|#2|) |has| |#2| (-309 |#2|)))
(((#0=(-563) #0#) . T) ((#1=(-407 (-563)) #1#) . T) (($ $) . T))
(((|#1|) . T))
@@ -812,7 +812,7 @@
(((#0=(-563) #0#) . T) ((#1=(-407 (-563)) #1#) . T) (($ $) . T))
((($) . T) (((-563)) . T) (((-407 (-563))) . T))
(|has| |#2| (-368))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
(((|#1|) . T) (((-407 (-563))) . T) (($) . T))
(((|#1|) . T) (((-407 (-563))) . T) (($) . T))
(((|#1|) . T) (((-407 (-563))) . T) (($) . T))
@@ -826,8 +826,8 @@
((((-858)) . T))
((((-858)) . T))
((((-536)) |has| |#1| (-611 (-536))))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
-((($) . T) (((-407 (-563))) -4032 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((($) . T) (((-407 (-563))) -4034 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
((($ $) . T))
((((-858)) . T))
((($ $) . T))
@@ -837,12 +837,12 @@
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-((($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
((((-407 (-563))) . T) (((-563)) . T))
((((-563) (-144)) . T))
((((-144)) . T))
(((|#1|) . T))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1045)))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1045)))
((((-112)) . T))
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
((((-112)) . T))
@@ -851,26 +851,26 @@
((((-858)) . T))
((((-1174)) . T))
(|has| |#1| (-816))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
(|has| |#1| (-846))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-555)))
(|has| |#1| (-555))
((((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((|#1|) . T) (((-563)) . T))
(|has| |#1| (-905))
(((|#1|) . T))
(|has| |#1| (-1093))
((((-858)) . T))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-555)))
((((-858)) . T))
((((-858)) . T))
((((-858)) . T))
(((|#1| (-1257 |#1|) (-1257 |#1|)) . T))
((((-563) (-144)) . T))
((($) . T))
-(-4032 (|has| |#4| (-172)) (|has| |#4| (-844)) (|has| |#4| (-1045)))
-(-4032 (|has| |#3| (-172)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
+(-4034 (|has| |#4| (-172)) (|has| |#4| (-844)) (|has| |#4| (-1045)))
+(-4034 (|has| |#3| (-172)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
((((-1174)) . T) (((-858)) . T))
((((-1174)) . T))
((((-858)) . T))
@@ -878,14 +878,14 @@
(((|#1| (-967)) . T))
(((|#1| |#1|) . T))
((($) . T))
-(-4032 (|has| |#2| (-789)) (|has| |#2| (-844)))
-(-4032 (|has| |#2| (-789)) (|has| |#2| (-844)))
+(-4034 (|has| |#2| (-789)) (|has| |#2| (-844)))
+(-4034 (|has| |#2| (-789)) (|has| |#2| (-844)))
(-12 (|has| |#1| (-473)) (|has| |#2| (-473)))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-722)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
-(-4032 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722))))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-722)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722))))
(((|#1|) . T))
(|has| |#2| (-789))
-(-4032 (|has| |#2| (-789)) (|has| |#2| (-844)))
+(-4034 (|has| |#2| (-789)) (|has| |#2| (-844)))
(((|#1| |#2|) . T))
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(|has| |#2| (-844))
@@ -901,8 +901,8 @@
(((|#1|) . T))
(((|#1|) . T))
((((-407 (-563))) . T) (($) . T))
-((($) |has| |#1| (-555)) ((|#1|) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) (((-563)) . T))
-((($) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) . T))
+((($) |has| |#1| (-555)) ((|#1|) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) (((-563)) . T))
+((($) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) . T))
(|has| |#1| (-824))
((((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) (((-563)) |has| |#1| (-1034 (-563))) ((|#1|) . T))
(|has| |#1| (-1093))
@@ -913,30 +913,30 @@
(((|#3|) |has| |#3| (-1093)))
(|has| |#3| (-368))
(((|#1|) . T) (((-858)) . T))
-((((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-1249 |#1| |#2| |#3|)) |has| |#1| (-363)) ((|#1|) |has| |#1| (-172)))
+((((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-1249 |#1| |#2| |#3|)) |has| |#1| (-363)) ((|#1|) |has| |#1| (-172)))
(((|#1|) . T))
((((-858)) . T))
((((-858)) . T))
(((|#1| |#2|) . T))
(((|#2|) . T))
-(((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))))
+(((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))))
((($) |has| |#1| (-555)) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
(((|#1| |#1|) |has| |#1| (-172)))
(|has| |#2| (-363))
(((|#1|) . T))
(((|#1|) |has| |#1| (-172)))
((((-407 (-563))) . T) (((-563)) . T))
-((($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
-((($) -4032 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-172)) (|has| |#1| (-555))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))
((((-144)) . T))
(((|#1|) . T))
-((($) -4032 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045))) ((|#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))))
+((($) -4034 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045))) ((|#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))))
((((-144)) . T))
((((-144)) . T))
((((-407 (-563))) . #0=(|has| |#2| (-363))) (($) . #0#) ((|#2|) . T) (((-563)) . T))
(((|#1| |#2| |#3|) . T))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1045)))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1045)))
(|has| $ (-147))
(|has| $ (-147))
((((-1174)) . T))
@@ -944,14 +944,14 @@
((((-858)) . T))
(|has| |#1| (-38 (-407 (-563))))
(|has| |#1| (-38 (-407 (-563))))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-473)) (|has| |#1| (-555)) (|has| |#1| (-1045)) (|has| |#1| (-1105)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-473)) (|has| |#1| (-555)) (|has| |#1| (-1045)) (|has| |#1| (-1105)))
((($ $) |has| |#1| (-286 $ $)) ((|#1| $) |has| |#1| (-286 |#1| |#1|)))
(((|#1| (-407 (-563))) . T))
(((|#1|) . T))
((((-1169)) . T))
(|has| |#1| (-555))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
(|has| |#1| (-555))
(|has| |#1| (-38 (-407 (-563))))
(|has| |#1| (-38 (-407 (-563))))
@@ -962,7 +962,7 @@
(|has| |#1| (-147))
(|has| |#1| (-145))
(|has| |#4| (-844))
-(((|#2| (-240 (-3608 |#1|) (-767)) (-860 |#1|)) . T))
+(((|#2| (-240 (-3610 |#1|) (-767)) (-860 |#1|)) . T))
(|has| |#3| (-844))
(((|#1| (-531 |#3|) |#3|) . T))
(|has| |#1| (-147))
@@ -977,20 +977,20 @@
(|has| |#1| (-145))
((((-407 (-563))) |has| |#2| (-363)) (($) . T))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
-(-4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
-(-4032 (|has| |#1| (-349)) (|has| |#1| (-368)))
+(-4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
+(-4034 (|has| |#1| (-349)) (|has| |#1| (-368)))
((((-1135 |#2| |#1|)) . T) ((|#1|) . T))
(|has| |#2| (-172))
(((|#1| |#2|) . T))
(-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))
-(((|#2|) . T) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
-(-4032 (|has| |#3| (-789)) (|has| |#3| (-844)))
-(-4032 (|has| |#3| (-789)) (|has| |#3| (-844)))
+(((|#2|) . T) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
+(-4034 (|has| |#3| (-789)) (|has| |#3| (-844)))
+(-4034 (|has| |#3| (-789)) (|has| |#3| (-844)))
((((-858)) . T))
(((|#1|) . T))
(((|#2|) . T) (($) . T))
((((-694)) . T))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
(|has| |#1| (-555))
(((|#1|) . T))
(((|#1|) . T))
@@ -1014,11 +1014,11 @@
(((|#1| (-407 (-563))) . T))
(((|#3|) . T) (((-609 $)) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(((|#1|) . T))
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
-((((-563)) -4032 (|has| |#2| (-172)) (|has| |#2| (-844)) (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-1045))) ((|#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-1093))) (((-407 (-563))) -12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093))))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
+((((-563)) -4034 (|has| |#2| (-172)) (|has| |#2| (-844)) (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-1045))) ((|#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-1093))) (((-407 (-563))) -12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093))))
(((|#1|) . T) (((-407 (-563))) . T) (($) . T))
((($ $) . T) ((|#2| $) . T))
((((-563)) . T) (($) . T) (((-407 (-563))) . T))
@@ -1026,8 +1026,8 @@
((((-858)) . T))
((((-858)) . T))
(((|#1| |#1|) . T))
-(((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))))
-(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) |has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))))
+(((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))))
+(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) |has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))))
((((-858)) . T))
(((|#1|) . T))
(((|#3| |#3|) . T))
@@ -1038,10 +1038,10 @@
((($ $) . T) ((#0=(-860 |#1|) $) . T) ((#0# |#2|) . T))
(|has| |#1| (-824))
(|has| |#1| (-1093))
-(((|#2| |#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))) (($ $) |has| |#2| (-172)))
-(((|#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-363))))
-((((-563) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T) ((|#1| |#2|) . T))
-(((|#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))) (($) |has| |#2| (-172)))
+(((|#2| |#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))) (($ $) |has| |#2| (-172)))
+(((|#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-363))))
+((((-563) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T) ((|#1| |#2|) . T))
+(((|#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))) (($) |has| |#2| (-172)))
((((-1174)) . T))
((((-767)) . T))
(|has| |#1| (-555))
@@ -1055,31 +1055,31 @@
((((-116 |#1|)) . T))
(((|#1|) . T))
(|has| |#1| (-147))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-555)))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-555)))
((((-888 (-563))) . T) (((-888 (-379))) . T) (((-536)) . T) (((-1169)) . T))
((((-858)) . T))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
((((-858)) . T) (((-1174)) . T))
((((-1174)) . T))
((($) . T))
((((-858)) . T))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
(((|#2|) |has| |#2| (-172)))
-((($) -4032 (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) ((|#2|) |has| |#2| (-172)) (((-407 (-563))) |has| |#2| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) ((|#2|) |has| |#2| (-172)) (((-407 (-563))) |has| |#2| (-38 (-407 (-563)))))
((((-866 |#1|)) . T))
-(-4032 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093)))
+(-4034 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093)))
(-12 (|has| |#3| (-233)) (|has| |#3| (-1045)))
(|has| |#2| (-1144))
-(((#0=(-52)) . T) (((-2 (|:| -2387 (-1169)) (|:| -2557 #0#))) . T))
+(((#0=(-52)) . T) (((-2 (|:| -2387 (-1169)) (|:| -2556 #0#))) . T))
(((|#1| |#2|) . T))
-(-4032 (|has| |#3| (-172)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
+(-4034 (|has| |#3| (-172)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
(((|#1| (-563) (-1075)) . T))
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(((|#1| (-407 (-563)) (-1075)) . T))
-((($) -4032 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)) (|has| |#1| (-555))) (((-407 (-563))) -4032 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
+((($) -4034 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)) (|has| |#1| (-555))) (((-407 (-563))) -4034 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
((((-563) |#2|) . T))
(((|#1| |#2|) . T))
(((|#1| |#2|) . T))
@@ -1087,39 +1087,39 @@
(-12 (|has| |#1| (-368)) (|has| |#2| (-368)))
((((-858)) . T))
((((-1169) |#1|) |has| |#1| (-514 (-1169) |#1|)) ((|#1| |#1|) |has| |#1| (-309 |#1|)))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))
(((|#1|) . T))
((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) |has| |#1| (-172)) (($) |has| |#1| (-555)))
-((((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-1167 |#1| |#2| |#3|)) |has| |#1| (-363)) ((|#1|) |has| |#1| (-172)))
-(((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))))
+((((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-1167 |#1| |#2| |#3|)) |has| |#1| (-363)) ((|#1|) |has| |#1| (-172)))
+(((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))))
((($) |has| |#1| (-555)) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
(((|#4|) . T))
(|has| |#1| (-349))
-((((-563)) -4032 (|has| |#3| (-172)) (|has| |#3| (-844)) (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093))) (|has| |#3| (-1045))) ((|#3|) -4032 (|has| |#3| (-172)) (|has| |#3| (-1093))) (((-407 (-563))) -12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093))))
+((((-563)) -4034 (|has| |#3| (-172)) (|has| |#3| (-844)) (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093))) (|has| |#3| (-1045))) ((|#3|) -4034 (|has| |#3| (-172)) (|has| |#3| (-1093))) (((-407 (-563))) -12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093))))
(((|#1|) . T))
(((|#4|) . T) (((-858)) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((#0=(-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) #0#) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((#0=(-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) #0#) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))))
(|has| |#1| (-555))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
((((-858)) . T))
(((|#1| |#2|) . T))
-(-4032 (|has| |#2| (-452)) (|has| |#2| (-905)))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-905)))
+(-4034 (|has| |#2| (-452)) (|has| |#2| (-905)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-905)))
((((-407 (-563))) . T) (((-563)) . T))
((((-563)) . T))
-((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
((($) . T))
((((-858)) . T))
(((|#1|) . T))
((((-866 |#1|)) . T) (($) . T) (((-407 (-563))) . T))
((((-858)) . T))
-(((|#3| |#3|) -4032 (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-1045))) (($ $) |has| |#3| (-172)))
+(((|#3| |#3|) -4034 (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-1045))) (($ $) |has| |#3| (-172)))
(|has| |#1| (-1018))
((((-858)) . T))
-(((|#3|) -4032 (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-1045))) (($) |has| |#3| (-172)))
+(((|#3|) -4034 (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-1045))) (($) |has| |#3| (-172)))
((((-563) (-112)) . T))
((((-1174)) . T))
(((|#1|) |has| |#1| (-309 |#1|)))
@@ -1129,11 +1129,11 @@
(|has| |#1| (-368))
((((-1169) $) |has| |#1| (-514 (-1169) $)) (($ $) |has| |#1| (-309 $)) ((|#1| |#1|) |has| |#1| (-309 |#1|)) (((-1169) |#1|) |has| |#1| (-514 (-1169) |#1|)))
((((-1169)) |has| |#1| (-896 (-1169))))
-(-4032 (-12 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))
+(-4034 (-12 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))
(((|#1| |#4|) . T))
(((|#1| |#3|) . T))
((((-388) |#1|) . T))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-349)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-349)))
(|has| |#1| (-1093))
(((|#2|) . T) (((-858)) . T))
((((-858)) . T))
@@ -1141,8 +1141,8 @@
((((-906 |#1|)) . T))
((((-858)) . T) (((-1174)) . T))
((((-1174)) . T))
-((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
-((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) |has| |#1| (-172)) (($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
+((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) |has| |#1| (-172)) (($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
(((|#1| |#2|) . T))
((($) . T))
((((-563)) . T) (($) . T) (((-407 (-563))) . T))
@@ -1151,16 +1151,16 @@
(((|#1|) . T) (((-407 (-563))) . T) (($) . T) (((-563)) . T))
(((|#1| |#1|) . T))
(((#0=(-866 |#1|)) |has| #0# (-309 #0#)))
-((((-563)) . T) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-349))) (((-407 (-563))) -4032 (|has| |#1| (-363)) (|has| |#1| (-349)) (|has| |#1| (-1034 (-407 (-563))))) ((|#1|) . T))
+((((-563)) . T) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-349))) (((-407 (-563))) -4034 (|has| |#1| (-363)) (|has| |#1| (-349)) (|has| |#1| (-1034 (-407 (-563))))) ((|#1|) . T))
(((|#1| |#2|) . T))
-(-4032 (|has| |#2| (-789)) (|has| |#2| (-844)))
-(-4032 (|has| |#2| (-789)) (|has| |#2| (-844)))
+(-4034 (|has| |#2| (-789)) (|has| |#2| (-844)))
+(-4034 (|has| |#2| (-789)) (|has| |#2| (-844)))
(-12 (|has| |#1| (-789)) (|has| |#2| (-789)))
(((|#1|) . T))
(-12 (|has| |#1| (-789)) (|has| |#2| (-789)))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
(((|#2|) . T) (($) . T))
-(((|#2|) . T) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(|has| |#1| (-1193))
(((#0=(-563) #0#) . T) ((#1=(-407 (-563)) #1#) . T) (($ $) . T))
((((-407 (-563))) . T) (($) . T))
@@ -1171,8 +1171,8 @@
(((|#1| |#1|) . T) (($ $) . T) ((#0=(-407 (-563)) #0#) . T))
(|has| |#1| (-363))
((((-563)) . T) (((-407 (-563))) . T) (($) . T))
-((($ $) . T) ((#0=(-407 (-563)) #0#) -4032 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1| |#1|) . T))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((($ $) . T) ((#0=(-407 (-563)) #0#) -4034 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1| |#1|) . T))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
(((|#1|) . T) (($) . T) (((-407 (-563))) . T))
((((-858)) . T))
((((-858)) . T))
@@ -1187,14 +1187,14 @@
(((|#1| |#2|) . T))
(|has| |#1| (-844))
(|has| |#1| (-844))
-((($) . T) (((-407 (-563))) -4032 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-555)))
+((($) . T) (((-407 (-563))) -4034 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-555)))
((($) . T))
-(((#0=(-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) #0#) |has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))))
+(((#0=(-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) #0#) |has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))))
(|has| |#2| (-846))
((($) . T))
(((|#2|) |has| |#2| (-1093)))
-((((-858)) -4032 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-610 (-858))) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093))) (((-1257 |#2|)) . T))
+((((-858)) -4034 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-610 (-858))) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093))) (((-1257 |#2|)) . T))
(|has| |#1| (-846))
(|has| |#1| (-846))
((((-1151) (-52)) . T))
@@ -1203,10 +1203,10 @@
((((-563)) |has| #0=(-407 |#2|) (-636 (-563))) ((#0#) . T))
((($) . T) (((-563)) . T))
((((-563) (-144)) . T))
-((((-563) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T) ((|#1| |#2|) . T))
+((((-563) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T) ((|#1| |#2|) . T))
((((-407 (-563))) . T) (($) . T))
(((|#1|) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
((((-858)) . T))
((((-906 |#1|)) . T))
(|has| |#1| (-363))
@@ -1233,21 +1233,21 @@
((((-858)) . T))
((($) . T))
(((|#2|) . T) (($) . T))
-((((-563) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T) ((|#1| |#2|) . T))
+((((-563) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T) ((|#1| |#2|) . T))
(((|#1|) . T))
(((|#1|) |has| |#1| (-172)))
((($) |has| |#1| (-555)) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(((|#3|) . T))
(((|#1|) |has| |#1| (-172)))
-((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) |has| |#1| (-172)) (($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
-((($) -4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
-((($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-563)) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) |has| |#1| (-172)))
+((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) |has| |#1| (-172)) (($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))))
+((($) -4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-563)) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) |has| |#1| (-172)))
(((|#1|) . T))
(((|#1|) . T))
((((-536)) |has| |#1| (-611 (-536))) (((-888 (-379))) |has| |#1| (-611 (-888 (-379)))) (((-888 (-563))) |has| |#1| (-611 (-888 (-563)))))
((((-858)) . T))
-(((|#2|) . T) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
((((-506)) . T))
(|has| |#2| (-844))
((((-506)) . T))
@@ -1255,39 +1255,39 @@
(|has| |#1| (-555))
((((-1151) |#1|) . T))
(|has| |#1| (-1144))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
((((-954 |#1|)) . T))
-(((#0=(-407 (-563)) #0#) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((|#1| |#1|) . T))
+(((#0=(-407 (-563)) #0#) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((|#1| |#1|) . T))
((((-407 (-563))) |has| |#1| (-1034 (-563))) (((-563)) |has| |#1| (-1034 (-563))) (((-1169)) |has| |#1| (-1034 (-1169))) ((|#1|) . T))
((((-563) |#2|) . T))
((((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) (((-563)) |has| |#1| (-1034 (-563))) ((|#1|) . T))
((((-563)) |has| |#1| (-882 (-563))) (((-379)) |has| |#1| (-882 (-379))))
-((((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((|#1|) . T))
+((((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((|#1|) . T))
(((|#1|) . T))
((((-640 |#4|)) . T) (((-858)) . T))
((((-536)) |has| |#4| (-611 (-536))))
((((-536)) |has| |#4| (-611 (-536))))
((((-858)) . T) (((-640 |#4|)) . T))
((($) |has| |#1| (-844)))
-((((-563)) -4032 (|has| |#2| (-172)) (|has| |#2| (-844)) (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-1045))) ((|#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-1093))) (((-407 (-563))) -12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093))))
+((((-563)) -4034 (|has| |#2| (-172)) (|has| |#2| (-844)) (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-1045))) ((|#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-1093))) (((-407 (-563))) -12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093))))
(((|#1|) . T))
((((-640 |#4|)) . T) (((-858)) . T))
((((-536)) |has| |#4| (-611 (-536))))
(((|#1|) . T))
(((|#2|) . T))
((((-1169)) |has| (-407 |#2|) (-896 (-1169))))
-(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((#0=(-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) #0#) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((#0=(-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) #0#) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))))
((($) . T))
((($) . T))
(((|#2|) . T))
-((((-858)) -4032 (|has| |#3| (-25)) (|has| |#3| (-131)) (|has| |#3| (-610 (-858))) (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-368)) (|has| |#3| (-722)) (|has| |#3| (-789)) (|has| |#3| (-844)) (|has| |#3| (-1045)) (|has| |#3| (-1093))) (((-1257 |#3|)) . T))
+((((-858)) -4034 (|has| |#3| (-25)) (|has| |#3| (-131)) (|has| |#3| (-610 (-858))) (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-368)) (|has| |#3| (-722)) (|has| |#3| (-789)) (|has| |#3| (-844)) (|has| |#3| (-1045)) (|has| |#3| (-1093))) (((-1257 |#3|)) . T))
((((-563) |#2|) . T))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
-(((|#2| |#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))) (($ $) |has| |#2| (-172)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(((|#2| |#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))) (($ $) |has| |#2| (-172)))
(((|#2|) . T) (((-563)) . T))
((((-858)) . T))
((((-858)) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T) ((|#2|) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T) ((|#2|) . T))
((((-858)) . T))
((((-858)) . T))
((((-1151) (-1169) (-563) (-225) (-858)) . T))
@@ -1322,8 +1322,8 @@
(|has| |#1| (-38 (-407 (-563))))
((((-858)) . T))
((((-536)) |has| |#1| (-611 (-536))))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
-(((|#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))) (($) |has| |#2| (-172)))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+(((|#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-1045))) (($) |has| |#2| (-172)))
(|has| $ (-147))
((((-407 |#2|)) . T))
((((-889 |#1|)) . T) ((|#2|) . T) (((-563)) . T) (((-815 |#1|)) . T))
@@ -1335,11 +1335,11 @@
(((|#3|) |has| |#3| (-172)))
(|has| |#1| (-147))
(|has| |#1| (-145))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))
(|has| |#1| (-147))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))
(|has| |#1| (-147))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))
(|has| |#1| (-147))
(((|#1|) . T))
(|has| |#2| (-233))
@@ -1376,7 +1376,7 @@
((((-995 |#1|)) . T) ((|#1|) . T))
((((-858)) . T))
((((-858)) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
((((-407 (-563))) . T) (((-407 |#1|)) . T) ((|#1|) . T) (($) . T))
(((|#1| (-1165 |#1|)) . T))
((((-563)) . T) (($) . T) (((-407 (-563))) . T))
@@ -1384,9 +1384,9 @@
(|has| |#1| (-846))
(((|#2|) . T))
((((-563)) . T) (($) . T) (((-407 (-563))) . T))
-((((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) . T))
+((((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) . T))
((((-563) |#2|) . T))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
(((|#2|) . T))
((((-563) |#3|) . T))
(((|#2|) . T))
@@ -1399,7 +1399,7 @@
(|has| |#1| (-1093))
(|has| |#1| (-38 (-407 (-563))))
(|has| |#1| (-38 (-407 (-563))))
-(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((#0=(-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) #0#) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((#0=(-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) #0#) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))))
(((|#2| |#2|) . T))
(|has| |#1| (-38 (-407 (-563))))
(((|#2|) . T))
@@ -1434,19 +1434,19 @@
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(((|#1| |#2|) . T))
((((-563) (-144)) . T))
-(((#0=(-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) #0#) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))
-((($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+(((#0=(-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) #0#) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))
+((($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
(|has| |#1| (-846))
(((|#2| (-767) (-1075)) . T))
(((|#1| |#2|) . T))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-555)))
(|has| |#1| (-787))
(((|#1|) |has| |#1| (-172)))
(((|#4|) . T))
(((|#4|) . T))
(((|#1| |#2|) . T))
-(-4032 (|has| |#1| (-147)) (-12 (|has| |#1| (-363)) (|has| |#2| (-147))))
-(-4032 (|has| |#1| (-145)) (-12 (|has| |#1| (-363)) (|has| |#2| (-145))))
+(-4034 (|has| |#1| (-147)) (-12 (|has| |#1| (-363)) (|has| |#2| (-147))))
+(-4034 (|has| |#1| (-145)) (-12 (|has| |#1| (-363)) (|has| |#2| (-145))))
(((|#4|) . T))
(|has| |#1| (-145))
((((-1151) |#1|) . T))
@@ -1460,10 +1460,10 @@
(((|#3|) . T))
((((-1249 |#1| |#2| |#3|)) |has| |#1| (-363)))
((((-858)) . T))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
(((|#1|) . T))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))) (((-954 |#1|)) . T))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))) (((-954 |#1|)) . T))
(|has| |#1| (-844))
(|has| |#1| (-844))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
@@ -1477,8 +1477,8 @@
((($) . T))
((((-388) (-1151)) . T))
((($) |has| |#1| (-555)) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
-((((-858)) -4032 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-610 (-858))) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093))) (((-1257 |#2|)) . T))
-(((#0=(-52)) . T) (((-2 (|:| -2387 (-1151)) (|:| -2557 #0#))) . T))
+((((-858)) -4034 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-610 (-858))) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093))) (((-1257 |#2|)) . T))
+(((#0=(-52)) . T) (((-2 (|:| -2387 (-1151)) (|:| -2556 #0#))) . T))
(((|#1|) . T))
((((-858)) . T))
(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))
@@ -1486,7 +1486,7 @@
(|has| |#2| (-145))
(|has| |#2| (-147))
(|has| |#1| (-473))
-(-4032 (|has| |#1| (-473)) (|has| |#1| (-722)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)))
+(-4034 (|has| |#1| (-473)) (|has| |#1| (-722)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)))
(|has| |#1| (-363))
((((-858)) . T))
(|has| |#1| (-38 (-407 (-563))))
@@ -1497,8 +1497,8 @@
(|has| |#1| (-844))
((((-858)) . T))
(((|#2|) . T))
-((((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-1249 |#1| |#2| |#3|)) |has| |#1| (-363)) ((|#1|) |has| |#1| (-172)))
-(((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))))
+((((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-1249 |#1| |#2| |#3|)) |has| |#1| (-363)) ((|#1|) |has| |#1| (-172)))
+(((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))))
((($) |has| |#1| (-555)) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
(((|#2|) . T) (((-563)) . T) (((-815 |#1|)) . T))
(((|#1| |#2|) . T))
@@ -1507,7 +1507,7 @@
((((-858)) . T))
((((-858)) . T))
(|has| |#1| (-1093))
-(((|#2| (-482 (-3608 |#1|) (-767)) (-860 |#1|)) . T))
+(((|#2| (-482 (-3610 |#1|) (-767)) (-860 |#1|)) . T))
((((-407 (-563))) . #0=(|has| |#2| (-363))) (($) . #0#))
(((|#1| (-531 (-1169)) (-1169)) . T))
(((|#1|) . T))
@@ -1527,16 +1527,16 @@
(|has| |#1| (-147))
(((|#1|) . T))
(((|#2|) . T))
-(((|#1|) . T) (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
-((((-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) . T))
+(((|#1|) . T) (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
+((((-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) . T))
((((-1167 |#1| |#2| |#3|)) |has| |#1| (-363)))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
((((-1169) (-52)) . T))
((($ $) . T))
(((|#1| (-563)) . T))
((((-906 |#1|)) . T))
-(((|#1|) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-1045))) (($) -4032 (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045))))
+(((|#1|) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-1045))) (($) -4034 (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045))))
(((|#1|) . T) (((-563)) |has| |#1| (-1034 (-563))) (((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))))
(|has| |#1| (-846))
(|has| |#1| (-846))
@@ -1554,11 +1554,11 @@
(((|#4| |#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))
(|has| |#2| (-846))
(|has| |#1| (-846))
-(((|#3|) -4032 (|has| |#3| (-172)) (|has| |#3| (-363))))
-(-4032 (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-905)))
+(((|#3|) -4034 (|has| |#3| (-172)) (|has| |#3| (-363))))
+(-4034 (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-905)))
((($ $) . T) ((#0=(-407 (-563)) #0#) . T))
((((-563) |#2|) . T))
-(((|#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-363))))
+(((|#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-363))))
(|has| |#1| (-349))
(((|#3| |#3|) -12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093))))
(((|#2|) . T) (((-563)) . T))
@@ -1567,7 +1567,7 @@
(|has| |#1| (-816))
(|has| |#1| (-816))
(((|#1|) . T))
-(-4032 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)))
+(-4034 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)))
(|has| |#1| (-844))
(|has| |#1| (-844))
(|has| |#1| (-844))
@@ -1576,13 +1576,13 @@
((((-563)) . T) (($) . T) (((-407 (-563))) . T))
(|has| |#1| (-38 (-407 (-563))))
(|has| |#1| (-38 (-407 (-563))))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-349)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-349)))
(|has| |#1| (-38 (-407 (-563))))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
((((-1169)) |has| |#1| (-896 (-1169))) (((-1075)) . T))
(((|#1|) . T))
(|has| |#1| (-844))
-(((#0=(-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) #0#) |has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))))))
+(((#0=(-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) #0#) |has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))))))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(|has| |#1| (-1093))
((((-858)) . T) (((-1174)) . T))
@@ -1601,11 +1601,11 @@
(((|#1| (-767) (-1075)) . T))
(((|#3|) . T))
((((-144)) . T))
-((((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) (((-563)) -4032 (|has| |#1| (-844)) (|has| |#1| (-1034 (-563)))) ((|#1|) . T))
+((((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) (((-563)) -4034 (|has| |#1| (-844)) (|has| |#1| (-1034 (-563)))) ((|#1|) . T))
(((|#1|) . T))
((((-144)) . T))
(((|#2|) |has| |#2| (-172)))
-(-4032 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093)))
+(-4034 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093)))
(((|#1|) . T))
(|has| |#1| (-145))
(|has| |#1| (-147))
@@ -1628,32 +1628,32 @@
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(((|#1|) . T))
(((|#1| |#2|) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((#0=(-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) #0#) |has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))))
-(-4032 (|has| |#2| (-452)) (|has| |#2| (-905)))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-905)))
+(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((#0=(-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) #0#) |has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))))
+(-4034 (|has| |#2| (-452)) (|has| |#2| (-905)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-905)))
(((|#1|) . T) (($) . T))
(((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))
(((|#1| |#2|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-(((|#3|) -4032 (|has| |#3| (-172)) (|has| |#3| (-363))))
+(((|#3|) -4034 (|has| |#3| (-172)) (|has| |#3| (-363))))
(|has| |#1| (-846))
(|has| |#1| (-555))
((((-580 |#1|)) . T))
((($) . T))
(((|#2|) . T))
-(-4032 (-12 (|has| |#1| (-363)) (|has| |#2| (-816))) (-12 (|has| |#1| (-363)) (|has| |#2| (-846))))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (-12 (|has| |#1| (-363)) (|has| |#2| (-816))) (-12 (|has| |#1| (-363)) (|has| |#2| (-846))))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
((((-906 |#1|)) . T))
(((|#1| (-496 |#1| |#3|) (-496 |#1| |#2|)) . T))
(((|#1| |#4| |#5|) . T))
(((|#1| (-767)) . T))
((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) |has| |#1| (-172)) (($) |has| |#1| (-555)))
-((((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-1167 |#1| |#2| |#3|)) |has| |#1| (-363)) ((|#1|) |has| |#1| (-172)))
-(((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))))
+((((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-1167 |#1| |#2| |#3|)) |has| |#1| (-363)) ((|#1|) |has| |#1| (-172)))
+(((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))))
((($) |has| |#1| (-555)) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
-((((-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) . T))
+((((-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) . T))
((((-407 |#2|)) . T) (((-407 (-563))) . T) (($) . T))
((((-667 |#1|)) . T))
(((|#1| |#2| |#3| |#4|) . T))
@@ -1662,7 +1662,7 @@
((((-858)) . T))
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
((((-858)) . T))
-((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
((((-1174)) . T))
((((-407 (-563))) . T) (($) . T) (((-407 |#1|)) . T) ((|#1|) . T) (((-563)) . T))
(((|#3|) . T) (((-563)) . T) (((-609 $)) . T))
@@ -1670,12 +1670,12 @@
((((-858)) . T))
((((-858)) . T))
(((|#2|) . T))
-(-4032 (|has| |#3| (-25)) (|has| |#3| (-131)) (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-368)) (|has| |#3| (-722)) (|has| |#3| (-789)) (|has| |#3| (-844)) (|has| |#3| (-1045)) (|has| |#3| (-1093)))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#3| (-25)) (|has| |#3| (-131)) (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-368)) (|has| |#3| (-722)) (|has| |#3| (-789)) (|has| |#3| (-844)) (|has| |#3| (-1045)) (|has| |#3| (-1093)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
((((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) (((-563)) |has| |#1| (-1034 (-563))) ((|#1|) . T))
(|has| |#1| (-1193))
(|has| |#1| (-1193))
-(-4032 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093)))
+(-4034 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093)))
(|has| |#1| (-1193))
(|has| |#1| (-1193))
(((|#3| |#3|) . T))
@@ -1688,16 +1688,16 @@
(((|#1|) . T) (((-407 (-563))) . T) (($) . T))
((((-1151) (-52)) . T))
(|has| |#1| (-1093))
-(-4032 (|has| |#2| (-816)) (|has| |#2| (-846)))
+(-4034 (|has| |#2| (-816)) (|has| |#2| (-846)))
(((|#1|) . T))
(((|#1|) |has| |#1| (-172)) (($) . T))
-((($) -4032 (|has| |#1| (-363)) (|has| |#1| (-349))) (((-407 (-563))) -4032 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
+((($) -4034 (|has| |#1| (-363)) (|has| |#1| (-349))) (((-407 (-563))) -4034 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
((($) . T))
((((-1167 |#1| |#2| |#3|)) -12 (|has| (-1167 |#1| |#2| |#3|) (-309 (-1167 |#1| |#2| |#3|))) (|has| |#1| (-363))))
((((-858)) . T))
((((-563)) . T) (($) . T))
((((-767)) . T))
-(-4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
+(-4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
((((-858)) . T))
((($) . T) (((-563)) . T))
@@ -1705,30 +1705,30 @@
(|has| |#2| (-905))
(|has| |#1| (-363))
(((|#2|) |has| |#2| (-1093)))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
((((-536)) . T) (((-407 (-1165 (-563)))) . T) (((-225)) . T) (((-379)) . T))
((((-379)) . T) (((-225)) . T) (((-858)) . T))
(|has| |#1| (-905))
(|has| |#1| (-905))
(|has| |#1| (-905))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-905)))
((($) . T) ((|#2|) . T))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-905)))
((((-858)) . T))
(((|#1|) . T))
(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))
((($ $) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
((($ $) . T))
((((-563) (-112)) . T))
((($) . T))
(((|#1|) . T))
((((-563)) . T))
((((-112)) . T))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555)))
(|has| |#1| (-38 (-407 (-563))))
(((|#1| (-563)) . T))
((($) . T))
@@ -1750,7 +1750,7 @@
(((|#1| (-1221 |#1| |#2| |#3|)) . T))
(((|#1| (-767)) . T))
(((|#1|) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
((((-858)) . T))
(|has| |#1| (-1093))
((((-1151) |#1|) . T))
@@ -1770,18 +1770,18 @@
(((|#1|) . T))
((((-563)) . T))
((((-858)) . T))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-349)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-349)))
(|has| |#1| (-147))
((((-858)) . T))
(((|#3|) . T))
-(-4032 (|has| |#3| (-172)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
+(-4034 (|has| |#3| (-172)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
((((-858)) . T))
((((-1242 |#2| |#3| |#4|)) . T) (((-1243 |#1| |#2| |#3| |#4|)) . T))
((((-858)) . T))
-((((-48)) -12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563)))) (((-609 $)) . T) ((|#1|) . T) (((-563)) |has| |#1| (-1034 (-563))) (((-407 (-563))) -4032 (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) (((-407 (-948 |#1|))) |has| |#1| (-555)) (((-948 |#1|)) |has| |#1| (-1045)) (((-1169)) . T))
+((((-48)) -12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563)))) (((-609 $)) . T) ((|#1|) . T) (((-563)) |has| |#1| (-1034 (-563))) (((-407 (-563))) -4034 (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) (((-407 (-948 |#1|))) |has| |#1| (-555)) (((-948 |#1|)) |has| |#1| (-1045)) (((-1169)) . T))
(((|#1|) . T) (($) . T))
(((|#1| (-767)) . T))
-((($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) |has| |#1| (-172)))
+((($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) |has| |#1| (-172)))
(((|#1|) |has| |#1| (-309 |#1|)))
((((-1243 |#1| |#2| |#3| |#4|)) . T))
((((-563)) |has| |#1| (-882 (-563))) (((-379)) |has| |#1| (-882 (-379))))
@@ -1789,7 +1789,7 @@
(|has| |#1| (-555))
(((|#1|) . T))
((((-858)) . T))
-(((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))))
(((|#1|) |has| |#1| (-172)))
((($) |has| |#1| (-555)) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
@@ -1797,7 +1797,7 @@
(((|#1|) . T))
(((|#3|) |has| |#3| (-1093)))
((((-906 |#1|)) . T) (((-407 (-563))) . T) (($) . T) (((-563)) . T))
-(((|#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-363))))
+(((|#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-363))))
((((-1242 |#2| |#3| |#4|)) . T))
((((-112)) . T))
(|has| |#1| (-816))
@@ -1807,8 +1807,8 @@
(|has| |#1| (-844))
(|has| |#1| (-844))
(((|#1| (-563) (-1075)) . T))
-(-4032 (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+(-4034 (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(((|#1| (-407 (-563)) (-1075)) . T))
(((|#1| (-767) (-1075)) . T))
(|has| |#1| (-846))
@@ -1821,33 +1821,33 @@
(|has| |#1| (-1093))
((((-906 |#1|)) . T) (($) . T) (((-407 (-563))) . T))
(|has| |#1| (-1093))
-((((-563)) -4032 (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045))))
+((((-563)) -4034 (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045))))
(((|#1|) . T))
(|has| |#1| (-1093))
((((-563)) -12 (|has| |#1| (-363)) (|has| |#2| (-636 (-563)))) ((|#2|) |has| |#1| (-363)))
-(-4032 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093)))
-((((-684 (-339 (-1707) (-1707 (QUOTE X) (QUOTE HESS)) (-694)))) . T))
+(-4034 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093)))
+((((-684 (-339 (-1706) (-1706 (QUOTE X) (QUOTE HESS)) (-694)))) . T))
(((|#2|) |has| |#2| (-172)))
(((|#1|) |has| |#1| (-172)))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
-((((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
+((((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) . T))
((((-858)) . T))
(|has| |#3| (-844))
((((-858)) . T))
((((-1242 |#2| |#3| |#4|) (-319 |#2| |#3| |#4|)) . T))
((((-858)) . T))
-(((|#1| |#1|) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-1045))))
+(((|#1| |#1|) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-1045))))
(((|#1|) . T))
((((-563)) . T))
((((-563)) . T))
-(((|#1|) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-1045))))
+(((|#1|) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-1045))))
(((|#2|) |has| |#2| (-363)))
((($) . T) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-363)))
(|has| |#1| (-846))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(((|#2|) . T))
-((((-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) |has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-905)))
+((((-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) |has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-905)))
(((|#2|) . T) (((-563)) |has| |#2| (-636 (-563))))
((((-858)) . T))
((((-858)) . T))
@@ -1878,25 +1878,25 @@
(|has| |#1| (-145))
((((-563)) . T) ((|#1|) . T) (($) . T) (((-407 (-563))) . T) (((-1169)) |has| |#1| (-1034 (-1169))))
(((|#1| |#2|) . T))
-((((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) (((-563)) -4032 (|has| |#1| (-844)) (|has| |#1| (-1034 (-563)))) ((|#1|) . T))
+((((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) (((-563)) -4034 (|has| |#1| (-844)) (|has| |#1| (-1034 (-563)))) ((|#1|) . T))
((((-144)) . T))
(|has| |#1| (-38 (-407 (-563))))
(|has| |#1| (-38 (-407 (-563))))
(((|#1|) . T))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
(((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) . T) (($ $) . T))
(((|#2|) . T) ((|#1|) . T) (((-563)) . T))
((((-858)) . T))
(((|#1|) . T) (((-407 (-563))) . T) (($) . T))
((($) . T) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
(|has| |#1| (-363))
(|has| |#1| (-363))
(|has| (-407 |#2|) (-233))
((((-640 |#1|)) . T))
(|has| |#1| (-905))
(((|#2|) |has| |#2| (-1045)))
-(((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))))
(|has| |#1| (-363))
(((|#1|) |has| |#1| (-172)))
(((|#1| |#1|) . T))
@@ -1923,7 +1923,7 @@
(((|#1| (-407 (-563)) (-1075)) . T))
(((|#1| (-767) (-1075)) . T))
(((#0=(-407 |#2|) #0#) . T) ((#1=(-407 (-563)) #1#) . T) (($ $) . T))
-(((|#1|) . T) (((-563)) -4032 (|has| (-407 (-563)) (-1034 (-563))) (|has| |#1| (-1034 (-563)))) (((-407 (-563))) . T))
+(((|#1|) . T) (((-563)) -4034 (|has| (-407 (-563)) (-1034 (-563))) (|has| |#1| (-1034 (-563)))) (((-407 (-563))) . T))
(((|#1| (-599 |#1| |#3|) (-599 |#1| |#2|)) . T))
(((|#1|) |has| |#1| (-172)))
(((|#1|) . T))
@@ -1944,25 +1944,25 @@
(((|#2|) |has| |#2| (-172)))
(|has| |#2| (-844))
((((-563)) . T) ((|#2|) . T) (((-407 (-563))) |has| |#2| (-1034 (-407 (-563)))))
-((((-112)) |has| |#1| (-1093)) (((-858)) -4032 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-473)) (|has| |#1| (-722)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)) (|has| |#1| (-1105)) (|has| |#1| (-1093))))
+((((-112)) |has| |#1| (-1093)) (((-858)) -4034 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-473)) (|has| |#1| (-722)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)) (|has| |#1| (-1105)) (|has| |#1| (-1093))))
(((|#1|) . T) (($) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) . T))
+((((-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) . T))
((((-858)) . T))
((((-563) |#1|) . T))
((((-858)) . T))
((((-694)) . T) (((-407 (-563))) . T) (((-563)) . T))
(((|#1| |#1|) |has| |#1| (-172)))
(((|#2|) . T))
-(((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))))
((((-379)) . T))
((((-694)) . T))
((((-407 (-563))) . #0=(|has| |#2| (-363))) (($) . #0#))
(((|#1|) |has| |#1| (-172)))
((((-407 (-948 |#1|))) . T))
(((|#2| |#2|) . T))
-(-4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
(((|#1|) . T))
(((|#2|) . T))
(|has| |#2| (-846))
@@ -1973,14 +1973,14 @@
(((|#3|) |has| |#3| (-1045)))
((((-1169)) |has| |#2| (-896 (-1169))))
((((-858)) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
((((-407 (-563))) . T) (($) . T))
(|has| |#1| (-473))
(|has| |#1| (-368))
(|has| |#1| (-368))
(|has| |#1| (-368))
(|has| |#1| (-363))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-473)) (|has| |#1| (-555)) (|has| |#1| (-1045)) (|has| |#1| (-1105)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-473)) (|has| |#1| (-555)) (|has| |#1| (-1045)) (|has| |#1| (-1105)))
(|has| |#1| (-38 (-407 (-563))))
((((-116 |#1|)) . T))
((((-116 |#1|)) . T))
@@ -2001,11 +2001,11 @@
(|has| |#1| (-38 (-407 (-563))))
(|has| |#1| (-38 (-407 (-563))))
(|has| |#1| (-846))
-((((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) . T))
+((((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) . T))
(((|#1| |#2|) . T))
(|has| |#1| (-147))
(|has| |#1| (-145))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) ((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) ((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))
(((|#2|) . T))
(((|#3|) . T))
((((-116 |#1|)) . T))
@@ -2023,11 +2023,11 @@
((((-536)) |has| |#1| (-611 (-536))) (((-888 (-563))) |has| |#1| (-611 (-888 (-563)))) (((-888 (-379))) |has| |#1| (-611 (-888 (-379)))) (((-379)) . #0=(|has| |#1| (-1018))) (((-225)) . #0#))
(((|#1|) |has| |#1| (-363)))
((((-858)) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
((($ $) . T) (((-609 $) $) . T))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
((($) . T) (((-1243 |#1| |#2| |#3| |#4|)) . T) (((-407 (-563))) . T))
-((($) -4032 (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1045))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-555)))
+((($) -4034 (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1045))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-555)))
(|has| |#1| (-363))
(|has| |#1| (-363))
(|has| |#1| (-363))
@@ -2038,11 +2038,11 @@
((((-379)) . T))
(((|#3|) -12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093))))
((((-858)) . T))
-(-4032 (|has| |#2| (-452)) (|has| |#2| (-905)))
+(-4034 (|has| |#2| (-452)) (|has| |#2| (-905)))
(((|#1|) . T))
(|has| |#1| (-846))
(|has| |#1| (-846))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
((((-536)) |has| |#1| (-611 (-536))))
(((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))
((((-767)) . T))
@@ -2053,13 +2053,13 @@
(|has| |#1| (-145))
(|has| |#1| (-147))
((((-563)) . T))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
(((#0=(-1242 |#2| |#3| |#4|)) . T) (((-407 (-563))) |has| #0# (-38 (-407 (-563)))) (($) . T))
((((-563)) . T))
(|has| |#1| (-363))
-(-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-147)) (|has| |#1| (-363))) (|has| |#1| (-147)))
-(-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-145)) (|has| |#1| (-363))) (|has| |#1| (-145)))
+(-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-147)) (|has| |#1| (-363))) (|has| |#1| (-147)))
+(-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-145)) (|has| |#1| (-363))) (|has| |#1| (-145)))
(|has| |#1| (-363))
(|has| |#1| (-145))
(|has| |#1| (-147))
@@ -2074,23 +2074,23 @@
(((|#2|) . T))
(|has| |#1| (-1093))
(((|#1| |#2|) . T))
-((((-563)) . T) ((|#1|) . T) (((-407 (-563))) -4032 (|has| |#1| (-363)) (|has| |#1| (-1034 (-407 (-563))))))
+((((-563)) . T) ((|#1|) . T) (((-407 (-563))) -4034 (|has| |#1| (-363)) (|has| |#1| (-1034 (-407 (-563))))))
(((|#1|) . T) (((-563)) |has| |#1| (-636 (-563))))
(((|#3|) |has| |#3| (-172)))
-(-4032 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093)))
+(-4034 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093)))
((((-858)) . T))
((((-563)) . T))
(((|#1| $) |has| |#1| (-286 |#1| |#1|)))
((((-407 (-563))) . T) (($) . T) (((-407 |#1|)) . T) ((|#1|) . T))
((((-948 |#1|)) . T) (((-858)) . T))
(((|#3|) . T))
-(((|#1| |#1|) . T) (($ $) -4032 (|has| |#1| (-290)) (|has| |#1| (-363))) ((#0=(-407 (-563)) #0#) |has| |#1| (-363)))
-((((-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) . T))
+(((|#1| |#1|) . T) (($ $) -4034 (|has| |#1| (-290)) (|has| |#1| (-363))) ((#0=(-407 (-563)) #0#) |has| |#1| (-363)))
+((((-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) . T))
((((-948 |#1|)) . T))
((($) . T))
((((-563) |#1|) . T))
((((-1169)) |has| (-407 |#2|) (-896 (-1169))))
-(((|#1|) . T) (($) -4032 (|has| |#1| (-290)) (|has| |#1| (-363))) (((-407 (-563))) |has| |#1| (-363)))
+(((|#1|) . T) (($) -4034 (|has| |#1| (-290)) (|has| |#1| (-363))) (((-407 (-563))) |has| |#1| (-363)))
((((-536)) |has| |#2| (-611 (-536))))
((((-684 |#2|)) . T) (((-858)) . T))
(((|#1|) . T))
@@ -2098,8 +2098,8 @@
(((|#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))
((((-866 |#1|)) . T))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
-(-4032 (|has| |#4| (-789)) (|has| |#4| (-844)))
-(-4032 (|has| |#3| (-789)) (|has| |#3| (-844)))
+(-4034 (|has| |#4| (-789)) (|has| |#4| (-844)))
+(-4034 (|has| |#3| (-789)) (|has| |#3| (-844)))
((((-858)) . T))
((((-858)) . T))
(((|#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))
@@ -2115,17 +2115,17 @@
((((-407 (-563))) . T) (($) . T))
((((-407 (-563))) . T) (($) . T))
((((-407 (-563))) . T) (($) . T))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-1212)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-1212)))
((($) . T))
((((-407 (-563))) |has| #0=(-407 |#2|) (-1034 (-407 (-563)))) (((-563)) |has| #0# (-1034 (-563))) ((#0#) . T))
(((|#2|) . T) (((-563)) |has| |#2| (-636 (-563))))
(((|#1| (-767)) . T))
(|has| |#1| (-846))
(((|#1|) . T) (((-563)) |has| |#1| (-636 (-563))))
-((($) -4032 (|has| |#1| (-363)) (|has| |#1| (-349))) (((-407 (-563))) -4032 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
+((($) -4034 (|has| |#1| (-363)) (|has| |#1| (-349))) (((-407 (-563))) -4034 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
((((-563)) . T))
(|has| |#1| (-38 (-407 (-563))))
-((((-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) |has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))))))
+((((-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) |has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))))))
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(|has| |#1| (-844))
(|has| |#1| (-38 (-407 (-563))))
@@ -2148,29 +2148,29 @@
(|has| |#1| (-38 (-407 (-563))))
(|has| |#1| (-38 (-407 (-563))))
((((-1151)) . T) (((-1169)) . T) (((-225)) . T) (((-563)) . T))
-(((|#2|) . T) (((-563)) . T) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) (((-1075)) . T) ((|#1|) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))
+(((|#2|) . T) (((-563)) . T) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) (((-1075)) . T) ((|#1|) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))
(((|#1| |#2|) . T))
((((-144)) . T))
((((-776 |#1| (-860 |#2|))) . T))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
(|has| |#1| (-1193))
((((-858)) . T))
(((|#1|) . T))
-(-4032 (|has| |#3| (-25)) (|has| |#3| (-131)) (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-368)) (|has| |#3| (-722)) (|has| |#3| (-789)) (|has| |#3| (-844)) (|has| |#3| (-1045)) (|has| |#3| (-1093)))
+(-4034 (|has| |#3| (-25)) (|has| |#3| (-131)) (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-368)) (|has| |#3| (-722)) (|has| |#3| (-789)) (|has| |#3| (-844)) (|has| |#3| (-1045)) (|has| |#3| (-1093)))
((((-1169) |#1|) |has| |#1| (-514 (-1169) |#1|)))
(((|#2|) . T))
-((($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
+((($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
((((-906 |#1|)) . T))
((($) . T))
((((-407 (-948 |#1|))) . T))
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
-((($) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
((((-536)) |has| |#4| (-611 (-536))))
((((-858)) . T) (((-640 |#4|)) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(((|#1|) . T))
(|has| |#1| (-844))
-(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) |has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))))
+(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) |has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))))
(|has| |#1| (-1093))
(|has| |#1| (-363))
(|has| |#1| (-846))
@@ -2179,16 +2179,16 @@
(((|#1|) . T))
((((-667 |#1|)) . T))
((($) . T) (((-407 (-563))) . T))
-((($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) |has| |#1| (-172)))
+((($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) |has| |#1| (-172)))
(|has| |#1| (-145))
(|has| |#1| (-147))
-(-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-147)) (|has| |#1| (-363))) (|has| |#1| (-147)))
-(-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-145)) (|has| |#1| (-363))) (|has| |#1| (-145)))
+(-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-147)) (|has| |#1| (-363))) (|has| |#1| (-147)))
+(-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-145)) (|has| |#1| (-363))) (|has| |#1| (-145)))
(|has| |#1| (-145))
(|has| |#1| (-147))
(|has| |#1| (-147))
(|has| |#1| (-145))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
((((-1249 |#1| |#2| |#3|)) |has| |#1| (-363)))
(|has| |#1| (-844))
(((|#1| |#2|) . T))
@@ -2212,9 +2212,9 @@
((((-858)) . T))
((((-858)) . T))
((((-536)) |has| |#1| (-611 (-536))))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
((((-1169) |#1|) |has| |#1| (-514 (-1169) |#1|)) ((|#1| |#1|) |has| |#1| (-309 |#1|)))
-(((|#1|) -4032 (|has| |#1| (-172)) (|has| |#1| (-363))))
+(((|#1|) -4034 (|has| |#1| (-172)) (|has| |#1| (-363))))
((((-316 |#1|)) . T))
(((|#2|) |has| |#2| (-363)))
(((|#2|) . T))
@@ -2236,13 +2236,13 @@
(|has| |#1| (-145))
(|has| |#1| (-147))
((($ $) . T))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-473)) (|has| |#1| (-722)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)) (|has| |#1| (-1105)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-473)) (|has| |#1| (-722)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)) (|has| |#1| (-1105)) (|has| |#1| (-1093)))
(|has| |#1| (-555))
(((|#2|) . T))
((((-563)) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(((|#1|) . T))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1045)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1045)))
(((|#1| (-59 |#1|) (-59 |#1|)) . T))
((((-580 |#1|)) . T))
((($) . T))
@@ -2251,14 +2251,14 @@
((($) . T))
(((|#1|) . T))
((((-858)) . T))
-(((|#2|) |has| |#2| (-6 (-4409 "*"))))
+(((|#2|) |has| |#2| (-6 (-4410 "*"))))
(((|#1|) . T))
(((|#1|) . T))
(((|#3|) . T))
(((|#1|) . T))
(((|#1|) . T))
((((-1242 |#2| |#3| |#4|)) . T) (((-563)) . T) (((-1243 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-407 (-563))) . T))
-((((-48)) -12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563)))) (((-563)) -4032 (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1034 (-563))) (|has| |#1| (-1045))) ((|#1|) . T) (((-609 $)) . T) (($) |has| |#1| (-555)) (((-407 (-563))) -4032 (|has| |#1| (-555)) (|has| |#1| (-1034 (-407 (-563))))) (((-407 (-948 |#1|))) |has| |#1| (-555)) (((-948 |#1|)) |has| |#1| (-1045)) (((-1169)) . T))
+((((-48)) -12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563)))) (((-563)) -4034 (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1034 (-563))) (|has| |#1| (-1045))) ((|#1|) . T) (((-609 $)) . T) (($) |has| |#1| (-555)) (((-407 (-563))) -4034 (|has| |#1| (-555)) (|has| |#1| (-1034 (-407 (-563))))) (((-407 (-948 |#1|))) |has| |#1| (-555)) (((-948 |#1|)) |has| |#1| (-1045)) (((-1169)) . T))
((((-407 (-563))) |has| |#2| (-1034 (-407 (-563)))) (((-563)) |has| |#2| (-1034 (-563))) ((|#2|) . T) (((-860 |#1|)) . T))
((($) . T) (((-116 |#1|)) . T) (((-407 (-563))) . T))
((((-1118 |#1| |#2|)) . T) ((|#2|) . T) ((|#1|) . T) (((-563)) |has| |#1| (-1034 (-563))) (((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))))
@@ -2271,12 +2271,12 @@
(((|#1| |#2|) . T))
((((-1169) |#1|) . T))
(((|#4|) . T))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-349)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-349)))
((((-1169) (-52)) . T))
((((-1242 |#2| |#3| |#4|) (-319 |#2| |#3| |#4|)) . T))
((((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) (((-563)) |has| |#1| (-1034 (-563))) ((|#1|) . T))
((((-858)) . T))
-(-4032 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093)))
+(-4034 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-368)) (|has| |#2| (-722)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)) (|has| |#2| (-1093)))
(((#0=(-1243 |#1| |#2| |#3| |#4|) #0#) . T) ((#1=(-407 (-563)) #1#) . T) (($ $) . T))
(((|#1| |#1|) |has| |#1| (-172)) ((#0=(-407 (-563)) #0#) |has| |#1| (-555)) (($ $) |has| |#1| (-555)))
(((|#1|) . T) (($) . T) (((-407 (-563))) . T))
@@ -2296,14 +2296,14 @@
(((|#1|) . T))
(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))
(((|#2| |#3|) . T))
-(-4032 (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
+(-4034 (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
(((|#1| (-531 |#2|)) . T))
(((|#1| (-767)) . T))
(((|#1| (-531 (-1081 (-1169)))) . T))
(((|#1|) |has| |#1| (-172)))
(((|#1|) . T))
(|has| |#2| (-905))
-(-4032 (|has| |#2| (-789)) (|has| |#2| (-844)))
+(-4034 (|has| |#2| (-789)) (|has| |#2| (-844)))
((((-858)) . T))
((($ $) . T) ((#0=(-1242 |#2| |#3| |#4|) #0#) . T) ((#1=(-407 (-563)) #1#) |has| #0# (-38 (-407 (-563)))))
((((-906 |#1|)) . T))
@@ -2312,14 +2312,14 @@
((((-858)) . T))
((($) . T))
((($) . T))
-(-4032 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)) (|has| |#1| (-555)))
(|has| |#1| (-363))
(|has| |#1| (-363))
(((|#1| |#2|) . T))
((($) . T) ((#0=(-1242 |#2| |#3| |#4|)) . T) (((-407 (-563))) |has| #0# (-38 (-407 (-563)))))
((((-1167 |#1| |#2| |#3|)) |has| |#1| (-363)))
-(-4032 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363)) (|has| |#1| (-349)))
-(-4032 (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)))
+(-4034 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363)) (|has| |#1| (-349)))
+(-4034 (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)))
((((-563)) |has| |#1| (-636 (-563))) ((|#1|) . T))
(((|#1| |#2|) . T))
((((-858)) . T))
@@ -2352,27 +2352,27 @@
(((|#1|) |has| |#1| (-172)))
((((-858)) . T))
(((|#4| |#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))
-(((|#2|) -4032 (|has| |#2| (-6 (-4409 "*"))) (|has| |#2| (-172))))
-(-4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(((|#2|) -4034 (|has| |#2| (-6 (-4410 "*"))) (|has| |#2| (-172))))
+(-4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
(|has| |#2| (-846))
(|has| |#2| (-905))
(|has| |#1| (-905))
(((|#2|) |has| |#2| (-172)))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
((((-1249 |#1| |#2| |#3|)) |has| |#1| (-363)))
((((-858)) . T))
((((-858)) . T))
((((-536)) . T) (((-563)) . T) (((-888 (-563))) . T) (((-379)) . T) (((-225)) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
-((((-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
+((((-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) . T))
(((|#1|) . T))
((((-858)) . T))
(((|#1| |#2|) . T))
(((|#1| (-407 (-563))) . T))
(((|#1|) . T))
-(-4032 (|has| |#1| (-290)) (|has| |#1| (-363)))
+(-4034 (|has| |#1| (-290)) (|has| |#1| (-363)))
((((-144)) . T))
((((-407 |#2|)) . T) (((-407 (-563))) . T) (($) . T))
(|has| |#1| (-844))
@@ -2388,7 +2388,7 @@
((((-858)) . T))
((((-858)) . T))
((((-187)) . T) (((-858)) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(((|#2| |#2|) . T) ((|#1| |#1|) . T))
((((-858)) . T))
((((-858)) . T))
@@ -2401,7 +2401,7 @@
((((-858)) . T))
((((-1151)) . T))
((((-1169) |#1|) |has| |#1| (-514 (-1169) |#1|)) ((|#1| |#1|) |has| |#1| (-309 |#1|)))
-((((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) . T))
+((((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) . T))
(|has| |#1| (-846))
((((-858)) . T))
((((-536)) |has| |#1| (-611 (-536))))
@@ -2413,16 +2413,16 @@
(((|#2|) . T))
((((-906 |#1|)) . T) (((-407 (-563))) . T) (($) . T))
((($) . T) (((-563)) . T) (((-407 (-563))) . T) (((-609 $)) . T))
-(-4032 (|has| |#4| (-172)) (|has| |#4| (-722)) (|has| |#4| (-844)) (|has| |#4| (-1045)))
-(-4032 (|has| |#3| (-172)) (|has| |#3| (-722)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
+(-4034 (|has| |#4| (-172)) (|has| |#4| (-722)) (|has| |#4| (-844)) (|has| |#4| (-1045)))
+(-4034 (|has| |#3| (-172)) (|has| |#3| (-722)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
((((-1169) (-52)) . T))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-(-4032 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
(|has| |#1| (-905))
((((-906 |#1|)) . T) (((-407 (-563))) . T) (($) . T) (((-563)) . T))
(|has| |#1| (-905))
@@ -2439,12 +2439,12 @@
(|has| |#1| (-38 (-407 (-563))))
(|has| |#1| (-38 (-407 (-563))))
(|has| |#1| (-38 (-407 (-563))))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
(|has| |#1| (-816))
(((#0=(-906 |#1|) #0#) . T) (($ $) . T) ((#1=(-407 (-563)) #1#) . T))
((((-407 |#2|)) . T))
(|has| |#1| (-844))
-((((-1194 |#1|)) . T) (((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-1194 |#1|)) . T) (((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
(((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) . T) ((#1=(-563) #1#) . T) (($ $) . T))
((((-906 |#1|)) . T) (($) . T) (((-407 (-563))) . T))
(((|#2|) |has| |#2| (-1045)) (((-563)) -12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045))))
@@ -2455,11 +2455,11 @@
(((|#2|) . T))
((((-858)) . T))
((((-407 (-563))) . T) (((-694)) . T) (($) . T) (((-563)) . T))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))
-((((-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) . T))
-(((#0=(-52)) . T) (((-2 (|:| -2387 (-1169)) (|:| -2557 #0#))) . T))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))
+((((-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) . T))
+(((#0=(-52)) . T) (((-2 (|:| -2387 (-1169)) (|:| -2556 #0#))) . T))
(|has| |#1| (-349))
((((-563)) . T))
((((-858)) . T))
@@ -2467,15 +2467,15 @@
(((#0=(-1243 |#1| |#2| |#3| |#4|) $) |has| #0# (-286 #0# #0#)))
(|has| |#1| (-363))
(((#0=(-1075) |#1|) . T) ((#0# $) . T) (($ $) . T))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-349)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-349)))
(((#0=(-407 (-563)) #0#) . T) ((#1=(-694) #1#) . T) (($ $) . T))
((((-316 |#1|)) . T) (($) . T))
(((|#1|) . T) (((-407 (-563))) |has| |#1| (-363)))
((((-858)) . T))
(|has| |#1| (-1093))
(((|#1|) . T))
-(((|#1|) -4032 (|has| |#2| (-367 |#1|)) (|has| |#2| (-417 |#1|))))
-(((|#1|) -4032 (|has| |#2| (-367 |#1|)) (|has| |#2| (-417 |#1|))))
+(((|#1|) -4034 (|has| |#2| (-367 |#1|)) (|has| |#2| (-417 |#1|))))
+(((|#1|) -4034 (|has| |#2| (-367 |#1|)) (|has| |#2| (-417 |#1|))))
(((|#2|) . T))
((((-407 (-563))) . T) (((-694)) . T) (($) . T))
((((-578)) . T))
@@ -2498,7 +2498,7 @@
(((|#1|) . T))
((((-563)) . T))
(((|#2|) . T) (((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((|#1|) . T) (($) . T) (((-563)) . T))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
(((|#2|) . T) (((-563)) |has| |#2| (-636 (-563))))
(((|#1| |#2|) . T))
((($) . T))
@@ -2536,7 +2536,7 @@
(|has| |#2| (-1018))
((($) . T))
(|has| |#1| (-905))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
((($) . T))
(((|#2|) . T))
(((|#1|) . T))
@@ -2544,9 +2544,9 @@
((($) . T))
(|has| |#1| (-363))
((((-906 |#1|)) . T))
-((($) -4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
((($ $) . T) ((#0=(-407 (-563)) #0#) . T))
-(-4032 (|has| |#1| (-368)) (|has| |#1| (-846)))
+(-4034 (|has| |#1| (-368)) (|has| |#1| (-846)))
(((|#1|) . T))
((((-767)) . T))
((((-858)) . T))
@@ -2557,16 +2557,16 @@
((((-563)) . T) (($) . T))
((((-563)) . T) (($) . T))
((((-767) |#1|) . T))
-(((|#2| (-240 (-3608 |#1|) (-767))) . T))
+(((|#2| (-240 (-3610 |#1|) (-767))) . T))
(((|#1| (-531 |#3|)) . T))
((((-407 (-563))) . T))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
((((-1151)) . T) (((-858)) . T))
-(((#0=(-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) #0#) |has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))))
+(((#0=(-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) #0#) |has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))))
((((-1151)) . T))
(|has| |#1| (-905))
(|has| |#2| (-363))
-(-4032 (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
((((-169 (-379))) . T) (((-225)) . T) (((-379)) . T))
((((-858)) . T))
(((|#1|) . T))
@@ -2583,11 +2583,11 @@
(|has| |#1| (-38 (-407 (-563))))
(|has| |#1| (-38 (-407 (-563))))
(|has| |#1| (-38 (-407 (-563))))
-(-4032 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)))
+(-4034 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)))
(|has| |#1| (-38 (-407 (-563))))
(-12 (|has| |#1| (-545)) (|has| |#1| (-824)))
((((-858)) . T))
-((((-1169)) -4032 (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))) (-12 (|has| |#1| (-363)) (|has| |#2| (-896 (-1169))))))
+((((-1169)) -4034 (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))) (-12 (|has| |#1| (-363)) (|has| |#2| (-896 (-1169))))))
(|has| |#1| (-363))
((((-1169)) -12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169)))))
(|has| |#1| (-363))
@@ -2598,7 +2598,7 @@
(((|#2|) |has| |#1| (-363)))
(((|#2|) |has| |#1| (-363)))
((((-563)) . T) (($) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(((|#1|) . T))
(((|#1|) |has| |#1| (-172)))
(((|#1|) . T))
@@ -2623,9 +2623,9 @@
((((-379)) -12 (|has| |#1| (-363)) (|has| |#2| (-882 (-379)))) (((-563)) -12 (|has| |#1| (-363)) (|has| |#2| (-882 (-563)))))
(|has| |#1| (-363))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
(|has| |#1| (-363))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
(|has| |#1| (-363))
(|has| |#1| (-555))
(((|#1|) . T))
@@ -2634,22 +2634,22 @@
((((-1151)) . T) (((-1169)) . T) (((-225)) . T) (((-563)) . T))
(((|#1|) . T))
((((-407 |#2|)) . T) (((-407 (-563))) . T) (($) . T) (((-563)) . T))
-(-4032 (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
(((|#2|) . T))
(((|#2|) . T))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-722)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
-((((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-722)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
+((((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(|has| |#1| (-38 (-407 (-563))))
(((|#1| |#2|) . T))
(|has| |#1| (-38 (-407 (-563))))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))
(|has| |#1| (-147))
((((-1151) |#1|) . T))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))
(|has| |#1| (-147))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))
(|has| |#1| (-147))
((((-580 |#1|)) . T))
((($) . T))
@@ -2657,7 +2657,7 @@
(|has| |#1| (-555))
(|has| |#1| (-38 (-407 (-563))))
(|has| |#1| (-38 (-407 (-563))))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-349)))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-349)))
(|has| |#1| (-147))
((((-858)) . T))
((($) . T))
@@ -2684,7 +2684,7 @@
((((-858)) . T))
((((-906 |#1|)) . T) (((-407 (-563))) . T) (($) . T) (((-563)) . T))
((((-536)) |has| |#1| (-611 (-536))))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
((((-114)) . T) ((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -2706,7 +2706,7 @@
((((-563)) . T))
((((-858)) . T))
((((-563)) . T))
-(-4032 (|has| |#2| (-789)) (|has| |#2| (-844)))
+(-4034 (|has| |#2| (-789)) (|has| |#2| (-844)))
((((-169 (-379))) . T) (((-225)) . T) (((-379)) . T))
((((-858)) . T))
((((-858)) . T))
@@ -2718,9 +2718,9 @@
(((|#1|) . T) (($) . T) (((-407 (-563))) . T))
(|has| |#1| (-363))
(|has| |#1| (-363))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-473)) (|has| |#1| (-722)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)) (|has| |#1| (-1105)) (|has| |#1| (-1093)))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-473)) (|has| |#1| (-722)) (|has| |#1| (-896 (-1169))) (|has| |#1| (-1045)) (|has| |#1| (-1105)) (|has| |#1| (-1093)))
(|has| |#1| (-1144))
((((-563) |#1|) . T))
(((|#1|) . T))
@@ -2740,8 +2740,8 @@
(((|#1|) . T))
(|has| |#1| (-555))
((((-407 |#2|)) . T) (((-407 (-563))) . T) (($) . T))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
((((-379)) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -2750,7 +2750,7 @@
(|has| |#1| (-555))
(|has| |#1| (-1093))
((((-776 |#1| (-860 |#2|))) |has| (-776 |#1| (-860 |#2|)) (-309 (-776 |#1| (-860 |#2|)))))
-(-4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
+(-4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
(((|#1|) . T))
(((|#2| |#3|) . T))
(((|#1|) . T))
@@ -2762,13 +2762,13 @@
(|has| |#2| (-363))
((((-580 |#1|)) . T) (((-407 (-563))) . T) (($) . T) (((-563)) . T))
((((-563)) . T) (((-407 (-563))) . T) (($) . T))
-((((-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) . T))
+((((-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) . T))
(((|#1|) . T))
(((|#1|) . T) (((-563)) . T))
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
((((-858)) . T))
((((-858)) . T))
-(-4032 (|has| |#3| (-789)) (|has| |#3| (-844)))
+(-4034 (|has| |#3| (-789)) (|has| |#3| (-844)))
((((-858)) . T))
((((-1113)) . T) (((-858)) . T))
((((-536)) . T) (((-858)) . T))
@@ -2779,12 +2779,12 @@
((((-563)) . T))
(((|#3|) . T))
((((-858)) . T))
-(-4032 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)))
-((((-563)) . T) (((-407 (-563))) -4032 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563))))) ((|#2|) . T) (($) -4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) (((-860 |#1|)) . T))
-((((-1118 |#1| |#2|)) . T) ((|#2|) . T) (($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) (((-563)) . T))
-((((-1165 |#1|)) . T) (((-563)) . T) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) (((-1075)) . T) ((|#1|) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))
-(-4032 (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1045)))
-((((-1118 |#1| (-1169))) . T) (((-563)) . T) (((-1081 (-1169))) . T) (($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) (((-1169)) . T))
+(-4034 (|has| |#1| (-307)) (|has| |#1| (-363)) (|has| |#1| (-349)))
+((((-563)) . T) (((-407 (-563))) -4034 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563))))) ((|#2|) . T) (($) -4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) (((-860 |#1|)) . T))
+((((-1118 |#1| |#2|)) . T) ((|#2|) . T) (($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) (((-563)) . T))
+((((-1165 |#1|)) . T) (((-563)) . T) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) (((-1075)) . T) ((|#1|) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))
+(-4034 (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-555)) (|has| |#1| (-1045)))
+((((-1118 |#1| (-1169))) . T) (((-563)) . T) (((-1081 (-1169))) . T) (($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) (((-1169)) . T))
(((#0=(-580 |#1|) #0#) . T) (($ $) . T) ((#1=(-407 (-563)) #1#) . T))
((($ $) . T) ((#0=(-407 (-563)) #0#) . T))
(((|#1|) |has| |#1| (-172)))
@@ -2792,13 +2792,13 @@
((((-580 |#1|)) . T) (($) . T) (((-407 (-563))) . T))
((($) . T) (((-407 (-563))) . T))
((($) . T) (((-407 (-563))) . T))
-(((|#2|) |has| |#2| (-6 (-4409 "*"))))
+(((|#2|) |has| |#2| (-6 (-4410 "*"))))
(((|#1|) . T))
((((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((|#1|) . T) (((-563)) . T))
(((|#1|) . T))
((((-858)) . T))
((((-294 |#3|)) . T))
-(((#0=(-407 (-563)) #0#) |has| |#2| (-38 (-407 (-563)))) ((|#2| |#2|) . T) (($ $) -4032 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+(((#0=(-407 (-563)) #0#) |has| |#2| (-38 (-407 (-563)))) ((|#2| |#2|) . T) (($ $) -4034 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
(((|#2| |#2|) . T) ((|#6| |#6|) . T))
(((|#1|) . T))
((($) . T) (((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) . T))
@@ -2806,21 +2806,21 @@
(((|#1|) . T) (((-407 (-563))) . T) (($) . T))
(((|#1|) . T) (((-407 (-563))) . T) (($) . T))
(((|#1|) . T) (((-407 (-563))) . T) (($) . T))
-((($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
-((($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
+((($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
+((($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
(((|#2|) . T))
-((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) . T) (($) -4032 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) . T) (($) -4034 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
(((|#2|) . T) ((|#6|) . T))
-((($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
+((($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
((((-858)) . T))
-((($) -4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
-((($) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
(|has| |#2| (-905))
(|has| |#1| (-905))
-((($) -4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
((((-858)) . T))
(((|#1|) . T))
-((((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) . T))
+((((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -2835,10 +2835,10 @@
(((|#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))
(((#0=(-407 (-563)) #0#) . T))
((((-407 (-563))) . T))
-(-4032 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
(((|#1|) . T))
(((|#1|) . T))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
((((-407 (-563))) . T) (((-563)) . T) (($) . T))
((((-536)) . T))
((((-858)) . T))
@@ -2855,12 +2855,12 @@
((($ $) . T) ((#0=(-407 (-563)) #0#) . T))
((((-1169)) |has| |#1| (-896 (-1169))))
((((-906 |#1|)) . T) (((-407 (-563))) . T) (($) . T))
-((($) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) . T))
-(((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))) ((|#1| |#1|) . T) (($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-555))))
+((($) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) . T))
+(((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))) ((|#1| |#1|) . T) (($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-555))))
((($) . T) (((-407 (-563))) . T))
(((|#1|) . T) (((-407 (-563))) . T) (((-563)) . T) (($) . T))
(((|#2|) |has| |#2| (-1045)) (((-563)) -12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045))))
-((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) . T) (($) -4032 (|has| |#1| (-172)) (|has| |#1| (-555))))
+((((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) . T) (($) -4034 (|has| |#1| (-172)) (|has| |#1| (-555))))
(|has| |#1| (-555))
(((|#1|) |has| |#1| (-363)))
((((-563)) . T))
@@ -2879,8 +2879,8 @@
((((-858)) . T))
(|has| |#2| (-816))
(|has| |#2| (-816))
-((((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#2|) |has| |#1| (-363)) (($) . T) ((|#1|) . T))
-(((|#1|) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) . T))
+((((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#2|) |has| |#1| (-363)) (($) . T) ((|#1|) . T))
+(((|#1|) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) . T))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(((|#1|) . T) (((-563)) |has| |#1| (-1034 (-563))) (((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))))
((((-563)) |has| |#1| (-882 (-563))) (((-379)) |has| |#1| (-882 (-379))))
@@ -2906,12 +2906,12 @@
(((|#2| (-767)) . T))
((((-1169)) . T))
((((-866 |#1|)) . T))
-(-4032 (|has| |#3| (-25)) (|has| |#3| (-131)) (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-789)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
-(-4032 (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
+(-4034 (|has| |#3| (-25)) (|has| |#3| (-131)) (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-789)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
+(-4034 (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
((((-858)) . T))
(((|#1|) . T))
-(-4032 (|has| |#2| (-789)) (|has| |#2| (-844)))
-(-4032 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))) (-12 (|has| |#1| (-846)) (|has| |#2| (-846))))
+(-4034 (|has| |#2| (-789)) (|has| |#2| (-844)))
+(-4034 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))) (-12 (|has| |#1| (-846)) (|has| |#2| (-846))))
((((-866 |#1|)) . T))
(((|#1|) . T))
(|has| |#1| (-368))
@@ -2937,7 +2937,7 @@
(((|#1|) . T))
((((-858)) . T))
(|has| |#2| (-905))
-((((-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) . T))
+((((-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) . T))
((((-536)) |has| |#2| (-611 (-536))) (((-888 (-379))) |has| |#2| (-611 (-888 (-379)))) (((-888 (-563))) |has| |#2| (-611 (-888 (-563)))))
((((-858)) . T))
((((-858)) . T))
@@ -2978,12 +2978,12 @@
((((-407 |#2|) |#3|) . T))
(((|#1|) . T))
(|has| |#1| (-1093))
-(((|#2| (-482 (-3608 |#1|) (-767))) . T))
+(((|#2| (-482 (-3610 |#1|) (-767))) . T))
((((-563) |#1|) . T))
((((-1151)) . T) (((-858)) . T))
(((|#2| |#2|) . T))
(((|#1| (-531 (-1169))) . T))
-(-4032 (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
((((-563)) . T))
(((|#2|) . T))
(((|#2|) . T))
@@ -2993,9 +2993,9 @@
((($) . T) (((-407 (-563))) . T))
((($) . T))
((($) . T))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
(((|#1|) . T))
-((($) -4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
((((-858)) . T))
((((-144)) . T))
(((|#1|) . T) (((-407 (-563))) . T))
@@ -3034,31 +3034,31 @@
(((|#1|) . T))
(|has| |#1| (-233))
(((|#1| (-531 |#3|)) . T))
-(((|#2| (-240 (-3608 |#1|) (-767))) . T))
+(((|#2| (-240 (-3610 |#1|) (-767))) . T))
(|has| |#1| (-368))
(|has| |#1| (-368))
(|has| |#1| (-368))
(((|#1|) . T) (($) . T))
(((|#1| (-531 |#2|)) . T))
-(-4032 (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
(((|#1| (-767)) . T))
(|has| |#1| (-555))
-(-4032 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
(-12 (|has| |#1| (-21)) (|has| |#2| (-21)))
((((-858)) . T))
((((-563)) . T) (((-407 (-563))) . T) (($) . T))
-(-4032 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789))))
-(-4032 (|has| |#3| (-131)) (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-789)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-722)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789))))
+(-4034 (|has| |#3| (-131)) (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-789)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-722)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
(((|#1|) |has| |#1| (-172)))
(((|#4|) |has| |#4| (-1045)))
(((|#3|) |has| |#3| (-1045)))
(-12 (|has| |#1| (-363)) (|has| |#2| (-816)))
(-12 (|has| |#1| (-363)) (|has| |#2| (-816)))
-((((-563)) . T) (((-407 (-563))) -4032 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563))))) ((|#2|) . T) (($) -4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) (((-860 |#1|)) . T))
-((((-1118 |#1| |#2|)) . T) (((-563)) . T) ((|#3|) . T) (($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) ((|#2|) . T))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
+((((-563)) . T) (((-407 (-563))) -4034 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563))))) ((|#2|) . T) (($) -4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) (((-860 |#1|)) . T))
+((((-1118 |#1| |#2|)) . T) (((-563)) . T) ((|#3|) . T) (($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))) ((|#2|) . T))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
((((-536)) |has| |#1| (-611 (-536))))
(((|#1|) . T) (((-407 (-563))) . T) (($) . T) (((-563)) . T))
(((|#1|) . T) (((-407 (-563))) . T) (($) . T) (((-563)) . T))
@@ -3077,14 +3077,14 @@
(((|#2|) |has| |#2| (-1045)) (((-563)) -12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045))))
(((|#1|) . T))
(|has| |#2| (-363))
-(((#0=(-407 (-563)) #0#) |has| |#2| (-38 (-407 (-563)))) ((|#2| |#2|) . T) (($ $) -4032 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
-((($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
+(((#0=(-407 (-563)) #0#) |has| |#2| (-38 (-407 (-563)))) ((|#2| |#2|) . T) (($ $) -4034 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+((($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1| |#1|) . T) ((#0=(-407 (-563)) #0#) |has| |#1| (-38 (-407 (-563)))))
(((|#1| |#1|) . T) (($ $) . T) ((#0=(-407 (-563)) #0#) . T))
(((|#1| |#1|) . T) (($ $) . T) ((#0=(-407 (-563)) #0#) . T))
(((|#1| |#1|) . T) (($ $) . T) ((#0=(-407 (-563)) #0#) . T))
(((|#2| |#2|) . T))
-((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) . T) (($) -4032 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
-((($) -4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) . T) (($) -4034 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+((($) -4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
(((|#1|) . T) (($) . T) (((-407 (-563))) . T))
(((|#1|) . T) (($) . T) (((-407 (-563))) . T))
(((|#1|) . T) (($) . T) (((-407 (-563))) . T))
@@ -3107,7 +3107,7 @@
((((-858)) . T) (((-1174)) . T))
((((-858)) . T) (((-1174)) . T))
((((-858)) . T) (((-1174)) . T))
-((((-640 |#1|)) . T) (((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
+((((-640 |#1|)) . T) (((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
((((-1174)) . T))
((((-1174)) . T))
((((-1174)) . T))
@@ -3120,23 +3120,23 @@
((((-1207)) . T) (((-858)) . T) (((-1174)) . T))
((((-1174)) . T))
((((-1174)) . T))
-((((-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) |has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))))
-(-4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
+((((-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) |has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))))
+(-4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
((((-563) |#1|) . T))
((((-563) |#1|) . T))
((((-563) |#1|) . T))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
((((-563) |#1|) . T))
(((|#1|) . T))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
-((($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-563)) . T) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) |has| |#1| (-172)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+((($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-563)) . T) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#1|) |has| |#1| (-172)))
((((-1169)) |has| |#1| (-896 (-1169))) (((-814 (-1169))) . T))
-(-4032 (|has| |#3| (-131)) (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-789)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
+(-4034 (|has| |#3| (-131)) (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-789)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
((((-815 |#1|)) . T))
(((|#1| |#2|) . T))
((((-858)) . T))
-(-4032 (|has| |#3| (-172)) (|has| |#3| (-722)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
+(-4034 (|has| |#3| (-172)) (|has| |#3| (-722)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
(((|#1| |#2|) . T))
(|has| |#1| (-38 (-407 (-563))))
((((-858)) . T))
@@ -3144,19 +3144,19 @@
(((|#1|) |has| |#1| (-172)) (($) |has| |#1| (-555)) (((-407 (-563))) |has| |#1| (-555)))
(((|#2|) . T) (((-563)) |has| |#2| (-636 (-563))))
(|has| |#1| (-363))
-(-4032 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (-12 (|has| |#1| (-363)) (|has| |#2| (-233))))
+(-4034 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (-12 (|has| |#1| (-363)) (|has| |#2| (-233))))
(|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))
(|has| |#1| (-363))
(((|#1|) . T))
-(((#0=(-407 (-563)) #0#) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((|#1| |#1|) . T))
+(((#0=(-407 (-563)) #0#) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((|#1| |#1|) . T))
((((-563) |#1|) . T))
((((-316 |#1|)) . T))
(((#0=(-694) (-1165 #0#)) . T))
-((((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((|#1|) . T))
+((((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((|#1|) . T))
(((|#1| |#2| |#3| |#4|) . T))
(|has| |#1| (-844))
-(((|#2|) . T) (((-1169)) -12 (|has| |#1| (-363)) (|has| |#2| (-1034 (-1169)))) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-563)) . T) ((|#1|) |has| |#1| (-172)))
-(((|#2|) . T) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (((-563)) . T) (($) -4032 (|has| |#1| (-363)) (|has| |#1| (-555))))
+(((|#2|) . T) (((-1169)) -12 (|has| |#1| (-363)) (|has| |#2| (-1034 (-1169)))) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))) (((-563)) . T) ((|#1|) |has| |#1| (-172)))
+(((|#2|) . T) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) (((-563)) . T) (($) -4034 (|has| |#1| (-363)) (|has| |#1| (-555))))
((($ $) . T) ((#0=(-860 |#1|) $) . T) ((#0# |#2|) . T))
((((-1118 |#1| (-1169))) . T) (((-814 (-1169))) . T) ((|#1|) . T) (((-563)) |has| |#1| (-1034 (-563))) (((-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) (((-1169)) . T))
((($) . T))
@@ -3172,12 +3172,12 @@
(((#0=(-1243 |#1| |#2| |#3| |#4|)) |has| #0# (-309 #0#)))
((($) . T))
(((|#1|) . T))
-((($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((#0=(-407 (-563)) #0#) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#2| |#2|) |has| |#1| (-363)) ((|#1| |#1|) . T))
-(((|#1| |#1|) . T) (($ $) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((#0=(-407 (-563)) #0#) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))))
+((($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((#0=(-407 (-563)) #0#) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#2| |#2|) |has| |#1| (-363)) ((|#1| |#1|) . T))
+(((|#1| |#1|) . T) (($ $) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) ((#0=(-407 (-563)) #0#) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))))
(|has| |#2| (-233))
(|has| $ (-147))
((((-858)) . T))
-((($) . T) (((-407 (-563))) -4032 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
+((($) . T) (((-407 (-563))) -4034 (|has| |#1| (-363)) (|has| |#1| (-349))) ((|#1|) . T))
((((-858)) . T))
(|has| |#1| (-844))
((((-129)) . T))
@@ -3191,24 +3191,24 @@
(((|#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(((|#4|) . T))
(|has| |#1| (-555))
-((($) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#2|) |has| |#1| (-363)) ((|#1|) . T))
-((((-1169)) -4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))
-(((|#1|) . T) (($) -4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))))
+((($) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))) ((|#2|) |has| |#1| (-363)) ((|#1|) . T))
+((((-1169)) -4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))
+(((|#1|) . T) (($) -4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-555))) (((-407 (-563))) -4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-363))))
((((-1169)) -12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169)))))
((((-1169)) -12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169)))))
(((|#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))
((((-563) |#1|) . T))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
(((|#1|) . T))
(((|#1| (-531 (-814 (-1169)))) . T))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
((((-563)) . T) ((|#2|) . T) (($) . T) (((-407 (-563))) . T) (((-1169)) |has| |#2| (-1034 (-1169))))
(((|#1|) . T))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
(((|#1|) . T))
-(-4032 (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
-(-4032 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789))))
+(-4034 (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789))))
((((-1249 |#1| |#2| |#3|)) |has| |#1| (-363)))
((($) . T) (((-866 |#1|)) . T) (((-407 (-563))) . T))
((((-1249 |#1| |#2| |#3|)) |has| |#1| (-363)))
@@ -3217,15 +3217,15 @@
(((|#1|) . T))
(((|#1|) . T))
((((-407 |#2|)) . T))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-349)))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-349)))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
((((-536)) |has| |#1| (-611 (-536))))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
((((-536)) |has| |#1| (-611 (-536))))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
((((-536)) |has| |#1| (-611 (-536))))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
(((|#1|) . T))
(((|#2| |#2|) . T) ((#0=(-407 (-563)) #0#) . T) (($ $) . T))
((((-563)) . T))
@@ -3255,17 +3255,17 @@
((((-129)) . T))
((((-858)) . T))
((((-1249 |#1| |#2| |#3|)) |has| |#1| (-363)))
-((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
+((((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) |has| |#2| (-172)) (($) -4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))))
(((|#2|) . T) ((|#6|) . T))
((($) . T) (((-407 (-563))) |has| |#2| (-38 (-407 (-563)))) ((|#2|) . T))
(|has| |#1| (-363))
-((($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
((((-1097)) . T))
((((-858)) . T))
-((($) -4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
((($) . T) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((|#1|) . T))
((($) . T))
-((($) -4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
+((($) -4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905))) ((|#1|) |has| |#1| (-172)) (((-407 (-563))) |has| |#1| (-38 (-407 (-563)))))
((((-1249 |#1| |#2| |#3|)) . T) (((-1221 |#1| |#2| |#3|)) . T))
((((-1169)) . T) (((-858)) . T))
(|has| |#2| (-905))
@@ -3275,7 +3275,7 @@
(((|#1|) . T))
(((|#1| |#1|) |has| |#1| (-172)))
((((-694)) . T))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
((((-1174)) . T))
(((|#1|) |has| |#1| (-172)))
((((-1174)) . T))
@@ -3287,13 +3287,13 @@
((((-1174)) . T))
((((-1174)) . T))
((((-1174)) . T))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-349)))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-349)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-349)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-349)))
((((-1174)) . T))
((((-1174)) . T))
(|has| |#1| (-363))
(|has| |#1| (-363))
-(-4032 (|has| |#1| (-172)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-172)) (|has| |#1| (-555)))
(((|#1| (-563)) . T))
(((|#1| (-407 (-563))) . T))
(((|#1| (-767)) . T))
@@ -3308,16 +3308,16 @@
((((-888 (-379))) . T) (((-888 (-563))) . T) (((-1169)) . T) (((-536)) . T))
(((|#1|) . T))
((((-858)) . T))
-(-4032 (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
-(-4032 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789))))
+(-4034 (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-363)) (|has| |#2| (-789)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789))))
((((-563)) . T))
((((-563)) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(((|#1| |#2|) . T))
(((|#1|) . T))
-(-4032 (|has| |#2| (-172)) (|has| |#2| (-722)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
+(-4034 (|has| |#2| (-172)) (|has| |#2| (-722)) (|has| |#2| (-844)) (|has| |#2| (-1045)))
((((-1169)) -12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045))))
-(-4032 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722))))
+(-4034 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722))))
(|has| |#1| (-145))
(|has| |#1| (-147))
(|has| |#1| (-363))
@@ -3343,7 +3343,7 @@
(((|#1| |#2|) . T))
((((-563)) . T) ((|#2|) |has| |#2| (-172)))
((((-114)) . T) ((|#1|) . T) (((-563)) . T))
-(-4032 (|has| |#1| (-349)) (|has| |#1| (-368)))
+(-4034 (|has| |#1| (-349)) (|has| |#1| (-368)))
(((|#1| |#2|) . T))
((((-225)) . T))
((((-407 (-563))) . T) (($) . T) (((-563)) . T))
@@ -3355,7 +3355,7 @@
(((|#1|) . T))
(((|#1|) . T))
((((-536)) |has| |#1| (-611 (-536))))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-846)) (|has| |#1| (-1093))))
((($) . T) (((-407 (-563))) . T))
(|has| |#1| (-905))
(|has| |#1| (-905))
@@ -3366,14 +3366,14 @@
(((|#1| |#1|) |has| |#1| (-172)))
(((|#1|) . T) (((-563)) . T))
((((-1174)) . T))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-555)))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-844)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-555)))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-844)))
(((|#2|) . T))
-(-4032 (|has| |#1| (-21)) (|has| |#1| (-844)))
+(-4034 (|has| |#1| (-21)) (|has| |#1| (-844)))
(((|#1|) |has| |#1| (-172)))
(((|#1|) . T))
(((|#1|) . T))
-((((-858)) -4032 (-12 (|has| |#1| (-610 (-858))) (|has| |#2| (-610 (-858)))) (-12 (|has| |#1| (-1093)) (|has| |#2| (-1093)))))
+((((-858)) -4034 (-12 (|has| |#1| (-610 (-858))) (|has| |#2| (-610 (-858)))) (-12 (|has| |#1| (-1093)) (|has| |#2| (-1093)))))
((((-407 |#2|) |#3|) . T))
((((-407 (-563))) . T) (($) . T))
(|has| |#1| (-38 (-407 (-563))))
@@ -3385,19 +3385,19 @@
(((|#1|) . T) (((-407 (-563))) . T) (((-563)) . T) (($) . T))
(((#0=(-563) #0#) . T))
((($) . T) (((-407 (-563))) . T))
-(-4032 (|has| |#4| (-172)) (|has| |#4| (-722)) (|has| |#4| (-844)) (|has| |#4| (-1045)))
-(-4032 (|has| |#3| (-172)) (|has| |#3| (-722)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
+(-4034 (|has| |#4| (-172)) (|has| |#4| (-722)) (|has| |#4| (-844)) (|has| |#4| (-1045)))
+(-4034 (|has| |#3| (-172)) (|has| |#3| (-722)) (|has| |#3| (-844)) (|has| |#3| (-1045)))
((((-858)) . T) (((-1174)) . T))
(|has| |#4| (-789))
-(-4032 (|has| |#4| (-789)) (|has| |#4| (-844)))
+(-4034 (|has| |#4| (-789)) (|has| |#4| (-844)))
(|has| |#4| (-844))
(|has| |#3| (-789))
((((-1174)) . T))
-(-4032 (|has| |#3| (-789)) (|has| |#3| (-844)))
+(-4034 (|has| |#3| (-789)) (|has| |#3| (-844)))
(|has| |#3| (-844))
((((-563)) . T))
(((|#2|) . T))
-((((-1169)) -4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))
+((((-1169)) -4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))
((((-1169)) -12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169)))))
((((-1169)) -12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169)))))
(((|#1| |#1|) . T) (($ $) . T))
@@ -3412,11 +3412,11 @@
((((-1167 |#1| |#2| |#3|)) |has| |#1| (-363)))
((((-1133 |#1| |#2|)) . T))
((((-1167 |#1| |#2| |#3|)) |has| |#1| (-363)))
-(((|#2|) . T) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
-((((-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) . T))
+(((|#2|) . T) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
+((((-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) . T))
((($) . T))
(|has| |#1| (-1018))
-(((|#2|) . T) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
((((-858)) . T))
((((-536)) |has| |#2| (-611 (-536))) (((-888 (-563))) |has| |#2| (-611 (-888 (-563)))) (((-888 (-379))) |has| |#2| (-611 (-888 (-379)))) (((-379)) . #0=(|has| |#2| (-1018))) (((-225)) . #0#))
((((-294 |#3|)) . T))
@@ -3432,15 +3432,15 @@
((((-1167 |#1| |#2| |#3|)) . T))
((((-1167 |#1| |#2| |#3|)) . T) (((-1160 |#1| |#2| |#3|)) . T))
((((-858)) . T))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
((((-563) |#1|) . T))
((((-1167 |#1| |#2| |#3|)) |has| |#1| (-363)))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1|) . T))
(((|#2|) . T))
(|has| |#2| (-363))
-(((|#3|) . T) ((|#2|) . T) (($) -4032 (|has| |#4| (-172)) (|has| |#4| (-844)) (|has| |#4| (-1045))) ((|#4|) -4032 (|has| |#4| (-172)) (|has| |#4| (-363)) (|has| |#4| (-1045))))
-(((|#2|) . T) (($) -4032 (|has| |#3| (-172)) (|has| |#3| (-844)) (|has| |#3| (-1045))) ((|#3|) -4032 (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-1045))))
+(((|#3|) . T) ((|#2|) . T) (($) -4034 (|has| |#4| (-172)) (|has| |#4| (-844)) (|has| |#4| (-1045))) ((|#4|) -4034 (|has| |#4| (-172)) (|has| |#4| (-363)) (|has| |#4| (-1045))))
+(((|#2|) . T) (($) -4034 (|has| |#3| (-172)) (|has| |#3| (-844)) (|has| |#3| (-1045))) ((|#3|) -4034 (|has| |#3| (-172)) (|has| |#3| (-363)) (|has| |#3| (-1045))))
(((|#1|) . T))
(((|#1|) . T))
(|has| |#1| (-363))
@@ -3455,7 +3455,7 @@
((((-187)) . T) (((-858)) . T))
((((-858)) . T))
(((|#1|) . T))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
((((-129)) . T) (((-858)) . T))
((((-563) |#1|) . T))
((((-129)) . T))
@@ -3464,13 +3464,13 @@
(((|#1|) . T))
(((|#2| $) -12 (|has| |#1| (-363)) (|has| |#2| (-286 |#2| |#2|))) (($ $) . T))
((($ $) . T))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-905)))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-452)) (|has| |#1| (-905)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
((((-858)) . T))
((((-858)) . T))
((((-858)) . T))
(((|#1| (-531 |#2|)) . T))
-((((-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) . T))
+((((-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) . T))
((((-563) (-129)) . T))
(((|#1| (-563)) . T))
(((|#1| (-407 (-563))) . T))
@@ -3484,8 +3484,8 @@
((((-1174)) . T))
((((-858)) . T) (((-1174)) . T))
((((-858)) . T) (((-1174)) . T))
-(-4032 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
-(-4032 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
+(-4034 (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905)))
+(-4034 (|has| |#1| (-452)) (|has| |#1| (-555)) (|has| |#1| (-905)))
((($) . T))
(((|#2| (-531 (-860 |#1|))) . T))
((((-1174)) . T))
@@ -3500,13 +3500,13 @@
((((-1174)) . T))
((((-858)) . T) (((-1174)) . T))
((((-1174)) . T))
-((((-858)) -4032 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
+((((-858)) -4034 (|has| |#1| (-610 (-858))) (|has| |#1| (-1093))))
(((|#1|) . T))
(((|#2| (-767)) . T))
(((|#1| |#2|) . T))
((((-1151) |#1|) . T))
((((-407 |#2|)) . T))
-((((-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T))
+((((-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T))
(|has| |#1| (-555))
(|has| |#1| (-555))
((($) . T) ((|#2|) . T))
@@ -3515,14 +3515,14 @@
((((-563)) . T) (($) . T))
(((|#2| $) |has| |#2| (-286 |#2| |#2|)))
(((|#1| (-640 |#1|)) |has| |#1| (-844)))
-(-4032 (|has| |#1| (-233)) (|has| |#1| (-349)))
-(-4032 (|has| |#1| (-363)) (|has| |#1| (-349)))
+(-4034 (|has| |#1| (-233)) (|has| |#1| (-349)))
+(-4034 (|has| |#1| (-363)) (|has| |#1| (-349)))
((((-1253 |#1|)) . T) (((-563)) . T) ((|#2|) . T) (((-407 (-563))) |has| |#2| (-1034 (-407 (-563)))))
(|has| |#1| (-1093))
(((|#1|) . T))
-((((-1253 |#1|)) . T) (((-563)) . T) (($) -4032 (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) (((-1075)) . T) ((|#2|) . T) (((-407 (-563))) -4032 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563))))))
+((((-1253 |#1|)) . T) (((-563)) . T) (($) -4034 (|has| |#2| (-363)) (|has| |#2| (-452)) (|has| |#2| (-555)) (|has| |#2| (-905))) (((-1075)) . T) ((|#2|) . T) (((-407 (-563))) -4034 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563))))))
((((-407 (-563))) . T) (($) . T))
-((((-995 |#1|)) . T) ((|#1|) . T) (((-563)) -4032 (|has| (-995 |#1|) (-1034 (-563))) (|has| |#1| (-1034 (-563)))) (((-407 (-563))) -4032 (|has| (-995 |#1|) (-1034 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))
+((((-995 |#1|)) . T) ((|#1|) . T) (((-563)) -4034 (|has| (-995 |#1|) (-1034 (-563))) (|has| |#1| (-1034 (-563)))) (((-407 (-563))) -4034 (|has| (-995 |#1|) (-1034 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
(((|#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))
@@ -3534,10 +3534,10 @@
(((|#1| |#2| |#3| |#4|) . T))
(((#0=(-1133 |#1| |#2|) #0#) |has| (-1133 |#1| |#2|) (-309 (-1133 |#1| |#2|))))
(((|#1|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((#0=(-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) #0#) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((#0=(-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) #0#) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))))
(((#0=(-116 |#1|)) |has| #0# (-309 #0#)))
((($ $) . T))
-(-4032 (|has| |#1| (-846)) (|has| |#1| (-1093)))
+(-4034 (|has| |#1| (-846)) (|has| |#1| (-1093)))
((($ $) . T) ((#0=(-860 |#1|) $) . T) ((#0# |#2|) . T))
((($ $) . T) ((|#2| $) |has| |#1| (-233)) ((|#2| |#1|) |has| |#1| (-233)) ((|#3| |#1|) . T) ((|#3| $) . T))
-(((-478 . -1093) T) ((-264 . -514) 161982) ((-247 . -514) 161925) ((-245 . -1093) 161875) ((-570 . -111) 161860) ((-531 . -23) T) ((-138 . -1093) T) ((-137 . -1093) T) ((-117 . -309) 161817) ((-133 . -1093) T) ((-479 . -514) 161609) ((-672 . -613) 161593) ((-689 . -102) T) ((-1134 . -514) 161512) ((-390 . -131) T) ((-1270 . -972) 161481) ((-31 . -93) T) ((-599 . -489) 161465) ((-618 . -131) T) ((-815 . -842) T) ((-523 . -57) 161415) ((-59 . -514) 161348) ((-519 . -514) 161281) ((-418 . -896) 161240) ((-169 . -1045) T) ((-516 . -514) 161173) ((-497 . -514) 161106) ((-496 . -514) 161039) ((-795 . -1034) 160822) ((-694 . -38) 160787) ((-1230 . -613) 160535) ((-343 . -349) T) ((-1087 . -1086) 160519) ((-1087 . -1093) 160497) ((-851 . -613) 160394) ((-169 . -243) 160345) ((-169 . -233) 160296) ((-1087 . -1088) 160254) ((-868 . -286) 160212) ((-225 . -791) T) ((-225 . -788) T) ((-689 . -284) NIL) ((-570 . -613) 160184) ((-1143 . -1184) 160163) ((-407 . -988) 160147) ((-696 . -21) T) ((-696 . -25) T) ((-1272 . -643) 160121) ((-316 . -160) 160100) ((-316 . -143) 160079) ((-1143 . -107) 160029) ((-134 . -25) T) ((-40 . -231) 160006) ((-116 . -21) T) ((-116 . -25) T) ((-605 . -288) 159982) ((-475 . -288) 159961) ((-1230 . -326) 159938) ((-1230 . -1045) T) ((-851 . -1045) T) ((-795 . -338) 159922) ((-139 . -185) T) ((-117 . -1144) NIL) ((-91 . -610) 159854) ((-477 . -131) T) ((-1230 . -233) T) ((-1089 . -490) 159835) ((-1089 . -610) 159801) ((-1083 . -490) 159782) ((-1083 . -610) 159748) ((-591 . -1208) T) ((-1067 . -490) 159729) ((-570 . -1045) T) ((-1067 . -610) 159695) ((-657 . -713) 159679) ((-1060 . -490) 159660) ((-1060 . -610) 159626) ((-954 . -288) 159603) ((-60 . -34) T) ((-1056 . -791) T) ((-1056 . -788) T) ((-1032 . -490) 159584) ((-1015 . -490) 159565) ((-812 . -722) T) ((-727 . -47) 159530) ((-620 . -38) 159517) ((-355 . -290) T) ((-352 . -290) T) ((-344 . -290) T) ((-264 . -290) 159448) ((-247 . -290) 159379) ((-1032 . -610) 159345) ((-1020 . -102) T) ((-1015 . -610) 159311) ((-623 . -490) 159292) ((-413 . -722) T) ((-117 . -38) 159237) ((-483 . -490) 159218) ((-623 . -610) 159184) ((-413 . -473) T) ((-218 . -490) 159165) ((-483 . -610) 159131) ((-354 . -102) T) ((-218 . -610) 159097) ((-1202 . -1052) T) ((-707 . -1052) T) ((-1167 . -47) 159074) ((-1166 . -47) 159044) ((-1160 . -47) 159021) ((-128 . -288) 158996) ((-1031 . -151) 158942) ((-906 . -290) T) ((-1119 . -47) 158914) ((-689 . -309) NIL) ((-515 . -610) 158896) ((-510 . -610) 158878) ((-508 . -610) 158860) ((-327 . -1093) 158810) ((-708 . -452) 158741) ((-48 . -102) T) ((-1241 . -286) 158726) ((-1220 . -286) 158646) ((-640 . -661) 158630) ((-640 . -646) 158614) ((-339 . -21) T) ((-339 . -25) T) ((-40 . -349) NIL) ((-174 . -21) T) ((-174 . -25) T) ((-640 . -373) 158598) ((-602 . -490) 158580) ((-599 . -286) 158557) ((-602 . -610) 158524) ((-388 . -102) T) ((-1113 . -143) T) ((-126 . -610) 158456) ((-870 . -1093) T) ((-653 . -411) 158440) ((-710 . -610) 158422) ((-249 . -610) 158389) ((-187 . -610) 158371) ((-162 . -610) 158353) ((-157 . -610) 158335) ((-1272 . -722) T) ((-1095 . -34) T) ((-867 . -791) NIL) ((-867 . -788) NIL) ((-854 . -846) T) ((-727 . -882) NIL) ((-1281 . -131) T) ((-381 . -131) T) ((-888 . -613) 158303) ((-900 . -102) T) ((-727 . -1034) 158179) ((-531 . -131) T) ((-1080 . -411) 158163) ((-996 . -489) 158147) ((-117 . -400) 158124) ((-1160 . -1208) 158103) ((-778 . -411) 158087) ((-776 . -411) 158071) ((-939 . -34) T) ((-689 . -1144) NIL) ((-251 . -643) 157906) ((-250 . -643) 157728) ((-813 . -916) 157707) ((-454 . -411) 157691) ((-599 . -19) 157675) ((-1139 . -1201) 157644) ((-1160 . -882) NIL) ((-1160 . -880) 157596) ((-599 . -601) 157573) ((-1194 . -610) 157505) ((-1168 . -610) 157487) ((-62 . -395) T) ((-1166 . -1034) 157422) ((-1160 . -1034) 157388) ((-689 . -38) 157338) ((-474 . -286) 157323) ((-1214 . -610) 157305) ((-727 . -377) 157289) ((-834 . -610) 157271) ((-653 . -1052) T) ((-1241 . -998) 157237) ((-1220 . -998) 157203) ((-1081 . -613) 157187) ((-1057 . -1184) 157162) ((-1069 . -613) 157139) ((-868 . -611) 156946) ((-868 . -610) 156928) ((-1181 . -489) 156865) ((-418 . -1018) 156843) ((-48 . -309) 156830) ((-1057 . -107) 156776) ((-479 . -489) 156713) ((-520 . -1208) T) ((-1160 . -338) 156665) ((-1134 . -489) 156636) ((-1160 . -377) 156588) ((-1080 . -1052) T) ((-437 . -102) T) ((-183 . -1093) T) ((-251 . -34) T) ((-250 . -34) T) ((-778 . -1052) T) ((-776 . -1052) T) ((-727 . -896) 156565) ((-454 . -1052) T) ((-59 . -489) 156549) ((-1030 . -1051) 156523) ((-519 . -489) 156507) ((-516 . -489) 156491) ((-497 . -489) 156475) ((-496 . -489) 156459) ((-245 . -514) 156392) ((-1030 . -111) 156359) ((-1167 . -896) 156272) ((-1166 . -896) 156178) ((-1160 . -896) 156011) ((-1119 . -896) 155995) ((-665 . -1105) T) ((-354 . -1144) T) ((-641 . -93) T) ((-322 . -1051) 155977) ((-251 . -787) 155956) ((-251 . -790) 155907) ((-31 . -490) 155888) ((-251 . -789) 155867) ((-250 . -787) 155846) ((-250 . -790) 155797) ((-250 . -789) 155776) ((-31 . -610) 155742) ((-50 . -1052) T) ((-251 . -722) 155652) ((-250 . -722) 155562) ((-1202 . -1093) T) ((-665 . -23) T) ((-580 . -1052) T) ((-518 . -1052) T) ((-379 . -1051) 155527) ((-322 . -111) 155502) ((-73 . -383) T) ((-73 . -395) T) ((-1020 . -38) 155439) ((-689 . -400) 155421) ((-99 . -102) T) ((-707 . -1093) T) ((-999 . -145) 155393) ((-999 . -147) 155365) ((-379 . -111) 155321) ((-319 . -1212) 155300) ((-474 . -998) 155266) ((-354 . -38) 155231) ((-40 . -370) 155203) ((-869 . -610) 155075) ((-127 . -125) 155059) ((-121 . -125) 155043) ((-832 . -1051) 155013) ((-829 . -21) 154965) ((-823 . -1051) 154949) ((-829 . -25) 154901) ((-319 . -555) 154852) ((-517 . -613) 154833) ((-563 . -824) T) ((-240 . -1208) T) ((-1030 . -613) 154802) ((-832 . -111) 154767) ((-823 . -111) 154746) ((-1241 . -610) 154728) ((-1220 . -610) 154710) ((-1220 . -611) 154381) ((-1165 . -905) 154360) ((-1118 . -905) 154339) ((-48 . -38) 154304) ((-1279 . -1105) T) ((-599 . -610) 154216) ((-599 . -611) 154177) ((-1277 . -1105) T) ((-361 . -613) 154161) ((-322 . -613) 154145) ((-240 . -1034) 153972) ((-1165 . -643) 153897) ((-1118 . -643) 153822) ((-850 . -643) 153796) ((-714 . -610) 153778) ((-546 . -368) T) ((-1279 . -23) T) ((-1277 . -23) T) ((-491 . -1093) T) ((-379 . -613) 153728) ((-379 . -615) 153710) ((-1030 . -1045) T) ((-861 . -102) T) ((-1181 . -286) 153689) ((-169 . -368) 153640) ((-1000 . -1208) T) ((-832 . -613) 153594) ((-823 . -613) 153549) ((-44 . -23) T) ((-479 . -286) 153528) ((-584 . -1093) T) ((-1139 . -1102) 153497) ((-1097 . -1096) 153449) ((-390 . -21) T) ((-390 . -25) T) ((-152 . -1105) T) ((-1285 . -102) T) ((-1000 . -880) 153431) ((-1000 . -882) 153413) ((-1202 . -713) 153310) ((-620 . -231) 153294) ((-618 . -21) T) ((-289 . -555) T) ((-618 . -25) T) ((-1188 . -1093) T) ((-707 . -713) 153259) ((-240 . -377) 153228) ((-1000 . -1034) 153188) ((-379 . -1045) T) ((-223 . -1052) T) ((-117 . -231) 153165) ((-59 . -286) 153142) ((-152 . -23) T) ((-516 . -286) 153119) ((-327 . -514) 153052) ((-496 . -286) 153029) ((-379 . -243) T) ((-379 . -233) T) ((-832 . -1045) T) ((-823 . -1045) T) ((-708 . -945) 152998) ((-696 . -846) T) ((-474 . -610) 152980) ((-823 . -233) 152959) ((-134 . -846) T) ((-653 . -1093) T) ((-1181 . -601) 152938) ((-549 . -1184) 152917) ((-336 . -1093) T) ((-319 . -363) 152896) ((-407 . -147) 152875) ((-407 . -145) 152854) ((-960 . -1105) 152753) ((-240 . -896) 152685) ((-811 . -1105) 152595) ((-649 . -848) 152579) ((-479 . -601) 152558) ((-549 . -107) 152508) ((-1000 . -377) 152490) ((-1000 . -338) 152472) ((-97 . -1093) T) ((-960 . -23) 152283) ((-477 . -21) T) ((-477 . -25) T) ((-811 . -23) 152153) ((-1169 . -610) 152135) ((-59 . -19) 152119) ((-1169 . -611) 152041) ((-1165 . -722) T) ((-1118 . -722) T) ((-516 . -19) 152025) ((-496 . -19) 152009) ((-59 . -601) 151986) ((-1080 . -1093) T) ((-897 . -102) 151964) ((-850 . -722) T) ((-778 . -1093) T) ((-516 . -601) 151941) ((-496 . -601) 151918) ((-776 . -1093) T) ((-776 . -1059) 151885) ((-461 . -1093) T) ((-454 . -1093) T) ((-584 . -713) 151860) ((-644 . -1093) T) ((-1249 . -47) 151837) ((-1243 . -102) T) ((-1242 . -47) 151807) ((-1221 . -47) 151784) ((-1202 . -172) 151735) ((-1166 . -307) 151714) ((-1000 . -896) NIL) ((-1160 . -307) 151693) ((-624 . -1105) T) ((-665 . -131) T) ((-1089 . -613) 151674) ((-1083 . -613) 151655) ((-1073 . -555) 151606) ((-1073 . -1212) 151557) ((-1067 . -613) 151538) ((-275 . -1093) T) ((-85 . -441) T) ((-85 . -395) T) ((-1060 . -613) 151519) ((-1032 . -613) 151500) ((-50 . -1093) T) ((-1015 . -613) 151481) ((-707 . -172) T) ((-593 . -47) 151458) ((-225 . -643) 151423) ((-580 . -1093) T) ((-518 . -1093) T) ((-359 . -1212) T) ((-353 . -1212) T) ((-345 . -1212) T) ((-487 . -816) T) ((-487 . -916) T) ((-319 . -1105) T) ((-108 . -1212) T) ((-710 . -1051) 151393) ((-339 . -846) T) ((-217 . -916) T) ((-217 . -816) T) ((-623 . -613) 151374) ((-359 . -555) T) ((-353 . -555) T) ((-345 . -555) T) ((-483 . -613) 151355) ((-108 . -555) T) ((-653 . -713) 151325) ((-1160 . -1018) NIL) ((-218 . -613) 151306) ((-319 . -23) T) ((-67 . -1208) T) ((-996 . -610) 151238) ((-689 . -231) 151220) ((-710 . -111) 151185) ((-640 . -34) T) ((-245 . -489) 151169) ((-1095 . -1091) 151153) ((-171 . -1093) T) ((-948 . -905) 151132) ((-515 . -613) 151116) ((-1285 . -1144) T) ((-1281 . -21) T) ((-481 . -905) 151095) ((-1281 . -25) T) ((-1279 . -131) T) ((-1277 . -131) T) ((-1270 . -102) T) ((-1253 . -610) 151061) ((-1242 . -1034) 150996) ((-1080 . -713) 150845) ((-1056 . -643) 150832) ((-948 . -643) 150757) ((-778 . -713) 150586) ((-536 . -610) 150568) ((-536 . -611) 150549) ((-776 . -713) 150398) ((-1221 . -1208) 150377) ((-1070 . -102) T) ((-381 . -25) T) ((-381 . -21) T) ((-481 . -643) 150302) ((-461 . -713) 150273) ((-454 . -713) 150122) ((-983 . -102) T) ((-1221 . -882) NIL) ((-1221 . -880) 150074) ((-1181 . -611) NIL) ((-733 . -102) T) ((-1181 . -610) 150056) ((-602 . -613) 150038) ((-1135 . -1116) 149983) ((-1042 . -1201) 149912) ((-531 . -25) T) ((-897 . -309) 149850) ((-710 . -613) 149804) ((-343 . -1052) T) ((-641 . -490) 149785) ((-141 . -102) T) ((-44 . -131) T) ((-289 . -1105) T) ((-676 . -93) T) ((-671 . -93) T) ((-659 . -610) 149767) ((-641 . -610) 149720) ((-478 . -93) T) ((-355 . -610) 149702) ((-352 . -610) 149684) ((-344 . -610) 149666) ((-264 . -611) 149414) ((-264 . -610) 149396) ((-247 . -610) 149378) ((-247 . -611) 149239) ((-133 . -93) T) ((-138 . -93) T) ((-137 . -93) T) ((-1221 . -1034) 149205) ((-1202 . -514) 149172) ((-1134 . -610) 149154) ((-815 . -853) T) ((-815 . -722) T) ((-599 . -288) 149131) ((-580 . -713) 149096) ((-479 . -611) NIL) ((-479 . -610) 149078) ((-518 . -713) 149023) ((-316 . -102) T) ((-313 . -102) T) ((-289 . -23) T) ((-152 . -131) T) ((-906 . -610) 149005) ((-386 . -722) T) ((-868 . -1051) 148957) ((-906 . -611) 148939) ((-868 . -111) 148877) ((-710 . -1045) T) ((-708 . -1233) 148861) ((-139 . -102) T) ((-136 . -102) T) ((-114 . -102) T) ((-689 . -349) NIL) ((-519 . -610) 148793) ((-379 . -791) T) ((-223 . -1093) T) ((-379 . -788) T) ((-225 . -790) T) ((-225 . -787) T) ((-59 . -611) 148754) ((-59 . -610) 148666) ((-225 . -722) T) ((-516 . -611) 148627) ((-516 . -610) 148539) ((-497 . -610) 148471) ((-496 . -611) 148432) ((-496 . -610) 148344) ((-1073 . -363) 148295) ((-40 . -411) 148272) ((-77 . -1208) T) ((-867 . -905) NIL) ((-359 . -329) 148256) ((-359 . -363) T) ((-353 . -329) 148240) ((-353 . -363) T) ((-345 . -329) 148224) ((-345 . -363) T) ((-316 . -284) 148203) ((-108 . -363) T) ((-70 . -1208) T) ((-1221 . -338) 148155) ((-867 . -643) 148100) ((-1221 . -377) 148052) ((-960 . -131) 147907) ((-811 . -131) 147777) ((-954 . -646) 147761) ((-1080 . -172) 147672) ((-954 . -373) 147656) ((-1056 . -790) T) ((-1056 . -787) T) ((-868 . -613) 147554) ((-778 . -172) 147445) ((-776 . -172) 147356) ((-812 . -47) 147318) ((-1056 . -722) T) ((-327 . -489) 147302) ((-948 . -722) T) ((-454 . -172) 147213) ((-245 . -286) 147190) ((-1270 . -309) 147128) ((-481 . -722) T) ((-1249 . -896) 147041) ((-1242 . -896) 146947) ((-1241 . -1051) 146782) ((-1221 . -896) 146615) ((-1220 . -1051) 146423) ((-1202 . -290) 146402) ((-1176 . -368) T) ((-1175 . -368) T) ((-1139 . -151) 146386) ((-1113 . -102) T) ((-1111 . -1093) T) ((-1073 . -23) T) ((-1068 . -102) T) ((-923 . -951) T) ((-733 . -309) 146324) ((-75 . -1208) T) ((-30 . -951) T) ((-169 . -905) 146277) ((-659 . -382) 146249) ((-112 . -840) T) ((-1 . -610) 146231) ((-1073 . -1105) T) ((-128 . -646) 146213) ((-50 . -617) 146197) ((-999 . -409) 146169) ((-593 . -896) 146082) ((-438 . -102) T) ((-141 . -309) NIL) ((-128 . -373) 146064) ((-868 . -1045) T) ((-829 . -846) 146043) ((-81 . -1208) T) ((-707 . -290) T) ((-40 . -1052) T) ((-580 . -172) T) ((-518 . -172) T) ((-511 . -610) 146025) ((-169 . -643) 145935) ((-507 . -610) 145917) ((-351 . -147) 145899) ((-351 . -145) T) ((-359 . -1105) T) ((-353 . -1105) T) ((-345 . -1105) T) ((-1000 . -307) T) ((-910 . -307) T) ((-868 . -243) T) ((-108 . -1105) T) ((-868 . -233) 145878) ((-1241 . -111) 145699) ((-1220 . -111) 145488) ((-245 . -1245) 145472) ((-563 . -844) T) ((-359 . -23) T) ((-354 . -349) T) ((-316 . -309) 145459) ((-313 . -309) 145400) ((-353 . -23) T) ((-319 . -131) T) ((-345 . -23) T) ((-1000 . -1018) T) ((-31 . -613) 145381) ((-108 . -23) T) ((-245 . -601) 145358) ((-1243 . -38) 145250) ((-1230 . -905) 145229) ((-112 . -1093) T) ((-1031 . -102) T) ((-1230 . -643) 145154) ((-867 . -790) NIL) ((-851 . -643) 145128) ((-867 . -787) NIL) ((-812 . -882) NIL) ((-867 . -722) T) ((-1080 . -514) 145001) ((-778 . -514) 144948) ((-776 . -514) 144900) ((-570 . -643) 144887) ((-812 . -1034) 144715) ((-454 . -514) 144658) ((-388 . -389) T) ((-1241 . -613) 144471) ((-1220 . -613) 144219) ((-60 . -1208) T) ((-618 . -846) 144198) ((-500 . -656) T) ((-1139 . -972) 144167) ((-999 . -452) T) ((-694 . -844) T) ((-510 . -788) T) ((-474 . -1051) 144002) ((-343 . -1093) T) ((-313 . -1144) NIL) ((-289 . -131) T) ((-394 . -1093) T) ((-689 . -370) 143969) ((-866 . -1052) T) ((-223 . -617) 143946) ((-327 . -286) 143923) ((-474 . -111) 143744) ((-1241 . -1045) T) ((-1220 . -1045) T) ((-812 . -377) 143728) ((-169 . -722) T) ((-649 . -102) T) ((-1241 . -243) 143707) ((-1241 . -233) 143659) ((-1220 . -233) 143564) ((-1220 . -243) 143543) ((-999 . -402) NIL) ((-665 . -636) 143491) ((-316 . -38) 143401) ((-313 . -38) 143330) ((-69 . -610) 143312) ((-319 . -493) 143278) ((-1181 . -288) 143257) ((-1215 . -846) T) ((-1106 . -1105) 143167) ((-83 . -1208) T) ((-61 . -610) 143149) ((-479 . -288) 143128) ((-1272 . -1034) 143105) ((-1157 . -1093) T) ((-1106 . -23) 142975) ((-812 . -896) 142911) ((-1230 . -722) T) ((-1095 . -1208) T) ((-474 . -613) 142737) ((-1080 . -290) 142668) ((-962 . -1093) T) ((-889 . -102) T) ((-778 . -290) 142579) ((-327 . -19) 142563) ((-59 . -288) 142540) ((-776 . -290) 142471) ((-851 . -722) T) ((-117 . -844) NIL) ((-516 . -288) 142448) ((-327 . -601) 142425) ((-496 . -288) 142402) ((-454 . -290) 142333) ((-1031 . -309) 142184) ((-676 . -490) 142165) ((-570 . -722) T) ((-671 . -490) 142146) ((-676 . -610) 142096) ((-671 . -610) 142062) ((-657 . -610) 142044) ((-478 . -490) 142025) ((-478 . -610) 141991) ((-245 . -611) 141952) ((-245 . -490) 141929) ((-138 . -490) 141910) ((-137 . -490) 141891) ((-133 . -490) 141872) ((-245 . -610) 141764) ((-213 . -102) T) ((-138 . -610) 141730) ((-137 . -610) 141696) ((-133 . -610) 141662) ((-1140 . -34) T) ((-939 . -1208) T) ((-343 . -713) 141607) ((-665 . -25) T) ((-665 . -21) T) ((-1169 . -613) 141588) ((-474 . -1045) T) ((-632 . -417) 141553) ((-604 . -417) 141518) ((-1113 . -1144) T) ((-580 . -290) T) ((-518 . -290) T) ((-1242 . -307) 141497) ((-474 . -233) 141449) ((-474 . -243) 141428) ((-1221 . -307) 141407) ((-1221 . -1018) NIL) ((-1073 . -131) T) ((-868 . -791) 141386) ((-144 . -102) T) ((-40 . -1093) T) ((-868 . -788) 141365) ((-640 . -1006) 141349) ((-579 . -1052) T) ((-563 . -1052) T) ((-495 . -1052) T) ((-407 . -452) T) ((-359 . -131) T) ((-316 . -400) 141333) ((-313 . -400) 141294) ((-353 . -131) T) ((-345 . -131) T) ((-1174 . -1093) T) ((-1113 . -38) 141281) ((-1087 . -610) 141248) ((-108 . -131) T) ((-950 . -1093) T) ((-917 . -1093) T) ((-767 . -1093) T) ((-667 . -1093) T) ((-696 . -147) T) ((-116 . -147) T) ((-1279 . -21) T) ((-1279 . -25) T) ((-1277 . -21) T) ((-1277 . -25) T) ((-659 . -1051) 141232) ((-531 . -846) T) ((-500 . -846) T) ((-355 . -1051) 141184) ((-352 . -1051) 141136) ((-344 . -1051) 141088) ((-251 . -1208) T) ((-250 . -1208) T) ((-264 . -1051) 140931) ((-247 . -1051) 140774) ((-659 . -111) 140753) ((-547 . -840) T) ((-355 . -111) 140691) ((-352 . -111) 140629) ((-344 . -111) 140567) ((-264 . -111) 140396) ((-247 . -111) 140225) ((-813 . -1212) 140204) ((-620 . -411) 140188) ((-44 . -21) T) ((-44 . -25) T) ((-811 . -636) 140094) ((-813 . -555) 140073) ((-251 . -1034) 139900) ((-250 . -1034) 139727) ((-126 . -119) 139711) ((-906 . -1051) 139676) ((-708 . -102) T) ((-694 . -1052) T) ((-536 . -615) 139579) ((-343 . -172) T) ((-88 . -610) 139561) ((-152 . -21) T) ((-152 . -25) T) ((-906 . -111) 139517) ((-40 . -713) 139462) ((-866 . -1093) T) ((-659 . -613) 139439) ((-641 . -613) 139420) ((-355 . -613) 139357) ((-352 . -613) 139294) ((-547 . -1093) T) ((-344 . -613) 139231) ((-327 . -611) 139192) ((-327 . -610) 139104) ((-264 . -613) 138857) ((-247 . -613) 138642) ((-1220 . -788) 138595) ((-1220 . -791) 138548) ((-251 . -377) 138517) ((-250 . -377) 138486) ((-649 . -38) 138456) ((-605 . -34) T) ((-482 . -1105) 138366) ((-475 . -34) T) ((-1106 . -131) 138236) ((-960 . -25) 138047) ((-906 . -613) 137997) ((-870 . -610) 137979) ((-960 . -21) 137934) ((-811 . -21) 137844) ((-811 . -25) 137695) ((-1214 . -368) T) ((-620 . -1052) T) ((-1171 . -555) 137674) ((-1165 . -47) 137651) ((-355 . -1045) T) ((-352 . -1045) T) ((-482 . -23) 137521) ((-344 . -1045) T) ((-247 . -1045) T) ((-264 . -1045) T) ((-1118 . -47) 137493) ((-117 . -1052) T) ((-1030 . -643) 137467) ((-954 . -34) T) ((-355 . -233) 137446) ((-355 . -243) T) ((-352 . -233) 137425) ((-352 . -243) T) ((-344 . -233) 137404) ((-344 . -243) T) ((-247 . -326) 137361) ((-264 . -326) 137333) ((-264 . -233) 137312) ((-1149 . -151) 137296) ((-251 . -896) 137228) ((-250 . -896) 137160) ((-1075 . -846) T) ((-414 . -1105) T) ((-1049 . -23) T) ((-906 . -1045) T) ((-322 . -643) 137142) ((-1020 . -844) T) ((-1202 . -998) 137108) ((-1166 . -916) 137087) ((-1160 . -916) 137066) ((-1160 . -816) NIL) ((-906 . -243) T) ((-813 . -363) 137045) ((-385 . -23) T) ((-127 . -1093) 137023) ((-121 . -1093) 137001) ((-906 . -233) T) ((-128 . -34) T) ((-379 . -643) 136966) ((-866 . -713) 136953) ((-1042 . -151) 136918) ((-40 . -172) T) ((-689 . -411) 136900) ((-708 . -309) 136887) ((-832 . -643) 136847) ((-823 . -643) 136821) ((-319 . -25) T) ((-319 . -21) T) ((-653 . -286) 136800) ((-579 . -1093) T) ((-563 . -1093) T) ((-495 . -1093) T) ((-245 . -288) 136777) ((-313 . -231) 136738) ((-1165 . -882) NIL) ((-55 . -1093) T) ((-1118 . -882) 136597) ((-129 . -846) T) ((-1165 . -1034) 136477) ((-1118 . -1034) 136360) ((-183 . -610) 136342) ((-850 . -1034) 136238) ((-778 . -286) 136165) ((-813 . -1105) T) ((-1030 . -722) T) ((-599 . -646) 136149) ((-1042 . -972) 136078) ((-995 . -102) T) ((-813 . -23) T) ((-708 . -1144) 136056) ((-689 . -1052) T) ((-599 . -373) 136040) ((-351 . -452) T) ((-343 . -290) T) ((-1258 . -1093) T) ((-248 . -1093) T) ((-399 . -102) T) ((-289 . -21) T) ((-289 . -25) T) ((-361 . -722) T) ((-706 . -1093) T) ((-694 . -1093) T) ((-361 . -473) T) ((-1202 . -610) 136022) ((-1165 . -377) 136006) ((-1118 . -377) 135990) ((-1020 . -411) 135952) ((-141 . -229) 135934) ((-379 . -790) T) ((-379 . -787) T) ((-866 . -172) T) ((-379 . -722) T) ((-707 . -610) 135916) ((-708 . -38) 135745) ((-1257 . -1255) 135729) ((-351 . -402) T) ((-1257 . -1093) 135679) ((-579 . -713) 135666) ((-563 . -713) 135653) ((-495 . -713) 135618) ((-316 . -626) 135597) ((-832 . -722) T) ((-823 . -722) T) ((-640 . -1208) T) ((-1073 . -636) 135545) ((-1165 . -896) 135488) ((-1118 . -896) 135472) ((-657 . -1051) 135456) ((-108 . -636) 135438) ((-482 . -131) 135308) ((-1171 . -1105) T) ((-948 . -47) 135277) ((-620 . -1093) T) ((-657 . -111) 135256) ((-491 . -610) 135222) ((-327 . -288) 135199) ((-481 . -47) 135156) ((-1171 . -23) T) ((-117 . -1093) T) ((-103 . -102) 135134) ((-1269 . -1105) T) ((-1049 . -131) T) ((-1020 . -1052) T) ((-815 . -1034) 135118) ((-999 . -720) 135090) ((-1269 . -23) T) ((-694 . -713) 135055) ((-584 . -610) 135037) ((-386 . -1034) 135021) ((-354 . -1052) T) ((-385 . -131) T) ((-324 . -1034) 135005) ((-225 . -882) 134987) ((-1000 . -916) T) ((-91 . -34) T) ((-1000 . -816) T) ((-910 . -916) T) ((-1188 . -610) 134969) ((-1113 . -824) T) ((-487 . -1212) T) ((-1098 . -1093) T) ((-1073 . -21) T) ((-1073 . -25) T) ((-217 . -1212) T) ((-995 . -309) 134934) ((-225 . -1034) 134894) ((-40 . -290) T) ((-710 . -643) 134854) ((-676 . -613) 134835) ((-671 . -613) 134816) ((-487 . -555) T) ((-478 . -613) 134797) ((-359 . -25) T) ((-359 . -21) T) ((-353 . -25) T) ((-217 . -555) T) ((-353 . -21) T) ((-345 . -25) T) ((-345 . -21) T) ((-245 . -613) 134774) ((-138 . -613) 134755) ((-137 . -613) 134736) ((-133 . -613) 134717) ((-108 . -25) T) ((-108 . -21) T) ((-48 . -1052) T) ((-579 . -172) T) ((-563 . -172) T) ((-495 . -172) T) ((-653 . -610) 134699) ((-733 . -732) 134683) ((-336 . -610) 134665) ((-68 . -383) T) ((-68 . -395) T) ((-1095 . -107) 134649) ((-1056 . -882) 134631) ((-948 . -882) 134556) ((-648 . -1105) T) ((-620 . -713) 134543) ((-481 . -882) NIL) ((-1139 . -102) T) ((-1087 . -615) 134527) ((-1056 . -1034) 134509) ((-97 . -610) 134491) ((-477 . -147) T) ((-948 . -1034) 134371) ((-117 . -713) 134316) ((-648 . -23) T) ((-481 . -1034) 134192) ((-1080 . -611) NIL) ((-1080 . -610) 134174) ((-778 . -611) NIL) ((-778 . -610) 134135) ((-776 . -611) 133769) ((-776 . -610) 133683) ((-1106 . -636) 133589) ((-461 . -610) 133571) ((-454 . -610) 133553) ((-454 . -611) 133414) ((-1031 . -229) 133360) ((-868 . -905) 133339) ((-126 . -34) T) ((-813 . -131) T) ((-644 . -610) 133321) ((-577 . -102) T) ((-355 . -1276) 133305) ((-352 . -1276) 133289) ((-344 . -1276) 133273) ((-127 . -514) 133206) ((-121 . -514) 133139) ((-511 . -788) T) ((-511 . -791) T) ((-510 . -790) T) ((-103 . -309) 133077) ((-222 . -102) 133055) ((-689 . -1093) T) ((-694 . -172) T) ((-868 . -643) 133007) ((-65 . -384) T) ((-275 . -610) 132989) ((-65 . -395) T) ((-948 . -377) 132973) ((-866 . -290) T) ((-50 . -610) 132955) ((-995 . -38) 132903) ((-580 . -610) 132885) ((-481 . -377) 132869) ((-580 . -611) 132851) ((-518 . -610) 132833) ((-906 . -1276) 132820) ((-867 . -1208) T) ((-696 . -452) T) ((-495 . -514) 132786) ((-487 . -363) T) ((-355 . -368) 132765) ((-352 . -368) 132744) ((-344 . -368) 132723) ((-710 . -722) T) ((-217 . -363) T) ((-116 . -452) T) ((-1280 . -1271) 132707) ((-867 . -880) 132684) ((-867 . -882) NIL) ((-960 . -846) 132583) ((-811 . -846) 132534) ((-649 . -651) 132518) ((-1194 . -34) T) ((-171 . -610) 132500) ((-1106 . -21) 132410) ((-1106 . -25) 132261) ((-867 . -1034) 132238) ((-948 . -896) 132219) ((-1230 . -47) 132196) ((-906 . -368) T) ((-59 . -646) 132180) ((-516 . -646) 132164) ((-481 . -896) 132141) ((-71 . -441) T) ((-71 . -395) T) ((-496 . -646) 132125) ((-59 . -373) 132109) ((-620 . -172) T) ((-516 . -373) 132093) ((-496 . -373) 132077) ((-823 . -704) 132061) ((-1165 . -307) 132040) ((-1171 . -131) T) ((-117 . -172) T) ((-1139 . -309) 131978) ((-169 . -1208) T) ((-632 . -740) 131962) ((-604 . -740) 131946) ((-1269 . -131) T) ((-1242 . -916) 131925) ((-1221 . -916) 131904) ((-1221 . -816) NIL) ((-689 . -713) 131854) ((-1220 . -905) 131807) ((-1020 . -1093) T) ((-867 . -377) 131784) ((-867 . -338) 131761) ((-901 . -1105) T) ((-169 . -880) 131745) ((-169 . -882) 131670) ((-487 . -1105) T) ((-354 . -1093) T) ((-217 . -1105) T) ((-76 . -441) T) ((-76 . -395) T) ((-169 . -1034) 131566) ((-319 . -846) T) ((-1257 . -514) 131499) ((-1241 . -643) 131396) ((-1220 . -643) 131266) ((-868 . -790) 131245) ((-868 . -787) 131224) ((-868 . -722) T) ((-487 . -23) T) ((-223 . -610) 131206) ((-174 . -452) T) ((-222 . -309) 131144) ((-86 . -441) T) ((-86 . -395) T) ((-217 . -23) T) ((-1281 . -1274) 131123) ((-579 . -290) T) ((-563 . -290) T) ((-672 . -1034) 131107) ((-495 . -290) T) ((-136 . -470) 131062) ((-48 . -1093) T) ((-708 . -231) 131046) ((-867 . -896) NIL) ((-1230 . -882) NIL) ((-885 . -102) T) ((-881 . -102) T) ((-388 . -1093) T) ((-169 . -377) 131030) ((-169 . -338) 131014) ((-1230 . -1034) 130894) ((-851 . -1034) 130790) ((-1135 . -102) T) ((-648 . -131) T) ((-117 . -514) 130698) ((-657 . -788) 130677) ((-657 . -791) 130656) ((-570 . -1034) 130638) ((-294 . -1264) 130608) ((-862 . -102) T) ((-959 . -555) 130587) ((-1202 . -1051) 130470) ((-482 . -636) 130376) ((-900 . -1093) T) ((-1020 . -713) 130313) ((-707 . -1051) 130278) ((-614 . -102) T) ((-599 . -34) T) ((-1140 . -1208) T) ((-1202 . -111) 130147) ((-474 . -643) 130044) ((-354 . -713) 129989) ((-169 . -896) 129948) ((-694 . -290) T) ((-689 . -172) T) ((-707 . -111) 129904) ((-1285 . -1052) T) ((-1230 . -377) 129888) ((-418 . -1212) 129866) ((-1111 . -610) 129848) ((-313 . -844) NIL) ((-418 . -555) T) ((-225 . -307) T) ((-1220 . -787) 129801) ((-1220 . -790) 129754) ((-1241 . -722) T) ((-1220 . -722) T) ((-48 . -713) 129719) ((-225 . -1018) T) ((-351 . -1264) 129696) ((-1243 . -411) 129662) ((-714 . -722) T) ((-1230 . -896) 129605) ((-1202 . -613) 129487) ((-112 . -610) 129469) ((-112 . -611) 129451) ((-714 . -473) T) ((-707 . -613) 129401) ((-482 . -21) 129311) ((-127 . -489) 129295) ((-121 . -489) 129279) ((-482 . -25) 129130) ((-620 . -290) T) ((-584 . -1051) 129105) ((-437 . -1093) T) ((-1056 . -307) T) ((-117 . -290) T) ((-1097 . -102) T) ((-999 . -102) T) ((-584 . -111) 129073) ((-1135 . -309) 129011) ((-1202 . -1045) T) ((-1056 . -1018) T) ((-66 . -1208) T) ((-1049 . -25) T) ((-1049 . -21) T) ((-707 . -1045) T) ((-385 . -21) T) ((-385 . -25) T) ((-689 . -514) NIL) ((-1020 . -172) T) ((-707 . -243) T) ((-1056 . -545) T) ((-506 . -102) T) ((-502 . -102) T) ((-354 . -172) T) ((-343 . -610) 128993) ((-394 . -610) 128975) ((-474 . -722) T) ((-1113 . -844) T) ((-888 . -1034) 128943) ((-108 . -846) T) ((-653 . -1051) 128927) ((-487 . -131) T) ((-1243 . -1052) T) ((-217 . -131) T) ((-1149 . -102) 128905) ((-99 . -1093) T) ((-245 . -661) 128889) ((-245 . -646) 128873) ((-653 . -111) 128852) ((-584 . -613) 128836) ((-316 . -411) 128820) ((-245 . -373) 128804) ((-1152 . -235) 128751) ((-995 . -231) 128735) ((-74 . -1208) T) ((-48 . -172) T) ((-696 . -387) T) ((-696 . -143) T) ((-1280 . -102) T) ((-1188 . -613) 128717) ((-1080 . -1051) 128560) ((-264 . -905) 128539) ((-247 . -905) 128518) ((-778 . -1051) 128341) ((-776 . -1051) 128184) ((-605 . -1208) T) ((-1157 . -610) 128166) ((-1080 . -111) 127995) ((-1042 . -102) T) ((-475 . -1208) T) ((-461 . -1051) 127966) ((-454 . -1051) 127809) ((-659 . -643) 127793) ((-867 . -307) T) ((-778 . -111) 127602) ((-776 . -111) 127431) ((-355 . -643) 127383) ((-352 . -643) 127335) ((-344 . -643) 127287) ((-264 . -643) 127212) ((-247 . -643) 127137) ((-1151 . -846) T) ((-1081 . -1034) 127121) ((-461 . -111) 127082) ((-454 . -111) 126911) ((-1069 . -1034) 126888) ((-996 . -34) T) ((-962 . -610) 126870) ((-954 . -1208) T) ((-126 . -1006) 126854) ((-959 . -1105) T) ((-867 . -1018) NIL) ((-731 . -1105) T) ((-711 . -1105) T) ((-653 . -613) 126772) ((-1257 . -489) 126756) ((-1135 . -38) 126716) ((-959 . -23) T) ((-861 . -1093) T) ((-839 . -102) T) ((-813 . -21) T) ((-813 . -25) T) ((-731 . -23) T) ((-711 . -23) T) ((-110 . -656) T) ((-906 . -643) 126681) ((-580 . -1051) 126646) ((-518 . -1051) 126591) ((-227 . -57) 126549) ((-453 . -23) T) ((-407 . -102) T) ((-263 . -102) T) ((-689 . -290) T) ((-862 . -38) 126519) ((-580 . -111) 126475) ((-518 . -111) 126404) ((-1080 . -613) 126140) ((-418 . -1105) T) ((-316 . -1052) 126030) ((-313 . -1052) T) ((-128 . -1208) T) ((-778 . -613) 125778) ((-776 . -613) 125544) ((-653 . -1045) T) ((-1285 . -1093) T) ((-454 . -613) 125329) ((-169 . -307) 125260) ((-418 . -23) T) ((-40 . -610) 125242) ((-40 . -611) 125226) ((-108 . -988) 125208) ((-116 . -865) 125192) ((-644 . -613) 125176) ((-48 . -514) 125142) ((-1194 . -1006) 125126) ((-1174 . -610) 125093) ((-1181 . -34) T) ((-950 . -610) 125059) ((-917 . -610) 125041) ((-1106 . -846) 124992) ((-767 . -610) 124974) ((-667 . -610) 124956) ((-1149 . -309) 124894) ((-479 . -34) T) ((-1085 . -1208) T) ((-477 . -452) T) ((-1134 . -34) T) ((-1080 . -1045) T) ((-50 . -613) 124863) ((-778 . -1045) T) ((-776 . -1045) T) ((-642 . -235) 124847) ((-629 . -235) 124793) ((-580 . -613) 124743) ((-518 . -613) 124673) ((-1230 . -307) 124652) ((-1080 . -326) 124613) ((-454 . -1045) T) ((-1171 . -21) T) ((-1080 . -233) 124592) ((-778 . -326) 124569) ((-778 . -233) T) ((-776 . -326) 124541) ((-727 . -1212) 124520) ((-327 . -646) 124504) ((-1171 . -25) T) ((-59 . -34) T) ((-519 . -34) T) ((-516 . -34) T) ((-454 . -326) 124483) ((-327 . -373) 124467) ((-497 . -34) T) ((-496 . -34) T) ((-999 . -1144) NIL) ((-727 . -555) 124398) ((-632 . -102) T) ((-604 . -102) T) ((-355 . -722) T) ((-352 . -722) T) ((-344 . -722) T) ((-264 . -722) T) ((-247 . -722) T) ((-1042 . -309) 124306) ((-897 . -1093) 124284) ((-50 . -1045) T) ((-1269 . -21) T) ((-1269 . -25) T) ((-1167 . -555) 124263) ((-1166 . -1212) 124242) ((-580 . -1045) T) ((-518 . -1045) T) ((-1160 . -1212) 124221) ((-361 . -1034) 124205) ((-322 . -1034) 124189) ((-1020 . -290) T) ((-379 . -882) 124171) ((-1166 . -555) 124122) ((-1160 . -555) 124073) ((-999 . -38) 124018) ((-795 . -1105) T) ((-906 . -722) T) ((-580 . -243) T) ((-580 . -233) T) ((-518 . -233) T) ((-518 . -243) T) ((-1119 . -555) 123997) ((-354 . -290) T) ((-642 . -690) 123981) ((-379 . -1034) 123941) ((-1113 . -1052) T) ((-103 . -125) 123925) ((-795 . -23) T) ((-1279 . -1274) 123901) ((-1257 . -286) 123878) ((-407 . -309) 123843) ((-1277 . -1274) 123822) ((-1243 . -1093) T) ((-866 . -610) 123804) ((-832 . -1034) 123773) ((-203 . -783) T) ((-202 . -783) T) ((-201 . -783) T) ((-200 . -783) T) ((-199 . -783) T) ((-198 . -783) T) ((-197 . -783) T) ((-196 . -783) T) ((-195 . -783) T) ((-194 . -783) T) ((-547 . -610) 123755) ((-495 . -998) T) ((-274 . -835) T) ((-273 . -835) T) ((-272 . -835) T) ((-271 . -835) T) ((-48 . -290) T) ((-270 . -835) T) ((-269 . -835) T) ((-268 . -835) T) ((-193 . -783) T) ((-609 . -846) T) ((-649 . -411) 123739) ((-223 . -613) 123701) ((-110 . -846) T) ((-648 . -21) T) ((-648 . -25) T) ((-1280 . -38) 123671) ((-117 . -286) 123622) ((-1257 . -19) 123606) ((-1257 . -601) 123583) ((-1270 . -1093) T) ((-1070 . -1093) T) ((-983 . -1093) T) ((-959 . -131) T) ((-733 . -1093) T) ((-731 . -131) T) ((-711 . -131) T) ((-511 . -789) T) ((-407 . -1144) 123561) ((-453 . -131) T) ((-511 . -790) T) ((-223 . -1045) T) ((-294 . -102) 123343) ((-141 . -1093) T) ((-694 . -998) T) ((-91 . -1208) T) ((-127 . -610) 123275) ((-121 . -610) 123207) ((-1285 . -172) T) ((-1166 . -363) 123186) ((-1160 . -363) 123165) ((-316 . -1093) T) ((-418 . -131) T) ((-313 . -1093) T) ((-407 . -38) 123117) ((-1126 . -102) T) ((-1243 . -713) 123009) ((-649 . -1052) T) ((-1128 . -1252) T) ((-319 . -145) 122988) ((-319 . -147) 122967) ((-139 . -1093) T) ((-136 . -1093) T) ((-114 . -1093) T) ((-854 . -102) T) ((-579 . -610) 122949) ((-563 . -611) 122848) ((-563 . -610) 122830) ((-495 . -610) 122812) ((-495 . -611) 122757) ((-485 . -23) T) ((-482 . -846) 122708) ((-487 . -636) 122690) ((-961 . -610) 122672) ((-217 . -636) 122654) ((-225 . -404) T) ((-657 . -643) 122638) ((-55 . -610) 122620) ((-1165 . -916) 122599) ((-727 . -1105) T) ((-351 . -102) T) ((-1207 . -1076) T) ((-1113 . -840) T) ((-814 . -846) T) ((-727 . -23) T) ((-343 . -1051) 122544) ((-1151 . -1150) T) ((-1140 . -107) 122528) ((-1167 . -1105) T) ((-1166 . -1105) T) ((-515 . -1034) 122512) ((-1160 . -1105) T) ((-1119 . -1105) T) ((-343 . -111) 122441) ((-1000 . -1212) T) ((-126 . -1208) T) ((-910 . -1212) T) ((-689 . -286) NIL) ((-1258 . -610) 122423) ((-1167 . -23) T) ((-1166 . -23) T) ((-1160 . -23) T) ((-1000 . -555) T) ((-1135 . -231) 122407) ((-910 . -555) T) ((-1119 . -23) T) ((-248 . -610) 122389) ((-1068 . -1093) T) ((-795 . -131) T) ((-706 . -610) 122371) ((-316 . -713) 122281) ((-313 . -713) 122210) ((-694 . -610) 122192) ((-694 . -611) 122137) ((-407 . -400) 122121) ((-438 . -1093) T) ((-487 . -25) T) ((-487 . -21) T) ((-1113 . -1093) T) ((-217 . -25) T) ((-217 . -21) T) ((-708 . -411) 122105) ((-710 . -1034) 122074) ((-1257 . -610) 121986) ((-1257 . -611) 121947) ((-1243 . -172) T) ((-245 . -34) T) ((-343 . -613) 121877) ((-394 . -613) 121859) ((-922 . -970) T) ((-1194 . -1208) T) ((-657 . -787) 121838) ((-657 . -790) 121817) ((-398 . -395) T) ((-523 . -102) 121795) ((-1031 . -1093) T) ((-222 . -991) 121779) ((-504 . -102) T) ((-620 . -610) 121761) ((-45 . -846) NIL) ((-620 . -611) 121738) ((-1031 . -607) 121713) ((-897 . -514) 121646) ((-343 . -1045) T) ((-117 . -611) NIL) ((-117 . -610) 121628) ((-868 . -1208) T) ((-665 . -417) 121612) ((-665 . -1116) 121557) ((-500 . -151) 121539) ((-343 . -233) T) ((-343 . -243) T) ((-40 . -1051) 121484) ((-868 . -880) 121468) ((-868 . -882) 121393) ((-708 . -1052) T) ((-689 . -998) NIL) ((-3 . |UnionCategory|) T) ((-1241 . -47) 121363) ((-1220 . -47) 121340) ((-1134 . -1006) 121311) ((-225 . -916) T) ((-40 . -111) 121240) ((-868 . -1034) 121104) ((-1113 . -713) 121091) ((-1098 . -610) 121073) ((-1073 . -147) 121052) ((-1073 . -145) 121003) ((-1000 . -363) T) ((-319 . -1196) 120969) ((-379 . -307) T) ((-319 . -1193) 120935) ((-316 . -172) 120914) ((-313 . -172) T) ((-999 . -231) 120891) ((-910 . -363) T) ((-580 . -1276) 120878) ((-518 . -1276) 120855) ((-359 . -147) 120834) ((-359 . -145) 120785) ((-353 . -147) 120764) ((-353 . -145) 120715) ((-605 . -1184) 120691) ((-345 . -147) 120670) ((-345 . -145) 120621) ((-319 . -35) 120587) ((-475 . -1184) 120566) ((0 . |EnumerationCategory|) T) ((-319 . -95) 120532) ((-379 . -1018) T) ((-108 . -147) T) ((-108 . -145) NIL) ((-45 . -235) 120482) ((-649 . -1093) T) ((-605 . -107) 120429) ((-485 . -131) T) ((-475 . -107) 120379) ((-240 . -1105) 120289) ((-868 . -377) 120273) ((-868 . -338) 120257) ((-240 . -23) 120127) ((-40 . -613) 120057) ((-1056 . -916) T) ((-1056 . -816) T) ((-580 . -368) T) ((-518 . -368) T) ((-351 . -1144) T) ((-327 . -34) T) ((-44 . -417) 120041) ((-1174 . -613) 119976) ((-869 . -1208) T) ((-390 . -740) 119960) ((-1270 . -514) 119893) ((-727 . -131) T) ((-667 . -613) 119877) ((-1249 . -555) 119856) ((-1242 . -1212) 119835) ((-1242 . -555) 119786) ((-1221 . -1212) 119765) ((-311 . -1076) T) ((-1221 . -555) 119716) ((-733 . -514) 119649) ((-1220 . -1208) 119628) ((-1220 . -882) 119501) ((-889 . -1093) T) ((-144 . -840) T) ((-1220 . -880) 119471) ((-686 . -610) 119453) ((-1167 . -131) T) ((-523 . -309) 119391) ((-1166 . -131) T) ((-141 . -514) NIL) ((-1160 . -131) T) ((-1119 . -131) T) ((-1020 . -998) T) ((-1000 . -23) T) ((-351 . -38) 119356) ((-1000 . -1105) T) ((-910 . -1105) T) ((-82 . -610) 119338) ((-40 . -1045) T) ((-866 . -1051) 119325) ((-999 . -349) NIL) ((-868 . -896) 119284) ((-696 . -102) T) ((-967 . -23) T) ((-599 . -1208) T) ((-910 . -23) T) ((-866 . -111) 119269) ((-427 . -1105) T) ((-213 . -1093) T) ((-474 . -47) 119239) ((-134 . -102) T) ((-40 . -233) 119211) ((-40 . -243) T) ((-116 . -102) T) ((-594 . -555) 119190) ((-593 . -555) 119169) ((-689 . -610) 119151) ((-689 . -611) 119059) ((-316 . -514) 119025) ((-313 . -514) 118917) ((-1241 . -1034) 118901) ((-1220 . -1034) 118687) ((-995 . -411) 118671) ((-427 . -23) T) ((-1113 . -172) T) ((-1243 . -290) T) ((-649 . -713) 118641) ((-144 . -1093) T) ((-48 . -998) T) ((-407 . -231) 118625) ((-295 . -235) 118575) ((-867 . -916) T) ((-867 . -816) NIL) ((-866 . -613) 118547) ((-860 . -846) T) ((-1220 . -338) 118517) ((-1220 . -377) 118487) ((-222 . -1114) 118471) ((-1257 . -288) 118448) ((-1202 . -643) 118373) ((-959 . -21) T) ((-959 . -25) T) ((-731 . -21) T) ((-731 . -25) T) ((-711 . -21) T) ((-711 . -25) T) ((-707 . -643) 118338) ((-453 . -21) T) ((-453 . -25) T) ((-339 . -102) T) ((-174 . -102) T) ((-995 . -1052) T) ((-866 . -1045) T) ((-770 . -102) T) ((-1242 . -363) 118317) ((-1241 . -896) 118223) ((-1221 . -363) 118202) ((-1220 . -896) 118053) ((-1020 . -610) 118035) ((-407 . -824) 117988) ((-1167 . -493) 117954) ((-169 . -916) 117885) ((-1166 . -493) 117851) ((-1160 . -493) 117817) ((-708 . -1093) T) ((-1119 . -493) 117783) ((-579 . -1051) 117770) ((-563 . -1051) 117757) ((-495 . -1051) 117722) ((-316 . -290) 117701) ((-313 . -290) T) ((-354 . -610) 117683) ((-418 . -25) T) ((-418 . -21) T) ((-99 . -286) 117662) ((-579 . -111) 117647) ((-563 . -111) 117632) ((-495 . -111) 117588) ((-1169 . -882) 117555) ((-897 . -489) 117539) ((-48 . -610) 117521) ((-48 . -611) 117466) ((-240 . -131) 117336) ((-1230 . -916) 117315) ((-812 . -1212) 117294) ((-388 . -490) 117275) ((-1031 . -514) 117119) ((-388 . -610) 117085) ((-812 . -555) 117016) ((-584 . -643) 116991) ((-264 . -47) 116963) ((-247 . -47) 116920) ((-531 . -509) 116897) ((-579 . -613) 116869) ((-563 . -613) 116841) ((-495 . -613) 116774) ((-996 . -1208) T) ((-694 . -1051) 116739) ((-1249 . -23) T) ((-1249 . -1105) T) ((-1242 . -1105) T) ((-1221 . -1105) T) ((-999 . -370) 116711) ((-112 . -368) T) ((-474 . -896) 116617) ((-1242 . -23) T) ((-900 . -610) 116599) ((-55 . -613) 116581) ((-91 . -107) 116565) ((-1202 . -722) T) ((-901 . -846) 116516) ((-696 . -1144) T) ((-694 . -111) 116472) ((-1221 . -23) T) ((-594 . -1105) T) ((-593 . -1105) T) ((-708 . -713) 116301) ((-707 . -722) T) ((-1113 . -290) T) ((-1000 . -131) T) ((-487 . -846) T) ((-967 . -131) T) ((-910 . -131) T) ((-795 . -25) T) ((-217 . -846) T) ((-795 . -21) T) ((-579 . -1045) T) ((-563 . -1045) T) ((-495 . -1045) T) ((-594 . -23) T) ((-343 . -1276) 116278) ((-319 . -452) 116257) ((-339 . -309) 116244) ((-593 . -23) T) ((-427 . -131) T) ((-653 . -643) 116218) ((-245 . -1006) 116202) ((-868 . -307) T) ((-1281 . -1271) 116186) ((-767 . -788) T) ((-767 . -791) T) ((-696 . -38) 116173) ((-563 . -233) T) ((-495 . -243) T) ((-495 . -233) T) ((-1143 . -235) 116123) ((-1080 . -905) 116102) ((-116 . -38) 116089) ((-209 . -796) T) ((-208 . -796) T) ((-207 . -796) T) ((-206 . -796) T) ((-868 . -1018) 116067) ((-1270 . -489) 116051) ((-778 . -905) 116030) ((-776 . -905) 116009) ((-1181 . -1208) T) ((-454 . -905) 115988) ((-733 . -489) 115972) ((-1080 . -643) 115897) ((-694 . -613) 115832) ((-778 . -643) 115757) ((-620 . -1051) 115744) ((-479 . -1208) T) ((-343 . -368) T) ((-141 . -489) 115726) ((-776 . -643) 115651) ((-1134 . -1208) T) ((-548 . -846) T) ((-461 . -643) 115622) ((-264 . -882) 115481) ((-247 . -882) NIL) ((-117 . -1051) 115426) ((-454 . -643) 115351) ((-659 . -1034) 115328) ((-620 . -111) 115313) ((-355 . -1034) 115297) ((-352 . -1034) 115281) ((-344 . -1034) 115265) ((-264 . -1034) 115109) ((-247 . -1034) 114985) ((-117 . -111) 114914) ((-59 . -1208) T) ((-519 . -1208) T) ((-516 . -1208) T) ((-497 . -1208) T) ((-496 . -1208) T) ((-437 . -610) 114896) ((-434 . -610) 114878) ((-3 . -102) T) ((-1023 . -1201) 114847) ((-829 . -102) T) ((-684 . -57) 114805) ((-694 . -1045) T) ((-50 . -643) 114779) ((-289 . -452) T) ((-476 . -1201) 114748) ((0 . -102) T) ((-580 . -643) 114713) ((-518 . -643) 114658) ((-49 . -102) T) ((-906 . -1034) 114645) ((-694 . -243) T) ((-1073 . -409) 114624) ((-727 . -636) 114572) ((-995 . -1093) T) ((-708 . -172) 114463) ((-620 . -613) 114358) ((-487 . -988) 114340) ((-264 . -377) 114324) ((-247 . -377) 114308) ((-399 . -1093) T) ((-1022 . -102) 114286) ((-339 . -38) 114270) ((-217 . -988) 114252) ((-117 . -613) 114182) ((-174 . -38) 114114) ((-1241 . -307) 114093) ((-1220 . -307) 114072) ((-653 . -722) T) ((-99 . -610) 114054) ((-1160 . -636) 114006) ((-485 . -25) T) ((-485 . -21) T) ((-1220 . -1018) 113958) ((-620 . -1045) T) ((-379 . -404) T) ((-390 . -102) T) ((-1098 . -615) 113873) ((-264 . -896) 113819) ((-247 . -896) 113796) ((-117 . -1045) T) ((-812 . -1105) T) ((-1080 . -722) T) ((-620 . -233) 113775) ((-618 . -102) T) ((-778 . -722) T) ((-776 . -722) T) ((-413 . -1105) T) ((-117 . -243) T) ((-40 . -368) NIL) ((-117 . -233) NIL) ((-1213 . -846) T) ((-454 . -722) T) ((-812 . -23) T) ((-727 . -25) T) ((-727 . -21) T) ((-698 . -846) T) ((-1070 . -286) 113754) ((-78 . -396) T) ((-78 . -395) T) ((-533 . -763) 113736) ((-689 . -1051) 113686) ((-1249 . -131) T) ((-1242 . -131) T) ((-1221 . -131) T) ((-1167 . -25) T) ((-1135 . -411) 113670) ((-632 . -367) 113602) ((-604 . -367) 113534) ((-1149 . -1142) 113518) ((-103 . -1093) 113496) ((-1167 . -21) T) ((-1166 . -21) T) ((-861 . -610) 113478) ((-995 . -713) 113426) ((-223 . -643) 113393) ((-689 . -111) 113327) ((-50 . -722) T) ((-1166 . -25) T) ((-351 . -349) T) ((-1160 . -21) T) ((-1073 . -452) 113278) ((-1160 . -25) T) ((-708 . -514) 113225) ((-580 . -722) T) ((-518 . -722) T) ((-1119 . -21) T) ((-1119 . -25) T) ((-594 . -131) T) ((-593 . -131) T) ((-359 . -452) T) ((-353 . -452) T) ((-345 . -452) T) ((-474 . -307) 113204) ((-1215 . -102) T) ((-313 . -286) 113139) ((-108 . -452) T) ((-79 . -441) T) ((-79 . -395) T) ((-477 . -102) T) ((-686 . -613) 113123) ((-1285 . -610) 113105) ((-1285 . -611) 113087) ((-1073 . -402) 113066) ((-1031 . -489) 112997) ((-563 . -791) T) ((-563 . -788) T) ((-1057 . -235) 112943) ((-359 . -402) 112894) ((-353 . -402) 112845) ((-345 . -402) 112796) ((-1272 . -1105) T) ((-689 . -613) 112731) ((-1272 . -23) T) ((-1259 . -102) T) ((-175 . -610) 112713) ((-1135 . -1052) T) ((-547 . -368) T) ((-665 . -740) 112697) ((-1171 . -145) 112676) ((-1171 . -147) 112655) ((-1139 . -1093) T) ((-1139 . -1065) 112624) ((-69 . -1208) T) ((-1020 . -1051) 112561) ((-862 . -1052) T) ((-240 . -636) 112467) ((-689 . -1045) T) ((-354 . -1051) 112412) ((-61 . -1208) T) ((-1020 . -111) 112328) ((-897 . -610) 112239) ((-689 . -243) T) ((-689 . -233) NIL) ((-839 . -844) 112218) ((-694 . -791) T) ((-694 . -788) T) ((-999 . -411) 112195) ((-354 . -111) 112124) ((-379 . -916) T) ((-407 . -844) 112103) ((-708 . -290) 112014) ((-223 . -722) T) ((-1249 . -493) 111980) ((-1242 . -493) 111946) ((-1221 . -493) 111912) ((-577 . -1093) T) ((-316 . -998) 111891) ((-222 . -1093) 111869) ((-319 . -969) 111831) ((-105 . -102) T) ((-48 . -1051) 111796) ((-1281 . -102) T) ((-381 . -102) T) ((-48 . -111) 111752) ((-1000 . -636) 111734) ((-1243 . -610) 111716) ((-531 . -102) T) ((-500 . -102) T) ((-1126 . -1127) 111700) ((-152 . -1264) 111684) ((-245 . -1208) T) ((-1207 . -102) T) ((-1020 . -613) 111621) ((-1165 . -1212) 111600) ((-354 . -613) 111530) ((-1118 . -1212) 111509) ((-240 . -21) 111419) ((-240 . -25) 111270) ((-127 . -119) 111254) ((-121 . -119) 111238) ((-44 . -740) 111222) ((-1165 . -555) 111133) ((-1118 . -555) 111064) ((-1031 . -286) 111039) ((-1159 . -1076) T) ((-990 . -1076) T) ((-812 . -131) T) ((-117 . -791) NIL) ((-117 . -788) NIL) ((-355 . -307) T) ((-352 . -307) T) ((-344 . -307) T) ((-251 . -1105) 110949) ((-250 . -1105) 110859) ((-1020 . -1045) T) ((-999 . -1052) T) ((-48 . -613) 110792) ((-343 . -643) 110737) ((-618 . -38) 110721) ((-1270 . -610) 110683) ((-1270 . -611) 110644) ((-1070 . -610) 110626) ((-1020 . -243) T) ((-354 . -1045) T) ((-811 . -1264) 110596) ((-251 . -23) T) ((-250 . -23) T) ((-983 . -610) 110578) ((-733 . -611) 110539) ((-733 . -610) 110521) ((-795 . -846) 110500) ((-1152 . -151) 110447) ((-995 . -514) 110359) ((-354 . -233) T) ((-354 . -243) T) ((-388 . -613) 110340) ((-1000 . -25) T) ((-141 . -610) 110322) ((-141 . -611) 110281) ((-906 . -307) T) ((-1000 . -21) T) ((-967 . -25) T) ((-910 . -21) T) ((-910 . -25) T) ((-427 . -21) T) ((-427 . -25) T) ((-839 . -411) 110265) ((-48 . -1045) T) ((-1279 . -1271) 110249) ((-1277 . -1271) 110233) ((-1031 . -601) 110208) ((-316 . -611) 110069) ((-316 . -610) 110051) ((-313 . -611) NIL) ((-313 . -610) 110033) ((-48 . -243) T) ((-48 . -233) T) ((-649 . -286) 109994) ((-549 . -235) 109944) ((-139 . -610) 109911) ((-136 . -610) 109893) ((-114 . -610) 109875) ((-477 . -38) 109840) ((-1281 . -1278) 109819) ((-1272 . -131) T) ((-1280 . -1052) T) ((-1075 . -102) T) ((-88 . -1208) T) ((-500 . -309) NIL) ((-996 . -107) 109803) ((-885 . -1093) T) ((-881 . -1093) T) ((-1257 . -646) 109787) ((-1257 . -373) 109771) ((-327 . -1208) T) ((-591 . -846) T) ((-1135 . -1093) T) ((-1135 . -1048) 109711) ((-103 . -514) 109644) ((-923 . -610) 109626) ((-343 . -722) T) ((-30 . -610) 109608) ((-862 . -1093) T) ((-839 . -1052) 109587) ((-40 . -643) 109532) ((-225 . -1212) T) ((-407 . -1052) T) ((-1151 . -151) 109514) ((-995 . -290) 109465) ((-614 . -1093) T) ((-225 . -555) T) ((-319 . -1238) 109449) ((-319 . -1235) 109419) ((-1181 . -1184) 109398) ((-1068 . -610) 109380) ((-642 . -151) 109364) ((-629 . -151) 109310) ((-1181 . -107) 109260) ((-479 . -1184) 109239) ((-487 . -147) T) ((-487 . -145) NIL) ((-1113 . -611) 109154) ((-438 . -610) 109136) ((-217 . -147) T) ((-217 . -145) NIL) ((-1113 . -610) 109118) ((-129 . -102) T) ((-52 . -102) T) ((-1221 . -636) 109070) ((-479 . -107) 109020) ((-989 . -23) T) ((-1281 . -38) 108990) ((-1165 . -1105) T) ((-1118 . -1105) T) ((-1056 . -1212) T) ((-311 . -102) T) ((-850 . -1105) T) ((-948 . -1212) 108969) ((-481 . -1212) 108948) ((-727 . -846) 108927) ((-1056 . -555) T) ((-948 . -555) 108858) ((-1165 . -23) T) ((-1118 . -23) T) ((-850 . -23) T) ((-481 . -555) 108789) ((-1135 . -713) 108721) ((-1139 . -514) 108654) ((-1031 . -611) NIL) ((-1031 . -610) 108636) ((-96 . -1076) T) ((-862 . -713) 108606) ((-1202 . -47) 108575) ((-251 . -131) T) ((-250 . -131) T) ((-1097 . -1093) T) ((-999 . -1093) T) ((-62 . -610) 108557) ((-1160 . -846) NIL) ((-1020 . -788) T) ((-1020 . -791) T) ((-1285 . -1051) 108544) ((-1285 . -111) 108529) ((-866 . -643) 108516) ((-1249 . -25) T) ((-1249 . -21) T) ((-1242 . -21) T) ((-1242 . -25) T) ((-1221 . -21) T) ((-1221 . -25) T) ((-1023 . -151) 108500) ((-868 . -816) 108479) ((-868 . -916) T) ((-708 . -286) 108406) ((-594 . -21) T) ((-594 . -25) T) ((-593 . -21) T) ((-40 . -722) T) ((-222 . -514) 108339) ((-593 . -25) T) ((-476 . -151) 108323) ((-463 . -151) 108307) ((-917 . -790) T) ((-917 . -722) T) ((-767 . -789) T) ((-767 . -790) T) ((-506 . -1093) T) ((-502 . -1093) T) ((-767 . -722) T) ((-225 . -363) T) ((-1149 . -1093) 108285) ((-867 . -1212) T) ((-649 . -610) 108267) ((-867 . -555) T) ((-689 . -368) NIL) ((-1285 . -613) 108249) ((-359 . -1264) 108233) ((-665 . -102) T) ((-353 . -1264) 108217) ((-345 . -1264) 108201) ((-1280 . -1093) T) ((-520 . -846) 108180) ((-813 . -452) 108159) ((-1042 . -1093) T) ((-1042 . -1065) 108088) ((-1023 . -972) 108057) ((-815 . -1105) T) ((-999 . -713) 108002) ((-386 . -1105) T) ((-476 . -972) 107971) ((-463 . -972) 107940) ((-110 . -151) 107922) ((-73 . -610) 107904) ((-889 . -610) 107886) ((-1073 . -720) 107865) ((-1285 . -1045) T) ((-812 . -636) 107813) ((-294 . -1052) 107755) ((-169 . -1212) 107660) ((-225 . -1105) T) ((-324 . -23) T) ((-1160 . -988) 107612) ((-839 . -1093) T) ((-1243 . -1051) 107517) ((-1119 . -736) 107496) ((-1241 . -916) 107475) ((-1220 . -916) 107454) ((-866 . -722) T) ((-169 . -555) 107365) ((-579 . -643) 107352) ((-563 . -643) 107339) ((-407 . -1093) T) ((-263 . -1093) T) ((-213 . -610) 107321) ((-495 . -643) 107286) ((-225 . -23) T) ((-1220 . -816) 107239) ((-1279 . -102) T) ((-354 . -1276) 107216) ((-1277 . -102) T) ((-1243 . -111) 107108) ((-144 . -610) 107090) ((-989 . -131) T) ((-44 . -102) T) ((-240 . -846) 107041) ((-1230 . -1212) 107020) ((-103 . -489) 107004) ((-1280 . -713) 106974) ((-1080 . -47) 106935) ((-1056 . -1105) T) ((-948 . -1105) T) ((-127 . -34) T) ((-121 . -34) T) ((-778 . -47) 106912) ((-776 . -47) 106884) ((-1230 . -555) 106795) ((-354 . -368) T) ((-481 . -1105) T) ((-1165 . -131) T) ((-1118 . -131) T) ((-454 . -47) 106774) ((-867 . -363) T) ((-850 . -131) T) ((-152 . -102) T) ((-1056 . -23) T) ((-948 . -23) T) ((-570 . -555) T) ((-812 . -25) T) ((-812 . -21) T) ((-1135 . -514) 106707) ((-590 . -1076) T) ((-584 . -1034) 106691) ((-1243 . -613) 106565) ((-481 . -23) T) ((-351 . -1052) T) ((-1202 . -896) 106546) ((-665 . -309) 106484) ((-1106 . -1264) 106454) ((-694 . -643) 106419) ((-999 . -172) T) ((-959 . -145) 106398) ((-632 . -1093) T) ((-604 . -1093) T) ((-959 . -147) 106377) ((-1000 . -846) T) ((-731 . -147) 106356) ((-731 . -145) 106335) ((-967 . -846) T) ((-474 . -916) 106314) ((-316 . -1051) 106224) ((-313 . -1051) 106153) ((-995 . -286) 106111) ((-407 . -713) 106063) ((-696 . -844) T) ((-1243 . -1045) T) ((-316 . -111) 105959) ((-313 . -111) 105872) ((-960 . -102) T) ((-811 . -102) 105662) ((-708 . -611) NIL) ((-708 . -610) 105644) ((-653 . -1034) 105540) ((-1243 . -326) 105484) ((-1031 . -288) 105459) ((-579 . -722) T) ((-563 . -790) T) ((-169 . -363) 105410) ((-563 . -787) T) ((-563 . -722) T) ((-495 . -722) T) ((-1139 . -489) 105394) ((-1080 . -882) NIL) ((-867 . -1105) T) ((-117 . -905) NIL) ((-1279 . -1278) 105370) ((-1277 . -1278) 105349) ((-778 . -882) NIL) ((-776 . -882) 105208) ((-1272 . -25) T) ((-1272 . -21) T) ((-1205 . -102) 105186) ((-1099 . -395) T) ((-620 . -643) 105173) ((-454 . -882) NIL) ((-670 . -102) 105151) ((-1080 . -1034) 104978) ((-867 . -23) T) ((-778 . -1034) 104837) ((-776 . -1034) 104694) ((-117 . -643) 104639) ((-454 . -1034) 104515) ((-316 . -613) 104079) ((-313 . -613) 103962) ((-644 . -1034) 103946) ((-624 . -102) T) ((-222 . -489) 103930) ((-1257 . -34) T) ((-136 . -613) 103914) ((-632 . -713) 103898) ((-604 . -713) 103882) ((-665 . -38) 103842) ((-319 . -102) T) ((-85 . -610) 103824) ((-50 . -1034) 103808) ((-1113 . -1051) 103795) ((-1080 . -377) 103779) ((-778 . -377) 103763) ((-694 . -722) T) ((-694 . -790) T) ((-694 . -787) T) ((-580 . -1034) 103750) ((-518 . -1034) 103727) ((-60 . -57) 103689) ((-324 . -131) T) ((-316 . -1045) 103579) ((-313 . -1045) T) ((-169 . -1105) T) ((-776 . -377) 103563) ((-45 . -151) 103513) ((-1000 . -988) 103495) ((-454 . -377) 103479) ((-407 . -172) T) ((-316 . -243) 103458) ((-313 . -243) T) ((-313 . -233) NIL) ((-294 . -1093) 103240) ((-225 . -131) T) ((-1113 . -111) 103225) ((-169 . -23) T) ((-795 . -147) 103204) ((-795 . -145) 103183) ((-251 . -636) 103089) ((-250 . -636) 102995) ((-319 . -284) 102961) ((-1149 . -514) 102894) ((-1126 . -1093) T) ((-225 . -1054) T) ((-811 . -309) 102832) ((-1080 . -896) 102767) ((-778 . -896) 102710) ((-776 . -896) 102694) ((-1279 . -38) 102664) ((-1277 . -38) 102634) ((-1230 . -1105) T) ((-851 . -1105) T) ((-454 . -896) 102611) ((-854 . -1093) T) ((-1230 . -23) T) ((-1113 . -613) 102583) ((-570 . -1105) T) ((-851 . -23) T) ((-620 . -722) T) ((-355 . -916) T) ((-352 . -916) T) ((-289 . -102) T) ((-344 . -916) T) ((-1056 . -131) T) ((-966 . -1076) T) ((-948 . -131) T) ((-117 . -790) NIL) ((-117 . -787) NIL) ((-117 . -722) T) ((-689 . -905) NIL) ((-1042 . -514) 102484) ((-481 . -131) T) ((-570 . -23) T) ((-670 . -309) 102422) ((-632 . -757) T) ((-604 . -757) T) ((-1221 . -846) NIL) ((-999 . -290) T) ((-251 . -21) T) ((-689 . -643) 102372) ((-351 . -1093) T) ((-251 . -25) T) ((-250 . -21) T) ((-250 . -25) T) ((-152 . -38) 102356) ((-2 . -102) T) ((-906 . -916) T) ((-482 . -1264) 102326) ((-223 . -1034) 102303) ((-1113 . -1045) T) ((-707 . -307) T) ((-294 . -713) 102245) ((-696 . -1052) T) ((-487 . -452) T) ((-407 . -514) 102157) ((-217 . -452) T) ((-1113 . -233) T) ((-295 . -151) 102107) ((-995 . -611) 102068) ((-995 . -610) 102050) ((-985 . -610) 102032) ((-116 . -1052) T) ((-649 . -1051) 102016) ((-225 . -493) T) ((-399 . -610) 101998) ((-399 . -611) 101975) ((-1049 . -1264) 101945) ((-649 . -111) 101924) ((-1135 . -489) 101908) ((-811 . -38) 101878) ((-63 . -441) T) ((-63 . -395) T) ((-1152 . -102) T) ((-867 . -131) T) ((-484 . -102) 101856) ((-1285 . -368) T) ((-1073 . -102) T) ((-1055 . -102) T) ((-351 . -713) 101801) ((-727 . -147) 101780) ((-727 . -145) 101759) ((-649 . -613) 101677) ((-1020 . -643) 101614) ((-523 . -1093) 101592) ((-359 . -102) T) ((-353 . -102) T) ((-345 . -102) T) ((-108 . -102) T) ((-504 . -1093) T) ((-354 . -643) 101537) ((-1165 . -636) 101485) ((-1118 . -636) 101433) ((-385 . -509) 101412) ((-829 . -844) 101391) ((-379 . -1212) T) ((-689 . -722) T) ((-339 . -1052) T) ((-1221 . -988) 101343) ((-174 . -1052) T) ((-103 . -610) 101275) ((-1167 . -145) 101254) ((-1167 . -147) 101233) ((-379 . -555) T) ((-1166 . -147) 101212) ((-1166 . -145) 101191) ((-1160 . -145) 101098) ((-407 . -290) T) ((-1160 . -147) 101005) ((-1119 . -147) 100984) ((-1119 . -145) 100963) ((-319 . -38) 100804) ((-169 . -131) T) ((-313 . -791) NIL) ((-313 . -788) NIL) ((-649 . -1045) T) ((-48 . -643) 100769) ((-889 . -613) 100746) ((-1159 . -102) T) ((-990 . -102) T) ((-989 . -21) T) ((-127 . -1006) 100730) ((-121 . -1006) 100714) ((-989 . -25) T) ((-897 . -119) 100698) ((-1151 . -102) T) ((-812 . -846) 100677) ((-1230 . -131) T) ((-1165 . -25) T) ((-1165 . -21) T) ((-851 . -131) T) ((-1118 . -25) T) ((-1118 . -21) T) ((-850 . -25) T) ((-850 . -21) T) ((-778 . -307) 100656) ((-642 . -102) 100634) ((-629 . -102) T) ((-1152 . -309) 100429) ((-570 . -131) T) ((-618 . -844) 100408) ((-1149 . -489) 100392) ((-1143 . -151) 100342) ((-1139 . -610) 100304) ((-1139 . -611) 100265) ((-1020 . -787) T) ((-1020 . -790) T) ((-1020 . -722) T) ((-708 . -1051) 100088) ((-484 . -309) 100026) ((-453 . -417) 99996) ((-351 . -172) T) ((-289 . -38) 99983) ((-274 . -102) T) ((-273 . -102) T) ((-272 . -102) T) ((-271 . -102) T) ((-270 . -102) T) ((-269 . -102) T) ((-343 . -1034) 99960) ((-268 . -102) T) ((-212 . -102) T) ((-211 . -102) T) ((-209 . -102) T) ((-208 . -102) T) ((-207 . -102) T) ((-206 . -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) ((-194 . -102) T) ((-193 . -102) T) ((-354 . -722) T) ((-708 . -111) 99769) ((-665 . -231) 99753) ((-580 . -307) T) ((-518 . -307) T) ((-294 . -514) 99702) ((-108 . -309) NIL) ((-72 . -395) T) ((-1106 . -102) 99492) ((-829 . -411) 99476) ((-1113 . -791) T) ((-1113 . -788) T) ((-696 . -1093) T) ((-577 . -610) 99458) ((-379 . -363) T) ((-169 . -493) 99436) ((-222 . -610) 99368) ((-134 . -1093) T) ((-116 . -1093) T) ((-48 . -722) T) ((-1042 . -489) 99333) ((-141 . -425) 99315) ((-141 . -368) T) ((-1023 . -102) T) ((-512 . -509) 99294) ((-708 . -613) 99050) ((-476 . -102) T) ((-463 . -102) T) ((-1030 . -1105) T) ((-1174 . -1034) 98985) ((-1167 . -35) 98951) ((-1167 . -95) 98917) ((-1167 . -1196) 98883) ((-1167 . -1193) 98849) ((-1151 . -309) NIL) ((-89 . -396) T) ((-89 . -395) T) ((-1073 . -1144) 98828) ((-1166 . -1193) 98794) ((-1166 . -1196) 98760) ((-1030 . -23) T) ((-1166 . -95) 98726) ((-570 . -493) T) ((-1166 . -35) 98692) ((-1160 . -1193) 98658) ((-1160 . -1196) 98624) ((-1160 . -95) 98590) ((-361 . -1105) T) ((-359 . -1144) 98569) ((-353 . -1144) 98548) ((-345 . -1144) 98527) ((-1160 . -35) 98493) ((-1119 . -35) 98459) ((-1119 . -95) 98425) ((-108 . -1144) T) ((-1119 . -1196) 98391) ((-829 . -1052) 98370) ((-642 . -309) 98308) ((-629 . -309) 98159) ((-1119 . -1193) 98125) ((-708 . -1045) T) ((-1056 . -636) 98107) ((-1073 . -38) 97975) ((-948 . -636) 97923) ((-1000 . -147) T) ((-1000 . -145) NIL) ((-379 . -1105) T) ((-324 . -25) T) ((-322 . -23) T) ((-939 . -846) 97902) ((-708 . -326) 97879) ((-481 . -636) 97827) ((-40 . -1034) 97715) ((-708 . -233) T) ((-696 . -713) 97702) ((-339 . -1093) T) ((-174 . -1093) T) ((-331 . -846) T) ((-418 . -452) 97652) ((-379 . -23) T) ((-359 . -38) 97617) ((-353 . -38) 97582) ((-345 . -38) 97547) ((-80 . -441) T) ((-80 . -395) T) ((-225 . -25) T) ((-225 . -21) T) ((-832 . -1105) T) ((-108 . -38) 97497) ((-823 . -1105) T) ((-770 . -1093) T) ((-116 . -713) 97484) ((-667 . -1034) 97468) ((-609 . -102) T) ((-832 . -23) T) ((-823 . -23) T) ((-1149 . -286) 97445) ((-1106 . -309) 97383) ((-1095 . -235) 97367) ((-64 . -396) T) ((-64 . -395) T) ((-110 . -102) T) ((-40 . -377) 97344) ((-96 . -102) T) ((-648 . -848) 97328) ((-1128 . -1076) T) ((-1056 . -21) T) ((-1056 . -25) T) ((-811 . -231) 97297) ((-948 . -25) T) ((-948 . -21) T) ((-618 . -1052) T) ((-1113 . -368) T) ((-481 . -25) T) ((-481 . -21) T) ((-1023 . -309) 97235) ((-885 . -610) 97217) ((-881 . -610) 97199) ((-251 . -846) 97150) ((-250 . -846) 97101) ((-523 . -514) 97034) ((-867 . -636) 97011) ((-476 . -309) 96949) ((-463 . -309) 96887) ((-351 . -290) T) ((-1149 . -1245) 96871) ((-1135 . -610) 96833) ((-1135 . -611) 96794) ((-1133 . -102) T) ((-995 . -1051) 96690) ((-40 . -896) 96642) ((-1149 . -601) 96619) ((-1285 . -643) 96606) ((-862 . -490) 96583) ((-1057 . -151) 96529) ((-868 . -1212) T) ((-995 . -111) 96411) ((-339 . -713) 96395) ((-862 . -610) 96357) ((-174 . -713) 96289) ((-407 . -286) 96247) ((-868 . -555) T) ((-108 . -400) 96229) ((-84 . -384) T) ((-84 . -395) T) ((-696 . -172) T) ((-614 . -610) 96211) ((-99 . -722) T) ((-482 . -102) 96001) ((-99 . -473) T) ((-116 . -172) T) ((-1106 . -38) 95971) ((-169 . -636) 95919) ((-1049 . -102) T) ((-995 . -613) 95809) ((-867 . -25) T) ((-811 . -238) 95788) ((-867 . -21) T) ((-814 . -102) T) ((-414 . -102) T) ((-385 . -102) T) ((-110 . -309) NIL) ((-227 . -102) 95766) ((-127 . -1208) T) ((-121 . -1208) T) ((-1030 . -131) T) ((-665 . -367) 95750) ((-995 . -1045) T) ((-1230 . -636) 95698) ((-1097 . -610) 95680) ((-999 . -610) 95662) ((-515 . -23) T) ((-510 . -23) T) ((-343 . -307) T) ((-508 . -23) T) ((-322 . -131) T) ((-3 . -1093) T) ((-999 . -611) 95646) ((-995 . -243) 95625) ((-995 . -233) 95604) ((-1285 . -722) T) ((-1249 . -145) 95583) ((-829 . -1093) T) ((-1249 . -147) 95562) ((-1242 . -147) 95541) ((-1242 . -145) 95520) ((-1241 . -1212) 95499) ((-1221 . -145) 95406) ((-1221 . -147) 95313) ((-1220 . -1212) 95292) ((-379 . -131) T) ((-563 . -882) 95274) ((0 . -1093) T) ((-174 . -172) T) ((-169 . -21) T) ((-169 . -25) T) ((-49 . -1093) T) ((-1243 . -643) 95179) ((-1241 . -555) 95130) ((-710 . -1105) T) ((-1220 . -555) 95081) ((-563 . -1034) 95063) ((-593 . -147) 95042) ((-593 . -145) 95021) ((-495 . -1034) 94964) ((-1128 . -1130) T) ((-87 . -384) T) ((-87 . -395) T) ((-868 . -363) T) ((-832 . -131) T) ((-823 . -131) T) ((-710 . -23) T) ((-506 . -610) 94930) ((-502 . -610) 94912) ((-1281 . -1052) T) ((-379 . -1054) T) ((-1022 . -1093) 94890) ((-55 . -1034) 94872) ((-897 . -34) T) ((-482 . -309) 94810) ((-590 . -102) T) ((-1149 . -611) 94771) ((-1149 . -610) 94703) ((-1165 . -846) 94682) ((-45 . -102) T) ((-1118 . -846) 94661) ((-813 . -102) T) ((-1230 . -25) T) ((-1230 . -21) T) ((-851 . -25) T) ((-44 . -367) 94645) ((-851 . -21) T) ((-727 . -452) 94596) ((-1280 . -610) 94578) ((-1049 . -309) 94516) ((-666 . -1076) T) ((-603 . -1076) T) ((-390 . -1093) T) ((-570 . -25) T) ((-570 . -21) T) ((-180 . -1076) T) ((-161 . -1076) T) ((-156 . -1076) T) ((-154 . -1076) T) ((-618 . -1093) T) ((-694 . -882) 94498) ((-1257 . -1208) T) ((-227 . -309) 94436) ((-144 . -368) T) ((-1042 . -611) 94378) ((-1042 . -610) 94321) ((-313 . -905) NIL) ((-1215 . -840) T) ((-694 . -1034) 94266) ((-707 . -916) T) ((-474 . -1212) 94245) ((-1166 . -452) 94224) ((-1160 . -452) 94203) ((-330 . -102) T) ((-868 . -1105) T) ((-316 . -643) 94024) ((-313 . -643) 93953) ((-474 . -555) 93904) ((-339 . -514) 93870) ((-549 . -151) 93820) ((-40 . -307) T) ((-839 . -610) 93802) ((-696 . -290) T) ((-868 . -23) T) ((-379 . -493) T) ((-1073 . -231) 93772) ((-512 . -102) T) ((-407 . -611) 93579) ((-407 . -610) 93561) ((-263 . -610) 93543) ((-116 . -290) T) ((-1243 . -722) T) ((-1241 . -363) 93522) ((-1220 . -363) 93501) ((-1270 . -34) T) ((-1215 . -1093) T) ((-117 . -1208) T) ((-108 . -231) 93483) ((-1171 . -102) T) ((-477 . -1093) T) ((-523 . -489) 93467) ((-733 . -34) T) ((-482 . -38) 93437) ((-141 . -34) T) ((-117 . -880) 93414) ((-117 . -882) NIL) ((-620 . -1034) 93297) ((-640 . -846) 93276) ((-1269 . -102) T) ((-295 . -102) T) ((-708 . -368) 93255) ((-117 . -1034) 93232) ((-390 . -713) 93216) ((-618 . -713) 93200) ((-45 . -309) 93004) ((-812 . -145) 92983) ((-812 . -147) 92962) ((-1280 . -382) 92941) ((-815 . -846) T) ((-1259 . -1093) T) ((-1152 . -229) 92888) ((-386 . -846) 92867) ((-1249 . -1196) 92833) ((-1249 . -1193) 92799) ((-1242 . -1193) 92765) ((-515 . -131) T) ((-1242 . -1196) 92731) ((-1221 . -1193) 92697) ((-1221 . -1196) 92663) ((-1249 . -35) 92629) ((-1249 . -95) 92595) ((-632 . -610) 92564) ((-604 . -610) 92533) ((-225 . -846) T) ((-1242 . -95) 92499) ((-1242 . -35) 92465) ((-1241 . -1105) T) ((-1113 . -643) 92452) ((-1221 . -95) 92418) ((-1220 . -1105) T) ((-591 . -151) 92400) ((-1073 . -349) 92379) ((-174 . -290) T) ((-117 . -377) 92356) ((-117 . -338) 92333) ((-1221 . -35) 92299) ((-866 . -307) T) ((-313 . -790) NIL) ((-313 . -787) NIL) ((-316 . -722) 92148) ((-313 . -722) T) ((-474 . -363) 92127) ((-359 . -349) 92106) ((-353 . -349) 92085) ((-345 . -349) 92064) ((-316 . -473) 92043) ((-1241 . -23) T) ((-1220 . -23) T) ((-714 . -1105) T) ((-710 . -131) T) ((-648 . -102) T) ((-477 . -713) 92008) ((-45 . -282) 91958) ((-105 . -1093) T) ((-68 . -610) 91940) ((-966 . -102) T) ((-860 . -102) T) ((-620 . -896) 91899) ((-1281 . -1093) T) ((-381 . -1093) T) ((-1207 . -1093) T) ((-1106 . -231) 91868) ((-82 . -1208) T) ((-1056 . -846) T) ((-948 . -846) 91847) ((-117 . -896) NIL) ((-778 . -916) 91826) ((-709 . -846) T) ((-531 . -1093) T) ((-500 . -1093) T) ((-355 . -1212) T) ((-352 . -1212) T) ((-344 . -1212) T) ((-264 . -1212) 91805) ((-247 . -1212) 91784) ((-533 . -856) T) ((-481 . -846) 91763) ((-1151 . -824) T) ((-1135 . -1051) 91747) ((-390 . -757) T) ((-689 . -1208) T) ((-686 . -1034) 91731) ((-355 . -555) T) ((-352 . -555) T) ((-344 . -555) T) ((-264 . -555) 91662) ((-247 . -555) 91593) ((-525 . -1076) T) ((-1135 . -111) 91572) ((-453 . -740) 91542) ((-862 . -1051) 91512) ((-813 . -38) 91454) ((-689 . -880) 91436) ((-689 . -882) 91418) ((-295 . -309) 91222) ((-906 . -1212) T) ((-665 . -411) 91206) ((-862 . -111) 91171) ((-689 . -1034) 91116) ((-1000 . -452) T) ((-906 . -555) T) ((-533 . -610) 91098) ((-580 . -916) T) ((-474 . -1105) T) ((-518 . -916) T) ((-1149 . -288) 91075) ((-910 . -452) T) ((-65 . -610) 91057) ((-629 . -229) 91003) ((-474 . -23) T) ((-1113 . -790) T) ((-868 . -131) T) ((-1113 . -787) T) ((-1272 . -1274) 90982) ((-1113 . -722) T) ((-649 . -643) 90956) ((-294 . -610) 90697) ((-1135 . -613) 90615) ((-1031 . -34) T) ((-811 . -844) 90594) ((-579 . -307) T) ((-563 . -307) T) ((-495 . -307) T) ((-1281 . -713) 90564) ((-689 . -377) 90546) ((-689 . -338) 90528) ((-477 . -172) T) ((-381 . -713) 90498) ((-862 . -613) 90433) ((-867 . -846) NIL) ((-563 . -1018) T) ((-495 . -1018) T) ((-1126 . -610) 90415) ((-1106 . -238) 90394) ((-214 . -102) T) ((-1143 . -102) T) ((-71 . -610) 90376) ((-1135 . -1045) T) ((-1171 . -38) 90273) ((-854 . -610) 90255) ((-563 . -545) T) ((-665 . -1052) T) ((-727 . -945) 90208) ((-1135 . -233) 90187) ((-1075 . -1093) T) ((-1030 . -25) T) ((-1030 . -21) T) ((-999 . -1051) 90132) ((-901 . -102) T) ((-862 . -1045) T) ((-689 . -896) NIL) ((-355 . -329) 90116) ((-355 . -363) T) ((-352 . -329) 90100) ((-352 . -363) T) ((-344 . -329) 90084) ((-344 . -363) T) ((-487 . -102) T) ((-1269 . -38) 90054) ((-546 . -846) T) ((-523 . -682) 90004) ((-217 . -102) T) ((-1020 . -1034) 89884) ((-999 . -111) 89813) ((-1167 . -969) 89782) ((-1166 . -969) 89744) ((-520 . -151) 89728) ((-1073 . -370) 89707) ((-351 . -610) 89689) ((-322 . -21) T) ((-354 . -1034) 89666) ((-322 . -25) T) ((-1160 . -969) 89635) ((-1119 . -969) 89602) ((-76 . -610) 89584) ((-694 . -307) T) ((-169 . -846) 89563) ((-129 . -840) T) ((-906 . -363) T) ((-379 . -25) T) ((-379 . -21) T) ((-906 . -329) 89550) ((-86 . -610) 89532) ((-694 . -1018) T) ((-672 . -846) T) ((-1241 . -131) T) ((-1220 . -131) T) ((-897 . -1006) 89516) ((-832 . -21) T) ((-48 . -1034) 89459) ((-832 . -25) T) ((-823 . -25) T) ((-823 . -21) T) ((-1279 . -1052) T) ((-548 . -102) T) ((-1277 . -1052) T) ((-649 . -722) T) ((-1097 . -615) 89362) ((-999 . -613) 89292) ((-1280 . -1051) 89276) ((-1230 . -846) 89255) ((-811 . -411) 89224) ((-103 . -119) 89208) ((-129 . -1093) T) ((-52 . -1093) T) ((-922 . -610) 89190) ((-867 . -988) 89167) ((-819 . -102) T) ((-1280 . -111) 89146) ((-648 . -38) 89116) ((-570 . -846) T) ((-355 . -1105) T) ((-352 . -1105) T) ((-344 . -1105) T) ((-264 . -1105) T) ((-247 . -1105) T) ((-620 . -307) 89095) ((-1143 . -309) 88899) ((-524 . -1076) T) ((-311 . -1093) T) ((-659 . -23) T) ((-482 . -231) 88868) ((-152 . -1052) T) ((-355 . -23) T) ((-352 . -23) T) ((-344 . -23) T) ((-117 . -307) T) ((-264 . -23) T) ((-247 . -23) T) ((-999 . -1045) T) ((-708 . -905) 88847) ((-1149 . -613) 88824) ((-999 . -233) 88796) ((-999 . -243) T) ((-117 . -1018) NIL) ((-906 . -1105) T) ((-1242 . -452) 88775) ((-1221 . -452) 88754) ((-523 . -610) 88686) ((-708 . -643) 88611) ((-407 . -1051) 88563) ((-504 . -610) 88545) ((-906 . -23) T) ((-487 . -309) NIL) ((-1280 . -613) 88501) ((-474 . -131) T) ((-217 . -309) NIL) ((-407 . -111) 88439) ((-811 . -1052) 88369) ((-733 . -1091) 88353) ((-1241 . -493) 88319) ((-1220 . -493) 88285) ((-141 . -1091) 88267) ((-477 . -290) T) ((-1280 . -1045) T) ((-1213 . -102) T) ((-1057 . -102) T) ((-839 . -613) 88135) ((-500 . -514) NIL) ((-698 . -102) T) ((-482 . -238) 88114) ((-407 . -613) 88012) ((-1165 . -145) 87991) ((-1165 . -147) 87970) ((-1118 . -147) 87949) ((-1118 . -145) 87928) ((-632 . -1051) 87912) ((-604 . -1051) 87896) ((-665 . -1093) T) ((-665 . -1048) 87836) ((-1167 . -1248) 87820) ((-1167 . -1235) 87797) ((-487 . -1144) T) ((-1166 . -1240) 87758) ((-1166 . -1235) 87728) ((-1166 . -1238) 87712) ((-217 . -1144) T) ((-343 . -916) T) ((-814 . -266) 87696) ((-632 . -111) 87675) ((-604 . -111) 87654) ((-1160 . -1219) 87615) ((-839 . -1045) 87594) ((-1160 . -1235) 87571) ((-515 . -25) T) ((-495 . -302) T) ((-511 . -23) T) ((-510 . -25) T) ((-508 . -25) T) ((-507 . -23) T) ((-1160 . -1217) 87555) ((-407 . -1045) T) ((-319 . -1052) T) ((-689 . -307) T) ((-108 . -844) T) ((-708 . -722) T) ((-407 . -243) T) ((-407 . -233) 87534) ((-487 . -38) 87484) ((-217 . -38) 87434) ((-474 . -493) 87400) ((-1151 . -1137) T) ((-1094 . -102) T) ((-696 . -610) 87382) ((-696 . -611) 87297) ((-710 . -21) T) ((-710 . -25) T) ((-1128 . -102) T) ((-134 . -610) 87279) ((-116 . -610) 87261) ((-157 . -25) T) ((-1279 . -1093) T) ((-868 . -636) 87209) ((-1277 . -1093) T) ((-959 . -102) T) ((-731 . -102) T) ((-711 . -102) T) ((-453 . -102) T) ((-812 . -452) 87160) ((-44 . -1093) T) ((-1081 . -846) T) ((-659 . -131) T) ((-1057 . -309) 87011) ((-665 . -713) 86995) ((-289 . -1052) T) ((-355 . -131) T) ((-352 . -131) T) ((-344 . -131) T) ((-264 . -131) T) ((-247 . -131) T) ((-418 . -102) T) ((-152 . -1093) T) ((-45 . -229) 86945) ((-954 . -846) 86924) ((-995 . -643) 86862) ((-240 . -1264) 86832) ((-1020 . -307) T) ((-294 . -1051) 86753) ((-906 . -131) T) ((-40 . -916) T) ((-487 . -400) 86735) ((-354 . -307) T) ((-217 . -400) 86717) ((-1073 . -411) 86701) ((-294 . -111) 86617) ((-1176 . -846) T) ((-1175 . -846) T) ((-868 . -25) T) ((-868 . -21) T) ((-339 . -610) 86599) ((-1243 . -47) 86543) ((-225 . -147) T) ((-174 . -610) 86525) ((-1106 . -844) 86504) ((-770 . -610) 86486) ((-128 . -846) T) ((-605 . -235) 86433) ((-475 . -235) 86383) ((-1279 . -713) 86353) ((-48 . -307) T) ((-1277 . -713) 86323) ((-65 . -613) 86252) ((-960 . -1093) T) ((-811 . -1093) 86042) ((-312 . -102) T) ((-897 . -1208) T) ((-48 . -1018) T) ((-1220 . -636) 85950) ((-684 . -102) 85928) ((-44 . -713) 85912) ((-549 . -102) T) ((-294 . -613) 85843) ((-67 . -383) T) ((-67 . -395) T) ((-657 . -23) T) ((-665 . -757) T) ((-1205 . -1093) 85821) ((-351 . -1051) 85766) ((-670 . -1093) 85744) ((-1056 . -147) T) ((-948 . -147) 85723) ((-948 . -145) 85702) ((-795 . -102) T) ((-152 . -713) 85686) ((-481 . -147) 85665) ((-481 . -145) 85644) ((-351 . -111) 85573) ((-1073 . -1052) T) ((-322 . -846) 85552) ((-1249 . -969) 85521) ((-624 . -1093) T) ((-1242 . -969) 85483) ((-511 . -131) T) ((-507 . -131) T) ((-295 . -229) 85433) ((-359 . -1052) T) ((-353 . -1052) T) ((-345 . -1052) T) ((-294 . -1045) 85375) ((-1221 . -969) 85344) ((-379 . -846) T) ((-108 . -1052) T) ((-995 . -722) T) ((-866 . -916) T) ((-839 . -791) 85323) ((-839 . -788) 85302) ((-418 . -309) 85241) ((-468 . -102) T) ((-593 . -969) 85210) ((-319 . -1093) T) ((-407 . -791) 85189) ((-407 . -788) 85168) ((-500 . -489) 85150) ((-1243 . -1034) 85116) ((-1241 . -21) T) ((-1241 . -25) T) ((-1220 . -21) T) ((-1220 . -25) T) ((-811 . -713) 85058) ((-351 . -613) 84988) ((-694 . -404) T) ((-1270 . -1208) T) ((-603 . -102) T) ((-1106 . -411) 84957) ((-999 . -368) NIL) ((-666 . -102) T) ((-180 . -102) T) ((-161 . -102) T) ((-156 . -102) T) ((-154 . -102) T) ((-103 . -34) T) ((-733 . -1208) T) ((-44 . -757) T) ((-591 . -102) T) ((-77 . -396) T) ((-77 . -395) T) ((-648 . -651) 84941) ((-141 . -1208) T) ((-867 . -147) T) ((-867 . -145) NIL) ((-1207 . -93) T) ((-351 . -1045) T) ((-70 . -383) T) ((-70 . -395) T) ((-1158 . -102) T) ((-665 . -514) 84874) ((-684 . -309) 84812) ((-959 . -38) 84709) ((-731 . -38) 84679) ((-549 . -309) 84483) ((-316 . -1208) T) ((-351 . -233) T) ((-351 . -243) T) ((-313 . -1208) T) ((-289 . -1093) T) ((-1173 . -610) 84465) ((-707 . -1212) T) ((-1149 . -646) 84449) ((-1202 . -555) 84428) ((-707 . -555) T) ((-316 . -880) 84412) ((-316 . -882) 84337) ((-313 . -880) 84298) ((-313 . -882) NIL) ((-795 . -309) 84263) ((-319 . -713) 84104) ((-324 . -323) 84081) ((-485 . -102) T) ((-474 . -25) T) ((-474 . -21) T) ((-418 . -38) 84055) ((-316 . -1034) 83718) ((-225 . -1193) T) ((-225 . -1196) T) ((-3 . -610) 83700) ((-313 . -1034) 83630) ((-2 . -1093) T) ((-2 . |RecordCategory|) T) ((-829 . -610) 83612) ((-1106 . -1052) 83542) ((-579 . -916) T) ((-563 . -816) T) ((-563 . -916) T) ((-495 . -916) T) ((-136 . -1034) 83526) ((-225 . -95) T) ((-75 . -441) T) ((-75 . -395) T) ((0 . -610) 83508) ((-169 . -147) 83487) ((-169 . -145) 83438) ((-225 . -35) T) ((-49 . -610) 83420) ((-477 . -1052) T) ((-487 . -231) 83402) ((-484 . -964) 83386) ((-482 . -844) 83365) ((-217 . -231) 83347) ((-81 . -441) T) ((-81 . -395) T) ((-1139 . -34) T) ((-811 . -172) 83326) ((-727 . -102) T) ((-1022 . -610) 83293) ((-500 . -286) 83268) ((-316 . -377) 83237) ((-313 . -377) 83198) ((-313 . -338) 83159) ((-1078 . -610) 83141) ((-812 . -945) 83088) ((-657 . -131) T) ((-1230 . -145) 83067) ((-1230 . -147) 83046) ((-1167 . -102) T) ((-1166 . -102) T) ((-1160 . -102) T) ((-1152 . -1093) T) ((-1119 . -102) T) ((-222 . -34) T) ((-289 . -713) 83033) ((-1152 . -607) 83009) ((-591 . -309) NIL) ((-484 . -1093) 82987) ((-390 . -610) 82969) ((-510 . -846) T) ((-1143 . -229) 82919) ((-1249 . -1248) 82903) ((-1249 . -1235) 82880) ((-1242 . -1240) 82841) ((-1242 . -1235) 82811) ((-1242 . -1238) 82795) ((-1221 . -1219) 82756) ((-1221 . -1235) 82733) ((-618 . -610) 82715) ((-1221 . -1217) 82699) ((-694 . -916) T) ((-1167 . -284) 82665) ((-1166 . -284) 82631) ((-1160 . -284) 82597) ((-1073 . -1093) T) ((-1055 . -1093) T) ((-48 . -302) T) ((-316 . -896) 82563) ((-313 . -896) NIL) ((-1055 . -1062) 82542) ((-1113 . -882) 82524) ((-795 . -38) 82508) ((-264 . -636) 82456) ((-247 . -636) 82404) ((-696 . -1051) 82391) ((-593 . -1235) 82368) ((-1119 . -284) 82334) ((-319 . -172) 82265) ((-359 . -1093) T) ((-353 . -1093) T) ((-345 . -1093) T) ((-500 . -19) 82247) ((-1113 . -1034) 82229) ((-1095 . -151) 82213) ((-108 . -1093) T) ((-116 . -1051) 82200) ((-707 . -363) T) ((-500 . -601) 82175) ((-696 . -111) 82160) ((-436 . -102) T) ((-45 . -1142) 82110) ((-116 . -111) 82095) ((-632 . -716) T) ((-604 . -716) T) ((-811 . -514) 82028) ((-1031 . -1208) T) ((-939 . -151) 82012) ((-1215 . -610) 81994) ((-1165 . -452) 81925) ((-1159 . -1093) T) ((-1151 . -1093) T) ((-525 . -102) T) ((-520 . -102) 81875) ((-1135 . -643) 81849) ((-1118 . -452) 81800) ((-1080 . -1212) 81779) ((-778 . -1212) 81758) ((-776 . -1212) 81737) ((-62 . -1208) T) ((-477 . -610) 81689) ((-477 . -611) 81611) ((-1080 . -555) 81542) ((-990 . -1093) T) ((-778 . -555) 81453) ((-776 . -555) 81384) ((-482 . -411) 81353) ((-620 . -916) 81332) ((-454 . -1212) 81311) ((-727 . -309) 81298) ((-696 . -613) 81270) ((-398 . -610) 81252) ((-670 . -514) 81185) ((-659 . -25) T) ((-659 . -21) T) ((-454 . -555) 81116) ((-355 . -25) T) ((-355 . -21) T) ((-117 . -916) T) ((-117 . -816) NIL) ((-352 . -25) T) ((-352 . -21) T) ((-344 . -25) T) ((-344 . -21) T) ((-264 . -25) T) ((-264 . -21) T) ((-247 . -25) T) ((-247 . -21) T) ((-83 . -384) T) ((-83 . -395) T) ((-134 . -613) 81098) ((-116 . -613) 81070) ((-1259 . -610) 81052) ((-1214 . -846) T) ((-1202 . -1105) T) ((-1202 . -23) T) ((-1160 . -309) 80937) ((-1119 . -309) 80924) ((-1073 . -713) 80792) ((-862 . -643) 80752) ((-939 . -976) 80736) ((-906 . -21) T) ((-289 . -172) T) ((-906 . -25) T) ((-311 . -93) T) ((-868 . -846) 80687) ((-707 . -1105) T) ((-707 . -23) T) ((-696 . -1045) T) ((-642 . -1093) 80665) ((-629 . -1093) T) ((-580 . -1212) T) ((-518 . -1212) T) ((-696 . -233) T) ((-629 . -607) 80640) ((-580 . -555) T) ((-518 . -555) T) ((-359 . -713) 80592) ((-339 . -1051) 80576) ((-353 . -713) 80528) ((-345 . -713) 80480) ((-174 . -1051) 80412) ((-174 . -111) 80323) ((-108 . -713) 80273) ((-339 . -111) 80252) ((-274 . -1093) T) ((-273 . -1093) T) ((-272 . -1093) T) ((-271 . -1093) T) ((-270 . -1093) T) ((-269 . -1093) T) ((-268 . -1093) T) ((-212 . -1093) T) ((-211 . -1093) T) ((-169 . -1196) 80230) ((-169 . -1193) 80208) ((-209 . -1093) T) ((-208 . -1093) T) ((-116 . -1045) T) ((-207 . -1093) T) ((-206 . -1093) T) ((-203 . -1093) T) ((-202 . -1093) T) ((-201 . -1093) T) ((-200 . -1093) T) ((-199 . -1093) T) ((-198 . -1093) T) ((-197 . -1093) T) ((-196 . -1093) T) ((-195 . -1093) T) ((-194 . -1093) T) ((-193 . -1093) T) ((-240 . -102) 79998) ((-169 . -35) 79976) ((-169 . -95) 79954) ((-649 . -1034) 79850) ((-482 . -1052) 79780) ((-1106 . -1093) 79570) ((-1135 . -34) T) ((-665 . -489) 79554) ((-73 . -1208) T) ((-105 . -610) 79536) ((-1281 . -610) 79518) ((-381 . -610) 79500) ((-339 . -613) 79452) ((-174 . -613) 79369) ((-1207 . -490) 79350) ((-727 . -38) 79199) ((-570 . -1196) T) ((-570 . -1193) T) ((-531 . -610) 79181) ((-520 . -309) 79119) ((-500 . -610) 79101) ((-500 . -611) 79083) ((-1207 . -610) 79049) ((-1160 . -1144) NIL) ((-1023 . -1065) 79018) ((-1023 . -1093) T) ((-1000 . -102) T) ((-967 . -102) T) ((-910 . -102) T) ((-889 . -1034) 78995) ((-1135 . -722) T) ((-999 . -643) 78940) ((-476 . -1093) T) ((-463 . -1093) T) ((-584 . -23) T) ((-570 . -35) T) ((-570 . -95) T) ((-427 . -102) T) ((-1057 . -229) 78886) ((-1167 . -38) 78783) ((-862 . -722) T) ((-689 . -916) T) ((-511 . -25) T) ((-507 . -21) T) ((-507 . -25) T) ((-1166 . -38) 78624) ((-339 . -1045) T) ((-1160 . -38) 78420) ((-1073 . -172) T) ((-174 . -1045) T) ((-1119 . -38) 78317) ((-708 . -47) 78294) ((-359 . -172) T) ((-353 . -172) T) ((-519 . -57) 78268) ((-497 . -57) 78218) ((-351 . -1276) 78195) ((-225 . -452) T) ((-319 . -290) 78146) ((-345 . -172) T) ((-174 . -243) T) ((-1220 . -846) 78045) ((-108 . -172) T) ((-868 . -988) 78029) ((-653 . -1105) T) ((-580 . -363) T) ((-580 . -329) 78016) ((-518 . -329) 77993) ((-518 . -363) T) ((-316 . -307) 77972) ((-313 . -307) T) ((-599 . -846) 77951) ((-1106 . -713) 77893) ((-520 . -282) 77877) ((-653 . -23) T) ((-418 . -231) 77861) ((-313 . -1018) NIL) ((-336 . -23) T) ((-103 . -1006) 77845) ((-45 . -36) 77824) ((-609 . -1093) T) ((-351 . -368) T) ((-524 . -102) T) ((-495 . -27) T) ((-240 . -309) 77762) ((-1080 . -1105) T) ((-1280 . -643) 77736) ((-778 . -1105) T) ((-776 . -1105) T) ((-454 . -1105) T) ((-1056 . -452) T) ((-948 . -452) 77687) ((-1108 . -1076) T) ((-110 . -1093) T) ((-1080 . -23) T) ((-813 . -1052) T) ((-778 . -23) T) ((-776 . -23) T) ((-481 . -452) 77638) ((-1152 . -514) 77421) ((-381 . -382) 77400) ((-1171 . -411) 77384) ((-461 . -23) T) ((-454 . -23) T) ((-96 . -1093) T) ((-484 . -514) 77317) ((-289 . -290) T) ((-1075 . -610) 77299) ((-1075 . -611) 77280) ((-407 . -905) 77259) ((-50 . -1105) T) ((-1020 . -916) T) ((-999 . -722) T) ((-708 . -882) NIL) ((-580 . -1105) T) ((-518 . -1105) T) ((-839 . -643) 77232) ((-1202 . -131) T) ((-1160 . -400) 77184) ((-1000 . -309) NIL) ((-811 . -489) 77168) ((-354 . -916) T) ((-1149 . -34) T) ((-407 . -643) 77120) ((-50 . -23) T) ((-707 . -131) T) ((-708 . -1034) 77000) ((-580 . -23) T) ((-108 . -514) NIL) ((-518 . -23) T) ((-169 . -409) 76971) ((-1133 . -1093) T) ((-1272 . -1271) 76955) ((-696 . -791) T) ((-696 . -788) T) ((-1113 . -307) T) ((-379 . -147) T) ((-280 . -610) 76937) ((-1220 . -988) 76907) ((-48 . -916) T) ((-670 . -489) 76891) ((-251 . -1264) 76861) ((-250 . -1264) 76831) ((-1169 . -846) T) ((-1106 . -172) 76810) ((-1113 . -1018) T) ((-1042 . -34) T) ((-832 . -147) 76789) ((-832 . -145) 76768) ((-733 . -107) 76752) ((-609 . -132) T) ((-482 . -1093) 76542) ((-1171 . -1052) T) ((-867 . -452) T) ((-85 . -1208) T) ((-240 . -38) 76512) ((-141 . -107) 76494) ((-708 . -377) 76478) ((-829 . -613) 76346) ((-1113 . -545) T) ((-578 . -102) T) ((-129 . -490) 76328) ((-390 . -1051) 76312) ((-1280 . -722) T) ((-1165 . -945) 76281) ((-129 . -610) 76248) ((-52 . -610) 76230) ((-1118 . -945) 76197) ((-648 . -411) 76181) ((-1269 . -1052) T) ((-618 . -1051) 76165) ((-657 . -25) T) ((-657 . -21) T) ((-1151 . -514) NIL) ((-1249 . -102) T) ((-1242 . -102) T) ((-390 . -111) 76144) ((-222 . -254) 76128) ((-1221 . -102) T) ((-1049 . -1093) T) ((-1000 . -1144) T) ((-1049 . -1048) 76068) ((-814 . -1093) T) ((-343 . -1212) T) ((-632 . -643) 76052) ((-618 . -111) 76031) ((-604 . -643) 76015) ((-594 . -102) T) ((-311 . -490) 75996) ((-584 . -131) T) ((-593 . -102) T) ((-414 . -1093) T) ((-385 . -1093) T) ((-311 . -610) 75962) ((-227 . -1093) 75940) ((-642 . -514) 75873) ((-629 . -514) 75717) ((-829 . -1045) 75696) ((-640 . -151) 75680) ((-343 . -555) T) ((-708 . -896) 75623) ((-549 . -229) 75573) ((-1249 . -284) 75539) ((-1073 . -290) 75490) ((-487 . -844) T) ((-223 . -1105) T) ((-1242 . -284) 75456) ((-1221 . -284) 75422) ((-1000 . -38) 75372) ((-217 . -844) T) ((-1202 . -493) 75338) ((-910 . -38) 75290) ((-839 . -790) 75269) ((-839 . -787) 75248) ((-839 . -722) 75227) ((-359 . -290) T) ((-353 . -290) T) ((-345 . -290) T) ((-169 . -452) 75158) ((-427 . -38) 75142) ((-108 . -290) T) ((-223 . -23) T) ((-407 . -790) 75121) ((-407 . -787) 75100) ((-407 . -722) T) ((-500 . -288) 75075) ((-477 . -1051) 75040) ((-653 . -131) T) ((-618 . -613) 75009) ((-1106 . -514) 74942) ((-336 . -131) T) ((-169 . -402) 74921) ((-482 . -713) 74863) ((-811 . -286) 74840) ((-477 . -111) 74796) ((-648 . -1052) T) ((-1230 . -452) 74727) ((-1268 . -1076) T) ((-1267 . -1076) T) ((-1080 . -131) T) ((-1049 . -713) 74669) ((-264 . -846) 74648) ((-247 . -846) 74627) ((-778 . -131) T) ((-776 . -131) T) ((-570 . -452) T) ((-1023 . -514) 74560) ((-618 . -1045) T) ((-590 . -1093) T) ((-533 . -173) T) ((-461 . -131) T) ((-454 . -131) T) ((-45 . -1093) T) ((-385 . -713) 74530) ((-813 . -1093) T) ((-476 . -514) 74463) ((-463 . -514) 74396) ((-453 . -367) 74366) ((-45 . -607) 74345) ((-316 . -302) T) ((-477 . -613) 74295) ((-665 . -610) 74257) ((-59 . -846) 74236) ((-1221 . -309) 74121) ((-1000 . -400) 74103) ((-811 . -601) 74080) ((-516 . -846) 74059) ((-496 . -846) 74038) ((-40 . -1212) T) ((-995 . -1034) 73934) ((-50 . -131) T) ((-580 . -131) T) ((-518 . -131) T) ((-294 . -643) 73794) ((-343 . -329) 73771) ((-343 . -363) T) ((-322 . -323) 73748) ((-319 . -286) 73733) ((-40 . -555) T) ((-379 . -1193) T) ((-379 . -1196) T) ((-1031 . -1184) 73708) ((-1181 . -235) 73658) ((-1160 . -231) 73610) ((-330 . -1093) T) ((-379 . -95) T) ((-379 . -35) T) ((-1031 . -107) 73556) ((-477 . -1045) T) ((-479 . -235) 73506) ((-1152 . -489) 73440) ((-1281 . -1051) 73424) ((-381 . -1051) 73408) ((-477 . -243) T) ((-812 . -102) T) ((-710 . -147) 73387) ((-710 . -145) 73366) ((-484 . -489) 73350) ((-485 . -335) 73319) ((-1281 . -111) 73298) ((-512 . -1093) T) ((-482 . -172) 73277) ((-995 . -377) 73261) ((-413 . -102) T) ((-381 . -111) 73240) ((-995 . -338) 73224) ((-279 . -979) 73208) ((-278 . -979) 73192) ((-1279 . -610) 73174) ((-1277 . -610) 73156) ((-110 . -514) NIL) ((-1165 . -1233) 73140) ((-850 . -848) 73124) ((-1171 . -1093) T) ((-103 . -1208) T) ((-948 . -945) 73085) ((-813 . -713) 73027) ((-1221 . -1144) NIL) ((-481 . -945) 72972) ((-1056 . -143) T) ((-60 . -102) 72950) ((-44 . -610) 72932) ((-78 . -610) 72914) ((-351 . -643) 72859) ((-1269 . -1093) T) ((-511 . -846) T) ((-343 . -1105) T) ((-295 . -1093) T) ((-995 . -896) 72818) ((-295 . -607) 72797) ((-1281 . -613) 72746) ((-1249 . -38) 72643) ((-1242 . -38) 72484) ((-1221 . -38) 72280) ((-487 . -1052) T) ((-381 . -613) 72264) ((-217 . -1052) T) ((-343 . -23) T) ((-152 . -610) 72246) ((-829 . -791) 72225) ((-829 . -788) 72204) ((-1207 . -613) 72185) ((-594 . -38) 72158) ((-593 . -38) 72055) ((-866 . -555) T) ((-223 . -131) T) ((-319 . -998) 72021) ((-79 . -610) 72003) ((-708 . -307) 71982) ((-294 . -722) 71884) ((-820 . -102) T) ((-860 . -840) T) ((-294 . -473) 71863) ((-1272 . -102) T) ((-40 . -363) T) ((-868 . -147) 71842) ((-868 . -145) 71821) ((-1151 . -489) 71803) ((-1281 . -1045) T) ((-482 . -514) 71736) ((-1139 . -1208) T) ((-960 . -610) 71718) ((-642 . -489) 71702) ((-629 . -489) 71633) ((-811 . -610) 71364) ((-48 . -27) T) ((-1171 . -713) 71261) ((-648 . -1093) T) ((-857 . -856) T) ((-436 . -364) 71235) ((-1095 . -102) T) ((-966 . -1093) T) ((-860 . -1093) T) ((-812 . -309) 71222) ((-533 . -527) T) ((-533 . -575) T) ((-1277 . -382) 71194) ((-1049 . -514) 71127) ((-1152 . -286) 71103) ((-240 . -231) 71072) ((-1269 . -713) 71042) ((-1159 . -93) T) ((-990 . -93) T) ((-813 . -172) 71021) ((-1205 . -490) 70998) ((-227 . -514) 70931) ((-618 . -791) 70910) ((-618 . -788) 70889) ((-1205 . -610) 70801) ((-222 . -1208) T) ((-670 . -610) 70733) ((-1149 . -1006) 70717) ((-939 . -102) 70667) ((-351 . -722) T) ((-857 . -610) 70649) ((-1221 . -400) 70601) ((-1106 . -489) 70585) ((-60 . -309) 70523) ((-331 . -102) T) ((-1202 . -21) T) ((-1202 . -25) T) ((-40 . -1105) T) ((-707 . -21) T) ((-624 . -610) 70505) ((-515 . -323) 70484) ((-707 . -25) T) ((-439 . -102) T) ((-108 . -286) NIL) ((-917 . -1105) T) ((-40 . -23) T) ((-767 . -1105) T) ((-563 . -1212) T) ((-495 . -1212) T) ((-319 . -610) 70466) ((-1000 . -231) 70448) ((-169 . -166) 70432) ((-579 . -555) T) ((-563 . -555) T) ((-495 . -555) T) ((-767 . -23) T) ((-1241 . -147) 70411) ((-1152 . -601) 70387) ((-1241 . -145) 70366) ((-1023 . -489) 70350) ((-1220 . -145) 70275) ((-1220 . -147) 70200) ((-1272 . -1278) 70179) ((-476 . -489) 70163) ((-463 . -489) 70147) ((-523 . -34) T) ((-648 . -713) 70117) ((-112 . -963) T) ((-657 . -846) 70096) ((-1171 . -172) 70047) ((-365 . -102) T) ((-240 . -238) 70026) ((-251 . -102) T) ((-250 . -102) T) ((-1230 . -945) 69995) ((-245 . -846) 69974) ((-812 . -38) 69823) ((-45 . -514) 69615) ((-1151 . -286) 69590) ((-214 . -1093) T) ((-1143 . -1093) T) ((-1143 . -607) 69569) ((-584 . -25) T) ((-584 . -21) T) ((-1095 . -309) 69507) ((-959 . -411) 69491) ((-694 . -1212) T) ((-629 . -286) 69466) ((-1080 . -636) 69414) ((-778 . -636) 69362) ((-776 . -636) 69310) ((-343 . -131) T) ((-289 . -610) 69292) ((-901 . -1093) T) ((-694 . -555) T) ((-129 . -613) 69274) ((-866 . -1105) T) ((-454 . -636) 69222) ((-901 . -899) 69206) ((-379 . -452) T) ((-487 . -1093) T) ((-939 . -309) 69144) ((-696 . -643) 69131) ((-548 . -840) T) ((-217 . -1093) T) ((-316 . -916) 69110) ((-313 . -916) T) ((-313 . -816) NIL) ((-390 . -716) T) ((-866 . -23) T) ((-116 . -643) 69097) ((-474 . -145) 69076) ((-418 . -411) 69060) ((-474 . -147) 69039) ((-110 . -489) 69021) ((-311 . -613) 69002) ((-2 . -610) 68984) ((-186 . -102) T) ((-1151 . -19) 68966) ((-1151 . -601) 68941) ((-653 . -21) T) ((-653 . -25) T) ((-591 . -1137) T) ((-1106 . -286) 68918) ((-336 . -25) T) ((-336 . -21) T) ((-495 . -363) T) ((-1272 . -38) 68888) ((-1135 . -1208) T) ((-629 . -601) 68863) ((-548 . -1093) T) ((-1080 . -25) T) ((-1080 . -21) T) ((-531 . -788) T) ((-531 . -791) T) ((-117 . -1212) T) ((-959 . -1052) T) ((-620 . -555) T) ((-778 . -25) T) ((-778 . -21) T) ((-776 . -21) T) ((-776 . -25) T) ((-731 . -1052) T) ((-711 . -1052) T) ((-665 . -1051) 68847) ((-517 . -1076) T) ((-461 . -25) T) ((-117 . -555) T) ((-461 . -21) T) ((-454 . -25) T) ((-454 . -21) T) ((-1279 . -1051) 68831) ((-1135 . -1034) 68727) ((-813 . -290) 68706) ((-1277 . -1051) 68690) ((-819 . -1093) T) ((-1241 . -1193) 68656) ((-962 . -963) T) ((-665 . -111) 68635) ((-295 . -514) 68427) ((-1241 . -1196) 68393) ((-1241 . -95) 68359) ((-1224 . -102) 68337) ((-251 . -309) 68275) ((-250 . -309) 68213) ((-1221 . -231) 68165) ((-1152 . -611) NIL) ((-1152 . -610) 68147) ((-1220 . -1193) 68113) ((-1220 . -1196) 68079) ((-1215 . -368) T) ((-96 . -93) T) ((-1213 . -840) T) ((-1135 . -377) 68063) ((-1113 . -816) T) ((-1113 . -916) T) ((-1106 . -601) 68040) ((-1073 . -611) 68024) ((-484 . -610) 67956) ((-811 . -288) 67933) ((-605 . -151) 67880) ((-418 . -1052) T) ((-487 . -713) 67830) ((-482 . -489) 67814) ((-327 . -846) 67793) ((-339 . -643) 67767) ((-50 . -21) T) ((-50 . -25) T) ((-217 . -713) 67717) ((-169 . -720) 67688) ((-174 . -643) 67620) ((-580 . -21) T) ((-580 . -25) T) ((-518 . -25) T) ((-518 . -21) T) ((-475 . -151) 67570) ((-1073 . -610) 67552) ((-1055 . -610) 67534) ((-989 . -102) T) ((-858 . -102) T) ((-795 . -411) 67498) ((-40 . -131) T) ((-694 . -363) T) ((-696 . -722) T) ((-696 . -790) T) ((-696 . -787) T) ((-212 . -891) T) ((-579 . -1105) T) ((-563 . -1105) T) ((-495 . -1105) T) ((-359 . -610) 67480) ((-353 . -610) 67462) ((-345 . -610) 67444) ((-66 . -396) T) ((-66 . -395) T) ((-108 . -611) 67374) ((-108 . -610) 67316) ((-211 . -891) T) ((-954 . -151) 67300) ((-767 . -131) T) ((-665 . -613) 67218) ((-134 . -722) T) ((-116 . -722) T) ((-1241 . -35) 67184) ((-1049 . -489) 67168) ((-579 . -23) T) ((-563 . -23) T) ((-495 . -23) T) ((-1220 . -95) 67134) ((-1220 . -35) 67100) ((-1165 . -102) T) ((-1118 . -102) T) ((-850 . -102) T) ((-227 . -489) 67084) ((-1279 . -111) 67063) ((-1277 . -111) 67042) ((-44 . -1051) 67026) ((-1230 . -1233) 67010) ((-851 . -848) 66994) ((-1279 . -613) 66940) ((-1171 . -290) 66919) ((-110 . -286) 66894) ((-1213 . -1093) T) ((-128 . -151) 66876) ((-1135 . -896) 66835) ((-44 . -111) 66814) ((-1174 . -1252) T) ((-1159 . -490) 66795) ((-1159 . -610) 66761) ((-1151 . -611) NIL) ((-665 . -1045) T) ((-1151 . -610) 66743) ((-1057 . -607) 66718) ((-1057 . -1093) T) ((-990 . -490) 66699) ((-990 . -610) 66665) ((-74 . -441) T) ((-74 . -395) T) ((-698 . -1093) T) ((-152 . -1051) 66649) ((-665 . -233) 66628) ((-570 . -553) 66612) ((-355 . -147) 66591) ((-355 . -145) 66542) ((-352 . -147) 66521) ((-352 . -145) 66472) ((-344 . -147) 66451) ((-344 . -145) 66402) ((-264 . -145) 66381) ((-264 . -147) 66360) ((-251 . -38) 66330) ((-247 . -147) 66309) ((-117 . -363) T) ((-247 . -145) 66288) ((-250 . -38) 66258) ((-152 . -111) 66237) ((-999 . -1034) 66125) ((-1160 . -844) NIL) ((-689 . -1212) T) ((-795 . -1052) T) ((-694 . -1105) T) ((-1279 . -1045) T) ((-1277 . -613) 66054) ((-1277 . -1045) T) ((-1149 . -1208) T) ((-999 . -377) 66031) ((-906 . -145) T) ((-906 . -147) 66013) ((-866 . -131) T) ((-811 . -1051) 65910) ((-689 . -555) T) ((-694 . -23) T) ((-642 . -610) 65842) ((-642 . -611) 65803) ((-629 . -611) NIL) ((-629 . -610) 65785) ((-487 . -172) T) ((-223 . -21) T) ((-217 . -172) T) ((-223 . -25) T) ((-474 . -1196) 65751) ((-474 . -1193) 65717) ((-274 . -610) 65699) ((-273 . -610) 65681) ((-272 . -610) 65663) ((-271 . -610) 65645) ((-270 . -610) 65627) ((-500 . -646) 65609) ((-269 . -610) 65591) ((-339 . -722) T) ((-268 . -610) 65573) ((-110 . -19) 65555) ((-174 . -722) T) ((-500 . -373) 65537) ((-212 . -610) 65519) ((-520 . -1142) 65503) ((-500 . -123) T) ((-110 . -601) 65478) ((-211 . -610) 65460) ((-474 . -35) 65426) ((-474 . -95) 65392) ((-209 . -610) 65374) ((-208 . -610) 65356) ((-207 . -610) 65338) ((-206 . -610) 65320) ((-203 . -610) 65302) ((-202 . -610) 65284) ((-201 . -610) 65266) ((-200 . -610) 65248) ((-199 . -610) 65230) ((-198 . -610) 65212) ((-197 . -610) 65194) ((-536 . -1096) 65146) ((-196 . -610) 65128) ((-195 . -610) 65110) ((-45 . -489) 65047) ((-194 . -610) 65029) ((-193 . -610) 65011) ((-152 . -613) 64980) ((-1108 . -102) T) ((-811 . -111) 64870) ((-640 . -102) 64820) ((-482 . -286) 64797) ((-1106 . -610) 64528) ((-1094 . -1093) T) ((-1042 . -1208) T) ((-1280 . -1034) 64512) ((-620 . -1105) T) ((-1165 . -309) 64499) ((-1128 . -1093) T) ((-1118 . -309) 64486) ((-1089 . -1076) T) ((-1083 . -1076) T) ((-1067 . -1076) T) ((-1060 . -1076) T) ((-1032 . -1076) T) ((-1015 . -1076) T) ((-117 . -1105) T) ((-815 . -102) T) ((-623 . -1076) T) ((-620 . -23) T) ((-1143 . -514) 64278) ((-483 . -1076) T) ((-999 . -896) 64230) ((-386 . -102) T) ((-324 . -102) T) ((-218 . -1076) T) ((-959 . -1093) T) ((-152 . -1045) T) ((-727 . -411) 64214) ((-117 . -23) T) ((-731 . -1093) T) ((-711 . -1093) T) ((-698 . -132) T) ((-453 . -1093) T) ((-407 . -1208) T) ((-316 . -430) 64198) ((-590 . -93) T) ((-1023 . -611) 64159) ((-1020 . -1212) T) ((-225 . -102) T) ((-1023 . -610) 64121) ((-812 . -231) 64105) ((-811 . -613) 63835) ((-1020 . -555) T) ((-829 . -643) 63808) ((-354 . -1212) T) ((-476 . -610) 63770) ((-476 . -611) 63731) ((-463 . -611) 63692) ((-463 . -610) 63654) ((-407 . -880) 63638) ((-319 . -1051) 63473) ((-407 . -882) 63398) ((-839 . -1034) 63294) ((-487 . -514) NIL) ((-482 . -601) 63271) ((-354 . -555) T) ((-217 . -514) NIL) ((-868 . -452) T) ((-418 . -1093) T) ((-407 . -1034) 63135) ((-319 . -111) 62956) ((-689 . -363) T) ((-225 . -284) T) ((-1205 . -613) 62933) ((-48 . -1212) T) ((-811 . -1045) 62863) ((-579 . -131) T) ((-563 . -131) T) ((-495 . -131) T) ((-1165 . -1144) 62841) ((-48 . -555) T) ((-1152 . -288) 62817) ((-1056 . -102) T) ((-948 . -102) T) ((-316 . -27) 62796) ((-811 . -233) 62748) ((-249 . -831) 62730) ((-240 . -844) 62709) ((-187 . -831) 62691) ((-709 . -102) T) ((-295 . -489) 62628) ((-481 . -102) T) ((-727 . -1052) T) ((-609 . -610) 62610) ((-609 . -611) 62471) ((-407 . -377) 62455) ((-407 . -338) 62439) ((-319 . -613) 62265) ((-1165 . -38) 62094) ((-1118 . -38) 61943) ((-850 . -38) 61913) ((-390 . -643) 61897) ((-640 . -309) 61835) ((-959 . -713) 61732) ((-731 . -713) 61702) ((-222 . -107) 61686) ((-45 . -286) 61611) ((-618 . -643) 61585) ((-312 . -1093) T) ((-289 . -1051) 61572) ((-110 . -610) 61554) ((-110 . -611) 61536) ((-453 . -713) 61506) ((-812 . -253) 61445) ((-684 . -1093) 61423) ((-549 . -1093) T) ((-1167 . -1052) T) ((-1166 . -1052) T) ((-96 . -490) 61404) ((-1160 . -1052) T) ((-289 . -111) 61389) ((-1119 . -1052) T) ((-549 . -607) 61368) ((-96 . -610) 61334) ((-1000 . -844) T) ((-227 . -682) 61292) ((-689 . -1105) T) ((-1202 . -736) 61268) ((-1020 . -363) T) ((-834 . -831) 61250) ((-319 . -1045) T) ((-343 . -25) T) ((-343 . -21) T) ((-407 . -896) 61209) ((-68 . -1208) T) ((-829 . -790) 61188) ((-418 . -713) 61162) ((-795 . -1093) T) ((-829 . -787) 61141) ((-694 . -131) T) ((-708 . -916) 61120) ((-689 . -23) T) ((-487 . -290) T) ((-829 . -722) 61099) ((-319 . -233) 61051) ((-319 . -243) 61030) ((-217 . -290) T) ((-129 . -368) T) ((-1241 . -452) 61009) ((-1220 . -452) 60988) ((-354 . -329) 60965) ((-354 . -363) T) ((-1133 . -610) 60947) ((-45 . -1245) 60897) ((-867 . -102) T) ((-640 . -282) 60881) ((-694 . -1054) T) ((-1268 . -102) T) ((-1267 . -102) T) ((-477 . -643) 60846) ((-468 . -1093) T) ((-45 . -601) 60771) ((-1151 . -288) 60746) ((-289 . -613) 60718) ((-40 . -636) 60657) ((-48 . -363) T) ((-1099 . -610) 60639) ((-1080 . -846) 60618) ((-629 . -288) 60593) ((-778 . -846) 60572) ((-776 . -846) 60551) ((-482 . -610) 60282) ((-240 . -411) 60251) ((-948 . -309) 60238) ((-454 . -846) 60217) ((-65 . -1208) T) ((-1057 . -514) 60061) ((-620 . -131) T) ((-546 . -102) T) ((-481 . -309) 60048) ((-603 . -1093) T) ((-117 . -131) T) ((-666 . -1093) T) ((-289 . -1045) T) ((-180 . -1093) T) ((-161 . -1093) T) ((-156 . -1093) T) ((-154 . -1093) T) ((-453 . -757) T) ((-31 . -1076) T) ((-959 . -172) 59999) ((-966 . -93) T) ((-1073 . -1051) 59909) ((-618 . -790) 59888) ((-591 . -1093) T) ((-618 . -787) 59867) ((-618 . -722) T) ((-295 . -286) 59846) ((-294 . -1208) T) ((-1049 . -610) 59808) ((-1049 . -611) 59769) ((-1020 . -1105) T) ((-169 . -102) T) ((-275 . -846) T) ((-1158 . -1093) T) ((-814 . -610) 59751) ((-1106 . -288) 59728) ((-1095 . -229) 59712) ((-999 . -307) T) ((-795 . -713) 59696) ((-359 . -1051) 59648) ((-354 . -1105) T) ((-353 . -1051) 59600) ((-414 . -610) 59582) ((-385 . -610) 59564) ((-345 . -1051) 59516) ((-227 . -610) 59448) ((-1073 . -111) 59344) ((-1020 . -23) T) ((-108 . -1051) 59294) ((-894 . -102) T) ((-837 . -102) T) ((-804 . -102) T) ((-765 . -102) T) ((-672 . -102) T) ((-474 . -452) 59273) ((-418 . -172) T) ((-359 . -111) 59211) ((-353 . -111) 59149) ((-345 . -111) 59087) ((-251 . -231) 59056) ((-250 . -231) 59025) ((-354 . -23) T) ((-71 . -1208) T) ((-225 . -38) 58990) ((-108 . -111) 58924) ((-40 . -25) T) ((-40 . -21) T) ((-665 . -716) T) ((-169 . -284) 58902) ((-48 . -1105) T) ((-917 . -25) T) ((-767 . -25) T) ((-1143 . -489) 58839) ((-485 . -1093) T) ((-1281 . -643) 58813) ((-1230 . -102) T) ((-851 . -102) T) ((-240 . -1052) 58743) ((-1056 . -1144) T) ((-960 . -788) 58696) ((-381 . -643) 58680) ((-48 . -23) T) ((-960 . -791) 58633) ((-811 . -791) 58584) ((-811 . -788) 58535) ((-295 . -601) 58514) ((-477 . -722) T) ((-570 . -102) T) ((-1073 . -613) 58332) ((-249 . -185) T) ((-187 . -185) T) ((-867 . -309) 58289) ((-648 . -286) 58268) ((-112 . -656) T) ((-359 . -613) 58205) ((-353 . -613) 58142) ((-345 . -613) 58079) ((-76 . -1208) T) ((-108 . -613) 58029) ((-1056 . -38) 58016) ((-659 . -374) 57995) ((-948 . -38) 57844) ((-727 . -1093) T) ((-481 . -38) 57693) ((-86 . -1208) T) ((-590 . -490) 57674) ((-570 . -284) T) ((-1221 . -844) NIL) ((-590 . -610) 57640) ((-1167 . -1093) T) ((-1166 . -1093) T) ((-1073 . -1045) T) ((-351 . -1034) 57617) ((-813 . -490) 57601) ((-1000 . -1052) T) ((-45 . -610) 57583) ((-45 . -611) NIL) ((-910 . -1052) T) ((-813 . -610) 57552) ((-1160 . -1093) T) ((-1140 . -102) 57530) ((-1073 . -243) 57481) ((-427 . -1052) T) ((-359 . -1045) T) ((-365 . -364) 57458) ((-353 . -1045) T) ((-345 . -1045) T) ((-251 . -238) 57437) ((-250 . -238) 57416) ((-1073 . -233) 57341) ((-1119 . -1093) T) ((-294 . -896) 57300) ((-108 . -1045) T) ((-689 . -131) T) ((-418 . -514) 57142) ((-359 . -233) 57121) ((-359 . -243) T) ((-44 . -716) T) ((-353 . -233) 57100) ((-353 . -243) T) ((-345 . -233) 57079) ((-345 . -243) T) ((-1159 . -613) 57060) ((-169 . -309) 57025) ((-108 . -243) T) ((-108 . -233) T) ((-990 . -613) 57006) ((-319 . -788) T) ((-866 . -21) T) ((-866 . -25) T) ((-407 . -307) T) ((-500 . -34) T) ((-110 . -288) 56981) ((-1106 . -1051) 56878) ((-867 . -1144) NIL) ((-330 . -610) 56860) ((-407 . -1018) 56838) ((-1106 . -111) 56728) ((-686 . -1252) T) ((-436 . -1093) T) ((-1281 . -722) T) ((-63 . -610) 56710) ((-867 . -38) 56655) ((-523 . -1208) T) ((-599 . -151) 56639) ((-512 . -610) 56621) ((-1230 . -309) 56608) ((-727 . -713) 56457) ((-531 . -789) T) ((-531 . -790) T) ((-563 . -636) 56439) ((-495 . -636) 56399) ((-355 . -452) T) ((-352 . -452) T) ((-344 . -452) T) ((-264 . -452) 56350) ((-525 . -1093) T) ((-520 . -1093) 56300) ((-247 . -452) 56251) ((-1143 . -286) 56230) ((-1171 . -610) 56212) ((-684 . -514) 56145) ((-959 . -290) 56124) ((-549 . -514) 55916) ((-1269 . -610) 55885) ((-1165 . -231) 55869) ((-1106 . -613) 55599) ((-169 . -1144) 55578) ((-1269 . -490) 55562) ((-1167 . -713) 55459) ((-1166 . -713) 55300) ((-888 . -102) T) ((-1160 . -713) 55096) ((-1119 . -713) 54993) ((-1149 . -669) 54977) ((-355 . -402) 54928) ((-352 . -402) 54879) ((-344 . -402) 54830) ((-1020 . -131) T) ((-795 . -514) 54742) ((-295 . -611) NIL) ((-295 . -610) 54724) ((-906 . -452) T) ((-960 . -368) 54677) ((-811 . -368) 54656) ((-510 . -509) 54635) ((-508 . -509) 54614) ((-487 . -286) NIL) ((-482 . -288) 54591) ((-418 . -290) T) ((-354 . -131) T) ((-217 . -286) NIL) ((-689 . -493) NIL) ((-99 . -1105) T) ((-169 . -38) 54419) ((-1241 . -969) 54381) ((-1140 . -309) 54319) ((-1220 . -969) 54288) ((-906 . -402) T) ((-1106 . -1045) 54218) ((-1243 . -555) T) ((-1143 . -601) 54197) ((-112 . -846) T) ((-1057 . -489) 54128) ((-579 . -21) T) ((-579 . -25) T) ((-563 . -21) T) ((-563 . -25) T) ((-495 . -25) T) ((-495 . -21) T) ((-1230 . -1144) 54106) ((-1106 . -233) 54058) ((-48 . -131) T) ((-1189 . -102) T) ((-240 . -1093) 53848) ((-867 . -400) 53825) ((-1081 . -102) T) ((-1069 . -102) T) ((-605 . -102) T) ((-475 . -102) T) ((-1230 . -38) 53654) ((-851 . -38) 53624) ((-727 . -172) 53535) ((-648 . -610) 53517) ((-641 . -1076) T) ((-570 . -38) 53504) ((-966 . -490) 53485) ((-966 . -610) 53451) ((-954 . -102) 53401) ((-860 . -610) 53383) ((-860 . -611) 53305) ((-591 . -514) NIL) ((-1249 . -1052) T) ((-1242 . -1052) T) ((-1221 . -1052) T) ((-1285 . -1105) T) ((-1176 . -102) T) ((-594 . -1052) T) ((-593 . -1052) T) ((-1175 . -102) T) ((-1167 . -172) 53256) ((-1166 . -172) 53187) ((-1160 . -172) 53118) ((-1119 . -172) 53069) ((-1000 . -1093) T) ((-967 . -1093) T) ((-910 . -1093) T) ((-1202 . -147) 53048) ((-795 . -793) 53032) ((-694 . -25) T) ((-694 . -21) T) ((-117 . -636) 53009) ((-696 . -882) 52991) ((-427 . -1093) T) ((-316 . -1212) 52970) ((-313 . -1212) T) ((-169 . -400) 52954) ((-1202 . -145) 52933) ((-474 . -969) 52895) ((-130 . -102) T) ((-128 . -102) T) ((-72 . -610) 52877) ((-108 . -791) T) ((-108 . -788) T) ((-696 . -1034) 52859) ((-316 . -555) 52838) ((-313 . -555) T) ((-1285 . -23) T) ((-134 . -1034) 52820) ((-96 . -613) 52801) ((-482 . -1051) 52698) ((-45 . -288) 52623) ((-240 . -713) 52565) ((-517 . -102) T) ((-482 . -111) 52455) ((-1085 . -102) 52433) ((-1030 . -102) T) ((-640 . -824) 52412) ((-727 . -514) 52355) ((-1049 . -1051) 52339) ((-1128 . -93) T) ((-1057 . -286) 52314) ((-620 . -21) T) ((-620 . -25) T) ((-524 . -1093) T) ((-361 . -102) T) ((-322 . -102) T) ((-665 . -643) 52288) ((-385 . -1051) 52272) ((-1049 . -111) 52251) ((-812 . -411) 52235) ((-117 . -25) T) ((-89 . -610) 52217) ((-117 . -21) T) ((-605 . -309) 52012) ((-475 . -309) 51816) ((-1143 . -611) NIL) ((-385 . -111) 51795) ((-379 . -102) T) ((-214 . -610) 51777) ((-1143 . -610) 51759) ((-1160 . -514) 51528) ((-1000 . -713) 51478) ((-1119 . -514) 51448) ((-910 . -713) 51400) ((-482 . -613) 51130) ((-351 . -307) T) ((-1181 . -151) 51080) ((-954 . -309) 51018) ((-832 . -102) T) ((-427 . -713) 51002) ((-225 . -824) T) ((-823 . -102) T) ((-821 . -102) T) ((-479 . -151) 50952) ((-1241 . -1240) 50931) ((-1113 . -1212) T) ((-339 . -1034) 50898) ((-1241 . -1235) 50868) ((-1241 . -1238) 50852) ((-1220 . -1219) 50831) ((-80 . -610) 50813) ((-901 . -610) 50795) ((-1220 . -1235) 50772) ((-1113 . -555) T) ((-917 . -846) T) ((-767 . -846) T) ((-487 . -611) 50702) ((-487 . -610) 50643) ((-379 . -284) T) ((-667 . -846) T) ((-1220 . -1217) 50627) ((-1243 . -1105) T) ((-217 . -611) 50557) ((-217 . -610) 50498) ((-1279 . -643) 50472) ((-1057 . -601) 50447) ((-814 . -613) 50431) ((-59 . -151) 50415) ((-516 . -151) 50399) ((-496 . -151) 50383) ((-359 . -1276) 50367) ((-353 . -1276) 50351) ((-345 . -1276) 50335) ((-316 . -363) 50314) ((-313 . -363) T) ((-482 . -1045) 50244) ((-689 . -636) 50226) ((-1277 . -643) 50200) ((-128 . -309) NIL) ((-1243 . -23) T) ((-684 . -489) 50184) ((-64 . -610) 50166) ((-1106 . -791) 50117) ((-1106 . -788) 50068) ((-549 . -489) 50005) ((-665 . -34) T) ((-482 . -233) 49957) ((-295 . -288) 49936) ((-240 . -172) 49915) ((-812 . -1052) T) ((-44 . -643) 49873) ((-1073 . -368) 49824) ((-727 . -290) 49755) ((-520 . -514) 49688) ((-813 . -1051) 49639) ((-1080 . -145) 49618) ((-548 . -610) 49600) ((-359 . -368) 49579) ((-353 . -368) 49558) ((-345 . -368) 49537) ((-1080 . -147) 49516) ((-867 . -231) 49493) ((-813 . -111) 49435) ((-778 . -145) 49414) ((-778 . -147) 49393) ((-264 . -945) 49360) ((-251 . -844) 49339) ((-247 . -945) 49284) ((-250 . -844) 49263) ((-776 . -145) 49242) ((-776 . -147) 49221) ((-152 . -643) 49195) ((-578 . -1093) T) ((-454 . -147) 49174) ((-454 . -145) 49153) ((-665 . -722) T) ((-819 . -610) 49135) ((-1249 . -1093) T) ((-1242 . -1093) T) ((-1221 . -1093) T) ((-1202 . -1196) 49101) ((-1202 . -1193) 49067) ((-1167 . -290) 49046) ((-1166 . -290) 48997) ((-1160 . -290) 48948) ((-1119 . -290) 48927) ((-339 . -896) 48908) ((-1000 . -172) T) ((-910 . -172) T) ((-594 . -1093) T) ((-593 . -1093) T) ((-689 . -21) T) ((-689 . -25) T) ((-474 . -1238) 48892) ((-474 . -1235) 48862) ((-418 . -286) 48790) ((-547 . -846) T) ((-316 . -1105) 48639) ((-313 . -1105) T) ((-1202 . -35) 48605) ((-1202 . -95) 48571) ((-84 . -610) 48553) ((-91 . -102) 48531) ((-1285 . -131) T) ((-590 . -613) 48512) ((-580 . -145) T) ((-580 . -147) 48494) ((-518 . -147) 48476) ((-518 . -145) T) ((-316 . -23) 48328) ((-40 . -342) 48302) ((-313 . -23) T) ((-813 . -613) 48216) ((-1151 . -646) 48198) ((-1272 . -1052) T) ((-1151 . -373) 48180) ((-811 . -643) 48028) ((-1089 . -102) T) ((-1083 . -102) T) ((-1067 . -102) T) ((-169 . -231) 48012) ((-1060 . -102) T) ((-1032 . -102) T) ((-1015 . -102) T) ((-591 . -489) 47994) ((-623 . -102) T) ((-240 . -514) 47927) ((-483 . -102) T) ((-1279 . -722) T) ((-1277 . -722) T) ((-218 . -102) T) ((-1171 . -1051) 47810) ((-1171 . -111) 47679) ((-857 . -173) T) ((-813 . -1045) T) ((-676 . -1076) T) ((-671 . -1076) T) ((-515 . -102) T) ((-510 . -102) T) ((-48 . -636) 47639) ((-508 . -102) T) ((-478 . -1076) T) ((-1269 . -1051) 47609) ((-138 . -1076) T) ((-137 . -1076) T) ((-133 . -1076) T) ((-1030 . -38) 47593) ((-813 . -233) T) ((-813 . -243) 47572) ((-1269 . -111) 47537) ((-1249 . -713) 47434) ((-1242 . -713) 47275) ((-1230 . -231) 47259) ((-549 . -286) 47238) ((-1213 . -610) 47220) ((-1057 . -611) NIL) ((-603 . -93) T) ((-1057 . -610) 47202) ((-698 . -490) 47186) ((-666 . -93) T) ((-180 . -93) T) ((-161 . -93) T) ((-156 . -93) T) ((-154 . -93) T) ((-1221 . -713) 46982) ((-999 . -916) T) ((-698 . -610) 46951) ((-152 . -722) T) ((-1106 . -368) 46930) ((-1000 . -514) NIL) ((-251 . -411) 46899) ((-250 . -411) 46868) ((-1020 . -25) T) ((-1020 . -21) T) ((-594 . -713) 46841) ((-593 . -713) 46738) ((-795 . -286) 46696) ((-126 . -102) 46674) ((-829 . -1034) 46570) ((-169 . -824) 46549) ((-319 . -643) 46446) ((-811 . -34) T) ((-710 . -102) T) ((-1171 . -613) 46299) ((-1113 . -1105) T) ((-1022 . -1208) T) ((-379 . -38) 46264) ((-354 . -25) T) ((-354 . -21) T) ((-187 . -102) T) ((-162 . -102) T) ((-249 . -102) T) ((-157 . -102) T) ((-355 . -1264) 46248) ((-352 . -1264) 46232) ((-344 . -1264) 46216) ((-169 . -349) 46195) ((-563 . -846) T) ((-495 . -846) T) ((-1113 . -23) T) ((-87 . -610) 46177) ((-696 . -307) T) ((-832 . -38) 46147) ((-823 . -38) 46117) ((-1269 . -613) 46059) ((-1243 . -131) T) ((-1143 . -288) 46038) ((-960 . -789) 45991) ((-960 . -790) 45944) ((-811 . -787) 45923) ((-116 . -307) T) ((-91 . -309) 45861) ((-670 . -34) T) ((-549 . -601) 45840) ((-48 . -25) T) ((-48 . -21) T) ((-811 . -790) 45791) ((-811 . -789) 45770) ((-696 . -1018) T) ((-648 . -1051) 45754) ((-960 . -722) 45653) ((-811 . -722) 45563) ((-960 . -473) 45516) ((-482 . -791) 45467) ((-482 . -788) 45418) ((-906 . -1264) 45405) ((-1171 . -1045) T) ((-648 . -111) 45384) ((-1171 . -326) 45361) ((-1194 . -102) 45339) ((-1094 . -610) 45321) ((-696 . -545) T) ((-812 . -1093) T) ((-1269 . -1045) T) ((-1128 . -490) 45302) ((-1214 . -102) T) ((-413 . -1093) T) ((-1128 . -610) 45268) ((-251 . -1052) 45198) ((-250 . -1052) 45128) ((-834 . -102) T) ((-289 . -643) 45115) ((-591 . -286) 45090) ((-684 . -682) 45048) ((-959 . -610) 45030) ((-868 . -102) T) ((-731 . -610) 45012) ((-711 . -610) 44994) ((-1249 . -172) 44945) ((-1242 . -172) 44876) ((-1221 . -172) 44807) ((-694 . -846) T) ((-1000 . -290) T) ((-453 . -610) 44789) ((-624 . -722) T) ((-60 . -1093) 44767) ((-245 . -151) 44751) ((-910 . -290) T) ((-1020 . -1008) T) ((-624 . -473) T) ((-708 . -1212) 44730) ((-648 . -613) 44648) ((-594 . -172) 44627) ((-593 . -172) 44578) ((-1257 . -846) 44557) ((-708 . -555) 44468) ((-407 . -916) T) ((-407 . -816) 44447) ((-319 . -790) T) ((-966 . -613) 44428) ((-319 . -722) T) ((-418 . -610) 44410) ((-418 . -611) 44317) ((-640 . -1142) 44301) ((-110 . -646) 44283) ((-174 . -307) T) ((-126 . -309) 44221) ((-110 . -373) 44203) ((-398 . -1208) T) ((-316 . -131) 44074) ((-313 . -131) T) ((-69 . -395) T) ((-110 . -123) T) ((-520 . -489) 44058) ((-649 . -1105) T) ((-591 . -19) 44040) ((-61 . -441) T) ((-61 . -395) T) ((-820 . -1093) T) ((-591 . -601) 44015) ((-477 . -1034) 43975) ((-648 . -1045) T) ((-649 . -23) T) ((-1272 . -1093) T) ((-31 . -102) T) ((-812 . -713) 43824) ((-576 . -856) T) ((-117 . -846) NIL) ((-1165 . -411) 43808) ((-1118 . -411) 43792) ((-850 . -411) 43776) ((-869 . -102) 43727) ((-1241 . -102) T) ((-1221 . -514) 43496) ((-1220 . -102) T) ((-1194 . -309) 43434) ((-525 . -93) T) ((-1167 . -286) 43419) ((-312 . -610) 43401) ((-1166 . -286) 43386) ((-1095 . -1093) T) ((-1073 . -643) 43296) ((-684 . -610) 43228) ((-289 . -722) T) ((-108 . -905) NIL) ((-684 . -611) 43189) ((-598 . -610) 43171) ((-576 . -610) 43153) ((-549 . -611) NIL) ((-549 . -610) 43135) ((-529 . -610) 43117) ((-1160 . -286) 42965) ((-487 . -1051) 42915) ((-707 . -452) T) ((-511 . -509) 42894) ((-507 . -509) 42873) ((-217 . -1051) 42823) ((-359 . -643) 42775) ((-353 . -643) 42727) ((-225 . -844) T) ((-345 . -643) 42679) ((-599 . -102) 42629) ((-482 . -368) 42608) ((-108 . -643) 42558) ((-487 . -111) 42492) ((-240 . -489) 42476) ((-343 . -147) 42458) ((-343 . -145) T) ((-169 . -370) 42429) ((-939 . -1255) 42413) ((-217 . -111) 42347) ((-868 . -309) 42312) ((-939 . -1093) 42262) ((-795 . -611) 42223) ((-795 . -610) 42205) ((-714 . -102) T) ((-331 . -1093) T) ((-214 . -613) 42182) ((-1113 . -131) T) ((-710 . -38) 42152) ((-316 . -493) 42131) ((-500 . -1208) T) ((-1241 . -284) 42097) ((-1220 . -284) 42063) ((-327 . -151) 42047) ((-439 . -1093) T) ((-1057 . -288) 42022) ((-1272 . -713) 41992) ((-1152 . -34) T) ((-1281 . -1034) 41969) ((-468 . -610) 41951) ((-484 . -34) T) ((-381 . -1034) 41935) ((-1165 . -1052) T) ((-1118 . -1052) T) ((-850 . -1052) T) ((-1056 . -844) T) ((-487 . -613) 41885) ((-217 . -613) 41835) ((-812 . -172) 41746) ((-520 . -286) 41723) ((-1249 . -290) 41702) ((-1189 . -364) 41676) ((-1081 . -266) 41660) ((-666 . -490) 41641) ((-666 . -610) 41607) ((-603 . -490) 41588) ((-117 . -988) 41565) ((-603 . -610) 41515) ((-474 . -102) T) ((-180 . -490) 41496) ((-180 . -610) 41462) ((-161 . -490) 41443) ((-156 . -490) 41424) ((-154 . -490) 41405) ((-161 . -610) 41371) ((-156 . -610) 41337) ((-365 . -1093) T) ((-251 . -1093) T) ((-250 . -1093) T) ((-154 . -610) 41303) ((-1242 . -290) 41254) ((-1221 . -290) 41205) ((-868 . -1144) 41183) ((-1167 . -998) 41149) ((-605 . -364) 41089) ((-1166 . -998) 41055) ((-605 . -229) 41002) ((-591 . -610) 40984) ((-591 . -611) NIL) ((-689 . -846) T) ((-475 . -229) 40934) ((-487 . -1045) T) ((-1160 . -998) 40900) ((-88 . -440) T) ((-88 . -395) T) ((-217 . -1045) T) ((-1119 . -998) 40866) ((-1073 . -722) T) ((-708 . -1105) T) ((-594 . -290) 40845) ((-593 . -290) 40824) ((-487 . -243) T) ((-487 . -233) T) ((-217 . -243) T) ((-217 . -233) T) ((-1158 . -610) 40806) ((-868 . -38) 40758) ((-359 . -722) T) ((-353 . -722) T) ((-345 . -722) T) ((-108 . -790) T) ((-108 . -787) T) ((-708 . -23) T) ((-108 . -722) T) ((-520 . -1245) 40742) ((-1285 . -25) T) ((-474 . -284) 40708) ((-1285 . -21) T) ((-1220 . -309) 40647) ((-1169 . -102) T) ((-40 . -145) 40619) ((-40 . -147) 40591) ((-520 . -601) 40568) ((-1106 . -643) 40416) ((-599 . -309) 40354) ((-45 . -646) 40304) ((-45 . -661) 40254) ((-45 . -373) 40204) ((-1151 . -34) T) ((-867 . -844) NIL) ((-649 . -131) T) ((-485 . -610) 40186) ((-240 . -286) 40163) ((-186 . -1093) T) ((-642 . -34) T) ((-629 . -34) T) ((-1080 . -452) 40114) ((-812 . -514) 39988) ((-778 . -452) 39919) ((-776 . -452) 39870) ((-454 . -452) 39821) ((-948 . -411) 39805) ((-727 . -610) 39787) ((-251 . -713) 39729) ((-250 . -713) 39671) ((-727 . -611) 39532) ((-481 . -411) 39516) ((-339 . -302) T) ((-524 . -93) T) ((-351 . -916) T) ((-996 . -102) 39494) ((-1020 . -846) T) ((-60 . -514) 39427) ((-1220 . -1144) 39379) ((-1000 . -286) NIL) ((-225 . -1052) T) ((-379 . -824) T) ((-1106 . -34) T) ((-580 . -452) T) ((-518 . -452) T) ((-1224 . -1086) 39363) ((-1224 . -1093) 39341) ((-240 . -601) 39318) ((-1224 . -1088) 39275) ((-1167 . -610) 39257) ((-1166 . -610) 39239) ((-1160 . -610) 39221) ((-1160 . -611) NIL) ((-1119 . -610) 39203) ((-868 . -400) 39187) ((-536 . -102) T) ((-1241 . -38) 39028) ((-1220 . -38) 38842) ((-866 . -147) T) ((-698 . -613) 38826) ((-580 . -402) T) ((-48 . -846) T) ((-518 . -402) T) ((-1253 . -102) T) ((-1243 . -21) T) ((-1243 . -25) T) ((-1106 . -787) 38805) ((-1106 . -790) 38756) ((-1106 . -789) 38735) ((-989 . -1093) T) ((-1023 . -34) T) ((-858 . -1093) T) ((-1106 . -722) 38645) ((-659 . -102) T) ((-641 . -102) T) ((-549 . -288) 38624) ((-1181 . -102) T) ((-476 . -34) T) ((-463 . -34) T) ((-355 . -102) T) ((-352 . -102) T) ((-344 . -102) T) ((-264 . -102) T) ((-247 . -102) T) ((-477 . -307) T) ((-1056 . -1052) T) ((-948 . -1052) T) ((-316 . -636) 38530) ((-313 . -636) 38491) ((-481 . -1052) T) ((-479 . -102) T) ((-436 . -610) 38473) ((-1165 . -1093) T) ((-1118 . -1093) T) ((-850 . -1093) T) ((-1134 . -102) T) ((-812 . -290) 38404) ((-959 . -1051) 38287) ((-477 . -1018) T) ((-731 . -1051) 38257) ((-453 . -1051) 38227) ((-1140 . -1114) 38211) ((-1095 . -514) 38144) ((-959 . -111) 38013) ((-906 . -102) T) ((-731 . -111) 37978) ((-525 . -490) 37959) ((-525 . -610) 37925) ((-59 . -102) 37875) ((-520 . -611) 37836) ((-520 . -610) 37748) ((-519 . -102) 37726) ((-516 . -102) 37676) ((-497 . -102) 37654) ((-496 . -102) 37604) ((-453 . -111) 37567) ((-251 . -172) 37546) ((-250 . -172) 37525) ((-418 . -1051) 37499) ((-1202 . -969) 37461) ((-995 . -1105) T) ((-1128 . -613) 37442) ((-939 . -514) 37375) ((-487 . -791) T) ((-474 . -38) 37216) ((-418 . -111) 37183) ((-487 . -788) T) ((-996 . -309) 37121) ((-217 . -791) T) ((-217 . -788) T) ((-995 . -23) T) ((-708 . -131) T) ((-1220 . -400) 37091) ((-316 . -25) 36943) ((-169 . -411) 36927) ((-316 . -21) 36798) ((-313 . -25) T) ((-313 . -21) T) ((-860 . -368) T) ((-959 . -613) 36651) ((-110 . -34) T) ((-731 . -613) 36607) ((-711 . -613) 36589) ((-482 . -643) 36437) ((-867 . -1052) T) ((-591 . -288) 36412) ((-579 . -147) T) ((-563 . -147) T) ((-495 . -147) T) ((-1165 . -713) 36241) ((-1118 . -713) 36090) ((-1113 . -636) 36072) ((-850 . -713) 36042) ((-665 . -1208) T) ((-1 . -102) T) ((-418 . -613) 35950) ((-240 . -610) 35681) ((-1108 . -1093) T) ((-1230 . -411) 35665) ((-1181 . -309) 35469) ((-959 . -1045) T) ((-731 . -1045) T) ((-711 . -1045) T) ((-640 . -1093) 35419) ((-1049 . -643) 35403) ((-851 . -411) 35387) ((-511 . -102) T) ((-507 . -102) T) ((-247 . -309) 35374) ((-264 . -309) 35361) ((-959 . -326) 35340) ((-385 . -643) 35324) ((-479 . -309) 35128) ((-251 . -514) 35061) ((-665 . -1034) 34957) ((-250 . -514) 34890) ((-1134 . -309) 34816) ((-815 . -1093) T) ((-795 . -1051) 34800) ((-1249 . -286) 34785) ((-1242 . -286) 34770) ((-1221 . -286) 34618) ((-386 . -1093) T) ((-324 . -1093) T) ((-418 . -1045) T) ((-169 . -1052) T) ((-59 . -309) 34556) ((-795 . -111) 34535) ((-593 . -286) 34520) ((-519 . -309) 34458) ((-516 . -309) 34396) ((-497 . -309) 34334) ((-496 . -309) 34272) ((-418 . -233) 34251) ((-482 . -34) T) ((-1000 . -611) 34181) ((-225 . -1093) T) ((-1000 . -610) 34141) ((-967 . -610) 34101) ((-967 . -611) 34076) ((-910 . -610) 34058) ((-694 . -147) T) ((-696 . -916) T) ((-696 . -816) T) ((-427 . -610) 34040) ((-1113 . -21) T) ((-1113 . -25) T) ((-665 . -377) 34024) ((-116 . -916) T) ((-868 . -231) 34008) ((-78 . -1208) T) ((-126 . -125) 33992) ((-1049 . -34) T) ((-1279 . -1034) 33966) ((-1277 . -1034) 33923) ((-1230 . -1052) T) ((-851 . -1052) T) ((-482 . -787) 33902) ((-355 . -1144) 33881) ((-352 . -1144) 33860) ((-344 . -1144) 33839) ((-482 . -790) 33790) ((-482 . -789) 33769) ((-227 . -34) T) ((-482 . -722) 33679) ((-795 . -613) 33527) ((-60 . -489) 33511) ((-570 . -1052) T) ((-1165 . -172) 33402) ((-1118 . -172) 33313) ((-1056 . -1093) T) ((-1080 . -945) 33258) ((-948 . -1093) T) ((-813 . -643) 33209) ((-778 . -945) 33178) ((-709 . -1093) T) ((-776 . -945) 33145) ((-516 . -282) 33129) ((-665 . -896) 33088) ((-481 . -1093) T) ((-454 . -945) 33055) ((-79 . -1208) T) ((-355 . -38) 33020) ((-352 . -38) 32985) ((-344 . -38) 32950) ((-264 . -38) 32799) ((-247 . -38) 32648) ((-906 . -1144) T) ((-524 . -490) 32629) ((-620 . -147) 32608) ((-620 . -145) 32587) ((-524 . -610) 32553) ((-117 . -147) T) ((-117 . -145) NIL) ((-414 . -722) T) ((-795 . -1045) T) ((-343 . -452) T) ((-1249 . -998) 32519) ((-1242 . -998) 32485) ((-1221 . -998) 32451) ((-906 . -38) 32416) ((-225 . -713) 32381) ((-319 . -47) 32351) ((-40 . -409) 32323) ((-140 . -610) 32305) ((-995 . -131) T) ((-811 . -1208) T) ((-174 . -916) T) ((-548 . -368) T) ((-603 . -613) 32286) ((-343 . -402) T) ((-666 . -613) 32267) ((-180 . -613) 32248) ((-161 . -613) 32229) ((-156 . -613) 32210) ((-154 . -613) 32191) ((-520 . -288) 32168) ((-1220 . -231) 32138) ((-811 . -1034) 31965) ((-45 . -34) T) ((-676 . -102) T) ((-671 . -102) T) ((-657 . -102) T) ((-649 . -21) T) ((-649 . -25) T) ((-1095 . -489) 31949) ((-670 . -1208) T) ((-478 . -102) T) ((-245 . -102) 31899) ((-546 . -840) T) ((-138 . -102) T) ((-137 . -102) T) ((-133 . -102) T) ((-867 . -1093) T) ((-1171 . -643) 31824) ((-1056 . -713) 31811) ((-727 . -1051) 31654) ((-1165 . -514) 31601) ((-948 . -713) 31450) ((-1118 . -514) 31402) ((-1268 . -1093) T) ((-1267 . -1093) T) ((-481 . -713) 31251) ((-67 . -610) 31233) ((-727 . -111) 31062) ((-939 . -489) 31046) ((-1269 . -643) 31006) ((-813 . -722) T) ((-1167 . -1051) 30889) ((-1166 . -1051) 30724) ((-1160 . -1051) 30514) ((-1119 . -1051) 30397) ((-999 . -1212) T) ((-1087 . -102) 30375) ((-811 . -377) 30344) ((-578 . -610) 30326) ((-546 . -1093) T) ((-999 . -555) T) ((-1167 . -111) 30195) ((-1166 . -111) 30016) ((-1160 . -111) 29785) ((-1119 . -111) 29654) ((-1098 . -1096) 29618) ((-379 . -844) T) ((-1249 . -610) 29600) ((-1242 . -610) 29582) ((-1221 . -610) 29564) ((-1221 . -611) NIL) ((-240 . -288) 29541) ((-40 . -452) T) ((-225 . -172) T) ((-169 . -1093) T) ((-727 . -613) 29326) ((-689 . -147) T) ((-689 . -145) NIL) ((-594 . -610) 29308) ((-593 . -610) 29290) ((-894 . -1093) T) ((-837 . -1093) T) ((-804 . -1093) T) ((-765 . -1093) T) ((-653 . -848) 29274) ((-672 . -1093) T) ((-811 . -896) 29206) ((-1213 . -368) T) ((-40 . -402) NIL) ((-1167 . -613) 29088) ((-1113 . -656) T) ((-867 . -713) 29033) ((-251 . -489) 29017) ((-250 . -489) 29001) ((-1166 . -613) 28744) ((-1160 . -613) 28539) ((-708 . -636) 28487) ((-648 . -643) 28461) ((-1119 . -613) 28343) ((-295 . -34) T) ((-727 . -1045) T) ((-580 . -1264) 28330) ((-518 . -1264) 28307) ((-1230 . -1093) T) ((-1165 . -290) 28218) ((-1118 . -290) 28149) ((-1056 . -172) T) ((-851 . -1093) T) ((-948 . -172) 28060) ((-778 . -1233) 28044) ((-640 . -514) 27977) ((-77 . -610) 27959) ((-727 . -326) 27924) ((-1171 . -722) T) ((-570 . -1093) T) ((-481 . -172) 27835) ((-245 . -309) 27773) ((-1135 . -1105) T) ((-70 . -610) 27755) ((-1269 . -722) T) ((-1167 . -1045) T) ((-1166 . -1045) T) ((-327 . -102) 27705) ((-1160 . -1045) T) ((-1135 . -23) T) ((-1119 . -1045) T) ((-91 . -1114) 27689) ((-862 . -1105) T) ((-1167 . -233) 27648) ((-1166 . -243) 27627) ((-1166 . -233) 27579) ((-1160 . -233) 27466) ((-1160 . -243) 27445) ((-319 . -896) 27351) ((-862 . -23) T) ((-169 . -713) 27179) ((-407 . -1212) T) ((-1094 . -368) T) ((-1020 . -147) T) ((-999 . -363) T) ((-866 . -452) T) ((-939 . -286) 27156) ((-316 . -846) T) ((-313 . -846) NIL) ((-870 . -102) T) ((-708 . -25) T) ((-407 . -555) T) ((-708 . -21) T) ((-525 . -613) 27137) ((-354 . -147) 27119) ((-354 . -145) T) ((-1140 . -1093) 27097) ((-453 . -716) T) ((-75 . -610) 27079) ((-114 . -846) T) ((-245 . -282) 27063) ((-240 . -1051) 26960) ((-81 . -610) 26942) ((-731 . -368) 26895) ((-1169 . -824) T) ((-733 . -235) 26879) ((-1152 . -1208) T) ((-141 . -235) 26861) ((-240 . -111) 26751) ((-1230 . -713) 26580) ((-48 . -147) T) ((-867 . -172) T) ((-851 . -713) 26550) ((-484 . -1208) T) ((-948 . -514) 26497) ((-648 . -722) T) ((-570 . -713) 26484) ((-1030 . -1052) T) ((-481 . -514) 26427) ((-939 . -19) 26411) ((-939 . -601) 26388) ((-812 . -611) NIL) ((-812 . -610) 26370) ((-1000 . -1051) 26320) ((-413 . -610) 26302) ((-251 . -286) 26279) ((-250 . -286) 26256) ((-487 . -905) NIL) ((-316 . -29) 26226) ((-108 . -1208) T) ((-999 . -1105) T) ((-217 . -905) NIL) ((-910 . -1051) 26178) ((-1073 . -1034) 26074) ((-1000 . -111) 26008) ((-999 . -23) T) ((-733 . -690) 25992) ((-264 . -231) 25976) ((-427 . -1051) 25960) ((-379 . -1052) T) ((-240 . -613) 25690) ((-910 . -111) 25628) ((-689 . -1196) NIL) ((-487 . -643) 25578) ((-108 . -880) 25560) ((-108 . -882) 25542) ((-689 . -1193) NIL) ((-217 . -643) 25492) ((-359 . -1034) 25476) ((-353 . -1034) 25460) ((-327 . -309) 25398) ((-345 . -1034) 25382) ((-225 . -290) T) ((-427 . -111) 25361) ((-60 . -610) 25293) ((-169 . -172) T) ((-1113 . -846) T) ((-108 . -1034) 25253) ((-888 . -1093) T) ((-832 . -1052) T) ((-823 . -1052) T) ((-689 . -35) NIL) ((-689 . -95) NIL) ((-313 . -988) 25214) ((-183 . -102) T) ((-579 . -452) T) ((-563 . -452) T) ((-495 . -452) T) ((-407 . -363) T) ((-240 . -1045) 25144) ((-1143 . -34) T) ((-477 . -916) T) ((-995 . -636) 25092) ((-251 . -601) 25069) ((-250 . -601) 25046) ((-1073 . -377) 25030) ((-867 . -514) 24938) ((-240 . -233) 24890) ((-1151 . -1208) T) ((-1000 . -613) 24840) ((-910 . -613) 24777) ((-820 . -610) 24759) ((-1280 . -1105) T) ((-1272 . -610) 24741) ((-1230 . -172) 24632) ((-427 . -613) 24601) ((-108 . -377) 24583) ((-108 . -338) 24565) ((-1056 . -290) T) ((-948 . -290) 24496) ((-795 . -368) 24475) ((-642 . -1208) T) ((-629 . -1208) T) ((-481 . -290) 24406) ((-570 . -172) T) ((-327 . -282) 24390) ((-1280 . -23) T) ((-1202 . -102) T) ((-1189 . -1093) T) ((-1081 . -1093) T) ((-1069 . -1093) T) ((-83 . -610) 24372) ((-1176 . -840) T) ((-1175 . -840) T) ((-707 . -102) T) ((-355 . -349) 24351) ((-605 . -1093) T) ((-352 . -349) 24330) ((-344 . -349) 24309) ((-475 . -1093) T) ((-1181 . -229) 24259) ((-264 . -253) 24221) ((-1135 . -131) T) ((-605 . -607) 24197) ((-1073 . -896) 24130) ((-1000 . -1045) T) ((-910 . -1045) T) ((-475 . -607) 24109) ((-1160 . -788) NIL) ((-1160 . -791) NIL) ((-1095 . -611) 24070) ((-479 . -229) 24020) ((-1095 . -610) 24002) ((-1000 . -243) T) ((-1000 . -233) T) ((-427 . -1045) T) ((-954 . -1093) 23952) ((-910 . -243) T) ((-862 . -131) T) ((-694 . -452) T) ((-839 . -1105) 23931) ((-108 . -896) NIL) ((-1202 . -284) 23897) ((-868 . -844) 23876) ((-1106 . -1208) T) ((-901 . -722) T) ((-169 . -514) 23788) ((-995 . -25) T) ((-901 . -473) T) ((-407 . -1105) T) ((-487 . -790) T) ((-487 . -787) T) ((-906 . -349) T) ((-487 . -722) T) ((-217 . -790) T) ((-217 . -787) T) ((-995 . -21) T) ((-217 . -722) T) ((-839 . -23) 23740) ((-524 . -613) 23721) ((-1176 . -1093) T) ((-319 . -307) 23700) ((-1175 . -1093) T) ((-1031 . -235) 23646) ((-407 . -23) T) ((-939 . -611) 23607) ((-939 . -610) 23519) ((-640 . -489) 23503) ((-45 . -1006) 23453) ((-614 . -963) T) ((-491 . -102) T) ((-331 . -610) 23435) ((-1106 . -1034) 23262) ((-591 . -646) 23244) ((-130 . -1093) T) ((-128 . -1093) T) ((-591 . -373) 23226) ((-343 . -1264) 23203) ((-439 . -610) 23185) ((-1023 . -1208) T) ((-867 . -290) T) ((-1230 . -514) 23132) ((-476 . -1208) T) ((-463 . -1208) T) ((-584 . -102) T) ((-1165 . -286) 23059) ((-620 . -452) 23038) ((-996 . -991) 23022) ((-1272 . -382) 22994) ((-517 . -1093) T) ((-117 . -452) T) ((-1188 . -102) T) ((-1085 . -1093) 22972) ((-1030 . -1093) T) ((-1108 . -93) T) ((-889 . -846) T) ((-351 . -1212) T) ((-1249 . -1051) 22855) ((-1106 . -377) 22824) ((-1242 . -1051) 22659) ((-1221 . -1051) 22449) ((-1249 . -111) 22318) ((-1242 . -111) 22139) ((-1221 . -111) 21908) ((-1202 . -309) 21895) ((-351 . -555) T) ((-365 . -610) 21877) ((-289 . -307) T) ((-594 . -1051) 21850) ((-593 . -1051) 21733) ((-361 . -1093) T) ((-322 . -1093) T) ((-251 . -610) 21694) ((-250 . -610) 21655) ((-999 . -131) T) ((-632 . -23) T) ((-689 . -409) 21622) ((-604 . -23) T) ((-653 . -102) T) ((-594 . -111) 21593) ((-593 . -111) 21462) ((-379 . -1093) T) ((-336 . -102) T) ((-169 . -290) 21373) ((-1220 . -844) 21326) ((-710 . -1052) T) ((-1140 . -514) 21259) ((-1106 . -896) 21191) ((-832 . -1093) T) ((-823 . -1093) T) ((-821 . -1093) T) ((-97 . -102) T) ((-144 . -846) T) ((-609 . -880) 21175) ((-110 . -1208) T) ((-1080 . -102) T) ((-1057 . -34) T) ((-778 . -102) T) ((-776 . -102) T) ((-1249 . -613) 21057) ((-1242 . -613) 20800) ((-461 . -102) T) ((-454 . -102) T) ((-1221 . -613) 20595) ((-240 . -791) 20546) ((-240 . -788) 20497) ((-644 . -102) T) ((-594 . -613) 20455) ((-593 . -613) 20337) ((-1230 . -290) 20248) ((-659 . -631) 20232) ((-186 . -610) 20214) ((-640 . -286) 20191) ((-1030 . -713) 20175) ((-570 . -290) T) ((-959 . -643) 20100) ((-1280 . -131) T) ((-731 . -643) 20060) ((-711 . -643) 20047) ((-275 . -102) T) ((-453 . -643) 19977) ((-50 . -102) T) ((-580 . -102) T) ((-518 . -102) T) ((-1249 . -1045) T) ((-1242 . -1045) T) ((-1221 . -1045) T) ((-1249 . -233) 19936) ((-322 . -713) 19918) ((-1242 . -243) 19897) ((-1242 . -233) 19849) ((-1221 . -233) 19736) ((-1221 . -243) 19715) ((-1202 . -38) 19612) ((-1000 . -791) T) ((-594 . -1045) T) ((-593 . -1045) T) ((-1000 . -788) T) ((-967 . -791) T) ((-967 . -788) T) ((-868 . -1052) T) ((-866 . -865) 19596) ((-109 . -610) 19578) ((-689 . -452) T) ((-379 . -713) 19543) ((-418 . -643) 19517) ((-708 . -846) 19496) ((-707 . -38) 19461) ((-593 . -233) 19420) ((-40 . -720) 19392) ((-351 . -329) 19369) ((-351 . -363) T) ((-1073 . -307) 19320) ((-294 . -1105) 19201) ((-1099 . -1208) T) ((-171 . -102) T) ((-1224 . -610) 19168) ((-839 . -131) 19120) ((-640 . -1245) 19104) ((-832 . -713) 19074) ((-823 . -713) 19044) ((-482 . -1208) T) ((-359 . -307) T) ((-353 . -307) T) ((-345 . -307) T) ((-640 . -601) 19021) ((-407 . -131) T) ((-520 . -661) 19005) ((-108 . -307) T) ((-294 . -23) 18888) ((-520 . -646) 18872) ((-689 . -402) NIL) ((-520 . -373) 18856) ((-291 . -610) 18838) ((-91 . -1093) 18816) ((-108 . -1018) T) ((-563 . -143) T) ((-1257 . -151) 18800) ((-482 . -1034) 18627) ((-1243 . -145) 18588) ((-1243 . -147) 18549) ((-1049 . -1208) T) ((-989 . -610) 18531) ((-858 . -610) 18513) ((-812 . -1051) 18356) ((-1268 . -93) T) ((-1267 . -93) T) ((-1165 . -611) NIL) ((-1089 . -1093) T) ((-1083 . -1093) T) ((-1080 . -309) 18343) ((-1067 . -1093) T) ((-227 . -1208) T) ((-1060 . -1093) T) ((-1032 . -1093) T) ((-1015 . -1093) T) ((-778 . -309) 18330) ((-776 . -309) 18317) ((-1165 . -610) 18299) ((-812 . -111) 18128) ((-1118 . -610) 18110) ((-623 . -1093) T) ((-576 . -173) T) ((-529 . -173) T) ((-454 . -309) 18097) ((-483 . -1093) T) ((-1118 . -611) 17845) ((-1030 . -172) T) ((-939 . -288) 17822) ((-218 . -1093) T) ((-850 . -610) 17804) ((-605 . -514) 17587) ((-81 . -613) 17528) ((-814 . -1034) 17512) ((-475 . -514) 17304) ((-959 . -722) T) ((-731 . -722) T) ((-711 . -722) T) ((-351 . -1105) T) ((-1172 . -610) 17286) ((-223 . -102) T) ((-482 . -377) 17255) ((-515 . -1093) T) ((-510 . -1093) T) ((-508 . -1093) T) ((-795 . -643) 17229) ((-1020 . -452) T) ((-954 . -514) 17162) ((-351 . -23) T) ((-632 . -131) T) ((-604 . -131) T) ((-354 . -452) T) ((-240 . -368) 17141) ((-379 . -172) T) ((-1241 . -1052) T) ((-1220 . -1052) T) ((-225 . -998) T) ((-812 . -613) 16878) ((-694 . -387) T) ((-418 . -722) T) ((-696 . -1212) T) ((-1135 . -636) 16826) ((-579 . -865) 16810) ((-1272 . -1051) 16794) ((-1152 . -1184) 16770) ((-696 . -555) T) ((-126 . -1093) 16748) ((-710 . -1093) T) ((-482 . -896) 16680) ((-249 . -1093) T) ((-187 . -1093) T) ((-653 . -38) 16650) ((-354 . -402) T) ((-316 . -147) 16629) ((-316 . -145) 16608) ((-128 . -514) NIL) ((-116 . -555) T) ((-313 . -147) 16564) ((-313 . -145) 16520) ((-48 . -452) T) ((-162 . -1093) T) ((-157 . -1093) T) ((-1152 . -107) 16467) ((-778 . -1144) 16445) ((-684 . -34) T) ((-1272 . -111) 16424) ((-549 . -34) T) ((-484 . -107) 16408) ((-251 . -288) 16385) ((-250 . -288) 16362) ((-867 . -286) 16313) ((-45 . -1208) T) ((-1214 . -840) T) ((-812 . -1045) T) ((-1171 . -47) 16290) ((-812 . -326) 16252) ((-1080 . -38) 16101) ((-812 . -233) 16080) ((-778 . -38) 15909) ((-776 . -38) 15758) ((-1108 . -490) 15739) ((-454 . -38) 15588) ((-1108 . -610) 15554) ((-1111 . -102) T) ((-640 . -611) 15515) ((-640 . -610) 15427) ((-580 . -1144) T) ((-518 . -1144) T) ((-1140 . -489) 15411) ((-1194 . -1093) 15389) ((-1135 . -25) T) ((-1135 . -21) T) ((-1272 . -613) 15338) ((-474 . -1052) T) ((-1214 . -1093) T) ((-1221 . -788) NIL) ((-1221 . -791) NIL) ((-995 . -846) 15317) ((-834 . -1093) T) ((-815 . -610) 15299) ((-862 . -21) T) ((-862 . -25) T) ((-795 . -722) T) ((-174 . -1212) T) ((-580 . -38) 15264) ((-518 . -38) 15229) ((-386 . -610) 15211) ((-324 . -610) 15193) ((-169 . -286) 15151) ((-63 . -1208) T) ((-112 . -102) T) ((-868 . -1093) T) ((-174 . -555) T) ((-710 . -713) 15121) ((-294 . -131) 15004) ((-225 . -610) 14986) ((-225 . -611) 14916) ((-999 . -636) 14855) ((-1272 . -1045) T) ((-1113 . -147) T) ((-629 . -1184) 14830) ((-727 . -905) 14809) ((-591 . -34) T) ((-642 . -107) 14793) ((-629 . -107) 14739) ((-1230 . -286) 14666) ((-727 . -643) 14591) ((-295 . -1208) T) ((-1171 . -1034) 14487) ((-939 . -615) 14464) ((-576 . -575) T) ((-576 . -527) T) ((-529 . -527) T) ((-1160 . -905) NIL) ((-1056 . -611) 14379) ((-1056 . -610) 14361) ((-948 . -610) 14343) ((-709 . -490) 14293) ((-343 . -102) T) ((-251 . -1051) 14190) ((-250 . -1051) 14087) ((-394 . -102) T) ((-31 . -1093) T) ((-948 . -611) 13948) ((-709 . -610) 13883) ((-1270 . -1201) 13852) ((-481 . -610) 13834) ((-481 . -611) 13695) ((-247 . -411) 13679) ((-264 . -411) 13663) ((-251 . -111) 13553) ((-250 . -111) 13443) ((-1167 . -643) 13368) ((-1166 . -643) 13265) ((-1160 . -643) 13117) ((-1119 . -643) 13042) ((-351 . -131) T) ((-82 . -441) T) ((-82 . -395) T) ((-999 . -25) T) ((-999 . -21) T) ((-869 . -1093) 12993) ((-868 . -713) 12945) ((-379 . -290) T) ((-169 . -998) 12897) ((-689 . -387) T) ((-995 . -993) 12881) ((-696 . -1105) T) ((-689 . -166) 12863) ((-1241 . -1093) T) ((-1220 . -1093) T) ((-316 . -1193) 12842) ((-316 . -1196) 12821) ((-1157 . -102) T) ((-316 . -955) 12800) ((-134 . -1105) T) ((-116 . -1105) T) ((-599 . -1255) 12784) ((-696 . -23) T) ((-599 . -1093) 12734) ((-316 . -95) 12713) ((-91 . -514) 12646) ((-174 . -363) T) ((-251 . -613) 12376) ((-250 . -613) 12106) ((-316 . -35) 12085) ((-605 . -489) 12019) ((-134 . -23) T) ((-116 . -23) T) ((-962 . -102) T) ((-714 . -1093) T) ((-475 . -489) 11956) ((-407 . -636) 11904) ((-648 . -1034) 11800) ((-954 . -489) 11784) ((-355 . -1052) T) ((-352 . -1052) T) ((-344 . -1052) T) ((-264 . -1052) T) ((-247 . -1052) T) ((-867 . -611) NIL) ((-867 . -610) 11766) ((-1268 . -490) 11747) ((-1267 . -490) 11728) ((-1280 . -21) T) ((-1268 . -610) 11694) ((-1267 . -610) 11660) ((-570 . -998) T) ((-727 . -722) T) ((-1280 . -25) T) ((-251 . -1045) 11590) ((-250 . -1045) 11520) ((-72 . -1208) T) ((-251 . -233) 11472) ((-250 . -233) 11424) ((-40 . -102) T) ((-906 . -1052) T) ((-128 . -489) 11406) ((-1174 . -102) T) ((-1167 . -722) T) ((-1166 . -722) T) ((-1160 . -722) T) ((-1160 . -787) NIL) ((-1160 . -790) NIL) ((-950 . -102) T) ((-917 . -102) T) ((-1119 . -722) T) ((-767 . -102) T) ((-667 . -102) T) ((-546 . -610) 11388) ((-474 . -1093) T) ((-339 . -1105) T) ((-174 . -1105) T) ((-319 . -916) 11367) ((-1241 . -713) 11208) ((-868 . -172) T) ((-1220 . -713) 11022) ((-839 . -21) 10974) ((-839 . -25) 10926) ((-245 . -1142) 10910) ((-126 . -514) 10843) ((-407 . -25) T) ((-407 . -21) T) ((-339 . -23) T) ((-169 . -611) 10609) ((-169 . -610) 10591) ((-174 . -23) T) ((-640 . -288) 10568) ((-520 . -34) T) ((-894 . -610) 10550) ((-89 . -1208) T) ((-837 . -610) 10532) ((-804 . -610) 10514) ((-765 . -610) 10496) ((-672 . -610) 10478) ((-240 . -643) 10326) ((-1169 . -1093) T) ((-1165 . -1051) 10149) ((-1143 . -1208) T) ((-1118 . -1051) 9992) ((-850 . -1051) 9976) ((-1224 . -615) 9960) ((-1165 . -111) 9769) ((-1118 . -111) 9598) ((-850 . -111) 9577) ((-1230 . -611) NIL) ((-1230 . -610) 9559) ((-343 . -1144) T) ((-851 . -610) 9541) ((-1069 . -286) 9520) ((-80 . -1208) T) ((-1000 . -905) NIL) ((-605 . -286) 9496) ((-1194 . -514) 9429) ((-487 . -1208) T) ((-570 . -610) 9411) ((-475 . -286) 9390) ((-517 . -93) T) ((-217 . -1208) T) ((-1080 . -231) 9374) ((-1000 . -643) 9324) ((-289 . -916) T) ((-813 . -307) 9303) ((-866 . -102) T) ((-778 . -231) 9287) ((-954 . -286) 9264) ((-910 . -643) 9216) ((-632 . -21) T) ((-632 . -25) T) ((-604 . -21) T) ((-547 . -102) T) ((-343 . -38) 9181) ((-689 . -720) 9148) ((-487 . -880) 9130) ((-487 . -882) 9112) ((-474 . -713) 8953) ((-217 . -880) 8935) ((-64 . -1208) T) ((-217 . -882) 8917) ((-604 . -25) T) ((-427 . -643) 8891) ((-1165 . -613) 8660) ((-487 . -1034) 8620) ((-868 . -514) 8532) ((-1118 . -613) 8324) ((-850 . -613) 8242) ((-217 . -1034) 8202) ((-240 . -34) T) ((-996 . -1093) 8180) ((-1241 . -172) 8111) ((-1220 . -172) 8042) ((-708 . -145) 8021) ((-708 . -147) 8000) ((-696 . -131) T) ((-136 . -465) 7977) ((-1140 . -610) 7909) ((-653 . -651) 7893) ((-128 . -286) 7868) ((-116 . -131) T) ((-477 . -1212) T) ((-605 . -601) 7844) ((-475 . -601) 7823) ((-336 . -335) 7792) ((-536 . -1093) T) ((-477 . -555) T) ((-1165 . -1045) T) ((-1118 . -1045) T) ((-850 . -1045) T) ((-240 . -787) 7771) ((-240 . -790) 7722) ((-240 . -789) 7701) ((-1165 . -326) 7678) ((-240 . -722) 7588) ((-954 . -19) 7572) ((-487 . -377) 7554) ((-487 . -338) 7536) ((-1118 . -326) 7508) ((-354 . -1264) 7485) ((-217 . -377) 7467) ((-217 . -338) 7449) ((-954 . -601) 7426) ((-1165 . -233) T) ((-659 . -1093) T) ((-641 . -1093) T) ((-1253 . -1093) T) ((-1181 . -1093) T) ((-1080 . -253) 7363) ((-355 . -1093) T) ((-352 . -1093) T) ((-344 . -1093) T) ((-264 . -1093) T) ((-247 . -1093) T) ((-84 . -1208) T) ((-127 . -102) 7341) ((-121 . -102) 7319) ((-1181 . -607) 7298) ((-479 . -1093) T) ((-1134 . -1093) T) ((-479 . -607) 7277) ((-251 . -791) 7228) ((-251 . -788) 7179) ((-250 . -791) 7130) ((-40 . -1144) NIL) ((-250 . -788) 7081) ((-1108 . -613) 7062) ((-128 . -19) 7044) ((-1073 . -916) 6995) ((-1000 . -790) T) ((-1000 . -787) T) ((-1000 . -722) T) ((-967 . -790) T) ((-128 . -601) 6970) ((-910 . -722) T) ((-91 . -489) 6954) ((-487 . -896) NIL) ((-906 . -1093) T) ((-225 . -1051) 6919) ((-868 . -290) T) ((-217 . -896) NIL) ((-829 . -1105) 6898) ((-59 . -1093) 6848) ((-519 . -1093) 6826) ((-516 . -1093) 6776) ((-497 . -1093) 6754) ((-496 . -1093) 6704) ((-579 . -102) T) ((-563 . -102) T) ((-495 . -102) T) ((-474 . -172) 6635) ((-359 . -916) T) ((-353 . -916) T) ((-345 . -916) T) ((-225 . -111) 6591) ((-829 . -23) 6543) ((-427 . -722) T) ((-108 . -916) T) ((-40 . -38) 6488) ((-108 . -816) T) ((-580 . -349) T) ((-518 . -349) T) ((-1220 . -514) 6348) ((-316 . -452) 6327) ((-313 . -452) T) ((-888 . -610) 6309) ((-832 . -286) 6288) ((-339 . -131) T) ((-174 . -131) T) ((-294 . -25) 6152) ((-294 . -21) 6035) ((-45 . -1184) 6014) ((-66 . -610) 5996) ((-55 . -102) T) ((-599 . -514) 5929) ((-45 . -107) 5879) ((-815 . -613) 5863) ((-1095 . -425) 5847) ((-1095 . -368) 5826) ((-386 . -613) 5810) ((-324 . -613) 5794) ((-1057 . -1208) T) ((-1056 . -1051) 5781) ((-948 . -1051) 5624) ((-1258 . -102) T) ((-1257 . -102) 5574) ((-1056 . -111) 5559) ((-481 . -1051) 5402) ((-659 . -713) 5386) ((-948 . -111) 5215) ((-225 . -613) 5165) ((-477 . -363) T) ((-355 . -713) 5117) ((-352 . -713) 5069) ((-344 . -713) 5021) ((-264 . -713) 4870) ((-247 . -713) 4719) ((-1249 . -643) 4644) ((-1221 . -905) NIL) ((-1089 . -93) T) ((-1083 . -93) T) ((-939 . -646) 4628) ((-1067 . -93) T) ((-481 . -111) 4457) ((-1060 . -93) T) ((-1032 . -93) T) ((-939 . -373) 4441) ((-248 . -102) T) ((-1015 . -93) T) ((-74 . -610) 4423) ((-959 . -47) 4402) ((-706 . -102) T) ((-694 . -102) T) ((-1 . -1093) T) ((-618 . -1105) T) ((-1242 . -643) 4299) ((-623 . -93) T) ((-1189 . -610) 4281) ((-1081 . -610) 4263) ((-126 . -489) 4247) ((-483 . -93) T) ((-1069 . -610) 4229) ((-390 . -23) T) ((-87 . -1208) T) ((-218 . -93) T) ((-1221 . -643) 4081) ((-906 . -713) 4046) ((-618 . -23) T) ((-605 . -610) 4028) ((-605 . -611) NIL) ((-475 . -611) NIL) ((-475 . -610) 4010) ((-511 . -1093) T) ((-507 . -1093) T) ((-351 . -25) T) ((-351 . -21) T) ((-127 . -309) 3948) ((-121 . -309) 3886) ((-594 . -643) 3873) ((-225 . -1045) T) ((-593 . -643) 3798) ((-379 . -998) T) ((-225 . -243) T) ((-225 . -233) T) ((-1056 . -613) 3770) ((-1056 . -615) 3751) ((-954 . -611) 3712) ((-954 . -610) 3624) ((-948 . -613) 3413) ((-866 . -38) 3400) ((-709 . -613) 3350) ((-1241 . -290) 3301) ((-1220 . -290) 3252) ((-481 . -613) 3037) ((-1113 . -452) T) ((-502 . -846) T) ((-316 . -1132) 3016) ((-995 . -147) 2995) ((-995 . -145) 2974) ((-495 . -309) 2961) ((-295 . -1184) 2940) ((-1176 . -610) 2922) ((-1175 . -610) 2904) ((-867 . -1051) 2849) ((-477 . -1105) T) ((-139 . -831) 2831) ((-620 . -102) T) ((-1194 . -489) 2815) ((-251 . -368) 2794) ((-250 . -368) 2773) ((-1056 . -1045) T) ((-295 . -107) 2723) ((-130 . -610) 2705) ((-128 . -611) NIL) ((-128 . -610) 2671) ((-117 . -102) T) ((-948 . -1045) T) ((-867 . -111) 2600) ((-477 . -23) T) ((-481 . -1045) T) ((-1056 . -233) T) ((-948 . -326) 2569) ((-481 . -326) 2526) ((-355 . -172) T) ((-352 . -172) T) ((-344 . -172) T) ((-264 . -172) 2437) ((-247 . -172) 2348) ((-959 . -1034) 2244) ((-517 . -490) 2225) ((-731 . -1034) 2196) ((-517 . -610) 2162) ((-1098 . -102) T) ((-1085 . -610) 2129) ((-1030 . -610) 2111) ((-1270 . -151) 2095) ((-1268 . -613) 2076) ((-1262 . -610) 2058) ((-1249 . -722) T) ((-1242 . -722) T) ((-1221 . -787) NIL) ((-1221 . -790) NIL) ((-169 . -1051) 1968) ((-906 . -172) T) ((-867 . -613) 1898) ((-1221 . -722) T) ((-1267 . -613) 1879) ((-999 . -342) 1853) ((-996 . -514) 1786) ((-839 . -846) 1765) ((-563 . -1144) T) ((-474 . -290) 1716) ((-594 . -722) T) ((-361 . -610) 1698) ((-322 . -610) 1680) ((-418 . -1034) 1576) ((-593 . -722) T) ((-407 . -846) 1527) ((-169 . -111) 1423) ((-829 . -131) 1375) ((-733 . -151) 1359) ((-1257 . -309) 1297) ((-487 . -307) T) ((-379 . -610) 1264) ((-520 . -1006) 1248) ((-379 . -611) 1162) ((-217 . -307) T) ((-141 . -151) 1144) ((-710 . -286) 1123) ((-487 . -1018) T) ((-579 . -38) 1110) ((-563 . -38) 1097) ((-495 . -38) 1062) ((-217 . -1018) T) ((-867 . -1045) T) ((-832 . -610) 1044) ((-823 . -610) 1026) ((-821 . -610) 1008) ((-812 . -905) 987) ((-1281 . -1105) T) ((-1230 . -1051) 810) ((-851 . -1051) 794) ((-867 . -243) T) ((-867 . -233) NIL) ((-684 . -1208) T) ((-1281 . -23) T) ((-812 . -643) 719) ((-549 . -1208) T) ((-418 . -338) 703) ((-570 . -1051) 690) ((-1230 . -111) 499) ((-696 . -636) 481) ((-851 . -111) 460) ((-381 . -23) T) ((-169 . -613) 238) ((-1181 . -514) 30) ((-657 . -1093) T) ((-676 . -1093) T) ((-671 . -1093) T)) \ No newline at end of file
+(((-478 . -1093) T) ((-264 . -514) 162004) ((-247 . -514) 161947) ((-245 . -1093) 161897) ((-570 . -111) 161882) ((-531 . -23) T) ((-138 . -1093) T) ((-137 . -1093) T) ((-117 . -309) 161839) ((-133 . -1093) T) ((-479 . -514) 161631) ((-672 . -613) 161615) ((-689 . -102) T) ((-1134 . -514) 161534) ((-390 . -131) T) ((-1270 . -972) 161503) ((-31 . -93) T) ((-599 . -489) 161487) ((-618 . -131) T) ((-815 . -842) T) ((-523 . -57) 161437) ((-59 . -514) 161370) ((-519 . -514) 161303) ((-418 . -896) 161262) ((-169 . -1045) T) ((-516 . -514) 161195) ((-497 . -514) 161128) ((-496 . -514) 161061) ((-795 . -1034) 160844) ((-694 . -38) 160809) ((-1230 . -613) 160557) ((-343 . -349) T) ((-1087 . -1086) 160541) ((-1087 . -1093) 160519) ((-851 . -613) 160416) ((-169 . -243) 160367) ((-169 . -233) 160318) ((-1087 . -1088) 160276) ((-868 . -286) 160234) ((-225 . -791) T) ((-225 . -788) T) ((-689 . -284) NIL) ((-570 . -613) 160206) ((-1143 . -1184) 160185) ((-407 . -988) 160169) ((-696 . -21) T) ((-696 . -25) T) ((-1272 . -643) 160143) ((-316 . -160) 160122) ((-316 . -143) 160101) ((-1143 . -107) 160051) ((-134 . -25) T) ((-40 . -231) 160028) ((-116 . -21) T) ((-116 . -25) T) ((-605 . -288) 160004) ((-475 . -288) 159983) ((-1230 . -326) 159960) ((-1230 . -1045) T) ((-851 . -1045) T) ((-795 . -338) 159944) ((-139 . -185) T) ((-117 . -1144) NIL) ((-91 . -610) 159876) ((-477 . -131) T) ((-1230 . -233) T) ((-1089 . -490) 159857) ((-1089 . -610) 159823) ((-1083 . -490) 159804) ((-1083 . -610) 159770) ((-591 . -1208) T) ((-1067 . -490) 159751) ((-570 . -1045) T) ((-1067 . -610) 159717) ((-657 . -713) 159701) ((-1060 . -490) 159682) ((-1060 . -610) 159648) ((-954 . -288) 159625) ((-60 . -34) T) ((-1056 . -791) T) ((-1056 . -788) T) ((-1032 . -490) 159606) ((-1015 . -490) 159587) ((-812 . -722) T) ((-727 . -47) 159552) ((-620 . -38) 159539) ((-355 . -290) T) ((-352 . -290) T) ((-344 . -290) T) ((-264 . -290) 159470) ((-247 . -290) 159401) ((-1032 . -610) 159367) ((-1020 . -102) T) ((-1015 . -610) 159333) ((-623 . -490) 159314) ((-413 . -722) T) ((-117 . -38) 159259) ((-483 . -490) 159240) ((-623 . -610) 159206) ((-413 . -473) T) ((-218 . -490) 159187) ((-483 . -610) 159153) ((-354 . -102) T) ((-218 . -610) 159119) ((-1202 . -1052) T) ((-707 . -1052) T) ((-1167 . -47) 159096) ((-1166 . -47) 159066) ((-1160 . -47) 159043) ((-128 . -288) 159018) ((-1031 . -151) 158964) ((-906 . -290) T) ((-1119 . -47) 158936) ((-689 . -309) NIL) ((-515 . -610) 158918) ((-510 . -610) 158900) ((-508 . -610) 158882) ((-327 . -1093) 158832) ((-708 . -452) 158763) ((-48 . -102) T) ((-1241 . -286) 158748) ((-1220 . -286) 158668) ((-640 . -661) 158652) ((-640 . -646) 158636) ((-339 . -21) T) ((-339 . -25) T) ((-40 . -349) NIL) ((-174 . -21) T) ((-174 . -25) T) ((-640 . -373) 158620) ((-602 . -490) 158602) ((-599 . -286) 158579) ((-602 . -610) 158546) ((-388 . -102) T) ((-1113 . -143) T) ((-126 . -610) 158478) ((-870 . -1093) T) ((-653 . -411) 158462) ((-710 . -610) 158444) ((-249 . -610) 158411) ((-187 . -610) 158393) ((-162 . -610) 158375) ((-157 . -610) 158357) ((-1272 . -722) T) ((-1095 . -34) T) ((-867 . -791) NIL) ((-867 . -788) NIL) ((-854 . -846) T) ((-727 . -882) NIL) ((-1281 . -131) T) ((-381 . -131) T) ((-888 . -613) 158325) ((-900 . -102) T) ((-727 . -1034) 158201) ((-531 . -131) T) ((-1080 . -411) 158185) ((-996 . -489) 158169) ((-117 . -400) 158146) ((-1160 . -1208) 158125) ((-778 . -411) 158109) ((-776 . -411) 158093) ((-939 . -34) T) ((-689 . -1144) NIL) ((-251 . -643) 157928) ((-250 . -643) 157750) ((-813 . -916) 157729) ((-454 . -411) 157713) ((-599 . -19) 157697) ((-1139 . -1201) 157666) ((-1160 . -882) NIL) ((-1160 . -880) 157618) ((-599 . -601) 157595) ((-1194 . -610) 157527) ((-1168 . -610) 157509) ((-62 . -395) T) ((-1166 . -1034) 157444) ((-1160 . -1034) 157410) ((-689 . -38) 157360) ((-474 . -286) 157345) ((-1214 . -610) 157327) ((-727 . -377) 157311) ((-834 . -610) 157293) ((-653 . -1052) T) ((-1241 . -998) 157259) ((-1220 . -998) 157225) ((-1081 . -613) 157209) ((-1057 . -1184) 157184) ((-1069 . -613) 157161) ((-868 . -611) 156968) ((-868 . -610) 156950) ((-1181 . -489) 156887) ((-418 . -1018) 156865) ((-48 . -309) 156852) ((-1057 . -107) 156798) ((-479 . -489) 156735) ((-520 . -1208) T) ((-1160 . -338) 156687) ((-1134 . -489) 156658) ((-1160 . -377) 156610) ((-1080 . -1052) T) ((-437 . -102) T) ((-183 . -1093) T) ((-251 . -34) T) ((-250 . -34) T) ((-778 . -1052) T) ((-776 . -1052) T) ((-727 . -896) 156587) ((-454 . -1052) T) ((-59 . -489) 156571) ((-1030 . -1051) 156545) ((-519 . -489) 156529) ((-516 . -489) 156513) ((-497 . -489) 156497) ((-496 . -489) 156481) ((-245 . -514) 156414) ((-1030 . -111) 156381) ((-1167 . -896) 156294) ((-1166 . -896) 156200) ((-1160 . -896) 156033) ((-1119 . -896) 156017) ((-665 . -1105) T) ((-354 . -1144) T) ((-641 . -93) T) ((-322 . -1051) 155999) ((-251 . -787) 155978) ((-251 . -790) 155929) ((-31 . -490) 155910) ((-251 . -789) 155889) ((-250 . -787) 155868) ((-250 . -790) 155819) ((-250 . -789) 155798) ((-31 . -610) 155764) ((-50 . -1052) T) ((-251 . -722) 155674) ((-250 . -722) 155584) ((-1202 . -1093) T) ((-665 . -23) T) ((-580 . -1052) T) ((-518 . -1052) T) ((-379 . -1051) 155549) ((-322 . -111) 155524) ((-73 . -383) T) ((-73 . -395) T) ((-1020 . -38) 155461) ((-689 . -400) 155443) ((-99 . -102) T) ((-707 . -1093) T) ((-999 . -145) 155415) ((-999 . -147) 155387) ((-379 . -111) 155343) ((-319 . -1212) 155322) ((-474 . -998) 155288) ((-354 . -38) 155253) ((-40 . -370) 155225) ((-869 . -610) 155097) ((-127 . -125) 155081) ((-121 . -125) 155065) ((-832 . -1051) 155035) ((-829 . -21) 154987) ((-823 . -1051) 154971) ((-829 . -25) 154923) ((-319 . -555) 154874) ((-517 . -613) 154855) ((-563 . -824) T) ((-240 . -1208) T) ((-1030 . -613) 154824) ((-832 . -111) 154789) ((-823 . -111) 154768) ((-1241 . -610) 154750) ((-1220 . -610) 154732) ((-1220 . -611) 154403) ((-1165 . -905) 154382) ((-1118 . -905) 154361) ((-48 . -38) 154326) ((-1279 . -1105) T) ((-599 . -610) 154238) ((-599 . -611) 154199) ((-1277 . -1105) T) ((-361 . -613) 154183) ((-322 . -613) 154167) ((-240 . -1034) 153994) ((-1165 . -643) 153919) ((-1118 . -643) 153844) ((-850 . -643) 153818) ((-714 . -610) 153800) ((-546 . -368) T) ((-1279 . -23) T) ((-1277 . -23) T) ((-491 . -1093) T) ((-379 . -613) 153750) ((-379 . -615) 153732) ((-1030 . -1045) T) ((-861 . -102) T) ((-1181 . -286) 153711) ((-169 . -368) 153662) ((-1000 . -1208) T) ((-832 . -613) 153616) ((-823 . -613) 153571) ((-44 . -23) T) ((-479 . -286) 153550) ((-584 . -1093) T) ((-1139 . -1102) 153519) ((-1097 . -1096) 153471) ((-390 . -21) T) ((-390 . -25) T) ((-152 . -1105) T) ((-1285 . -102) T) ((-1000 . -880) 153453) ((-1000 . -882) 153435) ((-1202 . -713) 153332) ((-620 . -231) 153316) ((-618 . -21) T) ((-289 . -555) T) ((-618 . -25) T) ((-1188 . -1093) T) ((-707 . -713) 153281) ((-240 . -377) 153250) ((-1000 . -1034) 153210) ((-379 . -1045) T) ((-223 . -1052) T) ((-117 . -231) 153187) ((-59 . -286) 153164) ((-152 . -23) T) ((-516 . -286) 153141) ((-327 . -514) 153074) ((-496 . -286) 153051) ((-379 . -243) T) ((-379 . -233) T) ((-832 . -1045) T) ((-823 . -1045) T) ((-708 . -945) 153020) ((-696 . -846) T) ((-474 . -610) 153002) ((-823 . -233) 152981) ((-134 . -846) T) ((-653 . -1093) T) ((-1181 . -601) 152960) ((-549 . -1184) 152939) ((-336 . -1093) T) ((-319 . -363) 152918) ((-407 . -147) 152897) ((-407 . -145) 152876) ((-960 . -1105) 152775) ((-240 . -896) 152707) ((-811 . -1105) 152617) ((-649 . -848) 152601) ((-479 . -601) 152580) ((-549 . -107) 152530) ((-1000 . -377) 152512) ((-1000 . -338) 152494) ((-97 . -1093) T) ((-960 . -23) 152305) ((-477 . -21) T) ((-477 . -25) T) ((-811 . -23) 152175) ((-1169 . -610) 152157) ((-59 . -19) 152141) ((-1169 . -611) 152063) ((-1165 . -722) T) ((-1118 . -722) T) ((-516 . -19) 152047) ((-496 . -19) 152031) ((-59 . -601) 152008) ((-1080 . -1093) T) ((-897 . -102) 151986) ((-850 . -722) T) ((-778 . -1093) T) ((-516 . -601) 151963) ((-496 . -601) 151940) ((-776 . -1093) T) ((-776 . -1059) 151907) ((-461 . -1093) T) ((-454 . -1093) T) ((-584 . -713) 151882) ((-644 . -1093) T) ((-1249 . -47) 151859) ((-1243 . -102) T) ((-1242 . -47) 151829) ((-1221 . -47) 151806) ((-1202 . -172) 151757) ((-1166 . -307) 151736) ((-1000 . -896) NIL) ((-1160 . -307) 151715) ((-624 . -1105) T) ((-665 . -131) T) ((-1089 . -613) 151696) ((-1083 . -613) 151677) ((-1073 . -555) 151628) ((-1073 . -1212) 151579) ((-1067 . -613) 151560) ((-275 . -1093) T) ((-85 . -441) T) ((-85 . -395) T) ((-1060 . -613) 151541) ((-1032 . -613) 151522) ((-50 . -1093) T) ((-1015 . -613) 151503) ((-707 . -172) T) ((-593 . -47) 151480) ((-225 . -643) 151445) ((-580 . -1093) T) ((-518 . -1093) T) ((-359 . -1212) T) ((-353 . -1212) T) ((-345 . -1212) T) ((-487 . -816) T) ((-487 . -916) T) ((-319 . -1105) T) ((-108 . -1212) T) ((-710 . -1051) 151415) ((-339 . -846) T) ((-217 . -916) T) ((-217 . -816) T) ((-623 . -613) 151396) ((-359 . -555) T) ((-353 . -555) T) ((-345 . -555) T) ((-483 . -613) 151377) ((-108 . -555) T) ((-653 . -713) 151347) ((-1160 . -1018) NIL) ((-218 . -613) 151328) ((-319 . -23) T) ((-67 . -1208) T) ((-996 . -610) 151260) ((-689 . -231) 151242) ((-710 . -111) 151207) ((-640 . -34) T) ((-245 . -489) 151191) ((-1095 . -1091) 151175) ((-171 . -1093) T) ((-948 . -905) 151154) ((-515 . -613) 151138) ((-1285 . -1144) T) ((-1281 . -21) T) ((-481 . -905) 151117) ((-1281 . -25) T) ((-1279 . -131) T) ((-1277 . -131) T) ((-1270 . -102) T) ((-1253 . -610) 151083) ((-1242 . -1034) 151018) ((-1080 . -713) 150867) ((-1056 . -643) 150854) ((-948 . -643) 150779) ((-778 . -713) 150608) ((-536 . -610) 150590) ((-536 . -611) 150571) ((-776 . -713) 150420) ((-1221 . -1208) 150399) ((-1070 . -102) T) ((-381 . -25) T) ((-381 . -21) T) ((-481 . -643) 150324) ((-461 . -713) 150295) ((-454 . -713) 150144) ((-983 . -102) T) ((-1221 . -882) NIL) ((-1221 . -880) 150096) ((-1181 . -611) NIL) ((-733 . -102) T) ((-1181 . -610) 150078) ((-602 . -613) 150060) ((-1135 . -1116) 150005) ((-1042 . -1201) 149934) ((-531 . -25) T) ((-897 . -309) 149872) ((-710 . -613) 149826) ((-343 . -1052) T) ((-641 . -490) 149807) ((-141 . -102) T) ((-44 . -131) T) ((-289 . -1105) T) ((-676 . -93) T) ((-671 . -93) T) ((-659 . -610) 149789) ((-641 . -610) 149742) ((-478 . -93) T) ((-355 . -610) 149724) ((-352 . -610) 149706) ((-344 . -610) 149688) ((-264 . -611) 149436) ((-264 . -610) 149418) ((-247 . -610) 149400) ((-247 . -611) 149261) ((-133 . -93) T) ((-138 . -93) T) ((-137 . -93) T) ((-1221 . -1034) 149227) ((-1202 . -514) 149194) ((-1134 . -610) 149176) ((-815 . -853) T) ((-815 . -722) T) ((-599 . -288) 149153) ((-580 . -713) 149118) ((-479 . -611) NIL) ((-479 . -610) 149100) ((-518 . -713) 149045) ((-316 . -102) T) ((-313 . -102) T) ((-289 . -23) T) ((-152 . -131) T) ((-906 . -610) 149027) ((-386 . -722) T) ((-868 . -1051) 148979) ((-906 . -611) 148961) ((-868 . -111) 148899) ((-710 . -1045) T) ((-708 . -1233) 148883) ((-139 . -102) T) ((-136 . -102) T) ((-114 . -102) T) ((-689 . -349) NIL) ((-519 . -610) 148815) ((-379 . -791) T) ((-223 . -1093) T) ((-379 . -788) T) ((-225 . -790) T) ((-225 . -787) T) ((-59 . -611) 148776) ((-59 . -610) 148688) ((-225 . -722) T) ((-516 . -611) 148649) ((-516 . -610) 148561) ((-497 . -610) 148493) ((-496 . -611) 148454) ((-496 . -610) 148366) ((-1073 . -363) 148317) ((-40 . -411) 148294) ((-77 . -1208) T) ((-867 . -905) NIL) ((-359 . -329) 148278) ((-359 . -363) T) ((-353 . -329) 148262) ((-353 . -363) T) ((-345 . -329) 148246) ((-345 . -363) T) ((-316 . -284) 148225) ((-108 . -363) T) ((-70 . -1208) T) ((-1221 . -338) 148177) ((-867 . -643) 148122) ((-1221 . -377) 148074) ((-960 . -131) 147929) ((-811 . -131) 147799) ((-954 . -646) 147783) ((-1080 . -172) 147694) ((-954 . -373) 147678) ((-1056 . -790) T) ((-1056 . -787) T) ((-868 . -613) 147576) ((-778 . -172) 147467) ((-776 . -172) 147378) ((-812 . -47) 147340) ((-1056 . -722) T) ((-327 . -489) 147324) ((-948 . -722) T) ((-454 . -172) 147235) ((-245 . -286) 147212) ((-1270 . -309) 147150) ((-1249 . -896) 147063) ((-481 . -722) T) ((-1242 . -896) 146969) ((-1241 . -1051) 146804) ((-1221 . -896) 146637) ((-1220 . -1051) 146445) ((-1202 . -290) 146424) ((-1178 . -1208) T) ((-1176 . -368) T) ((-1175 . -368) T) ((-1139 . -151) 146408) ((-1113 . -102) T) ((-1111 . -1093) T) ((-1073 . -23) T) ((-1068 . -102) T) ((-923 . -951) T) ((-733 . -309) 146346) ((-75 . -1208) T) ((-30 . -951) T) ((-169 . -905) 146299) ((-659 . -382) 146271) ((-112 . -840) T) ((-1 . -610) 146253) ((-1073 . -1105) T) ((-128 . -646) 146235) ((-50 . -617) 146219) ((-999 . -409) 146191) ((-593 . -896) 146104) ((-438 . -102) T) ((-141 . -309) NIL) ((-128 . -373) 146086) ((-868 . -1045) T) ((-829 . -846) 146065) ((-81 . -1208) T) ((-707 . -290) T) ((-40 . -1052) T) ((-580 . -172) T) ((-518 . -172) T) ((-511 . -610) 146047) ((-169 . -643) 145957) ((-507 . -610) 145939) ((-351 . -147) 145921) ((-351 . -145) T) ((-359 . -1105) T) ((-353 . -1105) T) ((-345 . -1105) T) ((-1000 . -307) T) ((-910 . -307) T) ((-868 . -243) T) ((-108 . -1105) T) ((-868 . -233) 145900) ((-1241 . -111) 145721) ((-1220 . -111) 145510) ((-245 . -1245) 145494) ((-563 . -844) T) ((-359 . -23) T) ((-354 . -349) T) ((-316 . -309) 145481) ((-313 . -309) 145422) ((-353 . -23) T) ((-319 . -131) T) ((-345 . -23) T) ((-1000 . -1018) T) ((-31 . -613) 145403) ((-108 . -23) T) ((-245 . -601) 145380) ((-1243 . -38) 145272) ((-1230 . -905) 145251) ((-112 . -1093) T) ((-1031 . -102) T) ((-1230 . -643) 145176) ((-867 . -790) NIL) ((-851 . -643) 145150) ((-867 . -787) NIL) ((-812 . -882) NIL) ((-867 . -722) T) ((-1080 . -514) 145023) ((-778 . -514) 144970) ((-776 . -514) 144922) ((-570 . -643) 144909) ((-812 . -1034) 144737) ((-454 . -514) 144680) ((-388 . -389) T) ((-1241 . -613) 144493) ((-1220 . -613) 144241) ((-60 . -1208) T) ((-618 . -846) 144220) ((-500 . -656) T) ((-1139 . -972) 144189) ((-999 . -452) T) ((-694 . -844) T) ((-510 . -788) T) ((-474 . -1051) 144024) ((-343 . -1093) T) ((-313 . -1144) NIL) ((-289 . -131) T) ((-394 . -1093) T) ((-689 . -370) 143991) ((-866 . -1052) T) ((-223 . -617) 143968) ((-327 . -286) 143945) ((-474 . -111) 143766) ((-1241 . -1045) T) ((-1220 . -1045) T) ((-812 . -377) 143750) ((-169 . -722) T) ((-649 . -102) T) ((-1241 . -243) 143729) ((-1241 . -233) 143681) ((-1220 . -233) 143586) ((-1220 . -243) 143565) ((-999 . -402) NIL) ((-665 . -636) 143513) ((-316 . -38) 143423) ((-313 . -38) 143352) ((-69 . -610) 143334) ((-319 . -493) 143300) ((-1181 . -288) 143279) ((-1215 . -846) T) ((-1106 . -1105) 143189) ((-83 . -1208) T) ((-61 . -610) 143171) ((-479 . -288) 143150) ((-1272 . -1034) 143127) ((-1157 . -1093) T) ((-1106 . -23) 142997) ((-812 . -896) 142933) ((-1230 . -722) T) ((-1095 . -1208) T) ((-474 . -613) 142759) ((-1080 . -290) 142690) ((-962 . -1093) T) ((-889 . -102) T) ((-778 . -290) 142601) ((-327 . -19) 142585) ((-59 . -288) 142562) ((-776 . -290) 142493) ((-851 . -722) T) ((-117 . -844) NIL) ((-516 . -288) 142470) ((-327 . -601) 142447) ((-496 . -288) 142424) ((-454 . -290) 142355) ((-1031 . -309) 142206) ((-676 . -490) 142187) ((-570 . -722) T) ((-671 . -490) 142168) ((-676 . -610) 142118) ((-671 . -610) 142084) ((-657 . -610) 142066) ((-478 . -490) 142047) ((-478 . -610) 142013) ((-245 . -611) 141974) ((-245 . -490) 141951) ((-138 . -490) 141932) ((-137 . -490) 141913) ((-133 . -490) 141894) ((-245 . -610) 141786) ((-213 . -102) T) ((-138 . -610) 141752) ((-137 . -610) 141718) ((-133 . -610) 141684) ((-1140 . -34) T) ((-939 . -1208) T) ((-343 . -713) 141629) ((-665 . -25) T) ((-665 . -21) T) ((-1169 . -613) 141610) ((-474 . -1045) T) ((-632 . -417) 141575) ((-604 . -417) 141540) ((-1113 . -1144) T) ((-580 . -290) T) ((-518 . -290) T) ((-1242 . -307) 141519) ((-474 . -233) 141471) ((-474 . -243) 141450) ((-1221 . -307) 141429) ((-1221 . -1018) NIL) ((-1073 . -131) T) ((-868 . -791) 141408) ((-144 . -102) T) ((-40 . -1093) T) ((-868 . -788) 141387) ((-640 . -1006) 141371) ((-579 . -1052) T) ((-563 . -1052) T) ((-495 . -1052) T) ((-407 . -452) T) ((-359 . -131) T) ((-316 . -400) 141355) ((-313 . -400) 141316) ((-353 . -131) T) ((-345 . -131) T) ((-1174 . -1093) T) ((-1113 . -38) 141303) ((-1087 . -610) 141270) ((-108 . -131) T) ((-950 . -1093) T) ((-917 . -1093) T) ((-767 . -1093) T) ((-667 . -1093) T) ((-696 . -147) T) ((-116 . -147) T) ((-1279 . -21) T) ((-1279 . -25) T) ((-1277 . -21) T) ((-1277 . -25) T) ((-659 . -1051) 141254) ((-531 . -846) T) ((-500 . -846) T) ((-355 . -1051) 141206) ((-352 . -1051) 141158) ((-344 . -1051) 141110) ((-251 . -1208) T) ((-250 . -1208) T) ((-264 . -1051) 140953) ((-247 . -1051) 140796) ((-659 . -111) 140775) ((-547 . -840) T) ((-355 . -111) 140713) ((-352 . -111) 140651) ((-344 . -111) 140589) ((-264 . -111) 140418) ((-247 . -111) 140247) ((-813 . -1212) 140226) ((-620 . -411) 140210) ((-44 . -21) T) ((-44 . -25) T) ((-811 . -636) 140116) ((-813 . -555) 140095) ((-251 . -1034) 139922) ((-250 . -1034) 139749) ((-126 . -119) 139733) ((-906 . -1051) 139698) ((-708 . -102) T) ((-694 . -1052) T) ((-536 . -615) 139601) ((-343 . -172) T) ((-88 . -610) 139583) ((-152 . -21) T) ((-152 . -25) T) ((-906 . -111) 139539) ((-40 . -713) 139484) ((-866 . -1093) T) ((-659 . -613) 139461) ((-641 . -613) 139442) ((-355 . -613) 139379) ((-352 . -613) 139316) ((-547 . -1093) T) ((-344 . -613) 139253) ((-327 . -611) 139214) ((-327 . -610) 139126) ((-264 . -613) 138879) ((-247 . -613) 138664) ((-1220 . -788) 138617) ((-1220 . -791) 138570) ((-251 . -377) 138539) ((-250 . -377) 138508) ((-649 . -38) 138478) ((-605 . -34) T) ((-482 . -1105) 138388) ((-475 . -34) T) ((-1106 . -131) 138258) ((-960 . -25) 138069) ((-906 . -613) 138019) ((-870 . -610) 138001) ((-960 . -21) 137956) ((-811 . -21) 137866) ((-811 . -25) 137717) ((-1214 . -368) T) ((-620 . -1052) T) ((-1171 . -555) 137696) ((-1165 . -47) 137673) ((-355 . -1045) T) ((-352 . -1045) T) ((-482 . -23) 137543) ((-344 . -1045) T) ((-247 . -1045) T) ((-264 . -1045) T) ((-1118 . -47) 137515) ((-117 . -1052) T) ((-1030 . -643) 137489) ((-954 . -34) T) ((-355 . -233) 137468) ((-355 . -243) T) ((-352 . -233) 137447) ((-352 . -243) T) ((-344 . -233) 137426) ((-344 . -243) T) ((-247 . -326) 137383) ((-264 . -326) 137355) ((-264 . -233) 137334) ((-1149 . -151) 137318) ((-251 . -896) 137250) ((-250 . -896) 137182) ((-1075 . -846) T) ((-414 . -1105) T) ((-1049 . -23) T) ((-906 . -1045) T) ((-322 . -643) 137164) ((-1020 . -844) T) ((-1202 . -998) 137130) ((-1166 . -916) 137109) ((-1160 . -916) 137088) ((-1160 . -816) NIL) ((-906 . -243) T) ((-813 . -363) 137067) ((-385 . -23) T) ((-127 . -1093) 137045) ((-121 . -1093) 137023) ((-906 . -233) T) ((-128 . -34) T) ((-379 . -643) 136988) ((-866 . -713) 136975) ((-1042 . -151) 136940) ((-40 . -172) T) ((-689 . -411) 136922) ((-708 . -309) 136909) ((-832 . -643) 136869) ((-823 . -643) 136843) ((-319 . -25) T) ((-319 . -21) T) ((-653 . -286) 136822) ((-579 . -1093) T) ((-563 . -1093) T) ((-495 . -1093) T) ((-245 . -288) 136799) ((-313 . -231) 136760) ((-1165 . -882) NIL) ((-55 . -1093) T) ((-1118 . -882) 136619) ((-129 . -846) T) ((-1165 . -1034) 136499) ((-1118 . -1034) 136382) ((-183 . -610) 136364) ((-850 . -1034) 136260) ((-778 . -286) 136187) ((-813 . -1105) T) ((-1030 . -722) T) ((-599 . -646) 136171) ((-1042 . -972) 136100) ((-995 . -102) T) ((-813 . -23) T) ((-708 . -1144) 136078) ((-689 . -1052) T) ((-599 . -373) 136062) ((-351 . -452) T) ((-343 . -290) T) ((-1258 . -1093) T) ((-248 . -1093) T) ((-399 . -102) T) ((-289 . -21) T) ((-289 . -25) T) ((-361 . -722) T) ((-706 . -1093) T) ((-694 . -1093) T) ((-361 . -473) T) ((-1202 . -610) 136044) ((-1165 . -377) 136028) ((-1118 . -377) 136012) ((-1020 . -411) 135974) ((-141 . -229) 135956) ((-379 . -790) T) ((-379 . -787) T) ((-866 . -172) T) ((-379 . -722) T) ((-707 . -610) 135938) ((-708 . -38) 135767) ((-1257 . -1255) 135751) ((-351 . -402) T) ((-1257 . -1093) 135701) ((-579 . -713) 135688) ((-563 . -713) 135675) ((-495 . -713) 135640) ((-316 . -626) 135619) ((-832 . -722) T) ((-823 . -722) T) ((-640 . -1208) T) ((-1073 . -636) 135567) ((-1165 . -896) 135510) ((-1118 . -896) 135494) ((-657 . -1051) 135478) ((-108 . -636) 135460) ((-482 . -131) 135330) ((-1171 . -1105) T) ((-948 . -47) 135299) ((-620 . -1093) T) ((-657 . -111) 135278) ((-491 . -610) 135244) ((-327 . -288) 135221) ((-481 . -47) 135178) ((-1171 . -23) T) ((-117 . -1093) T) ((-103 . -102) 135156) ((-1269 . -1105) T) ((-1049 . -131) T) ((-1020 . -1052) T) ((-815 . -1034) 135140) ((-999 . -720) 135112) ((-1269 . -23) T) ((-694 . -713) 135077) ((-584 . -610) 135059) ((-386 . -1034) 135043) ((-354 . -1052) T) ((-385 . -131) T) ((-324 . -1034) 135027) ((-225 . -882) 135009) ((-1000 . -916) T) ((-91 . -34) T) ((-1000 . -816) T) ((-910 . -916) T) ((-1188 . -610) 134991) ((-1113 . -824) T) ((-487 . -1212) T) ((-1098 . -1093) T) ((-1073 . -21) T) ((-1073 . -25) T) ((-217 . -1212) T) ((-995 . -309) 134956) ((-225 . -1034) 134916) ((-40 . -290) T) ((-710 . -643) 134876) ((-676 . -613) 134857) ((-671 . -613) 134838) ((-487 . -555) T) ((-478 . -613) 134819) ((-359 . -25) T) ((-359 . -21) T) ((-353 . -25) T) ((-217 . -555) T) ((-353 . -21) T) ((-345 . -25) T) ((-345 . -21) T) ((-245 . -613) 134796) ((-138 . -613) 134777) ((-137 . -613) 134758) ((-133 . -613) 134739) ((-108 . -25) T) ((-108 . -21) T) ((-48 . -1052) T) ((-579 . -172) T) ((-563 . -172) T) ((-495 . -172) T) ((-653 . -610) 134721) ((-733 . -732) 134705) ((-336 . -610) 134687) ((-68 . -383) T) ((-68 . -395) T) ((-1095 . -107) 134671) ((-1056 . -882) 134653) ((-948 . -882) 134578) ((-648 . -1105) T) ((-620 . -713) 134565) ((-481 . -882) NIL) ((-1139 . -102) T) ((-1087 . -615) 134549) ((-1056 . -1034) 134531) ((-97 . -610) 134513) ((-477 . -147) T) ((-948 . -1034) 134393) ((-117 . -713) 134338) ((-648 . -23) T) ((-481 . -1034) 134214) ((-1080 . -611) NIL) ((-1080 . -610) 134196) ((-778 . -611) NIL) ((-778 . -610) 134157) ((-776 . -611) 133791) ((-776 . -610) 133705) ((-1106 . -636) 133611) ((-461 . -610) 133593) ((-454 . -610) 133575) ((-454 . -611) 133436) ((-1031 . -229) 133382) ((-868 . -905) 133361) ((-126 . -34) T) ((-813 . -131) T) ((-644 . -610) 133343) ((-577 . -102) T) ((-355 . -1276) 133327) ((-352 . -1276) 133311) ((-344 . -1276) 133295) ((-127 . -514) 133228) ((-121 . -514) 133161) ((-511 . -788) T) ((-511 . -791) T) ((-510 . -790) T) ((-103 . -309) 133099) ((-222 . -102) 133077) ((-689 . -1093) T) ((-694 . -172) T) ((-868 . -643) 133029) ((-65 . -384) T) ((-275 . -610) 133011) ((-65 . -395) T) ((-948 . -377) 132995) ((-866 . -290) T) ((-50 . -610) 132977) ((-995 . -38) 132925) ((-580 . -610) 132907) ((-481 . -377) 132891) ((-580 . -611) 132873) ((-518 . -610) 132855) ((-906 . -1276) 132842) ((-867 . -1208) T) ((-696 . -452) T) ((-495 . -514) 132808) ((-487 . -363) T) ((-355 . -368) 132787) ((-352 . -368) 132766) ((-344 . -368) 132745) ((-710 . -722) T) ((-217 . -363) T) ((-116 . -452) T) ((-1280 . -1271) 132729) ((-867 . -880) 132706) ((-867 . -882) NIL) ((-960 . -846) 132605) ((-811 . -846) 132556) ((-649 . -651) 132540) ((-1194 . -34) T) ((-171 . -610) 132522) ((-1106 . -21) 132432) ((-1106 . -25) 132283) ((-867 . -1034) 132260) ((-948 . -896) 132241) ((-1230 . -47) 132218) ((-906 . -368) T) ((-59 . -646) 132202) ((-516 . -646) 132186) ((-481 . -896) 132163) ((-71 . -441) T) ((-71 . -395) T) ((-496 . -646) 132147) ((-59 . -373) 132131) ((-620 . -172) T) ((-516 . -373) 132115) ((-496 . -373) 132099) ((-823 . -704) 132083) ((-1165 . -307) 132062) ((-1171 . -131) T) ((-117 . -172) T) ((-1139 . -309) 132000) ((-169 . -1208) T) ((-632 . -740) 131984) ((-604 . -740) 131968) ((-1269 . -131) T) ((-1242 . -916) 131947) ((-1221 . -916) 131926) ((-1221 . -816) NIL) ((-689 . -713) 131876) ((-1220 . -905) 131829) ((-1020 . -1093) T) ((-867 . -377) 131806) ((-867 . -338) 131783) ((-901 . -1105) T) ((-169 . -880) 131767) ((-169 . -882) 131692) ((-487 . -1105) T) ((-354 . -1093) T) ((-217 . -1105) T) ((-76 . -441) T) ((-76 . -395) T) ((-169 . -1034) 131588) ((-319 . -846) T) ((-1257 . -514) 131521) ((-1241 . -643) 131418) ((-1220 . -643) 131288) ((-868 . -790) 131267) ((-868 . -787) 131246) ((-868 . -722) T) ((-487 . -23) T) ((-223 . -610) 131228) ((-174 . -452) T) ((-222 . -309) 131166) ((-86 . -441) T) ((-86 . -395) T) ((-217 . -23) T) ((-1281 . -1274) 131145) ((-579 . -290) T) ((-563 . -290) T) ((-672 . -1034) 131129) ((-495 . -290) T) ((-136 . -470) 131084) ((-48 . -1093) T) ((-708 . -231) 131068) ((-867 . -896) NIL) ((-1230 . -882) NIL) ((-885 . -102) T) ((-881 . -102) T) ((-388 . -1093) T) ((-169 . -377) 131052) ((-169 . -338) 131036) ((-1230 . -1034) 130916) ((-851 . -1034) 130812) ((-1135 . -102) T) ((-648 . -131) T) ((-117 . -514) 130720) ((-657 . -788) 130699) ((-657 . -791) 130678) ((-570 . -1034) 130660) ((-294 . -1264) 130630) ((-862 . -102) T) ((-959 . -555) 130609) ((-1202 . -1051) 130492) ((-482 . -636) 130398) ((-900 . -1093) T) ((-1020 . -713) 130335) ((-707 . -1051) 130300) ((-614 . -102) T) ((-599 . -34) T) ((-1140 . -1208) T) ((-1202 . -111) 130169) ((-474 . -643) 130066) ((-354 . -713) 130011) ((-169 . -896) 129970) ((-694 . -290) T) ((-689 . -172) T) ((-707 . -111) 129926) ((-1285 . -1052) T) ((-1230 . -377) 129910) ((-418 . -1212) 129888) ((-1111 . -610) 129870) ((-313 . -844) NIL) ((-418 . -555) T) ((-225 . -307) T) ((-1220 . -787) 129823) ((-1220 . -790) 129776) ((-1241 . -722) T) ((-1220 . -722) T) ((-48 . -713) 129741) ((-225 . -1018) T) ((-351 . -1264) 129718) ((-1243 . -411) 129684) ((-714 . -722) T) ((-1230 . -896) 129627) ((-1202 . -613) 129509) ((-112 . -610) 129491) ((-112 . -611) 129473) ((-714 . -473) T) ((-707 . -613) 129423) ((-482 . -21) 129333) ((-127 . -489) 129317) ((-121 . -489) 129301) ((-482 . -25) 129152) ((-620 . -290) T) ((-584 . -1051) 129127) ((-437 . -1093) T) ((-1056 . -307) T) ((-117 . -290) T) ((-1097 . -102) T) ((-999 . -102) T) ((-584 . -111) 129095) ((-1135 . -309) 129033) ((-1202 . -1045) T) ((-1056 . -1018) T) ((-66 . -1208) T) ((-1049 . -25) T) ((-1049 . -21) T) ((-707 . -1045) T) ((-385 . -21) T) ((-385 . -25) T) ((-689 . -514) NIL) ((-1020 . -172) T) ((-707 . -243) T) ((-1056 . -545) T) ((-506 . -102) T) ((-502 . -102) T) ((-354 . -172) T) ((-343 . -610) 129015) ((-394 . -610) 128997) ((-474 . -722) T) ((-1113 . -844) T) ((-888 . -1034) 128965) ((-108 . -846) T) ((-653 . -1051) 128949) ((-487 . -131) T) ((-1243 . -1052) T) ((-217 . -131) T) ((-1149 . -102) 128927) ((-99 . -1093) T) ((-245 . -661) 128911) ((-245 . -646) 128895) ((-653 . -111) 128874) ((-584 . -613) 128858) ((-316 . -411) 128842) ((-245 . -373) 128826) ((-1152 . -235) 128773) ((-995 . -231) 128757) ((-74 . -1208) T) ((-48 . -172) T) ((-696 . -387) T) ((-696 . -143) T) ((-1280 . -102) T) ((-1188 . -613) 128739) ((-1080 . -1051) 128582) ((-264 . -905) 128561) ((-247 . -905) 128540) ((-778 . -1051) 128363) ((-776 . -1051) 128206) ((-605 . -1208) T) ((-1157 . -610) 128188) ((-1080 . -111) 128017) ((-1042 . -102) T) ((-475 . -1208) T) ((-461 . -1051) 127988) ((-454 . -1051) 127831) ((-659 . -643) 127815) ((-867 . -307) T) ((-778 . -111) 127624) ((-776 . -111) 127453) ((-355 . -643) 127405) ((-352 . -643) 127357) ((-344 . -643) 127309) ((-264 . -643) 127234) ((-247 . -643) 127159) ((-1151 . -846) T) ((-1081 . -1034) 127143) ((-461 . -111) 127104) ((-454 . -111) 126933) ((-1069 . -1034) 126910) ((-996 . -34) T) ((-962 . -610) 126892) ((-954 . -1208) T) ((-126 . -1006) 126876) ((-959 . -1105) T) ((-867 . -1018) NIL) ((-731 . -1105) T) ((-711 . -1105) T) ((-653 . -613) 126794) ((-1257 . -489) 126778) ((-1135 . -38) 126738) ((-959 . -23) T) ((-861 . -1093) T) ((-839 . -102) T) ((-813 . -21) T) ((-813 . -25) T) ((-731 . -23) T) ((-711 . -23) T) ((-110 . -656) T) ((-906 . -643) 126703) ((-580 . -1051) 126668) ((-518 . -1051) 126613) ((-227 . -57) 126571) ((-453 . -23) T) ((-407 . -102) T) ((-263 . -102) T) ((-689 . -290) T) ((-862 . -38) 126541) ((-580 . -111) 126497) ((-518 . -111) 126426) ((-1080 . -613) 126162) ((-418 . -1105) T) ((-316 . -1052) 126052) ((-313 . -1052) T) ((-128 . -1208) T) ((-778 . -613) 125800) ((-776 . -613) 125566) ((-653 . -1045) T) ((-1285 . -1093) T) ((-454 . -613) 125351) ((-169 . -307) 125282) ((-418 . -23) T) ((-40 . -610) 125264) ((-40 . -611) 125248) ((-108 . -988) 125230) ((-116 . -865) 125214) ((-644 . -613) 125198) ((-48 . -514) 125164) ((-1194 . -1006) 125148) ((-1174 . -610) 125115) ((-1181 . -34) T) ((-950 . -610) 125081) ((-917 . -610) 125063) ((-1106 . -846) 125014) ((-767 . -610) 124996) ((-667 . -610) 124978) ((-1149 . -309) 124916) ((-479 . -34) T) ((-1085 . -1208) T) ((-477 . -452) T) ((-1134 . -34) T) ((-1080 . -1045) T) ((-50 . -613) 124885) ((-778 . -1045) T) ((-776 . -1045) T) ((-642 . -235) 124869) ((-629 . -235) 124815) ((-580 . -613) 124765) ((-518 . -613) 124695) ((-1230 . -307) 124674) ((-1080 . -326) 124635) ((-454 . -1045) T) ((-1171 . -21) T) ((-1080 . -233) 124614) ((-778 . -326) 124591) ((-778 . -233) T) ((-776 . -326) 124563) ((-727 . -1212) 124542) ((-327 . -646) 124526) ((-1171 . -25) T) ((-59 . -34) T) ((-519 . -34) T) ((-516 . -34) T) ((-454 . -326) 124505) ((-327 . -373) 124489) ((-497 . -34) T) ((-496 . -34) T) ((-999 . -1144) NIL) ((-727 . -555) 124420) ((-632 . -102) T) ((-604 . -102) T) ((-355 . -722) T) ((-352 . -722) T) ((-344 . -722) T) ((-264 . -722) T) ((-247 . -722) T) ((-1042 . -309) 124328) ((-897 . -1093) 124306) ((-50 . -1045) T) ((-1269 . -21) T) ((-1269 . -25) T) ((-1167 . -555) 124285) ((-1166 . -1212) 124264) ((-580 . -1045) T) ((-518 . -1045) T) ((-1160 . -1212) 124243) ((-361 . -1034) 124227) ((-322 . -1034) 124211) ((-1020 . -290) T) ((-379 . -882) 124193) ((-1166 . -555) 124144) ((-1160 . -555) 124095) ((-999 . -38) 124040) ((-795 . -1105) T) ((-906 . -722) T) ((-580 . -243) T) ((-580 . -233) T) ((-518 . -233) T) ((-518 . -243) T) ((-1119 . -555) 124019) ((-354 . -290) T) ((-642 . -690) 124003) ((-379 . -1034) 123963) ((-1113 . -1052) T) ((-103 . -125) 123947) ((-795 . -23) T) ((-1279 . -1274) 123923) ((-1257 . -286) 123900) ((-407 . -309) 123865) ((-1277 . -1274) 123844) ((-1243 . -1093) T) ((-866 . -610) 123826) ((-832 . -1034) 123795) ((-203 . -783) T) ((-202 . -783) T) ((-201 . -783) T) ((-200 . -783) T) ((-199 . -783) T) ((-198 . -783) T) ((-197 . -783) T) ((-196 . -783) T) ((-195 . -783) T) ((-194 . -783) T) ((-547 . -610) 123777) ((-495 . -998) T) ((-274 . -835) T) ((-273 . -835) T) ((-272 . -835) T) ((-271 . -835) T) ((-48 . -290) T) ((-270 . -835) T) ((-269 . -835) T) ((-268 . -835) T) ((-193 . -783) T) ((-609 . -846) T) ((-649 . -411) 123761) ((-223 . -613) 123723) ((-110 . -846) T) ((-648 . -21) T) ((-648 . -25) T) ((-1280 . -38) 123693) ((-117 . -286) 123644) ((-1257 . -19) 123628) ((-1257 . -601) 123605) ((-1270 . -1093) T) ((-1070 . -1093) T) ((-983 . -1093) T) ((-959 . -131) T) ((-733 . -1093) T) ((-731 . -131) T) ((-711 . -131) T) ((-511 . -789) T) ((-407 . -1144) 123583) ((-453 . -131) T) ((-511 . -790) T) ((-223 . -1045) T) ((-294 . -102) 123365) ((-141 . -1093) T) ((-694 . -998) T) ((-91 . -1208) T) ((-127 . -610) 123297) ((-121 . -610) 123229) ((-1285 . -172) T) ((-1166 . -363) 123208) ((-1160 . -363) 123187) ((-316 . -1093) T) ((-418 . -131) T) ((-313 . -1093) T) ((-407 . -38) 123139) ((-1126 . -102) T) ((-1243 . -713) 123031) ((-649 . -1052) T) ((-1128 . -1252) T) ((-319 . -145) 123010) ((-319 . -147) 122989) ((-139 . -1093) T) ((-136 . -1093) T) ((-114 . -1093) T) ((-854 . -102) T) ((-579 . -610) 122971) ((-563 . -611) 122870) ((-563 . -610) 122852) ((-495 . -610) 122834) ((-495 . -611) 122779) ((-485 . -23) T) ((-482 . -846) 122730) ((-487 . -636) 122712) ((-961 . -610) 122694) ((-217 . -636) 122676) ((-225 . -404) T) ((-657 . -643) 122660) ((-55 . -610) 122642) ((-1165 . -916) 122621) ((-727 . -1105) T) ((-351 . -102) T) ((-1207 . -1076) T) ((-1113 . -840) T) ((-814 . -846) T) ((-727 . -23) T) ((-343 . -1051) 122566) ((-1151 . -1150) T) ((-1140 . -107) 122550) ((-1167 . -1105) T) ((-1166 . -1105) T) ((-515 . -1034) 122534) ((-1160 . -1105) T) ((-1119 . -1105) T) ((-343 . -111) 122463) ((-1000 . -1212) T) ((-126 . -1208) T) ((-910 . -1212) T) ((-689 . -286) NIL) ((-1258 . -610) 122445) ((-1167 . -23) T) ((-1166 . -23) T) ((-1160 . -23) T) ((-1000 . -555) T) ((-1135 . -231) 122429) ((-910 . -555) T) ((-1119 . -23) T) ((-248 . -610) 122411) ((-1068 . -1093) T) ((-795 . -131) T) ((-706 . -610) 122393) ((-316 . -713) 122303) ((-313 . -713) 122232) ((-694 . -610) 122214) ((-694 . -611) 122159) ((-407 . -400) 122143) ((-438 . -1093) T) ((-487 . -25) T) ((-487 . -21) T) ((-1113 . -1093) T) ((-217 . -25) T) ((-217 . -21) T) ((-708 . -411) 122127) ((-710 . -1034) 122096) ((-1257 . -610) 122008) ((-1257 . -611) 121969) ((-1243 . -172) T) ((-245 . -34) T) ((-343 . -613) 121899) ((-394 . -613) 121881) ((-922 . -970) T) ((-1194 . -1208) T) ((-657 . -787) 121860) ((-657 . -790) 121839) ((-398 . -395) T) ((-523 . -102) 121817) ((-1031 . -1093) T) ((-222 . -991) 121801) ((-504 . -102) T) ((-620 . -610) 121783) ((-45 . -846) NIL) ((-620 . -611) 121760) ((-1031 . -607) 121735) ((-897 . -514) 121668) ((-343 . -1045) T) ((-117 . -611) NIL) ((-117 . -610) 121650) ((-868 . -1208) T) ((-665 . -417) 121634) ((-665 . -1116) 121579) ((-500 . -151) 121561) ((-343 . -233) T) ((-343 . -243) T) ((-40 . -1051) 121506) ((-868 . -880) 121490) ((-868 . -882) 121415) ((-708 . -1052) T) ((-689 . -998) NIL) ((-3 . |UnionCategory|) T) ((-1241 . -47) 121385) ((-1220 . -47) 121362) ((-1134 . -1006) 121333) ((-225 . -916) T) ((-40 . -111) 121262) ((-868 . -1034) 121126) ((-1113 . -713) 121113) ((-1098 . -610) 121095) ((-1073 . -147) 121074) ((-1073 . -145) 121025) ((-1000 . -363) T) ((-319 . -1196) 120991) ((-379 . -307) T) ((-319 . -1193) 120957) ((-316 . -172) 120936) ((-313 . -172) T) ((-999 . -231) 120913) ((-910 . -363) T) ((-580 . -1276) 120900) ((-518 . -1276) 120877) ((-359 . -147) 120856) ((-359 . -145) 120807) ((-353 . -147) 120786) ((-353 . -145) 120737) ((-605 . -1184) 120713) ((-345 . -147) 120692) ((-345 . -145) 120643) ((-319 . -35) 120609) ((-475 . -1184) 120588) ((0 . |EnumerationCategory|) T) ((-319 . -95) 120554) ((-379 . -1018) T) ((-108 . -147) T) ((-108 . -145) NIL) ((-45 . -235) 120504) ((-649 . -1093) T) ((-605 . -107) 120451) ((-485 . -131) T) ((-475 . -107) 120401) ((-240 . -1105) 120311) ((-868 . -377) 120295) ((-868 . -338) 120279) ((-240 . -23) 120149) ((-40 . -613) 120079) ((-1056 . -916) T) ((-1056 . -816) T) ((-580 . -368) T) ((-518 . -368) T) ((-351 . -1144) T) ((-327 . -34) T) ((-44 . -417) 120063) ((-1174 . -613) 119998) ((-869 . -1208) T) ((-390 . -740) 119982) ((-1270 . -514) 119915) ((-727 . -131) T) ((-667 . -613) 119899) ((-1249 . -555) 119878) ((-1242 . -1212) 119857) ((-1242 . -555) 119808) ((-1221 . -1212) 119787) ((-311 . -1076) T) ((-1221 . -555) 119738) ((-733 . -514) 119671) ((-1220 . -1208) 119650) ((-1220 . -882) 119523) ((-889 . -1093) T) ((-144 . -840) T) ((-1220 . -880) 119493) ((-686 . -610) 119475) ((-1167 . -131) T) ((-523 . -309) 119413) ((-1166 . -131) T) ((-141 . -514) NIL) ((-1160 . -131) T) ((-1119 . -131) T) ((-1020 . -998) T) ((-1000 . -23) T) ((-351 . -38) 119378) ((-1000 . -1105) T) ((-910 . -1105) T) ((-82 . -610) 119360) ((-40 . -1045) T) ((-866 . -1051) 119347) ((-999 . -349) NIL) ((-868 . -896) 119306) ((-696 . -102) T) ((-967 . -23) T) ((-599 . -1208) T) ((-910 . -23) T) ((-866 . -111) 119291) ((-427 . -1105) T) ((-213 . -1093) T) ((-474 . -47) 119261) ((-134 . -102) T) ((-40 . -233) 119233) ((-40 . -243) T) ((-116 . -102) T) ((-594 . -555) 119212) ((-593 . -555) 119191) ((-689 . -610) 119173) ((-689 . -611) 119081) ((-316 . -514) 119047) ((-313 . -514) 118939) ((-1241 . -1034) 118923) ((-1220 . -1034) 118709) ((-995 . -411) 118693) ((-427 . -23) T) ((-1113 . -172) T) ((-1243 . -290) T) ((-649 . -713) 118663) ((-144 . -1093) T) ((-48 . -998) T) ((-407 . -231) 118647) ((-295 . -235) 118597) ((-867 . -916) T) ((-867 . -816) NIL) ((-866 . -613) 118569) ((-860 . -846) T) ((-1220 . -338) 118539) ((-1220 . -377) 118509) ((-222 . -1114) 118493) ((-1257 . -288) 118470) ((-1202 . -643) 118395) ((-959 . -21) T) ((-959 . -25) T) ((-731 . -21) T) ((-731 . -25) T) ((-711 . -21) T) ((-711 . -25) T) ((-707 . -643) 118360) ((-453 . -21) T) ((-453 . -25) T) ((-339 . -102) T) ((-174 . -102) T) ((-995 . -1052) T) ((-866 . -1045) T) ((-770 . -102) T) ((-1242 . -363) 118339) ((-1241 . -896) 118245) ((-1221 . -363) 118224) ((-1220 . -896) 118075) ((-1020 . -610) 118057) ((-407 . -824) 118010) ((-1167 . -493) 117976) ((-169 . -916) 117907) ((-1166 . -493) 117873) ((-1160 . -493) 117839) ((-708 . -1093) T) ((-1119 . -493) 117805) ((-579 . -1051) 117792) ((-563 . -1051) 117779) ((-495 . -1051) 117744) ((-316 . -290) 117723) ((-313 . -290) T) ((-354 . -610) 117705) ((-418 . -25) T) ((-418 . -21) T) ((-99 . -286) 117684) ((-579 . -111) 117669) ((-563 . -111) 117654) ((-495 . -111) 117610) ((-1169 . -882) 117577) ((-897 . -489) 117561) ((-48 . -610) 117543) ((-48 . -611) 117488) ((-240 . -131) 117358) ((-1230 . -916) 117337) ((-812 . -1212) 117316) ((-388 . -490) 117297) ((-1031 . -514) 117141) ((-388 . -610) 117107) ((-812 . -555) 117038) ((-584 . -643) 117013) ((-264 . -47) 116985) ((-247 . -47) 116942) ((-531 . -509) 116919) ((-579 . -613) 116891) ((-563 . -613) 116863) ((-495 . -613) 116796) ((-996 . -1208) T) ((-694 . -1051) 116761) ((-1249 . -23) T) ((-1249 . -1105) T) ((-1242 . -1105) T) ((-1221 . -1105) T) ((-999 . -370) 116733) ((-112 . -368) T) ((-474 . -896) 116639) ((-1242 . -23) T) ((-900 . -610) 116621) ((-55 . -613) 116603) ((-91 . -107) 116587) ((-1202 . -722) T) ((-901 . -846) 116538) ((-696 . -1144) T) ((-694 . -111) 116494) ((-1221 . -23) T) ((-594 . -1105) T) ((-593 . -1105) T) ((-708 . -713) 116323) ((-707 . -722) T) ((-1113 . -290) T) ((-1000 . -131) T) ((-487 . -846) T) ((-967 . -131) T) ((-910 . -131) T) ((-795 . -25) T) ((-217 . -846) T) ((-795 . -21) T) ((-579 . -1045) T) ((-563 . -1045) T) ((-495 . -1045) T) ((-594 . -23) T) ((-343 . -1276) 116300) ((-319 . -452) 116279) ((-339 . -309) 116266) ((-593 . -23) T) ((-427 . -131) T) ((-653 . -643) 116240) ((-245 . -1006) 116224) ((-868 . -307) T) ((-1281 . -1271) 116208) ((-767 . -788) T) ((-767 . -791) T) ((-696 . -38) 116195) ((-563 . -233) T) ((-495 . -243) T) ((-495 . -233) T) ((-1143 . -235) 116145) ((-1080 . -905) 116124) ((-116 . -38) 116111) ((-209 . -796) T) ((-208 . -796) T) ((-207 . -796) T) ((-206 . -796) T) ((-868 . -1018) 116089) ((-1270 . -489) 116073) ((-778 . -905) 116052) ((-776 . -905) 116031) ((-1181 . -1208) T) ((-454 . -905) 116010) ((-733 . -489) 115994) ((-1080 . -643) 115919) ((-694 . -613) 115854) ((-778 . -643) 115779) ((-620 . -1051) 115766) ((-479 . -1208) T) ((-343 . -368) T) ((-141 . -489) 115748) ((-776 . -643) 115673) ((-1134 . -1208) T) ((-548 . -846) T) ((-461 . -643) 115644) ((-264 . -882) 115503) ((-247 . -882) NIL) ((-117 . -1051) 115448) ((-454 . -643) 115373) ((-659 . -1034) 115350) ((-620 . -111) 115335) ((-355 . -1034) 115319) ((-352 . -1034) 115303) ((-344 . -1034) 115287) ((-264 . -1034) 115131) ((-247 . -1034) 115007) ((-117 . -111) 114936) ((-59 . -1208) T) ((-519 . -1208) T) ((-516 . -1208) T) ((-497 . -1208) T) ((-496 . -1208) T) ((-437 . -610) 114918) ((-434 . -610) 114900) ((-3 . -102) T) ((-1023 . -1201) 114869) ((-829 . -102) T) ((-684 . -57) 114827) ((-694 . -1045) T) ((-50 . -643) 114801) ((-289 . -452) T) ((-476 . -1201) 114770) ((0 . -102) T) ((-580 . -643) 114735) ((-518 . -643) 114680) ((-49 . -102) T) ((-906 . -1034) 114667) ((-694 . -243) T) ((-1073 . -409) 114646) ((-727 . -636) 114594) ((-995 . -1093) T) ((-708 . -172) 114485) ((-620 . -613) 114380) ((-487 . -988) 114362) ((-264 . -377) 114346) ((-247 . -377) 114330) ((-399 . -1093) T) ((-1022 . -102) 114308) ((-339 . -38) 114292) ((-217 . -988) 114274) ((-117 . -613) 114204) ((-174 . -38) 114136) ((-1241 . -307) 114115) ((-1220 . -307) 114094) ((-653 . -722) T) ((-99 . -610) 114076) ((-1160 . -636) 114028) ((-485 . -25) T) ((-485 . -21) T) ((-1220 . -1018) 113980) ((-620 . -1045) T) ((-379 . -404) T) ((-390 . -102) T) ((-1098 . -615) 113895) ((-264 . -896) 113841) ((-247 . -896) 113818) ((-117 . -1045) T) ((-812 . -1105) T) ((-1080 . -722) T) ((-620 . -233) 113797) ((-618 . -102) T) ((-778 . -722) T) ((-776 . -722) T) ((-413 . -1105) T) ((-117 . -243) T) ((-40 . -368) NIL) ((-117 . -233) NIL) ((-1213 . -846) T) ((-454 . -722) T) ((-812 . -23) T) ((-727 . -25) T) ((-727 . -21) T) ((-698 . -846) T) ((-1070 . -286) 113776) ((-78 . -396) T) ((-78 . -395) T) ((-533 . -763) 113758) ((-689 . -1051) 113708) ((-1249 . -131) T) ((-1242 . -131) T) ((-1221 . -131) T) ((-1167 . -25) T) ((-1135 . -411) 113692) ((-632 . -367) 113624) ((-604 . -367) 113556) ((-1149 . -1142) 113540) ((-103 . -1093) 113518) ((-1167 . -21) T) ((-1166 . -21) T) ((-861 . -610) 113500) ((-995 . -713) 113448) ((-223 . -643) 113415) ((-689 . -111) 113349) ((-50 . -722) T) ((-1166 . -25) T) ((-351 . -349) T) ((-1160 . -21) T) ((-1073 . -452) 113300) ((-1160 . -25) T) ((-708 . -514) 113247) ((-580 . -722) T) ((-518 . -722) T) ((-1119 . -21) T) ((-1119 . -25) T) ((-594 . -131) T) ((-593 . -131) T) ((-359 . -452) T) ((-353 . -452) T) ((-345 . -452) T) ((-474 . -307) 113226) ((-1215 . -102) T) ((-313 . -286) 113161) ((-108 . -452) T) ((-79 . -441) T) ((-79 . -395) T) ((-477 . -102) T) ((-686 . -613) 113145) ((-1285 . -610) 113127) ((-1285 . -611) 113109) ((-1073 . -402) 113088) ((-1031 . -489) 113019) ((-563 . -791) T) ((-563 . -788) T) ((-1057 . -235) 112965) ((-359 . -402) 112916) ((-353 . -402) 112867) ((-345 . -402) 112818) ((-1272 . -1105) T) ((-689 . -613) 112753) ((-1272 . -23) T) ((-1259 . -102) T) ((-175 . -610) 112735) ((-1135 . -1052) T) ((-547 . -368) T) ((-665 . -740) 112719) ((-1171 . -145) 112698) ((-1171 . -147) 112677) ((-1139 . -1093) T) ((-1139 . -1065) 112646) ((-69 . -1208) T) ((-1020 . -1051) 112583) ((-862 . -1052) T) ((-240 . -636) 112489) ((-689 . -1045) T) ((-354 . -1051) 112434) ((-61 . -1208) T) ((-1020 . -111) 112350) ((-897 . -610) 112261) ((-689 . -243) T) ((-689 . -233) NIL) ((-839 . -844) 112240) ((-694 . -791) T) ((-694 . -788) T) ((-999 . -411) 112217) ((-354 . -111) 112146) ((-379 . -916) T) ((-407 . -844) 112125) ((-708 . -290) 112036) ((-223 . -722) T) ((-1249 . -493) 112002) ((-1242 . -493) 111968) ((-1221 . -493) 111934) ((-577 . -1093) T) ((-316 . -998) 111913) ((-222 . -1093) 111891) ((-319 . -969) 111853) ((-105 . -102) T) ((-48 . -1051) 111818) ((-1281 . -102) T) ((-381 . -102) T) ((-48 . -111) 111774) ((-1000 . -636) 111756) ((-1243 . -610) 111738) ((-531 . -102) T) ((-500 . -102) T) ((-1126 . -1127) 111722) ((-152 . -1264) 111706) ((-245 . -1208) T) ((-1207 . -102) T) ((-1020 . -613) 111643) ((-1165 . -1212) 111622) ((-354 . -613) 111552) ((-1118 . -1212) 111531) ((-240 . -21) 111441) ((-240 . -25) 111292) ((-127 . -119) 111276) ((-121 . -119) 111260) ((-44 . -740) 111244) ((-1165 . -555) 111155) ((-1118 . -555) 111086) ((-1031 . -286) 111061) ((-1159 . -1076) T) ((-990 . -1076) T) ((-812 . -131) T) ((-117 . -791) NIL) ((-117 . -788) NIL) ((-355 . -307) T) ((-352 . -307) T) ((-344 . -307) T) ((-251 . -1105) 110971) ((-250 . -1105) 110881) ((-1020 . -1045) T) ((-999 . -1052) T) ((-48 . -613) 110814) ((-343 . -643) 110759) ((-618 . -38) 110743) ((-1270 . -610) 110705) ((-1270 . -611) 110666) ((-1070 . -610) 110648) ((-1020 . -243) T) ((-354 . -1045) T) ((-811 . -1264) 110618) ((-251 . -23) T) ((-250 . -23) T) ((-983 . -610) 110600) ((-733 . -611) 110561) ((-733 . -610) 110543) ((-795 . -846) 110522) ((-1152 . -151) 110469) ((-995 . -514) 110381) ((-354 . -233) T) ((-354 . -243) T) ((-388 . -613) 110362) ((-1000 . -25) T) ((-141 . -610) 110344) ((-141 . -611) 110303) ((-906 . -307) T) ((-1000 . -21) T) ((-967 . -25) T) ((-910 . -21) T) ((-910 . -25) T) ((-427 . -21) T) ((-427 . -25) T) ((-839 . -411) 110287) ((-48 . -1045) T) ((-1279 . -1271) 110271) ((-1277 . -1271) 110255) ((-1031 . -601) 110230) ((-316 . -611) 110091) ((-316 . -610) 110073) ((-313 . -611) NIL) ((-313 . -610) 110055) ((-48 . -243) T) ((-48 . -233) T) ((-649 . -286) 110016) ((-549 . -235) 109966) ((-139 . -610) 109933) ((-136 . -610) 109915) ((-114 . -610) 109897) ((-477 . -38) 109862) ((-1281 . -1278) 109841) ((-1272 . -131) T) ((-1280 . -1052) T) ((-1075 . -102) T) ((-88 . -1208) T) ((-500 . -309) NIL) ((-996 . -107) 109825) ((-885 . -1093) T) ((-881 . -1093) T) ((-1257 . -646) 109809) ((-1257 . -373) 109793) ((-327 . -1208) T) ((-591 . -846) T) ((-1135 . -1093) T) ((-1135 . -1048) 109733) ((-103 . -514) 109666) ((-923 . -610) 109648) ((-343 . -722) T) ((-30 . -610) 109630) ((-862 . -1093) T) ((-839 . -1052) 109609) ((-40 . -643) 109554) ((-225 . -1212) T) ((-407 . -1052) T) ((-1151 . -151) 109536) ((-995 . -290) 109487) ((-614 . -1093) T) ((-225 . -555) T) ((-319 . -1238) 109471) ((-319 . -1235) 109441) ((-1181 . -1184) 109420) ((-1068 . -610) 109402) ((-642 . -151) 109386) ((-629 . -151) 109332) ((-1181 . -107) 109282) ((-479 . -1184) 109261) ((-487 . -147) T) ((-487 . -145) NIL) ((-1113 . -611) 109176) ((-438 . -610) 109158) ((-217 . -147) T) ((-217 . -145) NIL) ((-1113 . -610) 109140) ((-129 . -102) T) ((-52 . -102) T) ((-1221 . -636) 109092) ((-479 . -107) 109042) ((-989 . -23) T) ((-1281 . -38) 109012) ((-1165 . -1105) T) ((-1118 . -1105) T) ((-1056 . -1212) T) ((-311 . -102) T) ((-850 . -1105) T) ((-948 . -1212) 108991) ((-481 . -1212) 108970) ((-727 . -846) 108949) ((-1056 . -555) T) ((-948 . -555) 108880) ((-1165 . -23) T) ((-1118 . -23) T) ((-850 . -23) T) ((-481 . -555) 108811) ((-1135 . -713) 108743) ((-1139 . -514) 108676) ((-1031 . -611) NIL) ((-1031 . -610) 108658) ((-96 . -1076) T) ((-862 . -713) 108628) ((-1202 . -47) 108597) ((-251 . -131) T) ((-250 . -131) T) ((-1097 . -1093) T) ((-999 . -1093) T) ((-62 . -610) 108579) ((-1160 . -846) NIL) ((-1020 . -788) T) ((-1020 . -791) T) ((-1285 . -1051) 108566) ((-1285 . -111) 108551) ((-866 . -643) 108538) ((-1249 . -25) T) ((-1249 . -21) T) ((-1242 . -21) T) ((-1242 . -25) T) ((-1221 . -21) T) ((-1221 . -25) T) ((-1023 . -151) 108522) ((-868 . -816) 108501) ((-868 . -916) T) ((-708 . -286) 108428) ((-594 . -21) T) ((-594 . -25) T) ((-593 . -21) T) ((-40 . -722) T) ((-222 . -514) 108361) ((-593 . -25) T) ((-476 . -151) 108345) ((-463 . -151) 108329) ((-917 . -790) T) ((-917 . -722) T) ((-767 . -789) T) ((-767 . -790) T) ((-506 . -1093) T) ((-502 . -1093) T) ((-767 . -722) T) ((-225 . -363) T) ((-1149 . -1093) 108307) ((-867 . -1212) T) ((-649 . -610) 108289) ((-867 . -555) T) ((-689 . -368) NIL) ((-1285 . -613) 108271) ((-359 . -1264) 108255) ((-665 . -102) T) ((-353 . -1264) 108239) ((-345 . -1264) 108223) ((-1280 . -1093) T) ((-520 . -846) 108202) ((-813 . -452) 108181) ((-1042 . -1093) T) ((-1042 . -1065) 108110) ((-1023 . -972) 108079) ((-815 . -1105) T) ((-999 . -713) 108024) ((-386 . -1105) T) ((-476 . -972) 107993) ((-463 . -972) 107962) ((-110 . -151) 107944) ((-73 . -610) 107926) ((-889 . -610) 107908) ((-1073 . -720) 107887) ((-1285 . -1045) T) ((-812 . -636) 107835) ((-294 . -1052) 107777) ((-169 . -1212) 107682) ((-225 . -1105) T) ((-324 . -23) T) ((-1160 . -988) 107634) ((-839 . -1093) T) ((-1243 . -1051) 107539) ((-1119 . -736) 107518) ((-1241 . -916) 107497) ((-1220 . -916) 107476) ((-866 . -722) T) ((-169 . -555) 107387) ((-579 . -643) 107374) ((-563 . -643) 107361) ((-407 . -1093) T) ((-263 . -1093) T) ((-213 . -610) 107343) ((-495 . -643) 107308) ((-225 . -23) T) ((-1220 . -816) 107261) ((-1279 . -102) T) ((-354 . -1276) 107238) ((-1277 . -102) T) ((-1243 . -111) 107130) ((-144 . -610) 107112) ((-989 . -131) T) ((-44 . -102) T) ((-240 . -846) 107063) ((-1230 . -1212) 107042) ((-103 . -489) 107026) ((-1280 . -713) 106996) ((-1080 . -47) 106957) ((-1056 . -1105) T) ((-948 . -1105) T) ((-127 . -34) T) ((-121 . -34) T) ((-778 . -47) 106934) ((-776 . -47) 106906) ((-1230 . -555) 106817) ((-354 . -368) T) ((-481 . -1105) T) ((-1165 . -131) T) ((-1118 . -131) T) ((-454 . -47) 106796) ((-867 . -363) T) ((-850 . -131) T) ((-152 . -102) T) ((-1056 . -23) T) ((-948 . -23) T) ((-570 . -555) T) ((-812 . -25) T) ((-812 . -21) T) ((-1135 . -514) 106729) ((-590 . -1076) T) ((-584 . -1034) 106713) ((-1243 . -613) 106587) ((-481 . -23) T) ((-351 . -1052) T) ((-1202 . -896) 106568) ((-665 . -309) 106506) ((-1106 . -1264) 106476) ((-694 . -643) 106441) ((-999 . -172) T) ((-959 . -145) 106420) ((-632 . -1093) T) ((-604 . -1093) T) ((-959 . -147) 106399) ((-1000 . -846) T) ((-731 . -147) 106378) ((-731 . -145) 106357) ((-967 . -846) T) ((-474 . -916) 106336) ((-316 . -1051) 106246) ((-313 . -1051) 106175) ((-995 . -286) 106133) ((-407 . -713) 106085) ((-696 . -844) T) ((-1243 . -1045) T) ((-316 . -111) 105981) ((-313 . -111) 105894) ((-960 . -102) T) ((-811 . -102) 105684) ((-708 . -611) NIL) ((-708 . -610) 105666) ((-653 . -1034) 105562) ((-1243 . -326) 105506) ((-1031 . -288) 105481) ((-579 . -722) T) ((-563 . -790) T) ((-169 . -363) 105432) ((-563 . -787) T) ((-563 . -722) T) ((-495 . -722) T) ((-1139 . -489) 105416) ((-1080 . -882) NIL) ((-867 . -1105) T) ((-117 . -905) NIL) ((-1279 . -1278) 105392) ((-1277 . -1278) 105371) ((-778 . -882) NIL) ((-776 . -882) 105230) ((-1272 . -25) T) ((-1272 . -21) T) ((-1205 . -102) 105208) ((-1099 . -395) T) ((-620 . -643) 105195) ((-454 . -882) NIL) ((-670 . -102) 105173) ((-1080 . -1034) 105000) ((-867 . -23) T) ((-778 . -1034) 104859) ((-776 . -1034) 104716) ((-117 . -643) 104661) ((-454 . -1034) 104537) ((-316 . -613) 104101) ((-313 . -613) 103984) ((-644 . -1034) 103968) ((-624 . -102) T) ((-222 . -489) 103952) ((-1257 . -34) T) ((-136 . -613) 103936) ((-632 . -713) 103920) ((-604 . -713) 103904) ((-665 . -38) 103864) ((-319 . -102) T) ((-85 . -610) 103846) ((-50 . -1034) 103830) ((-1113 . -1051) 103817) ((-1080 . -377) 103801) ((-778 . -377) 103785) ((-694 . -722) T) ((-694 . -790) T) ((-694 . -787) T) ((-580 . -1034) 103772) ((-518 . -1034) 103749) ((-60 . -57) 103711) ((-324 . -131) T) ((-316 . -1045) 103601) ((-313 . -1045) T) ((-169 . -1105) T) ((-776 . -377) 103585) ((-45 . -151) 103535) ((-1000 . -988) 103517) ((-454 . -377) 103501) ((-407 . -172) T) ((-316 . -243) 103480) ((-313 . -243) T) ((-313 . -233) NIL) ((-294 . -1093) 103262) ((-225 . -131) T) ((-1113 . -111) 103247) ((-169 . -23) T) ((-795 . -147) 103226) ((-795 . -145) 103205) ((-251 . -636) 103111) ((-250 . -636) 103017) ((-319 . -284) 102983) ((-1149 . -514) 102916) ((-1126 . -1093) T) ((-225 . -1054) T) ((-811 . -309) 102854) ((-1080 . -896) 102789) ((-778 . -896) 102732) ((-776 . -896) 102716) ((-1279 . -38) 102686) ((-1277 . -38) 102656) ((-1230 . -1105) T) ((-851 . -1105) T) ((-454 . -896) 102633) ((-854 . -1093) T) ((-1230 . -23) T) ((-1113 . -613) 102605) ((-570 . -1105) T) ((-851 . -23) T) ((-620 . -722) T) ((-355 . -916) T) ((-352 . -916) T) ((-289 . -102) T) ((-344 . -916) T) ((-1056 . -131) T) ((-966 . -1076) T) ((-948 . -131) T) ((-117 . -790) NIL) ((-117 . -787) NIL) ((-117 . -722) T) ((-689 . -905) NIL) ((-1042 . -514) 102506) ((-481 . -131) T) ((-570 . -23) T) ((-670 . -309) 102444) ((-632 . -757) T) ((-604 . -757) T) ((-1221 . -846) NIL) ((-999 . -290) T) ((-251 . -21) T) ((-689 . -643) 102394) ((-351 . -1093) T) ((-251 . -25) T) ((-250 . -21) T) ((-250 . -25) T) ((-152 . -38) 102378) ((-2 . -102) T) ((-906 . -916) T) ((-482 . -1264) 102348) ((-223 . -1034) 102325) ((-1113 . -1045) T) ((-707 . -307) T) ((-294 . -713) 102267) ((-696 . -1052) T) ((-487 . -452) T) ((-407 . -514) 102179) ((-217 . -452) T) ((-1113 . -233) T) ((-295 . -151) 102129) ((-995 . -611) 102090) ((-995 . -610) 102072) ((-985 . -610) 102054) ((-116 . -1052) T) ((-649 . -1051) 102038) ((-225 . -493) T) ((-399 . -610) 102020) ((-399 . -611) 101997) ((-1049 . -1264) 101967) ((-649 . -111) 101946) ((-1135 . -489) 101930) ((-811 . -38) 101900) ((-63 . -441) T) ((-63 . -395) T) ((-1152 . -102) T) ((-867 . -131) T) ((-484 . -102) 101878) ((-1285 . -368) T) ((-1073 . -102) T) ((-1055 . -102) T) ((-351 . -713) 101823) ((-727 . -147) 101802) ((-727 . -145) 101781) ((-649 . -613) 101699) ((-1020 . -643) 101636) ((-523 . -1093) 101614) ((-359 . -102) T) ((-353 . -102) T) ((-345 . -102) T) ((-108 . -102) T) ((-504 . -1093) T) ((-354 . -643) 101559) ((-1165 . -636) 101507) ((-1118 . -636) 101455) ((-385 . -509) 101434) ((-829 . -844) 101413) ((-379 . -1212) T) ((-689 . -722) T) ((-339 . -1052) T) ((-1221 . -988) 101365) ((-174 . -1052) T) ((-103 . -610) 101297) ((-1167 . -145) 101276) ((-1167 . -147) 101255) ((-379 . -555) T) ((-1166 . -147) 101234) ((-1166 . -145) 101213) ((-1160 . -145) 101120) ((-407 . -290) T) ((-1160 . -147) 101027) ((-1119 . -147) 101006) ((-1119 . -145) 100985) ((-319 . -38) 100826) ((-169 . -131) T) ((-313 . -791) NIL) ((-313 . -788) NIL) ((-649 . -1045) T) ((-48 . -643) 100791) ((-889 . -613) 100768) ((-1159 . -102) T) ((-990 . -102) T) ((-989 . -21) T) ((-127 . -1006) 100752) ((-121 . -1006) 100736) ((-989 . -25) T) ((-897 . -119) 100720) ((-1151 . -102) T) ((-812 . -846) 100699) ((-1230 . -131) T) ((-1165 . -25) T) ((-1165 . -21) T) ((-851 . -131) T) ((-1118 . -25) T) ((-1118 . -21) T) ((-850 . -25) T) ((-850 . -21) T) ((-778 . -307) 100678) ((-642 . -102) 100656) ((-629 . -102) T) ((-1152 . -309) 100451) ((-570 . -131) T) ((-618 . -844) 100430) ((-1149 . -489) 100414) ((-1143 . -151) 100364) ((-1139 . -610) 100326) ((-1139 . -611) 100287) ((-1020 . -787) T) ((-1020 . -790) T) ((-1020 . -722) T) ((-708 . -1051) 100110) ((-484 . -309) 100048) ((-453 . -417) 100018) ((-351 . -172) T) ((-289 . -38) 100005) ((-274 . -102) T) ((-273 . -102) T) ((-272 . -102) T) ((-271 . -102) T) ((-270 . -102) T) ((-269 . -102) T) ((-343 . -1034) 99982) ((-268 . -102) T) ((-212 . -102) T) ((-211 . -102) T) ((-209 . -102) T) ((-208 . -102) T) ((-207 . -102) T) ((-206 . -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) ((-194 . -102) T) ((-193 . -102) T) ((-354 . -722) T) ((-708 . -111) 99791) ((-665 . -231) 99775) ((-580 . -307) T) ((-518 . -307) T) ((-294 . -514) 99724) ((-108 . -309) NIL) ((-72 . -395) T) ((-1106 . -102) 99514) ((-829 . -411) 99498) ((-1113 . -791) T) ((-1113 . -788) T) ((-696 . -1093) T) ((-577 . -610) 99480) ((-379 . -363) T) ((-169 . -493) 99458) ((-222 . -610) 99390) ((-134 . -1093) T) ((-116 . -1093) T) ((-48 . -722) T) ((-1042 . -489) 99355) ((-141 . -425) 99337) ((-141 . -368) T) ((-1023 . -102) T) ((-512 . -509) 99316) ((-708 . -613) 99072) ((-476 . -102) T) ((-463 . -102) T) ((-1030 . -1105) T) ((-1174 . -1034) 99007) ((-1167 . -35) 98973) ((-1167 . -95) 98939) ((-1167 . -1196) 98905) ((-1167 . -1193) 98871) ((-1151 . -309) NIL) ((-89 . -396) T) ((-89 . -395) T) ((-1073 . -1144) 98850) ((-1166 . -1193) 98816) ((-1166 . -1196) 98782) ((-1030 . -23) T) ((-1166 . -95) 98748) ((-570 . -493) T) ((-1166 . -35) 98714) ((-1160 . -1193) 98680) ((-1160 . -1196) 98646) ((-1160 . -95) 98612) ((-361 . -1105) T) ((-359 . -1144) 98591) ((-353 . -1144) 98570) ((-345 . -1144) 98549) ((-1160 . -35) 98515) ((-1119 . -35) 98481) ((-1119 . -95) 98447) ((-108 . -1144) T) ((-1119 . -1196) 98413) ((-829 . -1052) 98392) ((-642 . -309) 98330) ((-629 . -309) 98181) ((-1119 . -1193) 98147) ((-708 . -1045) T) ((-1056 . -636) 98129) ((-1073 . -38) 97997) ((-948 . -636) 97945) ((-1000 . -147) T) ((-1000 . -145) NIL) ((-379 . -1105) T) ((-324 . -25) T) ((-322 . -23) T) ((-939 . -846) 97924) ((-708 . -326) 97901) ((-481 . -636) 97849) ((-40 . -1034) 97737) ((-708 . -233) T) ((-696 . -713) 97724) ((-339 . -1093) T) ((-174 . -1093) T) ((-331 . -846) T) ((-418 . -452) 97674) ((-379 . -23) T) ((-359 . -38) 97639) ((-353 . -38) 97604) ((-345 . -38) 97569) ((-80 . -441) T) ((-80 . -395) T) ((-225 . -25) T) ((-225 . -21) T) ((-832 . -1105) T) ((-108 . -38) 97519) ((-823 . -1105) T) ((-770 . -1093) T) ((-116 . -713) 97506) ((-667 . -1034) 97490) ((-609 . -102) T) ((-832 . -23) T) ((-823 . -23) T) ((-1149 . -286) 97467) ((-1106 . -309) 97405) ((-1095 . -235) 97389) ((-64 . -396) T) ((-64 . -395) T) ((-110 . -102) T) ((-40 . -377) 97366) ((-96 . -102) T) ((-648 . -848) 97350) ((-1128 . -1076) T) ((-1056 . -21) T) ((-1056 . -25) T) ((-811 . -231) 97319) ((-948 . -25) T) ((-948 . -21) T) ((-618 . -1052) T) ((-1113 . -368) T) ((-481 . -25) T) ((-481 . -21) T) ((-1023 . -309) 97257) ((-885 . -610) 97239) ((-881 . -610) 97221) ((-251 . -846) 97172) ((-250 . -846) 97123) ((-523 . -514) 97056) ((-867 . -636) 97033) ((-476 . -309) 96971) ((-463 . -309) 96909) ((-351 . -290) T) ((-1149 . -1245) 96893) ((-1135 . -610) 96855) ((-1135 . -611) 96816) ((-1133 . -102) T) ((-995 . -1051) 96712) ((-40 . -896) 96664) ((-1149 . -601) 96641) ((-1285 . -643) 96628) ((-862 . -490) 96605) ((-1057 . -151) 96551) ((-868 . -1212) T) ((-995 . -111) 96433) ((-339 . -713) 96417) ((-862 . -610) 96379) ((-174 . -713) 96311) ((-407 . -286) 96269) ((-868 . -555) T) ((-108 . -400) 96251) ((-84 . -384) T) ((-84 . -395) T) ((-696 . -172) T) ((-614 . -610) 96233) ((-99 . -722) T) ((-482 . -102) 96023) ((-99 . -473) T) ((-116 . -172) T) ((-1106 . -38) 95993) ((-169 . -636) 95941) ((-1049 . -102) T) ((-995 . -613) 95831) ((-867 . -25) T) ((-811 . -238) 95810) ((-867 . -21) T) ((-814 . -102) T) ((-414 . -102) T) ((-385 . -102) T) ((-110 . -309) NIL) ((-227 . -102) 95788) ((-127 . -1208) T) ((-121 . -1208) T) ((-1030 . -131) T) ((-665 . -367) 95772) ((-995 . -1045) T) ((-1230 . -636) 95720) ((-1097 . -610) 95702) ((-999 . -610) 95684) ((-515 . -23) T) ((-510 . -23) T) ((-343 . -307) T) ((-508 . -23) T) ((-322 . -131) T) ((-3 . -1093) T) ((-999 . -611) 95668) ((-995 . -243) 95647) ((-995 . -233) 95626) ((-1285 . -722) T) ((-1249 . -145) 95605) ((-829 . -1093) T) ((-1249 . -147) 95584) ((-1242 . -147) 95563) ((-1242 . -145) 95542) ((-1241 . -1212) 95521) ((-1221 . -145) 95428) ((-1221 . -147) 95335) ((-1220 . -1212) 95314) ((-379 . -131) T) ((-563 . -882) 95296) ((0 . -1093) T) ((-174 . -172) T) ((-169 . -21) T) ((-169 . -25) T) ((-49 . -1093) T) ((-1243 . -643) 95201) ((-1241 . -555) 95152) ((-710 . -1105) T) ((-1220 . -555) 95103) ((-563 . -1034) 95085) ((-593 . -147) 95064) ((-593 . -145) 95043) ((-495 . -1034) 94986) ((-1128 . -1130) T) ((-87 . -384) T) ((-87 . -395) T) ((-868 . -363) T) ((-832 . -131) T) ((-823 . -131) T) ((-710 . -23) T) ((-506 . -610) 94952) ((-502 . -610) 94934) ((-1281 . -1052) T) ((-379 . -1054) T) ((-1022 . -1093) 94912) ((-55 . -1034) 94894) ((-897 . -34) T) ((-482 . -309) 94832) ((-590 . -102) T) ((-1149 . -611) 94793) ((-1149 . -610) 94725) ((-1165 . -846) 94704) ((-45 . -102) T) ((-1118 . -846) 94683) ((-813 . -102) T) ((-1230 . -25) T) ((-1230 . -21) T) ((-851 . -25) T) ((-44 . -367) 94667) ((-851 . -21) T) ((-727 . -452) 94618) ((-1280 . -610) 94600) ((-1049 . -309) 94538) ((-666 . -1076) T) ((-603 . -1076) T) ((-390 . -1093) T) ((-570 . -25) T) ((-570 . -21) T) ((-180 . -1076) T) ((-161 . -1076) T) ((-156 . -1076) T) ((-154 . -1076) T) ((-618 . -1093) T) ((-694 . -882) 94520) ((-1257 . -1208) T) ((-227 . -309) 94458) ((-144 . -368) T) ((-1042 . -611) 94400) ((-1042 . -610) 94343) ((-313 . -905) NIL) ((-1215 . -840) T) ((-694 . -1034) 94288) ((-707 . -916) T) ((-474 . -1212) 94267) ((-1166 . -452) 94246) ((-1160 . -452) 94225) ((-330 . -102) T) ((-868 . -1105) T) ((-316 . -643) 94046) ((-313 . -643) 93975) ((-474 . -555) 93926) ((-339 . -514) 93892) ((-549 . -151) 93842) ((-40 . -307) T) ((-839 . -610) 93824) ((-696 . -290) T) ((-868 . -23) T) ((-379 . -493) T) ((-1073 . -231) 93794) ((-512 . -102) T) ((-407 . -611) 93601) ((-407 . -610) 93583) ((-263 . -610) 93565) ((-116 . -290) T) ((-1243 . -722) T) ((-1241 . -363) 93544) ((-1220 . -363) 93523) ((-1270 . -34) T) ((-1215 . -1093) T) ((-117 . -1208) T) ((-108 . -231) 93505) ((-1171 . -102) T) ((-477 . -1093) T) ((-523 . -489) 93489) ((-733 . -34) T) ((-482 . -38) 93459) ((-141 . -34) T) ((-117 . -880) 93436) ((-117 . -882) NIL) ((-620 . -1034) 93319) ((-640 . -846) 93298) ((-1269 . -102) T) ((-295 . -102) T) ((-708 . -368) 93277) ((-117 . -1034) 93254) ((-390 . -713) 93238) ((-618 . -713) 93222) ((-45 . -309) 93026) ((-812 . -145) 93005) ((-812 . -147) 92984) ((-1280 . -382) 92963) ((-815 . -846) T) ((-1259 . -1093) T) ((-1152 . -229) 92910) ((-386 . -846) 92889) ((-1249 . -1196) 92855) ((-1249 . -1193) 92821) ((-1242 . -1193) 92787) ((-515 . -131) T) ((-1242 . -1196) 92753) ((-1221 . -1193) 92719) ((-1221 . -1196) 92685) ((-1249 . -35) 92651) ((-1249 . -95) 92617) ((-632 . -610) 92586) ((-604 . -610) 92555) ((-225 . -846) T) ((-1242 . -95) 92521) ((-1242 . -35) 92487) ((-1241 . -1105) T) ((-1113 . -643) 92474) ((-1221 . -95) 92440) ((-1220 . -1105) T) ((-591 . -151) 92422) ((-1073 . -349) 92401) ((-174 . -290) T) ((-117 . -377) 92378) ((-117 . -338) 92355) ((-1221 . -35) 92321) ((-866 . -307) T) ((-313 . -790) NIL) ((-313 . -787) NIL) ((-316 . -722) 92170) ((-313 . -722) T) ((-474 . -363) 92149) ((-359 . -349) 92128) ((-353 . -349) 92107) ((-345 . -349) 92086) ((-316 . -473) 92065) ((-1241 . -23) T) ((-1220 . -23) T) ((-714 . -1105) T) ((-710 . -131) T) ((-648 . -102) T) ((-477 . -713) 92030) ((-45 . -282) 91980) ((-105 . -1093) T) ((-68 . -610) 91962) ((-966 . -102) T) ((-860 . -102) T) ((-620 . -896) 91921) ((-1281 . -1093) T) ((-381 . -1093) T) ((-1207 . -1093) T) ((-1106 . -231) 91890) ((-82 . -1208) T) ((-1056 . -846) T) ((-948 . -846) 91869) ((-117 . -896) NIL) ((-778 . -916) 91848) ((-709 . -846) T) ((-531 . -1093) T) ((-500 . -1093) T) ((-355 . -1212) T) ((-352 . -1212) T) ((-344 . -1212) T) ((-264 . -1212) 91827) ((-247 . -1212) 91806) ((-533 . -856) T) ((-481 . -846) 91785) ((-1151 . -824) T) ((-1135 . -1051) 91769) ((-390 . -757) T) ((-689 . -1208) T) ((-686 . -1034) 91753) ((-355 . -555) T) ((-352 . -555) T) ((-344 . -555) T) ((-264 . -555) 91684) ((-247 . -555) 91615) ((-525 . -1076) T) ((-1135 . -111) 91594) ((-453 . -740) 91564) ((-862 . -1051) 91534) ((-813 . -38) 91476) ((-689 . -880) 91458) ((-689 . -882) 91440) ((-295 . -309) 91244) ((-906 . -1212) T) ((-665 . -411) 91228) ((-862 . -111) 91193) ((-689 . -1034) 91138) ((-1000 . -452) T) ((-906 . -555) T) ((-533 . -610) 91120) ((-580 . -916) T) ((-474 . -1105) T) ((-518 . -916) T) ((-1149 . -288) 91097) ((-910 . -452) T) ((-65 . -610) 91079) ((-629 . -229) 91025) ((-474 . -23) T) ((-1113 . -790) T) ((-868 . -131) T) ((-1113 . -787) T) ((-1272 . -1274) 91004) ((-1113 . -722) T) ((-649 . -643) 90978) ((-294 . -610) 90719) ((-1135 . -613) 90637) ((-1031 . -34) T) ((-811 . -844) 90616) ((-579 . -307) T) ((-563 . -307) T) ((-495 . -307) T) ((-1281 . -713) 90586) ((-689 . -377) 90568) ((-689 . -338) 90550) ((-477 . -172) T) ((-381 . -713) 90520) ((-862 . -613) 90455) ((-867 . -846) NIL) ((-563 . -1018) T) ((-495 . -1018) T) ((-1126 . -610) 90437) ((-1106 . -238) 90416) ((-214 . -102) T) ((-1143 . -102) T) ((-71 . -610) 90398) ((-1135 . -1045) T) ((-1171 . -38) 90295) ((-854 . -610) 90277) ((-563 . -545) T) ((-665 . -1052) T) ((-727 . -945) 90230) ((-1135 . -233) 90209) ((-1075 . -1093) T) ((-1030 . -25) T) ((-1030 . -21) T) ((-999 . -1051) 90154) ((-901 . -102) T) ((-862 . -1045) T) ((-689 . -896) NIL) ((-355 . -329) 90138) ((-355 . -363) T) ((-352 . -329) 90122) ((-352 . -363) T) ((-344 . -329) 90106) ((-344 . -363) T) ((-487 . -102) T) ((-1269 . -38) 90076) ((-546 . -846) T) ((-523 . -682) 90026) ((-217 . -102) T) ((-1020 . -1034) 89906) ((-999 . -111) 89835) ((-1167 . -969) 89804) ((-1166 . -969) 89766) ((-520 . -151) 89750) ((-1073 . -370) 89729) ((-351 . -610) 89711) ((-322 . -21) T) ((-354 . -1034) 89688) ((-322 . -25) T) ((-1160 . -969) 89657) ((-1119 . -969) 89624) ((-76 . -610) 89606) ((-694 . -307) T) ((-169 . -846) 89585) ((-129 . -840) T) ((-906 . -363) T) ((-379 . -25) T) ((-379 . -21) T) ((-906 . -329) 89572) ((-86 . -610) 89554) ((-694 . -1018) T) ((-672 . -846) T) ((-1241 . -131) T) ((-1220 . -131) T) ((-897 . -1006) 89538) ((-832 . -21) T) ((-48 . -1034) 89481) ((-832 . -25) T) ((-823 . -25) T) ((-823 . -21) T) ((-1279 . -1052) T) ((-548 . -102) T) ((-1277 . -1052) T) ((-649 . -722) T) ((-1097 . -615) 89384) ((-999 . -613) 89314) ((-1280 . -1051) 89298) ((-1230 . -846) 89277) ((-811 . -411) 89246) ((-103 . -119) 89230) ((-129 . -1093) T) ((-52 . -1093) T) ((-922 . -610) 89212) ((-867 . -988) 89189) ((-819 . -102) T) ((-1280 . -111) 89168) ((-648 . -38) 89138) ((-570 . -846) T) ((-355 . -1105) T) ((-352 . -1105) T) ((-344 . -1105) T) ((-264 . -1105) T) ((-247 . -1105) T) ((-620 . -307) 89117) ((-1143 . -309) 88921) ((-524 . -1076) T) ((-311 . -1093) T) ((-659 . -23) T) ((-482 . -231) 88890) ((-152 . -1052) T) ((-355 . -23) T) ((-352 . -23) T) ((-344 . -23) T) ((-117 . -307) T) ((-264 . -23) T) ((-247 . -23) T) ((-999 . -1045) T) ((-708 . -905) 88869) ((-1149 . -613) 88846) ((-999 . -233) 88818) ((-999 . -243) T) ((-117 . -1018) NIL) ((-906 . -1105) T) ((-1242 . -452) 88797) ((-1221 . -452) 88776) ((-523 . -610) 88708) ((-708 . -643) 88633) ((-407 . -1051) 88585) ((-504 . -610) 88567) ((-906 . -23) T) ((-487 . -309) NIL) ((-1280 . -613) 88523) ((-474 . -131) T) ((-217 . -309) NIL) ((-407 . -111) 88461) ((-811 . -1052) 88391) ((-733 . -1091) 88375) ((-1241 . -493) 88341) ((-1220 . -493) 88307) ((-141 . -1091) 88289) ((-477 . -290) T) ((-1280 . -1045) T) ((-1213 . -102) T) ((-1057 . -102) T) ((-839 . -613) 88157) ((-500 . -514) NIL) ((-698 . -102) T) ((-482 . -238) 88136) ((-407 . -613) 88034) ((-1165 . -145) 88013) ((-1165 . -147) 87992) ((-1118 . -147) 87971) ((-1118 . -145) 87950) ((-632 . -1051) 87934) ((-604 . -1051) 87918) ((-665 . -1093) T) ((-665 . -1048) 87858) ((-1167 . -1248) 87842) ((-1167 . -1235) 87819) ((-487 . -1144) T) ((-1166 . -1240) 87780) ((-1166 . -1235) 87750) ((-1166 . -1238) 87734) ((-217 . -1144) T) ((-343 . -916) T) ((-814 . -266) 87718) ((-632 . -111) 87697) ((-604 . -111) 87676) ((-1160 . -1219) 87637) ((-839 . -1045) 87616) ((-1160 . -1235) 87593) ((-515 . -25) T) ((-495 . -302) T) ((-511 . -23) T) ((-510 . -25) T) ((-508 . -25) T) ((-507 . -23) T) ((-1160 . -1217) 87577) ((-407 . -1045) T) ((-319 . -1052) T) ((-689 . -307) T) ((-108 . -844) T) ((-708 . -722) T) ((-407 . -243) T) ((-407 . -233) 87556) ((-487 . -38) 87506) ((-217 . -38) 87456) ((-474 . -493) 87422) ((-1151 . -1137) T) ((-1094 . -102) T) ((-696 . -610) 87404) ((-696 . -611) 87319) ((-710 . -21) T) ((-710 . -25) T) ((-1128 . -102) T) ((-134 . -610) 87301) ((-116 . -610) 87283) ((-157 . -25) T) ((-1279 . -1093) T) ((-868 . -636) 87231) ((-1277 . -1093) T) ((-959 . -102) T) ((-731 . -102) T) ((-711 . -102) T) ((-453 . -102) T) ((-812 . -452) 87182) ((-44 . -1093) T) ((-1081 . -846) T) ((-659 . -131) T) ((-1057 . -309) 87033) ((-665 . -713) 87017) ((-289 . -1052) T) ((-355 . -131) T) ((-352 . -131) T) ((-344 . -131) T) ((-264 . -131) T) ((-247 . -131) T) ((-418 . -102) T) ((-152 . -1093) T) ((-45 . -229) 86967) ((-954 . -846) 86946) ((-995 . -643) 86884) ((-240 . -1264) 86854) ((-1020 . -307) T) ((-294 . -1051) 86775) ((-906 . -131) T) ((-40 . -916) T) ((-487 . -400) 86757) ((-354 . -307) T) ((-217 . -400) 86739) ((-1073 . -411) 86723) ((-294 . -111) 86639) ((-1176 . -846) T) ((-1175 . -846) T) ((-868 . -25) T) ((-868 . -21) T) ((-339 . -610) 86621) ((-1243 . -47) 86565) ((-225 . -147) T) ((-174 . -610) 86547) ((-1106 . -844) 86526) ((-770 . -610) 86508) ((-128 . -846) T) ((-605 . -235) 86455) ((-475 . -235) 86405) ((-1279 . -713) 86375) ((-48 . -307) T) ((-1277 . -713) 86345) ((-65 . -613) 86274) ((-960 . -1093) T) ((-811 . -1093) 86064) ((-312 . -102) T) ((-897 . -1208) T) ((-48 . -1018) T) ((-1220 . -636) 85972) ((-684 . -102) 85950) ((-44 . -713) 85934) ((-549 . -102) T) ((-294 . -613) 85865) ((-67 . -383) T) ((-67 . -395) T) ((-657 . -23) T) ((-665 . -757) T) ((-1205 . -1093) 85843) ((-351 . -1051) 85788) ((-670 . -1093) 85766) ((-1056 . -147) T) ((-948 . -147) 85745) ((-948 . -145) 85724) ((-795 . -102) T) ((-152 . -713) 85708) ((-481 . -147) 85687) ((-481 . -145) 85666) ((-351 . -111) 85595) ((-1073 . -1052) T) ((-322 . -846) 85574) ((-1249 . -969) 85543) ((-624 . -1093) T) ((-1242 . -969) 85505) ((-511 . -131) T) ((-507 . -131) T) ((-295 . -229) 85455) ((-359 . -1052) T) ((-353 . -1052) T) ((-345 . -1052) T) ((-294 . -1045) 85397) ((-1221 . -969) 85366) ((-379 . -846) T) ((-108 . -1052) T) ((-995 . -722) T) ((-866 . -916) T) ((-839 . -791) 85345) ((-839 . -788) 85324) ((-418 . -309) 85263) ((-468 . -102) T) ((-593 . -969) 85232) ((-319 . -1093) T) ((-407 . -791) 85211) ((-407 . -788) 85190) ((-500 . -489) 85172) ((-1243 . -1034) 85138) ((-1241 . -21) T) ((-1241 . -25) T) ((-1220 . -21) T) ((-1220 . -25) T) ((-811 . -713) 85080) ((-351 . -613) 85010) ((-694 . -404) T) ((-1270 . -1208) T) ((-603 . -102) T) ((-1106 . -411) 84979) ((-999 . -368) NIL) ((-666 . -102) T) ((-180 . -102) T) ((-161 . -102) T) ((-156 . -102) T) ((-154 . -102) T) ((-103 . -34) T) ((-733 . -1208) T) ((-44 . -757) T) ((-591 . -102) T) ((-77 . -396) T) ((-77 . -395) T) ((-648 . -651) 84963) ((-141 . -1208) T) ((-867 . -147) T) ((-867 . -145) NIL) ((-1207 . -93) T) ((-351 . -1045) T) ((-70 . -383) T) ((-70 . -395) T) ((-1158 . -102) T) ((-665 . -514) 84896) ((-684 . -309) 84834) ((-959 . -38) 84731) ((-731 . -38) 84701) ((-549 . -309) 84505) ((-316 . -1208) T) ((-351 . -233) T) ((-351 . -243) T) ((-313 . -1208) T) ((-289 . -1093) T) ((-1173 . -610) 84487) ((-707 . -1212) T) ((-1149 . -646) 84471) ((-1202 . -555) 84450) ((-707 . -555) T) ((-316 . -880) 84434) ((-316 . -882) 84359) ((-313 . -880) 84320) ((-313 . -882) NIL) ((-795 . -309) 84285) ((-319 . -713) 84126) ((-324 . -323) 84103) ((-485 . -102) T) ((-474 . -25) T) ((-474 . -21) T) ((-418 . -38) 84077) ((-316 . -1034) 83740) ((-225 . -1193) T) ((-225 . -1196) T) ((-3 . -610) 83722) ((-313 . -1034) 83652) ((-2 . -1093) T) ((-2 . |RecordCategory|) T) ((-829 . -610) 83634) ((-1106 . -1052) 83564) ((-579 . -916) T) ((-563 . -816) T) ((-563 . -916) T) ((-495 . -916) T) ((-136 . -1034) 83548) ((-225 . -95) T) ((-75 . -441) T) ((-75 . -395) T) ((0 . -610) 83530) ((-169 . -147) 83509) ((-169 . -145) 83460) ((-225 . -35) T) ((-49 . -610) 83442) ((-477 . -1052) T) ((-487 . -231) 83424) ((-484 . -964) 83408) ((-482 . -844) 83387) ((-217 . -231) 83369) ((-81 . -441) T) ((-81 . -395) T) ((-1139 . -34) T) ((-811 . -172) 83348) ((-727 . -102) T) ((-1022 . -610) 83315) ((-500 . -286) 83290) ((-316 . -377) 83259) ((-313 . -377) 83220) ((-313 . -338) 83181) ((-1078 . -610) 83163) ((-812 . -945) 83110) ((-657 . -131) T) ((-1230 . -145) 83089) ((-1230 . -147) 83068) ((-1167 . -102) T) ((-1166 . -102) T) ((-1160 . -102) T) ((-1152 . -1093) T) ((-1119 . -102) T) ((-222 . -34) T) ((-289 . -713) 83055) ((-1152 . -607) 83031) ((-591 . -309) NIL) ((-484 . -1093) 83009) ((-390 . -610) 82991) ((-510 . -846) T) ((-1143 . -229) 82941) ((-1249 . -1248) 82925) ((-1249 . -1235) 82902) ((-1242 . -1240) 82863) ((-1242 . -1235) 82833) ((-1242 . -1238) 82817) ((-1221 . -1219) 82778) ((-1221 . -1235) 82755) ((-618 . -610) 82737) ((-1221 . -1217) 82721) ((-694 . -916) T) ((-1167 . -284) 82687) ((-1166 . -284) 82653) ((-1160 . -284) 82619) ((-1073 . -1093) T) ((-1055 . -1093) T) ((-48 . -302) T) ((-316 . -896) 82585) ((-313 . -896) NIL) ((-1055 . -1062) 82564) ((-1113 . -882) 82546) ((-795 . -38) 82530) ((-264 . -636) 82478) ((-247 . -636) 82426) ((-696 . -1051) 82413) ((-593 . -1235) 82390) ((-1119 . -284) 82356) ((-319 . -172) 82287) ((-359 . -1093) T) ((-353 . -1093) T) ((-345 . -1093) T) ((-500 . -19) 82269) ((-1113 . -1034) 82251) ((-1095 . -151) 82235) ((-108 . -1093) T) ((-116 . -1051) 82222) ((-707 . -363) T) ((-500 . -601) 82197) ((-696 . -111) 82182) ((-436 . -102) T) ((-45 . -1142) 82132) ((-116 . -111) 82117) ((-632 . -716) T) ((-604 . -716) T) ((-811 . -514) 82050) ((-1031 . -1208) T) ((-939 . -151) 82034) ((-1215 . -610) 82016) ((-1165 . -452) 81947) ((-1159 . -1093) T) ((-1151 . -1093) T) ((-525 . -102) T) ((-520 . -102) 81897) ((-1135 . -643) 81871) ((-1118 . -452) 81822) ((-1080 . -1212) 81801) ((-778 . -1212) 81780) ((-776 . -1212) 81759) ((-62 . -1208) T) ((-477 . -610) 81711) ((-477 . -611) 81633) ((-1080 . -555) 81564) ((-990 . -1093) T) ((-778 . -555) 81475) ((-776 . -555) 81406) ((-482 . -411) 81375) ((-620 . -916) 81354) ((-454 . -1212) 81333) ((-727 . -309) 81320) ((-696 . -613) 81292) ((-398 . -610) 81274) ((-670 . -514) 81207) ((-659 . -25) T) ((-659 . -21) T) ((-454 . -555) 81138) ((-355 . -25) T) ((-355 . -21) T) ((-117 . -916) T) ((-117 . -816) NIL) ((-352 . -25) T) ((-352 . -21) T) ((-344 . -25) T) ((-344 . -21) T) ((-264 . -25) T) ((-264 . -21) T) ((-247 . -25) T) ((-247 . -21) T) ((-83 . -384) T) ((-83 . -395) T) ((-134 . -613) 81120) ((-116 . -613) 81092) ((-1259 . -610) 81074) ((-1214 . -846) T) ((-1202 . -1105) T) ((-1202 . -23) T) ((-1160 . -309) 80959) ((-1119 . -309) 80946) ((-1073 . -713) 80814) ((-862 . -643) 80774) ((-939 . -976) 80758) ((-906 . -21) T) ((-289 . -172) T) ((-906 . -25) T) ((-311 . -93) T) ((-868 . -846) 80709) ((-707 . -1105) T) ((-707 . -23) T) ((-696 . -1045) T) ((-642 . -1093) 80687) ((-629 . -1093) T) ((-580 . -1212) T) ((-518 . -1212) T) ((-696 . -233) T) ((-629 . -607) 80662) ((-580 . -555) T) ((-518 . -555) T) ((-359 . -713) 80614) ((-339 . -1051) 80598) ((-353 . -713) 80550) ((-345 . -713) 80502) ((-174 . -1051) 80434) ((-174 . -111) 80345) ((-108 . -713) 80295) ((-339 . -111) 80274) ((-274 . -1093) T) ((-273 . -1093) T) ((-272 . -1093) T) ((-271 . -1093) T) ((-270 . -1093) T) ((-269 . -1093) T) ((-268 . -1093) T) ((-212 . -1093) T) ((-211 . -1093) T) ((-169 . -1196) 80252) ((-169 . -1193) 80230) ((-209 . -1093) T) ((-208 . -1093) T) ((-116 . -1045) T) ((-207 . -1093) T) ((-206 . -1093) T) ((-203 . -1093) T) ((-202 . -1093) T) ((-201 . -1093) T) ((-200 . -1093) T) ((-199 . -1093) T) ((-198 . -1093) T) ((-197 . -1093) T) ((-196 . -1093) T) ((-195 . -1093) T) ((-194 . -1093) T) ((-193 . -1093) T) ((-240 . -102) 80020) ((-169 . -35) 79998) ((-169 . -95) 79976) ((-649 . -1034) 79872) ((-482 . -1052) 79802) ((-1106 . -1093) 79592) ((-1135 . -34) T) ((-665 . -489) 79576) ((-73 . -1208) T) ((-105 . -610) 79558) ((-1281 . -610) 79540) ((-381 . -610) 79522) ((-339 . -613) 79474) ((-174 . -613) 79391) ((-1207 . -490) 79372) ((-727 . -38) 79221) ((-570 . -1196) T) ((-570 . -1193) T) ((-531 . -610) 79203) ((-520 . -309) 79141) ((-500 . -610) 79123) ((-500 . -611) 79105) ((-1207 . -610) 79071) ((-1160 . -1144) NIL) ((-1023 . -1065) 79040) ((-1023 . -1093) T) ((-1000 . -102) T) ((-967 . -102) T) ((-910 . -102) T) ((-889 . -1034) 79017) ((-1135 . -722) T) ((-999 . -643) 78962) ((-476 . -1093) T) ((-463 . -1093) T) ((-584 . -23) T) ((-570 . -35) T) ((-570 . -95) T) ((-427 . -102) T) ((-1057 . -229) 78908) ((-1167 . -38) 78805) ((-862 . -722) T) ((-689 . -916) T) ((-511 . -25) T) ((-507 . -21) T) ((-507 . -25) T) ((-1166 . -38) 78646) ((-339 . -1045) T) ((-1160 . -38) 78442) ((-1073 . -172) T) ((-174 . -1045) T) ((-1119 . -38) 78339) ((-708 . -47) 78316) ((-359 . -172) T) ((-353 . -172) T) ((-519 . -57) 78290) ((-497 . -57) 78240) ((-351 . -1276) 78217) ((-225 . -452) T) ((-319 . -290) 78168) ((-345 . -172) T) ((-174 . -243) T) ((-1220 . -846) 78067) ((-108 . -172) T) ((-868 . -988) 78051) ((-653 . -1105) T) ((-580 . -363) T) ((-580 . -329) 78038) ((-518 . -329) 78015) ((-518 . -363) T) ((-316 . -307) 77994) ((-313 . -307) T) ((-599 . -846) 77973) ((-1106 . -713) 77915) ((-520 . -282) 77899) ((-653 . -23) T) ((-418 . -231) 77883) ((-313 . -1018) NIL) ((-336 . -23) T) ((-103 . -1006) 77867) ((-45 . -36) 77846) ((-609 . -1093) T) ((-351 . -368) T) ((-524 . -102) T) ((-495 . -27) T) ((-240 . -309) 77784) ((-1080 . -1105) T) ((-1280 . -643) 77758) ((-778 . -1105) T) ((-776 . -1105) T) ((-454 . -1105) T) ((-1056 . -452) T) ((-948 . -452) 77709) ((-1108 . -1076) T) ((-110 . -1093) T) ((-1080 . -23) T) ((-813 . -1052) T) ((-778 . -23) T) ((-776 . -23) T) ((-481 . -452) 77660) ((-1152 . -514) 77443) ((-381 . -382) 77422) ((-1171 . -411) 77406) ((-461 . -23) T) ((-454 . -23) T) ((-96 . -1093) T) ((-484 . -514) 77339) ((-289 . -290) T) ((-1075 . -610) 77321) ((-1075 . -611) 77302) ((-407 . -905) 77281) ((-50 . -1105) T) ((-1020 . -916) T) ((-999 . -722) T) ((-708 . -882) NIL) ((-580 . -1105) T) ((-518 . -1105) T) ((-839 . -643) 77254) ((-1202 . -131) T) ((-1160 . -400) 77206) ((-1000 . -309) NIL) ((-811 . -489) 77190) ((-354 . -916) T) ((-1149 . -34) T) ((-407 . -643) 77142) ((-50 . -23) T) ((-707 . -131) T) ((-708 . -1034) 77022) ((-580 . -23) T) ((-108 . -514) NIL) ((-518 . -23) T) ((-169 . -409) 76993) ((-1133 . -1093) T) ((-1272 . -1271) 76977) ((-696 . -791) T) ((-696 . -788) T) ((-1113 . -307) T) ((-379 . -147) T) ((-280 . -610) 76959) ((-1220 . -988) 76929) ((-48 . -916) T) ((-670 . -489) 76913) ((-251 . -1264) 76883) ((-250 . -1264) 76853) ((-1169 . -846) T) ((-1106 . -172) 76832) ((-1113 . -1018) T) ((-1042 . -34) T) ((-832 . -147) 76811) ((-832 . -145) 76790) ((-733 . -107) 76774) ((-609 . -132) T) ((-482 . -1093) 76564) ((-1171 . -1052) T) ((-867 . -452) T) ((-85 . -1208) T) ((-240 . -38) 76534) ((-141 . -107) 76516) ((-708 . -377) 76500) ((-829 . -613) 76368) ((-1113 . -545) T) ((-578 . -102) T) ((-129 . -490) 76350) ((-390 . -1051) 76334) ((-1280 . -722) T) ((-1165 . -945) 76303) ((-129 . -610) 76270) ((-52 . -610) 76252) ((-1118 . -945) 76219) ((-648 . -411) 76203) ((-1269 . -1052) T) ((-618 . -1051) 76187) ((-657 . -25) T) ((-657 . -21) T) ((-1151 . -514) NIL) ((-1249 . -102) T) ((-1242 . -102) T) ((-390 . -111) 76166) ((-222 . -254) 76150) ((-1221 . -102) T) ((-1049 . -1093) T) ((-1000 . -1144) T) ((-1049 . -1048) 76090) ((-814 . -1093) T) ((-343 . -1212) T) ((-632 . -643) 76074) ((-618 . -111) 76053) ((-604 . -643) 76037) ((-594 . -102) T) ((-311 . -490) 76018) ((-584 . -131) T) ((-593 . -102) T) ((-414 . -1093) T) ((-385 . -1093) T) ((-311 . -610) 75984) ((-227 . -1093) 75962) ((-642 . -514) 75895) ((-629 . -514) 75739) ((-829 . -1045) 75718) ((-640 . -151) 75702) ((-343 . -555) T) ((-708 . -896) 75645) ((-549 . -229) 75595) ((-1249 . -284) 75561) ((-1073 . -290) 75512) ((-487 . -844) T) ((-223 . -1105) T) ((-1242 . -284) 75478) ((-1221 . -284) 75444) ((-1000 . -38) 75394) ((-217 . -844) T) ((-1202 . -493) 75360) ((-910 . -38) 75312) ((-839 . -790) 75291) ((-839 . -787) 75270) ((-839 . -722) 75249) ((-359 . -290) T) ((-353 . -290) T) ((-345 . -290) T) ((-169 . -452) 75180) ((-427 . -38) 75164) ((-108 . -290) T) ((-223 . -23) T) ((-407 . -790) 75143) ((-407 . -787) 75122) ((-407 . -722) T) ((-500 . -288) 75097) ((-477 . -1051) 75062) ((-653 . -131) T) ((-618 . -613) 75031) ((-1106 . -514) 74964) ((-336 . -131) T) ((-169 . -402) 74943) ((-482 . -713) 74885) ((-811 . -286) 74862) ((-477 . -111) 74818) ((-648 . -1052) T) ((-1230 . -452) 74749) ((-1268 . -1076) T) ((-1267 . -1076) T) ((-1080 . -131) T) ((-1049 . -713) 74691) ((-264 . -846) 74670) ((-247 . -846) 74649) ((-778 . -131) T) ((-776 . -131) T) ((-570 . -452) T) ((-1023 . -514) 74582) ((-618 . -1045) T) ((-590 . -1093) T) ((-533 . -173) T) ((-461 . -131) T) ((-454 . -131) T) ((-45 . -1093) T) ((-385 . -713) 74552) ((-813 . -1093) T) ((-476 . -514) 74485) ((-463 . -514) 74418) ((-453 . -367) 74388) ((-45 . -607) 74367) ((-316 . -302) T) ((-477 . -613) 74317) ((-665 . -610) 74279) ((-59 . -846) 74258) ((-1221 . -309) 74143) ((-1000 . -400) 74125) ((-811 . -601) 74102) ((-516 . -846) 74081) ((-496 . -846) 74060) ((-40 . -1212) T) ((-995 . -1034) 73956) ((-50 . -131) T) ((-580 . -131) T) ((-518 . -131) T) ((-294 . -643) 73816) ((-343 . -329) 73793) ((-343 . -363) T) ((-322 . -323) 73770) ((-319 . -286) 73755) ((-40 . -555) T) ((-379 . -1193) T) ((-379 . -1196) T) ((-1031 . -1184) 73730) ((-1181 . -235) 73680) ((-1160 . -231) 73632) ((-330 . -1093) T) ((-379 . -95) T) ((-379 . -35) T) ((-1031 . -107) 73578) ((-477 . -1045) T) ((-479 . -235) 73528) ((-1152 . -489) 73462) ((-1281 . -1051) 73446) ((-381 . -1051) 73430) ((-477 . -243) T) ((-812 . -102) T) ((-710 . -147) 73409) ((-710 . -145) 73388) ((-484 . -489) 73372) ((-485 . -335) 73341) ((-1281 . -111) 73320) ((-512 . -1093) T) ((-482 . -172) 73299) ((-995 . -377) 73283) ((-413 . -102) T) ((-381 . -111) 73262) ((-995 . -338) 73246) ((-279 . -979) 73230) ((-278 . -979) 73214) ((-1279 . -610) 73196) ((-1277 . -610) 73178) ((-110 . -514) NIL) ((-1165 . -1233) 73162) ((-850 . -848) 73146) ((-1171 . -1093) T) ((-103 . -1208) T) ((-948 . -945) 73107) ((-813 . -713) 73049) ((-1221 . -1144) NIL) ((-481 . -945) 72994) ((-1056 . -143) T) ((-60 . -102) 72972) ((-44 . -610) 72954) ((-78 . -610) 72936) ((-351 . -643) 72881) ((-1269 . -1093) T) ((-511 . -846) T) ((-343 . -1105) T) ((-295 . -1093) T) ((-995 . -896) 72840) ((-295 . -607) 72819) ((-1281 . -613) 72768) ((-1249 . -38) 72665) ((-1242 . -38) 72506) ((-1221 . -38) 72302) ((-487 . -1052) T) ((-381 . -613) 72286) ((-217 . -1052) T) ((-343 . -23) T) ((-152 . -610) 72268) ((-829 . -791) 72247) ((-829 . -788) 72226) ((-1207 . -613) 72207) ((-594 . -38) 72180) ((-593 . -38) 72077) ((-866 . -555) T) ((-223 . -131) T) ((-319 . -998) 72043) ((-79 . -610) 72025) ((-708 . -307) 72004) ((-294 . -722) 71906) ((-820 . -102) T) ((-860 . -840) T) ((-294 . -473) 71885) ((-1272 . -102) T) ((-40 . -363) T) ((-868 . -147) 71864) ((-868 . -145) 71843) ((-1151 . -489) 71825) ((-1281 . -1045) T) ((-482 . -514) 71758) ((-1139 . -1208) T) ((-960 . -610) 71740) ((-642 . -489) 71724) ((-629 . -489) 71655) ((-811 . -610) 71386) ((-48 . -27) T) ((-1171 . -713) 71283) ((-648 . -1093) T) ((-857 . -856) T) ((-436 . -364) 71257) ((-1095 . -102) T) ((-966 . -1093) T) ((-860 . -1093) T) ((-812 . -309) 71244) ((-533 . -527) T) ((-533 . -575) T) ((-1277 . -382) 71216) ((-1049 . -514) 71149) ((-1152 . -286) 71125) ((-240 . -231) 71094) ((-1269 . -713) 71064) ((-1159 . -93) T) ((-990 . -93) T) ((-813 . -172) 71043) ((-1205 . -490) 71020) ((-227 . -514) 70953) ((-618 . -791) 70932) ((-618 . -788) 70911) ((-1205 . -610) 70823) ((-222 . -1208) T) ((-670 . -610) 70755) ((-1149 . -1006) 70739) ((-939 . -102) 70689) ((-351 . -722) T) ((-857 . -610) 70671) ((-1221 . -400) 70623) ((-1106 . -489) 70607) ((-60 . -309) 70545) ((-331 . -102) T) ((-1202 . -21) T) ((-1202 . -25) T) ((-40 . -1105) T) ((-707 . -21) T) ((-624 . -610) 70527) ((-515 . -323) 70506) ((-707 . -25) T) ((-439 . -102) T) ((-108 . -286) NIL) ((-917 . -1105) T) ((-40 . -23) T) ((-767 . -1105) T) ((-563 . -1212) T) ((-495 . -1212) T) ((-319 . -610) 70488) ((-1000 . -231) 70470) ((-169 . -166) 70454) ((-579 . -555) T) ((-563 . -555) T) ((-495 . -555) T) ((-767 . -23) T) ((-1241 . -147) 70433) ((-1152 . -601) 70409) ((-1241 . -145) 70388) ((-1023 . -489) 70372) ((-1220 . -145) 70297) ((-1220 . -147) 70222) ((-1272 . -1278) 70201) ((-476 . -489) 70185) ((-463 . -489) 70169) ((-523 . -34) T) ((-648 . -713) 70139) ((-112 . -963) T) ((-657 . -846) 70118) ((-1171 . -172) 70069) ((-365 . -102) T) ((-240 . -238) 70048) ((-251 . -102) T) ((-250 . -102) T) ((-1230 . -945) 70017) ((-245 . -846) 69996) ((-812 . -38) 69845) ((-45 . -514) 69637) ((-1151 . -286) 69612) ((-214 . -1093) T) ((-1143 . -1093) T) ((-1143 . -607) 69591) ((-584 . -25) T) ((-584 . -21) T) ((-1095 . -309) 69529) ((-959 . -411) 69513) ((-694 . -1212) T) ((-629 . -286) 69488) ((-1080 . -636) 69436) ((-778 . -636) 69384) ((-776 . -636) 69332) ((-343 . -131) T) ((-289 . -610) 69314) ((-901 . -1093) T) ((-694 . -555) T) ((-129 . -613) 69296) ((-866 . -1105) T) ((-454 . -636) 69244) ((-901 . -899) 69228) ((-379 . -452) T) ((-487 . -1093) T) ((-939 . -309) 69166) ((-696 . -643) 69153) ((-548 . -840) T) ((-217 . -1093) T) ((-316 . -916) 69132) ((-313 . -916) T) ((-313 . -816) NIL) ((-390 . -716) T) ((-866 . -23) T) ((-116 . -643) 69119) ((-474 . -145) 69098) ((-418 . -411) 69082) ((-474 . -147) 69061) ((-110 . -489) 69043) ((-311 . -613) 69024) ((-2 . -610) 69006) ((-186 . -102) T) ((-1151 . -19) 68988) ((-1151 . -601) 68963) ((-653 . -21) T) ((-653 . -25) T) ((-591 . -1137) T) ((-1106 . -286) 68940) ((-336 . -25) T) ((-336 . -21) T) ((-495 . -363) T) ((-1272 . -38) 68910) ((-1135 . -1208) T) ((-629 . -601) 68885) ((-548 . -1093) T) ((-1080 . -25) T) ((-1080 . -21) T) ((-531 . -788) T) ((-531 . -791) T) ((-117 . -1212) T) ((-959 . -1052) T) ((-620 . -555) T) ((-778 . -25) T) ((-778 . -21) T) ((-776 . -21) T) ((-776 . -25) T) ((-731 . -1052) T) ((-711 . -1052) T) ((-665 . -1051) 68869) ((-517 . -1076) T) ((-461 . -25) T) ((-117 . -555) T) ((-461 . -21) T) ((-454 . -25) T) ((-454 . -21) T) ((-1279 . -1051) 68853) ((-1135 . -1034) 68749) ((-813 . -290) 68728) ((-1277 . -1051) 68712) ((-819 . -1093) T) ((-1241 . -1193) 68678) ((-962 . -963) T) ((-665 . -111) 68657) ((-295 . -514) 68449) ((-1241 . -1196) 68415) ((-1241 . -95) 68381) ((-1224 . -102) 68359) ((-251 . -309) 68297) ((-250 . -309) 68235) ((-1221 . -231) 68187) ((-1152 . -611) NIL) ((-1152 . -610) 68169) ((-1220 . -1193) 68135) ((-1220 . -1196) 68101) ((-1215 . -368) T) ((-96 . -93) T) ((-1213 . -840) T) ((-1135 . -377) 68085) ((-1113 . -816) T) ((-1113 . -916) T) ((-1106 . -601) 68062) ((-1073 . -611) 68046) ((-484 . -610) 67978) ((-811 . -288) 67955) ((-605 . -151) 67902) ((-418 . -1052) T) ((-487 . -713) 67852) ((-482 . -489) 67836) ((-327 . -846) 67815) ((-339 . -643) 67789) ((-50 . -21) T) ((-50 . -25) T) ((-217 . -713) 67739) ((-169 . -720) 67710) ((-174 . -643) 67642) ((-580 . -21) T) ((-580 . -25) T) ((-518 . -25) T) ((-518 . -21) T) ((-475 . -151) 67592) ((-1073 . -610) 67574) ((-1055 . -610) 67556) ((-989 . -102) T) ((-858 . -102) T) ((-795 . -411) 67520) ((-40 . -131) T) ((-694 . -363) T) ((-696 . -722) T) ((-696 . -790) T) ((-696 . -787) T) ((-212 . -891) T) ((-579 . -1105) T) ((-563 . -1105) T) ((-495 . -1105) T) ((-359 . -610) 67502) ((-353 . -610) 67484) ((-345 . -610) 67466) ((-66 . -396) T) ((-66 . -395) T) ((-108 . -611) 67396) ((-108 . -610) 67338) ((-211 . -891) T) ((-954 . -151) 67322) ((-767 . -131) T) ((-665 . -613) 67240) ((-134 . -722) T) ((-116 . -722) T) ((-1241 . -35) 67206) ((-1049 . -489) 67190) ((-579 . -23) T) ((-563 . -23) T) ((-495 . -23) T) ((-1220 . -95) 67156) ((-1220 . -35) 67122) ((-1165 . -102) T) ((-1118 . -102) T) ((-850 . -102) T) ((-227 . -489) 67106) ((-1279 . -111) 67085) ((-1277 . -111) 67064) ((-44 . -1051) 67048) ((-1230 . -1233) 67032) ((-851 . -848) 67016) ((-1279 . -613) 66962) ((-1171 . -290) 66941) ((-110 . -286) 66916) ((-1213 . -1093) T) ((-128 . -151) 66898) ((-1135 . -896) 66857) ((-44 . -111) 66836) ((-1174 . -1252) T) ((-1159 . -490) 66817) ((-1159 . -610) 66783) ((-1151 . -611) NIL) ((-665 . -1045) T) ((-1151 . -610) 66765) ((-1057 . -607) 66740) ((-1057 . -1093) T) ((-990 . -490) 66721) ((-990 . -610) 66687) ((-74 . -441) T) ((-74 . -395) T) ((-698 . -1093) T) ((-152 . -1051) 66671) ((-665 . -233) 66650) ((-570 . -553) 66634) ((-355 . -147) 66613) ((-355 . -145) 66564) ((-352 . -147) 66543) ((-352 . -145) 66494) ((-344 . -147) 66473) ((-344 . -145) 66424) ((-264 . -145) 66403) ((-264 . -147) 66382) ((-251 . -38) 66352) ((-247 . -147) 66331) ((-117 . -363) T) ((-247 . -145) 66310) ((-250 . -38) 66280) ((-152 . -111) 66259) ((-999 . -1034) 66147) ((-1160 . -844) NIL) ((-689 . -1212) T) ((-795 . -1052) T) ((-694 . -1105) T) ((-1279 . -1045) T) ((-1277 . -613) 66076) ((-1277 . -1045) T) ((-1149 . -1208) T) ((-999 . -377) 66053) ((-906 . -145) T) ((-906 . -147) 66035) ((-866 . -131) T) ((-811 . -1051) 65932) ((-689 . -555) T) ((-694 . -23) T) ((-642 . -610) 65864) ((-642 . -611) 65825) ((-629 . -611) NIL) ((-629 . -610) 65807) ((-487 . -172) T) ((-223 . -21) T) ((-217 . -172) T) ((-223 . -25) T) ((-474 . -1196) 65773) ((-474 . -1193) 65739) ((-274 . -610) 65721) ((-273 . -610) 65703) ((-272 . -610) 65685) ((-271 . -610) 65667) ((-270 . -610) 65649) ((-500 . -646) 65631) ((-269 . -610) 65613) ((-339 . -722) T) ((-268 . -610) 65595) ((-110 . -19) 65577) ((-174 . -722) T) ((-500 . -373) 65559) ((-212 . -610) 65541) ((-520 . -1142) 65525) ((-500 . -123) T) ((-110 . -601) 65500) ((-211 . -610) 65482) ((-474 . -35) 65448) ((-474 . -95) 65414) ((-209 . -610) 65396) ((-208 . -610) 65378) ((-207 . -610) 65360) ((-206 . -610) 65342) ((-203 . -610) 65324) ((-202 . -610) 65306) ((-201 . -610) 65288) ((-200 . -610) 65270) ((-199 . -610) 65252) ((-198 . -610) 65234) ((-197 . -610) 65216) ((-536 . -1096) 65168) ((-196 . -610) 65150) ((-195 . -610) 65132) ((-45 . -489) 65069) ((-194 . -610) 65051) ((-193 . -610) 65033) ((-152 . -613) 65002) ((-1108 . -102) T) ((-811 . -111) 64892) ((-640 . -102) 64842) ((-482 . -286) 64819) ((-1106 . -610) 64550) ((-1094 . -1093) T) ((-1042 . -1208) T) ((-1280 . -1034) 64534) ((-620 . -1105) T) ((-1165 . -309) 64521) ((-1128 . -1093) T) ((-1118 . -309) 64508) ((-1089 . -1076) T) ((-1083 . -1076) T) ((-1067 . -1076) T) ((-1060 . -1076) T) ((-1032 . -1076) T) ((-1015 . -1076) T) ((-117 . -1105) T) ((-815 . -102) T) ((-623 . -1076) T) ((-620 . -23) T) ((-1143 . -514) 64300) ((-483 . -1076) T) ((-999 . -896) 64252) ((-386 . -102) T) ((-324 . -102) T) ((-218 . -1076) T) ((-959 . -1093) T) ((-152 . -1045) T) ((-727 . -411) 64236) ((-117 . -23) T) ((-731 . -1093) T) ((-711 . -1093) T) ((-698 . -132) T) ((-453 . -1093) T) ((-407 . -1208) T) ((-316 . -430) 64220) ((-590 . -93) T) ((-1023 . -611) 64181) ((-1020 . -1212) T) ((-225 . -102) T) ((-1023 . -610) 64143) ((-812 . -231) 64127) ((-811 . -613) 63857) ((-1020 . -555) T) ((-829 . -643) 63830) ((-354 . -1212) T) ((-476 . -610) 63792) ((-476 . -611) 63753) ((-463 . -611) 63714) ((-463 . -610) 63676) ((-407 . -880) 63660) ((-319 . -1051) 63495) ((-407 . -882) 63420) ((-839 . -1034) 63316) ((-487 . -514) NIL) ((-482 . -601) 63293) ((-354 . -555) T) ((-217 . -514) NIL) ((-868 . -452) T) ((-418 . -1093) T) ((-407 . -1034) 63157) ((-319 . -111) 62978) ((-689 . -363) T) ((-225 . -284) T) ((-1205 . -613) 62955) ((-48 . -1212) T) ((-811 . -1045) 62885) ((-579 . -131) T) ((-563 . -131) T) ((-495 . -131) T) ((-1165 . -1144) 62863) ((-48 . -555) T) ((-1152 . -288) 62839) ((-1056 . -102) T) ((-948 . -102) T) ((-316 . -27) 62818) ((-811 . -233) 62770) ((-249 . -831) 62752) ((-240 . -844) 62731) ((-187 . -831) 62713) ((-709 . -102) T) ((-295 . -489) 62650) ((-481 . -102) T) ((-727 . -1052) T) ((-609 . -610) 62632) ((-609 . -611) 62493) ((-407 . -377) 62477) ((-407 . -338) 62461) ((-319 . -613) 62287) ((-1165 . -38) 62116) ((-1118 . -38) 61965) ((-850 . -38) 61935) ((-390 . -643) 61919) ((-640 . -309) 61857) ((-959 . -713) 61754) ((-731 . -713) 61724) ((-222 . -107) 61708) ((-45 . -286) 61633) ((-618 . -643) 61607) ((-312 . -1093) T) ((-289 . -1051) 61594) ((-110 . -610) 61576) ((-110 . -611) 61558) ((-453 . -713) 61528) ((-812 . -253) 61467) ((-684 . -1093) 61445) ((-549 . -1093) T) ((-1167 . -1052) T) ((-1166 . -1052) T) ((-96 . -490) 61426) ((-1160 . -1052) T) ((-289 . -111) 61411) ((-1119 . -1052) T) ((-549 . -607) 61390) ((-96 . -610) 61356) ((-1000 . -844) T) ((-227 . -682) 61314) ((-689 . -1105) T) ((-1202 . -736) 61290) ((-1020 . -363) T) ((-834 . -831) 61272) ((-319 . -1045) T) ((-343 . -25) T) ((-343 . -21) T) ((-407 . -896) 61231) ((-68 . -1208) T) ((-829 . -790) 61210) ((-418 . -713) 61184) ((-795 . -1093) T) ((-829 . -787) 61163) ((-694 . -131) T) ((-708 . -916) 61142) ((-689 . -23) T) ((-487 . -290) T) ((-829 . -722) 61121) ((-319 . -233) 61073) ((-319 . -243) 61052) ((-217 . -290) T) ((-129 . -368) T) ((-1241 . -452) 61031) ((-1220 . -452) 61010) ((-354 . -329) 60987) ((-354 . -363) T) ((-1133 . -610) 60969) ((-45 . -1245) 60919) ((-867 . -102) T) ((-640 . -282) 60903) ((-694 . -1054) T) ((-1268 . -102) T) ((-1267 . -102) T) ((-477 . -643) 60868) ((-468 . -1093) T) ((-45 . -601) 60793) ((-1151 . -288) 60768) ((-289 . -613) 60740) ((-40 . -636) 60679) ((-48 . -363) T) ((-1099 . -610) 60661) ((-1080 . -846) 60640) ((-629 . -288) 60615) ((-778 . -846) 60594) ((-776 . -846) 60573) ((-482 . -610) 60304) ((-240 . -411) 60273) ((-948 . -309) 60260) ((-454 . -846) 60239) ((-65 . -1208) T) ((-1057 . -514) 60083) ((-620 . -131) T) ((-546 . -102) T) ((-481 . -309) 60070) ((-603 . -1093) T) ((-117 . -131) T) ((-666 . -1093) T) ((-289 . -1045) T) ((-180 . -1093) T) ((-161 . -1093) T) ((-156 . -1093) T) ((-154 . -1093) T) ((-453 . -757) T) ((-31 . -1076) T) ((-959 . -172) 60021) ((-966 . -93) T) ((-1073 . -1051) 59931) ((-618 . -790) 59910) ((-591 . -1093) T) ((-618 . -787) 59889) ((-618 . -722) T) ((-295 . -286) 59868) ((-294 . -1208) T) ((-1049 . -610) 59830) ((-1049 . -611) 59791) ((-1020 . -1105) T) ((-169 . -102) T) ((-275 . -846) T) ((-1158 . -1093) T) ((-814 . -610) 59773) ((-1106 . -288) 59750) ((-1095 . -229) 59734) ((-999 . -307) T) ((-795 . -713) 59718) ((-359 . -1051) 59670) ((-354 . -1105) T) ((-353 . -1051) 59622) ((-414 . -610) 59604) ((-385 . -610) 59586) ((-345 . -1051) 59538) ((-227 . -610) 59470) ((-1073 . -111) 59366) ((-1020 . -23) T) ((-108 . -1051) 59316) ((-894 . -102) T) ((-837 . -102) T) ((-804 . -102) T) ((-765 . -102) T) ((-672 . -102) T) ((-474 . -452) 59295) ((-418 . -172) T) ((-359 . -111) 59233) ((-353 . -111) 59171) ((-345 . -111) 59109) ((-251 . -231) 59078) ((-250 . -231) 59047) ((-354 . -23) T) ((-71 . -1208) T) ((-225 . -38) 59012) ((-108 . -111) 58946) ((-40 . -25) T) ((-40 . -21) T) ((-665 . -716) T) ((-169 . -284) 58924) ((-48 . -1105) T) ((-917 . -25) T) ((-767 . -25) T) ((-1143 . -489) 58861) ((-485 . -1093) T) ((-1281 . -643) 58835) ((-1230 . -102) T) ((-851 . -102) T) ((-240 . -1052) 58765) ((-1056 . -1144) T) ((-960 . -788) 58718) ((-381 . -643) 58702) ((-48 . -23) T) ((-960 . -791) 58655) ((-811 . -791) 58606) ((-811 . -788) 58557) ((-295 . -601) 58536) ((-477 . -722) T) ((-570 . -102) T) ((-1073 . -613) 58354) ((-249 . -185) T) ((-187 . -185) T) ((-867 . -309) 58311) ((-648 . -286) 58290) ((-112 . -656) T) ((-359 . -613) 58227) ((-353 . -613) 58164) ((-345 . -613) 58101) ((-76 . -1208) T) ((-108 . -613) 58051) ((-1056 . -38) 58038) ((-659 . -374) 58017) ((-948 . -38) 57866) ((-727 . -1093) T) ((-481 . -38) 57715) ((-86 . -1208) T) ((-590 . -490) 57696) ((-570 . -284) T) ((-1221 . -844) NIL) ((-590 . -610) 57662) ((-1167 . -1093) T) ((-1166 . -1093) T) ((-1073 . -1045) T) ((-351 . -1034) 57639) ((-813 . -490) 57623) ((-1000 . -1052) T) ((-45 . -610) 57605) ((-45 . -611) NIL) ((-910 . -1052) T) ((-813 . -610) 57574) ((-1160 . -1093) T) ((-1140 . -102) 57552) ((-1073 . -243) 57503) ((-427 . -1052) T) ((-359 . -1045) T) ((-365 . -364) 57480) ((-353 . -1045) T) ((-345 . -1045) T) ((-251 . -238) 57459) ((-250 . -238) 57438) ((-1073 . -233) 57363) ((-1119 . -1093) T) ((-294 . -896) 57322) ((-108 . -1045) T) ((-689 . -131) T) ((-418 . -514) 57164) ((-359 . -233) 57143) ((-359 . -243) T) ((-44 . -716) T) ((-353 . -233) 57122) ((-353 . -243) T) ((-345 . -233) 57101) ((-345 . -243) T) ((-1159 . -613) 57082) ((-169 . -309) 57047) ((-108 . -243) T) ((-108 . -233) T) ((-990 . -613) 57028) ((-319 . -788) T) ((-866 . -21) T) ((-866 . -25) T) ((-407 . -307) T) ((-500 . -34) T) ((-110 . -288) 57003) ((-1106 . -1051) 56900) ((-867 . -1144) NIL) ((-330 . -610) 56882) ((-407 . -1018) 56860) ((-1106 . -111) 56750) ((-686 . -1252) T) ((-436 . -1093) T) ((-1281 . -722) T) ((-63 . -610) 56732) ((-867 . -38) 56677) ((-523 . -1208) T) ((-599 . -151) 56661) ((-512 . -610) 56643) ((-1230 . -309) 56630) ((-727 . -713) 56479) ((-531 . -789) T) ((-531 . -790) T) ((-563 . -636) 56461) ((-495 . -636) 56421) ((-355 . -452) T) ((-352 . -452) T) ((-344 . -452) T) ((-264 . -452) 56372) ((-525 . -1093) T) ((-520 . -1093) 56322) ((-247 . -452) 56273) ((-1143 . -286) 56252) ((-1171 . -610) 56234) ((-684 . -514) 56167) ((-959 . -290) 56146) ((-549 . -514) 55938) ((-1269 . -610) 55907) ((-1165 . -231) 55891) ((-1106 . -613) 55621) ((-169 . -1144) 55600) ((-1269 . -490) 55584) ((-1167 . -713) 55481) ((-1166 . -713) 55322) ((-888 . -102) T) ((-1160 . -713) 55118) ((-1119 . -713) 55015) ((-1149 . -669) 54999) ((-355 . -402) 54950) ((-352 . -402) 54901) ((-344 . -402) 54852) ((-1020 . -131) T) ((-795 . -514) 54764) ((-295 . -611) NIL) ((-295 . -610) 54746) ((-906 . -452) T) ((-960 . -368) 54699) ((-811 . -368) 54678) ((-510 . -509) 54657) ((-508 . -509) 54636) ((-487 . -286) NIL) ((-482 . -288) 54613) ((-418 . -290) T) ((-354 . -131) T) ((-217 . -286) NIL) ((-689 . -493) NIL) ((-99 . -1105) T) ((-169 . -38) 54441) ((-1241 . -969) 54403) ((-1140 . -309) 54341) ((-1220 . -969) 54310) ((-906 . -402) T) ((-1106 . -1045) 54240) ((-1243 . -555) T) ((-1143 . -601) 54219) ((-112 . -846) T) ((-1057 . -489) 54150) ((-579 . -21) T) ((-579 . -25) T) ((-563 . -21) T) ((-563 . -25) T) ((-495 . -25) T) ((-495 . -21) T) ((-1230 . -1144) 54128) ((-1106 . -233) 54080) ((-48 . -131) T) ((-1189 . -102) T) ((-240 . -1093) 53870) ((-867 . -400) 53847) ((-1081 . -102) T) ((-1069 . -102) T) ((-605 . -102) T) ((-475 . -102) T) ((-1230 . -38) 53676) ((-851 . -38) 53646) ((-727 . -172) 53557) ((-648 . -610) 53539) ((-641 . -1076) T) ((-570 . -38) 53526) ((-966 . -490) 53507) ((-966 . -610) 53473) ((-954 . -102) 53423) ((-860 . -610) 53405) ((-860 . -611) 53327) ((-591 . -514) NIL) ((-1249 . -1052) T) ((-1242 . -1052) T) ((-1221 . -1052) T) ((-1285 . -1105) T) ((-1176 . -102) T) ((-594 . -1052) T) ((-593 . -1052) T) ((-1175 . -102) T) ((-1167 . -172) 53278) ((-1166 . -172) 53209) ((-1160 . -172) 53140) ((-1119 . -172) 53091) ((-1000 . -1093) T) ((-967 . -1093) T) ((-910 . -1093) T) ((-1202 . -147) 53070) ((-795 . -793) 53054) ((-694 . -25) T) ((-694 . -21) T) ((-117 . -636) 53031) ((-696 . -882) 53013) ((-427 . -1093) T) ((-316 . -1212) 52992) ((-313 . -1212) T) ((-169 . -400) 52976) ((-1202 . -145) 52955) ((-474 . -969) 52917) ((-130 . -102) T) ((-128 . -102) T) ((-72 . -610) 52899) ((-108 . -791) T) ((-108 . -788) T) ((-696 . -1034) 52881) ((-316 . -555) 52860) ((-313 . -555) T) ((-1285 . -23) T) ((-134 . -1034) 52842) ((-96 . -613) 52823) ((-482 . -1051) 52720) ((-45 . -288) 52645) ((-240 . -713) 52587) ((-517 . -102) T) ((-482 . -111) 52477) ((-1085 . -102) 52455) ((-1030 . -102) T) ((-640 . -824) 52434) ((-727 . -514) 52377) ((-1049 . -1051) 52361) ((-1128 . -93) T) ((-1057 . -286) 52336) ((-620 . -21) T) ((-620 . -25) T) ((-524 . -1093) T) ((-361 . -102) T) ((-322 . -102) T) ((-665 . -643) 52310) ((-385 . -1051) 52294) ((-1049 . -111) 52273) ((-812 . -411) 52257) ((-117 . -25) T) ((-89 . -610) 52239) ((-117 . -21) T) ((-605 . -309) 52034) ((-475 . -309) 51838) ((-1143 . -611) NIL) ((-385 . -111) 51817) ((-379 . -102) T) ((-214 . -610) 51799) ((-1143 . -610) 51781) ((-1160 . -514) 51550) ((-1000 . -713) 51500) ((-1119 . -514) 51470) ((-910 . -713) 51422) ((-482 . -613) 51152) ((-351 . -307) T) ((-1181 . -151) 51102) ((-954 . -309) 51040) ((-832 . -102) T) ((-427 . -713) 51024) ((-225 . -824) T) ((-823 . -102) T) ((-821 . -102) T) ((-479 . -151) 50974) ((-1241 . -1240) 50953) ((-1113 . -1212) T) ((-339 . -1034) 50920) ((-1241 . -1235) 50890) ((-1241 . -1238) 50874) ((-1220 . -1219) 50853) ((-80 . -610) 50835) ((-901 . -610) 50817) ((-1220 . -1235) 50794) ((-1113 . -555) T) ((-917 . -846) T) ((-767 . -846) T) ((-487 . -611) 50724) ((-487 . -610) 50665) ((-379 . -284) T) ((-667 . -846) T) ((-1220 . -1217) 50649) ((-1243 . -1105) T) ((-217 . -611) 50579) ((-217 . -610) 50520) ((-1279 . -643) 50494) ((-1057 . -601) 50469) ((-814 . -613) 50453) ((-59 . -151) 50437) ((-516 . -151) 50421) ((-496 . -151) 50405) ((-359 . -1276) 50389) ((-353 . -1276) 50373) ((-345 . -1276) 50357) ((-316 . -363) 50336) ((-313 . -363) T) ((-482 . -1045) 50266) ((-689 . -636) 50248) ((-1277 . -643) 50222) ((-128 . -309) NIL) ((-1243 . -23) T) ((-684 . -489) 50206) ((-64 . -610) 50188) ((-1106 . -791) 50139) ((-1106 . -788) 50090) ((-549 . -489) 50027) ((-665 . -34) T) ((-482 . -233) 49979) ((-295 . -288) 49958) ((-240 . -172) 49937) ((-812 . -1052) T) ((-44 . -643) 49895) ((-1073 . -368) 49846) ((-727 . -290) 49777) ((-520 . -514) 49710) ((-813 . -1051) 49661) ((-1080 . -145) 49640) ((-548 . -610) 49622) ((-359 . -368) 49601) ((-353 . -368) 49580) ((-345 . -368) 49559) ((-1080 . -147) 49538) ((-867 . -231) 49515) ((-813 . -111) 49457) ((-778 . -145) 49436) ((-778 . -147) 49415) ((-264 . -945) 49382) ((-251 . -844) 49361) ((-247 . -945) 49306) ((-250 . -844) 49285) ((-776 . -145) 49264) ((-776 . -147) 49243) ((-152 . -643) 49217) ((-578 . -1093) T) ((-454 . -147) 49196) ((-454 . -145) 49175) ((-665 . -722) T) ((-819 . -610) 49157) ((-1249 . -1093) T) ((-1242 . -1093) T) ((-1221 . -1093) T) ((-1202 . -1196) 49123) ((-1202 . -1193) 49089) ((-1167 . -290) 49068) ((-1166 . -290) 49019) ((-1160 . -290) 48970) ((-1119 . -290) 48949) ((-339 . -896) 48930) ((-1000 . -172) T) ((-910 . -172) T) ((-594 . -1093) T) ((-593 . -1093) T) ((-689 . -21) T) ((-689 . -25) T) ((-474 . -1238) 48914) ((-474 . -1235) 48884) ((-418 . -286) 48812) ((-547 . -846) T) ((-316 . -1105) 48661) ((-313 . -1105) T) ((-1202 . -35) 48627) ((-1202 . -95) 48593) ((-84 . -610) 48575) ((-91 . -102) 48553) ((-1285 . -131) T) ((-590 . -613) 48534) ((-580 . -145) T) ((-580 . -147) 48516) ((-518 . -147) 48498) ((-518 . -145) T) ((-316 . -23) 48350) ((-40 . -342) 48324) ((-313 . -23) T) ((-813 . -613) 48238) ((-1151 . -646) 48220) ((-1272 . -1052) T) ((-1151 . -373) 48202) ((-811 . -643) 48050) ((-1089 . -102) T) ((-1083 . -102) T) ((-1067 . -102) T) ((-169 . -231) 48034) ((-1060 . -102) T) ((-1032 . -102) T) ((-1015 . -102) T) ((-591 . -489) 48016) ((-623 . -102) T) ((-240 . -514) 47949) ((-483 . -102) T) ((-1279 . -722) T) ((-1277 . -722) T) ((-218 . -102) T) ((-1171 . -1051) 47832) ((-1171 . -111) 47701) ((-857 . -173) T) ((-813 . -1045) T) ((-676 . -1076) T) ((-671 . -1076) T) ((-515 . -102) T) ((-510 . -102) T) ((-48 . -636) 47661) ((-508 . -102) T) ((-478 . -1076) T) ((-1269 . -1051) 47631) ((-138 . -1076) T) ((-137 . -1076) T) ((-133 . -1076) T) ((-1030 . -38) 47615) ((-813 . -233) T) ((-813 . -243) 47594) ((-1269 . -111) 47559) ((-1249 . -713) 47456) ((-1242 . -713) 47297) ((-1230 . -231) 47281) ((-549 . -286) 47260) ((-1213 . -610) 47242) ((-1057 . -611) NIL) ((-603 . -93) T) ((-1057 . -610) 47224) ((-698 . -490) 47208) ((-666 . -93) T) ((-180 . -93) T) ((-161 . -93) T) ((-156 . -93) T) ((-154 . -93) T) ((-1221 . -713) 47004) ((-999 . -916) T) ((-698 . -610) 46973) ((-152 . -722) T) ((-1106 . -368) 46952) ((-1000 . -514) NIL) ((-251 . -411) 46921) ((-250 . -411) 46890) ((-1020 . -25) T) ((-1020 . -21) T) ((-594 . -713) 46863) ((-593 . -713) 46760) ((-795 . -286) 46718) ((-126 . -102) 46696) ((-829 . -1034) 46592) ((-169 . -824) 46571) ((-319 . -643) 46468) ((-811 . -34) T) ((-710 . -102) T) ((-1171 . -613) 46321) ((-1113 . -1105) T) ((-1022 . -1208) T) ((-379 . -38) 46286) ((-354 . -25) T) ((-354 . -21) T) ((-187 . -102) T) ((-162 . -102) T) ((-249 . -102) T) ((-157 . -102) T) ((-355 . -1264) 46270) ((-352 . -1264) 46254) ((-344 . -1264) 46238) ((-169 . -349) 46217) ((-563 . -846) T) ((-495 . -846) T) ((-1113 . -23) T) ((-87 . -610) 46199) ((-696 . -307) T) ((-832 . -38) 46169) ((-823 . -38) 46139) ((-1269 . -613) 46081) ((-1243 . -131) T) ((-1143 . -288) 46060) ((-960 . -789) 46013) ((-960 . -790) 45966) ((-811 . -787) 45945) ((-116 . -307) T) ((-91 . -309) 45883) ((-670 . -34) T) ((-549 . -601) 45862) ((-48 . -25) T) ((-48 . -21) T) ((-811 . -790) 45813) ((-811 . -789) 45792) ((-696 . -1018) T) ((-648 . -1051) 45776) ((-960 . -722) 45675) ((-811 . -722) 45585) ((-960 . -473) 45538) ((-482 . -791) 45489) ((-482 . -788) 45440) ((-906 . -1264) 45427) ((-1171 . -1045) T) ((-648 . -111) 45406) ((-1171 . -326) 45383) ((-1194 . -102) 45361) ((-1094 . -610) 45343) ((-696 . -545) T) ((-812 . -1093) T) ((-1269 . -1045) T) ((-1128 . -490) 45324) ((-1214 . -102) T) ((-413 . -1093) T) ((-1128 . -610) 45290) ((-251 . -1052) 45220) ((-250 . -1052) 45150) ((-834 . -102) T) ((-289 . -643) 45137) ((-591 . -286) 45112) ((-684 . -682) 45070) ((-959 . -610) 45052) ((-868 . -102) T) ((-731 . -610) 45034) ((-711 . -610) 45016) ((-1249 . -172) 44967) ((-1242 . -172) 44898) ((-1221 . -172) 44829) ((-694 . -846) T) ((-1000 . -290) T) ((-453 . -610) 44811) ((-624 . -722) T) ((-60 . -1093) 44789) ((-245 . -151) 44773) ((-910 . -290) T) ((-1020 . -1008) T) ((-624 . -473) T) ((-708 . -1212) 44752) ((-648 . -613) 44670) ((-594 . -172) 44649) ((-593 . -172) 44600) ((-1257 . -846) 44579) ((-708 . -555) 44490) ((-407 . -916) T) ((-407 . -816) 44469) ((-319 . -790) T) ((-966 . -613) 44450) ((-319 . -722) T) ((-418 . -610) 44432) ((-418 . -611) 44339) ((-640 . -1142) 44323) ((-110 . -646) 44305) ((-174 . -307) T) ((-126 . -309) 44243) ((-110 . -373) 44225) ((-398 . -1208) T) ((-316 . -131) 44096) ((-313 . -131) T) ((-69 . -395) T) ((-110 . -123) T) ((-520 . -489) 44080) ((-649 . -1105) T) ((-591 . -19) 44062) ((-61 . -441) T) ((-61 . -395) T) ((-820 . -1093) T) ((-591 . -601) 44037) ((-477 . -1034) 43997) ((-648 . -1045) T) ((-649 . -23) T) ((-1272 . -1093) T) ((-31 . -102) T) ((-812 . -713) 43846) ((-576 . -856) T) ((-117 . -846) NIL) ((-1165 . -411) 43830) ((-1118 . -411) 43814) ((-850 . -411) 43798) ((-869 . -102) 43749) ((-1241 . -102) T) ((-1221 . -514) 43518) ((-1220 . -102) T) ((-1194 . -309) 43456) ((-525 . -93) T) ((-1167 . -286) 43441) ((-312 . -610) 43423) ((-1166 . -286) 43408) ((-1095 . -1093) T) ((-1073 . -643) 43318) ((-684 . -610) 43250) ((-289 . -722) T) ((-108 . -905) NIL) ((-684 . -611) 43211) ((-598 . -610) 43193) ((-576 . -610) 43175) ((-549 . -611) NIL) ((-549 . -610) 43157) ((-529 . -610) 43139) ((-1160 . -286) 42987) ((-487 . -1051) 42937) ((-707 . -452) T) ((-511 . -509) 42916) ((-507 . -509) 42895) ((-217 . -1051) 42845) ((-359 . -643) 42797) ((-353 . -643) 42749) ((-225 . -844) T) ((-345 . -643) 42701) ((-599 . -102) 42651) ((-482 . -368) 42630) ((-108 . -643) 42580) ((-487 . -111) 42514) ((-240 . -489) 42498) ((-343 . -147) 42480) ((-343 . -145) T) ((-169 . -370) 42451) ((-939 . -1255) 42435) ((-217 . -111) 42369) ((-868 . -309) 42334) ((-939 . -1093) 42284) ((-795 . -611) 42245) ((-795 . -610) 42227) ((-714 . -102) T) ((-331 . -1093) T) ((-214 . -613) 42204) ((-1113 . -131) T) ((-710 . -38) 42174) ((-316 . -493) 42153) ((-500 . -1208) T) ((-1241 . -284) 42119) ((-1220 . -284) 42085) ((-327 . -151) 42069) ((-439 . -1093) T) ((-1057 . -288) 42044) ((-1272 . -713) 42014) ((-1152 . -34) T) ((-1281 . -1034) 41991) ((-468 . -610) 41973) ((-484 . -34) T) ((-381 . -1034) 41957) ((-1165 . -1052) T) ((-1118 . -1052) T) ((-850 . -1052) T) ((-1056 . -844) T) ((-487 . -613) 41907) ((-217 . -613) 41857) ((-812 . -172) 41768) ((-520 . -286) 41745) ((-1249 . -290) 41724) ((-1189 . -364) 41698) ((-1081 . -266) 41682) ((-666 . -490) 41663) ((-666 . -610) 41629) ((-603 . -490) 41610) ((-117 . -988) 41587) ((-603 . -610) 41537) ((-474 . -102) T) ((-180 . -490) 41518) ((-180 . -610) 41484) ((-161 . -490) 41465) ((-156 . -490) 41446) ((-154 . -490) 41427) ((-161 . -610) 41393) ((-156 . -610) 41359) ((-365 . -1093) T) ((-251 . -1093) T) ((-250 . -1093) T) ((-154 . -610) 41325) ((-1242 . -290) 41276) ((-1221 . -290) 41227) ((-868 . -1144) 41205) ((-1167 . -998) 41171) ((-605 . -364) 41111) ((-1166 . -998) 41077) ((-605 . -229) 41024) ((-591 . -610) 41006) ((-591 . -611) NIL) ((-689 . -846) T) ((-475 . -229) 40956) ((-487 . -1045) T) ((-1160 . -998) 40922) ((-88 . -440) T) ((-88 . -395) T) ((-217 . -1045) T) ((-1119 . -998) 40888) ((-1073 . -722) T) ((-708 . -1105) T) ((-594 . -290) 40867) ((-593 . -290) 40846) ((-487 . -243) T) ((-487 . -233) T) ((-217 . -243) T) ((-217 . -233) T) ((-1158 . -610) 40828) ((-868 . -38) 40780) ((-359 . -722) T) ((-353 . -722) T) ((-345 . -722) T) ((-108 . -790) T) ((-108 . -787) T) ((-708 . -23) T) ((-108 . -722) T) ((-520 . -1245) 40764) ((-1285 . -25) T) ((-474 . -284) 40730) ((-1285 . -21) T) ((-1220 . -309) 40669) ((-1169 . -102) T) ((-40 . -145) 40641) ((-40 . -147) 40613) ((-520 . -601) 40590) ((-1106 . -643) 40438) ((-599 . -309) 40376) ((-45 . -646) 40326) ((-45 . -661) 40276) ((-45 . -373) 40226) ((-1151 . -34) T) ((-867 . -844) NIL) ((-649 . -131) T) ((-485 . -610) 40208) ((-240 . -286) 40185) ((-186 . -1093) T) ((-642 . -34) T) ((-629 . -34) T) ((-1080 . -452) 40136) ((-812 . -514) 40010) ((-778 . -452) 39941) ((-776 . -452) 39892) ((-454 . -452) 39843) ((-948 . -411) 39827) ((-727 . -610) 39809) ((-251 . -713) 39751) ((-250 . -713) 39693) ((-727 . -611) 39554) ((-481 . -411) 39538) ((-339 . -302) T) ((-524 . -93) T) ((-351 . -916) T) ((-996 . -102) 39516) ((-1020 . -846) T) ((-60 . -514) 39449) ((-1220 . -1144) 39401) ((-1000 . -286) NIL) ((-225 . -1052) T) ((-379 . -824) T) ((-1106 . -34) T) ((-580 . -452) T) ((-518 . -452) T) ((-1224 . -1086) 39385) ((-1224 . -1093) 39363) ((-240 . -601) 39340) ((-1224 . -1088) 39297) ((-1167 . -610) 39279) ((-1166 . -610) 39261) ((-1160 . -610) 39243) ((-1160 . -611) NIL) ((-1119 . -610) 39225) ((-868 . -400) 39209) ((-536 . -102) T) ((-1241 . -38) 39050) ((-1220 . -38) 38864) ((-866 . -147) T) ((-698 . -613) 38848) ((-580 . -402) T) ((-48 . -846) T) ((-518 . -402) T) ((-1253 . -102) T) ((-1243 . -21) T) ((-1243 . -25) T) ((-1106 . -787) 38827) ((-1106 . -790) 38778) ((-1106 . -789) 38757) ((-989 . -1093) T) ((-1023 . -34) T) ((-858 . -1093) T) ((-1106 . -722) 38667) ((-659 . -102) T) ((-641 . -102) T) ((-549 . -288) 38646) ((-1181 . -102) T) ((-476 . -34) T) ((-463 . -34) T) ((-355 . -102) T) ((-352 . -102) T) ((-344 . -102) T) ((-264 . -102) T) ((-247 . -102) T) ((-477 . -307) T) ((-1056 . -1052) T) ((-948 . -1052) T) ((-316 . -636) 38552) ((-313 . -636) 38513) ((-481 . -1052) T) ((-479 . -102) T) ((-436 . -610) 38495) ((-1165 . -1093) T) ((-1118 . -1093) T) ((-850 . -1093) T) ((-1134 . -102) T) ((-812 . -290) 38426) ((-959 . -1051) 38309) ((-477 . -1018) T) ((-731 . -1051) 38279) ((-453 . -1051) 38249) ((-1140 . -1114) 38233) ((-1095 . -514) 38166) ((-959 . -111) 38035) ((-906 . -102) T) ((-731 . -111) 38000) ((-525 . -490) 37981) ((-525 . -610) 37947) ((-59 . -102) 37897) ((-520 . -611) 37858) ((-520 . -610) 37770) ((-519 . -102) 37748) ((-516 . -102) 37698) ((-497 . -102) 37676) ((-496 . -102) 37626) ((-453 . -111) 37589) ((-251 . -172) 37568) ((-250 . -172) 37547) ((-418 . -1051) 37521) ((-1202 . -969) 37483) ((-995 . -1105) T) ((-1128 . -613) 37464) ((-939 . -514) 37397) ((-487 . -791) T) ((-474 . -38) 37238) ((-418 . -111) 37205) ((-487 . -788) T) ((-996 . -309) 37143) ((-217 . -791) T) ((-217 . -788) T) ((-995 . -23) T) ((-708 . -131) T) ((-1220 . -400) 37113) ((-316 . -25) 36965) ((-169 . -411) 36949) ((-316 . -21) 36820) ((-313 . -25) T) ((-313 . -21) T) ((-860 . -368) T) ((-959 . -613) 36673) ((-110 . -34) T) ((-731 . -613) 36629) ((-711 . -613) 36611) ((-482 . -643) 36459) ((-867 . -1052) T) ((-591 . -288) 36434) ((-579 . -147) T) ((-563 . -147) T) ((-495 . -147) T) ((-1165 . -713) 36263) ((-1118 . -713) 36112) ((-1113 . -636) 36094) ((-850 . -713) 36064) ((-665 . -1208) T) ((-1 . -102) T) ((-418 . -613) 35972) ((-240 . -610) 35703) ((-1108 . -1093) T) ((-1230 . -411) 35687) ((-1181 . -309) 35491) ((-959 . -1045) T) ((-731 . -1045) T) ((-711 . -1045) T) ((-640 . -1093) 35441) ((-1049 . -643) 35425) ((-851 . -411) 35409) ((-511 . -102) T) ((-507 . -102) T) ((-247 . -309) 35396) ((-264 . -309) 35383) ((-959 . -326) 35362) ((-385 . -643) 35346) ((-479 . -309) 35150) ((-251 . -514) 35083) ((-665 . -1034) 34979) ((-250 . -514) 34912) ((-1134 . -309) 34838) ((-815 . -1093) T) ((-795 . -1051) 34822) ((-1249 . -286) 34807) ((-1242 . -286) 34792) ((-1221 . -286) 34640) ((-386 . -1093) T) ((-324 . -1093) T) ((-418 . -1045) T) ((-169 . -1052) T) ((-59 . -309) 34578) ((-795 . -111) 34557) ((-593 . -286) 34542) ((-519 . -309) 34480) ((-516 . -309) 34418) ((-497 . -309) 34356) ((-496 . -309) 34294) ((-418 . -233) 34273) ((-482 . -34) T) ((-1000 . -611) 34203) ((-225 . -1093) T) ((-1000 . -610) 34163) ((-967 . -610) 34123) ((-967 . -611) 34098) ((-910 . -610) 34080) ((-694 . -147) T) ((-696 . -916) T) ((-696 . -816) T) ((-427 . -610) 34062) ((-1113 . -21) T) ((-1113 . -25) T) ((-665 . -377) 34046) ((-116 . -916) T) ((-868 . -231) 34030) ((-78 . -1208) T) ((-126 . -125) 34014) ((-1049 . -34) T) ((-1279 . -1034) 33988) ((-1277 . -1034) 33945) ((-1230 . -1052) T) ((-851 . -1052) T) ((-482 . -787) 33924) ((-355 . -1144) 33903) ((-352 . -1144) 33882) ((-344 . -1144) 33861) ((-482 . -790) 33812) ((-482 . -789) 33791) ((-227 . -34) T) ((-482 . -722) 33701) ((-795 . -613) 33549) ((-60 . -489) 33533) ((-570 . -1052) T) ((-1165 . -172) 33424) ((-1118 . -172) 33335) ((-1056 . -1093) T) ((-1080 . -945) 33280) ((-948 . -1093) T) ((-813 . -643) 33231) ((-778 . -945) 33200) ((-709 . -1093) T) ((-776 . -945) 33167) ((-516 . -282) 33151) ((-665 . -896) 33110) ((-481 . -1093) T) ((-454 . -945) 33077) ((-79 . -1208) T) ((-355 . -38) 33042) ((-352 . -38) 33007) ((-344 . -38) 32972) ((-264 . -38) 32821) ((-247 . -38) 32670) ((-906 . -1144) T) ((-524 . -490) 32651) ((-620 . -147) 32630) ((-620 . -145) 32609) ((-524 . -610) 32575) ((-117 . -147) T) ((-117 . -145) NIL) ((-414 . -722) T) ((-795 . -1045) T) ((-343 . -452) T) ((-1249 . -998) 32541) ((-1242 . -998) 32507) ((-1221 . -998) 32473) ((-906 . -38) 32438) ((-225 . -713) 32403) ((-319 . -47) 32373) ((-40 . -409) 32345) ((-140 . -610) 32327) ((-995 . -131) T) ((-811 . -1208) T) ((-174 . -916) T) ((-548 . -368) T) ((-603 . -613) 32308) ((-343 . -402) T) ((-666 . -613) 32289) ((-180 . -613) 32270) ((-161 . -613) 32251) ((-156 . -613) 32232) ((-154 . -613) 32213) ((-520 . -288) 32190) ((-1220 . -231) 32160) ((-811 . -1034) 31987) ((-45 . -34) T) ((-676 . -102) T) ((-671 . -102) T) ((-657 . -102) T) ((-649 . -21) T) ((-649 . -25) T) ((-1095 . -489) 31971) ((-670 . -1208) T) ((-478 . -102) T) ((-245 . -102) 31921) ((-546 . -840) T) ((-138 . -102) T) ((-137 . -102) T) ((-133 . -102) T) ((-867 . -1093) T) ((-1171 . -643) 31846) ((-1056 . -713) 31833) ((-727 . -1051) 31676) ((-1165 . -514) 31623) ((-948 . -713) 31472) ((-1118 . -514) 31424) ((-1268 . -1093) T) ((-1267 . -1093) T) ((-481 . -713) 31273) ((-67 . -610) 31255) ((-727 . -111) 31084) ((-939 . -489) 31068) ((-1269 . -643) 31028) ((-813 . -722) T) ((-1167 . -1051) 30911) ((-1166 . -1051) 30746) ((-1160 . -1051) 30536) ((-1119 . -1051) 30419) ((-999 . -1212) T) ((-1087 . -102) 30397) ((-811 . -377) 30366) ((-578 . -610) 30348) ((-546 . -1093) T) ((-999 . -555) T) ((-1167 . -111) 30217) ((-1166 . -111) 30038) ((-1160 . -111) 29807) ((-1119 . -111) 29676) ((-1098 . -1096) 29640) ((-379 . -844) T) ((-1249 . -610) 29622) ((-1242 . -610) 29604) ((-1221 . -610) 29586) ((-1221 . -611) NIL) ((-240 . -288) 29563) ((-40 . -452) T) ((-225 . -172) T) ((-169 . -1093) T) ((-727 . -613) 29348) ((-689 . -147) T) ((-689 . -145) NIL) ((-594 . -610) 29330) ((-593 . -610) 29312) ((-894 . -1093) T) ((-837 . -1093) T) ((-804 . -1093) T) ((-765 . -1093) T) ((-653 . -848) 29296) ((-672 . -1093) T) ((-811 . -896) 29228) ((-1213 . -368) T) ((-40 . -402) NIL) ((-1167 . -613) 29110) ((-1113 . -656) T) ((-867 . -713) 29055) ((-251 . -489) 29039) ((-250 . -489) 29023) ((-1166 . -613) 28766) ((-1160 . -613) 28561) ((-708 . -636) 28509) ((-648 . -643) 28483) ((-1119 . -613) 28365) ((-295 . -34) T) ((-727 . -1045) T) ((-580 . -1264) 28352) ((-518 . -1264) 28329) ((-1230 . -1093) T) ((-1165 . -290) 28240) ((-1118 . -290) 28171) ((-1056 . -172) T) ((-851 . -1093) T) ((-948 . -172) 28082) ((-778 . -1233) 28066) ((-640 . -514) 27999) ((-77 . -610) 27981) ((-727 . -326) 27946) ((-1171 . -722) T) ((-570 . -1093) T) ((-481 . -172) 27857) ((-245 . -309) 27795) ((-1135 . -1105) T) ((-70 . -610) 27777) ((-1269 . -722) T) ((-1167 . -1045) T) ((-1166 . -1045) T) ((-327 . -102) 27727) ((-1160 . -1045) T) ((-1135 . -23) T) ((-1119 . -1045) T) ((-91 . -1114) 27711) ((-862 . -1105) T) ((-1167 . -233) 27670) ((-1166 . -243) 27649) ((-1166 . -233) 27601) ((-1160 . -233) 27488) ((-1160 . -243) 27467) ((-319 . -896) 27373) ((-862 . -23) T) ((-169 . -713) 27201) ((-407 . -1212) T) ((-1094 . -368) T) ((-1020 . -147) T) ((-999 . -363) T) ((-866 . -452) T) ((-939 . -286) 27178) ((-316 . -846) T) ((-313 . -846) NIL) ((-870 . -102) T) ((-708 . -25) T) ((-407 . -555) T) ((-708 . -21) T) ((-525 . -613) 27159) ((-354 . -147) 27141) ((-354 . -145) T) ((-1140 . -1093) 27119) ((-453 . -716) T) ((-75 . -610) 27101) ((-114 . -846) T) ((-245 . -282) 27085) ((-240 . -1051) 26982) ((-81 . -610) 26964) ((-731 . -368) 26917) ((-1169 . -824) T) ((-733 . -235) 26901) ((-1152 . -1208) T) ((-141 . -235) 26883) ((-240 . -111) 26773) ((-1230 . -713) 26602) ((-48 . -147) T) ((-867 . -172) T) ((-851 . -713) 26572) ((-484 . -1208) T) ((-948 . -514) 26519) ((-648 . -722) T) ((-570 . -713) 26506) ((-1030 . -1052) T) ((-481 . -514) 26449) ((-939 . -19) 26433) ((-939 . -601) 26410) ((-812 . -611) NIL) ((-812 . -610) 26392) ((-1000 . -1051) 26342) ((-413 . -610) 26324) ((-251 . -286) 26301) ((-250 . -286) 26278) ((-487 . -905) NIL) ((-316 . -29) 26248) ((-108 . -1208) T) ((-999 . -1105) T) ((-217 . -905) NIL) ((-910 . -1051) 26200) ((-1073 . -1034) 26096) ((-1000 . -111) 26030) ((-999 . -23) T) ((-733 . -690) 26014) ((-264 . -231) 25998) ((-427 . -1051) 25982) ((-379 . -1052) T) ((-240 . -613) 25712) ((-910 . -111) 25650) ((-689 . -1196) NIL) ((-487 . -643) 25600) ((-108 . -880) 25582) ((-108 . -882) 25564) ((-689 . -1193) NIL) ((-217 . -643) 25514) ((-359 . -1034) 25498) ((-353 . -1034) 25482) ((-327 . -309) 25420) ((-345 . -1034) 25404) ((-225 . -290) T) ((-427 . -111) 25383) ((-60 . -610) 25315) ((-169 . -172) T) ((-1113 . -846) T) ((-108 . -1034) 25275) ((-888 . -1093) T) ((-832 . -1052) T) ((-823 . -1052) T) ((-689 . -35) NIL) ((-689 . -95) NIL) ((-313 . -988) 25236) ((-183 . -102) T) ((-579 . -452) T) ((-563 . -452) T) ((-495 . -452) T) ((-407 . -363) T) ((-240 . -1045) 25166) ((-1143 . -34) T) ((-477 . -916) T) ((-995 . -636) 25114) ((-251 . -601) 25091) ((-250 . -601) 25068) ((-1073 . -377) 25052) ((-867 . -514) 24960) ((-240 . -233) 24912) ((-1151 . -1208) T) ((-1000 . -613) 24862) ((-910 . -613) 24799) ((-820 . -610) 24781) ((-1280 . -1105) T) ((-1272 . -610) 24763) ((-1230 . -172) 24654) ((-427 . -613) 24623) ((-108 . -377) 24605) ((-108 . -338) 24587) ((-1056 . -290) T) ((-948 . -290) 24518) ((-795 . -368) 24497) ((-642 . -1208) T) ((-629 . -1208) T) ((-481 . -290) 24428) ((-570 . -172) T) ((-327 . -282) 24412) ((-1280 . -23) T) ((-1202 . -102) T) ((-1189 . -1093) T) ((-1081 . -1093) T) ((-1069 . -1093) T) ((-83 . -610) 24394) ((-1176 . -840) T) ((-1175 . -840) T) ((-707 . -102) T) ((-355 . -349) 24373) ((-605 . -1093) T) ((-352 . -349) 24352) ((-344 . -349) 24331) ((-475 . -1093) T) ((-1181 . -229) 24281) ((-264 . -253) 24243) ((-1135 . -131) T) ((-605 . -607) 24219) ((-1073 . -896) 24152) ((-1000 . -1045) T) ((-910 . -1045) T) ((-475 . -607) 24131) ((-1160 . -788) NIL) ((-1160 . -791) NIL) ((-1095 . -611) 24092) ((-479 . -229) 24042) ((-1095 . -610) 24024) ((-1000 . -243) T) ((-1000 . -233) T) ((-427 . -1045) T) ((-954 . -1093) 23974) ((-910 . -243) T) ((-862 . -131) T) ((-694 . -452) T) ((-839 . -1105) 23953) ((-108 . -896) NIL) ((-1202 . -284) 23919) ((-868 . -844) 23898) ((-1106 . -1208) T) ((-901 . -722) T) ((-169 . -514) 23810) ((-995 . -25) T) ((-901 . -473) T) ((-407 . -1105) T) ((-487 . -790) T) ((-487 . -787) T) ((-906 . -349) T) ((-487 . -722) T) ((-217 . -790) T) ((-217 . -787) T) ((-995 . -21) T) ((-217 . -722) T) ((-839 . -23) 23762) ((-524 . -613) 23743) ((-1176 . -1093) T) ((-319 . -307) 23722) ((-1175 . -1093) T) ((-1031 . -235) 23668) ((-407 . -23) T) ((-939 . -611) 23629) ((-939 . -610) 23541) ((-640 . -489) 23525) ((-45 . -1006) 23475) ((-614 . -963) T) ((-491 . -102) T) ((-331 . -610) 23457) ((-1106 . -1034) 23284) ((-591 . -646) 23266) ((-130 . -1093) T) ((-128 . -1093) T) ((-591 . -373) 23248) ((-343 . -1264) 23225) ((-439 . -610) 23207) ((-1023 . -1208) T) ((-867 . -290) T) ((-1230 . -514) 23154) ((-476 . -1208) T) ((-463 . -1208) T) ((-584 . -102) T) ((-1165 . -286) 23081) ((-620 . -452) 23060) ((-996 . -991) 23044) ((-1272 . -382) 23016) ((-517 . -1093) T) ((-117 . -452) T) ((-1188 . -102) T) ((-1085 . -1093) 22994) ((-1030 . -1093) T) ((-1108 . -93) T) ((-889 . -846) T) ((-351 . -1212) T) ((-1249 . -1051) 22877) ((-1106 . -377) 22846) ((-1242 . -1051) 22681) ((-1221 . -1051) 22471) ((-1249 . -111) 22340) ((-1242 . -111) 22161) ((-1221 . -111) 21930) ((-1202 . -309) 21917) ((-351 . -555) T) ((-365 . -610) 21899) ((-289 . -307) T) ((-594 . -1051) 21872) ((-593 . -1051) 21755) ((-361 . -1093) T) ((-322 . -1093) T) ((-251 . -610) 21716) ((-250 . -610) 21677) ((-999 . -131) T) ((-632 . -23) T) ((-689 . -409) 21644) ((-604 . -23) T) ((-653 . -102) T) ((-594 . -111) 21615) ((-593 . -111) 21484) ((-379 . -1093) T) ((-336 . -102) T) ((-169 . -290) 21395) ((-1220 . -844) 21348) ((-710 . -1052) T) ((-1140 . -514) 21281) ((-1106 . -896) 21213) ((-832 . -1093) T) ((-823 . -1093) T) ((-821 . -1093) T) ((-97 . -102) T) ((-144 . -846) T) ((-609 . -880) 21197) ((-110 . -1208) T) ((-1080 . -102) T) ((-1057 . -34) T) ((-778 . -102) T) ((-776 . -102) T) ((-1249 . -613) 21079) ((-1242 . -613) 20822) ((-461 . -102) T) ((-454 . -102) T) ((-1221 . -613) 20617) ((-240 . -791) 20568) ((-240 . -788) 20519) ((-644 . -102) T) ((-594 . -613) 20477) ((-593 . -613) 20359) ((-1230 . -290) 20270) ((-659 . -631) 20254) ((-186 . -610) 20236) ((-640 . -286) 20213) ((-1030 . -713) 20197) ((-570 . -290) T) ((-959 . -643) 20122) ((-1280 . -131) T) ((-731 . -643) 20082) ((-711 . -643) 20069) ((-275 . -102) T) ((-453 . -643) 19999) ((-50 . -102) T) ((-580 . -102) T) ((-518 . -102) T) ((-1249 . -1045) T) ((-1242 . -1045) T) ((-1221 . -1045) T) ((-1249 . -233) 19958) ((-322 . -713) 19940) ((-1242 . -243) 19919) ((-1242 . -233) 19871) ((-1221 . -233) 19758) ((-1221 . -243) 19737) ((-1202 . -38) 19634) ((-1000 . -791) T) ((-594 . -1045) T) ((-593 . -1045) T) ((-1000 . -788) T) ((-967 . -791) T) ((-967 . -788) T) ((-868 . -1052) T) ((-866 . -865) 19618) ((-109 . -610) 19600) ((-689 . -452) T) ((-379 . -713) 19565) ((-418 . -643) 19539) ((-708 . -846) 19518) ((-707 . -38) 19483) ((-593 . -233) 19442) ((-40 . -720) 19414) ((-351 . -329) 19391) ((-351 . -363) T) ((-1073 . -307) 19342) ((-294 . -1105) 19223) ((-1099 . -1208) T) ((-171 . -102) T) ((-1224 . -610) 19190) ((-839 . -131) 19142) ((-640 . -1245) 19126) ((-832 . -713) 19096) ((-823 . -713) 19066) ((-482 . -1208) T) ((-359 . -307) T) ((-353 . -307) T) ((-345 . -307) T) ((-640 . -601) 19043) ((-407 . -131) T) ((-520 . -661) 19027) ((-108 . -307) T) ((-294 . -23) 18910) ((-520 . -646) 18894) ((-689 . -402) NIL) ((-520 . -373) 18878) ((-291 . -610) 18860) ((-91 . -1093) 18838) ((-108 . -1018) T) ((-563 . -143) T) ((-1257 . -151) 18822) ((-482 . -1034) 18649) ((-1243 . -145) 18610) ((-1243 . -147) 18571) ((-1049 . -1208) T) ((-989 . -610) 18553) ((-858 . -610) 18535) ((-812 . -1051) 18378) ((-1268 . -93) T) ((-1267 . -93) T) ((-1165 . -611) NIL) ((-1089 . -1093) T) ((-1083 . -1093) T) ((-1080 . -309) 18365) ((-1067 . -1093) T) ((-227 . -1208) T) ((-1060 . -1093) T) ((-1032 . -1093) T) ((-1015 . -1093) T) ((-778 . -309) 18352) ((-776 . -309) 18339) ((-1165 . -610) 18321) ((-812 . -111) 18150) ((-1118 . -610) 18132) ((-623 . -1093) T) ((-576 . -173) T) ((-529 . -173) T) ((-454 . -309) 18119) ((-483 . -1093) T) ((-1118 . -611) 17867) ((-1030 . -172) T) ((-939 . -288) 17844) ((-218 . -1093) T) ((-850 . -610) 17826) ((-605 . -514) 17609) ((-81 . -613) 17550) ((-814 . -1034) 17534) ((-475 . -514) 17326) ((-959 . -722) T) ((-731 . -722) T) ((-711 . -722) T) ((-351 . -1105) T) ((-1172 . -610) 17308) ((-223 . -102) T) ((-482 . -377) 17277) ((-515 . -1093) T) ((-510 . -1093) T) ((-508 . -1093) T) ((-795 . -643) 17251) ((-1020 . -452) T) ((-954 . -514) 17184) ((-351 . -23) T) ((-632 . -131) T) ((-604 . -131) T) ((-354 . -452) T) ((-240 . -368) 17163) ((-379 . -172) T) ((-1241 . -1052) T) ((-1220 . -1052) T) ((-225 . -998) T) ((-812 . -613) 16900) ((-694 . -387) T) ((-418 . -722) T) ((-696 . -1212) T) ((-1135 . -636) 16848) ((-579 . -865) 16832) ((-1272 . -1051) 16816) ((-1152 . -1184) 16792) ((-696 . -555) T) ((-126 . -1093) 16770) ((-710 . -1093) T) ((-482 . -896) 16702) ((-249 . -1093) T) ((-187 . -1093) T) ((-653 . -38) 16672) ((-354 . -402) T) ((-316 . -147) 16651) ((-316 . -145) 16630) ((-128 . -514) NIL) ((-116 . -555) T) ((-313 . -147) 16586) ((-313 . -145) 16542) ((-48 . -452) T) ((-162 . -1093) T) ((-157 . -1093) T) ((-1152 . -107) 16489) ((-778 . -1144) 16467) ((-684 . -34) T) ((-1272 . -111) 16446) ((-549 . -34) T) ((-484 . -107) 16430) ((-251 . -288) 16407) ((-250 . -288) 16384) ((-867 . -286) 16335) ((-45 . -1208) T) ((-1214 . -840) T) ((-812 . -1045) T) ((-1171 . -47) 16312) ((-812 . -326) 16274) ((-1080 . -38) 16123) ((-812 . -233) 16102) ((-778 . -38) 15931) ((-776 . -38) 15780) ((-1108 . -490) 15761) ((-454 . -38) 15610) ((-1108 . -610) 15576) ((-1111 . -102) T) ((-640 . -611) 15537) ((-640 . -610) 15449) ((-580 . -1144) T) ((-518 . -1144) T) ((-1140 . -489) 15433) ((-1194 . -1093) 15411) ((-1135 . -25) T) ((-1135 . -21) T) ((-1272 . -613) 15360) ((-474 . -1052) T) ((-1214 . -1093) T) ((-1221 . -788) NIL) ((-1221 . -791) NIL) ((-995 . -846) 15339) ((-834 . -1093) T) ((-815 . -610) 15321) ((-862 . -21) T) ((-862 . -25) T) ((-795 . -722) T) ((-174 . -1212) T) ((-580 . -38) 15286) ((-518 . -38) 15251) ((-386 . -610) 15233) ((-324 . -610) 15215) ((-169 . -286) 15173) ((-63 . -1208) T) ((-112 . -102) T) ((-868 . -1093) T) ((-174 . -555) T) ((-710 . -713) 15143) ((-294 . -131) 15026) ((-225 . -610) 15008) ((-225 . -611) 14938) ((-999 . -636) 14877) ((-1272 . -1045) T) ((-1113 . -147) T) ((-629 . -1184) 14852) ((-727 . -905) 14831) ((-591 . -34) T) ((-642 . -107) 14815) ((-629 . -107) 14761) ((-1230 . -286) 14688) ((-727 . -643) 14613) ((-295 . -1208) T) ((-1171 . -1034) 14509) ((-939 . -615) 14486) ((-576 . -575) T) ((-576 . -527) T) ((-529 . -527) T) ((-1160 . -905) NIL) ((-1056 . -611) 14401) ((-1056 . -610) 14383) ((-948 . -610) 14365) ((-709 . -490) 14315) ((-343 . -102) T) ((-251 . -1051) 14212) ((-250 . -1051) 14109) ((-394 . -102) T) ((-31 . -1093) T) ((-948 . -611) 13970) ((-709 . -610) 13905) ((-1270 . -1201) 13874) ((-481 . -610) 13856) ((-481 . -611) 13717) ((-247 . -411) 13701) ((-264 . -411) 13685) ((-251 . -111) 13575) ((-250 . -111) 13465) ((-1167 . -643) 13390) ((-1166 . -643) 13287) ((-1160 . -643) 13139) ((-1119 . -643) 13064) ((-351 . -131) T) ((-82 . -441) T) ((-82 . -395) T) ((-999 . -25) T) ((-999 . -21) T) ((-869 . -1093) 13015) ((-868 . -713) 12967) ((-379 . -290) T) ((-169 . -998) 12919) ((-689 . -387) T) ((-995 . -993) 12903) ((-696 . -1105) T) ((-689 . -166) 12885) ((-1241 . -1093) T) ((-1220 . -1093) T) ((-316 . -1193) 12864) ((-316 . -1196) 12843) ((-1157 . -102) T) ((-316 . -955) 12822) ((-134 . -1105) T) ((-116 . -1105) T) ((-599 . -1255) 12806) ((-696 . -23) T) ((-599 . -1093) 12756) ((-316 . -95) 12735) ((-91 . -514) 12668) ((-174 . -363) T) ((-251 . -613) 12398) ((-250 . -613) 12128) ((-316 . -35) 12107) ((-605 . -489) 12041) ((-134 . -23) T) ((-116 . -23) T) ((-962 . -102) T) ((-714 . -1093) T) ((-475 . -489) 11978) ((-407 . -636) 11926) ((-648 . -1034) 11822) ((-954 . -489) 11806) ((-355 . -1052) T) ((-352 . -1052) T) ((-344 . -1052) T) ((-264 . -1052) T) ((-247 . -1052) T) ((-867 . -611) NIL) ((-867 . -610) 11788) ((-1268 . -490) 11769) ((-1267 . -490) 11750) ((-1280 . -21) T) ((-1268 . -610) 11716) ((-1267 . -610) 11682) ((-570 . -998) T) ((-727 . -722) T) ((-1280 . -25) T) ((-251 . -1045) 11612) ((-250 . -1045) 11542) ((-72 . -1208) T) ((-251 . -233) 11494) ((-250 . -233) 11446) ((-40 . -102) T) ((-906 . -1052) T) ((-128 . -489) 11428) ((-1174 . -102) T) ((-1167 . -722) T) ((-1166 . -722) T) ((-1160 . -722) T) ((-1160 . -787) NIL) ((-1160 . -790) NIL) ((-950 . -102) T) ((-917 . -102) T) ((-1119 . -722) T) ((-767 . -102) T) ((-667 . -102) T) ((-546 . -610) 11410) ((-474 . -1093) T) ((-339 . -1105) T) ((-174 . -1105) T) ((-319 . -916) 11389) ((-1241 . -713) 11230) ((-868 . -172) T) ((-1220 . -713) 11044) ((-839 . -21) 10996) ((-839 . -25) 10948) ((-245 . -1142) 10932) ((-126 . -514) 10865) ((-407 . -25) T) ((-407 . -21) T) ((-339 . -23) T) ((-169 . -611) 10631) ((-169 . -610) 10613) ((-174 . -23) T) ((-640 . -288) 10590) ((-520 . -34) T) ((-894 . -610) 10572) ((-89 . -1208) T) ((-837 . -610) 10554) ((-804 . -610) 10536) ((-765 . -610) 10518) ((-672 . -610) 10500) ((-240 . -643) 10348) ((-1169 . -1093) T) ((-1165 . -1051) 10171) ((-1143 . -1208) T) ((-1118 . -1051) 10014) ((-850 . -1051) 9998) ((-1224 . -615) 9982) ((-1165 . -111) 9791) ((-1118 . -111) 9620) ((-850 . -111) 9599) ((-1230 . -611) NIL) ((-1230 . -610) 9581) ((-343 . -1144) T) ((-851 . -610) 9563) ((-1069 . -286) 9542) ((-80 . -1208) T) ((-1000 . -905) NIL) ((-605 . -286) 9518) ((-1194 . -514) 9451) ((-487 . -1208) T) ((-570 . -610) 9433) ((-475 . -286) 9412) ((-517 . -93) T) ((-217 . -1208) T) ((-1080 . -231) 9396) ((-1000 . -643) 9346) ((-289 . -916) T) ((-813 . -307) 9325) ((-866 . -102) T) ((-778 . -231) 9309) ((-954 . -286) 9286) ((-910 . -643) 9238) ((-632 . -21) T) ((-632 . -25) T) ((-604 . -21) T) ((-547 . -102) T) ((-343 . -38) 9203) ((-689 . -720) 9170) ((-487 . -880) 9152) ((-487 . -882) 9134) ((-474 . -713) 8975) ((-217 . -880) 8957) ((-64 . -1208) T) ((-217 . -882) 8939) ((-604 . -25) T) ((-427 . -643) 8913) ((-1165 . -613) 8682) ((-487 . -1034) 8642) ((-868 . -514) 8554) ((-1118 . -613) 8346) ((-850 . -613) 8264) ((-217 . -1034) 8224) ((-240 . -34) T) ((-996 . -1093) 8202) ((-1241 . -172) 8133) ((-1220 . -172) 8064) ((-708 . -145) 8043) ((-708 . -147) 8022) ((-696 . -131) T) ((-136 . -465) 7999) ((-1140 . -610) 7931) ((-653 . -651) 7915) ((-128 . -286) 7890) ((-116 . -131) T) ((-477 . -1212) T) ((-605 . -601) 7866) ((-475 . -601) 7845) ((-336 . -335) 7814) ((-536 . -1093) T) ((-477 . -555) T) ((-1165 . -1045) T) ((-1118 . -1045) T) ((-850 . -1045) T) ((-240 . -787) 7793) ((-240 . -790) 7744) ((-240 . -789) 7723) ((-1165 . -326) 7700) ((-240 . -722) 7610) ((-954 . -19) 7594) ((-487 . -377) 7576) ((-487 . -338) 7558) ((-1118 . -326) 7530) ((-354 . -1264) 7507) ((-217 . -377) 7489) ((-217 . -338) 7471) ((-954 . -601) 7448) ((-1165 . -233) T) ((-659 . -1093) T) ((-641 . -1093) T) ((-1253 . -1093) T) ((-1181 . -1093) T) ((-1080 . -253) 7385) ((-355 . -1093) T) ((-352 . -1093) T) ((-344 . -1093) T) ((-264 . -1093) T) ((-247 . -1093) T) ((-84 . -1208) T) ((-127 . -102) 7363) ((-121 . -102) 7341) ((-1181 . -607) 7320) ((-479 . -1093) T) ((-1134 . -1093) T) ((-479 . -607) 7299) ((-251 . -791) 7250) ((-251 . -788) 7201) ((-250 . -791) 7152) ((-40 . -1144) NIL) ((-250 . -788) 7103) ((-1108 . -613) 7084) ((-128 . -19) 7066) ((-1073 . -916) 7017) ((-1000 . -790) T) ((-1000 . -787) T) ((-1000 . -722) T) ((-967 . -790) T) ((-128 . -601) 6992) ((-910 . -722) T) ((-91 . -489) 6976) ((-487 . -896) NIL) ((-906 . -1093) T) ((-225 . -1051) 6941) ((-868 . -290) T) ((-217 . -896) NIL) ((-829 . -1105) 6920) ((-59 . -1093) 6870) ((-519 . -1093) 6848) ((-516 . -1093) 6798) ((-497 . -1093) 6776) ((-496 . -1093) 6726) ((-579 . -102) T) ((-563 . -102) T) ((-495 . -102) T) ((-474 . -172) 6657) ((-359 . -916) T) ((-353 . -916) T) ((-345 . -916) T) ((-225 . -111) 6613) ((-829 . -23) 6565) ((-427 . -722) T) ((-108 . -916) T) ((-40 . -38) 6510) ((-108 . -816) T) ((-580 . -349) T) ((-518 . -349) T) ((-1220 . -514) 6370) ((-316 . -452) 6349) ((-313 . -452) T) ((-888 . -610) 6331) ((-832 . -286) 6310) ((-339 . -131) T) ((-174 . -131) T) ((-294 . -25) 6174) ((-294 . -21) 6057) ((-45 . -1184) 6036) ((-66 . -610) 6018) ((-55 . -102) T) ((-599 . -514) 5951) ((-45 . -107) 5901) ((-815 . -613) 5885) ((-1095 . -425) 5869) ((-1095 . -368) 5848) ((-386 . -613) 5832) ((-324 . -613) 5816) ((-1057 . -1208) T) ((-1056 . -1051) 5803) ((-948 . -1051) 5646) ((-1258 . -102) T) ((-1257 . -102) 5596) ((-1056 . -111) 5581) ((-481 . -1051) 5424) ((-659 . -713) 5408) ((-948 . -111) 5237) ((-225 . -613) 5187) ((-477 . -363) T) ((-355 . -713) 5139) ((-352 . -713) 5091) ((-344 . -713) 5043) ((-264 . -713) 4892) ((-247 . -713) 4741) ((-1249 . -643) 4666) ((-1221 . -905) NIL) ((-1089 . -93) T) ((-1083 . -93) T) ((-939 . -646) 4650) ((-1067 . -93) T) ((-481 . -111) 4479) ((-1060 . -93) T) ((-1032 . -93) T) ((-939 . -373) 4463) ((-248 . -102) T) ((-1015 . -93) T) ((-74 . -610) 4445) ((-959 . -47) 4424) ((-706 . -102) T) ((-694 . -102) T) ((-1 . -1093) T) ((-618 . -1105) T) ((-1242 . -643) 4321) ((-623 . -93) T) ((-1189 . -610) 4303) ((-1081 . -610) 4285) ((-126 . -489) 4269) ((-483 . -93) T) ((-1069 . -610) 4251) ((-390 . -23) T) ((-87 . -1208) T) ((-218 . -93) T) ((-1221 . -643) 4103) ((-906 . -713) 4068) ((-618 . -23) T) ((-605 . -610) 4050) ((-605 . -611) NIL) ((-475 . -611) NIL) ((-475 . -610) 4032) ((-511 . -1093) T) ((-507 . -1093) T) ((-351 . -25) T) ((-351 . -21) T) ((-127 . -309) 3970) ((-121 . -309) 3908) ((-594 . -643) 3895) ((-225 . -1045) T) ((-593 . -643) 3820) ((-379 . -998) T) ((-225 . -243) T) ((-225 . -233) T) ((-1056 . -613) 3792) ((-1056 . -615) 3773) ((-954 . -611) 3734) ((-954 . -610) 3646) ((-948 . -613) 3435) ((-866 . -38) 3422) ((-709 . -613) 3372) ((-1241 . -290) 3323) ((-1220 . -290) 3274) ((-481 . -613) 3059) ((-1113 . -452) T) ((-502 . -846) T) ((-316 . -1132) 3038) ((-995 . -147) 3017) ((-995 . -145) 2996) ((-495 . -309) 2983) ((-295 . -1184) 2962) ((-1176 . -610) 2944) ((-1175 . -610) 2926) ((-867 . -1051) 2871) ((-477 . -1105) T) ((-139 . -831) 2853) ((-620 . -102) T) ((-1194 . -489) 2837) ((-251 . -368) 2816) ((-250 . -368) 2795) ((-1056 . -1045) T) ((-295 . -107) 2745) ((-130 . -610) 2727) ((-128 . -611) NIL) ((-128 . -610) 2671) ((-117 . -102) T) ((-948 . -1045) T) ((-867 . -111) 2600) ((-477 . -23) T) ((-481 . -1045) T) ((-1056 . -233) T) ((-948 . -326) 2569) ((-481 . -326) 2526) ((-355 . -172) T) ((-352 . -172) T) ((-344 . -172) T) ((-264 . -172) 2437) ((-247 . -172) 2348) ((-959 . -1034) 2244) ((-517 . -490) 2225) ((-731 . -1034) 2196) ((-517 . -610) 2162) ((-1098 . -102) T) ((-1085 . -610) 2129) ((-1030 . -610) 2111) ((-1270 . -151) 2095) ((-1268 . -613) 2076) ((-1262 . -610) 2058) ((-1249 . -722) T) ((-1242 . -722) T) ((-1221 . -787) NIL) ((-1221 . -790) NIL) ((-169 . -1051) 1968) ((-906 . -172) T) ((-867 . -613) 1898) ((-1221 . -722) T) ((-1267 . -613) 1879) ((-999 . -342) 1853) ((-996 . -514) 1786) ((-839 . -846) 1765) ((-563 . -1144) T) ((-474 . -290) 1716) ((-594 . -722) T) ((-361 . -610) 1698) ((-322 . -610) 1680) ((-418 . -1034) 1576) ((-593 . -722) T) ((-407 . -846) 1527) ((-169 . -111) 1423) ((-829 . -131) 1375) ((-733 . -151) 1359) ((-1257 . -309) 1297) ((-487 . -307) T) ((-379 . -610) 1264) ((-520 . -1006) 1248) ((-379 . -611) 1162) ((-217 . -307) T) ((-141 . -151) 1144) ((-710 . -286) 1123) ((-487 . -1018) T) ((-579 . -38) 1110) ((-563 . -38) 1097) ((-495 . -38) 1062) ((-217 . -1018) T) ((-867 . -1045) T) ((-832 . -610) 1044) ((-823 . -610) 1026) ((-821 . -610) 1008) ((-812 . -905) 987) ((-1281 . -1105) T) ((-1230 . -1051) 810) ((-851 . -1051) 794) ((-867 . -243) T) ((-867 . -233) NIL) ((-684 . -1208) T) ((-1281 . -23) T) ((-812 . -643) 719) ((-549 . -1208) T) ((-418 . -338) 703) ((-570 . -1051) 690) ((-1230 . -111) 499) ((-696 . -636) 481) ((-851 . -111) 460) ((-381 . -23) T) ((-169 . -613) 238) ((-1181 . -514) 30) ((-657 . -1093) T) ((-676 . -1093) T) ((-671 . -1093) T)) \ No newline at end of file
diff --git a/src/share/algebra/compress.daase b/src/share/algebra/compress.daase
index eae6de58..789119cd 100644
--- a/src/share/algebra/compress.daase
+++ b/src/share/algebra/compress.daase
@@ -1,6 +1,6 @@
-(30 . 3443021569)
-(4410 |Enumeration| |Mapping| |Record| |Union| |ofCategory| |isDomain|
+(30 . 3443721765)
+(4411 |Enumeration| |Mapping| |Record| |Union| |ofCategory| |isDomain|
ATTRIBUTE |package| |domain| |category| CATEGORY |nobranch| AND |Join|
|ofType| SIGNATURE "failed" "algebra" |OneDimensionalArrayAggregate&|
|OneDimensionalArrayAggregate| |AbelianGroup&| |AbelianGroup|
@@ -477,661 +477,661 @@
|XPolynomial| |XPolynomialRing| |XRecursivePolynomial|
|ParadoxicalCombinatorsForStreams| |ZeroDimensionalSolvePackage|
|IntegerLinearDependence| |IntegerMod| |Enumeration| |Mapping|
- |Record| |Union| |e04naf| |oddlambert| |listOfMonoms|
- |monicRightDivide| |integral?| |processTemplate|
- |constantCoefficientRicDE| |factorsOfDegree| |LazardQuotient2|
- |nthExponent| |primitivePart| |createThreeSpace| |hitherPlane| |keys|
- |routines| |twoFactor| |selectAndPolynomials| |imagJ|
- |pushFortranOutputStack| |fortranComplex| |perfectNthPower?| |acsch|
- |factorFraction| |d02gaf| |delete!| |ptFunc| |phiCoord| |tracePowMod|
- |updatD| |popFortranOutputStack| |selectFiniteRoutines|
- |internalLastSubResultant| |cycleSplit!| |atom?| |e02ajf| GE |weight|
- |exactQuotient| |OMgetEndApp| |stoseLastSubResultant| |resetNew|
- |tValues| |color| |next| |invertibleElseSplit?| |integral| GT
- |coefficients| |putGraph| |cycleElt| |sqfrFactor| |Gamma| |OMgetError|
- |iisin| |OMParseError?| LE |composite| |xCoord|
- |selectIntegrationRoutines| |linGenPos| |setVariableOrder|
- |multiplyExponents| |graphCurves| |toScale| |middle| |c06eaf| LT
- |partialQuotients| |mesh?| |cCsc| |position!| |associator|
- |exponential1| |tanNa| |cAcsc| |numberOfCycles| |pToDmp| |andOperands|
- |monomials| |changeNameToObjf| |nil| |getMeasure| |freeOf?|
- |internalIntegrate0| |corrPoly| |basisOfCommutingElements| |finite?|
- |conditionP| |elem?| |factorByRecursion| |permutationRepresentation|
- |external?| |genericRightTrace| |cAcsch| |simplifyExp| |dequeue|
- |getMatch| |f07fdf| |factorSquareFreeByRecursion|
- |reducedDiscriminant| |edf2ef| |c02aff| |cSinh| |trapezoidalo|
- |condition| |karatsuba| |arity| |direction| |nextLatticePermutation|
- |prinshINFO| |regime| |radicalEigenvalues| |associative?|
- |approximate| |tubePointsDefault| |graeffe| |e02adf| |level| |comment|
- |addBadValue| |const| |totalfract| |basisOfCenter| |complex| |unit|
- |rk4a| |and?| |commonDenominator| |OMconnectTCP| |negative?| |eq|
- |monicModulo| |alphanumeric?| |discreteLog| |coerceP| |bottom!|
- |OMputAtp| |goodPoint| |s14abf| |delay| |open?| |iter| |iiatan|
- |symmetricRemainder| |cyclic?| |complexZeros| |matrixConcat3D|
- |noLinearFactor?| |someBasis| |clearTheIFTable| |changeVar| |refine|
- |close| |pointLists| |rspace| |aLinear| |clearFortranOutputStack|
- |Lazard2| |generalPosition| |cyclicEntries| |deleteRoutine!|
- |viewSizeDefault| |toseInvertibleSet| |e01sff| |doubleFloatFormat|
- |coefChoose| |hasoln| |curveColorPalette| |LyndonWordsList| |remove|
- |iicoth| |subMatrix| |nextNormalPrimitivePoly| |display| BY
- |expressIdealMember| |setLength!| |extensionDegree| |pmintegrate|
- |node?| |explogs2trigs| |lifting1| |halfExtendedResultant2| |f02bjf|
- |setClosed| |graphs| |lookup| |nextSublist| |solve1| |int| |mapCoef|
- |last| |Si| |roughUnitIdeal?| |createNormalElement| |viewWriteDefault|
- |bezoutResultant| |outputArgs| |debug3D| |lfinfieldint| |rightDivide|
- |assoc| |cAtan| |iicot| |leftPower| |subtractIfCan| |hex| |readInt32!|
- |anticoord| |ParCondList| |stoseInvertible?reg| |cyclicGroup|
- |dimensions| |inputBinaryFile| |singularAtInfinity?| |mapSolve|
- |solveid| |create| |binaryTournament| |externalList| |lfextlimint|
- |leftGcd| |reindex| |plus!| |makeSketch| |rootBound| |function|
- |s21bdf| |e02bdf| |SturmHabichtSequence| |input| |/\\| |mapDown!|
- |rightLcm| |id| |redpps| |orbits| |OMReadError?| |branchPoint?|
- |relationsIdeal| |removeSuperfluousCases| |ListOfTerms| |whitePoint|
- |library| |\\/| |maxPoints| |swap| |numberOfDivisors| |forLoop|
- |terms| |eval| |complexElementary| |htrigs| |setfirst!|
- |positiveRemainder| |coth2tanh| |nor| |prolateSpheroidal|
- |tanintegrate| |factorOfDegree| |lexico| |outputGeneral| |table|
- |applyRules| |d01aqf| |output| |compile| |torsion?| |domainOf|
- |OMputEndObject| |cAtanh| |Ei| |optpair| |d01akf| |wholeRadix| |or?|
- |new| |scan| |c06fuf| |dmpToHdmp| |bit?| |primitiveElement| |obj|
- |gcdcofact| |pol| |setMinPoints3D| |schema| |search|
- |zeroSetSplitIntoTriangularSystems| |has?| |makeSUP|
- |absolutelyIrreducible?| |patternVariable| |floor| |set| |cache|
- |dilog| |makeSeries| |c06gqf| |quatern| |cosSinInfo|
- |bivariatePolynomials| |sumOfKthPowerDivisors| |collectUnder|
- |univariatePolynomialsGcds| |exportedOperators| |sech2cosh| |sin|
- |returnTypeOf| |rightExactQuotient| |rischDEsys| |rootKerSimp|
- |complexRoots| |e01saf| |extension|
- |removeRoughlyRedundantFactorsInPols| |limitedIntegrate| |magnitude|
- |cos| |cSec| |alphanumeric| |c02agf| |stoseIntegralLastSubResultant|
- |sturmSequence| |reseed| |contours| |removeSinhSq| |mapBivariate|
- |rdHack1| |tan| |fortranLinkerArgs| |parametric?| |oddInfiniteProduct|
- |subResultantChain| |split!| |OMputString| |roughSubIdeal?| |cross|
- |ip4Address| |difference| |cot| |linearAssociatedLog| |bezoutMatrix|
- |mapGen| |cyclicParents| |surface| |ldf2lst| |primeFrobenius| |s17agf|
- |removeRoughlyRedundantFactorsInPol| |splitNodeOf!|
- |removeRedundantFactorsInContents| |sort| |sec| |derivative| |nthRoot|
- |clearTable!| |axesColorDefault| |delta| |generalLambert| |pow|
- |f02abf| |lowerCase| |OMputVariable| |exponent| |diophantineSystem|
- |csc| |resultantReduitEuclidean| |divergence| |errorInfo|
- |complexSolve| |fortranLiteral| |Is| |cardinality| |makeCos| |iroot|
- |binding| |asin| |replaceKthElement| |cAcot| |wrregime| |SFunction|
- |upDateBranches| |setProperties!| |true| |characteristic| |f02wef| ~=
- |lexGroebner| |resultantEuclideannaif| |acos| |basisOfRightNucloid|
- |patternMatchTimes| |OMgetAttr| |integralLastSubResultant| |palgint0|
- |left| |unary?| |fortranDouble| |currentScope| |completeHensel|
- |random| |baseRDE| |coerce| |hash| |atan| |basisOfRightNucleus|
- |resultantEuclidean| |elColumn2!| |bat| |f04atf| |right|
- |associatedEquations| |bfEntry| |exptMod| |e02gaf| |trivialIdeal?|
- |construct| |show| |count| |acot| |noKaratsuba| |knownInfBasis|
- |e01bff| |critMonD1| |prindINFO| |factorset| |writeByte!| =
- |removeZero| |mkPrim| |subresultantSequence| |asec|
- |clipPointsDefault| |iisqrt2| |sequences| |fortranLogical| |d01gaf|
- |deriv| |member?| |diagonals| |setMinPoints| |cscIfCan| |trace| |bits|
- |acsc| |safeFloor| |branchIfCan| |lambda| |logIfCan| |triangSolve|
- |complete| |d02kef| |qualifier| < |coth2trigh| |graphImage| |maxrow|
- |sinh| |dequeue!| |polyred| |buildSyntax| |iisech| |degreePartition|
- |setEmpty!| |intPatternMatch| > |nsqfree| |d02ejf| |cosh| |digamma|
- |doubleRank| |pile| |roughBase?| |fractRagits| |basisOfMiddleNucleus|
- |d02bbf| |OMputEndAtp| <= |basisOfCentroid| |selectsecond| |tanh|
- |intcompBasis| |yellow| |radicalEigenvector| |expenseOfEvaluationIF|
- |ideal| |max| >= |totalDegree| |infix| |enterPointData| |critMTonD1|
- |idealiserMatrix| |coth| |lazyEvaluate| |iExquo| |unmakeSUP|
- |bringDown| |jordanAdmissible?| |rangePascalTriangle| |crushedSet|
- |iitanh| |solve| |sech| |showSummary| |elRow1!| |goto| |infLex?|
- |nil?| |cn| |denominator| |outputBinaryFile| |ode| |postfix|
- |stoseInvertibleSetreg| |csch| |numericalIntegration|
- |commutativeEquality| |prepareDecompose| |cos2sec| |c06fpf| |insert!|
- |subResultantGcdEuclidean| + |rootNormalize| |changeThreshhold|
- |asinh| |showAttributes| |OMputBVar| |block| |bumptab|
- |showTheRoutinesTable| |leftRegularRepresentation| |rightDiscriminant|
- |lintgcd| - |scopes| |var1StepsDefault| |acosh| |evaluateInverse|
- |increase| |iiGamma| |rewriteSetWithReduction| |btwFact|
- |listRepresentation| |content| / |unitNormalize| |OMgetBind| |atanh|
- |normalise| |euclideanNormalForm| |elRow2!| |makeEq|
- |topFortranOutputStack| |algebraicSort| |consnewpol| |isPower|
- |setelt| |viewport2D| |acoth| |ramified?| |whileLoop| |totalGroebner|
- |testModulus| |parents| |sign| |shuffle| |maxRowIndex| |numberOfHues|
- |stirling2| |asech| |getZechTable| |accuracyIF| |prinpolINFO|
- |rewriteIdealWithHeadRemainder| |lSpaceBasis| |fTable| |sequence|
- |complexEigenvectors| |purelyAlgebraic?| |copy| |arg1| |subTriSet?|
- |genericLeftNorm| |factorSquareFreePolynomial| |closed?| |ran| |isOp|
- |coordinates| |rotatex| |lflimitedint| |multiple| |arg2| |randnum|
- |bombieriNorm| |compBound| |zeroDim?| |raisePolynomial| |imagi|
- |cCsch| |label| |outputFixed| |cCos| |applyQuote| |mapmult| |element?|
- |cExp| |badNum| |nilFactor| |sup| |safetyMargin| |cAsech|
- |OMputEndAttr| |autoCoerce| |mapMatrixIfCan| |conditions| |s17ahf|
- |leftLcm| |extractTop!| |removeIrreducibleRedundantFactors| |column|
- |OMsend| |numberOfComposites| |exponents| |match| |upperCase?|
- |supDimElseRittWu?| |sizeLess?| |bothWays| |result| |outputList|
- |sinIfCan| |collectQuasiMonic| |symmetricSquare| |constantRight|
- |ruleset| |indiceSubResultantEuclidean| |OMserve| |getGraph| |s17acf|
- |cubic| |properties| |expint| |deepestTail| |commutative?| |square?|
- |replace| |OMreadFile| |colorFunction| |UpTriBddDenomInv| |f04maf|
- |Aleph| |translate| |fortranLiteralLine| |unitVector|
- |leadingBasisTerm| |subHeight| |rightScalarTimes!| |cycleLength|
- |eyeDistance| |cyclicSubmodule| |thetaCoord| |stoseInvertible?|
- |algebraicVariables| |s18aff| |red| |rotatey| |suchThat|
- |setProperties| |explimitedint| |complementaryBasis| |leftZero|
- |e04fdf| |selectOrPolynomials| |completeSmith| |trim| |zeroDimPrime?|
- |term?| |bumprow| |innerEigenvectors| |remainder| |systemSizeIF|
- |option| |firstDenom| |optAttributes| |coerceListOfPairs| |leftMult|
- |symmetricGroup| |nextPrime| |weierstrass| |curryRight| |sdf2lst|
- |changeWeightLevel| |nullary?| |fixedPoint| |univariatePolynomial|
- |edf2df| |biRank| |infinite?| |stoseSquareFreePart| |nthCoef| |tRange|
- |measure| |constDsolve| |symbolTableOf| |nullity| |equality|
- |mergeDifference| |asinIfCan| |checkPrecision| |asecIfCan|
- |primPartElseUnitCanonical!| |heapSort| |factorSFBRlcUnit|
- |monicCompleteDecompose| |showTypeInOutput| |OMopenString| |mapUp!|
- |mesh| |basisOfLeftNucloid| |printingInfo?| |minRowIndex| |d01fcf|
- |startPolynomial| |computeInt| |perfectSqrt| |possiblyInfinite?|
- |cyclotomicDecomposition| |minrank| |lazyPseudoQuotient| |bytes|
- |OMputEndBind| |coordinate| |rightTrim| |eq?| |critM|
- |evenInfiniteProduct| |interpret| |sinhIfCan| |headReduced?|
- |setStatus!| |isList| |expandPower| |iiexp| |leftTrim| |saturate|
- |changeName| |addmod| |besselK| |product| |endSubProgram| |signAround|
- |qinterval| |semiIndiceSubResultantEuclidean| |factor1|
- |jacobiIdentity?| |minimumDegree| |ignore?| |goodnessOfFit| |ParCond|
- |contains?| |rCoord| |getCode| |OMputEndBVar| |write!|
- |primlimitedint| |retract| |tower| |primitivePart!| |divideIfCan!|
- |definingEquations| |computeBasis| |stop| |pToHdmp| |s18acf|
- |orthonormalBasis| |extractBottom!| |invertible?| |basisOfLeftNucleus|
- |nodes| |expandLog| |s17dgf| |gcdprim| |iiacsch| |realSolve|
- |rationalPoints| |normalizeIfCan| |d01amf| |bezoutDiscriminant|
- |useEisensteinCriterion| |semiResultantEuclidean1| |quickSort|
- |taylorRep| |assign| |euler| |findBinding| |kmax| |perspective|
- |hexDigit| |directory| |nthRootIfCan| |leadingExponent| |mix|
- |inverseIntegralMatrixAtInfinity| |chiSquare| |decrease|
- |countRealRoots| |continue| |iFTable| |lyndonIfCan|
- |eisensteinIrreducible?| |att2Result| |diagonalMatrix| |entry?|
- |cosIfCan| |getProperties| |complexNumeric| |cAcoth| |pquo| |pastel|
- |distdfact| |charpol| |gcdPrimitive| |exteriorDifferential|
- |extractClosed| |iiacoth| |hasHi| |clearDenominator|
- |mainCoefficients| |musserTrials| |categories| |lyndon?| |f01qcf|
- |generalizedEigenvectors| |associates?| |kernels| |alternative?|
- |euclideanGroebner| |exprex| |retractIfCan| |setOrder| |rightUnits|
- |iteratedInitials| |viewpoint| |jordanAlgebra?| |signatureAst|
- |associatorDependence| |univariate| |fixedDivisor| |internal?|
- |showTheFTable| |numer| |quasiComponent| |integralRepresents|
- |commutator| |meshFun2Var| |divideIfCan| |extendedIntegrate|
- |principalAncestors| |central?| |headRemainder| |compdegd| |denom|
- |withPredicates| |printTypes| |e01sbf| |move| |sizePascalTriangle|
- |null| |mightHaveRoots| |numberOfChildren| |mapExpon|
- |possiblyNewVariety?| |log2| |bivariate?| |subscript| |groebnerIdeal|
- |prod| |fortranInteger| |cAsin| |f02fjf| |lazyPrem| |factor| |augment|
- |not| |generate| SEGMENT |bandedHessian| |pi| |byteBuffer|
- |rightAlternative?| |oddintegers| |factorSquareFree| |tubeRadius|
- |sqrt| |e02aef| |currentCategoryFrame| |useNagFunctions| |and|
- |infinity| |continuedFraction| |rischDE| |leaf?| |cartesian|
- |mainMonomial| |nextNormalPoly| |s18def| |leftNorm| |gderiv|
- |incrementBy| |or| |semiDegreeSubResultantEuclidean| |showTheIFTable|
- |powers| |vconcat| |maxColIndex| |prepareSubResAlgo| |hermite|
- |nextPartition| |isAbsolutelyIrreducible?| |xor| |expand| |critT|
- |padicallyExpand| |mainSquareFreePart| |finiteBound| |graphState|
- |node| |convert| |generalizedInverse| |cCosh| |e02bcf| |ode2|
- |filterWhile| |case| |kernel| |leftFactorIfCan|
- |linearAssociatedOrder| |randomLC| |localReal?| |genericLeftTrace|
- |bag| |e02ahf| |OMsupportsCD?| |sum| |rightGcd| |degreeSubResultant|
- |rational?| |map| |Zero| |filterUntil| |draw| |expextendedint|
- |hessian| |aspFilename| |irreducible?| |useSingleFactorBound?|
- |comparison| |powerAssociative?| |eof?| |f02akf|
- |primPartElseUnitCanonical| |One| |removeSinSq| |select| |principal?|
- |critB| |members| |badValues| |definingInequation| |infinityNorm|
- |OMgetEndAttr| |maxPoints3D| |geometric| |port| |OMputEndApp|
- |padicFraction| |power| |mkcomm| |socf2socdf| |inRadical?| |inR?|
- |generators| |virtualDegree| |balancedBinaryTree| |lp| |rootSplit|
- |stopTableGcd!| |groebnerFactorize| |solveLinearlyOverQ| |bitCoef|
- |stiffnessAndStabilityOfODEIF| |leftUnits| |pointColor| |makeObject|
- |plenaryPower| |t| |brillhartTrials| |mkAnswer| |fillPascalTriangle|
- |maxint| |redPol| |setFieldInfo| |assert| |measure2Result| |ricDsolve|
- |totalDifferential| |normalized?| |rightPower| |bumptab1| |iomode|
- |lllp| |OMbindTCP| |mainMonomials| |midpoints| |exactQuotient!|
- |bracket| |elt| |rst| |coef| |permutations| |purelyTranscendental?|
- |hdmpToP| |discriminant| |splitSquarefree| |cup| |iicos| |readable?|
- |makeRecord| |tanQ| |kroneckerDelta| LODO2FUN |brillhartIrreducible?|
- |monomRDEsys| |rarrow| |genus| |leftTraceMatrix| |romberg|
- |setLabelValue| |component| |squareMatrix| |irreducibleFactors|
- |nextColeman| |split| |failed?| |compose| |formula| |coerceImages|
- |lhs| |list?| |OMgetApp| |LiePolyIfCan| |atoms| |nullSpace|
- |systemCommand| |child| |mainDefiningPolynomial| |outputForm|
- |Frobenius| |rhs| |smith| |createZechTable| |resultantnaif|
- |screenResolution| |lex| |tube| |fill!| |even?| |lowerCase!|
- |operator| |palgextint| |radicalRoots| |linearMatrix|
- |lazyPseudoDivide| |primitive?| |OMencodingSGML| |row| |s17ajf|
- |depth| |capacity| |limitedint| |cCoth| |UP2ifCan| |LyndonCoordinates|
- |compiledFunction| |normal| |equation| |multMonom| |imagE| |nrows|
- |less?| |style| |ScanArabic| |semiResultantReduitEuclidean| |pushup|
- |key| |transcendent?| |OMmakeConn| |lprop| |setPrologue!|
- |unaryFunction| |ncols| |polyRicDE| |minGbasis| |quasiRegular|
- |c05pbf| |nextsubResultant2| |light| |rightZero| |laurentIfCan|
- |symmetricTensors| |iisqrt3| |filename| |po| |f01brf|
- |selectMultiDimensionalRoutines| |nextItem| |printHeader|
- |getConstant| |minIndex| |code| |constantIfCan| |number?|
- |singularitiesOf| |makeResult| |not?| |nonQsign| |rotate|
- |bubbleSort!| |truncate| |quasiAlgebraicSet| |localUnquote|
- |squareFreePolynomial| |univcase| |radicalOfLeftTraceForm| |arbitrary|
- |irreducibleFactor| |deleteProperty!| |coord| |nextsousResultant2|
- |parse| |lift| |BumInSepFFE| |rightUnit|
- |genericLeftMinimalPolynomial| |coHeight| |dioSolve| |e01bgf|
- |interval| |normalize| |splitLinear| |myDegree| |reduce| |bounds|
- |outputMeasure| |triangularSystems| |submod| |matrixGcd|
- |setScreenResolution3D| |coercePreimagesImages| |divide|
- |removeCoshSq| |setPredicates| |monicDecomposeIfCan| |singular?|
- |removeZeroes| |lazyPseudoRemainder| |repeatUntilLoop|
- |inverseColeman| |d01alf| |sturmVariationsOf| |padecf| |dmp2rfi|
- |loadNativeModule| |expenseOfEvaluation| |parabolicCylindrical|
- |prime?| |numberOfOperations| |hspace| |getlo| |reduction| |cTan|
- |expr| |antisymmetricTensors| |addPoint| |totalLex| |mainExpression|
- |iifact| |rightTrace| |setAttributeButtonStep|
- |semiResultantEuclidean2| |antiCommutative?| |unknown| |invertIfCan|
- |opeval| |factorials| |makeop| |real| |leastPower| |realEigenvectors|
- |hostPlatform| |OMgetEndObject| |OMgetAtp| |findConstructor| |zCoord|
- |problemPoints| |selectSumOfSquaresRoutines| |imag| |d03faf|
- |eigenvector| |rubiksGroup| |OMencodingUnknown| |kind| |notOperand|
- |trace2PowMod| |polygamma| |leftUnit| |abs| |directProduct| |sqfree|
- |leaves| |readBytes!| |radicalEigenvectors| |equiv| |range| |op|
- |variable| |drawCurves| |palgLODE0| |pseudoDivide| |rank| |init|
- |bitTruth| |ode1| |linears| |f02adf| |ef2edf| |basisOfLeftAnnihilator|
- |iterators| |qqq| |integralAtInfinity?| |fortranReal| |brace|
- |harmonic| |e02dff| |substring?|
- |removeRoughlyRedundantFactorsInContents| |part?| |basicSet|
- |partialDenominators| |Nul| |normalDenom| |dualSignature| |getOrder|
- |destruct| |f04mbf| |frst| |ReduceOrder| |intersect| |iiacos|
- |iiacosh| |predicates| |setMaxPoints| |index| |s15aef| |entry|
- |s17dhf| |suffix?| |makingStats?| |seriesSolve| |escape|
- |subResultantsChain| |Hausdorff| |complexNumericIfCan| |atanIfCan|
- |ranges| |droot| |iiabs| |setScreenResolution| |FormatRoman|
- |toseSquareFreePart| |setEpilogue!| |startTableGcd!| |closedCurve?|
- |currentEnv| |writeUInt8!| |push| |e02akf| |prefix?| |more?|
- |constantOperator| |union| |makeSin| |showIntensityFunctions| |pair|
- |parametersOf| |monomial| |OMgetSymbol| |OMputEndError| |inverse|
- |monomRDE| |solid?| |readIfCan!| |lists| |multivariate|
- |createGenericMatrix| |nothing| |OMputApp| |univariateSolve|
- |weighted| |algintegrate| |axes| |leftMinimalPolynomial|
- |genericLeftTraceForm| |variables| |crest| |cylindrical| |simplify|
- |setOfMinN| |outputFloating| |cyclicEqual?| |digit| |leftFactor|
- |outputAsFortran| |cotIfCan| |semicolonSeparate| |shiftLeft| |value|
- |stronglyReduced?| |elliptic| |laplace| |outputAsScript| |times!|
- |monicDivide| |limit| |integerIfCan| |euclideanSize| |cosh2sech|
- |points| |iibinom| |randomR| |pdf2ef| |pointData| |particularSolution|
- |top| |infix?| |iiasec| |getRef| |messagePrint| |setright!| |f2df|
- |algDsolve| |setprevious!| |supRittWu?| |mask| |innerSolve|
- |laplacian| |deepCopy| |zeroSquareMatrix| |rational| |taylor|
- |ratDsolve| |chainSubResultants| |quoByVar| |resetAttributeButtons|
- |setErrorBound| |getOperator| |parts| |laurent| |oneDimensionalArray|
- |setProperty| |initializeGroupForWordProblem| |resetBadValues|
- |leftCharacteristicPolynomial| |elements| |multiEuclideanTree|
- |drawComplex| |constant| |puiseux| |fi2df| |printInfo| |ratDenom|
- |firstSubsetGray| |var2StepsDefault| |sn| |hasPredicate?| |nthFlag|
- |lazyPquo| |monomialIntegrate| |palgRDE0| |seed|
- |exprHasWeightCosWXorSinWX| |adaptive3D?| |complexForm|
- |doubleComplex?| |addPointLast| |inv| |viewZoomDefault|
- |rangeIsFinite| |autoReduced?| |mulmod| |s13adf| |OMUnknownCD?|
- |tanhIfCan| |ground?| UTS2UP |pdf2df| |primaryDecomp|
- |highCommonTerms| |taylorQuoByVar| |radPoly| |cRationalPower|
- |inputOutputBinaryFile| |remove!| |ground| |listYoungTableaus|
- |generalizedContinuumHypothesisAssumed| |fullPartialFraction|
- |fprindINFO| |numerator| |leftScalarTimes!| |outlineRender| |inrootof|
- |initiallyReduce| |leadingMonomial| |diagonal?| |numberOfFactors|
- |superscript| |generateIrredPoly| |stFuncN| |quoted?| |midpoint|
- |realRoots| |extractPoint| |leadingCoefficient|
- |factorsOfCyclicGroupSize| |rules| |compound?| |viewPhiDefault|
- |simpleBounds?| |algSplitSimple| |status| |indicialEquations|
- |changeMeasure| |besselY| |prologue| |tableau| |primitiveMonomials|
- |leadingCoefficientRicDE| |selectPolynomials| |resultant| |iicosh|
- |HenselLift| |operation| |setLegalFortranSourceExtensions|
- |radicalSolve| |solveLinearPolynomialEquation| |cycleTail|
- |tubePoints| |reductum| |tableForDiscreteLogarithm| |rootPoly|
- |constantKernel| |connectTo| |subspace| |duplicates|
- |extendedSubResultantGcd| |size?| |factors|
- |semiResultantEuclideannaif| |host| |modularFactor|
- |solveLinearPolynomialEquationByFractions| |omError|
- |toseLastSubResultant| |squareTop| |nthFactor| |clip| |sort!|
- |LazardQuotient| |sylvesterMatrix| |erf| |f01rdf| |cot2trig|
- |solveRetract| |slex| |symbolTable| |charthRoot| |mainVariable?|
- |deepExpand| |lyndon| |allRootsOf| |weights| |basisOfNucleus|
- |var2Steps| |alphabetic?| |pole?| |trailingCoefficient|
- |semiLastSubResultantEuclidean| |isConnected?| |monic?| |binomThmExpt|
- |localAbs| |makeTerm| |curry| |indicialEquation| |symmetricPower|
- |is?| |nonLinearPart| |viewThetaDefault| |zerosOf| |mapExponents|
- |s19acf| |hconcat| |roughBasicSet| |fullDisplay|
- |numberOfComputedEntries| |d01asf| |readByte!| |setchildren!|
- |select!| |powern| |getGoodPrime| |LagrangeInterpolation| |intChoose|
- |ptree| |makeViewport2D| |acoshIfCan| |initials| |figureUnits| |front|
- |cyclic| |inc| |rewriteSetByReducingWithParticularGenerators|
- |tubePlot| |quote| |cyclePartition|
- |rewriteIdealWithQuasiMonicGenerators| |df2mf| |multiplyCoefficients|
- |aQuartic| |explicitlyFinite?| |iiacsc| |mat| |entries| |rur|
- |writable?| |jacobi| |quotientByP| |selectPDERoutines| |leftTrace|
- |readUInt8!| |top!| |subscriptedVariables| |rightFactorCandidate|
- |cCot| |indiceSubResultant| |solid| |shiftRoots| |factorGroebnerBasis|
- |roman| |concat| |newReduc| |setButtonValue| |c05adf| |zeroVector|
- |prime| |f04asf| |s17dcf| |elliptic?| |groebgen| |computeCycleEntry|
- |e02zaf| |connect| |d01gbf| |tanSum| |ldf2vmf| |binomial|
- |oblateSpheroidal| |writeInt8!| |trunc| |useEisensteinCriterion?|
- |pushNewContour| |mainKernel| |rightCharacteristicPolynomial|
- |iterationVar| |merge!| |uncouplingMatrices| |groebSolve|
- |OMunhandledSymbol| |s20acf| |updateStatus!| |overlap| |commaSeparate|
- |rroot| |tanh2coth| |solveLinearPolynomialEquationByRecursion|
- |stripCommentsAndBlanks| |normal?| |trapezoidal| |bernoulli|
- |appendPoint| |c05nbf| |reciprocalPolynomial| |bernoulliB| |lepol|
- |lastSubResultant| |nthr| |pushdown| |fixedPointExquo| |bipolar|
- |gcdcofactprim| |shallowExpand| |symbolIfCan| |pseudoQuotient|
- |reverse!| |optimize| |setnext!| |writeBytes!| |simplifyLog|
- |factorList| |idealiser| |integralDerivationMatrix| |asechIfCan|
- |uniform| |head| |signature| |isPlus| |shanksDiscLogAlgorithm|
- |quasiMonic?| |sayLength| |bitLength| |infieldint|
- |stoseInternalLastSubResultant| |enterInCache| |decompose| |f07fef|
- |closedCurve| |argscript| |bindings| |iiatanh| |meshPar1Var| |f01qef|
- |extendedint| |setvalue!| |s14baf| |rdregime| |makeGraphImage|
- |d01ajf| |universe| |f04faf| |listexp| |OMgetInteger|
- |constantToUnaryFunction| |s18aef| |byte| |iicsc|
- |intermediateResultsIF| |reducedSystem| |acothIfCan| |subPolSet?|
- |digit?| |cAsinh| |mainValue| |linSolve| |mvar| |OMgetString|
- |recolor| |insertionSort!| |f01ref| |child?| |delete| |inspect|
- |mainVariables| |iidsum| |innerSolve1| |mkIntegral| |moebius|
- |medialSet| |pdct| |clearTheSymbolTable| |functionIsFracPolynomial?|
- |e04jaf| |ksec| |mindegTerm| GF2FG |realElementary|
- |listConjugateBases| |trueEqual| |cfirst| |cap| |removeCosSq|
- |preprocess| |subresultantVector| |functionIsOscillatory| |OMclose|
- |matrixDimensions| |conjug| |totolex| |rowEchLocal| |getIdentifier|
- |integralBasisAtInfinity| |e04dgf| |modulus| |llprop| |denominators|
- |complexIntegrate| |infieldIntegrate| |denomRicDE| |s21bbf| |curve?|
- |computeCycleLength| |close!| |point?| |abelianGroup| |showAll?|
- |exquo| |infRittWu?| |reopen!| |conjugates| |overlabel|
- |inGroundField?| |point| |createPrimitivePoly|
- |stosePrepareSubResAlgo| |pop!| |separate| |rombergo| |insertMatch|
- |trigs| |simpsono| |probablyZeroDim?| |fortranCharacter| |rk4f|
- |OMlistCDs| |showTheSymbolTable| |div| |normalForm| |innerint|
- |removeConstantTerm| |polarCoordinates| |algint| |presub|
- |SturmHabicht| FG2F |f02aef| |datalist| |cond| |palgextint0|
- |createMultiplicationMatrix| |palgRDE| |rightRegularRepresentation|
- |stopTable!| |series| |chineseRemainder| |showClipRegion|
- |setTopPredicate| |polygon?| |quo| |getBadValues| |setPosition|
- |s17aff| |s15adf| |legendre| |companionBlocks| |closeComponent|
- |iiperm| |redmat| |whatInfinity| |genericRightMinimalPolynomial|
- |orOperands| |explicitEntries?| |mdeg| |backOldPos| |qPot| |prevPrime|
- |equivOperands| |parent| |zeroOf| |distribute| |mergeFactors|
- |identityMatrix| |genericRightNorm| |satisfy?| |copyInto!|
- |wordInGenerators| |parabolic| |box| |lazyVariations|
- |certainlySubVariety?| |rootSimp| |lastSubResultantElseSplit| |min|
- |complement| |numberOfFractionalTerms| |real?| |s17dlf| |expIfCan|
- |rem| |cSin| |eigenMatrix| |tab| |s01eaf| |unrankImproperPartitions0|
- |multinomial| |log10| |option?| |exprToXXP| |palglimint| |positive?|
- |precision| |radix| |lieAdmissible?| |heap| |partition|
- |rectangularMatrix| |li| |bitand| |s20adf| |SturmHabichtCoefficients|
- |ratPoly| |nextPrimitiveNormalPoly| |chvar| |leadingTerm|
- |factorPolynomial| |stopTableInvSet!| |fintegrate| |bitior|
- |createPrimitiveNormalPoly| |leftExactQuotient| |fglmIfCan|
- |tensorProduct| |increment| |super| |countable?| |imaginary|
- |tablePow| |symmetric?| |cAcos| |odd?| |normalizeAtInfinity|
- |restorePrecision| |pade| |empty| |torsionIfCan| |acosIfCan| |every?|
- |notelem| |hyperelliptic| |squareFreeFactors| |UnVectorise|
- |stoseInvertibleSet| |imagK| |printStatement|
- |wordsForStrongGenerators| |fractionFreeGauss!| |extractSplittingLeaf|
- |iCompose| |subCase?| |OMputError| |algebraic?| |numerators|
- |diagonal| |initTable!| |unit?| |OMgetVariable| |rename| |addiag|
- |cTanh| |contract| |zag| |plotPolar| |merge| |fortranDoubleComplex|
- |normalizedAssociate| |showFortranOutputStack| |mathieu12| |f02aff| Y
- |tanAn| |complexNormalize| |iiacot| |octon| |f02ajf| |npcoef|
- |pleskenSplit| |normalDeriv| |aromberg| |minPoly| |rquo|
- |primintfldpoly| |halfExtendedSubResultantGcd1| |gbasis|
- |indicialEquationAtInfinity| |complex?| |mainCharacterization|
- |triangulate| |drawToScale| |coerceS| F |index?|
- |linearDependenceOverZ| |sin?| |finiteBasis| |primintegrate|
- |skewSFunction| |in?| |debug| |yCoord| |unvectorise|
- |balancedFactorisation| |getStream| |reducedContinuedFraction|
- |squareFree| |lazyResidueClass| |dark| |mainPrimitivePart| D
- |logGamma| |internalZeroSetSplit| |zero| |newLine| |leftExtendedGcd|
- |rightOne| |internalIntegrate| |test| |multiple?| |factorial|
- |var1Steps| |reducedForm| |printStats!| |cAsec| |complexLimit| |any|
- |dflist| |identification| |e04gcf| |pointColorPalette| |ocf2ocdf|
- |And| |OMencodingXML| |characteristicSerie| |implies| |acotIfCan|
- |zoom| |argument| |mathieu22| |OMgetEndError| |coshIfCan|
- |eigenvalues| |Or| |null?| |low| |concat!| |prefix| |d01apf|
- |Vectorise| |unexpand| |divisorCascade| |shallowCopy| |Not|
- |sumSquares| |order| |getVariableOrder| |resetVariableOrder|
- |OMsupportsSymbol?| |taylorIfCan| |transcendenceDegree| |expintegrate|
- |karatsubaOnce| |readUInt32!| |interpolate| |symbol?| |chebyshevU|
- |splitDenominator| |schwerpunkt| |stoseInvertibleSetsqfreg| **
- |makeUnit| |s18dcf| |minimumExponent| |numberOfComponents| |df2st|
- |ellipticCylindrical| |e02bbf| |mapUnivariateIfCan| |green| |e01bef|
- |antisymmetric?| |unparse| |generalInfiniteProduct| |queue| |lo|
- |completeHermite| |principalIdeal| |lazyIrreducibleFactors|
- |denomLODE| |high| |e02daf| |internalAugment| |constantOpIfCan|
- |f04arf| |ord| |inverseIntegralMatrix| |nextIrreduciblePoly|
- |reduceLODE| |incr| EQ |credPol| |predicate| |root?| |print| |dim|
- |dihedral| |ScanRoman| |combineFeatureCompatibility| |lieAlgebra?|
- |rootDirectory| |module| |resolve| |minus!| |printInfo!|
- |perfectSquare?| |numberOfImproperPartitions| |maximumExponent|
- |typeList| |divisors| |zeroSetSplit| |extend| |iprint| |double?|
- |characteristicSet| |increasePrecision| |s17aef|
- |ScanFloatIgnoreSpaces| |diagonalProduct| |mapUnivariate|
- |binaryFunction| |binary| |d03edf| |scalarTypeOf| |rightFactorIfCan|
- |f02agf| |OMsetEncoding| |airyBi| |revert| |removeRedundantFactors|
- |stFunc1| |intensity| |s21bcf| |beauzamyBound| |approxNthRoot|
- |cschIfCan| |getPickedPoints| |shellSort| |subNode?| |name|
- |zeroDimPrimary?| |recur| |readInt16!| |vedf2vef| |topPredicate|
- |viewDefaults| |sizeMultiplication| |ridHack1| |d01anf|
- |makeViewport3D| |body| |rk4qc| |findCycle| |modularGcd| |shufflein|
- |invmod| |seriesToOutputForm| |weakBiRank| |choosemon| |exp|
- |category| |nonSingularModel| |setMaxPoints3D| |ffactor| |polyRDE|
- |flexibleArray| |term| |makeVariable| |laurentRep|
- |irreducibleRepresentation| |completeEchelonBasis| ~ |domain|
- |addMatchRestricted| |drawStyle| |ddFact| |gcdPolynomial| |psolve|
- |parameters| |inf| |f02xef| |definingPolynomial| |sparsityIF|
- |cothIfCan| |alphabetic| |package| |leadingSupport| |insert| |diff|
- |RemainderList| |antiCommutator| |recip| |wholePart| |getCurve|
- |numericIfCan| |semiSubResultantGcdEuclidean2| |open| |identity|
- |firstNumer| |center| |acscIfCan| |graphStates| |zero?| |paraboloidal|
- |sinh2csch| |normFactors| |length| |iisec| |implies?| |copies|
- |makeMulti| |fortran| |characteristicPolynomial|
- |numericalOptimization| |doubleDisc| |hasTopPredicate?| |OMcloseConn|
- |hi| |laguerre| |scripts| |readInt8!| |c06ecf| |second| |integers|
- |birth| |partitions| |localIntegralBasis| |loopPoints| |e02dcf|
- |duplicates?| |lquo| |dn| |untab| |third| |discriminantEuclidean|
- |showArrayValues| |trigs2explogs| |chiSquare1| |integralCoordinates|
- |curve| |getButtonValue| |adaptive| |rightRankPolynomial| |OMputFloat|
- |operations| |c06gcf| |OMputInteger| |f02axf| |rootOf| |shift|
- |univariatePolynomials| |maxrank| |cSech| |infiniteProduct|
- |lfintegrate| |endOfFile?| RF2UTS |quasiRegular?| |testDim|
- |errorKind| |sumOfDivisors| |deref| |bandedJacobian|
- |screenResolution3D| |outputAsTex| |cot2tan| |objectOf| |exprToUPS|
- |boundOfCauchy| |quadraticForm| |extendIfCan| |exp1| |perfectNthRoot|
- |modifyPoint| |reorder| |checkRur| |c06ebf| |normal01| |arrayStack|
- |genericRightDiscriminant| |clipBoolean| |quotient| |composites|
- |squareFreeLexTriangular| |transpose| |LyndonWordsList1| |property|
- |edf2efi| |HermiteIntegrate| |back| |fortranTypeOf| |integralMatrix|
- |clearCache| |inconsistent?| |rationalApproximation| |blue|
- |setImagSteps| |internalSubQuasiComponent?| |structuralConstants|
- |SturmHabichtMultiple| |singleFactorBound| |hMonic| |rowEchelonLocal|
- |quadratic?| |lcm| |expPot| |zeroDimensional?| |updatF|
- |dihedralGroup| |meshPar2Var| |c06gsf| |setleaves!| |subNodeOf?|
- |getMultiplicationTable| |sorted?| |logpart| |Ci| |components|
- |relativeApprox| |units| |minset| |quotedOperators| |e01daf|
- |integer?| |dimension| |unknownEndian| |stack| |append| |setPoly|
- |read!| |d01bbf| |sumOfSquares| |s14aaf| |extendedResultant|
- |selectOptimizationRoutines| |pointPlot| |nativeModuleExtension|
- |critBonD| |littleEndian| |gcd| |componentUpperBound| |getProperty|
- |f01mcf| |monicLeftDivide| |moduloP| |pomopo!| |comp| |primes|
- |script| |relerror| |setref| |rightRank| |traceMatrix| |initial|
- |false| |frobenius| |sechIfCan| |laguerreL| |compactFraction|
- |bigEndian| |addMatch| |evenlambert| |tubeRadiusDefault| |nand|
- |latex| |df2ef| |eigenvectors| |rk4| |collectUpper| |changeBase|
- |hypergeometric0F1| |cPower| |flagFactor| |OMreadStr|
- |lastSubResultantEuclidean| |lineColorDefault| |uniform01|
- |linkToFortran| |s13aaf| |readLine!| |atrapezoidal| |plot| |ODESolve|
- |unprotectedRemoveRedundantFactors| |tex| |leftRankPolynomial| UP2UTS
- |d03eef| |f02aaf| |linear| |rowEch| |areEquivalent?| |e02ddf|
- |OMconnInDevice| |conical| |anfactor| |decimal| |generic?|
- |subQuasiComponent?| |#| |wholeRagits| |polCase| |pair?|
- |normalizedDivide| |OMgetBVar| |doubleResultant| |extractIndex| |xn|
- |pmComplexintegrate| |univariate?| |polynomial|
- |unrankImproperPartitions1| |rightExtendedGcd| |coleman| |makeCrit|
- |OMgetType| |plusInfinity| |moduleSum| |supersub| |scaleRoots| |pack!|
- |fibonacci| |dom| |rationalPoint?| |parseString| |hermiteH|
- |PollardSmallFactor| |float?| |minusInfinity| |moreAlgebraic?|
- |getOperands| |specialTrigs| |adaptive?| |f04qaf| |multiEuclidean|
- |ref| |henselFact| |ratpart| |permutationGroup| |toroidal|
- |computePowers| |minColIndex| |list| |incrementKthElement| |stirling1|
- |solveLinear| |qroot| |equiv?| |LiePoly| |newSubProgram| |returns|
- |numberOfNormalPoly| |expandTrigProducts| |car| |numFunEvals3D|
- |primextendedint| |viewDeltaXDefault| |leastAffineMultiple|
- |linearPolynomials| |iisinh| |makeprod| |packageCall|
- |semiSubResultantGcdEuclidean1| |poisson| |cdr| |symbol| |pr2dmp|
- |s19abf| |d02bhf| |extendedEuclidean| |minPol| |printCode| |Lazard|
- |setDifference| |aQuadratic| |startStats!| |expression|
- |firstUncouplingMatrix| |csubst| |startTableInvSet!| |shrinkable|
- |f02awf| |f04adf| |setrest!| |polygon| |title| |iiasech|
- |setIntersection| |upperCase| |integrate| |options| |upperCase!|
- |integer| |createNormalPrimitivePoly| |PDESolve| |inHallBasis?|
- |algebraicDecompose| |pureLex| |colorDef| |leftRank| |rule|
- |factorAndSplit| |representationType| |setUnion| |sin2csc| |e02def|
- |elementary| |say| |c06frf| |simpson| |thenBranch| |returnType!|
- |type| |qfactor| |normalElement| |subResultantGcd| |OMgetEndBVar|
- |apply| |polar| |e| |shiftRight| |FormatArabic| |froot| F2FG |isTimes|
- |belong?| |selectfirst| |string| |rightQuotient| |RittWuCompare|
- |setelt!| |iilog| |OMwrite| |stFunc2| |summation| |hcrf|
- |differentialVariables| |rewriteIdealWithRemainder|
- |scanOneDimSubspaces| |purelyAlgebraicLeadingMonomial?| |size|
- |degreeSubResultantEuclidean| |curveColor| |cycleEntry|
- |toseInvertible?| |quadratic| |extract!| |empty?| |horizConcat|
- |tan2trig| |leader| |imports| |mindeg| |constructor|
- |rightMinimalPolynomial| |invertibleSet| |createMultiplicationTable|
- |controlPanel| |exprHasLogarithmicWeights| |sncndn| |e01sef| |subSet|
- |lagrange| |resize| |polyPart| |fixedPoints| |imagj| |aCubic|
- |antiAssociative?| |s17akf| |getExplanations| |viewPosDefault| |first|
- |cLog| |diag| |void| |reset| |f01bsf| |patternMatch| |hue| |epilogue|
- |power!| |repeating| |rest| |norm| |c06ekf| |An| |round| |reflect|
- |monicRightFactorIfCan| |sub| |meatAxe| |stiffnessAndStabilityFactor|
- |substitute| |normInvertible?| |operators| |f04mcf| |numeric| |write|
- |s17adf| |cycleRagits| |approximants| |exists?|
- |dimensionOfIrreducibleRepresentation| |removeDuplicates|
- |decreasePrecision| |integralBasis| |variationOfParameters| |fmecg|
- |save| |radical| |palgint| |showAllElements| |monomialIntPoly|
- |modifyPointData| |clipSurface| |linearDependence| |d02cjf| |one?|
- |sPol| |iicsch| |rightNorm| |adjoint| |fortranCarriageReturn| |se2rfi|
- |bipolarCylindrical| |width| |call| |coerceL| |curryLeft|
- |karatsubaDivide| |repSq| |mpsode| |OMconnOutDevice| |lifting|
- |overset?| |scalarMatrix| |newTypeLists| |insertBottom!| |determinant|
- |symmetricProduct| |lllip| |lighting| |createLowComplexityTable|
- |root| |triangular?| |linearPart| |leftRecip| |halfExtendedResultant1|
- |lazy?| |mathieu24| |maxIndex| |leftRemainder| |divideExponents|
- |charClass| |cyclotomicFactorization| |lfunc| |rotate!|
- |numberOfVariables| |setFormula!| |varselect| |setAdaptive3D|
- |isobaric?| |dec| |iflist2Result| |acschIfCan| |kovacic|
- |functionIsContinuousAtEndPoints| |nextSubsetGray| |binarySearchTree|
- |prinb| |e02baf| |setValue!| |squareFreePrim| |cAcosh| |dimensionsOf|
- |rootProduct| |iiasinh| |flatten| |vertConcat| |setlast!| |dictionary|
- |directSum| |hdmpToDmp| |fracPart| |gradient| |primlimintfrac|
- |decomposeFunc| |baseRDEsys| |nthFractionalTerm| |divisor|
- |insertTop!| |noncommutativeJordanAlgebra?| |optional| |sts2stst|
- |checkForZero| |shade| |primextintfrac| |showRegion| |imagI|
- |rationalIfCan| |spherical| |leftQuotient| |complexExpand|
- |KrullNumber| |regularRepresentation| |approxSqrt| |hclf| |sh|
- |secIfCan| |asimpson| |monomial?| |pointSizeDefault| |twist| |build|
- |numFunEvals| |repeating?| |clipWithRanges| |readUInt16!| |rename!|
- |Beta| |getSyntaxFormsFromFile| |interpretString| |chebyshevT|
- |palgintegrate| |evaluate| |validExponential| |writeLine!|
- |represents| |deepestInitial| |constantLeft| |create3Space|
- |minimalPolynomial| |separant| |setCondition!| |fortranCompilerName|
- |physicalLength!| |contractSolve| |mainForm| |reduceByQuasiMonic|
- |calcRanges| |tan2cot| |GospersMethod| |cyclotomic| |interReduce|
- |pascalTriangle| |createLowComplexityNormalBasis|
- |useSingleFactorBound| |complexEigenvalues| |enqueue!| |pattern|
- |wronskianMatrix| |createRandomElement| |hasSolution?| |dAndcExp|
- |partialFraction| |removeSuperfluousQuasiComponents| |genericPosition|
- |removeRedundantFactorsInPols| |paren| |nodeOf?| |internalSubPolSet?|
- |sinhcosh| |permutation| |generalizedContinuumHypothesisAssumed?|
- |derivationCoordinates| |typeLists| |iidprod| |minordet|
- |identitySquareMatrix| |rightMult| |tryFunctionalDecomposition?|
- |c06gbf| |outerProduct| |viewDeltaYDefault| |iipow| |radicalSimplify|
- |generalizedEigenvector| |nary?| |besselI| |f01rcf| |reduced?|
- |lexTriangular| |OMputBind| |varList| |insertRoot!| |bright|
- |putColorInfo| |enumerate| |s21baf| |iitan| |df2fi| |overbar|
- |message| |clikeUniv| |swapColumns!| |removeDuplicates!|
- |rightRemainder| |minimize| |expt| |lfextendedint| |completeEval|
- |minPoints| |leftAlternative?| |LowTriBddDenomInv| |palginfieldint|
- |bat1| |lowerCase?| |leadingIdeal| |constant?| |OMreceive| |e04ycf|
- |bsolve| NOT |f04jgf| |readLineIfCan!| |mathieu23| |strongGenerators|
- |movedPoints| |nextPrimitivePoly| |pointColorDefault| |vectorise|
- |rationalPower| OR |invmultisect| |optional?| |selectODEIVPRoutines|
- |variable?| |transcendentalDecompose| |matrix|
- |wordInStrongGenerators| |janko2| |symFunc| |branchPointAtInfinity?|
- |powerSum| |neglist| AND |reducedQPowers| |distFact|
- |getMultiplicationMatrix| |viewWriteAvailable| |mantissa| |reverseLex|
- |s18adf| |stronglyReduce| |copy!| |doublyTransitive?| |headReduce|
- |quadraticNorm| |f04axf| |groebner| |alternatingGroup|
- |OMencodingBinary| |solveInField| |cons| |rationalFunction|
- |algebraicOf| |binaryTree| |yCoordinates| |showScalarValues|
- |rowEchelon| |d02gbf| |distance| |string?| |edf2fi| |asinhIfCan|
- |linearlyDependentOverZ?| |error| |ramifiedAtInfinity?| |moebiusMu|
- |BasicMethod| |isOpen?| |region| |standardBasisOfCyclicSubmodule|
- |setTex!| |flexible?| |mathieu11| |isExpt| |modTree| |OMputObject|
- |rootRadius| |e01baf| |rootOfIrreduciblePoly| |dot| |arguments|
- |exponential| |partialNumerators| |numberOfMonomials| |wreath|
- |morphism| |mainContent| |sortConstraints| |normDeriv2| |dfRange|
- |palglimint0| |vector| |mr| |csc2sin| |gethi| |nullary| |double|
- |halfExtendedSubResultantGcd2| |leftDiscriminant| |eulerPhi| |digits|
- |sec2cos| |s13acf| |csch2sinh| |reify| |safeCeiling|
- |currentSubProgram| |f01qdf| |rotatez| |explicitlyEmpty?|
- |genericLeftDiscriminant| |quartic| |modularGcdPrimitive| |youngGroup|
- |basisOfRightAnnihilator| |realEigenvalues| |logical?| |source|
- |mapdiv| |subst| |transform| |retractable?| |s19adf| |listOfLists|
- |makeFloatFunction| |setStatus| |plus| |space| |c06fqf| |s19aaf|
- |OMopenFile| |rootsOf| |simplifyPower| * |separateFactors| |imagk|
- |subset?| |nlde| |inverseLaplace| |conditionsForIdempotents| |vspace|
- |rightRecip| |separateDegrees| |idealSimplify| |makeFR| |extractIfCan|
- |critpOrder| |bivariateSLPEBR| |s17def| |rischNormalize| |f02bbf|
- |selectNonFiniteRoutines| |bfKeys| |linearAssociatedExp| |degree|
- |getDatabase| |argumentListOf| |usingTable?| |pushuconst| |permanent|
- |key?| |outputSpacing| |setColumn!| |maxdeg| |homogeneous?|
- |setClipValue| |times| |associatedSystem| |redPo| |physicalLength|
- |target| |argumentList!| |declare!| |vark| |isQuotient|
- |lowerPolynomial| |prem| |setleft!| |createIrreduciblePoly| |collect|
- |gramschmidt| |ceiling| |legendreP| |headAst| |initiallyReduced?|
- |e04mbf| |eulerE| |e02agf| |objects| |differentiate| |find| |e01bhf|
- |multisect| |quasiMonicPolynomials| |expintfldpoly| |nthExpon|
- |lazyIntegrate| |tab1| |base| |realZeros| |drawComplexVectorField|
- |setProperty!| |fractionPart| |leastMonomial| |fractRadix|
- |integralMatrixAtInfinity| |f01maf| |rightTraceMatrix|
- |roughEqualIdeals?| |monom| |unitCanonical| |multiset| |cycles|
- |cyclicCopy| |lazyPremWithDefault| |leadingIndex| |tanh2trigh|
- |unravel| |categoryFrame| |exprToGenUPS| |blankSeparate|
- |mainVariable| |minPoints3D| |height| |unitsColorDefault|
- |OMgetEndBind| |sample| |iiasin| |OMgetEndAtp| |OMread| |tanIfCan|
- |failed| |removeSquaresIfCan| |ravel| |groebner?|
- |ScanFloatIgnoreSpacesIfCan| |countRealRootsMultiple| |listBranches|
- |lazyGintegrate| |airyAi| |addPoint2| |common| |zeroMatrix| |reshape|
- |recoverAfterFail| |children| |presuper| |segment| |alternating|
- |leftDivide| |generic| |scripted?| |hexDigit?| |splitConstant| |tree|
- |d02raf| |dmpToP| |userOrdered?| |besselJ| |ipow| |polynomialZeros|
- |elseBranch| |OMputSymbol| |clipParametric| |singRicDE| |declare|
- |algebraicCoefficients?| |convergents| |generalTwoFactor|
- |impliesOperands| |char| |createPrimitiveElement| |clearTheFTable|
- |mappingAst| |OMlistSymbols| |setRealSteps| |stopMusserTrials|
- |pushdterm| |OMUnknownSymbol?| |e02bef| |qelt|
- |numberOfIrreduciblePoly| |tryFunctionalDecomposition| |cycle|
- |B1solve| |isMult| |over| |qsetelt| |linearlyDependent?| |tail|
- |genericRightTraceForm| |linear?| |character?| |f07aef| |palgLODE|
- |prefixRagits| |orbit| |fixPredicate| |swapRows!| |jacobian| |xRange|
- |symmetricDifference| |basis| |update| |OMgetFloat| |indices|
- |coefficient| |leviCivitaSymbol| |traverse| |exQuo| |positiveSolve|
- |yRange| |push!| |LyndonBasis| |setRow!| |slash| |integerBound|
- |exprHasAlgebraicWeight| |previous| |setAdaptive| |generator| |zRange|
- |squareFreePart| |generalSqFr| |mirror| |sincos| |conjugate| |float|
- |callForm?| |internalInfRittWu?| |OMgetObject| |extractProperty|
- |map!| |scale| |stoseInvertible?sqfreg| |listLoops| |primeFactor|
- |check| |superHeight| |dominantTerm| |f2st| |resultantReduit|
- |qsetelt!| |setsubMatrix!| |leftOne| |pushucoef| |largest| |f07adf|
- |internalDecompose| |powmod| |limitPlus| |reduceBasisAtInfinity|
- |defineProperty| |makeYoungTableau| |match?| |position|
- |pseudoRemainder| |just| |log| |unitNormal| |viewport3D| |OMputAttr|
- |semiDiscriminantEuclidean| |sylvesterSequence|
- |numberOfPrimitivePoly| |swap!| |exponentialOrder| |createNormalPoly|
- |rootPower| |reverse| |any?| |e04ucf| |atanhIfCan| |lambert|
- |startTable!| |nil| |infinite| |arbitraryExponent| |approximate|
- |complex| |shallowMutable| |canonical| |noetherian| |central|
+ |Record| |Union| |unaryFunction| |lazyPseudoDivide| |zoom| |graeffe|
+ |integerBound| |bitTruth| |subResultantGcdEuclidean| |triangulate|
+ |leaf?| |compiledFunction| |lazyPremWithDefault| |rotate|
+ |pleskenSplit| |contains?| |keys| |semiSubResultantGcdEuclidean2|
+ |solveInField| |outputForm| |integralMatrixAtInfinity|
+ |pushFortranOutputStack| |corrPoly| |acsch| |lazyPquo| |drawStyle|
+ |reciprocalPolynomial| |inf| |semiSubResultantGcdEuclidean1|
+ |wronskianMatrix| |argscript| |inverseIntegralMatrix|
+ |popFortranOutputStack| |lifting| |lazyPrem| |outlineRender|
+ |rootRadius| GE |qinterval| |discriminantEuclidean|
+ |variationOfParameters| |superscript| |integralMatrix| |lifting1|
+ |pquo| |next| |diagonals| |schwerpunkt| GT |factors| |subscript|
+ |reduceBasisAtInfinity| |exprex| |prem| |axes| |setErrorBound|
+ |genericPosition| LE |redpps| |nthFactor| |scripted?|
+ |normalizeAtInfinity| |coerceL| |supRittWu?| |controlPanel|
+ |startPolynomial| |lfunc| LT |B1solve| |nthExpon| |resetNew|
+ |complementaryBasis| |coerceS| |RittWuCompare| |viewpoint| |cycleElt|
+ |inHallBasis?| |factorset| |overlap| |symFunc| |integral?|
+ |basisOfCommutingElements| |nil| |dimensions| |computeCycleLength|
+ |reorder| |maxrank| |hcrf| |symbolTableOf| |integralAtInfinity?|
+ |intcompBasis| |setref| |basisOfLeftAnnihilator| |resize|
+ |computeCycleEntry| |headAst| |minrank| |hclf| |argumentListOf|
+ |integralBasisAtInfinity| |choosemon| |deref|
+ |basisOfRightAnnihilator| |move| |findConstructor| |heap| |condition|
+ |minset| |lexico| |returnTypeOf| |ramified?| |transform| |ref|
+ |basisOfLeftNucleus| |approximate| |modifyPointData| |dualSignature|
+ |gcdprim| |nextSublist| |level| |comment| |ramifiedAtInfinity?|
+ |pack!| |radicalEigenvectors| |basisOfRightNucleus| |complex|
+ |subspace| |coerceP| |gcdcofact| |overset?| |s17dcf|
+ |numberOfComponents| |eq| |singular?| |complexLimit|
+ |radicalEigenvector| |basisOfMiddleNucleus| |makeViewport3D|
+ |powerSum| |gcdcofactprim| |ParCond| |s17def| |create3Space| |iter|
+ |singularAtInfinity?| |limit| |radicalEigenvalues| |basisOfNucleus|
+ |viewport3D| |elementary| |lintgcd| |s17dgf| |redmat| |outputAsScript|
+ |close| |branchPoint?| |linearlyDependent?| |eigenMatrix|
+ |basisOfCenter| |alternating| |hex| |regime| |s17dhf| |outputAsTex|
+ |branchPointAtInfinity?| |linearDependence| |normalise|
+ |basisOfLeftNucloid| |rightFactorIfCan| |cyclic| |every?| |remove|
+ |s17dlf| |sqfree| |abs| |display| BY |rationalPoint?| |solveLinear|
+ |gramschmidt| |basisOfRightNucloid| |leftFactorIfCan| |dihedral|
+ |any?| |inconsistent?| |s18acf| |Beta| |absolutelyIrreducible?|
+ |reducedSystem| |orthonormalBasis| |basisOfCentroid|
+ |monicDecomposeIfCan| |cap| |last| |host| |numFunEvals| |s18adf|
+ |digamma| |genus| |duplicates?| |antisymmetricTensors|
+ |radicalOfLeftTraceForm| |monicCompleteDecompose| |assoc| |cup|
+ |trueEqual| |setAdaptive| |s18aef| |polygamma| |showTypeInOutput|
+ |getZechTable| |mapGen| |createGenericMatrix| |binding| |divideIfCan|
+ |wreath| |factorList| |adaptive?| |s18aff| |Gamma| |objectOf|
+ |createZechTable| |mapExpon| |symmetricTensors| |setProperties|
+ |noKaratsuba| |SFunction| |listConjugateBases| |input| |/\\|
+ |function| |setScreenResolution| |s18dcf| |besselJ| |domainOf|
+ |createMultiplicationTable| |commutativeEquality| |tensorProduct| |id|
+ |karatsubaOnce| |skewSFunction| |matrixGcd| |library| |\\/|
+ |screenResolution| |s18def| |besselY| |createMultiplicationMatrix|
+ |leftMult| |permutationRepresentation| |applyRules| |karatsuba|
+ |cyclotomicDecomposition| |divideIfCan!| |eval| |setMaxPoints|
+ |s19aaf| |besselI| |localUnquote| |createLowComplexityTable|
+ |rightMult| |completeEchelonBasis| |separate| |table|
+ |cyclotomicFactorization| |leastPower| |output| |compile| |maxPoints|
+ |s19abf| |besselK| |zeroOf| |arbitrary|
+ |createLowComplexityNormalBasis| |makeUnit| |createRandomElement|
+ |pseudoDivide| |new| |rangeIsFinite| |idealiser| |setMinPoints|
+ |s19acf| |airyAi| |obj| |setColumn!| |representationType| |reverse!|
+ |cyclicSubmodule| |search| |pseudoQuotient|
+ |functionIsContinuousAtEndPoints| |idealiserMatrix| |s19adf|
+ |minPoints| |set| |airyBi| |cache| |dilog| |createPrimitiveElement|
+ |makeMulti| |standardBasisOfCyclicSubmodule| |setRow!| |composite|
+ |functionIsOscillatory| |moduleSum| |parametric?| |s20acf| |subNode?|
+ |sin| |tableForDiscreteLogarithm| |makeTerm| |areEquivalent?|
+ |oneDimensionalArray| |subResultantGcd| |changeName| |mapUnivariate|
+ |plotPolar| |s20adf| |infLex?| |cos| |factorsOfCyclicGroupSize|
+ |listOfMonoms| |isAbsolutelyIrreducible?| |associatedSystem|
+ |resultant| |exprHasWeightCosWXorSinWX| |mapUnivariateIfCan| |debug3D|
+ |s21baf| |setEmpty!| |tan| |sizeMultiplication| |symmetricSquare|
+ |meatAxe| |uncouplingMatrices| |discriminant| |exprHasAlgebraicWeight|
+ |mapMatrixIfCan| |numFunEvals3D| |s21bbf| |setStatus!| |cot|
+ |getMultiplicationMatrix| |factor1| |scanOneDimSubspaces|
+ |associatedEquations| |pseudoRemainder| |knownInfBasis|
+ |exprHasLogarithmicWeights| |mapBivariate| |s21bcf| |setAdaptive3D|
+ |sort| |setCondition!| |sec| |arrayStack| |getMultiplicationTable|
+ |symmetricProduct| |expt| |shiftLeft| |delta| |rootSplit|
+ |combineFeatureCompatibility| |fullDisplay| |adaptive3D?| |s21bdf|
+ |setValue!| |csc| |primitive?| |symmetricPower| |showArrayValues|
+ |setButtonValue| |shiftRight| |sparsityIF| |relationsIdeal|
+ |setScreenResolution3D| |fortranCompilerName| |empty?| |asin|
+ |numberOfIrreduciblePoly| |directSum| |showScalarValues|
+ |setAttributeButtonStep| |karatsubaDivide|
+ |stiffnessAndStabilityFactor| |saturate| |true| |fortranLinkerArgs|
+ |screenResolution3D| ~= |splitNodeOf!| |acos| |resetAttributeButtons|
+ |numberOfPrimitivePoly| |solveLinearPolynomialEquationByFractions|
+ |solveRetract| |monicDivide| |left| |stiffnessAndStabilityOfODEIF|
+ |groebner?| |aspFilename| |setMaxPoints3D| |random| |remove!| |coerce|
+ |hash| |atan| |getButtonValue| |numberOfNormalPoly| |hasSolution?|
+ |mainVariable| |divideExponents| |right| |systemSizeIF|
+ |groebnerIdeal| |dimensionsOf| |maxPoints3D| |subNodeOf?| |construct|
+ |show| |count| |acot| |createIrreduciblePoly| |linSolve| |uniform01|
+ |decrease| |unmakeSUP| |expenseOfEvaluationIF| |ideal|
+ |setMinPoints3D| = |restorePrecision| |nodeOf?| |asec|
+ |createPrimitivePoly| |LyndonWordsList| |normal01| |increase|
+ |makeSUP| |accuracyIF| |leadingIdeal| |antiCommutator| |minPoints3D|
+ |trace| |updateStatus!| |morphism| |acsc| |noLinearFactor?|
+ |createNormalPoly| |LyndonWordsList1| |exponential1| |lambda|
+ |vectorise| |intermediateResultsIF| |backOldPos| < |tValues|
+ |commutator| |extractSplittingLeaf| |sinh| |createNormalPrimitivePoly|
+ |lyndonIfCan| |chiSquare1| |extend| |subscriptedVariables|
+ |generalPosition| > |tRange| |associator| |squareMatrix| |cosh|
+ |createPrimitiveNormalPoly| |lyndon| |exponential| |insertRoot!|
+ |truncate| |central?| |quotient| <= |plot| |complexEigenvalues|
+ |transpose| |tanh| |nextIrreduciblePoly| |lyndon?| |chiSquare|
+ |binarySearchTree| |order| |max| |elliptic?| |zeroDim?| >= |pointPlot|
+ |complexEigenvectors| |trim| |coth| |nextPrimitivePoly|
+ |numberOfComputedEntries| |factorFraction| |terms| |doubleResultant|
+ |inRadical?| |calcRanges| |isConnected?| |split| |sech| |showSummary|
+ |nextNormalPoly| |rst| |componentUpperBound| |squareFreePart|
+ |distdfact| |cn| |in?| |fixPredicate| |connectTo| |replace| |csch|
+ |nextNormalPrimitivePoly| |frst| |blue| |BumInSepFFE|
+ |separateDegrees| |element?| |patternMatch| + |normalizedAssociate|
+ |upperCase!| |asinh| |nextPrimitiveNormalPoly| |showAttributes|
+ |lazyEvaluate| |green| |multiplyExponents| |trace2PowMod|
+ |zeroDimPrime?| |patternMatchTimes| - |normalize| |upperCase| |acosh|
+ |leastAffineMultiple| |lazy?| |red| |laurentIfCan| |tracePowMod|
+ |zeroDimPrimary?| |bernoulli| / |outputArgs| |lowerCase!| |atanh|
+ |reducedQPowers| |explicitlyEmpty?| |whitePoint| |laurentRep|
+ |irreducible?| |primaryDecomp| |normInvertible?| |chebyshevT|
+ |lowerCase| |setelt| |acoth| |rootOfIrreduciblePoly|
+ |explicitEntries?| |uniform| |rationalPower| |parents| |decimal|
+ |contract| |chebyshevU| |normFactors| |KrullNumber| |asech| |write!|
+ |matrixDimensions| |binomial| |dominantTerm| |innerint|
+ |leadingSupport| |npcoef| |cyclotomic| |copy| |numberOfVariables|
+ |read!| |arg1| |matrixConcat3D| |poisson| |limitPlus|
+ |exteriorDifferential| |shrinkable| |euler| |listexp|
+ |algebraicDecompose| |multiple| |iomode| |arg2| |setelt!| |geometric|
+ |split!| |totalDifferential| |physicalLength!| |label| |fixedDivisor|
+ |characteristicPolynomial| |transcendentalDecompose| |applyQuote|
+ |close!| |identityMatrix| |ridHack1| |setlast!| |homogeneous?|
+ |physicalLength| |realEigenvalues| |laguerre| |internalDecompose|
+ |autoCoerce| |reopen!| |conditions| |zeroMatrix| |interpolate|
+ |setrest!| |flexibleArray| |legendre| |realEigenvectors| |decompose|
+ |rightUnit| |match| |mappingAst| |nullSpace| |mkIntegral| |setfirst!|
+ |result| |outputList| |elseBranch| |dmpToHdmp|
+ |halfExtendedResultant2| |upDateBranches| |ruleset| |leftUnit|
+ |nullary| |nullity| |cycleSplit!| |radPoly| |properties| |thenBranch|
+ |hdmpToDmp| |halfExtendedResultant1| |preprocess| |mapUp!|
+ |rightMinimalPolynomial| |fixedPoint| |rowEchelon| |concat!|
+ |rootPoly| |translate| |generalizedInverse| |pToHdmp|
+ |extendedResultant| |internalZeroSetSplit| |setleaves!| |recur|
+ |column| |cycleTail| |goodPoint| |imports| |hdmpToP|
+ |subResultantsChain| |internalAugment| |mat| |suchThat| |const| |row|
+ |cycleLength| |chvar| |sequence| |dmpToP| |lazyPseudoQuotient|
+ |possiblyInfinite?| |neglist| |curry| |maxColIndex| |cycleEntry|
+ |find| |option| |iterationVar| |pToDmp| |lazyPseudoRemainder|
+ |explicitlyFinite?| |multiEuclidean| |diag| |minColIndex|
+ |invmultisect| |clipParametric| |bernoulliB| |nextItem|
+ |extendedEuclidean| |curryRight| |maxRowIndex| |multisect|
+ |clipWithRanges| |hMonic| |bivariateSLPEBR| |eulerE| |infiniteProduct|
+ |euclideanSize| |curryLeft| |minRowIndex| |revert| |numberOfHues|
+ |updatF| |solveLinearPolynomialEquationByRecursion| |checkPrecision|
+ |numericIfCan| |evenInfiniteProduct| |sizeLess?| |constantRight|
+ |antisymmetric?| |generalLambert| |yellow| |sPol| |factorByRecursion|
+ |complexNumericIfCan| |oddInfiniteProduct| |simplifyPower|
+ |evenlambert| |binaryTree| |iifact| |updatD|
+ |factorSquareFreeByRecursion| |FormatArabic| |generalInfiniteProduct|
+ |number?| |cCos| |radicalSimplify| |rightTrim| |oddlambert| |iibinom|
+ |minGbasis| |randomR| |interpret| |ScanArabic| |showAll?|
+ |seriesSolve| |cSin| |denominator| |leftTrim| |lambert| |iiperm|
+ |lepol| |factorSFBRlcUnit| |FormatRoman| |showAllElements|
+ |constantToUnaryFunction| |cLog| |numerator| |lagrange| |iipow|
+ |prinshINFO| |charthRoot| |tubePlot| |cExp| |quadraticForm|
+ |univariatePolynomial| |iidsum| |prindINFO| |conditionP| |f01bsf|
+ |subresultantSequence| |retract| |tower| |exponentialOrder|
+ |cRationalPower| |back| |integrate| |iidprod| |stop| |fprindINFO|
+ |solveLinearPolynomialEquation| |f01maf| |SturmHabichtSequence|
+ |completeEval| |cPower| |front| |multiplyCoefficients| |ipow|
+ |prinpolINFO| |factorSquareFreePolynomial| |f01mcf|
+ |SturmHabichtCoefficients| |lowerPolynomial| |seriesToOutputForm|
+ |rotate!| |factorial| |prinb| |factorPolynomial| |f01qcf|
+ |SturmHabicht| |raisePolynomial| |iCompose| |dequeue!| |extendIfCan|
+ |multinomial| |directory| |critpOrder| |squareFreePolynomial| |f01qdf|
+ |countRealRoots| |normalDeriv| |continue| |taylorQuoByVar| |enqueue!|
+ |algebraicVariables| |permutation| |makeCrit| |gcdPolynomial| |f01qef|
+ |SturmHabichtMultiple| |ran| |complexNumeric| |iExquo| |quatern|
+ |zeroSetSplitIntoTriangularSystems| |stirling1| |virtualDegree|
+ |torsion?| |f01rcf| |countRealRootsMultiple| |highCommonTerms|
+ |getStream| |imagK| |zeroSetSplit| |stirling2| |categories|
+ |conditionsForIdempotents| |torsionIfCan| |f01rdf| |signatureAst|
+ |kernels| |mapCoef| |getRef| |imagJ| |retractIfCan|
+ |reduceByQuasiMonic| |summation| |genericRightDiscriminant|
+ |getGoodPrime| |f01ref| |pop!| |nthCoef| |univariate| |makeSeries|
+ |imagI| |collectQuasiMonic| |factorials| |numer|
+ |genericRightTraceForm| |badNum| |f02aaf| |push!| |binomThmExpt| GF2FG
+ |conjugate| |removeZero| |mkcomm| |denom| |genericLeftDiscriminant|
+ |mix| |f02abf| |minordet| |equality| |pomopo!| FG2F |queue| |null|
+ |initiallyReduce| |polarCoordinates| |genericLeftTraceForm|
+ |doubleDisc| |f02adf| |determinant| |nary?| |mapExponents| F2FG
+ |nthRoot| |factor| |not| |generate| |headReduce| SEGMENT |imaginary|
+ |pi| |genericRightNorm| |polyred| |f02aef| |diagonalProduct|
+ |linearAssociatedLog| |sqrt| |explogs2trigs| |fractRadix| |and|
+ |stronglyReduce| |solid| |infinity| |genericRightTrace|
+ |padicFraction| |f02aff| |diagonal| |linearAssociatedOrder|
+ |incrementBy| |trigs2explogs| |wholeRadix| |or|
+ |rewriteSetWithReduction| |solid?| |genericRightMinimalPolynomial|
+ |padicallyExpand| |f02agf| |diagonalMatrix| |linearAssociatedExp|
+ |swap!| |cycleRagits| |xor| |autoReduced?| |expand| |denominators|
+ |rightRankPolynomial| |numberOfFractionalTerms| |f02ajf|
+ |scalarMatrix| |node| |convert| |createNormalElement| |fill!|
+ |prefixRagits| |filterWhile| |case| |initiallyReduced?| |numerators|
+ |kernel| |genericLeftNorm| |nthFractionalTerm| |f02akf| |hermite|
+ |bezoutMatrix| |unary?| |setLabelValue| |sum| |minIndex| |fractRagits|
+ |map| |Zero| |filterUntil| |headReduced?| |convergents| |draw|
+ |genericLeftTrace| |firstNumer| |f02awf| |completeHermite|
+ |bezoutResultant| |nullary?| |getCode| |maxIndex| |wholeRagits| |One|
+ |stronglyReduced?| |select| |approximants|
+ |genericLeftMinimalPolynomial| |firstDenom| |f02axf| |smith|
+ |printCode| |entry?| |radix| |reduced?| |reducedForm| |port|
+ |leftRankPolynomial| |compactFraction| |f02bbf| |completeSmith|
+ |printStatement| |indices| |randnum| |normalized?| |partialQuotients|
+ |lp| |generic| |partialFraction| |f02bjf| |diophantineSystem| |block|
+ |index?| |reseed| |quasiComponent| |partialDenominators| |makeObject|
+ |t| |rightUnits| |gcdPrimitive| |f02fjf| |csubst| |nor| |returns|
+ |assert| |entries| |seed| |initials| |partialNumerators| |leftUnits|
+ |symmetricGroup| |f02wef| |particularSolution| |nand| |goto| |key?|
+ |rational| |basicSet| |elt| |reducedContinuedFraction| |coef|
+ |compBound| |alternatingGroup| |f02xef| |mapSolve| |repeatUntilLoop|
+ |symbolIfCan| |rational?| |makeRecord| |infRittWu?| |push| |tablePow|
+ |abelianGroup| |f04adf| |quadratic| |whileLoop| |argument|
+ |rationalIfCan| |getCurve| |bindings| |solveid| |cyclicGroup| |f04arf|
+ |cubic| |forLoop| |constantKernel| |setvalue!| |formula| |listLoops|
+ |lhs| |cartesian| |testModulus| |dihedralGroup| |f04asf| |quartic|
+ |sin?| |systemCommand| |constantIfCan| |setchildren!| |closed?| |rhs|
+ |polar| |HenselLift| |mathieu11| |f04atf| |aLinear| |zeroVector|
+ |kovacic| |node?| |open?| |cylindrical| |completeHensel| |mathieu12|
+ |f04axf| |aQuadratic| |zeroSquareMatrix| |laplace| |child?|
+ |setClosed| |depth| |spherical| |multMonom| |mathieu22| |f04faf|
+ |aCubic| |identitySquareMatrix| |normal| |equation|
+ |trailingCoefficient| |distance| |nrows| |tube| |parabolic| |build|
+ |f04jgf| |mathieu23| |aQuartic| |key| |lSpaceBasis| |normalizeIfCan|
+ |nodes| |ncols| |unitVector| |parabolicCylindrical| |leadingIndex|
+ |mathieu24| |f04maf| |radicalSolve| |finiteBasis| |polCase| |rename|
+ |cosSinInfo| |ratDenom| |paraboloidal| |filename| |leadingExponent|
+ |janko2| |f04mbf| |radicalRoots| |code| |principal?| |distFact|
+ |rename!| |loopPoints| |ratPoly| |ellipticCylindrical| |GospersMethod|
+ |f04mcf| |rubiksGroup| |not?| |contractSolve| |divisor|
+ |identification| |mainValue| |generalTwoFactor| |rootPower|
+ |prolateSpheroidal| |nextSubsetGray| |f04qaf| |youngGroup|
+ |decomposeFunc| |parse| |useNagFunctions| |lift| |LyndonCoordinates|
+ |mainDefiningPolynomial| |generalSqFr| |rootProduct|
+ |oblateSpheroidal| |firstSubsetGray| |lexGroebner| |f07adf|
+ |unvectorise| |rationalPoints| |reduce| |LyndonBasis| |mainForm|
+ |twoFactor| |rootSimp| |bipolar| |clipPointsDefault| |totalGroebner|
+ |f07aef| |bubbleSort!| |nonSingularModel| |zeroDimensional?| |rischDE|
+ |setOrder| |rootKerSimp| |bipolarCylindrical| |drawToScale|
+ |expressIdealMember| |f07fdf| |insertionSort!| |loadNativeModule|
+ |algSplitSimple| |fglmIfCan| |rischDEsys| |derivative| |getOrder|
+ |leftRank| |toroidal| |adaptive| |expr| |principalIdeal| |f07fef|
+ |check| |hyperelliptic| |groebner| |monomRDE| |constantOperator|
+ |less?| |conical| |unknown| |figureUnits| |LagrangeInterpolation|
+ |s01eaf| |lprop| |real| |elliptic| |lexTriangular| |baseRDE|
+ |userOrdered?| |modTree| |putColorInfo| |psolve| |s13aaf| |llprop|
+ |imag| |integralDerivationMatrix| |squareFreeLexTriangular| |polyRDE|
+ |largest| |multiEuclideanTree| |kind| |appendPoint| |wrregime|
+ |s13acf| |lllp| |directProduct| |integralRepresents| |leaves|
+ |belong?| |monomRDEsys| |more?| |component| |op| |variable| |rdregime|
+ |s13adf| |lllip| |rank| |init| |bezoutDiscriminant|
+ |integralCoordinates| |Ci| |baseRDEsys| |setVariableOrder| |ranges|
+ |iterators| |bsolve| |s14aaf| |mesh?| |brace| |bfEntry| |yCoordinates|
+ |Si| |substring?| |weighted| |getVariableOrder| |setProperty|
+ |pointLists| |dmp2rfi| |s14abf| |mesh| |destruct|
+ |inverseIntegralMatrixAtInfinity| |Ei| |rdHack1| |resetVariableOrder|
+ |deleteProperty!| |makeGraphImage| |index| |se2rfi| |s14baf|
+ |polygon?| |entry| |linGenPos| |suffix?| |operator| |prime?|
+ |rightRank| |graphImage| |pr2dmp| |s15adf| |polygon| |setProperties!|
+ |groebgen| |midpoint| |sample| |doubleRank| |groebSolve| |hasoln|
+ |s15aef| |closedCurve?| |currentEnv| |getProperties| |totolex|
+ |prefix?| |midpoints| |rationalFunction| |testDim| |union| |s17acf|
+ |ParCondList| |pair| |closedCurve| |monomial| |setProperty!| |minPol|
+ |realZeros| |taylorIfCan| |s17adf| |curve?| |lists| |multivariate|
+ |getProperty| |computeBasis| |nothing| |mainCharacterization|
+ |removeZeroes| |fortranLogical| |is?| |s17aef| |curve| |variables|
+ |scopes| |coord| |algebraicOf| |taylorRep| |fortranInteger| |Is|
+ |s17aff| |point?| |eigenvalues| |outputAsFortran| |anticoord|
+ |ReduceOrder| |value| |factorSquareFree| |bfKeys| |fortranDouble|
+ |addMatchRestricted| |s17agf| |enterPointData| |eigenvector|
+ |henselFact| |inspect| |fortranReal| |insertMatch| |s17ahf|
+ |composites| |generalizedEigenvector| |tanintegrate|
+ |rewriteIdealWithQuasiMonicGenerators| |top| |infix?| |hasHi|
+ |external?| |addMatch| |s17ajf| |components| |generalizedEigenvectors|
+ |primextendedint| |squareFreeFactors| |mask| |fmecg| |scalarTypeOf|
+ |getMatch| |s17akf| |numberOfComposites| |taylor| |eigenvectors|
+ |expextendedint| |univariatePolynomialsGcds| |commonDenominator|
+ |fortranCarriageReturn| |failed?| |parts| |laurent| |factorAndSplit|
+ |primlimitedint| |removeRoughlyRedundantFactorsInContents|
+ |clearDenominator| |fortranLiteral| |optpair| |d01anf| |member?|
+ |constant| |puiseux| |rightOne| |printInfo| |explimitedint|
+ |removeRedundantFactorsInContents| |splitDenominator|
+ |fortranLiteralLine| |getBadValues| |d01apf| |enumerate| |leftOne|
+ |primextintfrac| |removeRedundantFactorsInPols|
+ |monicRightFactorIfCan| |processTemplate| |resetBadValues| |d01aqf|
+ |setOfMinN| |inv| |rightZero| |primlimintfrac| |irreducibleFactors|
+ |makeFR| |hasTopPredicate?| |d01asf| |elements| |ground?| |leftZero|
+ |primintfldpoly| |lazyIrreducibleFactors| |OMReadError?|
+ |setPrologue!| |musserTrials| |topPredicate| |d01bbf|
+ |replaceKthElement| |ground| |swap| |expintfldpoly|
+ |removeIrreducibleRedundantFactors| |OMUnknownSymbol?| |setTex!|
+ |stopMusserTrials| |setTopPredicate| |d01fcf| |incrementKthElement|
+ |leadingMonomial| |minPoly| |monomialIntegrate| |normalForm|
+ |OMUnknownCD?| |setEpilogue!| |numberOfFactors| |patternVariable|
+ |d01gaf| |float?| |leadingCoefficient| |freeOf?| |rules|
+ |monomialIntPoly| |changeBase| |OMParseError?| |prologue|
+ |modularFactor| |status| |withPredicates| |d01gbf| |integer?|
+ |RemainderList| |primitiveMonomials| |operators| |inverseLaplace|
+ |companionBlocks| |OMwrite| |epilogue| |operation|
+ |useSingleFactorBound?| |setPredicates| |d02bbf| |symbol?| |unexpand|
+ |reductum| |mainKernel| |inputOutputBinaryFile| |xCoord| |po|
+ |endOfFile?| |useSingleFactorBound| |predicates| |d02bhf| |string?|
+ |triangSolve| |distribute| |bothWays| |yCoord| |OMread| |readIfCan!|
+ |useEisensteinCriterion?| |hasPredicate?| |d02cjf| |list?|
+ |univariateSolve| |functionIsFracPolynomial?| |erf| |bytes| |zCoord|
+ |OMreadFile| |readLineIfCan!| |useEisensteinCriterion| |symbolTable|
+ |optional?| |d02ejf| |pair?| |realSolve| |problemPoints| |ip4Address|
+ |rCoord| |OMreadStr| |readLine!| |eisensteinIrreducible?| |multiple?|
+ |d02gaf| |atom?| |positiveSolve| |zerosOf| |iprint| |thetaCoord|
+ |OMlistCDs| |writeLine!| |tryFunctionalDecomposition?| |generic?|
+ |d02gbf| |null?| |squareFree| |singularitiesOf| |elem?| |phiCoord|
+ |OMlistSymbols| |sign| |extract!| |tryFunctionalDecomposition|
+ |quoted?| |d02kef| |startTable!| |linearlyDependentOverZ?|
+ |polynomialZeros| |notelem| |OMsupportsCD?| |color| |nonQsign| |ptree|
+ |bag| |btwFact| |inR?| |d02raf| |stopTable!| |weakBiRank|
+ |linearDependenceOverZ| |inc| |f2df| |logpart| |hue|
+ |OMsupportsSymbol?| |direction| |beauzamyBound| |isList| |d03edf|
+ |supDimElseRittWu?| |biRank| |solveLinearlyOverQ| |ef2edf| |ratpart|
+ |shade| |OMunhandledSymbol| |createThreeSpace| |bombieriNorm| |isOp|
+ |d03eef| |algebraicSort| |ocf2ocdf| |mkAnswer| |nthRootIfCan|
+ |OMreceive| |cyclicParents| |rootBound| |d03faf| |satisfy?|
+ |moreAlgebraic?| |concat| |socf2socdf| |perfectNthPower?| |expIfCan|
+ |OMsend| |cyclicEqual?| |singleFactorBound| |addBadValue| |e01baf|
+ |subTriSet?| |df2fi| |perfectNthRoot| |logIfCan| |OMserve|
+ |cyclicEntries| |quadraticNorm| |badValues| |e01bef| |subPolSet?|
+ |edf2fi| |approxNthRoot| |sinIfCan| |makeop| |cyclicCopy|
+ |infinityNorm| |retractable?| |e01bff| |internalSubPolSet?| |edf2df|
+ |perfectSquare?| |cosIfCan| |opeval| |cyclic?| |scaleRoots|
+ |ListOfTerms| |e01bgf| |internalInfRittWu?| |expenseOfEvaluation|
+ |perfectSqrt| |tanIfCan| |evaluateInverse| |complexNormalize|
+ |shiftRoots| |PDESolve| |e01bhf| |internalSubQuasiComponent?|
+ |numberOfOperations| |approxSqrt| |cotIfCan| |evaluate|
+ |complexElementary| |degreePartition| |e01daf| |leftFactor| |optimize|
+ |subQuasiComponent?| |edf2efi| |generateIrredPoly| |secIfCan| |conjug|
+ |trigs| |factorOfDegree| |rightFactorCandidate| |e01saf|
+ |removeSuperfluousQuasiComponents| |signature| |dfRange|
+ |complexExpand| |cscIfCan| |adjoint| |real?| |factorsOfDegree|
+ |measure| |e01sbf| |subCase?| |dflist| |complexIntegrate| |asinIfCan|
+ |arity| |complexForm| |pascalTriangle| |coerceImages| |e01sef|
+ |removeSuperfluousCases| |eq?| |df2mf|
+ |dimensionOfIrreducibleRepresentation| |acosIfCan| |getDatabase|
+ |UpTriBddDenomInv| |rangePascalTriangle| |fixedPoints| |e01sff|
+ |prepareDecompose| |doublyTransitive?| |ldf2vmf|
+ |irreducibleRepresentation| |atanIfCan| |numericalOptimization|
+ |LowTriBddDenomInv| |digit?| |sizePascalTriangle| |odd?| |e02adf|
+ |branchIfCan| |edf2ef| |checkRur| |acotIfCan| |goodnessOfFit|
+ |simplify| |delete| |fillPascalTriangle| |even?| |e02aef|
+ |startTableGcd!| |vedf2vef| |cAcsch| |asecIfCan| |whatInfinity|
+ |htrigs| |safeCeiling| |numberOfCycles| |e02agf| |stopTableGcd!|
+ |df2st| |cAsech| |acscIfCan| |infinite?| |simplifyExp| |safeFloor|
+ |cyclePartition| |e02ahf| |startTableInvSet!| |iroot| |f2st| |cAcoth|
+ |sinhIfCan| |finite?| |simplifyLog| |setright!| |safetyMargin|
+ |coerceListOfPairs| |e02ajf| |stopTableInvSet!| |size?| |ldf2lst|
+ |cAtanh| |coshIfCan| |pureLex| |expandPower| |setleft!| |sumSquares|
+ |coercePreimagesImages| |e02akf| |stosePrepareSubResAlgo| |exquo|
+ |sdf2lst| |cAcosh| |tanhIfCan| |totalLex| |expandLog| |point|
+ |euclideanNormalForm| |listRepresentation| |e02baf|
+ |stoseInternalLastSubResultant| |getlo| |cAsinh| |cothIfCan|
+ |reverseLex| |cos2sec| |euclideanGroebner| |permanent| |e02bbf|
+ |stoseIntegralLastSubResultant| |div| |gethi| |cCsch| |sechIfCan|
+ |leftLcm| |cosh2sech| |factorGroebnerBasis| |cycles| |e02bcf|
+ |stoseLastSubResultant| |datalist| |cond| |outputMeasure| |cSech|
+ |cschIfCan| |rightExtendedGcd| |cot2trig| |series| |groebnerFactorize|
+ |cycle| |e02bdf| |stoseInvertible?sqfreg| |quo| |measure2Result|
+ |cCoth| |asinhIfCan| |rightGcd| |coth2trigh| |credPol|
+ |initializeGroupForWordProblem| |e02bef| |stoseInvertibleSetsqfreg|
+ |att2Result| |cTanh| |acoshIfCan| |rightExactQuotient| |csc2sin|
+ |redPol| |movedPoints| |e02daf| |stoseInvertible?reg| |iflist2Result|
+ |cCosh| |atanhIfCan| |rightRemainder| |csch2sinh| |gbasis|
+ |wordInGenerators| |e02dcf| |stoseInvertibleSetreg| |pdf2ef| |box|
+ |cSinh| |acothIfCan| |rightQuotient| |sec2cos| |min|
+ |brillhartIrreducible?| |critT| |wordInStrongGenerators| |e02ddf|
+ |stoseInvertible?| |rem| |pdf2df| |cAcsc| |asechIfCan| |rightLcm|
+ |sech2cosh| |brillhartTrials| |log10| |critM| |orbits| |e02def|
+ |stoseInvertibleSet| |df2ef| |precision| |cAsec| |acschIfCan|
+ |leftExtendedGcd| |sin2csc| |critB| |bitand| |li| |orbit| |e02dff|
+ |stoseSquareFreePart| |fi2df| |cAcot| |pushdown| |leftGcd| |sinh2csch|
+ |bitior| |critBonD| |permutationGroup| |e02gaf| |coleman|
+ |balancedBinaryTree| |super| |cAtan| |pushup| |leftExactQuotient|
+ |tan2trig| |critMTonD1| |wordsForStrongGenerators| |e02zaf|
+ |inverseColeman| |sylvesterMatrix| |sortConstraints| |cAcos|
+ |reducedDiscriminant| |leftRemainder| |tanh2trigh| |critMonD1|
+ |strongGenerators| |e04dgf| |listYoungTableaus| |sumOfSquares| |cAsin|
+ |idealSimplify| |leftQuotient| |tan2cot| |redPo| |generators| |e04fdf|
+ |makeYoungTableau| |splitLinear| |cCsc| |definingInequation|
+ |monicLeftDivide| |tanh2coth| |e04gcf| |nextColeman| |simpleBounds?|
+ |cSec| |definingEquations| |monicRightDivide| |cot2tan| |polyPart|
+ |isOpen?| |e04jaf| |nextLatticePermutation| |linearMatrix| Y |cCot|
+ |setStatus| |leftDivide| |coth2tanh| |fullPartialFraction|
+ |outputBinaryFile| |e04mbf| |nextPartition| |linearPart| |cTan|
+ |quasiAlgebraicSet| |rightDivide| |removeCosSq| |primeFrobenius|
+ |blankSeparate| |e04naf| |numberOfImproperPartitions| |nonLinearPart|
+ |hermiteH| |removeSinSq| F |discreteLog| |semicolonSeparate| |e04ucf|
+ |subSet| |quadratic?| |interval| |semiDiscriminantEuclidean| |debug|
+ |laguerreL| |removeCoshSq| |decreasePrecision| |commaSeparate|
+ |e04ycf| |unrankImproperPartitions0| |changeNameToObjf| |unit?|
+ |chainSubResultants| D |legendreP| |removeSinhSq| |zero|
+ |increasePrecision| |pile| |f01brf| |unrankImproperPartitions1| |test|
+ |optAttributes| |associates?| |schema| |writeBytes!|
+ |expandTrigProducts| |bits| |paren| |any| |Nul| |unitCanonical|
+ |resultantReduit| |writeUInt8!| |fintegrate| |And| |unitNormalize|
+ |bracket| |frobenius| |mainMonomials| |exponents| |unitNormal|
+ |resultantReduitEuclidean| |writeInt8!| |coefficient| |unit| |Or|
+ |computePowers| |prod| |mainCoefficients| |prefix| |iisqrt2|
+ |lfextendedint| |semiResultantReduitEuclidean| |writeByte!| |coHeight|
+ |Not| |flagFactor| |overlabel| |pow| |leastMonomial| |iisqrt3|
+ |lflimitedint| |divide| |sqfrFactor| |overbar| |An| |mainMonomial|
+ |iiexp| |lfinfieldint| |Lazard| |OMmakeConn| |printHeader| **
+ |primeFactor| |prime| |UnVectorise| |quasiMonic?| |iilog|
+ |lfintegrate| |Lazard2| |OMcloseConn| |returnType!| |nthFlag| |quote|
+ |Vectorise| |monic?| |balancedFactorisation| |iisin| |lo|
+ |lfextlimint| |nextsousResultant2| |OMconnInDevice| |argumentList!|
+ |nthExponent| |supersub| |setPoly| |deepestInitial| |mapDown!| |iicos|
+ |BasicMethod| |predicate| |incr| EQ |OMconnOutDevice| |resultantnaif|
+ |endSubProgram| |print| |dim| |irreducibleFactor| |presuper|
+ |exponent| |iteratedInitials| |viewDeltaYDefault| |iitan|
+ |PollardSmallFactor| |resolve| |resultantEuclideannaif| |OMconnectTCP|
+ |currentSubProgram| |nilFactor| |presub| |exQuo| |deepestTail|
+ |viewDeltaXDefault| |iicot| |showTheFTable|
+ |semiResultantEuclideannaif| |OMbindTCP| |newSubProgram|
+ |regularRepresentation| |sub| |moebius| |head| |viewZoomDefault|
+ |iisec| |clearTheFTable| |pdct| |OMopenFile| |clearTheSymbolTable|
+ |traceMatrix| |rarrow| |rightRecip| |mdeg| |viewPhiDefault| |iicsc|
+ |fTable| |powers| |OMopenString| |showTheSymbolTable| |randomLC|
+ |assign| |name| |leftRecip| |mvar| |viewThetaDefault| |iiasin|
+ |palgint0| |partition| |OMclose| |printTypes| |minimize| |slash|
+ |body| |leftPower| |relativeApprox| |pointColorDefault| |iiacos|
+ |palgextint0| |complete| |OMsetEncoding| |newTypeLists| |exp|
+ |category| |module| |over| |rightPower| |rootOf| |lineColorDefault|
+ |iiatan| |palglimint0| |pole?| |OMputApp| |typeLists| ~ |domain|
+ |rightRegularRepresentation| |zag| |derivationCoordinates|
+ |allRootsOf| |axesColorDefault| |iiacot| |parameters| |palgRDE0|
+ |listBranches| |OMputAtp| |externalList| |package|
+ |leftRegularRepresentation| |insert| |postfix| |one?|
+ |definingPolynomial| |unitsColorDefault| |iiasec| |palgLODE0|
+ |triangular?| |OMputAttr| |typeList| |open| |rightTraceMatrix| |infix|
+ |center| |splitSquarefree| |positive?| |pointSizeDefault| |iiacsc|
+ |chineseRemainder| |rewriteIdealWithRemainder| |length| |OMputBind|
+ |parametersOf| |leftTraceMatrix| |vconcat| |fortran| |normalDenom|
+ |negative?| |viewPosDefault| |iisinh| |divisors| |hi|
+ |rewriteIdealWithHeadRemainder| |scripts| |OMputBVar| |fortranTypeOf|
+ |second| |rightDiscriminant| |hconcat| |totalfract| |zero?|
+ |viewSizeDefault| |iicosh| |eulerPhi| |remainder| |OMputError| |empty|
+ |third| |leftDiscriminant| |rspace| |pushdterm| |augment|
+ |viewDefaults| |iitanh| |fibonacci| |headRemainder| |OMputObject|
+ |compound?| |operations| |represents| |vspace| |pushucoef|
+ |lastSubResultant| |shift| |viewWriteDefault| |iicoth| |harmonic|
+ |roughUnitIdeal?| |OMputEndApp| |getOperands| |mergeFactors| |hspace|
+ |pushuconst| |lastSubResultantElseSplit| |viewWriteAvailable| |iisech|
+ |jacobi| |roughEqualIdeals?| |OMputEndAtp| |getOperator| |isMult|
+ |superHeight| |numberOfMonomials| |invertibleSet| |var1StepsDefault|
+ |iicsch| |moebiusMu| |roughSubIdeal?| |OMputEndAttr| |nil?|
+ |exprToXXP| |subHeight| |multiset| |invertible?| |var2StepsDefault|
+ |iiasinh| |numberOfDivisors| |roughBase?| |OMputEndBind| |buildSyntax|
+ |property| |exprToUPS| |doubleFloatFormat| |mergeDifference|
+ |invertibleElseSplit?| |tubePointsDefault| |clearCache| |iiacosh|
+ |sumOfDivisors| |trivialIdeal?| |OMputEndBVar| |solve| |exprToGenUPS|
+ |messagePrint| |squareFreePrim| |purelyAlgebraicLeadingMonomial?|
+ |tubeRadiusDefault| |iiatanh| |lcm| |sumOfKthPowerDivisors|
+ |collectUpper| |OMputEndError| |triangularSystems| |localAbs|
+ |members| |compdegd| |algebraicCoefficients?| |dimension| |iiacoth|
+ |HermiteIntegrate| |collect| |OMputEndObject| |nativeModuleExtension|
+ |units| |universe| |padecf| |univcase| |purelyTranscendental?| |crest|
+ |stack| |iiasech| |append| |palgint| |collectUnder| |OMputInteger|
+ |hostByteOrder| |complement| |pade| |consnewpol| |purelyAlgebraic?|
+ |cfirst| |iiacsch| |gcd| |palgextint| |mainVariable?| |OMputFloat|
+ |hostPlatform| |cardinality| |comp| |root| |script| |nsqfree|
+ |prepareSubResAlgo| |sts2stst| |has?| |initial| |specialTrigs| |false|
+ |palglimint| |mainVariables| |OMputVariable| |rootDirectory|
+ |internalIntegrate0| |quotientByP| |intChoose|
+ |internalLastSubResultant| |clikeUniv| |comparison| |localReal?|
+ |palgRDE| |removeSquaresIfCan| |OMputString| |bumprow| |makeCos|
+ |moduloP| |coefChoose| |integralLastSubResultant| |weierstrass|
+ |rischNormalize| |palgLODE| |unprotectedRemoveRedundantFactors|
+ |OMputSymbol| |bumptab| |makeSin| |modulus| |tex| |myDegree|
+ |toseLastSubResultant| |qqq| |realElementary| |linear| |splitConstant|
+ |removeRedundantFactors| |OMgetApp| |bumptab1| |iiGamma| |digits|
+ |normDeriv2| |toseInvertible?| |integralBasis| |validExponential| |#|
+ |pmComplexintegrate| |certainlySubVariety?| |OMgetAtp| |untab| |iiabs|
+ |continuedFraction| |plenaryPower| |toseInvertibleSet|
+ |localIntegralBasis| |rootNormalize| |polynomial| |pmintegrate|
+ |possiblyNewVariety?| |OMgetAttr| |bat1| |plusInfinity| |bringDown|
+ |light| |c02aff| |toseSquareFreePart| |qualifier| |dom| |tanQ|
+ |infieldint| |probablyZeroDim?| |OMgetBind| |bat| |minusInfinity|
+ |newReduc| |pastel| |c02agf| |quotedOperators| |mainExpression|
+ |callForm?| |extendedint| |selectPolynomials| |OMgetBVar| |tab1|
+ |logical?| |c05adf| |dark| |list| |rur| |changeWeightLevel|
+ |getIdentifier| |limitedint| |selectOrPolynomials| |OMgetError| |tab|
+ |character?| |c05nbf| |getSyntaxFormsFromFile| |car| |create|
+ |characteristicSerie| |getConstant| |integerIfCan|
+ |selectAndPolynomials| |OMgetObject| |lex| |doubleComplex?| |c05pbf|
+ |surface| |cdr| |symbol| |enterInCache| |characteristicSet| |select!|
+ |internalIntegrate| |quasiMonicPolynomials| |OMgetEndApp| |slex|
+ |complex?| |setDifference| |c06eaf| |coordinate| |expression|
+ |currentCategoryFrame| |medialSet| |delete!| |infieldIntegrate|
+ |univariate?| |OMgetEndAtp| |inverse| |title| |double?|
+ |setIntersection| |c06ebf| |partitions| |options| |currentScope|
+ |integer| |Hausdorff| |sn| |limitedIntegrate| |univariatePolynomials|
+ |OMgetEndAttr| |maxrow| |ffactor| |rule| |setUnion| |conjugates|
+ |c06ecf| |pushNewContour| |Frobenius| |say| |dn| |extendedIntegrate|
+ |linear?| |OMgetEndBind| |tableau| |type| |qfactor| |c06ekf| |shuffle|
+ |findBinding| |apply| |transcendenceDegree| |e| |sncndn| |varselect|
+ |linearPolynomials| |OMgetEndBVar| |listOfLists| |UP2ifCan|
+ |shufflein| |string| |c06fpf| |contours| |extensionDegree|
+ |categoryFrame| |kmax| |bivariate?| |OMgetEndError| |tanSum|
+ |anfactor| |c06fqf| |sequences| |structuralConstants| |size|
+ |inGroundField?| |ksec| |bivariatePolynomials| |OMgetEndObject|
+ |tanAn| |fortranCharacter| |permutations| |c06frf| |coordinates|
+ |leader| |transcendent?| |leadingBasisTerm| |constructor| |vark|
+ |removeRoughlyRedundantFactorsInPols| |OMgetInteger| |tanNa|
+ |fortranDoubleComplex| |atoms| |c06fuf| |bounds| |algebraic?|
+ |ignore?| |removeConstantTerm| |removeRoughlyRedundantFactorsInPol|
+ |OMgetFloat| |initTable!| |fortranComplex| |c06gbf| |makeResult|
+ |high| |first| |sh| |computeInt| |void| |reset| |mkPrim| |interReduce|
+ |OMgetVariable| |printInfo!| |c06gcf| |low| |rest| |mirror|
+ |checkForZero| |intPatternMatch| |roughBasicSet| |OMgetString|
+ |startStats!| |binaryTournament| |leftMinimalPolynomial| |substitute|
+ |c06gqf| |subset?| |monomial?| |logGamma| |numeric| |write|
+ |primintegrate| |crushedSet| |OMgetSymbol| |printStats!|
+ |associatorDependence| |removeDuplicates| |c06gsf|
+ |symmetricDifference| |rquo| |hypergeometric0F1| |save| |radical|
+ |expintegrate| |rewriteSetByReducingWithParticularGenerators|
+ |OMgetType| |clearTable!| |lieAlgebra?| |d01ajf| |difference| |lquo|
+ |rotatez| |OMencodingBinary| |usingTable?| |jordanAlgebra?| |d01akf|
+ |intersect| |width| |mindegTerm| |rotatey| |call| |readBytes!|
+ |sylvesterSequence| |OMencodingSGML| |printingInfo?|
+ |noncommutativeJordanAlgebra?| |d01alf| |part?| |product| |rotatex|
+ |readUInt32!| |sturmSequence| |OMencodingXML| |makingStats?|
+ |jordanAdmissible?| |d01amf| |latex| |LiePolyIfCan| |identity|
+ |readInt32!| |boundOfCauchy| |OMencodingUnknown| |extractIfCan|
+ |lieAdmissible?| |trunc| |dictionary| |readUInt16!|
+ |sturmVariationsOf| |omError| |insert!| |jacobiIdentity?|
+ |constantLeft| |symmetric?| |degree| |dioSolve| |dec| |readInt16!|
+ |lazyVariations| |unknownEndian| |errorInfo| |interpretString|
+ |powerAssociative?| |twist| |diagonal?| |quasiRegular| |newLine|
+ |readUInt8!| |content| |bigEndian| |flatten| |errorKind|
+ |stripCommentsAndBlanks| |byte| |alternative?| |setsubMatrix!|
+ |square?| |quasiRegular?| |copies| |readInt8!| |totalDegree|
+ |littleEndian| |setLength!| |flexible?| |subMatrix|
+ |rectangularMatrix| |optional| |constant?| |subtractIfCan| |sayLength|
+ |readByte!| |minimumDegree| |ScanRoman| |delay| |capacity|
+ |rightAlternative?| |swapColumns!| |characteristic| |mindeg|
+ |setPosition| |setnext!| |setFieldInfo| |monomials|
+ |ScanFloatIgnoreSpaces| |findCycle| |byteBuffer| |leftAlternative?|
+ |swapRows!| |round| |maxdeg| |generalizedContinuumHypothesisAssumed|
+ |setprevious!| |pol| |isPlus| |ScanFloatIgnoreSpacesIfCan|
+ |repeating?| |antiAssociative?| |vertConcat| |fractionPart|
+ |generalizedContinuumHypothesisAssumed?| |shanksDiscLogAlgorithm| |xn|
+ |isTimes| |numericalIntegration| |repeating| |associative?|
+ |horizConcat| |wholePart| |quoByVar| |countable?| |reflect| |dAndcExp|
+ |isExpt| |rk4| |recip| |antiCommutative?| |squareTop| |floor|
+ |coefficients| |Aleph| |reify| |repSq| |isPower| |pattern| |rk4a|
+ |integers| |commutative?| |elRow1!| |ceiling| |stFunc1| |unravel|
+ |separant| |expPot| |rroot| |rk4qc| |oddintegers|
+ |rightCharacteristicPolynomial| |elRow2!| |norm| |stFunc2|
+ |leviCivitaSymbol| |isobaric?| |qPot| |qroot| |rk4f| |int|
+ |outerProduct| |leftCharacteristicPolynomial| |elColumn2!|
+ |mightHaveRoots| |stFuncN| |kroneckerDelta| |weights| |lookup| |froot|
+ |aromberg| |mapmult| |varList| |rightNorm| |bright|
+ |fractionFreeGauss!| |refine| |fixedPointExquo| |reindex|
+ |differentialVariables| |normal?| |message| |nthr| |asimpson| |deriv|
+ |leftNorm| |invertIfCan| |middle| |ode1| |principalAncestors|
+ |extractBottom!| |basis| |firstUncouplingMatrix| |atrapezoidal|
+ |gderiv| |rightTrace| |copy!| |roman| |ode2| |exportedOperators|
+ |extractTop!| NOT |normalElement| |integral| |romberg| |compose|
+ |leftTrace| |plus!| |recoverAfterFail| |ode| |alphanumeric|
+ |insertBottom!| OR |minimalPolynomial| |primitiveElement| |simpson|
+ |addiag| |someBasis| |matrix| |minus!| |showTheRoutinesTable| |mpsode|
+ |alphabetic| |insertTop!| AND |position!| |nextPrime| |trapezoidal|
+ |lazyIntegrate| |mantissa| |sort!| |leftScalarTimes!| |deleteRoutine!|
+ UP2UTS |hexDigit| |bottom!| |eof?| |prevPrime| |rombergo| |nlde|
+ |copyInto!| |rightScalarTimes!| |getExplanations| |cons| UTS2UP
+ |digit| |top!| |inputBinaryFile| |primes| |simpsono| |powern|
+ |sorted?| |times!| |getMeasure| LODO2FUN |charClass| |dequeue| |error|
+ |increment| |selectsecond| |trapezoidalo| |mapdiv| |LiePoly| |power!|
+ |changeMeasure| RF2UTS |alphanumeric?| |recolor| |charpol|
+ |selectfirst| |sup| |lazyGintegrate| |arguments| |quickSort| |just|
+ |changeThreshhold| |magnitude| |lowerCase?| |drawComplex| |solve1|
+ |makeprod| |imagE| |power| |vector| |mr| |heapSort| |gradient|
+ |selectMultiDimensionalRoutines| |double| |cross| |upperCase?|
+ |drawComplexVectorField| |innerEigenvectors| |equivOperands| |imagk|
+ |sincos| |shellSort| |divergence| |selectNonFiniteRoutines| |dot|
+ |alphabetic?| |setRealSteps| |parseString| |equiv?| |imagj| |sinhcosh|
+ |outputSpacing| |laplacian| |selectSumOfSquaresRoutines| |source|
+ |scan| |hexDigit?| |setImagSteps| |subst| |unparse| |impliesOperands|
+ |imagi| |subresultantVector| |plus| |outputGeneral| |hessian|
+ |selectFiniteRoutines| |graphCurves| |escape| |setClipValue| *
+ |binary| |implies?| |octon| |primitivePart| |outputFixed|
+ |bandedHessian| |selectODEIVPRoutines| |drawCurves| |ord| |option?|
+ |packageCall| |orOperands| |ODESolve| |pointData| |outputFloating|
+ |jacobian| |selectPDERoutines| |scale| |range| |innerSolve1| |or?|
+ |constDsolve| |parent| |exp1| |bandedJacobian|
+ |selectOptimizationRoutines| |connect| |colorFunction| |innerSolve|
+ |andOperands| |showTheIFTable| |extractProperty| |times| |log2|
+ |duplicates| |selectIntegrationRoutines| |target| |declare!| |region|
+ |curveColor| |isQuotient| |makeEq| |and?| |clearTheIFTable|
+ |extractClosed| |rationalApproximation| |removeDuplicates!| |routines|
+ |points| |pointColor| |modularGcdPrimitive| |iFTable| |notOperand|
+ |objects| |extractIndex| |differentiate| |relerror| |linears|
+ |mainSquareFreePart| |getGraph| |clip| |modularGcd|
+ |showIntensityFunctions| |variable?| |base| |extractPoint|
+ |complexSolve| |ddFact| |mainPrimitivePart| |putGraph| |clipBoolean|
+ |reduction| |term| |expint| |traverse| |monom| |complexRoots|
+ |separateFactors| |mainContent| |graphs| |style| |signAround| |term?|
+ |diff| |defineProperty| |realRoots| |exptMod| |primitivePart!|
+ |graphStates| |toScale| |height| |invmod| |equiv| |algDsolve|
+ |closeComponent| |leadingTerm| |meshPar2Var| |failed|
+ |nextsubResultant2| |ravel| |graphState| |rootsOf| |pointColorPalette|
+ |powmod| |implies| |denomLODE| |modifyPoint| |common| |writable?|
+ |meshFun2Var| |reshape| |LazardQuotient2| |segment| |makeViewport2D|
+ |makeSketch| |curveColorPalette| |mulmod| |merge!| |indicialEquations|
+ |addPointLast| |tree| |readable?| |meshPar1Var| |LazardQuotient|
+ |viewport2D| |inrootof| |var1Steps| |submod| |resultantEuclidean|
+ |indicialEquation| |addPoint2| |declare| |exists?| |ptFunc|
+ |subResultantChain| |getPickedPoints| |droot| |char| |var2Steps|
+ |addmod| |semiResultantEuclidean2| |denomRicDE| |addPoint| |extension|
+ |minimumExponent| |qelt| |halfExtendedSubResultantGcd2| |colorDef|
+ |space| |symmetricRemainder| |semiResultantEuclidean1|
+ |leadingCoefficientRicDE| |merge| |qsetelt| |shallowExpand| |tail|
+ |maximumExponent| |halfExtendedSubResultantGcd1| |intensity|
+ |tubePoints| |positiveRemainder| |indiceSubResultant|
+ |constantCoefficientRicDE| |deepCopy| |deepExpand| |rowEch| |xRange|
+ |extendedSubResultantGcd| |update| |lighting| |tubeRadius| |bit?|
+ |indiceSubResultantEuclidean| |changeVar| |shallowCopy|
+ |clearFortranOutputStack| |rowEchLocal| |yRange| |exactQuotient!|
+ |clipSurface| |previous| |weight| |algint|
+ |semiIndiceSubResultantEuclidean| |ratDsolve| |numberOfChildren|
+ |generator| |showFortranOutputStack| |rowEchelonLocal| |zRange|
+ |exactQuotient| |showClipRegion| |makeVariable| |float| |algintegrate|
+ |degreeSubResultant| |indicialEquationAtInfinity| |children|
+ |topFortranOutputStack| |map!| |normalizedDivide|
+ |primPartElseUnitCanonical!| |showRegion| |finiteBound|
+ |palgintegrate| |degreeSubResultantEuclidean| |reduceLODE| |child|
+ |qsetelt!| |setFormula!| |maxint| |primPartElseUnitCanonical|
+ |hitherPlane| |palginfieldint| |semiDegreeSubResultantEuclidean|
+ |singRicDE| |birth| |linkToFortran| |binaryFunction|
+ |lazyResidueClass| |match?| |position| |eyeDistance| |complexZeros|
+ |log| |bitLength| |lastSubResultantEuclidean| |polyRicDE| |internal?|
+ |setLegalFortranSourceExtensions| |makeFloatFunction| |monicModulo|
+ |perspective| |divisorCascade| |constantOpIfCan| |reverse| |bitCoef|
+ |semiLastSubResultantEuclidean| |ricDsolve| |root?| |fracPart| |nil|
+ |infinite| |arbitraryExponent| |approximate| |complex|
+ |shallowMutable| |canonical| |noetherian| |central|
|partiallyOrderedSet| |arbitraryPrecision| |canonicalsClosed|
|noZeroDivisors| |rightUnitary| |leftUnitary| |additiveValuation|
|unitsKnown| |canonicalUnitNormal| |multiplicativeValuation|
diff --git a/src/share/algebra/interp.daase b/src/share/algebra/interp.daase
index fb759cd3..95c377f3 100644
--- a/src/share/algebra/interp.daase
+++ b/src/share/algebra/interp.daase
@@ -1,349 +1,349 @@
-(3195384 . 3443021592)
-((-3523 (((-112) (-1 (-112) |#2| |#2|) $) 63) (((-112) $) NIL)) (-2770 (($ (-1 (-112) |#2| |#2|) $) 18) (($ $) NIL)) (-1849 ((|#2| $ (-563) |#2|) NIL) ((|#2| $ (-1224 (-563)) |#2|) 34)) (-2907 (($ $) 59)) (-2444 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 40) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 38) ((|#2| (-1 |#2| |#2| |#2|) $) 37)) (-4368 (((-563) (-1 (-112) |#2|) $) 22) (((-563) |#2| $) NIL) (((-563) |#2| $ (-563)) 73)) (-2659 (((-640 |#2|) $) 13)) (-3164 (($ (-1 (-112) |#2| |#2|) $ $) 47) (($ $ $) NIL)) (-4345 (($ (-1 |#2| |#2|) $) 29)) (-2240 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 44)) (-3396 (($ |#2| $ (-563)) NIL) (($ $ $ (-563)) 50)) (-4203 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 24)) (-3138 (((-112) (-1 (-112) |#2|) $) 21)) (-2309 ((|#2| $ (-563) |#2|) NIL) ((|#2| $ (-563)) NIL) (($ $ (-1224 (-563))) 49)) (-2963 (($ $ (-563)) 56) (($ $ (-1224 (-563))) 55)) (-1709 (((-767) (-1 (-112) |#2|) $) 26) (((-767) |#2| $) NIL)) (-3076 (($ $ $ (-563)) 52)) (-1872 (($ $) 51)) (-1707 (($ (-640 |#2|)) 53)) (-2853 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 64) (($ (-640 $)) 62)) (-1693 (((-858) $) 69)) (-4383 (((-112) (-1 (-112) |#2|) $) 20)) (-1718 (((-112) $ $) 72)) (-1744 (((-112) $ $) 75)))
-(((-18 |#1| |#2|) (-10 -8 (-15 -1718 ((-112) |#1| |#1|)) (-15 -1693 ((-858) |#1|)) (-15 -1744 ((-112) |#1| |#1|)) (-15 -2770 (|#1| |#1|)) (-15 -2770 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2907 (|#1| |#1|)) (-15 -3076 (|#1| |#1| |#1| (-563))) (-15 -3523 ((-112) |#1|)) (-15 -3164 (|#1| |#1| |#1|)) (-15 -4368 ((-563) |#2| |#1| (-563))) (-15 -4368 ((-563) |#2| |#1|)) (-15 -4368 ((-563) (-1 (-112) |#2|) |#1|)) (-15 -3523 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3164 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1849 (|#2| |#1| (-1224 (-563)) |#2|)) (-15 -3396 (|#1| |#1| |#1| (-563))) (-15 -3396 (|#1| |#2| |#1| (-563))) (-15 -2963 (|#1| |#1| (-1224 (-563)))) (-15 -2963 (|#1| |#1| (-563))) (-15 -2309 (|#1| |#1| (-1224 (-563)))) (-15 -2240 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2853 (|#1| (-640 |#1|))) (-15 -2853 (|#1| |#1| |#1|)) (-15 -2853 (|#1| |#2| |#1|)) (-15 -2853 (|#1| |#1| |#2|)) (-15 -1707 (|#1| (-640 |#2|))) (-15 -4203 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2309 (|#2| |#1| (-563))) (-15 -2309 (|#2| |#1| (-563) |#2|)) (-15 -1849 (|#2| |#1| (-563) |#2|)) (-15 -1709 ((-767) |#2| |#1|)) (-15 -2659 ((-640 |#2|) |#1|)) (-15 -1709 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -3138 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4383 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4345 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1872 (|#1| |#1|))) (-19 |#2|) (-1208)) (T -18))
+(3195604 . 3443721788)
+((-4073 (((-112) (-1 (-112) |#2| |#2|) $) 63) (((-112) $) NIL)) (-4052 (($ (-1 (-112) |#2| |#2|) $) 18) (($ $) NIL)) (-1849 ((|#2| $ (-563) |#2|) NIL) ((|#2| $ (-1224 (-563)) |#2|) 34)) (-1574 (($ $) 59)) (-2444 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 40) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 38) ((|#2| (-1 |#2| |#2| |#2|) $) 37)) (-4369 (((-563) (-1 (-112) |#2|) $) 22) (((-563) |#2| $) NIL) (((-563) |#2| $ (-563)) 73)) (-2658 (((-640 |#2|) $) 13)) (-4300 (($ (-1 (-112) |#2| |#2|) $ $) 47) (($ $ $) NIL)) (-4347 (($ (-1 |#2| |#2|) $) 29)) (-2238 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 44)) (-3399 (($ |#2| $ (-563)) NIL) (($ $ $ (-563)) 50)) (-1971 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 24)) (-1458 (((-112) (-1 (-112) |#2|) $) 21)) (-2308 ((|#2| $ (-563) |#2|) NIL) ((|#2| $ (-563)) NIL) (($ $ (-1224 (-563))) 49)) (-2967 (($ $ (-563)) 56) (($ $ (-1224 (-563))) 55)) (-1708 (((-767) (-1 (-112) |#2|) $) 26) (((-767) |#2| $) NIL)) (-4062 (($ $ $ (-563)) 52)) (-1870 (($ $) 51)) (-1706 (($ (-640 |#2|)) 53)) (-2857 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 64) (($ (-640 $)) 62)) (-1692 (((-858) $) 69)) (-1471 (((-112) (-1 (-112) |#2|) $) 20)) (-1718 (((-112) $ $) 72)) (-1743 (((-112) $ $) 75)))
+(((-18 |#1| |#2|) (-10 -8 (-15 -1718 ((-112) |#1| |#1|)) (-15 -1692 ((-858) |#1|)) (-15 -1743 ((-112) |#1| |#1|)) (-15 -4052 (|#1| |#1|)) (-15 -4052 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -1574 (|#1| |#1|)) (-15 -4062 (|#1| |#1| |#1| (-563))) (-15 -4073 ((-112) |#1|)) (-15 -4300 (|#1| |#1| |#1|)) (-15 -4369 ((-563) |#2| |#1| (-563))) (-15 -4369 ((-563) |#2| |#1|)) (-15 -4369 ((-563) (-1 (-112) |#2|) |#1|)) (-15 -4073 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4300 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1849 (|#2| |#1| (-1224 (-563)) |#2|)) (-15 -3399 (|#1| |#1| |#1| (-563))) (-15 -3399 (|#1| |#2| |#1| (-563))) (-15 -2967 (|#1| |#1| (-1224 (-563)))) (-15 -2967 (|#1| |#1| (-563))) (-15 -2308 (|#1| |#1| (-1224 (-563)))) (-15 -2238 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2857 (|#1| (-640 |#1|))) (-15 -2857 (|#1| |#1| |#1|)) (-15 -2857 (|#1| |#2| |#1|)) (-15 -2857 (|#1| |#1| |#2|)) (-15 -1706 (|#1| (-640 |#2|))) (-15 -1971 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2308 (|#2| |#1| (-563))) (-15 -2308 (|#2| |#1| (-563) |#2|)) (-15 -1849 (|#2| |#1| (-563) |#2|)) (-15 -1708 ((-767) |#2| |#1|)) (-15 -2658 ((-640 |#2|) |#1|)) (-15 -1708 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -1458 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1471 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4347 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1870 (|#1| |#1|))) (-19 |#2|) (-1208)) (T -18))
NIL
-(-10 -8 (-15 -1718 ((-112) |#1| |#1|)) (-15 -1693 ((-858) |#1|)) (-15 -1744 ((-112) |#1| |#1|)) (-15 -2770 (|#1| |#1|)) (-15 -2770 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2907 (|#1| |#1|)) (-15 -3076 (|#1| |#1| |#1| (-563))) (-15 -3523 ((-112) |#1|)) (-15 -3164 (|#1| |#1| |#1|)) (-15 -4368 ((-563) |#2| |#1| (-563))) (-15 -4368 ((-563) |#2| |#1|)) (-15 -4368 ((-563) (-1 (-112) |#2|) |#1|)) (-15 -3523 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3164 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1849 (|#2| |#1| (-1224 (-563)) |#2|)) (-15 -3396 (|#1| |#1| |#1| (-563))) (-15 -3396 (|#1| |#2| |#1| (-563))) (-15 -2963 (|#1| |#1| (-1224 (-563)))) (-15 -2963 (|#1| |#1| (-563))) (-15 -2309 (|#1| |#1| (-1224 (-563)))) (-15 -2240 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2853 (|#1| (-640 |#1|))) (-15 -2853 (|#1| |#1| |#1|)) (-15 -2853 (|#1| |#2| |#1|)) (-15 -2853 (|#1| |#1| |#2|)) (-15 -1707 (|#1| (-640 |#2|))) (-15 -4203 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2309 (|#2| |#1| (-563))) (-15 -2309 (|#2| |#1| (-563) |#2|)) (-15 -1849 (|#2| |#1| (-563) |#2|)) (-15 -1709 ((-767) |#2| |#1|)) (-15 -2659 ((-640 |#2|) |#1|)) (-15 -1709 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -3138 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4383 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4345 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1872 (|#1| |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-4378 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4408)))) (-3523 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-846)))) (-2770 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4408))) (($ $) 88 (-12 (|has| |#1| (-846)) (|has| $ (-6 -4408))))) (-1642 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-846)))) (-2759 (((-112) $ (-767)) 8)) (-1849 ((|#1| $ (-563) |#1|) 52 (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) 58 (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4407)))) (-4239 (($) 7 T CONST)) (-2907 (($ $) 90 (|has| $ (-6 -4408)))) (-4382 (($ $) 100)) (-3813 (($ $) 78 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ |#1| $) 77 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4407)))) (-4355 ((|#1| $ (-563) |#1|) 53 (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) 51)) (-4368 (((-563) (-1 (-112) |#1|) $) 97) (((-563) |#1| $) 96 (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) 95 (|has| |#1| (-1093)))) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-1566 (($ (-767) |#1|) 69)) (-2581 (((-112) $ (-767)) 9)) (-2411 (((-563) $) 43 (|has| (-563) (-846)))) (-3084 (($ $ $) 87 (|has| |#1| (-846)))) (-3164 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-846)))) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-3860 (((-563) $) 44 (|has| (-563) (-846)))) (-1777 (($ $ $) 86 (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-3396 (($ |#1| $ (-563)) 60) (($ $ $ (-563)) 59)) (-4318 (((-640 (-563)) $) 46)) (-3192 (((-112) (-563) $) 47)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3781 ((|#1| $) 42 (|has| (-563) (-846)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2358 (($ $ |#1|) 41 (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-2105 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) 48)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ (-563) |#1|) 50) ((|#1| $ (-563)) 49) (($ $ (-1224 (-563))) 63)) (-2963 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-3076 (($ $ $ (-563)) 91 (|has| $ (-6 -4408)))) (-1872 (($ $) 13)) (-2220 (((-536) $) 79 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 70)) (-2853 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) 84 (|has| |#1| (-846)))) (-1756 (((-112) $ $) 83 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-1768 (((-112) $ $) 85 (|has| |#1| (-846)))) (-1744 (((-112) $ $) 82 (|has| |#1| (-846)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+(-10 -8 (-15 -1718 ((-112) |#1| |#1|)) (-15 -1692 ((-858) |#1|)) (-15 -1743 ((-112) |#1| |#1|)) (-15 -4052 (|#1| |#1|)) (-15 -4052 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -1574 (|#1| |#1|)) (-15 -4062 (|#1| |#1| |#1| (-563))) (-15 -4073 ((-112) |#1|)) (-15 -4300 (|#1| |#1| |#1|)) (-15 -4369 ((-563) |#2| |#1| (-563))) (-15 -4369 ((-563) |#2| |#1|)) (-15 -4369 ((-563) (-1 (-112) |#2|) |#1|)) (-15 -4073 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4300 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1849 (|#2| |#1| (-1224 (-563)) |#2|)) (-15 -3399 (|#1| |#1| |#1| (-563))) (-15 -3399 (|#1| |#2| |#1| (-563))) (-15 -2967 (|#1| |#1| (-1224 (-563)))) (-15 -2967 (|#1| |#1| (-563))) (-15 -2308 (|#1| |#1| (-1224 (-563)))) (-15 -2238 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2857 (|#1| (-640 |#1|))) (-15 -2857 (|#1| |#1| |#1|)) (-15 -2857 (|#1| |#2| |#1|)) (-15 -2857 (|#1| |#1| |#2|)) (-15 -1706 (|#1| (-640 |#2|))) (-15 -1971 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2308 (|#2| |#1| (-563))) (-15 -2308 (|#2| |#1| (-563) |#2|)) (-15 -1849 (|#2| |#1| (-563) |#2|)) (-15 -1708 ((-767) |#2| |#1|)) (-15 -2658 ((-640 |#2|) |#1|)) (-15 -1708 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -1458 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1471 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4347 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1870 (|#1| |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2208 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4409)))) (-4073 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-846)))) (-4052 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4409))) (($ $) 88 (-12 (|has| |#1| (-846)) (|has| $ (-6 -4409))))) (-1640 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-846)))) (-3001 (((-112) $ (-767)) 8)) (-1849 ((|#1| $ (-563) |#1|) 52 (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) 58 (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4408)))) (-2569 (($) 7 T CONST)) (-1574 (($ $) 90 (|has| $ (-6 -4409)))) (-4383 (($ $) 100)) (-3814 (($ $) 78 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ |#1| $) 77 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4408)))) (-4356 ((|#1| $ (-563) |#1|) 53 (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) 51)) (-4369 (((-563) (-1 (-112) |#1|) $) 97) (((-563) |#1| $) 96 (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) 95 (|has| |#1| (-1093)))) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-1565 (($ (-767) |#1|) 69)) (-2514 (((-112) $ (-767)) 9)) (-2236 (((-563) $) 43 (|has| (-563) (-846)))) (-3088 (($ $ $) 87 (|has| |#1| (-846)))) (-4300 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-846)))) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-2251 (((-563) $) 44 (|has| (-563) (-846)))) (-1776 (($ $ $) 86 (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-3399 (($ |#1| $ (-563)) 60) (($ $ $ (-563)) 59)) (-2272 (((-640 (-563)) $) 46)) (-2282 (((-112) (-563) $) 47)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3782 ((|#1| $) 42 (|has| (-563) (-846)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2221 (($ $ |#1|) 41 (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) 48)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ (-563) |#1|) 50) ((|#1| $ (-563)) 49) (($ $ (-1224 (-563))) 63)) (-2967 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4062 (($ $ $ (-563)) 91 (|has| $ (-6 -4409)))) (-1870 (($ $) 13)) (-2219 (((-536) $) 79 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 70)) (-2857 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) 84 (|has| |#1| (-846)))) (-1754 (((-112) $ $) 83 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-1766 (((-112) $ $) 85 (|has| |#1| (-846)))) (-1743 (((-112) $ $) 82 (|has| |#1| (-846)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-19 |#1|) (-140) (-1208)) (T -19))
NIL
-(-13 (-373 |t#1|) (-10 -7 (-6 -4408)))
-(((-34) . T) ((-102) -4032 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-846)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-373 |#1|) . T) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-846) |has| |#1| (-846)) ((-1093) -4032 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-1208) . T))
-((-1495 (((-3 $ "failed") $ $) 12)) (-1826 (($ $) NIL) (($ $ $) 9)) (* (($ (-917) $) NIL) (($ (-767) $) 16) (($ (-563) $) 21)))
-(((-20 |#1|) (-10 -8 (-15 * (|#1| (-563) |#1|)) (-15 -1826 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 -1495 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|))) (-21)) (T -20))
+(-13 (-373 |t#1|) (-10 -7 (-6 -4409)))
+(((-34) . T) ((-102) -4034 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-846)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-373 |#1|) . T) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-846) |has| |#1| (-846)) ((-1093) -4034 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-1208) . T))
+((-3905 (((-3 $ "failed") $ $) 12)) (-1825 (($ $) NIL) (($ $ $) 9)) (* (($ (-917) $) NIL) (($ (-767) $) 16) (($ (-563) $) 21)))
+(((-20 |#1|) (-10 -8 (-15 * (|#1| (-563) |#1|)) (-15 -1825 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 -3905 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|))) (-21)) (T -20))
NIL
-(-10 -8 (-15 * (|#1| (-563) |#1|)) (-15 -1826 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 -1495 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20)))
+(-10 -8 (-15 * (|#1| (-563) |#1|)) (-15 -1825 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 -3905 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20)))
(((-21) (-140)) (T -21))
-((-1826 (*1 *1 *1) (-4 *1 (-21))) (-1826 (*1 *1 *1 *1) (-4 *1 (-21))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-21)) (-5 *2 (-563)))))
-(-13 (-131) (-10 -8 (-15 -1826 ($ $)) (-15 -1826 ($ $ $)) (-15 * ($ (-563) $))))
+((-1825 (*1 *1 *1) (-4 *1 (-21))) (-1825 (*1 *1 *1 *1) (-4 *1 (-21))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-21)) (-5 *2 (-563)))))
+(-13 (-131) (-10 -8 (-15 -1825 ($ $)) (-15 -1825 ($ $ $)) (-15 * ($ (-563) $))))
(((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-3411 (((-112) $) 10)) (-4239 (($) 15)) (* (($ (-917) $) 14) (($ (-767) $) 18)))
-(((-22 |#1|) (-10 -8 (-15 * (|#1| (-767) |#1|)) (-15 -3411 ((-112) |#1|)) (-15 -4239 (|#1|)) (-15 * (|#1| (-917) |#1|))) (-23)) (T -22))
+((-3439 (((-112) $) 10)) (-2569 (($) 15)) (* (($ (-917) $) 14) (($ (-767) $) 18)))
+(((-22 |#1|) (-10 -8 (-15 * (|#1| (-767) |#1|)) (-15 -3439 ((-112) |#1|)) (-15 -2569 (|#1|)) (-15 * (|#1| (-917) |#1|))) (-23)) (T -22))
NIL
-(-10 -8 (-15 * (|#1| (-767) |#1|)) (-15 -3411 ((-112) |#1|)) (-15 -4239 (|#1|)) (-15 * (|#1| (-917) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4239 (($) 17 T CONST)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15)))
+(-10 -8 (-15 * (|#1| (-767) |#1|)) (-15 -3439 ((-112) |#1|)) (-15 -2569 (|#1|)) (-15 * (|#1| (-917) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-2569 (($) 17 T CONST)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15)))
(((-23) (-140)) (T -23))
-((-2241 (*1 *1) (-4 *1 (-23))) (-4239 (*1 *1) (-4 *1 (-23))) (-3411 (*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-767)))))
-(-13 (-25) (-10 -8 (-15 (-2241) ($) -2669) (-15 -4239 ($) -2669) (-15 -3411 ((-112) $)) (-15 * ($ (-767) $))))
+((-2239 (*1 *1) (-4 *1 (-23))) (-2569 (*1 *1) (-4 *1 (-23))) (-3439 (*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-767)))))
+(-13 (-25) (-10 -8 (-15 (-2239) ($) -2668) (-15 -2569 ($) -2668) (-15 -3439 ((-112) $)) (-15 * ($ (-767) $))))
(((-25) . T) ((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
((* (($ (-917) $) 10)))
(((-24 |#1|) (-10 -8 (-15 * (|#1| (-917) |#1|))) (-25)) (T -24))
NIL
(-10 -8 (-15 * (|#1| (-917) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1718 (((-112) $ $) 6)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13)))
+((-1677 (((-112) $ $) 7)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1718 (((-112) $ $) 6)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13)))
(((-25) (-140)) (T -25))
-((-1814 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-917)))))
-(-13 (-1093) (-10 -8 (-15 -1814 ($ $ $)) (-15 * ($ (-917) $))))
+((-1813 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-917)))))
+(-13 (-1093) (-10 -8 (-15 -1813 ($ $ $)) (-15 * ($ (-917) $))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-2802 (((-640 $) (-948 $)) 29) (((-640 $) (-1165 $)) 16) (((-640 $) (-1165 $) (-1169)) 20)) (-3070 (($ (-948 $)) 27) (($ (-1165 $)) 11) (($ (-1165 $) (-1169)) 54)) (-4144 (((-640 $) (-948 $)) 30) (((-640 $) (-1165 $)) 18) (((-640 $) (-1165 $) (-1169)) 19)) (-3457 (($ (-948 $)) 28) (($ (-1165 $)) 13) (($ (-1165 $) (-1169)) NIL)))
-(((-26 |#1|) (-10 -8 (-15 -2802 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -2802 ((-640 |#1|) (-1165 |#1|))) (-15 -2802 ((-640 |#1|) (-948 |#1|))) (-15 -3070 (|#1| (-1165 |#1|) (-1169))) (-15 -3070 (|#1| (-1165 |#1|))) (-15 -3070 (|#1| (-948 |#1|))) (-15 -4144 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -4144 ((-640 |#1|) (-1165 |#1|))) (-15 -4144 ((-640 |#1|) (-948 |#1|))) (-15 -3457 (|#1| (-1165 |#1|) (-1169))) (-15 -3457 (|#1| (-1165 |#1|))) (-15 -3457 (|#1| (-948 |#1|)))) (-27)) (T -26))
+((-2793 (((-640 $) (-948 $)) 29) (((-640 $) (-1165 $)) 16) (((-640 $) (-1165 $) (-1169)) 20)) (-1559 (($ (-948 $)) 27) (($ (-1165 $)) 11) (($ (-1165 $) (-1169)) 54)) (-4249 (((-640 $) (-948 $)) 30) (((-640 $) (-1165 $)) 18) (((-640 $) (-1165 $) (-1169)) 19)) (-3377 (($ (-948 $)) 28) (($ (-1165 $)) 13) (($ (-1165 $) (-1169)) NIL)))
+(((-26 |#1|) (-10 -8 (-15 -2793 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -2793 ((-640 |#1|) (-1165 |#1|))) (-15 -2793 ((-640 |#1|) (-948 |#1|))) (-15 -1559 (|#1| (-1165 |#1|) (-1169))) (-15 -1559 (|#1| (-1165 |#1|))) (-15 -1559 (|#1| (-948 |#1|))) (-15 -4249 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -4249 ((-640 |#1|) (-1165 |#1|))) (-15 -4249 ((-640 |#1|) (-948 |#1|))) (-15 -3377 (|#1| (-1165 |#1|) (-1169))) (-15 -3377 (|#1| (-1165 |#1|))) (-15 -3377 (|#1| (-948 |#1|)))) (-27)) (T -26))
NIL
-(-10 -8 (-15 -2802 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -2802 ((-640 |#1|) (-1165 |#1|))) (-15 -2802 ((-640 |#1|) (-948 |#1|))) (-15 -3070 (|#1| (-1165 |#1|) (-1169))) (-15 -3070 (|#1| (-1165 |#1|))) (-15 -3070 (|#1| (-948 |#1|))) (-15 -4144 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -4144 ((-640 |#1|) (-1165 |#1|))) (-15 -4144 ((-640 |#1|) (-948 |#1|))) (-15 -3457 (|#1| (-1165 |#1|) (-1169))) (-15 -3457 (|#1| (-1165 |#1|))) (-15 -3457 (|#1| (-948 |#1|))))
-((-1677 (((-112) $ $) 7)) (-2802 (((-640 $) (-948 $)) 81) (((-640 $) (-1165 $)) 80) (((-640 $) (-1165 $) (-1169)) 79)) (-3070 (($ (-948 $)) 84) (($ (-1165 $)) 83) (($ (-1165 $) (-1169)) 82)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-1495 (((-3 $ "failed") $ $) 19)) (-4335 (($ $) 74)) (-3205 (((-418 $) $) 73)) (-2186 (($ $) 93)) (-1919 (((-112) $ $) 60)) (-4239 (($) 17 T CONST)) (-4144 (((-640 $) (-948 $)) 87) (((-640 $) (-1165 $)) 86) (((-640 $) (-1165 $) (-1169)) 85)) (-3457 (($ (-948 $)) 90) (($ (-1165 $)) 89) (($ (-1165 $) (-1169)) 88)) (-3090 (($ $ $) 56)) (-3400 (((-3 $ "failed") $) 33)) (-3050 (($ $ $) 57)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 52)) (-2468 (((-112) $) 72)) (-3827 (((-112) $) 31)) (-1645 (($ $ (-563)) 92)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-2688 (($ $) 71)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-2174 (((-418 $) $) 75)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3008 (((-3 $ "failed") $ $) 43)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-2628 (((-767) $) 59)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 58)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67)) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 40)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1837 (($ $ $) 66)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70) (($ $ (-407 (-563))) 91)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68)))
+(-10 -8 (-15 -2793 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -2793 ((-640 |#1|) (-1165 |#1|))) (-15 -2793 ((-640 |#1|) (-948 |#1|))) (-15 -1559 (|#1| (-1165 |#1|) (-1169))) (-15 -1559 (|#1| (-1165 |#1|))) (-15 -1559 (|#1| (-948 |#1|))) (-15 -4249 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -4249 ((-640 |#1|) (-1165 |#1|))) (-15 -4249 ((-640 |#1|) (-948 |#1|))) (-15 -3377 (|#1| (-1165 |#1|) (-1169))) (-15 -3377 (|#1| (-1165 |#1|))) (-15 -3377 (|#1| (-948 |#1|))))
+((-1677 (((-112) $ $) 7)) (-2793 (((-640 $) (-948 $)) 81) (((-640 $) (-1165 $)) 80) (((-640 $) (-1165 $) (-1169)) 79)) (-1559 (($ (-948 $)) 84) (($ (-1165 $)) 83) (($ (-1165 $) (-1169)) 82)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-3905 (((-3 $ "failed") $ $) 19)) (-1798 (($ $) 74)) (-2802 (((-418 $) $) 73)) (-2185 (($ $) 93)) (-2003 (((-112) $ $) 60)) (-2569 (($) 17 T CONST)) (-4249 (((-640 $) (-948 $)) 87) (((-640 $) (-1165 $)) 86) (((-640 $) (-1165 $) (-1169)) 85)) (-3377 (($ (-948 $)) 90) (($ (-1165 $)) 89) (($ (-1165 $) (-1169)) 88)) (-3094 (($ $ $) 56)) (-3951 (((-3 $ "failed") $) 33)) (-3054 (($ $ $) 57)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 52)) (-2560 (((-112) $) 72)) (-3401 (((-112) $) 31)) (-2172 (($ $ (-563)) 92)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-2687 (($ $) 71)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-2173 (((-418 $) $) 75)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3012 (((-3 $ "failed") $ $) 43)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-1993 (((-767) $) 59)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 58)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67)) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 40)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1836 (($ $ $) 66)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70) (($ $ (-407 (-563))) 91)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68)))
(((-27) (-140)) (T -27))
-((-3457 (*1 *1 *2) (-12 (-5 *2 (-948 *1)) (-4 *1 (-27)))) (-3457 (*1 *1 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-27)))) (-3457 (*1 *1 *2 *3) (-12 (-5 *2 (-1165 *1)) (-5 *3 (-1169)) (-4 *1 (-27)))) (-4144 (*1 *2 *3) (-12 (-5 *3 (-948 *1)) (-4 *1 (-27)) (-5 *2 (-640 *1)))) (-4144 (*1 *2 *3) (-12 (-5 *3 (-1165 *1)) (-4 *1 (-27)) (-5 *2 (-640 *1)))) (-4144 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 *1)) (-5 *4 (-1169)) (-4 *1 (-27)) (-5 *2 (-640 *1)))) (-3070 (*1 *1 *2) (-12 (-5 *2 (-948 *1)) (-4 *1 (-27)))) (-3070 (*1 *1 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-27)))) (-3070 (*1 *1 *2 *3) (-12 (-5 *2 (-1165 *1)) (-5 *3 (-1169)) (-4 *1 (-27)))) (-2802 (*1 *2 *3) (-12 (-5 *3 (-948 *1)) (-4 *1 (-27)) (-5 *2 (-640 *1)))) (-2802 (*1 *2 *3) (-12 (-5 *3 (-1165 *1)) (-4 *1 (-27)) (-5 *2 (-640 *1)))) (-2802 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 *1)) (-5 *4 (-1169)) (-4 *1 (-27)) (-5 *2 (-640 *1)))))
-(-13 (-363) (-998) (-10 -8 (-15 -3457 ($ (-948 $))) (-15 -3457 ($ (-1165 $))) (-15 -3457 ($ (-1165 $) (-1169))) (-15 -4144 ((-640 $) (-948 $))) (-15 -4144 ((-640 $) (-1165 $))) (-15 -4144 ((-640 $) (-1165 $) (-1169))) (-15 -3070 ($ (-948 $))) (-15 -3070 ($ (-1165 $))) (-15 -3070 ($ (-1165 $) (-1169))) (-15 -2802 ((-640 $) (-948 $))) (-15 -2802 ((-640 $) (-1165 $))) (-15 -2802 ((-640 $) (-1165 $) (-1169)))))
+((-3377 (*1 *1 *2) (-12 (-5 *2 (-948 *1)) (-4 *1 (-27)))) (-3377 (*1 *1 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-27)))) (-3377 (*1 *1 *2 *3) (-12 (-5 *2 (-1165 *1)) (-5 *3 (-1169)) (-4 *1 (-27)))) (-4249 (*1 *2 *3) (-12 (-5 *3 (-948 *1)) (-4 *1 (-27)) (-5 *2 (-640 *1)))) (-4249 (*1 *2 *3) (-12 (-5 *3 (-1165 *1)) (-4 *1 (-27)) (-5 *2 (-640 *1)))) (-4249 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 *1)) (-5 *4 (-1169)) (-4 *1 (-27)) (-5 *2 (-640 *1)))) (-1559 (*1 *1 *2) (-12 (-5 *2 (-948 *1)) (-4 *1 (-27)))) (-1559 (*1 *1 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-27)))) (-1559 (*1 *1 *2 *3) (-12 (-5 *2 (-1165 *1)) (-5 *3 (-1169)) (-4 *1 (-27)))) (-2793 (*1 *2 *3) (-12 (-5 *3 (-948 *1)) (-4 *1 (-27)) (-5 *2 (-640 *1)))) (-2793 (*1 *2 *3) (-12 (-5 *3 (-1165 *1)) (-4 *1 (-27)) (-5 *2 (-640 *1)))) (-2793 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 *1)) (-5 *4 (-1169)) (-4 *1 (-27)) (-5 *2 (-640 *1)))))
+(-13 (-363) (-998) (-10 -8 (-15 -3377 ($ (-948 $))) (-15 -3377 ($ (-1165 $))) (-15 -3377 ($ (-1165 $) (-1169))) (-15 -4249 ((-640 $) (-948 $))) (-15 -4249 ((-640 $) (-1165 $))) (-15 -4249 ((-640 $) (-1165 $) (-1169))) (-15 -1559 ($ (-948 $))) (-15 -1559 ($ (-1165 $))) (-15 -1559 ($ (-1165 $) (-1169))) (-15 -2793 ((-640 $) (-948 $))) (-15 -2793 ((-640 $) (-1165 $))) (-15 -2793 ((-640 $) (-1165 $) (-1169)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-131) . T) ((-613 #0#) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-243) . T) ((-290) . T) ((-307) . T) ((-363) . T) ((-452) . T) ((-555) . T) ((-643 #0#) . T) ((-643 $) . T) ((-713 #0#) . T) ((-713 $) . T) ((-722) . T) ((-916) . T) ((-998) . T) ((-1051 #0#) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1212) . T))
-((-2802 (((-640 $) (-948 $)) NIL) (((-640 $) (-1165 $)) NIL) (((-640 $) (-1165 $) (-1169)) 50) (((-640 $) $) 19) (((-640 $) $ (-1169)) 41)) (-3070 (($ (-948 $)) NIL) (($ (-1165 $)) NIL) (($ (-1165 $) (-1169)) 52) (($ $) 17) (($ $ (-1169)) 37)) (-4144 (((-640 $) (-948 $)) NIL) (((-640 $) (-1165 $)) NIL) (((-640 $) (-1165 $) (-1169)) 48) (((-640 $) $) 15) (((-640 $) $ (-1169)) 43)) (-3457 (($ (-948 $)) NIL) (($ (-1165 $)) NIL) (($ (-1165 $) (-1169)) NIL) (($ $) 12) (($ $ (-1169)) 39)))
-(((-28 |#1| |#2|) (-10 -8 (-15 -2802 ((-640 |#1|) |#1| (-1169))) (-15 -3070 (|#1| |#1| (-1169))) (-15 -2802 ((-640 |#1|) |#1|)) (-15 -3070 (|#1| |#1|)) (-15 -4144 ((-640 |#1|) |#1| (-1169))) (-15 -3457 (|#1| |#1| (-1169))) (-15 -4144 ((-640 |#1|) |#1|)) (-15 -3457 (|#1| |#1|)) (-15 -2802 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -2802 ((-640 |#1|) (-1165 |#1|))) (-15 -2802 ((-640 |#1|) (-948 |#1|))) (-15 -3070 (|#1| (-1165 |#1|) (-1169))) (-15 -3070 (|#1| (-1165 |#1|))) (-15 -3070 (|#1| (-948 |#1|))) (-15 -4144 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -4144 ((-640 |#1|) (-1165 |#1|))) (-15 -4144 ((-640 |#1|) (-948 |#1|))) (-15 -3457 (|#1| (-1165 |#1|) (-1169))) (-15 -3457 (|#1| (-1165 |#1|))) (-15 -3457 (|#1| (-948 |#1|)))) (-29 |#2|) (-13 (-846) (-555))) (T -28))
+((-2793 (((-640 $) (-948 $)) NIL) (((-640 $) (-1165 $)) NIL) (((-640 $) (-1165 $) (-1169)) 50) (((-640 $) $) 19) (((-640 $) $ (-1169)) 41)) (-1559 (($ (-948 $)) NIL) (($ (-1165 $)) NIL) (($ (-1165 $) (-1169)) 52) (($ $) 17) (($ $ (-1169)) 37)) (-4249 (((-640 $) (-948 $)) NIL) (((-640 $) (-1165 $)) NIL) (((-640 $) (-1165 $) (-1169)) 48) (((-640 $) $) 15) (((-640 $) $ (-1169)) 43)) (-3377 (($ (-948 $)) NIL) (($ (-1165 $)) NIL) (($ (-1165 $) (-1169)) NIL) (($ $) 12) (($ $ (-1169)) 39)))
+(((-28 |#1| |#2|) (-10 -8 (-15 -2793 ((-640 |#1|) |#1| (-1169))) (-15 -1559 (|#1| |#1| (-1169))) (-15 -2793 ((-640 |#1|) |#1|)) (-15 -1559 (|#1| |#1|)) (-15 -4249 ((-640 |#1|) |#1| (-1169))) (-15 -3377 (|#1| |#1| (-1169))) (-15 -4249 ((-640 |#1|) |#1|)) (-15 -3377 (|#1| |#1|)) (-15 -2793 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -2793 ((-640 |#1|) (-1165 |#1|))) (-15 -2793 ((-640 |#1|) (-948 |#1|))) (-15 -1559 (|#1| (-1165 |#1|) (-1169))) (-15 -1559 (|#1| (-1165 |#1|))) (-15 -1559 (|#1| (-948 |#1|))) (-15 -4249 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -4249 ((-640 |#1|) (-1165 |#1|))) (-15 -4249 ((-640 |#1|) (-948 |#1|))) (-15 -3377 (|#1| (-1165 |#1|) (-1169))) (-15 -3377 (|#1| (-1165 |#1|))) (-15 -3377 (|#1| (-948 |#1|)))) (-29 |#2|) (-13 (-846) (-555))) (T -28))
NIL
-(-10 -8 (-15 -2802 ((-640 |#1|) |#1| (-1169))) (-15 -3070 (|#1| |#1| (-1169))) (-15 -2802 ((-640 |#1|) |#1|)) (-15 -3070 (|#1| |#1|)) (-15 -4144 ((-640 |#1|) |#1| (-1169))) (-15 -3457 (|#1| |#1| (-1169))) (-15 -4144 ((-640 |#1|) |#1|)) (-15 -3457 (|#1| |#1|)) (-15 -2802 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -2802 ((-640 |#1|) (-1165 |#1|))) (-15 -2802 ((-640 |#1|) (-948 |#1|))) (-15 -3070 (|#1| (-1165 |#1|) (-1169))) (-15 -3070 (|#1| (-1165 |#1|))) (-15 -3070 (|#1| (-948 |#1|))) (-15 -4144 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -4144 ((-640 |#1|) (-1165 |#1|))) (-15 -4144 ((-640 |#1|) (-948 |#1|))) (-15 -3457 (|#1| (-1165 |#1|) (-1169))) (-15 -3457 (|#1| (-1165 |#1|))) (-15 -3457 (|#1| (-948 |#1|))))
-((-1677 (((-112) $ $) 7)) (-2802 (((-640 $) (-948 $)) 81) (((-640 $) (-1165 $)) 80) (((-640 $) (-1165 $) (-1169)) 79) (((-640 $) $) 125) (((-640 $) $ (-1169)) 123)) (-3070 (($ (-948 $)) 84) (($ (-1165 $)) 83) (($ (-1165 $) (-1169)) 82) (($ $) 126) (($ $ (-1169)) 124)) (-3411 (((-112) $) 16)) (-2606 (((-640 (-1169)) $) 200)) (-2139 (((-407 (-1165 $)) $ (-609 $)) 232 (|has| |#1| (-555)))) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-2059 (((-640 (-609 $)) $) 163)) (-1495 (((-3 $ "failed") $ $) 19)) (-4132 (($ $ (-640 (-609 $)) (-640 $)) 153) (($ $ (-640 (-294 $))) 152) (($ $ (-294 $)) 151)) (-4335 (($ $) 74)) (-3205 (((-418 $) $) 73)) (-2186 (($ $) 93)) (-1919 (((-112) $ $) 60)) (-4239 (($) 17 T CONST)) (-4144 (((-640 $) (-948 $)) 87) (((-640 $) (-1165 $)) 86) (((-640 $) (-1165 $) (-1169)) 85) (((-640 $) $) 129) (((-640 $) $ (-1169)) 127)) (-3457 (($ (-948 $)) 90) (($ (-1165 $)) 89) (($ (-1165 $) (-1169)) 88) (($ $) 130) (($ $ (-1169)) 128)) (-2131 (((-3 (-948 |#1|) "failed") $) 250 (|has| |#1| (-1045))) (((-3 (-407 (-948 |#1|)) "failed") $) 234 (|has| |#1| (-555))) (((-3 |#1| "failed") $) 196) (((-3 (-563) "failed") $) 193 (|has| |#1| (-1034 (-563)))) (((-3 (-1169) "failed") $) 187) (((-3 (-609 $) "failed") $) 138) (((-3 (-407 (-563)) "failed") $) 121 (-4032 (-12 (|has| |#1| (-1034 (-563))) (|has| |#1| (-555))) (|has| |#1| (-1034 (-407 (-563))))))) (-2058 (((-948 |#1|) $) 249 (|has| |#1| (-1045))) (((-407 (-948 |#1|)) $) 233 (|has| |#1| (-555))) ((|#1| $) 195) (((-563) $) 194 (|has| |#1| (-1034 (-563)))) (((-1169) $) 186) (((-609 $) $) 137) (((-407 (-563)) $) 122 (-4032 (-12 (|has| |#1| (-1034 (-563))) (|has| |#1| (-555))) (|has| |#1| (-1034 (-407 (-563))))))) (-3090 (($ $ $) 56)) (-2950 (((-684 |#1|) (-684 $)) 240 (|has| |#1| (-1045))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 239 (|has| |#1| (-1045))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 120 (-4032 (-2190 (|has| |#1| (-1045)) (|has| |#1| (-636 (-563)))) (-2190 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))))) (((-684 (-563)) (-684 $)) 119 (-4032 (-2190 (|has| |#1| (-1045)) (|has| |#1| (-636 (-563)))) (-2190 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))))) (-3400 (((-3 $ "failed") $) 33)) (-3050 (($ $ $) 57)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 52)) (-2468 (((-112) $) 72)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 192 (|has| |#1| (-882 (-379)))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 191 (|has| |#1| (-882 (-563))))) (-3968 (($ (-640 $)) 157) (($ $) 156)) (-3804 (((-640 (-114)) $) 164)) (-2361 (((-114) (-114)) 165)) (-3827 (((-112) $) 31)) (-3131 (((-112) $) 185 (|has| $ (-1034 (-563))))) (-2711 (($ $) 217 (|has| |#1| (-1045)))) (-2143 (((-1118 |#1| (-609 $)) $) 216 (|has| |#1| (-1045)))) (-1645 (($ $ (-563)) 92)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3180 (((-1165 $) (-609 $)) 182 (|has| $ (-1045)))) (-3084 (($ $ $) 136)) (-1777 (($ $ $) 135)) (-2240 (($ (-1 $ $) (-609 $)) 171)) (-2875 (((-3 (-609 $) "failed") $) 161)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-2127 (((-640 (-609 $)) $) 162)) (-2227 (($ (-114) (-640 $)) 170) (($ (-114) $) 169)) (-3733 (((-3 (-640 $) "failed") $) 211 (|has| |#1| (-1105)))) (-1848 (((-3 (-2 (|:| |val| $) (|:| -1654 (-563))) "failed") $) 220 (|has| |#1| (-1045)))) (-2919 (((-3 (-640 $) "failed") $) 213 (|has| |#1| (-25)))) (-4298 (((-3 (-2 (|:| -2311 (-563)) (|:| |var| (-609 $))) "failed") $) 214 (|has| |#1| (-25)))) (-4086 (((-3 (-2 (|:| |var| (-609 $)) (|:| -1654 (-563))) "failed") $ (-1169)) 219 (|has| |#1| (-1045))) (((-3 (-2 (|:| |var| (-609 $)) (|:| -1654 (-563))) "failed") $ (-114)) 218 (|has| |#1| (-1045))) (((-3 (-2 (|:| |var| (-609 $)) (|:| -1654 (-563))) "failed") $) 212 (|has| |#1| (-1105)))) (-2799 (((-112) $ (-1169)) 168) (((-112) $ (-114)) 167)) (-2688 (($ $) 71)) (-4236 (((-767) $) 160)) (-1694 (((-1113) $) 10)) (-2696 (((-112) $) 198)) (-2706 ((|#1| $) 199)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-1372 (((-112) $ (-1169)) 173) (((-112) $ $) 172)) (-2174 (((-418 $) $) 75)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3008 (((-3 $ "failed") $ $) 43)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-2359 (((-112) $) 184 (|has| $ (-1034 (-563))))) (-1540 (($ $ (-1169) (-767) (-1 $ $)) 224 (|has| |#1| (-1045))) (($ $ (-1169) (-767) (-1 $ (-640 $))) 223 (|has| |#1| (-1045))) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ (-640 $)))) 222 (|has| |#1| (-1045))) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ $))) 221 (|has| |#1| (-1045))) (($ $ (-640 (-114)) (-640 $) (-1169)) 210 (|has| |#1| (-611 (-536)))) (($ $ (-114) $ (-1169)) 209 (|has| |#1| (-611 (-536)))) (($ $) 208 (|has| |#1| (-611 (-536)))) (($ $ (-640 (-1169))) 207 (|has| |#1| (-611 (-536)))) (($ $ (-1169)) 206 (|has| |#1| (-611 (-536)))) (($ $ (-114) (-1 $ $)) 181) (($ $ (-114) (-1 $ (-640 $))) 180) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) 179) (($ $ (-640 (-114)) (-640 (-1 $ $))) 178) (($ $ (-1169) (-1 $ $)) 177) (($ $ (-1169) (-1 $ (-640 $))) 176) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) 175) (($ $ (-640 (-1169)) (-640 (-1 $ $))) 174) (($ $ (-640 $) (-640 $)) 145) (($ $ $ $) 144) (($ $ (-294 $)) 143) (($ $ (-640 (-294 $))) 142) (($ $ (-640 (-609 $)) (-640 $)) 141) (($ $ (-609 $) $) 140)) (-2628 (((-767) $) 59)) (-2309 (($ (-114) (-640 $)) 150) (($ (-114) $ $ $ $) 149) (($ (-114) $ $ $) 148) (($ (-114) $ $) 147) (($ (-114) $) 146)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 58)) (-3071 (($ $ $) 159) (($ $) 158)) (-4202 (($ $ (-1169)) 248 (|has| |#1| (-1045))) (($ $ (-640 (-1169))) 247 (|has| |#1| (-1045))) (($ $ (-1169) (-767)) 246 (|has| |#1| (-1045))) (($ $ (-640 (-1169)) (-640 (-767))) 245 (|has| |#1| (-1045)))) (-1801 (($ $) 227 (|has| |#1| (-555)))) (-2154 (((-1118 |#1| (-609 $)) $) 226 (|has| |#1| (-555)))) (-3390 (($ $) 183 (|has| $ (-1045)))) (-2220 (((-536) $) 254 (|has| |#1| (-611 (-536)))) (($ (-418 $)) 225 (|has| |#1| (-555))) (((-888 (-379)) $) 190 (|has| |#1| (-611 (-888 (-379))))) (((-888 (-563)) $) 189 (|has| |#1| (-611 (-888 (-563)))))) (-4339 (($ $ $) 253 (|has| |#1| (-473)))) (-2146 (($ $ $) 252 (|has| |#1| (-473)))) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67) (($ (-948 |#1|)) 251 (|has| |#1| (-1045))) (($ (-407 (-948 |#1|))) 235 (|has| |#1| (-555))) (($ (-407 (-948 (-407 |#1|)))) 231 (|has| |#1| (-555))) (($ (-948 (-407 |#1|))) 230 (|has| |#1| (-555))) (($ (-407 |#1|)) 229 (|has| |#1| (-555))) (($ (-1118 |#1| (-609 $))) 215 (|has| |#1| (-1045))) (($ |#1|) 197) (($ (-1169)) 188) (($ (-609 $)) 139)) (-2779 (((-3 $ "failed") $) 238 (|has| |#1| (-145)))) (-1675 (((-767)) 28)) (-3079 (($ (-640 $)) 155) (($ $) 154)) (-3734 (((-112) (-114)) 166)) (-2126 (((-112) $ $) 40)) (-1895 (($ (-1169) (-640 $)) 205) (($ (-1169) $ $ $ $) 204) (($ (-1169) $ $ $) 203) (($ (-1169) $ $) 202) (($ (-1169) $) 201)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ (-1169)) 244 (|has| |#1| (-1045))) (($ $ (-640 (-1169))) 243 (|has| |#1| (-1045))) (($ $ (-1169) (-767)) 242 (|has| |#1| (-1045))) (($ $ (-640 (-1169)) (-640 (-767))) 241 (|has| |#1| (-1045)))) (-1778 (((-112) $ $) 133)) (-1756 (((-112) $ $) 132)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 134)) (-1744 (((-112) $ $) 131)) (-1837 (($ $ $) 66) (($ (-1118 |#1| (-609 $)) (-1118 |#1| (-609 $))) 228 (|has| |#1| (-555)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70) (($ $ (-407 (-563))) 91)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68) (($ $ |#1|) 237 (|has| |#1| (-172))) (($ |#1| $) 236 (|has| |#1| (-172)))))
+(-10 -8 (-15 -2793 ((-640 |#1|) |#1| (-1169))) (-15 -1559 (|#1| |#1| (-1169))) (-15 -2793 ((-640 |#1|) |#1|)) (-15 -1559 (|#1| |#1|)) (-15 -4249 ((-640 |#1|) |#1| (-1169))) (-15 -3377 (|#1| |#1| (-1169))) (-15 -4249 ((-640 |#1|) |#1|)) (-15 -3377 (|#1| |#1|)) (-15 -2793 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -2793 ((-640 |#1|) (-1165 |#1|))) (-15 -2793 ((-640 |#1|) (-948 |#1|))) (-15 -1559 (|#1| (-1165 |#1|) (-1169))) (-15 -1559 (|#1| (-1165 |#1|))) (-15 -1559 (|#1| (-948 |#1|))) (-15 -4249 ((-640 |#1|) (-1165 |#1|) (-1169))) (-15 -4249 ((-640 |#1|) (-1165 |#1|))) (-15 -4249 ((-640 |#1|) (-948 |#1|))) (-15 -3377 (|#1| (-1165 |#1|) (-1169))) (-15 -3377 (|#1| (-1165 |#1|))) (-15 -3377 (|#1| (-948 |#1|))))
+((-1677 (((-112) $ $) 7)) (-2793 (((-640 $) (-948 $)) 81) (((-640 $) (-1165 $)) 80) (((-640 $) (-1165 $) (-1169)) 79) (((-640 $) $) 125) (((-640 $) $ (-1169)) 123)) (-1559 (($ (-948 $)) 84) (($ (-1165 $)) 83) (($ (-1165 $) (-1169)) 82) (($ $) 126) (($ $ (-1169)) 124)) (-3439 (((-112) $) 16)) (-2605 (((-640 (-1169)) $) 200)) (-2138 (((-407 (-1165 $)) $ (-609 $)) 232 (|has| |#1| (-555)))) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-2058 (((-640 (-609 $)) $) 163)) (-3905 (((-3 $ "failed") $ $) 19)) (-4135 (($ $ (-640 (-609 $)) (-640 $)) 153) (($ $ (-640 (-294 $))) 152) (($ $ (-294 $)) 151)) (-1798 (($ $) 74)) (-2802 (((-418 $) $) 73)) (-2185 (($ $) 93)) (-2003 (((-112) $ $) 60)) (-2569 (($) 17 T CONST)) (-4249 (((-640 $) (-948 $)) 87) (((-640 $) (-1165 $)) 86) (((-640 $) (-1165 $) (-1169)) 85) (((-640 $) $) 129) (((-640 $) $ (-1169)) 127)) (-3377 (($ (-948 $)) 90) (($ (-1165 $)) 89) (($ (-1165 $) (-1169)) 88) (($ $) 130) (($ $ (-1169)) 128)) (-2130 (((-3 (-948 |#1|) "failed") $) 250 (|has| |#1| (-1045))) (((-3 (-407 (-948 |#1|)) "failed") $) 234 (|has| |#1| (-555))) (((-3 |#1| "failed") $) 196) (((-3 (-563) "failed") $) 193 (|has| |#1| (-1034 (-563)))) (((-3 (-1169) "failed") $) 187) (((-3 (-609 $) "failed") $) 138) (((-3 (-407 (-563)) "failed") $) 121 (-4034 (-12 (|has| |#1| (-1034 (-563))) (|has| |#1| (-555))) (|has| |#1| (-1034 (-407 (-563))))))) (-2057 (((-948 |#1|) $) 249 (|has| |#1| (-1045))) (((-407 (-948 |#1|)) $) 233 (|has| |#1| (-555))) ((|#1| $) 195) (((-563) $) 194 (|has| |#1| (-1034 (-563)))) (((-1169) $) 186) (((-609 $) $) 137) (((-407 (-563)) $) 122 (-4034 (-12 (|has| |#1| (-1034 (-563))) (|has| |#1| (-555))) (|has| |#1| (-1034 (-407 (-563))))))) (-3094 (($ $ $) 56)) (-1476 (((-684 |#1|) (-684 $)) 240 (|has| |#1| (-1045))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 239 (|has| |#1| (-1045))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 120 (-4034 (-2188 (|has| |#1| (-1045)) (|has| |#1| (-636 (-563)))) (-2188 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))))) (((-684 (-563)) (-684 $)) 119 (-4034 (-2188 (|has| |#1| (-1045)) (|has| |#1| (-636 (-563)))) (-2188 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))))) (-3951 (((-3 $ "failed") $) 33)) (-3054 (($ $ $) 57)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 52)) (-2560 (((-112) $) 72)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 192 (|has| |#1| (-882 (-379)))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 191 (|has| |#1| (-882 (-563))))) (-3228 (($ (-640 $)) 157) (($ $) 156)) (-2739 (((-640 (-114)) $) 164)) (-2559 (((-114) (-114)) 165)) (-3401 (((-112) $) 31)) (-2959 (((-112) $) 185 (|has| $ (-1034 (-563))))) (-2043 (($ $) 217 (|has| |#1| (-1045)))) (-2143 (((-1118 |#1| (-609 $)) $) 216 (|has| |#1| (-1045)))) (-2172 (($ $ (-563)) 92)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-2716 (((-1165 $) (-609 $)) 182 (|has| $ (-1045)))) (-3088 (($ $ $) 136)) (-1776 (($ $ $) 135)) (-2238 (($ (-1 $ $) (-609 $)) 171)) (-2751 (((-3 (-609 $) "failed") $) 161)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-2126 (((-640 (-609 $)) $) 162)) (-2227 (($ (-114) (-640 $)) 170) (($ (-114) $) 169)) (-3939 (((-3 (-640 $) "failed") $) 211 (|has| |#1| (-1105)))) (-3959 (((-3 (-2 (|:| |val| $) (|:| -3311 (-563))) "failed") $) 220 (|has| |#1| (-1045)))) (-3930 (((-3 (-640 $) "failed") $) 213 (|has| |#1| (-25)))) (-3479 (((-3 (-2 (|:| -2310 (-563)) (|:| |var| (-609 $))) "failed") $) 214 (|has| |#1| (-25)))) (-3949 (((-3 (-2 (|:| |var| (-609 $)) (|:| -3311 (-563))) "failed") $ (-1169)) 219 (|has| |#1| (-1045))) (((-3 (-2 (|:| |var| (-609 $)) (|:| -3311 (-563))) "failed") $ (-114)) 218 (|has| |#1| (-1045))) (((-3 (-2 (|:| |var| (-609 $)) (|:| -3311 (-563))) "failed") $) 212 (|has| |#1| (-1105)))) (-2602 (((-112) $ (-1169)) 168) (((-112) $ (-114)) 167)) (-2687 (($ $) 71)) (-4238 (((-767) $) 160)) (-1693 (((-1113) $) 10)) (-2695 (((-112) $) 198)) (-2705 ((|#1| $) 199)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-2726 (((-112) $ (-1169)) 173) (((-112) $ $) 172)) (-2173 (((-418 $) $) 75)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3012 (((-3 $ "failed") $ $) 43)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-2969 (((-112) $) 184 (|has| $ (-1034 (-563))))) (-1542 (($ $ (-1169) (-767) (-1 $ $)) 224 (|has| |#1| (-1045))) (($ $ (-1169) (-767) (-1 $ (-640 $))) 223 (|has| |#1| (-1045))) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ (-640 $)))) 222 (|has| |#1| (-1045))) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ $))) 221 (|has| |#1| (-1045))) (($ $ (-640 (-114)) (-640 $) (-1169)) 210 (|has| |#1| (-611 (-536)))) (($ $ (-114) $ (-1169)) 209 (|has| |#1| (-611 (-536)))) (($ $) 208 (|has| |#1| (-611 (-536)))) (($ $ (-640 (-1169))) 207 (|has| |#1| (-611 (-536)))) (($ $ (-1169)) 206 (|has| |#1| (-611 (-536)))) (($ $ (-114) (-1 $ $)) 181) (($ $ (-114) (-1 $ (-640 $))) 180) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) 179) (($ $ (-640 (-114)) (-640 (-1 $ $))) 178) (($ $ (-1169) (-1 $ $)) 177) (($ $ (-1169) (-1 $ (-640 $))) 176) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) 175) (($ $ (-640 (-1169)) (-640 (-1 $ $))) 174) (($ $ (-640 $) (-640 $)) 145) (($ $ $ $) 144) (($ $ (-294 $)) 143) (($ $ (-640 (-294 $))) 142) (($ $ (-640 (-609 $)) (-640 $)) 141) (($ $ (-609 $) $) 140)) (-1993 (((-767) $) 59)) (-2308 (($ (-114) (-640 $)) 150) (($ (-114) $ $ $ $) 149) (($ (-114) $ $ $) 148) (($ (-114) $ $) 147) (($ (-114) $) 146)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 58)) (-2761 (($ $ $) 159) (($ $) 158)) (-4203 (($ $ (-1169)) 248 (|has| |#1| (-1045))) (($ $ (-640 (-1169))) 247 (|has| |#1| (-1045))) (($ $ (-1169) (-767)) 246 (|has| |#1| (-1045))) (($ $ (-640 (-1169)) (-640 (-767))) 245 (|has| |#1| (-1045)))) (-2033 (($ $) 227 (|has| |#1| (-555)))) (-2153 (((-1118 |#1| (-609 $)) $) 226 (|has| |#1| (-555)))) (-3402 (($ $) 183 (|has| $ (-1045)))) (-2219 (((-536) $) 254 (|has| |#1| (-611 (-536)))) (($ (-418 $)) 225 (|has| |#1| (-555))) (((-888 (-379)) $) 190 (|has| |#1| (-611 (-888 (-379))))) (((-888 (-563)) $) 189 (|has| |#1| (-611 (-888 (-563)))))) (-2150 (($ $ $) 253 (|has| |#1| (-473)))) (-1745 (($ $ $) 252 (|has| |#1| (-473)))) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67) (($ (-948 |#1|)) 251 (|has| |#1| (-1045))) (($ (-407 (-948 |#1|))) 235 (|has| |#1| (-555))) (($ (-407 (-948 (-407 |#1|)))) 231 (|has| |#1| (-555))) (($ (-948 (-407 |#1|))) 230 (|has| |#1| (-555))) (($ (-407 |#1|)) 229 (|has| |#1| (-555))) (($ (-1118 |#1| (-609 $))) 215 (|has| |#1| (-1045))) (($ |#1|) 197) (($ (-1169)) 188) (($ (-609 $)) 139)) (-2047 (((-3 $ "failed") $) 238 (|has| |#1| (-145)))) (-3914 (((-767)) 28)) (-3083 (($ (-640 $)) 155) (($ $) 154)) (-2512 (((-112) (-114)) 166)) (-3223 (((-112) $ $) 40)) (-1894 (($ (-1169) (-640 $)) 205) (($ (-1169) $ $ $ $) 204) (($ (-1169) $ $ $) 203) (($ (-1169) $ $) 202) (($ (-1169) $) 201)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ (-1169)) 244 (|has| |#1| (-1045))) (($ $ (-640 (-1169))) 243 (|has| |#1| (-1045))) (($ $ (-1169) (-767)) 242 (|has| |#1| (-1045))) (($ $ (-640 (-1169)) (-640 (-767))) 241 (|has| |#1| (-1045)))) (-1779 (((-112) $ $) 133)) (-1754 (((-112) $ $) 132)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 134)) (-1743 (((-112) $ $) 131)) (-1836 (($ $ $) 66) (($ (-1118 |#1| (-609 $)) (-1118 |#1| (-609 $))) 228 (|has| |#1| (-555)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70) (($ $ (-407 (-563))) 91)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68) (($ $ |#1|) 237 (|has| |#1| (-172))) (($ |#1| $) 236 (|has| |#1| (-172)))))
(((-29 |#1|) (-140) (-13 (-846) (-555))) (T -29))
-((-3457 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-846) (-555))))) (-4144 (*1 *2 *1) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *2 (-640 *1)) (-4 *1 (-29 *3)))) (-3457 (*1 *1 *1 *2) (-12 (-5 *2 (-1169)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-846) (-555))))) (-4144 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-640 *1)) (-4 *1 (-29 *4)))) (-3070 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-846) (-555))))) (-2802 (*1 *2 *1) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *2 (-640 *1)) (-4 *1 (-29 *3)))) (-3070 (*1 *1 *1 *2) (-12 (-5 *2 (-1169)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-846) (-555))))) (-2802 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-640 *1)) (-4 *1 (-29 *4)))))
-(-13 (-27) (-430 |t#1|) (-10 -8 (-15 -3457 ($ $)) (-15 -4144 ((-640 $) $)) (-15 -3457 ($ $ (-1169))) (-15 -4144 ((-640 $) $ (-1169))) (-15 -3070 ($ $)) (-15 -2802 ((-640 $) $)) (-15 -3070 ($ $ (-1169))) (-15 -2802 ((-640 $) $ (-1169)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) . T) ((-27) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) |has| |#1| (-172)) ((-111 $ $) . T) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) . T) ((-613 #1=(-407 (-948 |#1|))) |has| |#1| (-555)) ((-613 (-563)) . T) ((-613 #2=(-609 $)) . T) ((-613 #3=(-948 |#1|)) |has| |#1| (-1045)) ((-613 #4=(-1169)) . T) ((-613 |#1|) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-611 (-888 (-379))) |has| |#1| (-611 (-888 (-379)))) ((-611 (-888 (-563))) |has| |#1| (-611 (-888 (-563)))) ((-243) . T) ((-290) . T) ((-307) . T) ((-309 $) . T) ((-302) . T) ((-363) . T) ((-377 |#1|) |has| |#1| (-1045)) ((-400 |#1|) . T) ((-411 |#1|) . T) ((-430 |#1|) . T) ((-452) . T) ((-473) |has| |#1| (-473)) ((-514 (-609 $) $) . T) ((-514 $ $) . T) ((-555) . T) ((-643 #0#) . T) ((-643 |#1|) |has| |#1| (-172)) ((-643 $) . T) ((-636 (-563)) -12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) ((-636 |#1|) |has| |#1| (-1045)) ((-713 #0#) . T) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) . T) ((-722) . T) ((-846) . T) ((-896 (-1169)) |has| |#1| (-1045)) ((-882 (-379)) |has| |#1| (-882 (-379))) ((-882 (-563)) |has| |#1| (-882 (-563))) ((-880 |#1|) . T) ((-916) . T) ((-998) . T) ((-1034 (-407 (-563))) -4032 (|has| |#1| (-1034 (-407 (-563)))) (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563))))) ((-1034 #1#) |has| |#1| (-555)) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 #2#) . T) ((-1034 #3#) |has| |#1| (-1045)) ((-1034 #4#) . T) ((-1034 |#1|) . T) ((-1051 #0#) . T) ((-1051 |#1|) |has| |#1| (-172)) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1208) . T) ((-1212) . T))
-((-4324 (((-1087 (-225)) $) NIL)) (-4313 (((-1087 (-225)) $) NIL)) (-1441 (($ $ (-225)) 125)) (-1514 (($ (-948 (-563)) (-1169) (-1169) (-1087 (-407 (-563))) (-1087 (-407 (-563)))) 82)) (-4250 (((-640 (-640 (-939 (-225)))) $) 137)) (-1693 (((-858) $) 149)))
-(((-30) (-13 (-951) (-10 -8 (-15 -1514 ($ (-948 (-563)) (-1169) (-1169) (-1087 (-407 (-563))) (-1087 (-407 (-563))))) (-15 -1441 ($ $ (-225)))))) (T -30))
-((-1514 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-948 (-563))) (-5 *3 (-1169)) (-5 *4 (-1087 (-407 (-563)))) (-5 *1 (-30)))) (-1441 (*1 *1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-30)))))
-(-13 (-951) (-10 -8 (-15 -1514 ($ (-948 (-563)) (-1169) (-1169) (-1087 (-407 (-563))) (-1087 (-407 (-563))))) (-15 -1441 ($ $ (-225)))))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 19) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3359 (((-1128) $) 11)) (-4211 (((-1128) $) 9)) (-1718 (((-112) $ $) NIL)))
-(((-31) (-13 (-1076) (-10 -8 (-15 -4211 ((-1128) $)) (-15 -3359 ((-1128) $))))) (T -31))
-((-4211 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-31)))) (-3359 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-31)))))
-(-13 (-1076) (-10 -8 (-15 -4211 ((-1128) $)) (-15 -3359 ((-1128) $))))
-((-3457 ((|#2| (-1165 |#2|) (-1169)) 42)) (-2361 (((-114) (-114)) 55)) (-3180 (((-1165 |#2|) (-609 |#2|)) 132 (|has| |#1| (-1034 (-563))))) (-1665 ((|#2| |#1| (-563)) 122 (|has| |#1| (-1034 (-563))))) (-2714 ((|#2| (-1165 |#2|) |#2|) 29)) (-2568 (((-858) (-640 |#2|)) 84)) (-3390 ((|#2| |#2|) 128 (|has| |#1| (-1034 (-563))))) (-3734 (((-112) (-114)) 17)) (** ((|#2| |#2| (-407 (-563))) 95 (|has| |#1| (-1034 (-563))))))
-(((-32 |#1| |#2|) (-10 -7 (-15 -3457 (|#2| (-1165 |#2|) (-1169))) (-15 -2361 ((-114) (-114))) (-15 -3734 ((-112) (-114))) (-15 -2714 (|#2| (-1165 |#2|) |#2|)) (-15 -2568 ((-858) (-640 |#2|))) (IF (|has| |#1| (-1034 (-563))) (PROGN (-15 ** (|#2| |#2| (-407 (-563)))) (-15 -3180 ((-1165 |#2|) (-609 |#2|))) (-15 -3390 (|#2| |#2|)) (-15 -1665 (|#2| |#1| (-563)))) |%noBranch|)) (-13 (-846) (-555)) (-430 |#1|)) (T -32))
-((-1665 (*1 *2 *3 *4) (-12 (-5 *4 (-563)) (-4 *2 (-430 *3)) (-5 *1 (-32 *3 *2)) (-4 *3 (-1034 *4)) (-4 *3 (-13 (-846) (-555))))) (-3390 (*1 *2 *2) (-12 (-4 *3 (-1034 (-563))) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-32 *3 *2)) (-4 *2 (-430 *3)))) (-3180 (*1 *2 *3) (-12 (-5 *3 (-609 *5)) (-4 *5 (-430 *4)) (-4 *4 (-1034 (-563))) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-1165 *5)) (-5 *1 (-32 *4 *5)))) (** (*1 *2 *2 *3) (-12 (-5 *3 (-407 (-563))) (-4 *4 (-1034 (-563))) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-32 *4 *2)) (-4 *2 (-430 *4)))) (-2568 (*1 *2 *3) (-12 (-5 *3 (-640 *5)) (-4 *5 (-430 *4)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-858)) (-5 *1 (-32 *4 *5)))) (-2714 (*1 *2 *3 *2) (-12 (-5 *3 (-1165 *2)) (-4 *2 (-430 *4)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-32 *4 *2)))) (-3734 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112)) (-5 *1 (-32 *4 *5)) (-4 *5 (-430 *4)))) (-2361 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-32 *3 *4)) (-4 *4 (-430 *3)))) (-3457 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 *2)) (-5 *4 (-1169)) (-4 *2 (-430 *5)) (-5 *1 (-32 *5 *2)) (-4 *5 (-13 (-846) (-555))))))
-(-10 -7 (-15 -3457 (|#2| (-1165 |#2|) (-1169))) (-15 -2361 ((-114) (-114))) (-15 -3734 ((-112) (-114))) (-15 -2714 (|#2| (-1165 |#2|) |#2|)) (-15 -2568 ((-858) (-640 |#2|))) (IF (|has| |#1| (-1034 (-563))) (PROGN (-15 ** (|#2| |#2| (-407 (-563)))) (-15 -3180 ((-1165 |#2|) (-609 |#2|))) (-15 -3390 (|#2| |#2|)) (-15 -1665 (|#2| |#1| (-563)))) |%noBranch|))
-((-2759 (((-112) $ (-767)) 16)) (-4239 (($) 10)) (-2581 (((-112) $ (-767)) 15)) (-2382 (((-112) $ (-767)) 14)) (-2026 (((-112) $ $) 8)) (-3756 (((-112) $) 13)))
-(((-33 |#1|) (-10 -8 (-15 -4239 (|#1|)) (-15 -2759 ((-112) |#1| (-767))) (-15 -2581 ((-112) |#1| (-767))) (-15 -2382 ((-112) |#1| (-767))) (-15 -3756 ((-112) |#1|)) (-15 -2026 ((-112) |#1| |#1|))) (-34)) (T -33))
-NIL
-(-10 -8 (-15 -4239 (|#1|)) (-15 -2759 ((-112) |#1| (-767))) (-15 -2581 ((-112) |#1| (-767))) (-15 -2382 ((-112) |#1| (-767))) (-15 -3756 ((-112) |#1|)) (-15 -2026 ((-112) |#1| |#1|)))
-((-2759 (((-112) $ (-767)) 8)) (-4239 (($) 7 T CONST)) (-2581 (((-112) $ (-767)) 9)) (-2382 (((-112) $ (-767)) 10)) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-1872 (($ $) 13)) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-3377 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-846) (-555))))) (-4249 (*1 *2 *1) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *2 (-640 *1)) (-4 *1 (-29 *3)))) (-3377 (*1 *1 *1 *2) (-12 (-5 *2 (-1169)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-846) (-555))))) (-4249 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-640 *1)) (-4 *1 (-29 *4)))) (-1559 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-846) (-555))))) (-2793 (*1 *2 *1) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *2 (-640 *1)) (-4 *1 (-29 *3)))) (-1559 (*1 *1 *1 *2) (-12 (-5 *2 (-1169)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-846) (-555))))) (-2793 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-640 *1)) (-4 *1 (-29 *4)))))
+(-13 (-27) (-430 |t#1|) (-10 -8 (-15 -3377 ($ $)) (-15 -4249 ((-640 $) $)) (-15 -3377 ($ $ (-1169))) (-15 -4249 ((-640 $) $ (-1169))) (-15 -1559 ($ $)) (-15 -2793 ((-640 $) $)) (-15 -1559 ($ $ (-1169))) (-15 -2793 ((-640 $) $ (-1169)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) . T) ((-27) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) |has| |#1| (-172)) ((-111 $ $) . T) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) . T) ((-613 #1=(-407 (-948 |#1|))) |has| |#1| (-555)) ((-613 (-563)) . T) ((-613 #2=(-609 $)) . T) ((-613 #3=(-948 |#1|)) |has| |#1| (-1045)) ((-613 #4=(-1169)) . T) ((-613 |#1|) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-611 (-888 (-379))) |has| |#1| (-611 (-888 (-379)))) ((-611 (-888 (-563))) |has| |#1| (-611 (-888 (-563)))) ((-243) . T) ((-290) . T) ((-307) . T) ((-309 $) . T) ((-302) . T) ((-363) . T) ((-377 |#1|) |has| |#1| (-1045)) ((-400 |#1|) . T) ((-411 |#1|) . T) ((-430 |#1|) . T) ((-452) . T) ((-473) |has| |#1| (-473)) ((-514 (-609 $) $) . T) ((-514 $ $) . T) ((-555) . T) ((-643 #0#) . T) ((-643 |#1|) |has| |#1| (-172)) ((-643 $) . T) ((-636 (-563)) -12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) ((-636 |#1|) |has| |#1| (-1045)) ((-713 #0#) . T) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) . T) ((-722) . T) ((-846) . T) ((-896 (-1169)) |has| |#1| (-1045)) ((-882 (-379)) |has| |#1| (-882 (-379))) ((-882 (-563)) |has| |#1| (-882 (-563))) ((-880 |#1|) . T) ((-916) . T) ((-998) . T) ((-1034 (-407 (-563))) -4034 (|has| |#1| (-1034 (-407 (-563)))) (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563))))) ((-1034 #1#) |has| |#1| (-555)) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 #2#) . T) ((-1034 #3#) |has| |#1| (-1045)) ((-1034 #4#) . T) ((-1034 |#1|) . T) ((-1051 #0#) . T) ((-1051 |#1|) |has| |#1| (-172)) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1208) . T) ((-1212) . T))
+((-4325 (((-1087 (-225)) $) NIL)) (-4314 (((-1087 (-225)) $) NIL)) (-3998 (($ $ (-225)) 125)) (-4262 (($ (-948 (-563)) (-1169) (-1169) (-1087 (-407 (-563))) (-1087 (-407 (-563)))) 82)) (-3394 (((-640 (-640 (-939 (-225)))) $) 137)) (-1692 (((-858) $) 149)))
+(((-30) (-13 (-951) (-10 -8 (-15 -4262 ($ (-948 (-563)) (-1169) (-1169) (-1087 (-407 (-563))) (-1087 (-407 (-563))))) (-15 -3998 ($ $ (-225)))))) (T -30))
+((-4262 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-948 (-563))) (-5 *3 (-1169)) (-5 *4 (-1087 (-407 (-563)))) (-5 *1 (-30)))) (-3998 (*1 *1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-30)))))
+(-13 (-951) (-10 -8 (-15 -4262 ($ (-948 (-563)) (-1169) (-1169) (-1087 (-407 (-563))) (-1087 (-407 (-563))))) (-15 -3998 ($ $ (-225)))))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 19) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3363 (((-1128) $) 11)) (-4212 (((-1128) $) 9)) (-1718 (((-112) $ $) NIL)))
+(((-31) (-13 (-1076) (-10 -8 (-15 -4212 ((-1128) $)) (-15 -3363 ((-1128) $))))) (T -31))
+((-4212 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-31)))) (-3363 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-31)))))
+(-13 (-1076) (-10 -8 (-15 -4212 ((-1128) $)) (-15 -3363 ((-1128) $))))
+((-3377 ((|#2| (-1165 |#2|) (-1169)) 42)) (-2559 (((-114) (-114)) 55)) (-2716 (((-1165 |#2|) (-609 |#2|)) 133 (|has| |#1| (-1034 (-563))))) (-2990 ((|#2| |#1| (-563)) 123 (|has| |#1| (-1034 (-563))))) (-4273 ((|#2| (-1165 |#2|) |#2|) 29)) (-4284 (((-858) (-640 |#2|)) 82)) (-3402 ((|#2| |#2|) 129 (|has| |#1| (-1034 (-563))))) (-2512 (((-112) (-114)) 17)) (** ((|#2| |#2| (-407 (-563))) 95 (|has| |#1| (-1034 (-563))))))
+(((-32 |#1| |#2|) (-10 -7 (-15 -3377 (|#2| (-1165 |#2|) (-1169))) (-15 -2559 ((-114) (-114))) (-15 -2512 ((-112) (-114))) (-15 -4273 (|#2| (-1165 |#2|) |#2|)) (-15 -4284 ((-858) (-640 |#2|))) (IF (|has| |#1| (-1034 (-563))) (PROGN (-15 ** (|#2| |#2| (-407 (-563)))) (-15 -2716 ((-1165 |#2|) (-609 |#2|))) (-15 -3402 (|#2| |#2|)) (-15 -2990 (|#2| |#1| (-563)))) |%noBranch|)) (-13 (-846) (-555)) (-430 |#1|)) (T -32))
+((-2990 (*1 *2 *3 *4) (-12 (-5 *4 (-563)) (-4 *2 (-430 *3)) (-5 *1 (-32 *3 *2)) (-4 *3 (-1034 *4)) (-4 *3 (-13 (-846) (-555))))) (-3402 (*1 *2 *2) (-12 (-4 *3 (-1034 (-563))) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-32 *3 *2)) (-4 *2 (-430 *3)))) (-2716 (*1 *2 *3) (-12 (-5 *3 (-609 *5)) (-4 *5 (-430 *4)) (-4 *4 (-1034 (-563))) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-1165 *5)) (-5 *1 (-32 *4 *5)))) (** (*1 *2 *2 *3) (-12 (-5 *3 (-407 (-563))) (-4 *4 (-1034 (-563))) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-32 *4 *2)) (-4 *2 (-430 *4)))) (-4284 (*1 *2 *3) (-12 (-5 *3 (-640 *5)) (-4 *5 (-430 *4)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-858)) (-5 *1 (-32 *4 *5)))) (-4273 (*1 *2 *3 *2) (-12 (-5 *3 (-1165 *2)) (-4 *2 (-430 *4)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-32 *4 *2)))) (-2512 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112)) (-5 *1 (-32 *4 *5)) (-4 *5 (-430 *4)))) (-2559 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-32 *3 *4)) (-4 *4 (-430 *3)))) (-3377 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 *2)) (-5 *4 (-1169)) (-4 *2 (-430 *5)) (-5 *1 (-32 *5 *2)) (-4 *5 (-13 (-846) (-555))))))
+(-10 -7 (-15 -3377 (|#2| (-1165 |#2|) (-1169))) (-15 -2559 ((-114) (-114))) (-15 -2512 ((-112) (-114))) (-15 -4273 (|#2| (-1165 |#2|) |#2|)) (-15 -4284 ((-858) (-640 |#2|))) (IF (|has| |#1| (-1034 (-563))) (PROGN (-15 ** (|#2| |#2| (-407 (-563)))) (-15 -2716 ((-1165 |#2|) (-609 |#2|))) (-15 -3402 (|#2| |#2|)) (-15 -2990 (|#2| |#1| (-563)))) |%noBranch|))
+((-3001 (((-112) $ (-767)) 16)) (-2569 (($) 10)) (-2514 (((-112) $ (-767)) 15)) (-2481 (((-112) $ (-767)) 14)) (-2941 (((-112) $ $) 8)) (-1665 (((-112) $) 13)))
+(((-33 |#1|) (-10 -8 (-15 -2569 (|#1|)) (-15 -3001 ((-112) |#1| (-767))) (-15 -2514 ((-112) |#1| (-767))) (-15 -2481 ((-112) |#1| (-767))) (-15 -1665 ((-112) |#1|)) (-15 -2941 ((-112) |#1| |#1|))) (-34)) (T -33))
+NIL
+(-10 -8 (-15 -2569 (|#1|)) (-15 -3001 ((-112) |#1| (-767))) (-15 -2514 ((-112) |#1| (-767))) (-15 -2481 ((-112) |#1| (-767))) (-15 -1665 ((-112) |#1|)) (-15 -2941 ((-112) |#1| |#1|)))
+((-3001 (((-112) $ (-767)) 8)) (-2569 (($) 7 T CONST)) (-2514 (((-112) $ (-767)) 9)) (-2481 (((-112) $ (-767)) 10)) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-1870 (($ $) 13)) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-34) (-140)) (T -34))
-((-2026 (*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-1872 (*1 *1 *1) (-4 *1 (-34))) (-3135 (*1 *1) (-4 *1 (-34))) (-3756 (*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-2382 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-767)) (-5 *2 (-112)))) (-2581 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-767)) (-5 *2 (-112)))) (-2759 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-767)) (-5 *2 (-112)))) (-4239 (*1 *1) (-4 *1 (-34))) (-3608 (*1 *2 *1) (-12 (|has| *1 (-6 -4407)) (-4 *1 (-34)) (-5 *2 (-767)))))
-(-13 (-1208) (-10 -8 (-15 -2026 ((-112) $ $)) (-15 -1872 ($ $)) (-15 -3135 ($)) (-15 -3756 ((-112) $)) (-15 -2382 ((-112) $ (-767))) (-15 -2581 ((-112) $ (-767))) (-15 -2759 ((-112) $ (-767))) (-15 -4239 ($) -2669) (IF (|has| $ (-6 -4407)) (-15 -3608 ((-767) $)) |%noBranch|)))
+((-2941 (*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-1870 (*1 *1 *1) (-4 *1 (-34))) (-3445 (*1 *1) (-4 *1 (-34))) (-1665 (*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-2481 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-767)) (-5 *2 (-112)))) (-2514 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-767)) (-5 *2 (-112)))) (-3001 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-767)) (-5 *2 (-112)))) (-2569 (*1 *1) (-4 *1 (-34))) (-3610 (*1 *2 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-34)) (-5 *2 (-767)))))
+(-13 (-1208) (-10 -8 (-15 -2941 ((-112) $ $)) (-15 -1870 ($ $)) (-15 -3445 ($)) (-15 -1665 ((-112) $)) (-15 -2481 ((-112) $ (-767))) (-15 -2514 ((-112) $ (-767))) (-15 -3001 ((-112) $ (-767))) (-15 -2569 ($) -2668) (IF (|has| $ (-6 -4408)) (-15 -3610 ((-767) $)) |%noBranch|)))
(((-1208) . T))
-((-1840 (($ $) 11)) (-1817 (($ $) 10)) (-1862 (($ $) 9)) (-1311 (($ $) 8)) (-1851 (($ $) 7)) (-1829 (($ $) 6)))
+((-1839 (($ $) 11)) (-1816 (($ $) 10)) (-1861 (($ $) 9)) (-1311 (($ $) 8)) (-1850 (($ $) 7)) (-1828 (($ $) 6)))
(((-35) (-140)) (T -35))
-((-1840 (*1 *1 *1) (-4 *1 (-35))) (-1817 (*1 *1 *1) (-4 *1 (-35))) (-1862 (*1 *1 *1) (-4 *1 (-35))) (-1311 (*1 *1 *1) (-4 *1 (-35))) (-1851 (*1 *1 *1) (-4 *1 (-35))) (-1829 (*1 *1 *1) (-4 *1 (-35))))
-(-13 (-10 -8 (-15 -1829 ($ $)) (-15 -1851 ($ $)) (-15 -1311 ($ $)) (-15 -1862 ($ $)) (-15 -1817 ($ $)) (-15 -1840 ($ $))))
-((-1677 (((-112) $ $) 19 (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-2619 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 125)) (-3442 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 148)) (-4302 (($ $) 146)) (-1552 (($) 72) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 71)) (-4378 (((-1262) $ |#1| |#1|) 99 (|has| $ (-6 -4408))) (((-1262) $ (-563) (-563)) 178 (|has| $ (-6 -4408)))) (-1624 (($ $ (-563)) 159 (|has| $ (-6 -4408)))) (-3523 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 209) (((-112) $) 203 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-2770 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 200 (|has| $ (-6 -4408))) (($ $) 199 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)) (|has| $ (-6 -4408))))) (-1642 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 210) (($ $) 204 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-2759 (((-112) $ (-767)) 8)) (-2936 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 134 (|has| $ (-6 -4408)))) (-3692 (($ $ $) 155 (|has| $ (-6 -4408)))) (-3889 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 157 (|has| $ (-6 -4408)))) (-1543 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 153 (|has| $ (-6 -4408)))) (-1849 ((|#2| $ |#1| |#2|) 73) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 189 (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-1224 (-563)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 160 (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ "last" (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 158 (|has| $ (-6 -4408))) (($ $ "rest" $) 156 (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ "first" (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 154 (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ "value" (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 133 (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) 132 (|has| $ (-6 -4408)))) (-2812 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 45 (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 216)) (-2256 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 55 (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 175 (|has| $ (-6 -4407)))) (-3431 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 147)) (-1577 (((-3 |#2| "failed") |#1| $) 61)) (-4239 (($) 7 T CONST)) (-2907 (($ $) 201 (|has| $ (-6 -4408)))) (-4382 (($ $) 211)) (-3792 (($ $ (-767)) 142) (($ $) 140)) (-4005 (($ $) 214 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (-3813 (($ $) 58 (-4032 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407))) (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407)))))) (-2705 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 47 (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 46 (|has| $ (-6 -4407))) (((-3 |#2| "failed") |#1| $) 62) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 220) (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 215 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 54 (|has| $ (-6 -4407))) (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 177 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 174 (|has| $ (-6 -4407)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 56 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407)))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 53 (|has| $ (-6 -4407))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 52 (|has| $ (-6 -4407))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 176 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407)))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 173 (|has| $ (-6 -4407))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 172 (|has| $ (-6 -4407)))) (-4355 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 190 (|has| $ (-6 -4408)))) (-4293 ((|#2| $ |#1|) 88) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563)) 188)) (-2018 (((-112) $) 192)) (-4368 (((-563) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 208) (((-563) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 207 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))) (((-563) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563)) 206 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (-2659 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 30 (|has| $ (-6 -4407))) (((-640 |#2|) $) 79 (|has| $ (-6 -4407))) (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 114 (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) 123)) (-1469 (((-112) $ $) 131 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (-1566 (($ (-767) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 169)) (-2581 (((-112) $ (-767)) 9)) (-2411 ((|#1| $) 96 (|has| |#1| (-846))) (((-563) $) 180 (|has| (-563) (-846)))) (-3084 (($ $ $) 198 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-2878 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ $) 217) (($ $ $) 213 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-3164 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ $) 212) (($ $ $) 205 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-2259 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 29 (|has| $ (-6 -4407))) (((-640 |#2|) $) 80 (|has| $ (-6 -4407))) (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 115 (|has| $ (-6 -4407)))) (-1729 (((-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407)))) (((-112) |#2| $) 82 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4407)))) (((-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 117 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407))))) (-3860 ((|#1| $) 95 (|has| |#1| (-846))) (((-563) $) 181 (|has| (-563) (-846)))) (-1777 (($ $ $) 197 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-4345 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 34 (|has| $ (-6 -4408))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4408))) (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 110 (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70) (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ $) 166) (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 109)) (-3651 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 225)) (-2382 (((-112) $ (-767)) 10)) (-2512 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 128)) (-2194 (((-112) $) 124)) (-3573 (((-1151) $) 22 (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-1481 (($ $ (-767)) 145) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 143)) (-1303 (((-640 |#1|) $) 63)) (-4173 (((-112) |#1| $) 64)) (-2964 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 39)) (-1812 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 40) (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563)) 219) (($ $ $ (-563)) 218)) (-3396 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563)) 162) (($ $ $ (-563)) 161)) (-4318 (((-640 |#1|) $) 93) (((-640 (-563)) $) 183)) (-3192 (((-112) |#1| $) 92) (((-112) (-563) $) 184)) (-1694 (((-1113) $) 21 (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-3781 ((|#2| $) 97 (|has| |#1| (-846))) (($ $ (-767)) 139) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 137)) (-4203 (((-3 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 51) (((-3 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 171)) (-2358 (($ $ |#2|) 98 (|has| $ (-6 -4408))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 179 (|has| $ (-6 -4408)))) (-3755 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 41)) (-2833 (((-112) $) 191)) (-3138 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 32 (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 112 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))))) 26 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 25 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 24 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 23 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) 86 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) 84 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) 83 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 121 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 120 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 119 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))))) 118 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-2026 (((-112) $ $) 14)) (-2105 (((-112) |#2| $) 94 (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093)))) (((-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 182 (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-2836 (((-640 |#2|) $) 91) (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 185)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 187) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563)) 186) (($ $ (-1224 (-563))) 165) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ "last") 144) (($ $ "rest") 141) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ "first") 138) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ "value") 126)) (-4071 (((-563) $ $) 129)) (-3890 (($) 49) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 48)) (-1314 (($ $ (-563)) 222) (($ $ (-1224 (-563))) 221)) (-2963 (($ $ (-563)) 164) (($ $ (-1224 (-563))) 163)) (-1434 (((-112) $) 127)) (-2749 (($ $) 151)) (-1322 (($ $) 152 (|has| $ (-6 -4408)))) (-1950 (((-767) $) 150)) (-3752 (($ $) 149)) (-1709 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 31 (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407)))) (((-767) |#2| $) 81 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4407)))) (((-767) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 116 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407)))) (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 113 (|has| $ (-6 -4407)))) (-3076 (($ $ $ (-563)) 202 (|has| $ (-6 -4408)))) (-1872 (($ $) 13)) (-2220 (((-536) $) 59 (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-611 (-536))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-611 (-536)))))) (-1707 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 50) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 170)) (-3245 (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 224) (($ $ $) 223)) (-2853 (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 168) (($ (-640 $)) 167) (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 136) (($ $ $) 135)) (-1693 (((-858) $) 18 (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-610 (-858)))))) (-4258 (((-640 $) $) 122)) (-2962 (((-112) $ $) 130 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (-2233 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 42)) (-1491 (((-3 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) "failed") |#1| $) 108)) (-4383 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 33 (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) 76 (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 111 (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) 195 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-1756 (((-112) $ $) 194 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-1718 (((-112) $ $) 20 (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-1768 (((-112) $ $) 196 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-1744 (((-112) $ $) 193 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1839 (*1 *1 *1) (-4 *1 (-35))) (-1816 (*1 *1 *1) (-4 *1 (-35))) (-1861 (*1 *1 *1) (-4 *1 (-35))) (-1311 (*1 *1 *1) (-4 *1 (-35))) (-1850 (*1 *1 *1) (-4 *1 (-35))) (-1828 (*1 *1 *1) (-4 *1 (-35))))
+(-13 (-10 -8 (-15 -1828 ($ $)) (-15 -1850 ($ $)) (-15 -1311 ($ $)) (-15 -1861 ($ $)) (-15 -1816 ($ $)) (-15 -1839 ($ $))))
+((-1677 (((-112) $ $) 19 (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-2618 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 125)) (-3446 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 148)) (-4303 (($ $) 146)) (-1551 (($) 72) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 71)) (-2208 (((-1262) $ |#1| |#1|) 99 (|has| $ (-6 -4409))) (((-1262) $ (-563) (-563)) 178 (|has| $ (-6 -4409)))) (-1887 (($ $ (-563)) 159 (|has| $ (-6 -4409)))) (-4073 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 209) (((-112) $) 203 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-4052 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 200 (|has| $ (-6 -4409))) (($ $) 199 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)) (|has| $ (-6 -4409))))) (-1640 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 210) (($ $) 204 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-3001 (((-112) $ (-767)) 8)) (-2336 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 134 (|has| $ (-6 -4409)))) (-1909 (($ $ $) 155 (|has| $ (-6 -4409)))) (-1898 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 157 (|has| $ (-6 -4409)))) (-1919 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 153 (|has| $ (-6 -4409)))) (-1849 ((|#2| $ |#1| |#2|) 73) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 189 (|has| $ (-6 -4409))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-1224 (-563)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 160 (|has| $ (-6 -4409))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ "last" (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 158 (|has| $ (-6 -4409))) (($ $ "rest" $) 156 (|has| $ (-6 -4409))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ "first" (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 154 (|has| $ (-6 -4409))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ "value" (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 133 (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) 132 (|has| $ (-6 -4409)))) (-3678 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 45 (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 216)) (-2255 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 55 (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 175 (|has| $ (-6 -4408)))) (-3435 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 147)) (-1576 (((-3 |#2| "failed") |#1| $) 61)) (-2569 (($) 7 T CONST)) (-1574 (($ $) 201 (|has| $ (-6 -4409)))) (-4383 (($ $) 211)) (-3793 (($ $ (-767)) 142) (($ $) 140)) (-4194 (($ $) 214 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (-3814 (($ $) 58 (-4034 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408))) (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408)))))) (-1691 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 47 (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 46 (|has| $ (-6 -4408))) (((-3 |#2| "failed") |#1| $) 62) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 220) (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 215 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 54 (|has| $ (-6 -4408))) (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 177 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 174 (|has| $ (-6 -4408)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 56 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408)))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 53 (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 52 (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 176 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408)))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 173 (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 172 (|has| $ (-6 -4408)))) (-4356 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4409))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 190 (|has| $ (-6 -4409)))) (-4293 ((|#2| $ |#1|) 88) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563)) 188)) (-1966 (((-112) $) 192)) (-4369 (((-563) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 208) (((-563) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 207 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))) (((-563) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563)) 206 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (-2658 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 30 (|has| $ (-6 -4408))) (((-640 |#2|) $) 79 (|has| $ (-6 -4408))) (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 114 (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) 123)) (-2358 (((-112) $ $) 131 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (-1565 (($ (-767) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 169)) (-2514 (((-112) $ (-767)) 9)) (-2236 ((|#1| $) 96 (|has| |#1| (-846))) (((-563) $) 180 (|has| (-563) (-846)))) (-3088 (($ $ $) 198 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-4265 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ $) 217) (($ $ $) 213 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-4300 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ $) 212) (($ $ $) 205 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-3523 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 29 (|has| $ (-6 -4408))) (((-640 |#2|) $) 80 (|has| $ (-6 -4408))) (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 115 (|has| $ (-6 -4408)))) (-2667 (((-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408)))) (((-112) |#2| $) 82 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4408)))) (((-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 117 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408))))) (-2251 ((|#1| $) 95 (|has| |#1| (-846))) (((-563) $) 181 (|has| (-563) (-846)))) (-1776 (($ $ $) 197 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-4347 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 34 (|has| $ (-6 -4409))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4409))) (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 110 (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70) (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ $) 166) (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 109)) (-3652 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 225)) (-2481 (((-112) $ (-767)) 10)) (-2511 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 128)) (-1298 (((-112) $) 124)) (-3854 (((-1151) $) 22 (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-1481 (($ $ (-767)) 145) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 143)) (-1304 (((-640 |#1|) $) 63)) (-2305 (((-112) |#1| $) 64)) (-2627 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 39)) (-3867 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 40) (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563)) 219) (($ $ $ (-563)) 218)) (-3399 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563)) 162) (($ $ $ (-563)) 161)) (-2272 (((-640 |#1|) $) 93) (((-640 (-563)) $) 183)) (-2282 (((-112) |#1| $) 92) (((-112) (-563) $) 184)) (-1693 (((-1113) $) 21 (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-3782 ((|#2| $) 97 (|has| |#1| (-846))) (($ $ (-767)) 139) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 137)) (-1971 (((-3 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 51) (((-3 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 171)) (-2221 (($ $ |#2|) 98 (|has| $ (-6 -4409))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 179 (|has| $ (-6 -4409)))) (-2808 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 41)) (-1976 (((-112) $) 191)) (-1458 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 32 (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 112 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))))) 26 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 25 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 24 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 23 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) 86 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) 84 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) 83 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 121 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 120 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 119 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))))) 118 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-2941 (((-112) $ $) 14)) (-2262 (((-112) |#2| $) 94 (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093)))) (((-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 182 (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-2295 (((-640 |#2|) $) 91) (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 185)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 187) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563)) 186) (($ $ (-1224 (-563))) 165) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ "last") 144) (($ $ "rest") 141) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ "first") 138) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ "value") 126)) (-2379 (((-563) $ $) 129)) (-3863 (($) 49) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 48)) (-3690 (($ $ (-563)) 222) (($ $ (-1224 (-563))) 221)) (-2967 (($ $ (-563)) 164) (($ $ (-1224 (-563))) 163)) (-2889 (((-112) $) 127)) (-1951 (($ $) 151)) (-1930 (($ $) 152 (|has| $ (-6 -4409)))) (-1961 (((-767) $) 150)) (-1970 (($ $) 149)) (-1708 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 31 (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408)))) (((-767) |#2| $) 81 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4408)))) (((-767) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 116 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408)))) (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 113 (|has| $ (-6 -4408)))) (-4062 (($ $ $ (-563)) 202 (|has| $ (-6 -4409)))) (-1870 (($ $) 13)) (-2219 (((-536) $) 59 (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-611 (-536))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-611 (-536)))))) (-1706 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 50) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 170)) (-1941 (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 224) (($ $ $) 223)) (-2857 (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 168) (($ (-640 $)) 167) (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 136) (($ $ $) 135)) (-1692 (((-858) $) 18 (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-610 (-858)))))) (-4345 (((-640 $) $) 122)) (-2367 (((-112) $ $) 130 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (-2820 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 42)) (-1491 (((-3 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) "failed") |#1| $) 108)) (-1471 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 33 (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) 76 (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 111 (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) 195 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-1754 (((-112) $ $) 194 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-1718 (((-112) $ $) 20 (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-1766 (((-112) $ $) 196 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-1743 (((-112) $ $) 193 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-36 |#1| |#2|) (-140) (-1093) (-1093)) (T -36))
-((-1491 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-5 *2 (-2 (|:| -2387 *3) (|:| -2557 *4))))))
-(-13 (-1184 |t#1| |t#2|) (-661 (-2 (|:| -2387 |t#1|) (|:| -2557 |t#2|))) (-10 -8 (-15 -1491 ((-3 (-2 (|:| -2387 |t#1|) (|:| -2557 |t#2|)) "failed") |t#1| $))))
-(((-34) . T) ((-107 #0=(-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T) ((-102) -4032 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846))) ((-610 (-858)) -4032 (|has| |#2| (-1093)) (|has| |#2| (-610 (-858))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-610 (-858)))) ((-151 #1=(-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T) ((-611 (-536)) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-611 (-536))) ((-229 #0#) . T) ((-235 #0#) . T) ((-286 #2=(-563) #1#) . T) ((-286 |#1| |#2|) . T) ((-288 #2# #1#) . T) ((-288 |#1| |#2|) . T) ((-309 #1#) -12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))) ((-309 |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-282 #1#) . T) ((-373 #1#) . T) ((-489 #1#) . T) ((-489 |#2|) . T) ((-601 #2# #1#) . T) ((-601 |#1| |#2|) . T) ((-514 #1# #1#) -12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))) ((-514 |#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-607 |#1| |#2|) . T) ((-646 #1#) . T) ((-661 #1#) . T) ((-846) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)) ((-1006 #1#) . T) ((-1093) -4032 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846))) ((-1142 #1#) . T) ((-1184 |#1| |#2|) . T) ((-1208) . T) ((-1245 #1#) . T))
-((-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) 10)))
-(((-37 |#1| |#2|) (-10 -8 (-15 -1693 (|#1| |#2|)) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|))) (-38 |#2|) (-172)) (T -37))
-NIL
-(-10 -8 (-15 -1693 (|#1| |#2|)) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 38)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-1491 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-5 *2 (-2 (|:| -2387 *3) (|:| -2556 *4))))))
+(-13 (-1184 |t#1| |t#2|) (-661 (-2 (|:| -2387 |t#1|) (|:| -2556 |t#2|))) (-10 -8 (-15 -1491 ((-3 (-2 (|:| -2387 |t#1|) (|:| -2556 |t#2|)) "failed") |t#1| $))))
+(((-34) . T) ((-107 #0=(-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T) ((-102) -4034 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846))) ((-610 (-858)) -4034 (|has| |#2| (-1093)) (|has| |#2| (-610 (-858))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-610 (-858)))) ((-151 #1=(-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T) ((-611 (-536)) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-611 (-536))) ((-229 #0#) . T) ((-235 #0#) . T) ((-286 #2=(-563) #1#) . T) ((-286 |#1| |#2|) . T) ((-288 #2# #1#) . T) ((-288 |#1| |#2|) . T) ((-309 #1#) -12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))) ((-309 |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-282 #1#) . T) ((-373 #1#) . T) ((-489 #1#) . T) ((-489 |#2|) . T) ((-601 #2# #1#) . T) ((-601 |#1| |#2|) . T) ((-514 #1# #1#) -12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))) ((-514 |#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-607 |#1| |#2|) . T) ((-646 #1#) . T) ((-661 #1#) . T) ((-846) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)) ((-1006 #1#) . T) ((-1093) -4034 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846))) ((-1142 #1#) . T) ((-1184 |#1| |#2|) . T) ((-1208) . T) ((-1245 #1#) . T))
+((-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) 10)))
+(((-37 |#1| |#2|) (-10 -8 (-15 -1692 (|#1| |#2|)) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|))) (-38 |#2|) (-172)) (T -37))
+NIL
+(-10 -8 (-15 -1692 (|#1| |#2|)) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 38)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-38 |#1|) (-140) (-172)) (T -38))
NIL
(-13 (-1045) (-713 |t#1|) (-613 |t#1|))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-610 (-858)) . T) ((-643 |#1|) . T) ((-643 $) . T) ((-713 |#1|) . T) ((-722) . T) ((-1051 |#1|) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-2335 (((-418 |#1|) |#1|) 41)) (-2174 (((-418 |#1|) |#1|) 30) (((-418 |#1|) |#1| (-640 (-48))) 33)) (-4055 (((-112) |#1|) 56)))
-(((-39 |#1|) (-10 -7 (-15 -2174 ((-418 |#1|) |#1| (-640 (-48)))) (-15 -2174 ((-418 |#1|) |#1|)) (-15 -2335 ((-418 |#1|) |#1|)) (-15 -4055 ((-112) |#1|))) (-1233 (-48))) (T -39))
-((-4055 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1233 (-48))))) (-2335 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1233 (-48))))) (-2174 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1233 (-48))))) (-2174 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-48))) (-5 *2 (-418 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1233 (-48))))))
-(-10 -7 (-15 -2174 ((-418 |#1|) |#1| (-640 (-48)))) (-15 -2174 ((-418 |#1|) |#1|)) (-15 -2335 ((-418 |#1|) |#1|)) (-15 -4055 ((-112) |#1|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4067 (((-2 (|:| |num| (-1257 |#2|)) (|:| |den| |#2|)) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| (-407 |#2|) (-363)))) (-4223 (($ $) NIL (|has| (-407 |#2|) (-363)))) (-3156 (((-112) $) NIL (|has| (-407 |#2|) (-363)))) (-3561 (((-684 (-407 |#2|)) (-1257 $)) NIL) (((-684 (-407 |#2|))) NIL)) (-1733 (((-407 |#2|) $) NIL)) (-2752 (((-1181 (-917) (-767)) (-563)) NIL (|has| (-407 |#2|) (-349)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL (|has| (-407 |#2|) (-363)))) (-3205 (((-418 $) $) NIL (|has| (-407 |#2|) (-363)))) (-1919 (((-112) $ $) NIL (|has| (-407 |#2|) (-363)))) (-3749 (((-767)) NIL (|has| (-407 |#2|) (-368)))) (-1504 (((-112)) NIL)) (-2456 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL (|has| (-407 |#2|) (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-407 |#2|) (-1034 (-407 (-563))))) (((-3 (-407 |#2|) "failed") $) NIL)) (-2058 (((-563) $) NIL (|has| (-407 |#2|) (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| (-407 |#2|) (-1034 (-407 (-563))))) (((-407 |#2|) $) NIL)) (-3937 (($ (-1257 (-407 |#2|)) (-1257 $)) NIL) (($ (-1257 (-407 |#2|))) 57) (($ (-1257 |#2|) |#2|) 125)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-407 |#2|) (-349)))) (-3090 (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-3914 (((-684 (-407 |#2|)) $ (-1257 $)) NIL) (((-684 (-407 |#2|)) $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| (-407 |#2|) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-407 |#2|) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-407 |#2|))) (|:| |vec| (-1257 (-407 |#2|)))) (-684 $) (-1257 $)) NIL) (((-684 (-407 |#2|)) (-684 $)) NIL)) (-4364 (((-1257 $) (-1257 $)) NIL)) (-2444 (($ |#3|) NIL) (((-3 $ "failed") (-407 |#3|)) NIL (|has| (-407 |#2|) (-363)))) (-3400 (((-3 $ "failed") $) NIL)) (-2077 (((-640 (-640 |#1|))) NIL (|has| |#1| (-368)))) (-3632 (((-112) |#1| |#1|) NIL)) (-2522 (((-917)) NIL)) (-1691 (($) NIL (|has| (-407 |#2|) (-368)))) (-4077 (((-112)) NIL)) (-1852 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-3050 (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| (-407 |#2|) (-363)))) (-1300 (($ $) NIL)) (-1571 (($) NIL (|has| (-407 |#2|) (-349)))) (-2366 (((-112) $) NIL (|has| (-407 |#2|) (-349)))) (-1637 (($ $ (-767)) NIL (|has| (-407 |#2|) (-349))) (($ $) NIL (|has| (-407 |#2|) (-349)))) (-2468 (((-112) $) NIL (|has| (-407 |#2|) (-363)))) (-3254 (((-917) $) NIL (|has| (-407 |#2|) (-349))) (((-829 (-917)) $) NIL (|has| (-407 |#2|) (-349)))) (-3827 (((-112) $) NIL)) (-3273 (((-767)) NIL)) (-3132 (((-1257 $) (-1257 $)) 102)) (-3793 (((-407 |#2|) $) NIL)) (-3370 (((-640 (-948 |#1|)) (-1169)) NIL (|has| |#1| (-363)))) (-2408 (((-3 $ "failed") $) NIL (|has| (-407 |#2|) (-349)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| (-407 |#2|) (-363)))) (-3941 ((|#3| $) NIL (|has| (-407 |#2|) (-363)))) (-1476 (((-917) $) NIL (|has| (-407 |#2|) (-368)))) (-2433 ((|#3| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| (-407 |#2|) (-363))) (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-3573 (((-1151) $) NIL)) (-1712 (((-1262) (-767)) 79)) (-2095 (((-684 (-407 |#2|))) 51)) (-3295 (((-684 (-407 |#2|))) 44)) (-2688 (($ $) NIL (|has| (-407 |#2|) (-363)))) (-2145 (($ (-1257 |#2|) |#2|) 126)) (-4218 (((-684 (-407 |#2|))) 45)) (-3500 (((-684 (-407 |#2|))) 43)) (-2914 (((-2 (|:| |num| (-684 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 124)) (-3447 (((-2 (|:| |num| (-1257 |#2|)) (|:| |den| |#2|)) $) 64)) (-2993 (((-1257 $)) 42)) (-3815 (((-1257 $)) 41)) (-2532 (((-112) $) NIL)) (-1294 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-2523 (($) NIL (|has| (-407 |#2|) (-349)) CONST)) (-2555 (($ (-917)) NIL (|has| (-407 |#2|) (-368)))) (-3140 (((-3 |#2| "failed")) NIL)) (-1694 (((-1113) $) NIL)) (-2327 (((-767)) NIL)) (-4333 (($) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| (-407 |#2|) (-363)))) (-3548 (($ (-640 $)) NIL (|has| (-407 |#2|) (-363))) (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) NIL (|has| (-407 |#2|) (-349)))) (-2174 (((-418 $) $) NIL (|has| (-407 |#2|) (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-407 |#2|) (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| (-407 |#2|) (-363)))) (-3008 (((-3 $ "failed") $ $) NIL (|has| (-407 |#2|) (-363)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| (-407 |#2|) (-363)))) (-2628 (((-767) $) NIL (|has| (-407 |#2|) (-363)))) (-2309 ((|#1| $ |#1| |#1|) NIL)) (-2621 (((-3 |#2| "failed")) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| (-407 |#2|) (-363)))) (-2315 (((-407 |#2|) (-1257 $)) NIL) (((-407 |#2|)) 39)) (-1423 (((-767) $) NIL (|has| (-407 |#2|) (-349))) (((-3 (-767) "failed") $ $) NIL (|has| (-407 |#2|) (-349)))) (-4202 (($ $ (-1 (-407 |#2|) (-407 |#2|)) (-767)) NIL (|has| (-407 |#2|) (-363))) (($ $ (-1 (-407 |#2|) (-407 |#2|))) NIL (|has| (-407 |#2|) (-363))) (($ $ (-1 |#2| |#2|)) 120) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-767)) NIL (-4032 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349)))) (($ $) NIL (-4032 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349))))) (-3974 (((-684 (-407 |#2|)) (-1257 $) (-1 (-407 |#2|) (-407 |#2|))) NIL (|has| (-407 |#2|) (-363)))) (-3390 ((|#3|) 50)) (-4284 (($) NIL (|has| (-407 |#2|) (-349)))) (-1880 (((-1257 (-407 |#2|)) $ (-1257 $)) NIL) (((-684 (-407 |#2|)) (-1257 $) (-1257 $)) NIL) (((-1257 (-407 |#2|)) $) 58) (((-684 (-407 |#2|)) (-1257 $)) 103)) (-2220 (((-1257 (-407 |#2|)) $) NIL) (($ (-1257 (-407 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| (-407 |#2|) (-349)))) (-1962 (((-1257 $) (-1257 $)) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 |#2|)) NIL) (($ (-407 (-563))) NIL (-4032 (|has| (-407 |#2|) (-1034 (-407 (-563)))) (|has| (-407 |#2|) (-363)))) (($ $) NIL (|has| (-407 |#2|) (-363)))) (-2779 (($ $) NIL (|has| (-407 |#2|) (-349))) (((-3 $ "failed") $) NIL (|has| (-407 |#2|) (-145)))) (-3421 ((|#3| $) NIL)) (-1675 (((-767)) NIL)) (-4042 (((-112)) 37)) (-1528 (((-112) |#1|) 49) (((-112) |#2|) 131)) (-4315 (((-1257 $)) 93)) (-2126 (((-112) $ $) NIL (|has| (-407 |#2|) (-363)))) (-2732 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-1581 (((-112)) NIL)) (-2241 (($) 16 T CONST)) (-2254 (($) 26 T CONST)) (-3209 (($ $ (-1 (-407 |#2|) (-407 |#2|)) (-767)) NIL (|has| (-407 |#2|) (-363))) (($ $ (-1 (-407 |#2|) (-407 |#2|))) NIL (|has| (-407 |#2|) (-363))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-767)) NIL (-4032 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349)))) (($ $) NIL (-4032 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349))))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| (-407 |#2|) (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 |#2|)) NIL) (($ (-407 |#2|) $) NIL) (($ (-407 (-563)) $) NIL (|has| (-407 |#2|) (-363))) (($ $ (-407 (-563))) NIL (|has| (-407 |#2|) (-363)))))
-(((-40 |#1| |#2| |#3| |#4|) (-13 (-342 |#1| |#2| |#3|) (-10 -7 (-15 -1712 ((-1262) (-767))))) (-363) (-1233 |#1|) (-1233 (-407 |#2|)) |#3|) (T -40))
-((-1712 (*1 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-363)) (-4 *5 (-1233 *4)) (-5 *2 (-1262)) (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1233 (-407 *5))) (-14 *7 *6))))
-(-13 (-342 |#1| |#2| |#3|) (-10 -7 (-15 -1712 ((-1262) (-767)))))
-((-2278 ((|#2| |#2|) 48)) (-3082 ((|#2| |#2|) 119 (-12 (|has| |#2| (-430 |#1|)) (|has| |#1| (-452)) (|has| |#1| (-846)) (|has| |#1| (-1034 (-563)))))) (-3885 ((|#2| |#2|) 86 (-12 (|has| |#2| (-430 |#1|)) (|has| |#1| (-452)) (|has| |#1| (-846)) (|has| |#1| (-1034 (-563)))))) (-4381 ((|#2| |#2|) 87 (-12 (|has| |#2| (-430 |#1|)) (|has| |#1| (-452)) (|has| |#1| (-846)) (|has| |#1| (-1034 (-563)))))) (-1601 ((|#2| (-114) |#2| (-767)) 115 (-12 (|has| |#2| (-430 |#1|)) (|has| |#1| (-452)) (|has| |#1| (-846)) (|has| |#1| (-1034 (-563)))))) (-3112 (((-1165 |#2|) |#2|) 45)) (-2673 ((|#2| |#2| (-640 (-609 |#2|))) 18) ((|#2| |#2| (-640 |#2|)) 20) ((|#2| |#2| |#2|) 21) ((|#2| |#2|) 16)))
-(((-41 |#1| |#2|) (-10 -7 (-15 -2278 (|#2| |#2|)) (-15 -2673 (|#2| |#2|)) (-15 -2673 (|#2| |#2| |#2|)) (-15 -2673 (|#2| |#2| (-640 |#2|))) (-15 -2673 (|#2| |#2| (-640 (-609 |#2|)))) (-15 -3112 ((-1165 |#2|) |#2|)) (IF (|has| |#1| (-846)) (IF (|has| |#1| (-452)) (IF (|has| |#1| (-1034 (-563))) (IF (|has| |#2| (-430 |#1|)) (PROGN (-15 -4381 (|#2| |#2|)) (-15 -3885 (|#2| |#2|)) (-15 -3082 (|#2| |#2|)) (-15 -1601 (|#2| (-114) |#2| (-767)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-555) (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 |#1| (-609 $)) $)) (-15 -2154 ((-1118 |#1| (-609 $)) $)) (-15 -1693 ($ (-1118 |#1| (-609 $))))))) (T -41))
-((-1601 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-114)) (-5 *4 (-767)) (-4 *5 (-452)) (-4 *5 (-846)) (-4 *5 (-1034 (-563))) (-4 *5 (-555)) (-5 *1 (-41 *5 *2)) (-4 *2 (-430 *5)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *5 (-609 $)) $)) (-15 -2154 ((-1118 *5 (-609 $)) $)) (-15 -1693 ($ (-1118 *5 (-609 $))))))))) (-3082 (*1 *2 *2) (-12 (-4 *3 (-452)) (-4 *3 (-846)) (-4 *3 (-1034 (-563))) (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-430 *3)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $)) (-15 -2154 ((-1118 *3 (-609 $)) $)) (-15 -1693 ($ (-1118 *3 (-609 $))))))))) (-3885 (*1 *2 *2) (-12 (-4 *3 (-452)) (-4 *3 (-846)) (-4 *3 (-1034 (-563))) (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-430 *3)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $)) (-15 -2154 ((-1118 *3 (-609 $)) $)) (-15 -1693 ($ (-1118 *3 (-609 $))))))))) (-4381 (*1 *2 *2) (-12 (-4 *3 (-452)) (-4 *3 (-846)) (-4 *3 (-1034 (-563))) (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-430 *3)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $)) (-15 -2154 ((-1118 *3 (-609 $)) $)) (-15 -1693 ($ (-1118 *3 (-609 $))))))))) (-3112 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-1165 *3)) (-5 *1 (-41 *4 *3)) (-4 *3 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *4 (-609 $)) $)) (-15 -2154 ((-1118 *4 (-609 $)) $)) (-15 -1693 ($ (-1118 *4 (-609 $))))))))) (-2673 (*1 *2 *2 *3) (-12 (-5 *3 (-640 (-609 *2))) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *4 (-609 $)) $)) (-15 -2154 ((-1118 *4 (-609 $)) $)) (-15 -1693 ($ (-1118 *4 (-609 $))))))) (-4 *4 (-555)) (-5 *1 (-41 *4 *2)))) (-2673 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *4 (-609 $)) $)) (-15 -2154 ((-1118 *4 (-609 $)) $)) (-15 -1693 ($ (-1118 *4 (-609 $))))))) (-4 *4 (-555)) (-5 *1 (-41 *4 *2)))) (-2673 (*1 *2 *2 *2) (-12 (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $)) (-15 -2154 ((-1118 *3 (-609 $)) $)) (-15 -1693 ($ (-1118 *3 (-609 $))))))))) (-2673 (*1 *2 *2) (-12 (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $)) (-15 -2154 ((-1118 *3 (-609 $)) $)) (-15 -1693 ($ (-1118 *3 (-609 $))))))))) (-2278 (*1 *2 *2) (-12 (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $)) (-15 -2154 ((-1118 *3 (-609 $)) $)) (-15 -1693 ($ (-1118 *3 (-609 $))))))))))
-(-10 -7 (-15 -2278 (|#2| |#2|)) (-15 -2673 (|#2| |#2|)) (-15 -2673 (|#2| |#2| |#2|)) (-15 -2673 (|#2| |#2| (-640 |#2|))) (-15 -2673 (|#2| |#2| (-640 (-609 |#2|)))) (-15 -3112 ((-1165 |#2|) |#2|)) (IF (|has| |#1| (-846)) (IF (|has| |#1| (-452)) (IF (|has| |#1| (-1034 (-563))) (IF (|has| |#2| (-430 |#1|)) (PROGN (-15 -4381 (|#2| |#2|)) (-15 -3885 (|#2| |#2|)) (-15 -3082 (|#2| |#2|)) (-15 -1601 (|#2| (-114) |#2| (-767)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
-((-2174 (((-418 (-1165 |#3|)) (-1165 |#3|) (-640 (-48))) 23) (((-418 |#3|) |#3| (-640 (-48))) 19)))
-(((-42 |#1| |#2| |#3|) (-10 -7 (-15 -2174 ((-418 |#3|) |#3| (-640 (-48)))) (-15 -2174 ((-418 (-1165 |#3|)) (-1165 |#3|) (-640 (-48))))) (-846) (-789) (-945 (-48) |#2| |#1|)) (T -42))
-((-2174 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-48))) (-4 *5 (-846)) (-4 *6 (-789)) (-4 *7 (-945 (-48) *6 *5)) (-5 *2 (-418 (-1165 *7))) (-5 *1 (-42 *5 *6 *7)) (-5 *3 (-1165 *7)))) (-2174 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-48))) (-4 *5 (-846)) (-4 *6 (-789)) (-5 *2 (-418 *3)) (-5 *1 (-42 *5 *6 *3)) (-4 *3 (-945 (-48) *6 *5)))))
-(-10 -7 (-15 -2174 ((-418 |#3|) |#3| (-640 (-48)))) (-15 -2174 ((-418 (-1165 |#3|)) (-1165 |#3|) (-640 (-48)))))
-((-3366 (((-767) |#2|) 65)) (-3560 (((-767) |#2|) 68)) (-2426 (((-640 |#2|)) 33)) (-3708 (((-767) |#2|) 67)) (-1761 (((-767) |#2|) 64)) (-1989 (((-767) |#2|) 66)) (-1681 (((-640 (-684 |#1|))) 60)) (-1696 (((-640 |#2|)) 55)) (-4127 (((-640 |#2|) |#2|) 43)) (-2785 (((-640 |#2|)) 57)) (-1765 (((-640 |#2|)) 56)) (-2011 (((-640 (-684 |#1|))) 48)) (-2070 (((-640 |#2|)) 54)) (-2529 (((-640 |#2|) |#2|) 42)) (-1375 (((-640 |#2|)) 50)) (-1769 (((-640 (-684 |#1|))) 61)) (-1412 (((-640 |#2|)) 59)) (-4315 (((-1257 |#2|) (-1257 |#2|)) 83 (|has| |#1| (-307)))))
-(((-43 |#1| |#2|) (-10 -7 (-15 -3708 ((-767) |#2|)) (-15 -3560 ((-767) |#2|)) (-15 -1761 ((-767) |#2|)) (-15 -3366 ((-767) |#2|)) (-15 -1989 ((-767) |#2|)) (-15 -1375 ((-640 |#2|))) (-15 -2529 ((-640 |#2|) |#2|)) (-15 -4127 ((-640 |#2|) |#2|)) (-15 -2070 ((-640 |#2|))) (-15 -1696 ((-640 |#2|))) (-15 -1765 ((-640 |#2|))) (-15 -2785 ((-640 |#2|))) (-15 -1412 ((-640 |#2|))) (-15 -2011 ((-640 (-684 |#1|)))) (-15 -1681 ((-640 (-684 |#1|)))) (-15 -1769 ((-640 (-684 |#1|)))) (-15 -2426 ((-640 |#2|))) (IF (|has| |#1| (-307)) (-15 -4315 ((-1257 |#2|) (-1257 |#2|))) |%noBranch|)) (-555) (-417 |#1|)) (T -43))
-((-4315 (*1 *2 *2) (-12 (-5 *2 (-1257 *4)) (-4 *4 (-417 *3)) (-4 *3 (-307)) (-4 *3 (-555)) (-5 *1 (-43 *3 *4)))) (-2426 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-1769 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 (-684 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-1681 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 (-684 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-2011 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 (-684 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-1412 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-2785 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-1765 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-1696 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-2070 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-4127 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-640 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-417 *4)))) (-2529 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-640 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-417 *4)))) (-1375 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-1989 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3)) (-4 *3 (-417 *4)))) (-3366 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3)) (-4 *3 (-417 *4)))) (-1761 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3)) (-4 *3 (-417 *4)))) (-3560 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3)) (-4 *3 (-417 *4)))) (-3708 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3)) (-4 *3 (-417 *4)))))
-(-10 -7 (-15 -3708 ((-767) |#2|)) (-15 -3560 ((-767) |#2|)) (-15 -1761 ((-767) |#2|)) (-15 -3366 ((-767) |#2|)) (-15 -1989 ((-767) |#2|)) (-15 -1375 ((-640 |#2|))) (-15 -2529 ((-640 |#2|) |#2|)) (-15 -4127 ((-640 |#2|) |#2|)) (-15 -2070 ((-640 |#2|))) (-15 -1696 ((-640 |#2|))) (-15 -1765 ((-640 |#2|))) (-15 -2785 ((-640 |#2|))) (-15 -1412 ((-640 |#2|))) (-15 -2011 ((-640 (-684 |#1|)))) (-15 -1681 ((-640 (-684 |#1|)))) (-15 -1769 ((-640 (-684 |#1|)))) (-15 -2426 ((-640 |#2|))) (IF (|has| |#1| (-307)) (-15 -4315 ((-1257 |#2|) (-1257 |#2|))) |%noBranch|))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1414 (((-3 $ "failed")) NIL (|has| |#1| (-555)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-3507 (((-1257 (-684 |#1|)) (-1257 $)) NIL) (((-1257 (-684 |#1|))) 24)) (-1438 (((-1257 $)) 51)) (-4239 (($) NIL T CONST)) (-2133 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) NIL (|has| |#1| (-555)))) (-2435 (((-3 $ "failed")) NIL (|has| |#1| (-555)))) (-4220 (((-684 |#1|) (-1257 $)) NIL) (((-684 |#1|)) NIL)) (-2480 ((|#1| $) NIL)) (-3043 (((-684 |#1|) $ (-1257 $)) NIL) (((-684 |#1|) $) NIL)) (-4154 (((-3 $ "failed") $) NIL (|has| |#1| (-555)))) (-3451 (((-1165 (-948 |#1|))) NIL (|has| |#1| (-363)))) (-2300 (($ $ (-917)) NIL)) (-3830 ((|#1| $) NIL)) (-3763 (((-1165 |#1|) $) NIL (|has| |#1| (-555)))) (-1824 ((|#1| (-1257 $)) NIL) ((|#1|) NIL)) (-2876 (((-1165 |#1|) $) NIL)) (-2182 (((-112)) 87)) (-3937 (($ (-1257 |#1|) (-1257 $)) NIL) (($ (-1257 |#1|)) NIL)) (-3400 (((-3 $ "failed") $) 14 (|has| |#1| (-555)))) (-2522 (((-917)) 52)) (-2250 (((-112)) NIL)) (-2287 (($ $ (-917)) NIL)) (-3901 (((-112)) NIL)) (-3308 (((-112)) NIL)) (-3104 (((-112)) 89)) (-2284 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) NIL (|has| |#1| (-555)))) (-2508 (((-3 $ "failed")) NIL (|has| |#1| (-555)))) (-2328 (((-684 |#1|) (-1257 $)) NIL) (((-684 |#1|)) NIL)) (-2842 ((|#1| $) NIL)) (-1823 (((-684 |#1|) $ (-1257 $)) NIL) (((-684 |#1|) $) NIL)) (-3856 (((-3 $ "failed") $) NIL (|has| |#1| (-555)))) (-3594 (((-1165 (-948 |#1|))) NIL (|has| |#1| (-363)))) (-1494 (($ $ (-917)) NIL)) (-2199 ((|#1| $) NIL)) (-2604 (((-1165 |#1|) $) NIL (|has| |#1| (-555)))) (-4111 ((|#1| (-1257 $)) NIL) ((|#1|) NIL)) (-2665 (((-1165 |#1|) $) NIL)) (-4012 (((-112)) 86)) (-3573 (((-1151) $) NIL)) (-2136 (((-112)) 93)) (-1789 (((-112)) 92)) (-2047 (((-112)) 94)) (-1694 (((-1113) $) NIL)) (-4084 (((-112)) 88)) (-2309 ((|#1| $ (-563)) 54)) (-1880 (((-1257 |#1|) $ (-1257 $)) 48) (((-684 |#1|) (-1257 $) (-1257 $)) NIL) (((-1257 |#1|) $) 28) (((-684 |#1|) (-1257 $)) NIL)) (-2220 (((-1257 |#1|) $) NIL) (($ (-1257 |#1|)) NIL)) (-4152 (((-640 (-948 |#1|)) (-1257 $)) NIL) (((-640 (-948 |#1|))) NIL)) (-2146 (($ $ $) NIL)) (-1936 (((-112)) 84)) (-1693 (((-858) $) 69) (($ (-1257 |#1|)) 22)) (-4315 (((-1257 $)) 45)) (-2138 (((-640 (-1257 |#1|))) NIL (|has| |#1| (-555)))) (-1361 (($ $ $ $) NIL)) (-1402 (((-112)) 82)) (-3726 (($ (-684 |#1|) $) 18)) (-3399 (($ $ $) NIL)) (-2483 (((-112)) 85)) (-3777 (((-112)) 83)) (-2128 (((-112)) 81)) (-2241 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 76) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1135 |#2| |#1|) $) 19)))
-(((-44 |#1| |#2| |#3| |#4|) (-13 (-417 |#1|) (-643 (-1135 |#2| |#1|)) (-10 -8 (-15 -1693 ($ (-1257 |#1|))))) (-363) (-917) (-640 (-1169)) (-1257 (-684 |#1|))) (T -44))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-363)) (-14 *6 (-1257 (-684 *3))) (-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))))))
-(-13 (-417 |#1|) (-643 (-1135 |#2| |#1|)) (-10 -8 (-15 -1693 ($ (-1257 |#1|)))))
-((-1677 (((-112) $ $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-2619 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-3442 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-4302 (($ $) NIL)) (-1552 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-4378 (((-1262) $ |#1| |#1|) NIL (|has| $ (-6 -4408))) (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-1624 (($ $ (-563)) NIL (|has| $ (-6 -4408)))) (-3523 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL) (((-112) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-2770 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4408))) (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846))))) (-1642 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-2759 (((-112) $ (-767)) NIL)) (-2936 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4408)))) (-3692 (($ $ $) 27 (|has| $ (-6 -4408)))) (-3889 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4408)))) (-1543 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 29 (|has| $ (-6 -4408)))) (-1849 ((|#2| $ |#1| |#2|) 45) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-1224 (-563)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ "last" (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4408))) (($ $ "rest" $) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ "first" (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ "value" (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) NIL (|has| $ (-6 -4408)))) (-2812 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL)) (-2256 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-3431 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-1577 (((-3 |#2| "failed") |#1| $) 37)) (-4239 (($) NIL T CONST)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-3792 (($ $ (-767)) NIL) (($ $) 24)) (-4005 (($ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-2705 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-3 |#2| "failed") |#1| $) 47) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL) (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4407))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4407))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4408)))) (-4293 ((|#2| $ |#1|) NIL) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563)) NIL)) (-2018 (((-112) $) NIL)) (-4368 (((-563) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL) (((-563) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))) (((-563) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563)) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (-2659 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 18 (|has| $ (-6 -4407))) (((-640 |#2|) $) NIL (|has| $ (-6 -4407))) (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 18 (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) NIL)) (-1469 (((-112) $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (-1566 (($ (-767) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2411 ((|#1| $) NIL (|has| |#1| (-846))) (((-563) $) 32 (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-2878 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-3164 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-2259 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-640 |#2|) $) NIL (|has| $ (-6 -4407))) (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093)))) (((-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-3860 ((|#1| $) NIL (|has| |#1| (-846))) (((-563) $) 34 (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-4345 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4408))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL)) (-3651 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-2512 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL)) (-2194 (((-112) $) NIL)) (-3573 (((-1151) $) 41 (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1481 (($ $ (-767)) NIL) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-1303 (((-640 |#1|) $) 20)) (-4173 (((-112) |#1| $) NIL)) (-2964 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-1812 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL) (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-3396 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-4318 (((-640 |#1|) $) NIL) (((-640 (-563)) $) NIL)) (-3192 (((-112) |#1| $) NIL) (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3781 ((|#2| $) NIL (|has| |#1| (-846))) (($ $ (-767)) NIL) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 23)) (-4203 (((-3 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL) (((-3 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL)) (-2358 (($ $ |#2|) NIL (|has| $ (-6 -4408))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4408)))) (-3755 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-2833 (((-112) $) NIL)) (-3138 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093)))) (((-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-2836 (((-640 |#2|) $) NIL) (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 17)) (-3756 (((-112) $) 16)) (-3135 (($) 13)) (-2309 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ (-563)) NIL) (($ $ (-1224 (-563))) NIL) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ "first") NIL) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $ "value") NIL)) (-4071 (((-563) $ $) NIL)) (-3890 (($) 12) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-1314 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-2963 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1434 (((-112) $) NIL)) (-2749 (($ $) NIL)) (-1322 (($ $) NIL (|has| $ (-6 -4408)))) (-1950 (((-767) $) NIL)) (-3752 (($ $) NIL)) (-1709 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093)))) (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-3076 (($ $ $ (-563)) NIL (|has| $ (-6 -4408)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-611 (-536))))) (-1707 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-3245 (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL) (($ $ $) NIL)) (-2853 (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL) (($ (-640 $)) NIL) (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 25) (($ $ $) NIL)) (-1693 (((-858) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858)))))) (-4258 (((-640 $) $) NIL)) (-2962 (((-112) $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (-2233 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-1491 (((-3 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) "failed") |#1| $) 43)) (-4383 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-1756 (((-112) $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-1718 (((-112) $ $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1768 (((-112) $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-1744 (((-112) $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-846)))) (-3608 (((-767) $) 22 (|has| $ (-6 -4407)))))
+((-1792 (((-418 |#1|) |#1|) 41)) (-2173 (((-418 |#1|) |#1|) 30) (((-418 |#1|) |#1| (-640 (-48))) 33)) (-2951 (((-112) |#1|) 56)))
+(((-39 |#1|) (-10 -7 (-15 -2173 ((-418 |#1|) |#1| (-640 (-48)))) (-15 -2173 ((-418 |#1|) |#1|)) (-15 -1792 ((-418 |#1|) |#1|)) (-15 -2951 ((-112) |#1|))) (-1233 (-48))) (T -39))
+((-2951 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1233 (-48))))) (-1792 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1233 (-48))))) (-2173 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1233 (-48))))) (-2173 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-48))) (-5 *2 (-418 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1233 (-48))))))
+(-10 -7 (-15 -2173 ((-418 |#1|) |#1| (-640 (-48)))) (-15 -2173 ((-418 |#1|) |#1|)) (-15 -1792 ((-418 |#1|) |#1|)) (-15 -2951 ((-112) |#1|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2535 (((-2 (|:| |num| (-1257 |#2|)) (|:| |den| |#2|)) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| (-407 |#2|) (-363)))) (-3231 (($ $) NIL (|has| (-407 |#2|) (-363)))) (-3211 (((-112) $) NIL (|has| (-407 |#2|) (-363)))) (-3340 (((-684 (-407 |#2|)) (-1257 $)) NIL) (((-684 (-407 |#2|))) NIL)) (-1731 (((-407 |#2|) $) NIL)) (-1597 (((-1181 (-917) (-767)) (-563)) NIL (|has| (-407 |#2|) (-349)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL (|has| (-407 |#2|) (-363)))) (-2802 (((-418 $) $) NIL (|has| (-407 |#2|) (-363)))) (-2003 (((-112) $ $) NIL (|has| (-407 |#2|) (-363)))) (-3750 (((-767)) NIL (|has| (-407 |#2|) (-368)))) (-1432 (((-112)) NIL)) (-1421 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL (|has| (-407 |#2|) (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-407 |#2|) (-1034 (-407 (-563))))) (((-3 (-407 |#2|) "failed") $) NIL)) (-2057 (((-563) $) NIL (|has| (-407 |#2|) (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| (-407 |#2|) (-1034 (-407 (-563))))) (((-407 |#2|) $) NIL)) (-3458 (($ (-1257 (-407 |#2|)) (-1257 $)) NIL) (($ (-1257 (-407 |#2|))) 57) (($ (-1257 |#2|) |#2|) 125)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-407 |#2|) (-349)))) (-3094 (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-3330 (((-684 (-407 |#2|)) $ (-1257 $)) NIL) (((-684 (-407 |#2|)) $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| (-407 |#2|) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-407 |#2|) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-407 |#2|))) (|:| |vec| (-1257 (-407 |#2|)))) (-684 $) (-1257 $)) NIL) (((-684 (-407 |#2|)) (-684 $)) NIL)) (-1339 (((-1257 $) (-1257 $)) NIL)) (-2444 (($ |#3|) NIL) (((-3 $ "failed") (-407 |#3|)) NIL (|has| (-407 |#2|) (-363)))) (-3951 (((-3 $ "failed") $) NIL)) (-2443 (((-640 (-640 |#1|))) NIL (|has| |#1| (-368)))) (-1465 (((-112) |#1| |#1|) NIL)) (-2521 (((-917)) NIL)) (-1690 (($) NIL (|has| (-407 |#2|) (-368)))) (-1409 (((-112)) NIL)) (-1398 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-3054 (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| (-407 |#2|) (-363)))) (-4151 (($ $) NIL)) (-4036 (($) NIL (|has| (-407 |#2|) (-349)))) (-1656 (((-112) $) NIL (|has| (-407 |#2|) (-349)))) (-3188 (($ $ (-767)) NIL (|has| (-407 |#2|) (-349))) (($ $) NIL (|has| (-407 |#2|) (-349)))) (-2560 (((-112) $) NIL (|has| (-407 |#2|) (-363)))) (-1775 (((-917) $) NIL (|has| (-407 |#2|) (-349))) (((-829 (-917)) $) NIL (|has| (-407 |#2|) (-349)))) (-3401 (((-112) $) NIL)) (-1419 (((-767)) NIL)) (-1349 (((-1257 $) (-1257 $)) 102)) (-3975 (((-407 |#2|) $) NIL)) (-2454 (((-640 (-948 |#1|)) (-1169)) NIL (|has| |#1| (-363)))) (-1983 (((-3 $ "failed") $) NIL (|has| (-407 |#2|) (-349)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| (-407 |#2|) (-363)))) (-4035 ((|#3| $) NIL (|has| (-407 |#2|) (-363)))) (-3990 (((-917) $) NIL (|has| (-407 |#2|) (-368)))) (-2433 ((|#3| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| (-407 |#2|) (-363))) (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-3854 (((-1151) $) NIL)) (-1635 (((-1262) (-767)) 79)) (-2546 (((-684 (-407 |#2|))) 51)) (-1319 (((-684 (-407 |#2|))) 44)) (-2687 (($ $) NIL (|has| (-407 |#2|) (-363)))) (-2510 (($ (-1257 |#2|) |#2|) 126)) (-1308 (((-684 (-407 |#2|))) 45)) (-1330 (((-684 (-407 |#2|))) 43)) (-2499 (((-2 (|:| |num| (-684 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 124)) (-2524 (((-2 (|:| |num| (-1257 |#2|)) (|:| |den| |#2|)) $) 64)) (-1387 (((-1257 $)) 42)) (-3608 (((-1257 $)) 41)) (-1377 (((-112) $) NIL)) (-1368 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-2522 (($) NIL (|has| (-407 |#2|) (-349)) CONST)) (-2552 (($ (-917)) NIL (|has| (-407 |#2|) (-368)))) (-2477 (((-3 |#2| "failed")) NIL)) (-1693 (((-1113) $) NIL)) (-1486 (((-767)) NIL)) (-4334 (($) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| (-407 |#2|) (-363)))) (-3551 (($ (-640 $)) NIL (|has| (-407 |#2|) (-363))) (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) NIL (|has| (-407 |#2|) (-349)))) (-2173 (((-418 $) $) NIL (|has| (-407 |#2|) (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-407 |#2|) (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| (-407 |#2|) (-363)))) (-3012 (((-3 $ "failed") $ $) NIL (|has| (-407 |#2|) (-363)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| (-407 |#2|) (-363)))) (-1993 (((-767) $) NIL (|has| (-407 |#2|) (-363)))) (-2308 ((|#1| $ |#1| |#1|) NIL)) (-2489 (((-3 |#2| "failed")) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| (-407 |#2|) (-363)))) (-1623 (((-407 |#2|) (-1257 $)) NIL) (((-407 |#2|)) 39)) (-3196 (((-767) $) NIL (|has| (-407 |#2|) (-349))) (((-3 (-767) "failed") $ $) NIL (|has| (-407 |#2|) (-349)))) (-4203 (($ $ (-1 (-407 |#2|) (-407 |#2|)) (-767)) NIL (|has| (-407 |#2|) (-363))) (($ $ (-1 (-407 |#2|) (-407 |#2|))) NIL (|has| (-407 |#2|) (-363))) (($ $ (-1 |#2| |#2|)) 120) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-767)) NIL (-4034 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349)))) (($ $) NIL (-4034 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349))))) (-3388 (((-684 (-407 |#2|)) (-1257 $) (-1 (-407 |#2|) (-407 |#2|))) NIL (|has| (-407 |#2|) (-363)))) (-3402 ((|#3|) 50)) (-1586 (($) NIL (|has| (-407 |#2|) (-349)))) (-3759 (((-1257 (-407 |#2|)) $ (-1257 $)) NIL) (((-684 (-407 |#2|)) (-1257 $) (-1257 $)) NIL) (((-1257 (-407 |#2|)) $) 58) (((-684 (-407 |#2|)) (-1257 $)) 103)) (-2219 (((-1257 (-407 |#2|)) $) NIL) (($ (-1257 (-407 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| (-407 |#2|) (-349)))) (-1359 (((-1257 $) (-1257 $)) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 |#2|)) NIL) (($ (-407 (-563))) NIL (-4034 (|has| (-407 |#2|) (-1034 (-407 (-563)))) (|has| (-407 |#2|) (-363)))) (($ $) NIL (|has| (-407 |#2|) (-363)))) (-2047 (($ $) NIL (|has| (-407 |#2|) (-349))) (((-3 $ "failed") $) NIL (|has| (-407 |#2|) (-145)))) (-1892 ((|#3| $) NIL)) (-3914 (((-767)) NIL)) (-1452 (((-112)) 37)) (-1443 (((-112) |#1|) 49) (((-112) |#2|) 131)) (-4013 (((-1257 $)) 93)) (-3223 (((-112) $ $) NIL (|has| (-407 |#2|) (-363)))) (-2465 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-1475 (((-112)) NIL)) (-2239 (($) 16 T CONST)) (-2253 (($) 26 T CONST)) (-3213 (($ $ (-1 (-407 |#2|) (-407 |#2|)) (-767)) NIL (|has| (-407 |#2|) (-363))) (($ $ (-1 (-407 |#2|) (-407 |#2|))) NIL (|has| (-407 |#2|) (-363))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-767)) NIL (-4034 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349)))) (($ $) NIL (-4034 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349))))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| (-407 |#2|) (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 |#2|)) NIL) (($ (-407 |#2|) $) NIL) (($ (-407 (-563)) $) NIL (|has| (-407 |#2|) (-363))) (($ $ (-407 (-563))) NIL (|has| (-407 |#2|) (-363)))))
+(((-40 |#1| |#2| |#3| |#4|) (-13 (-342 |#1| |#2| |#3|) (-10 -7 (-15 -1635 ((-1262) (-767))))) (-363) (-1233 |#1|) (-1233 (-407 |#2|)) |#3|) (T -40))
+((-1635 (*1 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-363)) (-4 *5 (-1233 *4)) (-5 *2 (-1262)) (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1233 (-407 *5))) (-14 *7 *6))))
+(-13 (-342 |#1| |#2| |#3|) (-10 -7 (-15 -1635 ((-1262) (-767)))))
+((-1649 ((|#2| |#2|) 48)) (-2448 ((|#2| |#2|) 121 (-12 (|has| |#2| (-430 |#1|)) (|has| |#1| (-452)) (|has| |#1| (-846)) (|has| |#1| (-1034 (-563)))))) (-2437 ((|#2| |#2|) 86 (-12 (|has| |#2| (-430 |#1|)) (|has| |#1| (-452)) (|has| |#1| (-846)) (|has| |#1| (-1034 (-563)))))) (-2425 ((|#2| |#2|) 87 (-12 (|has| |#2| (-430 |#1|)) (|has| |#1| (-452)) (|has| |#1| (-846)) (|has| |#1| (-1034 (-563)))))) (-2458 ((|#2| (-114) |#2| (-767)) 117 (-12 (|has| |#2| (-430 |#1|)) (|has| |#1| (-452)) (|has| |#1| (-846)) (|has| |#1| (-1034 (-563)))))) (-2414 (((-1165 |#2|) |#2|) 45)) (-2402 ((|#2| |#2| (-640 (-609 |#2|))) 18) ((|#2| |#2| (-640 |#2|)) 20) ((|#2| |#2| |#2|) 21) ((|#2| |#2|) 16)))
+(((-41 |#1| |#2|) (-10 -7 (-15 -1649 (|#2| |#2|)) (-15 -2402 (|#2| |#2|)) (-15 -2402 (|#2| |#2| |#2|)) (-15 -2402 (|#2| |#2| (-640 |#2|))) (-15 -2402 (|#2| |#2| (-640 (-609 |#2|)))) (-15 -2414 ((-1165 |#2|) |#2|)) (IF (|has| |#1| (-846)) (IF (|has| |#1| (-452)) (IF (|has| |#1| (-1034 (-563))) (IF (|has| |#2| (-430 |#1|)) (PROGN (-15 -2425 (|#2| |#2|)) (-15 -2437 (|#2| |#2|)) (-15 -2448 (|#2| |#2|)) (-15 -2458 (|#2| (-114) |#2| (-767)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-555) (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 |#1| (-609 $)) $)) (-15 -2153 ((-1118 |#1| (-609 $)) $)) (-15 -1692 ($ (-1118 |#1| (-609 $))))))) (T -41))
+((-2458 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-114)) (-5 *4 (-767)) (-4 *5 (-452)) (-4 *5 (-846)) (-4 *5 (-1034 (-563))) (-4 *5 (-555)) (-5 *1 (-41 *5 *2)) (-4 *2 (-430 *5)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *5 (-609 $)) $)) (-15 -2153 ((-1118 *5 (-609 $)) $)) (-15 -1692 ($ (-1118 *5 (-609 $))))))))) (-2448 (*1 *2 *2) (-12 (-4 *3 (-452)) (-4 *3 (-846)) (-4 *3 (-1034 (-563))) (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-430 *3)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $)) (-15 -2153 ((-1118 *3 (-609 $)) $)) (-15 -1692 ($ (-1118 *3 (-609 $))))))))) (-2437 (*1 *2 *2) (-12 (-4 *3 (-452)) (-4 *3 (-846)) (-4 *3 (-1034 (-563))) (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-430 *3)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $)) (-15 -2153 ((-1118 *3 (-609 $)) $)) (-15 -1692 ($ (-1118 *3 (-609 $))))))))) (-2425 (*1 *2 *2) (-12 (-4 *3 (-452)) (-4 *3 (-846)) (-4 *3 (-1034 (-563))) (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-430 *3)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $)) (-15 -2153 ((-1118 *3 (-609 $)) $)) (-15 -1692 ($ (-1118 *3 (-609 $))))))))) (-2414 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-1165 *3)) (-5 *1 (-41 *4 *3)) (-4 *3 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *4 (-609 $)) $)) (-15 -2153 ((-1118 *4 (-609 $)) $)) (-15 -1692 ($ (-1118 *4 (-609 $))))))))) (-2402 (*1 *2 *2 *3) (-12 (-5 *3 (-640 (-609 *2))) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *4 (-609 $)) $)) (-15 -2153 ((-1118 *4 (-609 $)) $)) (-15 -1692 ($ (-1118 *4 (-609 $))))))) (-4 *4 (-555)) (-5 *1 (-41 *4 *2)))) (-2402 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *4 (-609 $)) $)) (-15 -2153 ((-1118 *4 (-609 $)) $)) (-15 -1692 ($ (-1118 *4 (-609 $))))))) (-4 *4 (-555)) (-5 *1 (-41 *4 *2)))) (-2402 (*1 *2 *2 *2) (-12 (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $)) (-15 -2153 ((-1118 *3 (-609 $)) $)) (-15 -1692 ($ (-1118 *3 (-609 $))))))))) (-2402 (*1 *2 *2) (-12 (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $)) (-15 -2153 ((-1118 *3 (-609 $)) $)) (-15 -1692 ($ (-1118 *3 (-609 $))))))))) (-1649 (*1 *2 *2) (-12 (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-363) (-302) (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $)) (-15 -2153 ((-1118 *3 (-609 $)) $)) (-15 -1692 ($ (-1118 *3 (-609 $))))))))))
+(-10 -7 (-15 -1649 (|#2| |#2|)) (-15 -2402 (|#2| |#2|)) (-15 -2402 (|#2| |#2| |#2|)) (-15 -2402 (|#2| |#2| (-640 |#2|))) (-15 -2402 (|#2| |#2| (-640 (-609 |#2|)))) (-15 -2414 ((-1165 |#2|) |#2|)) (IF (|has| |#1| (-846)) (IF (|has| |#1| (-452)) (IF (|has| |#1| (-1034 (-563))) (IF (|has| |#2| (-430 |#1|)) (PROGN (-15 -2425 (|#2| |#2|)) (-15 -2437 (|#2| |#2|)) (-15 -2448 (|#2| |#2|)) (-15 -2458 (|#2| (-114) |#2| (-767)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
+((-2173 (((-418 (-1165 |#3|)) (-1165 |#3|) (-640 (-48))) 23) (((-418 |#3|) |#3| (-640 (-48))) 19)))
+(((-42 |#1| |#2| |#3|) (-10 -7 (-15 -2173 ((-418 |#3|) |#3| (-640 (-48)))) (-15 -2173 ((-418 (-1165 |#3|)) (-1165 |#3|) (-640 (-48))))) (-846) (-789) (-945 (-48) |#2| |#1|)) (T -42))
+((-2173 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-48))) (-4 *5 (-846)) (-4 *6 (-789)) (-4 *7 (-945 (-48) *6 *5)) (-5 *2 (-418 (-1165 *7))) (-5 *1 (-42 *5 *6 *7)) (-5 *3 (-1165 *7)))) (-2173 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-48))) (-4 *5 (-846)) (-4 *6 (-789)) (-5 *2 (-418 *3)) (-5 *1 (-42 *5 *6 *3)) (-4 *3 (-945 (-48) *6 *5)))))
+(-10 -7 (-15 -2173 ((-418 |#3|) |#3| (-640 (-48)))) (-15 -2173 ((-418 (-1165 |#3|)) (-1165 |#3|) (-640 (-48)))))
+((-2825 (((-767) |#2|) 65)) (-2561 (((-767) |#2|) 68)) (-1489 (((-640 |#2|)) 33)) (-2470 (((-767) |#2|) 67)) (-2570 (((-767) |#2|) 64)) (-2837 (((-767) |#2|) 66)) (-1468 (((-640 (-684 |#1|))) 60)) (-1412 (((-640 |#2|)) 55)) (-1390 (((-640 |#2|) |#2|) 43)) (-1435 (((-640 |#2|)) 57)) (-1424 (((-640 |#2|)) 56)) (-1455 (((-640 (-684 |#1|))) 48)) (-1401 (((-640 |#2|)) 54)) (-1380 (((-640 |#2|) |#2|) 42)) (-1369 (((-640 |#2|)) 50)) (-1478 (((-640 (-684 |#1|))) 61)) (-1446 (((-640 |#2|)) 59)) (-4013 (((-1257 |#2|) (-1257 |#2|)) 83 (|has| |#1| (-307)))))
+(((-43 |#1| |#2|) (-10 -7 (-15 -2470 ((-767) |#2|)) (-15 -2561 ((-767) |#2|)) (-15 -2570 ((-767) |#2|)) (-15 -2825 ((-767) |#2|)) (-15 -2837 ((-767) |#2|)) (-15 -1369 ((-640 |#2|))) (-15 -1380 ((-640 |#2|) |#2|)) (-15 -1390 ((-640 |#2|) |#2|)) (-15 -1401 ((-640 |#2|))) (-15 -1412 ((-640 |#2|))) (-15 -1424 ((-640 |#2|))) (-15 -1435 ((-640 |#2|))) (-15 -1446 ((-640 |#2|))) (-15 -1455 ((-640 (-684 |#1|)))) (-15 -1468 ((-640 (-684 |#1|)))) (-15 -1478 ((-640 (-684 |#1|)))) (-15 -1489 ((-640 |#2|))) (IF (|has| |#1| (-307)) (-15 -4013 ((-1257 |#2|) (-1257 |#2|))) |%noBranch|)) (-555) (-417 |#1|)) (T -43))
+((-4013 (*1 *2 *2) (-12 (-5 *2 (-1257 *4)) (-4 *4 (-417 *3)) (-4 *3 (-307)) (-4 *3 (-555)) (-5 *1 (-43 *3 *4)))) (-1489 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-1478 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 (-684 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-1468 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 (-684 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-1455 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 (-684 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-1446 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-1435 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-1424 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-1412 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-1401 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-1390 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-640 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-417 *4)))) (-1380 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-640 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-417 *4)))) (-1369 (*1 *2) (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-417 *3)))) (-2837 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3)) (-4 *3 (-417 *4)))) (-2825 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3)) (-4 *3 (-417 *4)))) (-2570 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3)) (-4 *3 (-417 *4)))) (-2561 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3)) (-4 *3 (-417 *4)))) (-2470 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3)) (-4 *3 (-417 *4)))))
+(-10 -7 (-15 -2470 ((-767) |#2|)) (-15 -2561 ((-767) |#2|)) (-15 -2570 ((-767) |#2|)) (-15 -2825 ((-767) |#2|)) (-15 -2837 ((-767) |#2|)) (-15 -1369 ((-640 |#2|))) (-15 -1380 ((-640 |#2|) |#2|)) (-15 -1390 ((-640 |#2|) |#2|)) (-15 -1401 ((-640 |#2|))) (-15 -1412 ((-640 |#2|))) (-15 -1424 ((-640 |#2|))) (-15 -1435 ((-640 |#2|))) (-15 -1446 ((-640 |#2|))) (-15 -1455 ((-640 (-684 |#1|)))) (-15 -1468 ((-640 (-684 |#1|)))) (-15 -1478 ((-640 (-684 |#1|)))) (-15 -1489 ((-640 |#2|))) (IF (|has| |#1| (-307)) (-15 -4013 ((-1257 |#2|) (-1257 |#2|))) |%noBranch|))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3245 (((-3 $ "failed")) NIL (|has| |#1| (-555)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-3749 (((-1257 (-684 |#1|)) (-1257 $)) NIL) (((-1257 (-684 |#1|))) 24)) (-4039 (((-1257 $)) 51)) (-2569 (($) NIL T CONST)) (-2288 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) NIL (|has| |#1| (-555)))) (-1914 (((-3 $ "failed")) NIL (|has| |#1| (-555)))) (-3410 (((-684 |#1|) (-1257 $)) NIL) (((-684 |#1|)) NIL)) (-4017 ((|#1| $) NIL)) (-3386 (((-684 |#1|) $ (-1257 $)) NIL) (((-684 |#1|) $) NIL)) (-3342 (((-3 $ "failed") $) NIL (|has| |#1| (-555)))) (-2214 (((-1165 (-948 |#1|))) NIL (|has| |#1| (-363)))) (-3376 (($ $ (-917)) NIL)) (-3995 ((|#1| $) NIL)) (-1938 (((-1165 |#1|) $) NIL (|has| |#1| (-555)))) (-3436 ((|#1| (-1257 $)) NIL) ((|#1|) NIL)) (-3973 (((-1165 |#1|) $) NIL)) (-3912 (((-112)) 87)) (-3458 (($ (-1257 |#1|) (-1257 $)) NIL) (($ (-1257 |#1|)) NIL)) (-3951 (((-3 $ "failed") $) 14 (|has| |#1| (-555)))) (-2521 (((-917)) 52)) (-3879 (((-112)) NIL)) (-3617 (($ $ (-917)) NIL)) (-3843 (((-112)) NIL)) (-3825 (((-112)) NIL)) (-3861 (((-112)) 89)) (-2299 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) NIL (|has| |#1| (-555)))) (-1927 (((-3 $ "failed")) NIL (|has| |#1| (-555)))) (-3422 (((-684 |#1|) (-1257 $)) NIL) (((-684 |#1|)) NIL)) (-4028 ((|#1| $) NIL)) (-3398 (((-684 |#1|) $ (-1257 $)) NIL) (((-684 |#1|) $) NIL)) (-3353 (((-3 $ "failed") $) NIL (|has| |#1| (-555)))) (-2267 (((-1165 (-948 |#1|))) NIL (|has| |#1| (-363)))) (-3364 (($ $ (-917)) NIL)) (-4007 ((|#1| $) NIL)) (-3801 (((-1165 |#1|) $) NIL (|has| |#1| (-555)))) (-3447 ((|#1| (-1257 $)) NIL) ((|#1|) NIL)) (-3984 (((-1165 |#1|) $) NIL)) (-3923 (((-112)) 86)) (-3854 (((-1151) $) NIL)) (-3832 (((-112)) 94)) (-3852 (((-112)) 93)) (-3868 (((-112)) 95)) (-1693 (((-1113) $) NIL)) (-3900 (((-112)) 88)) (-2308 ((|#1| $ (-563)) 54)) (-3759 (((-1257 |#1|) $ (-1257 $)) 48) (((-684 |#1|) (-1257 $) (-1257 $)) NIL) (((-1257 |#1|) $) 28) (((-684 |#1|) (-1257 $)) NIL)) (-2219 (((-1257 |#1|) $) NIL) (($ (-1257 |#1|)) NIL)) (-2122 (((-640 (-948 |#1|)) (-1257 $)) NIL) (((-640 (-948 |#1|))) NIL)) (-1745 (($ $ $) NIL)) (-3963 (((-112)) 84)) (-1692 (((-858) $) 68) (($ (-1257 |#1|)) 22)) (-4013 (((-1257 $)) 45)) (-3813 (((-640 (-1257 |#1|))) NIL (|has| |#1| (-555)))) (-1756 (($ $ $ $) NIL)) (-3942 (((-112)) 81)) (-3727 (($ (-684 |#1|) $) 18)) (-1729 (($ $ $) NIL)) (-3952 (((-112)) 85)) (-3933 (((-112)) 82)) (-3891 (((-112)) 80)) (-2239 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 75) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1135 |#2| |#1|) $) 19)))
+(((-44 |#1| |#2| |#3| |#4|) (-13 (-417 |#1|) (-643 (-1135 |#2| |#1|)) (-10 -8 (-15 -1692 ($ (-1257 |#1|))))) (-363) (-917) (-640 (-1169)) (-1257 (-684 |#1|))) (T -44))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-363)) (-14 *6 (-1257 (-684 *3))) (-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))))))
+(-13 (-417 |#1|) (-643 (-1135 |#2| |#1|)) (-10 -8 (-15 -1692 ($ (-1257 |#1|)))))
+((-1677 (((-112) $ $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-2618 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-3446 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-4303 (($ $) NIL)) (-1551 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-2208 (((-1262) $ |#1| |#1|) NIL (|has| $ (-6 -4409))) (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-1887 (($ $ (-563)) NIL (|has| $ (-6 -4409)))) (-4073 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL) (((-112) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-4052 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4409))) (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846))))) (-1640 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-3001 (((-112) $ (-767)) NIL)) (-2336 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4409)))) (-1909 (($ $ $) 27 (|has| $ (-6 -4409)))) (-1898 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4409)))) (-1919 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 29 (|has| $ (-6 -4409)))) (-1849 ((|#2| $ |#1| |#2|) 45) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4409))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-1224 (-563)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4409))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ "last" (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4409))) (($ $ "rest" $) NIL (|has| $ (-6 -4409))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ "first" (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4409))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ "value" (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) NIL (|has| $ (-6 -4409)))) (-3678 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL)) (-2255 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-3435 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-1576 (((-3 |#2| "failed") |#1| $) 37)) (-2569 (($) NIL T CONST)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-3793 (($ $ (-767)) NIL) (($ $) 24)) (-4194 (($ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-1691 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-3 |#2| "failed") |#1| $) 47) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL) (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4409))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4409)))) (-4293 ((|#2| $ |#1|) NIL) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563)) NIL)) (-1966 (((-112) $) NIL)) (-4369 (((-563) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL) (((-563) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))) (((-563) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563)) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (-2658 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 18 (|has| $ (-6 -4408))) (((-640 |#2|) $) NIL (|has| $ (-6 -4408))) (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 18 (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) NIL)) (-2358 (((-112) $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (-1565 (($ (-767) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2236 ((|#1| $) NIL (|has| |#1| (-846))) (((-563) $) 32 (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-4265 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-4300 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-3523 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-640 |#2|) $) NIL (|has| $ (-6 -4408))) (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093)))) (((-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-2251 ((|#1| $) NIL (|has| |#1| (-846))) (((-563) $) 34 (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-4347 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4409))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4409))) (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL)) (-3652 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-2511 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL)) (-1298 (((-112) $) NIL)) (-3854 (((-1151) $) 41 (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1481 (($ $ (-767)) NIL) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-1304 (((-640 |#1|) $) 20)) (-2305 (((-112) |#1| $) NIL)) (-2627 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-3867 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL) (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-3399 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-2272 (((-640 |#1|) $) NIL) (((-640 (-563)) $) NIL)) (-2282 (((-112) |#1| $) NIL) (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3782 ((|#2| $) NIL (|has| |#1| (-846))) (($ $ (-767)) NIL) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 23)) (-1971 (((-3 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL) (((-3 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL)) (-2221 (($ $ |#2|) NIL (|has| $ (-6 -4409))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4409)))) (-2808 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-1976 (((-112) $) NIL)) (-1458 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093)))) (((-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-2295 (((-640 |#2|) $) NIL) (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 17)) (-1665 (((-112) $) 16)) (-3445 (($) 13)) (-2308 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ (-563)) NIL) (($ $ (-1224 (-563))) NIL) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ "first") NIL) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $ "value") NIL)) (-2379 (((-563) $ $) NIL)) (-3863 (($) 12) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-3690 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-2967 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-2889 (((-112) $) NIL)) (-1951 (($ $) NIL)) (-1930 (($ $) NIL (|has| $ (-6 -4409)))) (-1961 (((-767) $) NIL)) (-1970 (($ $) NIL)) (-1708 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093)))) (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-4062 (($ $ $ (-563)) NIL (|has| $ (-6 -4409)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-611 (-536))))) (-1706 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1941 (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL) (($ $ $) NIL)) (-2857 (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL) (($ (-640 $)) NIL) (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 25) (($ $ $) NIL)) (-1692 (((-858) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858)))))) (-4345 (((-640 $) $) NIL)) (-2367 (((-112) $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (-2820 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1491 (((-3 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) "failed") |#1| $) 43)) (-1471 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-1754 (((-112) $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-1718 (((-112) $ $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1766 (((-112) $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-1743 (((-112) $ $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-846)))) (-3610 (((-767) $) 22 (|has| $ (-6 -4408)))))
(((-45 |#1| |#2|) (-36 |#1| |#2|) (-1093) (-1093)) (T -45))
NIL
(-36 |#1| |#2|)
-((-3920 (((-112) $) 12)) (-2240 (($ (-1 |#2| |#2|) $) 21)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ (-407 (-563)) $) 25) (($ $ (-407 (-563))) NIL)))
-(((-46 |#1| |#2| |#3|) (-10 -8 (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -3920 ((-112) |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|))) (-47 |#2| |#3|) (-1045) (-788)) (T -46))
+((-3805 (((-112) $) 12)) (-2238 (($ (-1 |#2| |#2|) $) 21)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ (-407 (-563)) $) 25) (($ $ (-407 (-563))) NIL)))
+(((-46 |#1| |#2| |#3|) (-10 -8 (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -3805 ((-112) |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|))) (-47 |#2| |#3|) (-1045) (-788)) (T -46))
NIL
-(-10 -8 (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -3920 ((-112) |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-4223 (($ $) 55 (|has| |#1| (-555)))) (-3156 (((-112) $) 57 (|has| |#1| (-555)))) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-2751 (($ $) 63)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3920 (((-112) $) 65)) (-2588 (($ |#1| |#2|) 64)) (-2240 (($ (-1 |#1| |#1|) $) 66)) (-2716 (($ $) 68)) (-2726 ((|#1| $) 69)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3008 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-4167 ((|#2| $) 67)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555))) (($ |#1|) 50 (|has| |#1| (-172)))) (-4319 ((|#1| $ |#2|) 62)) (-2779 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 56 (|has| |#1| (-555)))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1837 (($ $ |#1|) 61 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
+(-10 -8 (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -3805 ((-112) |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-3231 (($ $) 55 (|has| |#1| (-555)))) (-3211 (((-112) $) 57 (|has| |#1| (-555)))) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-2750 (($ $) 63)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3805 (((-112) $) 65)) (-2587 (($ |#1| |#2|) 64)) (-2238 (($ (-1 |#1| |#1|) $) 66)) (-2715 (($ $) 68)) (-2725 ((|#1| $) 69)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-3012 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-3871 ((|#2| $) 67)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555))) (($ |#1|) 50 (|has| |#1| (-172)))) (-3244 ((|#1| $ |#2|) 62)) (-2047 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 56 (|has| |#1| (-555)))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1836 (($ $ |#1|) 61 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
(((-47 |#1| |#2|) (-140) (-1045) (-788)) (T -47))
-((-2726 (*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045)))) (-2716 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)))) (-4167 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))) (-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)))) (-3920 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (-5 *2 (-112)))) (-2588 (*1 *1 *2 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)))) (-2751 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)))) (-4319 (*1 *2 *1 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045)))) (-1837 (*1 *1 *1 *2) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)) (-4 *2 (-363)))))
-(-13 (-1045) (-111 |t#1| |t#1|) (-10 -8 (-15 -2726 (|t#1| $)) (-15 -2716 ($ $)) (-15 -4167 (|t#2| $)) (-15 -2240 ($ (-1 |t#1| |t#1|) $)) (-15 -3920 ((-112) $)) (-15 -2588 ($ |t#1| |t#2|)) (-15 -2751 ($ $)) (-15 -4319 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-363)) (-15 -1837 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-172)) (PROGN (-6 (-172)) (-6 (-38 |t#1|))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-555)) (-6 (-555)) |%noBranch|) (IF (|has| |t#1| (-38 (-407 (-563)))) (-6 (-38 (-407 (-563)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-555)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) |has| |#1| (-38 (-407 (-563)))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 $) |has| |#1| (-555)) ((-610 (-858)) . T) ((-172) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-290) |has| |#1| (-555)) ((-555) |has| |#1| (-555)) ((-643 #0#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #0#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) |has| |#1| (-555)) ((-722) . T) ((-1051 #0#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-2802 (((-640 $) (-1165 $) (-1169)) NIL) (((-640 $) (-1165 $)) NIL) (((-640 $) (-948 $)) NIL)) (-3070 (($ (-1165 $) (-1169)) NIL) (($ (-1165 $)) NIL) (($ (-948 $)) NIL)) (-3411 (((-112) $) 11)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2059 (((-640 (-609 $)) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4132 (($ $ (-294 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-640 (-609 $)) (-640 $)) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-2186 (($ $) NIL)) (-1919 (((-112) $ $) NIL)) (-4239 (($) NIL T CONST)) (-4144 (((-640 $) (-1165 $) (-1169)) NIL) (((-640 $) (-1165 $)) NIL) (((-640 $) (-948 $)) NIL)) (-3457 (($ (-1165 $) (-1169)) NIL) (($ (-1165 $)) NIL) (($ (-948 $)) NIL)) (-2131 (((-3 (-609 $) "failed") $) NIL) (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL)) (-2058 (((-609 $) $) NIL) (((-563) $) NIL) (((-407 (-563)) $) NIL)) (-3090 (($ $ $) NIL)) (-2950 (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL) (((-2 (|:| -2835 (-684 (-407 (-563)))) (|:| |vec| (-1257 (-407 (-563))))) (-684 $) (-1257 $)) NIL) (((-684 (-407 (-563))) (-684 $)) NIL)) (-2444 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3968 (($ $) NIL) (($ (-640 $)) NIL)) (-3804 (((-640 (-114)) $) NIL)) (-2361 (((-114) (-114)) NIL)) (-3827 (((-112) $) 14)) (-3131 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-2143 (((-1118 (-563) (-609 $)) $) NIL)) (-1645 (($ $ (-563)) NIL)) (-3793 (((-1165 $) (-1165 $) (-609 $)) NIL) (((-1165 $) (-1165 $) (-640 (-609 $))) NIL) (($ $ (-609 $)) NIL) (($ $ (-640 (-609 $))) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3180 (((-1165 $) (-609 $)) NIL (|has| $ (-1045)))) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-2240 (($ (-1 $ $) (-609 $)) NIL)) (-2875 (((-3 (-609 $) "failed") $) NIL)) (-3513 (($ (-640 $)) NIL) (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-2127 (((-640 (-609 $)) $) NIL)) (-2227 (($ (-114) $) NIL) (($ (-114) (-640 $)) NIL)) (-2799 (((-112) $ (-114)) NIL) (((-112) $ (-1169)) NIL)) (-2688 (($ $) NIL)) (-4236 (((-767) $) NIL)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ (-640 $)) NIL) (($ $ $) NIL)) (-1372 (((-112) $ $) NIL) (((-112) $ (-1169)) NIL)) (-2174 (((-418 $) $) NIL)) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2359 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-1540 (($ $ (-609 $) $) NIL) (($ $ (-640 (-609 $)) (-640 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-1169) (-1 $ (-640 $))) NIL) (($ $ (-1169) (-1 $ $)) NIL) (($ $ (-640 (-114)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-114) (-1 $ (-640 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-2628 (((-767) $) NIL)) (-2309 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-640 $)) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-3071 (($ $) NIL) (($ $ $) NIL)) (-4202 (($ $ (-767)) NIL) (($ $) NIL)) (-2154 (((-1118 (-563) (-609 $)) $) NIL)) (-3390 (($ $) NIL (|has| $ (-1045)))) (-2220 (((-379) $) NIL) (((-225) $) NIL) (((-169 (-379)) $) NIL)) (-1693 (((-858) $) NIL) (($ (-609 $)) NIL) (($ (-407 (-563))) NIL) (($ $) NIL) (($ (-563)) NIL) (($ (-1118 (-563) (-609 $))) NIL)) (-1675 (((-767)) NIL)) (-3079 (($ $) NIL) (($ (-640 $)) NIL)) (-3734 (((-112) (-114)) NIL)) (-2126 (((-112) $ $) NIL)) (-2241 (($) 7 T CONST)) (-2254 (($) 12 T CONST)) (-3209 (($ $ (-767)) NIL) (($ $) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 16)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL)) (-1826 (($ $ $) 15) (($ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-407 (-563))) NIL) (($ $ (-563)) NIL) (($ $ (-767)) NIL) (($ $ (-917)) NIL)) (* (($ (-407 (-563)) $) NIL) (($ $ (-407 (-563))) NIL) (($ $ $) NIL) (($ (-563) $) NIL) (($ (-767) $) NIL) (($ (-917) $) NIL)))
-(((-48) (-13 (-302) (-27) (-1034 (-563)) (-1034 (-407 (-563))) (-636 (-563)) (-1018) (-636 (-407 (-563))) (-147) (-611 (-169 (-379))) (-233) (-10 -8 (-15 -1693 ($ (-1118 (-563) (-609 $)))) (-15 -2143 ((-1118 (-563) (-609 $)) $)) (-15 -2154 ((-1118 (-563) (-609 $)) $)) (-15 -2444 ($ $)) (-15 -3793 ((-1165 $) (-1165 $) (-609 $))) (-15 -3793 ((-1165 $) (-1165 $) (-640 (-609 $)))) (-15 -3793 ($ $ (-609 $))) (-15 -3793 ($ $ (-640 (-609 $))))))) (T -48))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1118 (-563) (-609 (-48)))) (-5 *1 (-48)))) (-2143 (*1 *2 *1) (-12 (-5 *2 (-1118 (-563) (-609 (-48)))) (-5 *1 (-48)))) (-2154 (*1 *2 *1) (-12 (-5 *2 (-1118 (-563) (-609 (-48)))) (-5 *1 (-48)))) (-2444 (*1 *1 *1) (-5 *1 (-48))) (-3793 (*1 *2 *2 *3) (-12 (-5 *2 (-1165 (-48))) (-5 *3 (-609 (-48))) (-5 *1 (-48)))) (-3793 (*1 *2 *2 *3) (-12 (-5 *2 (-1165 (-48))) (-5 *3 (-640 (-609 (-48)))) (-5 *1 (-48)))) (-3793 (*1 *1 *1 *2) (-12 (-5 *2 (-609 (-48))) (-5 *1 (-48)))) (-3793 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-609 (-48)))) (-5 *1 (-48)))))
-(-13 (-302) (-27) (-1034 (-563)) (-1034 (-407 (-563))) (-636 (-563)) (-1018) (-636 (-407 (-563))) (-147) (-611 (-169 (-379))) (-233) (-10 -8 (-15 -1693 ($ (-1118 (-563) (-609 $)))) (-15 -2143 ((-1118 (-563) (-609 $)) $)) (-15 -2154 ((-1118 (-563) (-609 $)) $)) (-15 -2444 ($ $)) (-15 -3793 ((-1165 $) (-1165 $) (-609 $))) (-15 -3793 ((-1165 $) (-1165 $) (-640 (-609 $)))) (-15 -3793 ($ $ (-609 $))) (-15 -3793 ($ $ (-640 (-609 $))))))
-((-1677 (((-112) $ $) NIL)) (-3387 (((-640 (-1169)) $) 17)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 7)) (-3359 (((-1174) $) 18)) (-1718 (((-112) $ $) NIL)))
-(((-49) (-13 (-1093) (-10 -8 (-15 -3387 ((-640 (-1169)) $)) (-15 -3359 ((-1174) $))))) (T -49))
-((-3387 (*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-49)))) (-3359 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-49)))))
-(-13 (-1093) (-10 -8 (-15 -3387 ((-640 (-1169)) $)) (-15 -3359 ((-1174) $))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 61)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-4134 (((-112) $) 20)) (-2131 (((-3 |#1| "failed") $) 23)) (-2058 ((|#1| $) 24)) (-2751 (($ $) 28)) (-3400 (((-3 $ "failed") $) NIL)) (-3827 (((-112) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-2726 ((|#1| $) 21)) (-1947 (($ $) 50)) (-3573 (((-1151) $) NIL)) (-4177 (((-112) $) 30)) (-1694 (((-1113) $) NIL)) (-4333 (($ (-767)) 48)) (-3368 (($ (-640 (-563))) 49)) (-4167 (((-767) $) 31)) (-1693 (((-858) $) 64) (($ (-563)) 45) (($ |#1|) 43)) (-4319 ((|#1| $ $) 19)) (-1675 (((-767)) 47)) (-2241 (($) 32 T CONST)) (-2254 (($) 14 T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) 40)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 41) (($ |#1| $) 35)))
-(((-50 |#1| |#2|) (-13 (-617 |#1|) (-1034 |#1|) (-10 -8 (-15 -2726 (|#1| $)) (-15 -1947 ($ $)) (-15 -2751 ($ $)) (-15 -4319 (|#1| $ $)) (-15 -4333 ($ (-767))) (-15 -3368 ($ (-640 (-563)))) (-15 -4177 ((-112) $)) (-15 -4134 ((-112) $)) (-15 -4167 ((-767) $)) (-15 -2240 ($ (-1 |#1| |#1|) $)))) (-1045) (-640 (-1169))) (T -50))
-((-2726 (*1 *2 *1) (-12 (-4 *2 (-1045)) (-5 *1 (-50 *2 *3)) (-14 *3 (-640 (-1169))))) (-1947 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1045)) (-14 *3 (-640 (-1169))))) (-2751 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1045)) (-14 *3 (-640 (-1169))))) (-4319 (*1 *2 *1 *1) (-12 (-4 *2 (-1045)) (-5 *1 (-50 *2 *3)) (-14 *3 (-640 (-1169))))) (-4333 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045)) (-14 *4 (-640 (-1169))))) (-3368 (*1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045)) (-14 *4 (-640 (-1169))))) (-4177 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045)) (-14 *4 (-640 (-1169))))) (-4134 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045)) (-14 *4 (-640 (-1169))))) (-4167 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045)) (-14 *4 (-640 (-1169))))) (-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-50 *3 *4)) (-14 *4 (-640 (-1169))))))
-(-13 (-617 |#1|) (-1034 |#1|) (-10 -8 (-15 -2726 (|#1| $)) (-15 -1947 ($ $)) (-15 -2751 ($ $)) (-15 -4319 (|#1| $ $)) (-15 -4333 ($ (-767))) (-15 -3368 ($ (-640 (-563)))) (-15 -4177 ((-112) $)) (-15 -4134 ((-112) $)) (-15 -4167 ((-767) $)) (-15 -2240 ($ (-1 |#1| |#1|) $))))
-((-4134 (((-112) (-52)) 13)) (-2131 (((-3 |#1| "failed") (-52)) 21)) (-2058 ((|#1| (-52)) 22)) (-1693 (((-52) |#1|) 18)))
-(((-51 |#1|) (-10 -7 (-15 -1693 ((-52) |#1|)) (-15 -2131 ((-3 |#1| "failed") (-52))) (-15 -4134 ((-112) (-52))) (-15 -2058 (|#1| (-52)))) (-1208)) (T -51))
-((-2058 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1208)))) (-4134 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1208)))) (-2131 (*1 *2 *3) (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1208)))) (-1693 (*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1208)))))
-(-10 -7 (-15 -1693 ((-52) |#1|)) (-15 -2131 ((-3 |#1| "failed") (-52))) (-15 -4134 ((-112) (-52))) (-15 -2058 (|#1| (-52))))
-((-1677 (((-112) $ $) NIL)) (-2007 (((-1151) (-112)) 25)) (-3475 (((-858) $) 24)) (-1572 (((-770) $) 12)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1558 (((-858) $) 16)) (-3631 (((-1097) $) 14)) (-1693 (((-858) $) 32)) (-3225 (($ (-1097) (-770)) 33)) (-1718 (((-112) $ $) 18)))
-(((-52) (-13 (-1093) (-10 -8 (-15 -3225 ($ (-1097) (-770))) (-15 -1558 ((-858) $)) (-15 -3475 ((-858) $)) (-15 -3631 ((-1097) $)) (-15 -1572 ((-770) $)) (-15 -2007 ((-1151) (-112)))))) (T -52))
-((-3225 (*1 *1 *2 *3) (-12 (-5 *2 (-1097)) (-5 *3 (-770)) (-5 *1 (-52)))) (-1558 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-52)))) (-3475 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-52)))) (-3631 (*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-52)))) (-1572 (*1 *2 *1) (-12 (-5 *2 (-770)) (-5 *1 (-52)))) (-2007 (*1 *2 *3) (-12 (-5 *3 (-112)) (-5 *2 (-1151)) (-5 *1 (-52)))))
-(-13 (-1093) (-10 -8 (-15 -3225 ($ (-1097) (-770))) (-15 -1558 ((-858) $)) (-15 -3475 ((-858) $)) (-15 -3631 ((-1097) $)) (-15 -1572 ((-770) $)) (-15 -2007 ((-1151) (-112)))))
-((-3726 ((|#2| |#3| (-1 |#2| |#2|) |#2|) 16)))
-(((-53 |#1| |#2| |#3|) (-10 -7 (-15 -3726 (|#2| |#3| (-1 |#2| |#2|) |#2|))) (-1045) (-643 |#1|) (-848 |#1|)) (T -53))
-((-3726 (*1 *2 *3 *4 *2) (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-643 *5)) (-4 *5 (-1045)) (-5 *1 (-53 *5 *2 *3)) (-4 *3 (-848 *5)))))
-(-10 -7 (-15 -3726 (|#2| |#3| (-1 |#2| |#2|) |#2|)))
-((-2423 ((|#3| |#3| (-640 (-1169))) 35)) (-1553 ((|#3| (-640 (-1069 |#1| |#2| |#3|)) |#3| (-917)) 22) ((|#3| (-640 (-1069 |#1| |#2| |#3|)) |#3|) 20)))
-(((-54 |#1| |#2| |#3|) (-10 -7 (-15 -1553 (|#3| (-640 (-1069 |#1| |#2| |#3|)) |#3|)) (-15 -1553 (|#3| (-640 (-1069 |#1| |#2| |#3|)) |#3| (-917))) (-15 -2423 (|#3| |#3| (-640 (-1169))))) (-1093) (-13 (-1045) (-882 |#1|) (-846) (-611 (-888 |#1|))) (-13 (-430 |#2|) (-882 |#1|) (-611 (-888 |#1|)))) (T -54))
-((-2423 (*1 *2 *2 *3) (-12 (-5 *3 (-640 (-1169))) (-4 *4 (-1093)) (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4)))) (-5 *1 (-54 *4 *5 *2)) (-4 *2 (-13 (-430 *5) (-882 *4) (-611 (-888 *4)))))) (-1553 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-640 (-1069 *5 *6 *2))) (-5 *4 (-917)) (-4 *5 (-1093)) (-4 *6 (-13 (-1045) (-882 *5) (-846) (-611 (-888 *5)))) (-4 *2 (-13 (-430 *6) (-882 *5) (-611 (-888 *5)))) (-5 *1 (-54 *5 *6 *2)))) (-1553 (*1 *2 *3 *2) (-12 (-5 *3 (-640 (-1069 *4 *5 *2))) (-4 *4 (-1093)) (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4)))) (-4 *2 (-13 (-430 *5) (-882 *4) (-611 (-888 *4)))) (-5 *1 (-54 *4 *5 *2)))))
-(-10 -7 (-15 -1553 (|#3| (-640 (-1069 |#1| |#2| |#3|)) |#3|)) (-15 -1553 (|#3| (-640 (-1069 |#1| |#2| |#3|)) |#3| (-917))) (-15 -2423 (|#3| |#3| (-640 (-1169)))))
-((-1677 (((-112) $ $) NIL)) (-2131 (((-3 (-767) "failed") $) 22)) (-2058 (((-767) $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) 9)) (-1693 (((-858) $) 16) (($ (-767)) 20)) (-2427 (($) 7 T CONST)) (-1718 (((-112) $ $) 11)))
-(((-55) (-13 (-1093) (-1034 (-767)) (-10 -8 (-15 -2427 ($) -2669)))) (T -55))
-((-2427 (*1 *1) (-5 *1 (-55))))
-(-13 (-1093) (-1034 (-767)) (-10 -8 (-15 -2427 ($) -2669)))
-((-2759 (((-112) $ (-767)) 23)) (-4327 (($ $ (-563) |#3|) 47)) (-4175 (($ $ (-563) |#4|) 51)) (-2368 ((|#3| $ (-563)) 60)) (-2659 (((-640 |#2|) $) 30)) (-2581 (((-112) $ (-767)) 25)) (-1729 (((-112) |#2| $) 55)) (-4345 (($ (-1 |#2| |#2|) $) 38)) (-2240 (($ (-1 |#2| |#2|) $) 37) (($ (-1 |#2| |#2| |#2|) $ $) 41) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 43)) (-2382 (((-112) $ (-767)) 24)) (-2358 (($ $ |#2|) 35)) (-3138 (((-112) (-1 (-112) |#2|) $) 19)) (-2309 ((|#2| $ (-563) (-563)) NIL) ((|#2| $ (-563) (-563) |#2|) 27)) (-1709 (((-767) (-1 (-112) |#2|) $) 28) (((-767) |#2| $) 57)) (-1872 (($ $) 34)) (-1912 ((|#4| $ (-563)) 63)) (-1693 (((-858) $) 69)) (-4383 (((-112) (-1 (-112) |#2|) $) 18)) (-1718 (((-112) $ $) 54)) (-3608 (((-767) $) 26)))
-(((-56 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1693 ((-858) |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -2240 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -4345 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4175 (|#1| |#1| (-563) |#4|)) (-15 -4327 (|#1| |#1| (-563) |#3|)) (-15 -2659 ((-640 |#2|) |#1|)) (-15 -1912 (|#4| |#1| (-563))) (-15 -2368 (|#3| |#1| (-563))) (-15 -2309 (|#2| |#1| (-563) (-563) |#2|)) (-15 -2309 (|#2| |#1| (-563) (-563))) (-15 -2358 (|#1| |#1| |#2|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -1729 ((-112) |#2| |#1|)) (-15 -1709 ((-767) |#2| |#1|)) (-15 -1709 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -3138 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4383 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3608 ((-767) |#1|)) (-15 -2759 ((-112) |#1| (-767))) (-15 -2581 ((-112) |#1| (-767))) (-15 -2382 ((-112) |#1| (-767))) (-15 -1872 (|#1| |#1|))) (-57 |#2| |#3| |#4|) (-1208) (-373 |#2|) (-373 |#2|)) (T -56))
-NIL
-(-10 -8 (-15 -1693 ((-858) |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -2240 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -4345 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4175 (|#1| |#1| (-563) |#4|)) (-15 -4327 (|#1| |#1| (-563) |#3|)) (-15 -2659 ((-640 |#2|) |#1|)) (-15 -1912 (|#4| |#1| (-563))) (-15 -2368 (|#3| |#1| (-563))) (-15 -2309 (|#2| |#1| (-563) (-563) |#2|)) (-15 -2309 (|#2| |#1| (-563) (-563))) (-15 -2358 (|#1| |#1| |#2|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -1729 ((-112) |#2| |#1|)) (-15 -1709 ((-767) |#2| |#1|)) (-15 -1709 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -3138 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4383 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3608 ((-767) |#1|)) (-15 -2759 ((-112) |#1| (-767))) (-15 -2581 ((-112) |#1| (-767))) (-15 -2382 ((-112) |#1| (-767))) (-15 -1872 (|#1| |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2759 (((-112) $ (-767)) 8)) (-1849 ((|#1| $ (-563) (-563) |#1|) 44)) (-4327 (($ $ (-563) |#2|) 42)) (-4175 (($ $ (-563) |#3|) 41)) (-4239 (($) 7 T CONST)) (-2368 ((|#2| $ (-563)) 46)) (-4355 ((|#1| $ (-563) (-563) |#1|) 43)) (-4293 ((|#1| $ (-563) (-563)) 48)) (-2659 (((-640 |#1|) $) 30)) (-2381 (((-767) $) 51)) (-1566 (($ (-767) (-767) |#1|) 57)) (-2393 (((-767) $) 50)) (-2581 (((-112) $ (-767)) 9)) (-2013 (((-563) $) 55)) (-3650 (((-563) $) 53)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1859 (((-563) $) 54)) (-2207 (((-563) $) 52)) (-4345 (($ (-1 |#1| |#1|) $) 34)) (-2240 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-2358 (($ $ |#1|) 56)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ (-563) (-563)) 49) ((|#1| $ (-563) (-563) |#1|) 47)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-1912 ((|#3| $ (-563)) 45)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-2725 (*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045)))) (-2715 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)))) (-3871 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))) (-2238 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)))) (-3805 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (-5 *2 (-112)))) (-2587 (*1 *1 *2 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)))) (-2750 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)))) (-3244 (*1 *2 *1 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045)))) (-1836 (*1 *1 *1 *2) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)) (-4 *2 (-363)))))
+(-13 (-1045) (-111 |t#1| |t#1|) (-10 -8 (-15 -2725 (|t#1| $)) (-15 -2715 ($ $)) (-15 -3871 (|t#2| $)) (-15 -2238 ($ (-1 |t#1| |t#1|) $)) (-15 -3805 ((-112) $)) (-15 -2587 ($ |t#1| |t#2|)) (-15 -2750 ($ $)) (-15 -3244 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-363)) (-15 -1836 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-172)) (PROGN (-6 (-172)) (-6 (-38 |t#1|))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-555)) (-6 (-555)) |%noBranch|) (IF (|has| |t#1| (-38 (-407 (-563)))) (-6 (-38 (-407 (-563)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-555)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) |has| |#1| (-38 (-407 (-563)))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 $) |has| |#1| (-555)) ((-610 (-858)) . T) ((-172) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-290) |has| |#1| (-555)) ((-555) |has| |#1| (-555)) ((-643 #0#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #0#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) |has| |#1| (-555)) ((-722) . T) ((-1051 #0#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
+((-1677 (((-112) $ $) NIL)) (-2793 (((-640 $) (-1165 $) (-1169)) NIL) (((-640 $) (-1165 $)) NIL) (((-640 $) (-948 $)) NIL)) (-1559 (($ (-1165 $) (-1169)) NIL) (($ (-1165 $)) NIL) (($ (-948 $)) NIL)) (-3439 (((-112) $) 11)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-2058 (((-640 (-609 $)) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-4135 (($ $ (-294 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-640 (-609 $)) (-640 $)) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2185 (($ $) NIL)) (-2003 (((-112) $ $) NIL)) (-2569 (($) NIL T CONST)) (-4249 (((-640 $) (-1165 $) (-1169)) NIL) (((-640 $) (-1165 $)) NIL) (((-640 $) (-948 $)) NIL)) (-3377 (($ (-1165 $) (-1169)) NIL) (($ (-1165 $)) NIL) (($ (-948 $)) NIL)) (-2130 (((-3 (-609 $) "failed") $) NIL) (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL)) (-2057 (((-609 $) $) NIL) (((-563) $) NIL) (((-407 (-563)) $) NIL)) (-3094 (($ $ $) NIL)) (-1476 (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL) (((-2 (|:| -1957 (-684 (-407 (-563)))) (|:| |vec| (-1257 (-407 (-563))))) (-684 $) (-1257 $)) NIL) (((-684 (-407 (-563))) (-684 $)) NIL)) (-2444 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-3228 (($ $) NIL) (($ (-640 $)) NIL)) (-2739 (((-640 (-114)) $) NIL)) (-2559 (((-114) (-114)) NIL)) (-3401 (((-112) $) 14)) (-2959 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-2143 (((-1118 (-563) (-609 $)) $) NIL)) (-2172 (($ $ (-563)) NIL)) (-3975 (((-1165 $) (-1165 $) (-609 $)) NIL) (((-1165 $) (-1165 $) (-640 (-609 $))) NIL) (($ $ (-609 $)) NIL) (($ $ (-640 (-609 $))) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2716 (((-1165 $) (-609 $)) NIL (|has| $ (-1045)))) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-2238 (($ (-1 $ $) (-609 $)) NIL)) (-2751 (((-3 (-609 $) "failed") $) NIL)) (-3517 (($ (-640 $)) NIL) (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-2126 (((-640 (-609 $)) $) NIL)) (-2227 (($ (-114) $) NIL) (($ (-114) (-640 $)) NIL)) (-2602 (((-112) $ (-114)) NIL) (((-112) $ (-1169)) NIL)) (-2687 (($ $) NIL)) (-4238 (((-767) $) NIL)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ (-640 $)) NIL) (($ $ $) NIL)) (-2726 (((-112) $ $) NIL) (((-112) $ (-1169)) NIL)) (-2173 (((-418 $) $) NIL)) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2969 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-1542 (($ $ (-609 $) $) NIL) (($ $ (-640 (-609 $)) (-640 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-1169) (-1 $ (-640 $))) NIL) (($ $ (-1169) (-1 $ $)) NIL) (($ $ (-640 (-114)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-114) (-1 $ (-640 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-1993 (((-767) $) NIL)) (-2308 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-640 $)) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-2761 (($ $) NIL) (($ $ $) NIL)) (-4203 (($ $ (-767)) NIL) (($ $) NIL)) (-2153 (((-1118 (-563) (-609 $)) $) NIL)) (-3402 (($ $) NIL (|has| $ (-1045)))) (-2219 (((-379) $) NIL) (((-225) $) NIL) (((-169 (-379)) $) NIL)) (-1692 (((-858) $) NIL) (($ (-609 $)) NIL) (($ (-407 (-563))) NIL) (($ $) NIL) (($ (-563)) NIL) (($ (-1118 (-563) (-609 $))) NIL)) (-3914 (((-767)) NIL)) (-3083 (($ $) NIL) (($ (-640 $)) NIL)) (-2512 (((-112) (-114)) NIL)) (-3223 (((-112) $ $) NIL)) (-2239 (($) 7 T CONST)) (-2253 (($) 12 T CONST)) (-3213 (($ $ (-767)) NIL) (($ $) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 16)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL)) (-1825 (($ $ $) 15) (($ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-407 (-563))) NIL) (($ $ (-563)) NIL) (($ $ (-767)) NIL) (($ $ (-917)) NIL)) (* (($ (-407 (-563)) $) NIL) (($ $ (-407 (-563))) NIL) (($ $ $) NIL) (($ (-563) $) NIL) (($ (-767) $) NIL) (($ (-917) $) NIL)))
+(((-48) (-13 (-302) (-27) (-1034 (-563)) (-1034 (-407 (-563))) (-636 (-563)) (-1018) (-636 (-407 (-563))) (-147) (-611 (-169 (-379))) (-233) (-10 -8 (-15 -1692 ($ (-1118 (-563) (-609 $)))) (-15 -2143 ((-1118 (-563) (-609 $)) $)) (-15 -2153 ((-1118 (-563) (-609 $)) $)) (-15 -2444 ($ $)) (-15 -3975 ((-1165 $) (-1165 $) (-609 $))) (-15 -3975 ((-1165 $) (-1165 $) (-640 (-609 $)))) (-15 -3975 ($ $ (-609 $))) (-15 -3975 ($ $ (-640 (-609 $))))))) (T -48))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1118 (-563) (-609 (-48)))) (-5 *1 (-48)))) (-2143 (*1 *2 *1) (-12 (-5 *2 (-1118 (-563) (-609 (-48)))) (-5 *1 (-48)))) (-2153 (*1 *2 *1) (-12 (-5 *2 (-1118 (-563) (-609 (-48)))) (-5 *1 (-48)))) (-2444 (*1 *1 *1) (-5 *1 (-48))) (-3975 (*1 *2 *2 *3) (-12 (-5 *2 (-1165 (-48))) (-5 *3 (-609 (-48))) (-5 *1 (-48)))) (-3975 (*1 *2 *2 *3) (-12 (-5 *2 (-1165 (-48))) (-5 *3 (-640 (-609 (-48)))) (-5 *1 (-48)))) (-3975 (*1 *1 *1 *2) (-12 (-5 *2 (-609 (-48))) (-5 *1 (-48)))) (-3975 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-609 (-48)))) (-5 *1 (-48)))))
+(-13 (-302) (-27) (-1034 (-563)) (-1034 (-407 (-563))) (-636 (-563)) (-1018) (-636 (-407 (-563))) (-147) (-611 (-169 (-379))) (-233) (-10 -8 (-15 -1692 ($ (-1118 (-563) (-609 $)))) (-15 -2143 ((-1118 (-563) (-609 $)) $)) (-15 -2153 ((-1118 (-563) (-609 $)) $)) (-15 -2444 ($ $)) (-15 -3975 ((-1165 $) (-1165 $) (-609 $))) (-15 -3975 ((-1165 $) (-1165 $) (-640 (-609 $)))) (-15 -3975 ($ $ (-609 $))) (-15 -3975 ($ $ (-640 (-609 $))))))
+((-1677 (((-112) $ $) NIL)) (-3392 (((-640 (-1169)) $) 17)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 7)) (-3363 (((-1174) $) 18)) (-1718 (((-112) $ $) NIL)))
+(((-49) (-13 (-1093) (-10 -8 (-15 -3392 ((-640 (-1169)) $)) (-15 -3363 ((-1174) $))))) (T -49))
+((-3392 (*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-49)))) (-3363 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-49)))))
+(-13 (-1093) (-10 -8 (-15 -3392 ((-640 (-1169)) $)) (-15 -3363 ((-1174) $))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 62)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2882 (((-112) $) 20)) (-2130 (((-3 |#1| "failed") $) 23)) (-2057 ((|#1| $) 24)) (-2750 (($ $) 28)) (-3951 (((-3 $ "failed") $) NIL)) (-3401 (((-112) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-2725 ((|#1| $) 21)) (-3762 (($ $) 50)) (-3854 (((-1151) $) NIL)) (-1899 (((-112) $) 30)) (-1693 (((-1113) $) NIL)) (-4334 (($ (-767)) 48)) (-3372 (($ (-640 (-563))) 49)) (-3871 (((-767) $) 31)) (-1692 (((-858) $) 65) (($ (-563)) 45) (($ |#1|) 43)) (-3244 ((|#1| $ $) 19)) (-3914 (((-767)) 47)) (-2239 (($) 32 T CONST)) (-2253 (($) 14 T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) 40)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 41) (($ |#1| $) 35)))
+(((-50 |#1| |#2|) (-13 (-617 |#1|) (-1034 |#1|) (-10 -8 (-15 -2725 (|#1| $)) (-15 -3762 ($ $)) (-15 -2750 ($ $)) (-15 -3244 (|#1| $ $)) (-15 -4334 ($ (-767))) (-15 -3372 ($ (-640 (-563)))) (-15 -1899 ((-112) $)) (-15 -2882 ((-112) $)) (-15 -3871 ((-767) $)) (-15 -2238 ($ (-1 |#1| |#1|) $)))) (-1045) (-640 (-1169))) (T -50))
+((-2725 (*1 *2 *1) (-12 (-4 *2 (-1045)) (-5 *1 (-50 *2 *3)) (-14 *3 (-640 (-1169))))) (-3762 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1045)) (-14 *3 (-640 (-1169))))) (-2750 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1045)) (-14 *3 (-640 (-1169))))) (-3244 (*1 *2 *1 *1) (-12 (-4 *2 (-1045)) (-5 *1 (-50 *2 *3)) (-14 *3 (-640 (-1169))))) (-4334 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045)) (-14 *4 (-640 (-1169))))) (-3372 (*1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045)) (-14 *4 (-640 (-1169))))) (-1899 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045)) (-14 *4 (-640 (-1169))))) (-2882 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045)) (-14 *4 (-640 (-1169))))) (-3871 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045)) (-14 *4 (-640 (-1169))))) (-2238 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-50 *3 *4)) (-14 *4 (-640 (-1169))))))
+(-13 (-617 |#1|) (-1034 |#1|) (-10 -8 (-15 -2725 (|#1| $)) (-15 -3762 ($ $)) (-15 -2750 ($ $)) (-15 -3244 (|#1| $ $)) (-15 -4334 ($ (-767))) (-15 -3372 ($ (-640 (-563)))) (-15 -1899 ((-112) $)) (-15 -2882 ((-112) $)) (-15 -3871 ((-767) $)) (-15 -2238 ($ (-1 |#1| |#1|) $))))
+((-2882 (((-112) (-52)) 13)) (-2130 (((-3 |#1| "failed") (-52)) 21)) (-2057 ((|#1| (-52)) 22)) (-1692 (((-52) |#1|) 18)))
+(((-51 |#1|) (-10 -7 (-15 -1692 ((-52) |#1|)) (-15 -2130 ((-3 |#1| "failed") (-52))) (-15 -2882 ((-112) (-52))) (-15 -2057 (|#1| (-52)))) (-1208)) (T -51))
+((-2057 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1208)))) (-2882 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1208)))) (-2130 (*1 *2 *3) (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1208)))) (-1692 (*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1208)))))
+(-10 -7 (-15 -1692 ((-52) |#1|)) (-15 -2130 ((-3 |#1| "failed") (-52))) (-15 -2882 ((-112) (-52))) (-15 -2057 (|#1| (-52))))
+((-1677 (((-112) $ $) NIL)) (-1497 (((-1151) (-112)) 25)) (-1508 (((-858) $) 24)) (-1571 (((-770) $) 12)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1522 (((-858) $) 16)) (-3632 (((-1097) $) 14)) (-1692 (((-858) $) 32)) (-3229 (($ (-1097) (-770)) 33)) (-1718 (((-112) $ $) 18)))
+(((-52) (-13 (-1093) (-10 -8 (-15 -3229 ($ (-1097) (-770))) (-15 -1522 ((-858) $)) (-15 -1508 ((-858) $)) (-15 -3632 ((-1097) $)) (-15 -1571 ((-770) $)) (-15 -1497 ((-1151) (-112)))))) (T -52))
+((-3229 (*1 *1 *2 *3) (-12 (-5 *2 (-1097)) (-5 *3 (-770)) (-5 *1 (-52)))) (-1522 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-52)))) (-1508 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-52)))) (-3632 (*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-52)))) (-1571 (*1 *2 *1) (-12 (-5 *2 (-770)) (-5 *1 (-52)))) (-1497 (*1 *2 *3) (-12 (-5 *3 (-112)) (-5 *2 (-1151)) (-5 *1 (-52)))))
+(-13 (-1093) (-10 -8 (-15 -3229 ($ (-1097) (-770))) (-15 -1522 ((-858) $)) (-15 -1508 ((-858) $)) (-15 -3632 ((-1097) $)) (-15 -1571 ((-770) $)) (-15 -1497 ((-1151) (-112)))))
+((-3727 ((|#2| |#3| (-1 |#2| |#2|) |#2|) 16)))
+(((-53 |#1| |#2| |#3|) (-10 -7 (-15 -3727 (|#2| |#3| (-1 |#2| |#2|) |#2|))) (-1045) (-643 |#1|) (-848 |#1|)) (T -53))
+((-3727 (*1 *2 *3 *4 *2) (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-643 *5)) (-4 *5 (-1045)) (-5 *1 (-53 *5 *2 *3)) (-4 *3 (-848 *5)))))
+(-10 -7 (-15 -3727 (|#2| |#3| (-1 |#2| |#2|) |#2|)))
+((-1546 ((|#3| |#3| (-640 (-1169))) 35)) (-1538 ((|#3| (-640 (-1069 |#1| |#2| |#3|)) |#3| (-917)) 22) ((|#3| (-640 (-1069 |#1| |#2| |#3|)) |#3|) 20)))
+(((-54 |#1| |#2| |#3|) (-10 -7 (-15 -1538 (|#3| (-640 (-1069 |#1| |#2| |#3|)) |#3|)) (-15 -1538 (|#3| (-640 (-1069 |#1| |#2| |#3|)) |#3| (-917))) (-15 -1546 (|#3| |#3| (-640 (-1169))))) (-1093) (-13 (-1045) (-882 |#1|) (-846) (-611 (-888 |#1|))) (-13 (-430 |#2|) (-882 |#1|) (-611 (-888 |#1|)))) (T -54))
+((-1546 (*1 *2 *2 *3) (-12 (-5 *3 (-640 (-1169))) (-4 *4 (-1093)) (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4)))) (-5 *1 (-54 *4 *5 *2)) (-4 *2 (-13 (-430 *5) (-882 *4) (-611 (-888 *4)))))) (-1538 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-640 (-1069 *5 *6 *2))) (-5 *4 (-917)) (-4 *5 (-1093)) (-4 *6 (-13 (-1045) (-882 *5) (-846) (-611 (-888 *5)))) (-4 *2 (-13 (-430 *6) (-882 *5) (-611 (-888 *5)))) (-5 *1 (-54 *5 *6 *2)))) (-1538 (*1 *2 *3 *2) (-12 (-5 *3 (-640 (-1069 *4 *5 *2))) (-4 *4 (-1093)) (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4)))) (-4 *2 (-13 (-430 *5) (-882 *4) (-611 (-888 *4)))) (-5 *1 (-54 *4 *5 *2)))))
+(-10 -7 (-15 -1538 (|#3| (-640 (-1069 |#1| |#2| |#3|)) |#3|)) (-15 -1538 (|#3| (-640 (-1069 |#1| |#2| |#3|)) |#3| (-917))) (-15 -1546 (|#3| |#3| (-640 (-1169)))))
+((-1677 (((-112) $ $) NIL)) (-2130 (((-3 (-767) "failed") $) 22)) (-2057 (((-767) $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) 9)) (-1692 (((-858) $) 16) (($ (-767)) 20)) (-1560 (($) 7 T CONST)) (-1718 (((-112) $ $) 11)))
+(((-55) (-13 (-1093) (-1034 (-767)) (-10 -8 (-15 -1560 ($) -2668)))) (T -55))
+((-1560 (*1 *1) (-5 *1 (-55))))
+(-13 (-1093) (-1034 (-767)) (-10 -8 (-15 -1560 ($) -2668)))
+((-3001 (((-112) $ (-767)) 23)) (-1589 (($ $ (-563) |#3|) 47)) (-1572 (($ $ (-563) |#4|) 51)) (-1960 ((|#3| $ (-563)) 60)) (-2658 (((-640 |#2|) $) 30)) (-2514 (((-112) $ (-767)) 25)) (-2667 (((-112) |#2| $) 55)) (-4347 (($ (-1 |#2| |#2|) $) 38)) (-2238 (($ (-1 |#2| |#2|) $) 37) (($ (-1 |#2| |#2| |#2|) $ $) 41) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 43)) (-2481 (((-112) $ (-767)) 24)) (-2221 (($ $ |#2|) 35)) (-1458 (((-112) (-1 (-112) |#2|) $) 19)) (-2308 ((|#2| $ (-563) (-563)) NIL) ((|#2| $ (-563) (-563) |#2|) 27)) (-1708 (((-767) (-1 (-112) |#2|) $) 28) (((-767) |#2| $) 57)) (-1870 (($ $) 34)) (-1950 ((|#4| $ (-563)) 63)) (-1692 (((-858) $) 69)) (-1471 (((-112) (-1 (-112) |#2|) $) 18)) (-1718 (((-112) $ $) 54)) (-3610 (((-767) $) 26)))
+(((-56 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1692 ((-858) |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -2238 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -4347 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1572 (|#1| |#1| (-563) |#4|)) (-15 -1589 (|#1| |#1| (-563) |#3|)) (-15 -2658 ((-640 |#2|) |#1|)) (-15 -1950 (|#4| |#1| (-563))) (-15 -1960 (|#3| |#1| (-563))) (-15 -2308 (|#2| |#1| (-563) (-563) |#2|)) (-15 -2308 (|#2| |#1| (-563) (-563))) (-15 -2221 (|#1| |#1| |#2|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -2667 ((-112) |#2| |#1|)) (-15 -1708 ((-767) |#2| |#1|)) (-15 -1708 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -1458 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1471 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3610 ((-767) |#1|)) (-15 -3001 ((-112) |#1| (-767))) (-15 -2514 ((-112) |#1| (-767))) (-15 -2481 ((-112) |#1| (-767))) (-15 -1870 (|#1| |#1|))) (-57 |#2| |#3| |#4|) (-1208) (-373 |#2|) (-373 |#2|)) (T -56))
+NIL
+(-10 -8 (-15 -1692 ((-858) |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -2238 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -4347 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1572 (|#1| |#1| (-563) |#4|)) (-15 -1589 (|#1| |#1| (-563) |#3|)) (-15 -2658 ((-640 |#2|) |#1|)) (-15 -1950 (|#4| |#1| (-563))) (-15 -1960 (|#3| |#1| (-563))) (-15 -2308 (|#2| |#1| (-563) (-563) |#2|)) (-15 -2308 (|#2| |#1| (-563) (-563))) (-15 -2221 (|#1| |#1| |#2|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -2667 ((-112) |#2| |#1|)) (-15 -1708 ((-767) |#2| |#1|)) (-15 -1708 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -1458 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1471 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3610 ((-767) |#1|)) (-15 -3001 ((-112) |#1| (-767))) (-15 -2514 ((-112) |#1| (-767))) (-15 -2481 ((-112) |#1| (-767))) (-15 -1870 (|#1| |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-3001 (((-112) $ (-767)) 8)) (-1849 ((|#1| $ (-563) (-563) |#1|) 44)) (-1589 (($ $ (-563) |#2|) 42)) (-1572 (($ $ (-563) |#3|) 41)) (-2569 (($) 7 T CONST)) (-1960 ((|#2| $ (-563)) 46)) (-4356 ((|#1| $ (-563) (-563) |#1|) 43)) (-4293 ((|#1| $ (-563) (-563)) 48)) (-2658 (((-640 |#1|) $) 30)) (-2380 (((-767) $) 51)) (-1565 (($ (-767) (-767) |#1|) 57)) (-2391 (((-767) $) 50)) (-2514 (((-112) $ (-767)) 9)) (-1995 (((-563) $) 55)) (-1979 (((-563) $) 53)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1986 (((-563) $) 54)) (-1969 (((-563) $) 52)) (-4347 (($ (-1 |#1| |#1|) $) 34)) (-2238 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-2221 (($ $ |#1|) 56)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ (-563) (-563)) 49) ((|#1| $ (-563) (-563) |#1|) 47)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-1950 ((|#3| $ (-563)) 45)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-57 |#1| |#2| |#3|) (-140) (-1208) (-373 |t#1|) (-373 |t#1|)) (T -57))
-((-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-1566 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-767)) (-4 *3 (-1208)) (-4 *1 (-57 *3 *4 *5)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-2358 (*1 *1 *1 *2) (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1208)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (-2013 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-563)))) (-1859 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-563)))) (-3650 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-563)))) (-2207 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-563)))) (-2381 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-767)))) (-2393 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-767)))) (-2309 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-1208)))) (-4293 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-1208)))) (-2309 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-563)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1208)) (-4 *4 (-373 *2)) (-4 *5 (-373 *2)))) (-2368 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-57 *4 *2 *5)) (-4 *4 (-1208)) (-4 *5 (-373 *4)) (-4 *2 (-373 *4)))) (-1912 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-57 *4 *5 *2)) (-4 *4 (-1208)) (-4 *5 (-373 *4)) (-4 *2 (-373 *4)))) (-2659 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-640 *3)))) (-1849 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-563)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1208)) (-4 *4 (-373 *2)) (-4 *5 (-373 *2)))) (-4355 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-563)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1208)) (-4 *4 (-373 *2)) (-4 *5 (-373 *2)))) (-4327 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-563)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1208)) (-4 *3 (-373 *4)) (-4 *5 (-373 *4)))) (-4175 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-563)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1208)) (-4 *5 (-373 *4)) (-4 *3 (-373 *4)))) (-4345 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-2240 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-2240 (*1 *1 *2 *1 *1 *3) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))))
-(-13 (-489 |t#1|) (-10 -8 (-6 -4408) (-6 -4407) (-15 -1566 ($ (-767) (-767) |t#1|)) (-15 -2358 ($ $ |t#1|)) (-15 -2013 ((-563) $)) (-15 -1859 ((-563) $)) (-15 -3650 ((-563) $)) (-15 -2207 ((-563) $)) (-15 -2381 ((-767) $)) (-15 -2393 ((-767) $)) (-15 -2309 (|t#1| $ (-563) (-563))) (-15 -4293 (|t#1| $ (-563) (-563))) (-15 -2309 (|t#1| $ (-563) (-563) |t#1|)) (-15 -2368 (|t#2| $ (-563))) (-15 -1912 (|t#3| $ (-563))) (-15 -2659 ((-640 |t#1|) $)) (-15 -1849 (|t#1| $ (-563) (-563) |t#1|)) (-15 -4355 (|t#1| $ (-563) (-563) |t#1|)) (-15 -4327 ($ $ (-563) |t#2|)) (-15 -4175 ($ $ (-563) |t#3|)) (-15 -2240 ($ (-1 |t#1| |t#1|) $)) (-15 -4345 ($ (-1 |t#1| |t#1|) $)) (-15 -2240 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -2240 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
-(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-1567 (((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 16)) (-2444 ((|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 18)) (-2240 (((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)) 13)))
-(((-58 |#1| |#2|) (-10 -7 (-15 -1567 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -2240 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)))) (-1208) (-1208)) (T -58))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-59 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-59 *6)) (-5 *1 (-58 *5 *6)))) (-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-59 *5)) (-4 *5 (-1208)) (-4 *2 (-1208)) (-5 *1 (-58 *5 *2)))) (-1567 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1208)) (-4 *5 (-1208)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5)))))
-(-10 -7 (-15 -1567 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -2240 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-3523 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-2770 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4408))) (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-846))))) (-1642 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) |#1|) 11 (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) NIL)) (-4368 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-2661 (($ (-640 |#1|)) 13) (($ (-767) |#1|) 14)) (-1566 (($ (-767) |#1|) 9)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) NIL (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-3164 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-846)))) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3396 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3781 ((|#1| $) NIL (|has| (-563) (-846)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2358 (($ $ |#1|) NIL (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) 7)) (-2309 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-2963 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3076 (($ $ $ (-563)) NIL (|has| $ (-6 -4408)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) NIL)) (-2853 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-59 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -2661 ($ (-640 |#1|))) (-15 -2661 ($ (-767) |#1|)))) (-1208)) (T -59))
-((-2661 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-59 *3)))) (-2661 (*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *1 (-59 *3)) (-4 *3 (-1208)))))
-(-13 (-19 |#1|) (-10 -8 (-15 -2661 ($ (-640 |#1|))) (-15 -2661 ($ (-767) |#1|))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) (-563) |#1|) NIL)) (-4327 (($ $ (-563) (-59 |#1|)) NIL)) (-4175 (($ $ (-563) (-59 |#1|)) NIL)) (-4239 (($) NIL T CONST)) (-2368 (((-59 |#1|) $ (-563)) NIL)) (-4355 ((|#1| $ (-563) (-563) |#1|) NIL)) (-4293 ((|#1| $ (-563) (-563)) NIL)) (-2659 (((-640 |#1|) $) NIL)) (-2381 (((-767) $) NIL)) (-1566 (($ (-767) (-767) |#1|) NIL)) (-2393 (((-767) $) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2013 (((-563) $) NIL)) (-3650 (((-563) $) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1859 (((-563) $) NIL)) (-2207 (((-563) $) NIL)) (-4345 (($ (-1 |#1| |#1|) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2358 (($ $ |#1|) NIL)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#1| $ (-563) (-563)) NIL) ((|#1| $ (-563) (-563) |#1|) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) NIL)) (-1912 (((-59 |#1|) $ (-563)) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-60 |#1|) (-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4408))) (-1208)) (T -60))
-NIL
-(-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4408)))
-((-2131 (((-3 $ "failed") (-1257 (-316 (-379)))) 74) (((-3 $ "failed") (-1257 (-316 (-563)))) 63) (((-3 $ "failed") (-1257 (-948 (-379)))) 94) (((-3 $ "failed") (-1257 (-948 (-563)))) 84) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 52) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 39)) (-2058 (($ (-1257 (-316 (-379)))) 70) (($ (-1257 (-316 (-563)))) 59) (($ (-1257 (-948 (-379)))) 90) (($ (-1257 (-948 (-563)))) 80) (($ (-1257 (-407 (-948 (-379))))) 48) (($ (-1257 (-407 (-948 (-563))))) 32)) (-2615 (((-1262) $) 120)) (-1693 (((-858) $) 113) (($ (-640 (-330))) 103) (($ (-330)) 97) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 101) (($ (-1257 (-339 (-1707 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-1707) (-694)))) 31)))
-(((-61 |#1|) (-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-1707) (-694))))))) (-1169)) (T -61))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1707 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-1707) (-694)))) (-5 *1 (-61 *3)) (-14 *3 (-1169)))))
-(-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-1707) (-694)))))))
-((-2615 (((-1262) $) 53) (((-1262)) 54)) (-1693 (((-858) $) 50)))
+((-2238 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-1565 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-767)) (-4 *3 (-1208)) (-4 *1 (-57 *3 *4 *5)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-2221 (*1 *1 *1 *2) (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1208)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (-1995 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-563)))) (-1986 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-563)))) (-1979 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-563)))) (-1969 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-563)))) (-2380 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-767)))) (-2391 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-767)))) (-2308 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-1208)))) (-4293 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-1208)))) (-2308 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-563)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1208)) (-4 *4 (-373 *2)) (-4 *5 (-373 *2)))) (-1960 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-57 *4 *2 *5)) (-4 *4 (-1208)) (-4 *5 (-373 *4)) (-4 *2 (-373 *4)))) (-1950 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-57 *4 *5 *2)) (-4 *4 (-1208)) (-4 *5 (-373 *4)) (-4 *2 (-373 *4)))) (-2658 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-640 *3)))) (-1849 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-563)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1208)) (-4 *4 (-373 *2)) (-4 *5 (-373 *2)))) (-4356 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-563)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1208)) (-4 *4 (-373 *2)) (-4 *5 (-373 *2)))) (-1589 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-563)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1208)) (-4 *3 (-373 *4)) (-4 *5 (-373 *4)))) (-1572 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-563)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1208)) (-4 *5 (-373 *4)) (-4 *3 (-373 *4)))) (-4347 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-2238 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-2238 (*1 *1 *2 *1 *1 *3) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))))
+(-13 (-489 |t#1|) (-10 -8 (-6 -4409) (-6 -4408) (-15 -1565 ($ (-767) (-767) |t#1|)) (-15 -2221 ($ $ |t#1|)) (-15 -1995 ((-563) $)) (-15 -1986 ((-563) $)) (-15 -1979 ((-563) $)) (-15 -1969 ((-563) $)) (-15 -2380 ((-767) $)) (-15 -2391 ((-767) $)) (-15 -2308 (|t#1| $ (-563) (-563))) (-15 -4293 (|t#1| $ (-563) (-563))) (-15 -2308 (|t#1| $ (-563) (-563) |t#1|)) (-15 -1960 (|t#2| $ (-563))) (-15 -1950 (|t#3| $ (-563))) (-15 -2658 ((-640 |t#1|) $)) (-15 -1849 (|t#1| $ (-563) (-563) |t#1|)) (-15 -4356 (|t#1| $ (-563) (-563) |t#1|)) (-15 -1589 ($ $ (-563) |t#2|)) (-15 -1572 ($ $ (-563) |t#3|)) (-15 -2238 ($ (-1 |t#1| |t#1|) $)) (-15 -4347 ($ (-1 |t#1| |t#1|) $)) (-15 -2238 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -2238 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
+(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-4132 (((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 16)) (-2444 ((|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 18)) (-2238 (((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)) 13)))
+(((-58 |#1| |#2|) (-10 -7 (-15 -4132 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -2238 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)))) (-1208) (-1208)) (T -58))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-59 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-59 *6)) (-5 *1 (-58 *5 *6)))) (-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-59 *5)) (-4 *5 (-1208)) (-4 *2 (-1208)) (-5 *1 (-58 *5 *2)))) (-4132 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1208)) (-4 *5 (-1208)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5)))))
+(-10 -7 (-15 -4132 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -2238 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4073 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-4052 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4409))) (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| |#1| (-846))))) (-1640 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) |#1|) 11 (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) NIL)) (-4369 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-1600 (($ (-640 |#1|)) 13) (($ (-767) |#1|) 14)) (-1565 (($ (-767) |#1|) 9)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) NIL (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-4300 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-846)))) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3399 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3782 ((|#1| $) NIL (|has| (-563) (-846)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2221 (($ $ |#1|) NIL (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) 7)) (-2308 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-2967 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4062 (($ $ $ (-563)) NIL (|has| $ (-6 -4409)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) NIL)) (-2857 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-59 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -1600 ($ (-640 |#1|))) (-15 -1600 ($ (-767) |#1|)))) (-1208)) (T -59))
+((-1600 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-59 *3)))) (-1600 (*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *1 (-59 *3)) (-4 *3 (-1208)))))
+(-13 (-19 |#1|) (-10 -8 (-15 -1600 ($ (-640 |#1|))) (-15 -1600 ($ (-767) |#1|))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) (-563) |#1|) NIL)) (-1589 (($ $ (-563) (-59 |#1|)) NIL)) (-1572 (($ $ (-563) (-59 |#1|)) NIL)) (-2569 (($) NIL T CONST)) (-1960 (((-59 |#1|) $ (-563)) NIL)) (-4356 ((|#1| $ (-563) (-563) |#1|) NIL)) (-4293 ((|#1| $ (-563) (-563)) NIL)) (-2658 (((-640 |#1|) $) NIL)) (-2380 (((-767) $) NIL)) (-1565 (($ (-767) (-767) |#1|) NIL)) (-2391 (((-767) $) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-1995 (((-563) $) NIL)) (-1979 (((-563) $) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1986 (((-563) $) NIL)) (-1969 (((-563) $) NIL)) (-4347 (($ (-1 |#1| |#1|) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2221 (($ $ |#1|) NIL)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#1| $ (-563) (-563)) NIL) ((|#1| $ (-563) (-563) |#1|) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) NIL)) (-1950 (((-59 |#1|) $ (-563)) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-60 |#1|) (-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4409))) (-1208)) (T -60))
+NIL
+(-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4409)))
+((-2130 (((-3 $ "failed") (-1257 (-316 (-379)))) 74) (((-3 $ "failed") (-1257 (-316 (-563)))) 63) (((-3 $ "failed") (-1257 (-948 (-379)))) 94) (((-3 $ "failed") (-1257 (-948 (-563)))) 84) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 52) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 39)) (-2057 (($ (-1257 (-316 (-379)))) 70) (($ (-1257 (-316 (-563)))) 59) (($ (-1257 (-948 (-379)))) 90) (($ (-1257 (-948 (-563)))) 80) (($ (-1257 (-407 (-948 (-379))))) 48) (($ (-1257 (-407 (-948 (-563))))) 32)) (-2615 (((-1262) $) 120)) (-1692 (((-858) $) 113) (($ (-640 (-330))) 103) (($ (-330)) 97) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 101) (($ (-1257 (-339 (-1706 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-1706) (-694)))) 31)))
+(((-61 |#1|) (-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-1706) (-694))))))) (-1169)) (T -61))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1706 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-1706) (-694)))) (-5 *1 (-61 *3)) (-14 *3 (-1169)))))
+(-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-1706) (-694)))))))
+((-2615 (((-1262) $) 53) (((-1262)) 54)) (-1692 (((-858) $) 50)))
(((-62 |#1|) (-13 (-395) (-10 -7 (-15 -2615 ((-1262))))) (-1169)) (T -62))
((-2615 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-62 *3)) (-14 *3 (-1169)))))
(-13 (-395) (-10 -7 (-15 -2615 ((-1262)))))
-((-2131 (((-3 $ "failed") (-1257 (-316 (-379)))) 145) (((-3 $ "failed") (-1257 (-316 (-563)))) 135) (((-3 $ "failed") (-1257 (-948 (-379)))) 165) (((-3 $ "failed") (-1257 (-948 (-563)))) 155) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 124) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 112)) (-2058 (($ (-1257 (-316 (-379)))) 141) (($ (-1257 (-316 (-563)))) 131) (($ (-1257 (-948 (-379)))) 161) (($ (-1257 (-948 (-563)))) 151) (($ (-1257 (-407 (-948 (-379))))) 120) (($ (-1257 (-407 (-948 (-563))))) 105)) (-2615 (((-1262) $) 98)) (-1693 (((-858) $) 92) (($ (-640 (-330))) 29) (($ (-330)) 34) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 32) (($ (-1257 (-339 (-1707) (-1707 (QUOTE XC)) (-694)))) 90)))
-(((-63 |#1|) (-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707) (-1707 (QUOTE XC)) (-694))))))) (-1169)) (T -63))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1707) (-1707 (QUOTE XC)) (-694)))) (-5 *1 (-63 *3)) (-14 *3 (-1169)))))
-(-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707) (-1707 (QUOTE XC)) (-694)))))))
-((-2131 (((-3 $ "failed") (-316 (-379))) 41) (((-3 $ "failed") (-316 (-563))) 46) (((-3 $ "failed") (-948 (-379))) 50) (((-3 $ "failed") (-948 (-563))) 54) (((-3 $ "failed") (-407 (-948 (-379)))) 36) (((-3 $ "failed") (-407 (-948 (-563)))) 29)) (-2058 (($ (-316 (-379))) 39) (($ (-316 (-563))) 44) (($ (-948 (-379))) 48) (($ (-948 (-563))) 52) (($ (-407 (-948 (-379)))) 34) (($ (-407 (-948 (-563)))) 26)) (-2615 (((-1262) $) 76)) (-1693 (((-858) $) 69) (($ (-640 (-330))) 61) (($ (-330)) 66) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 64) (($ (-339 (-1707 (QUOTE X)) (-1707) (-694))) 25)))
-(((-64 |#1|) (-13 (-396) (-10 -8 (-15 -1693 ($ (-339 (-1707 (QUOTE X)) (-1707) (-694)))))) (-1169)) (T -64))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-339 (-1707 (QUOTE X)) (-1707) (-694))) (-5 *1 (-64 *3)) (-14 *3 (-1169)))))
-(-13 (-396) (-10 -8 (-15 -1693 ($ (-339 (-1707 (QUOTE X)) (-1707) (-694))))))
-((-2131 (((-3 $ "failed") (-684 (-316 (-379)))) 109) (((-3 $ "failed") (-684 (-316 (-563)))) 97) (((-3 $ "failed") (-684 (-948 (-379)))) 131) (((-3 $ "failed") (-684 (-948 (-563)))) 120) (((-3 $ "failed") (-684 (-407 (-948 (-379))))) 85) (((-3 $ "failed") (-684 (-407 (-948 (-563))))) 71)) (-2058 (($ (-684 (-316 (-379)))) 105) (($ (-684 (-316 (-563)))) 93) (($ (-684 (-948 (-379)))) 127) (($ (-684 (-948 (-563)))) 116) (($ (-684 (-407 (-948 (-379))))) 81) (($ (-684 (-407 (-948 (-563))))) 64)) (-2615 (((-1262) $) 139)) (-1693 (((-858) $) 133) (($ (-640 (-330))) 28) (($ (-330)) 33) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 31) (($ (-684 (-339 (-1707) (-1707 (QUOTE X) (QUOTE HESS)) (-694)))) 54)))
-(((-65 |#1|) (-13 (-384) (-613 (-684 (-339 (-1707) (-1707 (QUOTE X) (QUOTE HESS)) (-694))))) (-1169)) (T -65))
-NIL
-(-13 (-384) (-613 (-684 (-339 (-1707) (-1707 (QUOTE X) (QUOTE HESS)) (-694)))))
-((-2131 (((-3 $ "failed") (-316 (-379))) 59) (((-3 $ "failed") (-316 (-563))) 64) (((-3 $ "failed") (-948 (-379))) 68) (((-3 $ "failed") (-948 (-563))) 72) (((-3 $ "failed") (-407 (-948 (-379)))) 54) (((-3 $ "failed") (-407 (-948 (-563)))) 47)) (-2058 (($ (-316 (-379))) 57) (($ (-316 (-563))) 62) (($ (-948 (-379))) 66) (($ (-948 (-563))) 70) (($ (-407 (-948 (-379)))) 52) (($ (-407 (-948 (-563)))) 44)) (-2615 (((-1262) $) 81)) (-1693 (((-858) $) 75) (($ (-640 (-330))) 28) (($ (-330)) 33) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 31) (($ (-339 (-1707) (-1707 (QUOTE XC)) (-694))) 39)))
-(((-66 |#1|) (-13 (-396) (-10 -8 (-15 -1693 ($ (-339 (-1707) (-1707 (QUOTE XC)) (-694)))))) (-1169)) (T -66))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-339 (-1707) (-1707 (QUOTE XC)) (-694))) (-5 *1 (-66 *3)) (-14 *3 (-1169)))))
-(-13 (-396) (-10 -8 (-15 -1693 ($ (-339 (-1707) (-1707 (QUOTE XC)) (-694))))))
-((-2615 (((-1262) $) 63)) (-1693 (((-858) $) 57) (($ (-684 (-694))) 49) (($ (-640 (-330))) 48) (($ (-330)) 55) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 53)))
+((-2130 (((-3 $ "failed") (-1257 (-316 (-379)))) 145) (((-3 $ "failed") (-1257 (-316 (-563)))) 135) (((-3 $ "failed") (-1257 (-948 (-379)))) 165) (((-3 $ "failed") (-1257 (-948 (-563)))) 155) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 124) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 112)) (-2057 (($ (-1257 (-316 (-379)))) 141) (($ (-1257 (-316 (-563)))) 131) (($ (-1257 (-948 (-379)))) 161) (($ (-1257 (-948 (-563)))) 151) (($ (-1257 (-407 (-948 (-379))))) 120) (($ (-1257 (-407 (-948 (-563))))) 105)) (-2615 (((-1262) $) 98)) (-1692 (((-858) $) 92) (($ (-640 (-330))) 29) (($ (-330)) 34) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 32) (($ (-1257 (-339 (-1706) (-1706 (QUOTE XC)) (-694)))) 90)))
+(((-63 |#1|) (-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706) (-1706 (QUOTE XC)) (-694))))))) (-1169)) (T -63))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1706) (-1706 (QUOTE XC)) (-694)))) (-5 *1 (-63 *3)) (-14 *3 (-1169)))))
+(-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706) (-1706 (QUOTE XC)) (-694)))))))
+((-2130 (((-3 $ "failed") (-316 (-379))) 41) (((-3 $ "failed") (-316 (-563))) 46) (((-3 $ "failed") (-948 (-379))) 50) (((-3 $ "failed") (-948 (-563))) 54) (((-3 $ "failed") (-407 (-948 (-379)))) 36) (((-3 $ "failed") (-407 (-948 (-563)))) 29)) (-2057 (($ (-316 (-379))) 39) (($ (-316 (-563))) 44) (($ (-948 (-379))) 48) (($ (-948 (-563))) 52) (($ (-407 (-948 (-379)))) 34) (($ (-407 (-948 (-563)))) 26)) (-2615 (((-1262) $) 76)) (-1692 (((-858) $) 69) (($ (-640 (-330))) 61) (($ (-330)) 66) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 64) (($ (-339 (-1706 (QUOTE X)) (-1706) (-694))) 25)))
+(((-64 |#1|) (-13 (-396) (-10 -8 (-15 -1692 ($ (-339 (-1706 (QUOTE X)) (-1706) (-694)))))) (-1169)) (T -64))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-339 (-1706 (QUOTE X)) (-1706) (-694))) (-5 *1 (-64 *3)) (-14 *3 (-1169)))))
+(-13 (-396) (-10 -8 (-15 -1692 ($ (-339 (-1706 (QUOTE X)) (-1706) (-694))))))
+((-2130 (((-3 $ "failed") (-684 (-316 (-379)))) 109) (((-3 $ "failed") (-684 (-316 (-563)))) 97) (((-3 $ "failed") (-684 (-948 (-379)))) 131) (((-3 $ "failed") (-684 (-948 (-563)))) 120) (((-3 $ "failed") (-684 (-407 (-948 (-379))))) 85) (((-3 $ "failed") (-684 (-407 (-948 (-563))))) 71)) (-2057 (($ (-684 (-316 (-379)))) 105) (($ (-684 (-316 (-563)))) 93) (($ (-684 (-948 (-379)))) 127) (($ (-684 (-948 (-563)))) 116) (($ (-684 (-407 (-948 (-379))))) 81) (($ (-684 (-407 (-948 (-563))))) 64)) (-2615 (((-1262) $) 139)) (-1692 (((-858) $) 133) (($ (-640 (-330))) 28) (($ (-330)) 33) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 31) (($ (-684 (-339 (-1706) (-1706 (QUOTE X) (QUOTE HESS)) (-694)))) 54)))
+(((-65 |#1|) (-13 (-384) (-613 (-684 (-339 (-1706) (-1706 (QUOTE X) (QUOTE HESS)) (-694))))) (-1169)) (T -65))
+NIL
+(-13 (-384) (-613 (-684 (-339 (-1706) (-1706 (QUOTE X) (QUOTE HESS)) (-694)))))
+((-2130 (((-3 $ "failed") (-316 (-379))) 59) (((-3 $ "failed") (-316 (-563))) 64) (((-3 $ "failed") (-948 (-379))) 68) (((-3 $ "failed") (-948 (-563))) 72) (((-3 $ "failed") (-407 (-948 (-379)))) 54) (((-3 $ "failed") (-407 (-948 (-563)))) 47)) (-2057 (($ (-316 (-379))) 57) (($ (-316 (-563))) 62) (($ (-948 (-379))) 66) (($ (-948 (-563))) 70) (($ (-407 (-948 (-379)))) 52) (($ (-407 (-948 (-563)))) 44)) (-2615 (((-1262) $) 81)) (-1692 (((-858) $) 75) (($ (-640 (-330))) 28) (($ (-330)) 33) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 31) (($ (-339 (-1706) (-1706 (QUOTE XC)) (-694))) 39)))
+(((-66 |#1|) (-13 (-396) (-10 -8 (-15 -1692 ($ (-339 (-1706) (-1706 (QUOTE XC)) (-694)))))) (-1169)) (T -66))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-339 (-1706) (-1706 (QUOTE XC)) (-694))) (-5 *1 (-66 *3)) (-14 *3 (-1169)))))
+(-13 (-396) (-10 -8 (-15 -1692 ($ (-339 (-1706) (-1706 (QUOTE XC)) (-694))))))
+((-2615 (((-1262) $) 63)) (-1692 (((-858) $) 57) (($ (-684 (-694))) 49) (($ (-640 (-330))) 48) (($ (-330)) 55) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 53)))
(((-67 |#1|) (-383) (-1169)) (T -67))
NIL
(-383)
-((-2615 (((-1262) $) 64)) (-1693 (((-858) $) 58) (($ (-684 (-694))) 50) (($ (-640 (-330))) 49) (($ (-330)) 52) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 55)))
+((-2615 (((-1262) $) 64)) (-1692 (((-858) $) 58) (($ (-684 (-694))) 50) (($ (-640 (-330))) 49) (($ (-330)) 52) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 55)))
(((-68 |#1|) (-383) (-1169)) (T -68))
NIL
(-383)
-((-2615 (((-1262) $) NIL) (((-1262)) 32)) (-1693 (((-858) $) NIL)))
+((-2615 (((-1262) $) NIL) (((-1262)) 32)) (-1692 (((-858) $) NIL)))
(((-69 |#1|) (-13 (-395) (-10 -7 (-15 -2615 ((-1262))))) (-1169)) (T -69))
((-2615 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-69 *3)) (-14 *3 (-1169)))))
(-13 (-395) (-10 -7 (-15 -2615 ((-1262)))))
-((-2615 (((-1262) $) 73)) (-1693 (((-858) $) 67) (($ (-684 (-694))) 59) (($ (-640 (-330))) 61) (($ (-330)) 64) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 58)))
+((-2615 (((-1262) $) 73)) (-1692 (((-858) $) 67) (($ (-684 (-694))) 59) (($ (-640 (-330))) 61) (($ (-330)) 64) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 58)))
(((-70 |#1|) (-383) (-1169)) (T -70))
NIL
(-383)
-((-2131 (((-3 $ "failed") (-1257 (-316 (-379)))) 103) (((-3 $ "failed") (-1257 (-316 (-563)))) 92) (((-3 $ "failed") (-1257 (-948 (-379)))) 123) (((-3 $ "failed") (-1257 (-948 (-563)))) 113) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 81) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 68)) (-2058 (($ (-1257 (-316 (-379)))) 99) (($ (-1257 (-316 (-563)))) 88) (($ (-1257 (-948 (-379)))) 119) (($ (-1257 (-948 (-563)))) 109) (($ (-1257 (-407 (-948 (-379))))) 77) (($ (-1257 (-407 (-948 (-563))))) 61)) (-2615 (((-1262) $) 136)) (-1693 (((-858) $) 130) (($ (-640 (-330))) 125) (($ (-330)) 128) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 53) (($ (-1257 (-339 (-1707 (QUOTE X)) (-1707 (QUOTE -3170)) (-694)))) 54)))
-(((-71 |#1|) (-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707 (QUOTE X)) (-1707 (QUOTE -3170)) (-694))))))) (-1169)) (T -71))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1707 (QUOTE X)) (-1707 (QUOTE -3170)) (-694)))) (-5 *1 (-71 *3)) (-14 *3 (-1169)))))
-(-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707 (QUOTE X)) (-1707 (QUOTE -3170)) (-694)))))))
-((-2615 (((-1262) $) 32) (((-1262)) 31)) (-1693 (((-858) $) 35)))
+((-2130 (((-3 $ "failed") (-1257 (-316 (-379)))) 103) (((-3 $ "failed") (-1257 (-316 (-563)))) 92) (((-3 $ "failed") (-1257 (-948 (-379)))) 123) (((-3 $ "failed") (-1257 (-948 (-563)))) 113) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 81) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 68)) (-2057 (($ (-1257 (-316 (-379)))) 99) (($ (-1257 (-316 (-563)))) 88) (($ (-1257 (-948 (-379)))) 119) (($ (-1257 (-948 (-563)))) 109) (($ (-1257 (-407 (-948 (-379))))) 77) (($ (-1257 (-407 (-948 (-563))))) 61)) (-2615 (((-1262) $) 136)) (-1692 (((-858) $) 130) (($ (-640 (-330))) 125) (($ (-330)) 128) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 53) (($ (-1257 (-339 (-1706 (QUOTE X)) (-1706 (QUOTE -3174)) (-694)))) 54)))
+(((-71 |#1|) (-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706 (QUOTE X)) (-1706 (QUOTE -3174)) (-694))))))) (-1169)) (T -71))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1706 (QUOTE X)) (-1706 (QUOTE -3174)) (-694)))) (-5 *1 (-71 *3)) (-14 *3 (-1169)))))
+(-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706 (QUOTE X)) (-1706 (QUOTE -3174)) (-694)))))))
+((-2615 (((-1262) $) 32) (((-1262)) 31)) (-1692 (((-858) $) 35)))
(((-72 |#1|) (-13 (-395) (-10 -7 (-15 -2615 ((-1262))))) (-1169)) (T -72))
((-2615 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-72 *3)) (-14 *3 (-1169)))))
(-13 (-395) (-10 -7 (-15 -2615 ((-1262)))))
-((-2615 (((-1262) $) 63)) (-1693 (((-858) $) 57) (($ (-684 (-694))) 49) (($ (-640 (-330))) 51) (($ (-330)) 54) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 48)))
+((-2615 (((-1262) $) 63)) (-1692 (((-858) $) 57) (($ (-684 (-694))) 49) (($ (-640 (-330))) 51) (($ (-330)) 54) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 48)))
(((-73 |#1|) (-383) (-1169)) (T -73))
NIL
(-383)
-((-2131 (((-3 $ "failed") (-1257 (-316 (-379)))) 125) (((-3 $ "failed") (-1257 (-316 (-563)))) 115) (((-3 $ "failed") (-1257 (-948 (-379)))) 145) (((-3 $ "failed") (-1257 (-948 (-563)))) 135) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 105) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 93)) (-2058 (($ (-1257 (-316 (-379)))) 121) (($ (-1257 (-316 (-563)))) 111) (($ (-1257 (-948 (-379)))) 141) (($ (-1257 (-948 (-563)))) 131) (($ (-1257 (-407 (-948 (-379))))) 101) (($ (-1257 (-407 (-948 (-563))))) 86)) (-2615 (((-1262) $) 78)) (-1693 (((-858) $) 27) (($ (-640 (-330))) 68) (($ (-330)) 64) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 71) (($ (-1257 (-339 (-1707) (-1707 (QUOTE X)) (-694)))) 65)))
-(((-74 |#1|) (-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707) (-1707 (QUOTE X)) (-694))))))) (-1169)) (T -74))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1707) (-1707 (QUOTE X)) (-694)))) (-5 *1 (-74 *3)) (-14 *3 (-1169)))))
-(-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707) (-1707 (QUOTE X)) (-694)))))))
-((-2131 (((-3 $ "failed") (-1257 (-316 (-379)))) 130) (((-3 $ "failed") (-1257 (-316 (-563)))) 119) (((-3 $ "failed") (-1257 (-948 (-379)))) 150) (((-3 $ "failed") (-1257 (-948 (-563)))) 140) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 108) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 95)) (-2058 (($ (-1257 (-316 (-379)))) 126) (($ (-1257 (-316 (-563)))) 115) (($ (-1257 (-948 (-379)))) 146) (($ (-1257 (-948 (-563)))) 136) (($ (-1257 (-407 (-948 (-379))))) 104) (($ (-1257 (-407 (-948 (-563))))) 88)) (-2615 (((-1262) $) 79)) (-1693 (((-858) $) 71) (($ (-640 (-330))) NIL) (($ (-330)) NIL) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) NIL) (($ (-1257 (-339 (-1707 (QUOTE X) (QUOTE EPS)) (-1707 (QUOTE -3170)) (-694)))) 66)))
-(((-75 |#1| |#2| |#3|) (-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707 (QUOTE X) (QUOTE EPS)) (-1707 (QUOTE -3170)) (-694))))))) (-1169) (-1169) (-1169)) (T -75))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1707 (QUOTE X) (QUOTE EPS)) (-1707 (QUOTE -3170)) (-694)))) (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1169)) (-14 *4 (-1169)) (-14 *5 (-1169)))))
-(-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707 (QUOTE X) (QUOTE EPS)) (-1707 (QUOTE -3170)) (-694)))))))
-((-2131 (((-3 $ "failed") (-1257 (-316 (-379)))) 134) (((-3 $ "failed") (-1257 (-316 (-563)))) 123) (((-3 $ "failed") (-1257 (-948 (-379)))) 154) (((-3 $ "failed") (-1257 (-948 (-563)))) 144) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 112) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 99)) (-2058 (($ (-1257 (-316 (-379)))) 130) (($ (-1257 (-316 (-563)))) 119) (($ (-1257 (-948 (-379)))) 150) (($ (-1257 (-948 (-563)))) 140) (($ (-1257 (-407 (-948 (-379))))) 108) (($ (-1257 (-407 (-948 (-563))))) 92)) (-2615 (((-1262) $) 83)) (-1693 (((-858) $) 75) (($ (-640 (-330))) NIL) (($ (-330)) NIL) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) NIL) (($ (-1257 (-339 (-1707 (QUOTE EPS)) (-1707 (QUOTE YA) (QUOTE YB)) (-694)))) 70)))
-(((-76 |#1| |#2| |#3|) (-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707 (QUOTE EPS)) (-1707 (QUOTE YA) (QUOTE YB)) (-694))))))) (-1169) (-1169) (-1169)) (T -76))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1707 (QUOTE EPS)) (-1707 (QUOTE YA) (QUOTE YB)) (-694)))) (-5 *1 (-76 *3 *4 *5)) (-14 *3 (-1169)) (-14 *4 (-1169)) (-14 *5 (-1169)))))
-(-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707 (QUOTE EPS)) (-1707 (QUOTE YA) (QUOTE YB)) (-694)))))))
-((-2131 (((-3 $ "failed") (-316 (-379))) 82) (((-3 $ "failed") (-316 (-563))) 87) (((-3 $ "failed") (-948 (-379))) 91) (((-3 $ "failed") (-948 (-563))) 95) (((-3 $ "failed") (-407 (-948 (-379)))) 77) (((-3 $ "failed") (-407 (-948 (-563)))) 70)) (-2058 (($ (-316 (-379))) 80) (($ (-316 (-563))) 85) (($ (-948 (-379))) 89) (($ (-948 (-563))) 93) (($ (-407 (-948 (-379)))) 75) (($ (-407 (-948 (-563)))) 67)) (-2615 (((-1262) $) 62)) (-1693 (((-858) $) 50) (($ (-640 (-330))) 46) (($ (-330)) 56) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 54) (($ (-339 (-1707) (-1707 (QUOTE X)) (-694))) 47)))
-(((-77 |#1|) (-13 (-396) (-10 -8 (-15 -1693 ($ (-339 (-1707) (-1707 (QUOTE X)) (-694)))))) (-1169)) (T -77))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-339 (-1707) (-1707 (QUOTE X)) (-694))) (-5 *1 (-77 *3)) (-14 *3 (-1169)))))
-(-13 (-396) (-10 -8 (-15 -1693 ($ (-339 (-1707) (-1707 (QUOTE X)) (-694))))))
-((-2131 (((-3 $ "failed") (-316 (-379))) 46) (((-3 $ "failed") (-316 (-563))) 51) (((-3 $ "failed") (-948 (-379))) 55) (((-3 $ "failed") (-948 (-563))) 59) (((-3 $ "failed") (-407 (-948 (-379)))) 41) (((-3 $ "failed") (-407 (-948 (-563)))) 34)) (-2058 (($ (-316 (-379))) 44) (($ (-316 (-563))) 49) (($ (-948 (-379))) 53) (($ (-948 (-563))) 57) (($ (-407 (-948 (-379)))) 39) (($ (-407 (-948 (-563)))) 31)) (-2615 (((-1262) $) 80)) (-1693 (((-858) $) 74) (($ (-640 (-330))) 66) (($ (-330)) 71) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 69) (($ (-339 (-1707) (-1707 (QUOTE X)) (-694))) 30)))
-(((-78 |#1|) (-13 (-396) (-10 -8 (-15 -1693 ($ (-339 (-1707) (-1707 (QUOTE X)) (-694)))))) (-1169)) (T -78))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-339 (-1707) (-1707 (QUOTE X)) (-694))) (-5 *1 (-78 *3)) (-14 *3 (-1169)))))
-(-13 (-396) (-10 -8 (-15 -1693 ($ (-339 (-1707) (-1707 (QUOTE X)) (-694))))))
-((-2131 (((-3 $ "failed") (-1257 (-316 (-379)))) 89) (((-3 $ "failed") (-1257 (-316 (-563)))) 78) (((-3 $ "failed") (-1257 (-948 (-379)))) 109) (((-3 $ "failed") (-1257 (-948 (-563)))) 99) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 67) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 54)) (-2058 (($ (-1257 (-316 (-379)))) 85) (($ (-1257 (-316 (-563)))) 74) (($ (-1257 (-948 (-379)))) 105) (($ (-1257 (-948 (-563)))) 95) (($ (-1257 (-407 (-948 (-379))))) 63) (($ (-1257 (-407 (-948 (-563))))) 47)) (-2615 (((-1262) $) 125)) (-1693 (((-858) $) 119) (($ (-640 (-330))) 112) (($ (-330)) 37) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 115) (($ (-1257 (-339 (-1707) (-1707 (QUOTE XC)) (-694)))) 38)))
-(((-79 |#1|) (-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707) (-1707 (QUOTE XC)) (-694))))))) (-1169)) (T -79))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1707) (-1707 (QUOTE XC)) (-694)))) (-5 *1 (-79 *3)) (-14 *3 (-1169)))))
-(-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707) (-1707 (QUOTE XC)) (-694)))))))
-((-2131 (((-3 $ "failed") (-1257 (-316 (-379)))) 143) (((-3 $ "failed") (-1257 (-316 (-563)))) 133) (((-3 $ "failed") (-1257 (-948 (-379)))) 163) (((-3 $ "failed") (-1257 (-948 (-563)))) 153) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 123) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 111)) (-2058 (($ (-1257 (-316 (-379)))) 139) (($ (-1257 (-316 (-563)))) 129) (($ (-1257 (-948 (-379)))) 159) (($ (-1257 (-948 (-563)))) 149) (($ (-1257 (-407 (-948 (-379))))) 119) (($ (-1257 (-407 (-948 (-563))))) 104)) (-2615 (((-1262) $) 97)) (-1693 (((-858) $) 91) (($ (-640 (-330))) 82) (($ (-330)) 89) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 87) (($ (-1257 (-339 (-1707) (-1707 (QUOTE X)) (-694)))) 83)))
-(((-80 |#1|) (-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707) (-1707 (QUOTE X)) (-694))))))) (-1169)) (T -80))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1707) (-1707 (QUOTE X)) (-694)))) (-5 *1 (-80 *3)) (-14 *3 (-1169)))))
-(-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707) (-1707 (QUOTE X)) (-694)))))))
-((-2131 (((-3 $ "failed") (-1257 (-316 (-379)))) 78) (((-3 $ "failed") (-1257 (-316 (-563)))) 67) (((-3 $ "failed") (-1257 (-948 (-379)))) 98) (((-3 $ "failed") (-1257 (-948 (-563)))) 88) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 56) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 43)) (-2058 (($ (-1257 (-316 (-379)))) 74) (($ (-1257 (-316 (-563)))) 63) (($ (-1257 (-948 (-379)))) 94) (($ (-1257 (-948 (-563)))) 84) (($ (-1257 (-407 (-948 (-379))))) 52) (($ (-1257 (-407 (-948 (-563))))) 36)) (-2615 (((-1262) $) 124)) (-1693 (((-858) $) 118) (($ (-640 (-330))) 109) (($ (-330)) 115) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 113) (($ (-1257 (-339 (-1707) (-1707 (QUOTE X)) (-694)))) 35)))
-(((-81 |#1|) (-13 (-441) (-613 (-1257 (-339 (-1707) (-1707 (QUOTE X)) (-694))))) (-1169)) (T -81))
-NIL
-(-13 (-441) (-613 (-1257 (-339 (-1707) (-1707 (QUOTE X)) (-694)))))
-((-2131 (((-3 $ "failed") (-1257 (-316 (-379)))) 95) (((-3 $ "failed") (-1257 (-316 (-563)))) 84) (((-3 $ "failed") (-1257 (-948 (-379)))) 115) (((-3 $ "failed") (-1257 (-948 (-563)))) 105) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 73) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 60)) (-2058 (($ (-1257 (-316 (-379)))) 91) (($ (-1257 (-316 (-563)))) 80) (($ (-1257 (-948 (-379)))) 111) (($ (-1257 (-948 (-563)))) 101) (($ (-1257 (-407 (-948 (-379))))) 69) (($ (-1257 (-407 (-948 (-563))))) 53)) (-2615 (((-1262) $) 45)) (-1693 (((-858) $) 39) (($ (-640 (-330))) 29) (($ (-330)) 32) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 35) (($ (-1257 (-339 (-1707 (QUOTE X) (QUOTE -3170)) (-1707) (-694)))) 30)))
-(((-82 |#1|) (-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707 (QUOTE X) (QUOTE -3170)) (-1707) (-694))))))) (-1169)) (T -82))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1707 (QUOTE X) (QUOTE -3170)) (-1707) (-694)))) (-5 *1 (-82 *3)) (-14 *3 (-1169)))))
-(-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707 (QUOTE X) (QUOTE -3170)) (-1707) (-694)))))))
-((-2131 (((-3 $ "failed") (-684 (-316 (-379)))) 115) (((-3 $ "failed") (-684 (-316 (-563)))) 104) (((-3 $ "failed") (-684 (-948 (-379)))) 137) (((-3 $ "failed") (-684 (-948 (-563)))) 126) (((-3 $ "failed") (-684 (-407 (-948 (-379))))) 93) (((-3 $ "failed") (-684 (-407 (-948 (-563))))) 80)) (-2058 (($ (-684 (-316 (-379)))) 111) (($ (-684 (-316 (-563)))) 100) (($ (-684 (-948 (-379)))) 133) (($ (-684 (-948 (-563)))) 122) (($ (-684 (-407 (-948 (-379))))) 89) (($ (-684 (-407 (-948 (-563))))) 73)) (-2615 (((-1262) $) 63)) (-1693 (((-858) $) 50) (($ (-640 (-330))) 57) (($ (-330)) 46) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 55) (($ (-684 (-339 (-1707 (QUOTE X) (QUOTE -3170)) (-1707) (-694)))) 47)))
-(((-83 |#1|) (-13 (-384) (-10 -8 (-15 -1693 ($ (-684 (-339 (-1707 (QUOTE X) (QUOTE -3170)) (-1707) (-694))))))) (-1169)) (T -83))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-684 (-339 (-1707 (QUOTE X) (QUOTE -3170)) (-1707) (-694)))) (-5 *1 (-83 *3)) (-14 *3 (-1169)))))
-(-13 (-384) (-10 -8 (-15 -1693 ($ (-684 (-339 (-1707 (QUOTE X) (QUOTE -3170)) (-1707) (-694)))))))
-((-2131 (((-3 $ "failed") (-684 (-316 (-379)))) 112) (((-3 $ "failed") (-684 (-316 (-563)))) 100) (((-3 $ "failed") (-684 (-948 (-379)))) 134) (((-3 $ "failed") (-684 (-948 (-563)))) 123) (((-3 $ "failed") (-684 (-407 (-948 (-379))))) 88) (((-3 $ "failed") (-684 (-407 (-948 (-563))))) 74)) (-2058 (($ (-684 (-316 (-379)))) 108) (($ (-684 (-316 (-563)))) 96) (($ (-684 (-948 (-379)))) 130) (($ (-684 (-948 (-563)))) 119) (($ (-684 (-407 (-948 (-379))))) 84) (($ (-684 (-407 (-948 (-563))))) 67)) (-2615 (((-1262) $) 59)) (-1693 (((-858) $) 53) (($ (-640 (-330))) 47) (($ (-330)) 50) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 44) (($ (-684 (-339 (-1707 (QUOTE X)) (-1707) (-694)))) 45)))
-(((-84 |#1|) (-13 (-384) (-10 -8 (-15 -1693 ($ (-684 (-339 (-1707 (QUOTE X)) (-1707) (-694))))))) (-1169)) (T -84))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-684 (-339 (-1707 (QUOTE X)) (-1707) (-694)))) (-5 *1 (-84 *3)) (-14 *3 (-1169)))))
-(-13 (-384) (-10 -8 (-15 -1693 ($ (-684 (-339 (-1707 (QUOTE X)) (-1707) (-694)))))))
-((-2131 (((-3 $ "failed") (-1257 (-316 (-379)))) 104) (((-3 $ "failed") (-1257 (-316 (-563)))) 93) (((-3 $ "failed") (-1257 (-948 (-379)))) 124) (((-3 $ "failed") (-1257 (-948 (-563)))) 114) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 82) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 69)) (-2058 (($ (-1257 (-316 (-379)))) 100) (($ (-1257 (-316 (-563)))) 89) (($ (-1257 (-948 (-379)))) 120) (($ (-1257 (-948 (-563)))) 110) (($ (-1257 (-407 (-948 (-379))))) 78) (($ (-1257 (-407 (-948 (-563))))) 62)) (-2615 (((-1262) $) 46)) (-1693 (((-858) $) 40) (($ (-640 (-330))) 49) (($ (-330)) 36) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 52) (($ (-1257 (-339 (-1707 (QUOTE X)) (-1707) (-694)))) 37)))
-(((-85 |#1|) (-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707 (QUOTE X)) (-1707) (-694))))))) (-1169)) (T -85))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1707 (QUOTE X)) (-1707) (-694)))) (-5 *1 (-85 *3)) (-14 *3 (-1169)))))
-(-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707 (QUOTE X)) (-1707) (-694)))))))
-((-2131 (((-3 $ "failed") (-1257 (-316 (-379)))) 79) (((-3 $ "failed") (-1257 (-316 (-563)))) 68) (((-3 $ "failed") (-1257 (-948 (-379)))) 99) (((-3 $ "failed") (-1257 (-948 (-563)))) 89) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 57) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 44)) (-2058 (($ (-1257 (-316 (-379)))) 75) (($ (-1257 (-316 (-563)))) 64) (($ (-1257 (-948 (-379)))) 95) (($ (-1257 (-948 (-563)))) 85) (($ (-1257 (-407 (-948 (-379))))) 53) (($ (-1257 (-407 (-948 (-563))))) 37)) (-2615 (((-1262) $) 125)) (-1693 (((-858) $) 119) (($ (-640 (-330))) 110) (($ (-330)) 116) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 114) (($ (-1257 (-339 (-1707 (QUOTE X)) (-1707 (QUOTE -3170)) (-694)))) 36)))
-(((-86 |#1|) (-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707 (QUOTE X)) (-1707 (QUOTE -3170)) (-694))))))) (-1169)) (T -86))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1707 (QUOTE X)) (-1707 (QUOTE -3170)) (-694)))) (-5 *1 (-86 *3)) (-14 *3 (-1169)))))
-(-13 (-441) (-10 -8 (-15 -1693 ($ (-1257 (-339 (-1707 (QUOTE X)) (-1707 (QUOTE -3170)) (-694)))))))
-((-2131 (((-3 $ "failed") (-684 (-316 (-379)))) 113) (((-3 $ "failed") (-684 (-316 (-563)))) 101) (((-3 $ "failed") (-684 (-948 (-379)))) 135) (((-3 $ "failed") (-684 (-948 (-563)))) 124) (((-3 $ "failed") (-684 (-407 (-948 (-379))))) 89) (((-3 $ "failed") (-684 (-407 (-948 (-563))))) 75)) (-2058 (($ (-684 (-316 (-379)))) 109) (($ (-684 (-316 (-563)))) 97) (($ (-684 (-948 (-379)))) 131) (($ (-684 (-948 (-563)))) 120) (($ (-684 (-407 (-948 (-379))))) 85) (($ (-684 (-407 (-948 (-563))))) 68)) (-2615 (((-1262) $) 59)) (-1693 (((-858) $) 53) (($ (-640 (-330))) 43) (($ (-330)) 50) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 48) (($ (-684 (-339 (-1707 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-1707) (-694)))) 44)))
-(((-87 |#1|) (-13 (-384) (-10 -8 (-15 -1693 ($ (-684 (-339 (-1707 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-1707) (-694))))))) (-1169)) (T -87))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-684 (-339 (-1707 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-1707) (-694)))) (-5 *1 (-87 *3)) (-14 *3 (-1169)))))
-(-13 (-384) (-10 -8 (-15 -1693 ($ (-684 (-339 (-1707 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-1707) (-694)))))))
-((-2615 (((-1262) $) 44)) (-1693 (((-858) $) 38) (($ (-1257 (-694))) 93) (($ (-640 (-330))) 30) (($ (-330)) 35) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 33)))
+((-2130 (((-3 $ "failed") (-1257 (-316 (-379)))) 125) (((-3 $ "failed") (-1257 (-316 (-563)))) 115) (((-3 $ "failed") (-1257 (-948 (-379)))) 145) (((-3 $ "failed") (-1257 (-948 (-563)))) 135) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 105) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 93)) (-2057 (($ (-1257 (-316 (-379)))) 121) (($ (-1257 (-316 (-563)))) 111) (($ (-1257 (-948 (-379)))) 141) (($ (-1257 (-948 (-563)))) 131) (($ (-1257 (-407 (-948 (-379))))) 101) (($ (-1257 (-407 (-948 (-563))))) 86)) (-2615 (((-1262) $) 78)) (-1692 (((-858) $) 27) (($ (-640 (-330))) 68) (($ (-330)) 64) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 71) (($ (-1257 (-339 (-1706) (-1706 (QUOTE X)) (-694)))) 65)))
+(((-74 |#1|) (-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706) (-1706 (QUOTE X)) (-694))))))) (-1169)) (T -74))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1706) (-1706 (QUOTE X)) (-694)))) (-5 *1 (-74 *3)) (-14 *3 (-1169)))))
+(-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706) (-1706 (QUOTE X)) (-694)))))))
+((-2130 (((-3 $ "failed") (-1257 (-316 (-379)))) 130) (((-3 $ "failed") (-1257 (-316 (-563)))) 119) (((-3 $ "failed") (-1257 (-948 (-379)))) 150) (((-3 $ "failed") (-1257 (-948 (-563)))) 140) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 108) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 95)) (-2057 (($ (-1257 (-316 (-379)))) 126) (($ (-1257 (-316 (-563)))) 115) (($ (-1257 (-948 (-379)))) 146) (($ (-1257 (-948 (-563)))) 136) (($ (-1257 (-407 (-948 (-379))))) 104) (($ (-1257 (-407 (-948 (-563))))) 88)) (-2615 (((-1262) $) 79)) (-1692 (((-858) $) 71) (($ (-640 (-330))) NIL) (($ (-330)) NIL) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) NIL) (($ (-1257 (-339 (-1706 (QUOTE X) (QUOTE EPS)) (-1706 (QUOTE -3174)) (-694)))) 66)))
+(((-75 |#1| |#2| |#3|) (-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706 (QUOTE X) (QUOTE EPS)) (-1706 (QUOTE -3174)) (-694))))))) (-1169) (-1169) (-1169)) (T -75))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1706 (QUOTE X) (QUOTE EPS)) (-1706 (QUOTE -3174)) (-694)))) (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1169)) (-14 *4 (-1169)) (-14 *5 (-1169)))))
+(-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706 (QUOTE X) (QUOTE EPS)) (-1706 (QUOTE -3174)) (-694)))))))
+((-2130 (((-3 $ "failed") (-1257 (-316 (-379)))) 134) (((-3 $ "failed") (-1257 (-316 (-563)))) 123) (((-3 $ "failed") (-1257 (-948 (-379)))) 154) (((-3 $ "failed") (-1257 (-948 (-563)))) 144) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 112) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 99)) (-2057 (($ (-1257 (-316 (-379)))) 130) (($ (-1257 (-316 (-563)))) 119) (($ (-1257 (-948 (-379)))) 150) (($ (-1257 (-948 (-563)))) 140) (($ (-1257 (-407 (-948 (-379))))) 108) (($ (-1257 (-407 (-948 (-563))))) 92)) (-2615 (((-1262) $) 83)) (-1692 (((-858) $) 75) (($ (-640 (-330))) NIL) (($ (-330)) NIL) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) NIL) (($ (-1257 (-339 (-1706 (QUOTE EPS)) (-1706 (QUOTE YA) (QUOTE YB)) (-694)))) 70)))
+(((-76 |#1| |#2| |#3|) (-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706 (QUOTE EPS)) (-1706 (QUOTE YA) (QUOTE YB)) (-694))))))) (-1169) (-1169) (-1169)) (T -76))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1706 (QUOTE EPS)) (-1706 (QUOTE YA) (QUOTE YB)) (-694)))) (-5 *1 (-76 *3 *4 *5)) (-14 *3 (-1169)) (-14 *4 (-1169)) (-14 *5 (-1169)))))
+(-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706 (QUOTE EPS)) (-1706 (QUOTE YA) (QUOTE YB)) (-694)))))))
+((-2130 (((-3 $ "failed") (-316 (-379))) 82) (((-3 $ "failed") (-316 (-563))) 87) (((-3 $ "failed") (-948 (-379))) 91) (((-3 $ "failed") (-948 (-563))) 95) (((-3 $ "failed") (-407 (-948 (-379)))) 77) (((-3 $ "failed") (-407 (-948 (-563)))) 70)) (-2057 (($ (-316 (-379))) 80) (($ (-316 (-563))) 85) (($ (-948 (-379))) 89) (($ (-948 (-563))) 93) (($ (-407 (-948 (-379)))) 75) (($ (-407 (-948 (-563)))) 67)) (-2615 (((-1262) $) 62)) (-1692 (((-858) $) 50) (($ (-640 (-330))) 46) (($ (-330)) 56) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 54) (($ (-339 (-1706) (-1706 (QUOTE X)) (-694))) 47)))
+(((-77 |#1|) (-13 (-396) (-10 -8 (-15 -1692 ($ (-339 (-1706) (-1706 (QUOTE X)) (-694)))))) (-1169)) (T -77))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-339 (-1706) (-1706 (QUOTE X)) (-694))) (-5 *1 (-77 *3)) (-14 *3 (-1169)))))
+(-13 (-396) (-10 -8 (-15 -1692 ($ (-339 (-1706) (-1706 (QUOTE X)) (-694))))))
+((-2130 (((-3 $ "failed") (-316 (-379))) 46) (((-3 $ "failed") (-316 (-563))) 51) (((-3 $ "failed") (-948 (-379))) 55) (((-3 $ "failed") (-948 (-563))) 59) (((-3 $ "failed") (-407 (-948 (-379)))) 41) (((-3 $ "failed") (-407 (-948 (-563)))) 34)) (-2057 (($ (-316 (-379))) 44) (($ (-316 (-563))) 49) (($ (-948 (-379))) 53) (($ (-948 (-563))) 57) (($ (-407 (-948 (-379)))) 39) (($ (-407 (-948 (-563)))) 31)) (-2615 (((-1262) $) 80)) (-1692 (((-858) $) 74) (($ (-640 (-330))) 66) (($ (-330)) 71) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 69) (($ (-339 (-1706) (-1706 (QUOTE X)) (-694))) 30)))
+(((-78 |#1|) (-13 (-396) (-10 -8 (-15 -1692 ($ (-339 (-1706) (-1706 (QUOTE X)) (-694)))))) (-1169)) (T -78))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-339 (-1706) (-1706 (QUOTE X)) (-694))) (-5 *1 (-78 *3)) (-14 *3 (-1169)))))
+(-13 (-396) (-10 -8 (-15 -1692 ($ (-339 (-1706) (-1706 (QUOTE X)) (-694))))))
+((-2130 (((-3 $ "failed") (-1257 (-316 (-379)))) 89) (((-3 $ "failed") (-1257 (-316 (-563)))) 78) (((-3 $ "failed") (-1257 (-948 (-379)))) 109) (((-3 $ "failed") (-1257 (-948 (-563)))) 99) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 67) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 54)) (-2057 (($ (-1257 (-316 (-379)))) 85) (($ (-1257 (-316 (-563)))) 74) (($ (-1257 (-948 (-379)))) 105) (($ (-1257 (-948 (-563)))) 95) (($ (-1257 (-407 (-948 (-379))))) 63) (($ (-1257 (-407 (-948 (-563))))) 47)) (-2615 (((-1262) $) 125)) (-1692 (((-858) $) 119) (($ (-640 (-330))) 112) (($ (-330)) 37) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 115) (($ (-1257 (-339 (-1706) (-1706 (QUOTE XC)) (-694)))) 38)))
+(((-79 |#1|) (-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706) (-1706 (QUOTE XC)) (-694))))))) (-1169)) (T -79))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1706) (-1706 (QUOTE XC)) (-694)))) (-5 *1 (-79 *3)) (-14 *3 (-1169)))))
+(-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706) (-1706 (QUOTE XC)) (-694)))))))
+((-2130 (((-3 $ "failed") (-1257 (-316 (-379)))) 143) (((-3 $ "failed") (-1257 (-316 (-563)))) 133) (((-3 $ "failed") (-1257 (-948 (-379)))) 163) (((-3 $ "failed") (-1257 (-948 (-563)))) 153) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 123) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 111)) (-2057 (($ (-1257 (-316 (-379)))) 139) (($ (-1257 (-316 (-563)))) 129) (($ (-1257 (-948 (-379)))) 159) (($ (-1257 (-948 (-563)))) 149) (($ (-1257 (-407 (-948 (-379))))) 119) (($ (-1257 (-407 (-948 (-563))))) 104)) (-2615 (((-1262) $) 97)) (-1692 (((-858) $) 91) (($ (-640 (-330))) 82) (($ (-330)) 89) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 87) (($ (-1257 (-339 (-1706) (-1706 (QUOTE X)) (-694)))) 83)))
+(((-80 |#1|) (-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706) (-1706 (QUOTE X)) (-694))))))) (-1169)) (T -80))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1706) (-1706 (QUOTE X)) (-694)))) (-5 *1 (-80 *3)) (-14 *3 (-1169)))))
+(-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706) (-1706 (QUOTE X)) (-694)))))))
+((-2130 (((-3 $ "failed") (-1257 (-316 (-379)))) 78) (((-3 $ "failed") (-1257 (-316 (-563)))) 67) (((-3 $ "failed") (-1257 (-948 (-379)))) 98) (((-3 $ "failed") (-1257 (-948 (-563)))) 88) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 56) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 43)) (-2057 (($ (-1257 (-316 (-379)))) 74) (($ (-1257 (-316 (-563)))) 63) (($ (-1257 (-948 (-379)))) 94) (($ (-1257 (-948 (-563)))) 84) (($ (-1257 (-407 (-948 (-379))))) 52) (($ (-1257 (-407 (-948 (-563))))) 36)) (-2615 (((-1262) $) 124)) (-1692 (((-858) $) 118) (($ (-640 (-330))) 109) (($ (-330)) 115) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 113) (($ (-1257 (-339 (-1706) (-1706 (QUOTE X)) (-694)))) 35)))
+(((-81 |#1|) (-13 (-441) (-613 (-1257 (-339 (-1706) (-1706 (QUOTE X)) (-694))))) (-1169)) (T -81))
+NIL
+(-13 (-441) (-613 (-1257 (-339 (-1706) (-1706 (QUOTE X)) (-694)))))
+((-2130 (((-3 $ "failed") (-1257 (-316 (-379)))) 95) (((-3 $ "failed") (-1257 (-316 (-563)))) 84) (((-3 $ "failed") (-1257 (-948 (-379)))) 115) (((-3 $ "failed") (-1257 (-948 (-563)))) 105) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 73) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 60)) (-2057 (($ (-1257 (-316 (-379)))) 91) (($ (-1257 (-316 (-563)))) 80) (($ (-1257 (-948 (-379)))) 111) (($ (-1257 (-948 (-563)))) 101) (($ (-1257 (-407 (-948 (-379))))) 69) (($ (-1257 (-407 (-948 (-563))))) 53)) (-2615 (((-1262) $) 45)) (-1692 (((-858) $) 39) (($ (-640 (-330))) 29) (($ (-330)) 32) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 35) (($ (-1257 (-339 (-1706 (QUOTE X) (QUOTE -3174)) (-1706) (-694)))) 30)))
+(((-82 |#1|) (-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706 (QUOTE X) (QUOTE -3174)) (-1706) (-694))))))) (-1169)) (T -82))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1706 (QUOTE X) (QUOTE -3174)) (-1706) (-694)))) (-5 *1 (-82 *3)) (-14 *3 (-1169)))))
+(-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706 (QUOTE X) (QUOTE -3174)) (-1706) (-694)))))))
+((-2130 (((-3 $ "failed") (-684 (-316 (-379)))) 115) (((-3 $ "failed") (-684 (-316 (-563)))) 104) (((-3 $ "failed") (-684 (-948 (-379)))) 137) (((-3 $ "failed") (-684 (-948 (-563)))) 126) (((-3 $ "failed") (-684 (-407 (-948 (-379))))) 93) (((-3 $ "failed") (-684 (-407 (-948 (-563))))) 80)) (-2057 (($ (-684 (-316 (-379)))) 111) (($ (-684 (-316 (-563)))) 100) (($ (-684 (-948 (-379)))) 133) (($ (-684 (-948 (-563)))) 122) (($ (-684 (-407 (-948 (-379))))) 89) (($ (-684 (-407 (-948 (-563))))) 73)) (-2615 (((-1262) $) 63)) (-1692 (((-858) $) 50) (($ (-640 (-330))) 57) (($ (-330)) 46) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 55) (($ (-684 (-339 (-1706 (QUOTE X) (QUOTE -3174)) (-1706) (-694)))) 47)))
+(((-83 |#1|) (-13 (-384) (-10 -8 (-15 -1692 ($ (-684 (-339 (-1706 (QUOTE X) (QUOTE -3174)) (-1706) (-694))))))) (-1169)) (T -83))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-684 (-339 (-1706 (QUOTE X) (QUOTE -3174)) (-1706) (-694)))) (-5 *1 (-83 *3)) (-14 *3 (-1169)))))
+(-13 (-384) (-10 -8 (-15 -1692 ($ (-684 (-339 (-1706 (QUOTE X) (QUOTE -3174)) (-1706) (-694)))))))
+((-2130 (((-3 $ "failed") (-684 (-316 (-379)))) 112) (((-3 $ "failed") (-684 (-316 (-563)))) 100) (((-3 $ "failed") (-684 (-948 (-379)))) 134) (((-3 $ "failed") (-684 (-948 (-563)))) 123) (((-3 $ "failed") (-684 (-407 (-948 (-379))))) 88) (((-3 $ "failed") (-684 (-407 (-948 (-563))))) 74)) (-2057 (($ (-684 (-316 (-379)))) 108) (($ (-684 (-316 (-563)))) 96) (($ (-684 (-948 (-379)))) 130) (($ (-684 (-948 (-563)))) 119) (($ (-684 (-407 (-948 (-379))))) 84) (($ (-684 (-407 (-948 (-563))))) 67)) (-2615 (((-1262) $) 59)) (-1692 (((-858) $) 53) (($ (-640 (-330))) 47) (($ (-330)) 50) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 44) (($ (-684 (-339 (-1706 (QUOTE X)) (-1706) (-694)))) 45)))
+(((-84 |#1|) (-13 (-384) (-10 -8 (-15 -1692 ($ (-684 (-339 (-1706 (QUOTE X)) (-1706) (-694))))))) (-1169)) (T -84))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-684 (-339 (-1706 (QUOTE X)) (-1706) (-694)))) (-5 *1 (-84 *3)) (-14 *3 (-1169)))))
+(-13 (-384) (-10 -8 (-15 -1692 ($ (-684 (-339 (-1706 (QUOTE X)) (-1706) (-694)))))))
+((-2130 (((-3 $ "failed") (-1257 (-316 (-379)))) 104) (((-3 $ "failed") (-1257 (-316 (-563)))) 93) (((-3 $ "failed") (-1257 (-948 (-379)))) 124) (((-3 $ "failed") (-1257 (-948 (-563)))) 114) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 82) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 69)) (-2057 (($ (-1257 (-316 (-379)))) 100) (($ (-1257 (-316 (-563)))) 89) (($ (-1257 (-948 (-379)))) 120) (($ (-1257 (-948 (-563)))) 110) (($ (-1257 (-407 (-948 (-379))))) 78) (($ (-1257 (-407 (-948 (-563))))) 62)) (-2615 (((-1262) $) 46)) (-1692 (((-858) $) 40) (($ (-640 (-330))) 49) (($ (-330)) 36) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 52) (($ (-1257 (-339 (-1706 (QUOTE X)) (-1706) (-694)))) 37)))
+(((-85 |#1|) (-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706 (QUOTE X)) (-1706) (-694))))))) (-1169)) (T -85))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1706 (QUOTE X)) (-1706) (-694)))) (-5 *1 (-85 *3)) (-14 *3 (-1169)))))
+(-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706 (QUOTE X)) (-1706) (-694)))))))
+((-2130 (((-3 $ "failed") (-1257 (-316 (-379)))) 79) (((-3 $ "failed") (-1257 (-316 (-563)))) 68) (((-3 $ "failed") (-1257 (-948 (-379)))) 99) (((-3 $ "failed") (-1257 (-948 (-563)))) 89) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 57) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 44)) (-2057 (($ (-1257 (-316 (-379)))) 75) (($ (-1257 (-316 (-563)))) 64) (($ (-1257 (-948 (-379)))) 95) (($ (-1257 (-948 (-563)))) 85) (($ (-1257 (-407 (-948 (-379))))) 53) (($ (-1257 (-407 (-948 (-563))))) 37)) (-2615 (((-1262) $) 125)) (-1692 (((-858) $) 119) (($ (-640 (-330))) 110) (($ (-330)) 116) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 114) (($ (-1257 (-339 (-1706 (QUOTE X)) (-1706 (QUOTE -3174)) (-694)))) 36)))
+(((-86 |#1|) (-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706 (QUOTE X)) (-1706 (QUOTE -3174)) (-694))))))) (-1169)) (T -86))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1257 (-339 (-1706 (QUOTE X)) (-1706 (QUOTE -3174)) (-694)))) (-5 *1 (-86 *3)) (-14 *3 (-1169)))))
+(-13 (-441) (-10 -8 (-15 -1692 ($ (-1257 (-339 (-1706 (QUOTE X)) (-1706 (QUOTE -3174)) (-694)))))))
+((-2130 (((-3 $ "failed") (-684 (-316 (-379)))) 113) (((-3 $ "failed") (-684 (-316 (-563)))) 101) (((-3 $ "failed") (-684 (-948 (-379)))) 135) (((-3 $ "failed") (-684 (-948 (-563)))) 124) (((-3 $ "failed") (-684 (-407 (-948 (-379))))) 89) (((-3 $ "failed") (-684 (-407 (-948 (-563))))) 75)) (-2057 (($ (-684 (-316 (-379)))) 109) (($ (-684 (-316 (-563)))) 97) (($ (-684 (-948 (-379)))) 131) (($ (-684 (-948 (-563)))) 120) (($ (-684 (-407 (-948 (-379))))) 85) (($ (-684 (-407 (-948 (-563))))) 68)) (-2615 (((-1262) $) 59)) (-1692 (((-858) $) 53) (($ (-640 (-330))) 43) (($ (-330)) 50) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 48) (($ (-684 (-339 (-1706 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-1706) (-694)))) 44)))
+(((-87 |#1|) (-13 (-384) (-10 -8 (-15 -1692 ($ (-684 (-339 (-1706 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-1706) (-694))))))) (-1169)) (T -87))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-684 (-339 (-1706 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-1706) (-694)))) (-5 *1 (-87 *3)) (-14 *3 (-1169)))))
+(-13 (-384) (-10 -8 (-15 -1692 ($ (-684 (-339 (-1706 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-1706) (-694)))))))
+((-2615 (((-1262) $) 44)) (-1692 (((-858) $) 38) (($ (-1257 (-694))) 93) (($ (-640 (-330))) 30) (($ (-330)) 35) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 33)))
(((-88 |#1|) (-440) (-1169)) (T -88))
NIL
(-440)
-((-2131 (((-3 $ "failed") (-316 (-379))) 47) (((-3 $ "failed") (-316 (-563))) 52) (((-3 $ "failed") (-948 (-379))) 56) (((-3 $ "failed") (-948 (-563))) 60) (((-3 $ "failed") (-407 (-948 (-379)))) 42) (((-3 $ "failed") (-407 (-948 (-563)))) 35)) (-2058 (($ (-316 (-379))) 45) (($ (-316 (-563))) 50) (($ (-948 (-379))) 54) (($ (-948 (-563))) 58) (($ (-407 (-948 (-379)))) 40) (($ (-407 (-948 (-563)))) 32)) (-2615 (((-1262) $) 90)) (-1693 (((-858) $) 84) (($ (-640 (-330))) 78) (($ (-330)) 81) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 76) (($ (-339 (-1707 (QUOTE X)) (-1707 (QUOTE -3170)) (-694))) 31)))
-(((-89 |#1|) (-13 (-396) (-10 -8 (-15 -1693 ($ (-339 (-1707 (QUOTE X)) (-1707 (QUOTE -3170)) (-694)))))) (-1169)) (T -89))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-339 (-1707 (QUOTE X)) (-1707 (QUOTE -3170)) (-694))) (-5 *1 (-89 *3)) (-14 *3 (-1169)))))
-(-13 (-396) (-10 -8 (-15 -1693 ($ (-339 (-1707 (QUOTE X)) (-1707 (QUOTE -3170)) (-694))))))
-((-2879 (((-1257 (-684 |#1|)) (-684 |#1|)) 54)) (-4180 (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 (-640 (-917))))) |#2| (-917)) 44)) (-1702 (((-2 (|:| |minor| (-640 (-917))) (|:| -1420 |#2|) (|:| |minors| (-640 (-640 (-917)))) (|:| |ops| (-640 |#2|))) |#2| (-917)) 65 (|has| |#1| (-363)))))
-(((-90 |#1| |#2|) (-10 -7 (-15 -4180 ((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 (-640 (-917))))) |#2| (-917))) (-15 -2879 ((-1257 (-684 |#1|)) (-684 |#1|))) (IF (|has| |#1| (-363)) (-15 -1702 ((-2 (|:| |minor| (-640 (-917))) (|:| -1420 |#2|) (|:| |minors| (-640 (-640 (-917)))) (|:| |ops| (-640 |#2|))) |#2| (-917))) |%noBranch|)) (-555) (-651 |#1|)) (T -90))
-((-1702 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-4 *5 (-555)) (-5 *2 (-2 (|:| |minor| (-640 (-917))) (|:| -1420 *3) (|:| |minors| (-640 (-640 (-917)))) (|:| |ops| (-640 *3)))) (-5 *1 (-90 *5 *3)) (-5 *4 (-917)) (-4 *3 (-651 *5)))) (-2879 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-1257 (-684 *4))) (-5 *1 (-90 *4 *5)) (-5 *3 (-684 *4)) (-4 *5 (-651 *4)))) (-4180 (*1 *2 *3 *4) (-12 (-4 *5 (-555)) (-5 *2 (-2 (|:| -2835 (-684 *5)) (|:| |vec| (-1257 (-640 (-917)))))) (-5 *1 (-90 *5 *3)) (-5 *4 (-917)) (-4 *3 (-651 *5)))))
-(-10 -7 (-15 -4180 ((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 (-640 (-917))))) |#2| (-917))) (-15 -2879 ((-1257 (-684 |#1|)) (-684 |#1|))) (IF (|has| |#1| (-363)) (-15 -1702 ((-2 (|:| |minor| (-640 (-917))) (|:| -1420 |#2|) (|:| |minors| (-640 (-640 (-917)))) (|:| |ops| (-640 |#2|))) |#2| (-917))) |%noBranch|))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2636 ((|#1| $) 35)) (-2759 (((-112) $ (-767)) NIL)) (-4239 (($) NIL T CONST)) (-4325 ((|#1| |#1| $) 30)) (-3017 ((|#1| $) 28)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2964 ((|#1| $) NIL)) (-1812 (($ |#1| $) 31)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3755 ((|#1| $) 29)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) 16)) (-3135 (($) 39)) (-2370 (((-767) $) 26)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) 15)) (-1693 (((-858) $) 25 (|has| |#1| (-610 (-858))))) (-2233 (($ (-640 |#1|)) NIL)) (-3487 (($ (-640 |#1|)) 37)) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 13 (|has| |#1| (-1093)))) (-3608 (((-767) $) 10 (|has| $ (-6 -4407)))))
-(((-91 |#1|) (-13 (-1114 |#1|) (-10 -8 (-15 -3487 ($ (-640 |#1|))))) (-1093)) (T -91))
-((-3487 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-91 *3)))))
-(-13 (-1114 |#1|) (-10 -8 (-15 -3487 ($ (-640 |#1|)))))
-((-1693 (((-858) $) 13) (($ (-1174)) 9) (((-1174) $) 8)))
-(((-92 |#1|) (-10 -8 (-15 -1693 ((-1174) |#1|)) (-15 -1693 (|#1| (-1174))) (-15 -1693 ((-858) |#1|))) (-93)) (T -92))
-NIL
-(-10 -8 (-15 -1693 ((-1174) |#1|)) (-15 -1693 (|#1| (-1174))) (-15 -1693 ((-858) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ (-1174)) 16) (((-1174) $) 15)) (-1718 (((-112) $ $) 6)))
+((-2130 (((-3 $ "failed") (-316 (-379))) 47) (((-3 $ "failed") (-316 (-563))) 52) (((-3 $ "failed") (-948 (-379))) 56) (((-3 $ "failed") (-948 (-563))) 60) (((-3 $ "failed") (-407 (-948 (-379)))) 42) (((-3 $ "failed") (-407 (-948 (-563)))) 35)) (-2057 (($ (-316 (-379))) 45) (($ (-316 (-563))) 50) (($ (-948 (-379))) 54) (($ (-948 (-563))) 58) (($ (-407 (-948 (-379)))) 40) (($ (-407 (-948 (-563)))) 32)) (-2615 (((-1262) $) 90)) (-1692 (((-858) $) 84) (($ (-640 (-330))) 78) (($ (-330)) 81) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 76) (($ (-339 (-1706 (QUOTE X)) (-1706 (QUOTE -3174)) (-694))) 31)))
+(((-89 |#1|) (-13 (-396) (-10 -8 (-15 -1692 ($ (-339 (-1706 (QUOTE X)) (-1706 (QUOTE -3174)) (-694)))))) (-1169)) (T -89))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-339 (-1706 (QUOTE X)) (-1706 (QUOTE -3174)) (-694))) (-5 *1 (-89 *3)) (-14 *3 (-1169)))))
+(-13 (-396) (-10 -8 (-15 -1692 ($ (-339 (-1706 (QUOTE X)) (-1706 (QUOTE -3174)) (-694))))))
+((-1622 (((-1257 (-684 |#1|)) (-684 |#1|)) 54)) (-1611 (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 (-640 (-917))))) |#2| (-917)) 44)) (-1633 (((-2 (|:| |minor| (-640 (-917))) (|:| -1420 |#2|) (|:| |minors| (-640 (-640 (-917)))) (|:| |ops| (-640 |#2|))) |#2| (-917)) 65 (|has| |#1| (-363)))))
+(((-90 |#1| |#2|) (-10 -7 (-15 -1611 ((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 (-640 (-917))))) |#2| (-917))) (-15 -1622 ((-1257 (-684 |#1|)) (-684 |#1|))) (IF (|has| |#1| (-363)) (-15 -1633 ((-2 (|:| |minor| (-640 (-917))) (|:| -1420 |#2|) (|:| |minors| (-640 (-640 (-917)))) (|:| |ops| (-640 |#2|))) |#2| (-917))) |%noBranch|)) (-555) (-651 |#1|)) (T -90))
+((-1633 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-4 *5 (-555)) (-5 *2 (-2 (|:| |minor| (-640 (-917))) (|:| -1420 *3) (|:| |minors| (-640 (-640 (-917)))) (|:| |ops| (-640 *3)))) (-5 *1 (-90 *5 *3)) (-5 *4 (-917)) (-4 *3 (-651 *5)))) (-1622 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-1257 (-684 *4))) (-5 *1 (-90 *4 *5)) (-5 *3 (-684 *4)) (-4 *5 (-651 *4)))) (-1611 (*1 *2 *3 *4) (-12 (-4 *5 (-555)) (-5 *2 (-2 (|:| -1957 (-684 *5)) (|:| |vec| (-1257 (-640 (-917)))))) (-5 *1 (-90 *5 *3)) (-5 *4 (-917)) (-4 *3 (-651 *5)))))
+(-10 -7 (-15 -1611 ((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 (-640 (-917))))) |#2| (-917))) (-15 -1622 ((-1257 (-684 |#1|)) (-684 |#1|))) (IF (|has| |#1| (-363)) (-15 -1633 ((-2 (|:| |minor| (-640 (-917))) (|:| -1420 |#2|) (|:| |minors| (-640 (-640 (-917)))) (|:| |ops| (-640 |#2|))) |#2| (-917))) |%noBranch|))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2635 ((|#1| $) 35)) (-3001 (((-112) $ (-767)) NIL)) (-2569 (($) NIL T CONST)) (-2147 ((|#1| |#1| $) 30)) (-2136 ((|#1| $) 28)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2627 ((|#1| $) NIL)) (-3867 (($ |#1| $) 31)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2808 ((|#1| $) 29)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) 16)) (-3445 (($) 39)) (-2369 (((-767) $) 26)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) 15)) (-1692 (((-858) $) 25 (|has| |#1| (-610 (-858))))) (-2820 (($ (-640 |#1|)) NIL)) (-1643 (($ (-640 |#1|)) 37)) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 13 (|has| |#1| (-1093)))) (-3610 (((-767) $) 10 (|has| $ (-6 -4408)))))
+(((-91 |#1|) (-13 (-1114 |#1|) (-10 -8 (-15 -1643 ($ (-640 |#1|))))) (-1093)) (T -91))
+((-1643 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-91 *3)))))
+(-13 (-1114 |#1|) (-10 -8 (-15 -1643 ($ (-640 |#1|)))))
+((-1692 (((-858) $) 13) (($ (-1174)) 9) (((-1174) $) 8)))
+(((-92 |#1|) (-10 -8 (-15 -1692 ((-1174) |#1|)) (-15 -1692 (|#1| (-1174))) (-15 -1692 ((-858) |#1|))) (-93)) (T -92))
+NIL
+(-10 -8 (-15 -1692 ((-1174) |#1|)) (-15 -1692 (|#1| (-1174))) (-15 -1692 ((-858) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ (-1174)) 16) (((-1174) $) 15)) (-1718 (((-112) $ $) 6)))
(((-93) (-140)) (T -93))
NIL
(-13 (-1093) (-490 (-1174)))
(((-102) . T) ((-613 #0=(-1174)) . T) ((-610 (-858)) . T) ((-610 #0#) . T) ((-490 #0#) . T) ((-1093) . T))
-((-1722 (($ $) 10)) (-1735 (($ $) 12)))
-(((-94 |#1|) (-10 -8 (-15 -1735 (|#1| |#1|)) (-15 -1722 (|#1| |#1|))) (-95)) (T -94))
+((-1721 (($ $) 10)) (-1734 (($ $) 12)))
+(((-94 |#1|) (-10 -8 (-15 -1734 (|#1| |#1|)) (-15 -1721 (|#1| |#1|))) (-95)) (T -94))
NIL
-(-10 -8 (-15 -1735 (|#1| |#1|)) (-15 -1722 (|#1| |#1|)))
-((-1695 (($ $) 11)) (-1667 (($ $) 10)) (-1722 (($ $) 9)) (-1735 (($ $) 8)) (-1710 (($ $) 7)) (-1680 (($ $) 6)))
+(-10 -8 (-15 -1734 (|#1| |#1|)) (-15 -1721 (|#1| |#1|)))
+((-1694 (($ $) 11)) (-1666 (($ $) 10)) (-1721 (($ $) 9)) (-1734 (($ $) 8)) (-1709 (($ $) 7)) (-1679 (($ $) 6)))
(((-95) (-140)) (T -95))
-((-1695 (*1 *1 *1) (-4 *1 (-95))) (-1667 (*1 *1 *1) (-4 *1 (-95))) (-1722 (*1 *1 *1) (-4 *1 (-95))) (-1735 (*1 *1 *1) (-4 *1 (-95))) (-1710 (*1 *1 *1) (-4 *1 (-95))) (-1680 (*1 *1 *1) (-4 *1 (-95))))
-(-13 (-10 -8 (-15 -1680 ($ $)) (-15 -1710 ($ $)) (-15 -1735 ($ $)) (-15 -1722 ($ $)) (-15 -1667 ($ $)) (-15 -1695 ($ $))))
-((-1677 (((-112) $ $) NIL)) (-3348 (((-1128) $) 9)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 17) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-96) (-13 (-1076) (-10 -8 (-15 -3348 ((-1128) $))))) (T -96))
-((-3348 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-96)))))
-(-13 (-1076) (-10 -8 (-15 -3348 ((-1128) $))))
-((-1677 (((-112) $ $) NIL)) (-2855 (((-379) (-1151) (-379)) 42) (((-379) (-1151) (-1151) (-379)) 41)) (-2481 (((-379) (-379)) 33)) (-2656 (((-1262)) 36)) (-3573 (((-1151) $) NIL)) (-1831 (((-379) (-1151) (-1151)) 46) (((-379) (-1151)) 48)) (-1694 (((-1113) $) NIL)) (-3449 (((-379) (-1151) (-1151)) 47)) (-2097 (((-379) (-1151) (-1151)) 49) (((-379) (-1151)) 50)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-97) (-13 (-1093) (-10 -7 (-15 -1831 ((-379) (-1151) (-1151))) (-15 -1831 ((-379) (-1151))) (-15 -2097 ((-379) (-1151) (-1151))) (-15 -2097 ((-379) (-1151))) (-15 -3449 ((-379) (-1151) (-1151))) (-15 -2656 ((-1262))) (-15 -2481 ((-379) (-379))) (-15 -2855 ((-379) (-1151) (-379))) (-15 -2855 ((-379) (-1151) (-1151) (-379))) (-6 -4407)))) (T -97))
-((-1831 (*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))) (-1831 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))) (-2097 (*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))) (-2097 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))) (-3449 (*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))) (-2656 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-97)))) (-2481 (*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-97)))) (-2855 (*1 *2 *3 *2) (-12 (-5 *2 (-379)) (-5 *3 (-1151)) (-5 *1 (-97)))) (-2855 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-379)) (-5 *3 (-1151)) (-5 *1 (-97)))))
-(-13 (-1093) (-10 -7 (-15 -1831 ((-379) (-1151) (-1151))) (-15 -1831 ((-379) (-1151))) (-15 -2097 ((-379) (-1151) (-1151))) (-15 -2097 ((-379) (-1151))) (-15 -3449 ((-379) (-1151) (-1151))) (-15 -2656 ((-1262))) (-15 -2481 ((-379) (-379))) (-15 -2855 ((-379) (-1151) (-379))) (-15 -2855 ((-379) (-1151) (-1151) (-379))) (-6 -4407)))
+((-1694 (*1 *1 *1) (-4 *1 (-95))) (-1666 (*1 *1 *1) (-4 *1 (-95))) (-1721 (*1 *1 *1) (-4 *1 (-95))) (-1734 (*1 *1 *1) (-4 *1 (-95))) (-1709 (*1 *1 *1) (-4 *1 (-95))) (-1679 (*1 *1 *1) (-4 *1 (-95))))
+(-13 (-10 -8 (-15 -1679 ($ $)) (-15 -1709 ($ $)) (-15 -1734 ($ $)) (-15 -1721 ($ $)) (-15 -1666 ($ $)) (-15 -1694 ($ $))))
+((-1677 (((-112) $ $) NIL)) (-3352 (((-1128) $) 9)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 17) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-96) (-13 (-1076) (-10 -8 (-15 -3352 ((-1128) $))))) (T -96))
+((-3352 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-96)))))
+(-13 (-1076) (-10 -8 (-15 -3352 ((-1128) $))))
+((-1677 (((-112) $ $) NIL)) (-1659 (((-379) (-1151) (-379)) 42) (((-379) (-1151) (-1151) (-379)) 41)) (-1670 (((-379) (-379)) 33)) (-1680 (((-1262)) 36)) (-3854 (((-1151) $) NIL)) (-1725 (((-379) (-1151) (-1151)) 46) (((-379) (-1151)) 48)) (-1693 (((-1113) $) NIL)) (-1695 (((-379) (-1151) (-1151)) 47)) (-1713 (((-379) (-1151) (-1151)) 49) (((-379) (-1151)) 50)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-97) (-13 (-1093) (-10 -7 (-15 -1725 ((-379) (-1151) (-1151))) (-15 -1725 ((-379) (-1151))) (-15 -1713 ((-379) (-1151) (-1151))) (-15 -1713 ((-379) (-1151))) (-15 -1695 ((-379) (-1151) (-1151))) (-15 -1680 ((-1262))) (-15 -1670 ((-379) (-379))) (-15 -1659 ((-379) (-1151) (-379))) (-15 -1659 ((-379) (-1151) (-1151) (-379))) (-6 -4408)))) (T -97))
+((-1725 (*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))) (-1725 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))) (-1713 (*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))) (-1713 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))) (-1695 (*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))) (-1680 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-97)))) (-1670 (*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-97)))) (-1659 (*1 *2 *3 *2) (-12 (-5 *2 (-379)) (-5 *3 (-1151)) (-5 *1 (-97)))) (-1659 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-379)) (-5 *3 (-1151)) (-5 *1 (-97)))))
+(-13 (-1093) (-10 -7 (-15 -1725 ((-379) (-1151) (-1151))) (-15 -1725 ((-379) (-1151))) (-15 -1713 ((-379) (-1151) (-1151))) (-15 -1713 ((-379) (-1151))) (-15 -1695 ((-379) (-1151) (-1151))) (-15 -1680 ((-1262))) (-15 -1670 ((-379) (-379))) (-15 -1659 ((-379) (-1151) (-379))) (-15 -1659 ((-379) (-1151) (-1151) (-379))) (-6 -4408)))
NIL
(((-98) (-140)) (T -98))
NIL
-(-13 (-10 -7 (-6 -4407) (-6 (-4409 "*")) (-6 -4408) (-6 -4404) (-6 -4402) (-6 -4401) (-6 -4400) (-6 -4405) (-6 -4399) (-6 -4398) (-6 -4397) (-6 -4396) (-6 -4395) (-6 -4403) (-6 -4406) (-6 |NullSquare|) (-6 |JacobiIdentity|) (-6 -4394)))
-((-1677 (((-112) $ $) NIL)) (-4239 (($) NIL T CONST)) (-3400 (((-3 $ "failed") $) NIL)) (-3827 (((-112) $) NIL)) (-4098 (($ (-1 |#1| |#1|)) 25) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 24) (($ (-1 |#1| |#1| (-563))) 22)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 14)) (-1694 (((-1113) $) NIL)) (-2309 ((|#1| $ |#1|) 11)) (-4339 (($ $ $) NIL)) (-2146 (($ $ $) NIL)) (-1693 (((-858) $) 20)) (-2254 (($) 8 T CONST)) (-1718 (((-112) $ $) 10)) (-1837 (($ $ $) NIL)) (** (($ $ (-917)) 27) (($ $ (-767)) NIL) (($ $ (-563)) 16)) (* (($ $ $) 28)))
-(((-99 |#1|) (-13 (-473) (-286 |#1| |#1|) (-10 -8 (-15 -4098 ($ (-1 |#1| |#1|))) (-15 -4098 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -4098 ($ (-1 |#1| |#1| (-563)))))) (-1045)) (T -99))
-((-4098 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-99 *3)))) (-4098 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-99 *3)))) (-4098 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3 (-563))) (-4 *3 (-1045)) (-5 *1 (-99 *3)))))
-(-13 (-473) (-286 |#1| |#1|) (-10 -8 (-15 -4098 ($ (-1 |#1| |#1|))) (-15 -4098 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -4098 ($ (-1 |#1| |#1| (-563))))))
-((-3202 (((-418 |#2|) |#2| (-640 |#2|)) 10) (((-418 |#2|) |#2| |#2|) 11)))
-(((-100 |#1| |#2|) (-10 -7 (-15 -3202 ((-418 |#2|) |#2| |#2|)) (-15 -3202 ((-418 |#2|) |#2| (-640 |#2|)))) (-13 (-452) (-147)) (-1233 |#1|)) (T -100))
-((-3202 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-13 (-452) (-147))) (-5 *2 (-418 *3)) (-5 *1 (-100 *5 *3)))) (-3202 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-452) (-147))) (-5 *2 (-418 *3)) (-5 *1 (-100 *4 *3)) (-4 *3 (-1233 *4)))))
-(-10 -7 (-15 -3202 ((-418 |#2|) |#2| |#2|)) (-15 -3202 ((-418 |#2|) |#2| (-640 |#2|))))
+(-13 (-10 -7 (-6 -4408) (-6 (-4410 "*")) (-6 -4409) (-6 -4405) (-6 -4403) (-6 -4402) (-6 -4401) (-6 -4406) (-6 -4400) (-6 -4399) (-6 -4398) (-6 -4397) (-6 -4396) (-6 -4404) (-6 -4407) (-6 |NullSquare|) (-6 |JacobiIdentity|) (-6 -4395)))
+((-1677 (((-112) $ $) NIL)) (-2569 (($) NIL T CONST)) (-3951 (((-3 $ "failed") $) NIL)) (-3401 (((-112) $) NIL)) (-1733 (($ (-1 |#1| |#1|)) 25) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 24) (($ (-1 |#1| |#1| (-563))) 22)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 14)) (-1693 (((-1113) $) NIL)) (-2308 ((|#1| $ |#1|) 11)) (-2150 (($ $ $) NIL)) (-1745 (($ $ $) NIL)) (-1692 (((-858) $) 20)) (-2253 (($) 8 T CONST)) (-1718 (((-112) $ $) 10)) (-1836 (($ $ $) NIL)) (** (($ $ (-917)) 27) (($ $ (-767)) NIL) (($ $ (-563)) 16)) (* (($ $ $) 28)))
+(((-99 |#1|) (-13 (-473) (-286 |#1| |#1|) (-10 -8 (-15 -1733 ($ (-1 |#1| |#1|))) (-15 -1733 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -1733 ($ (-1 |#1| |#1| (-563)))))) (-1045)) (T -99))
+((-1733 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-99 *3)))) (-1733 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-99 *3)))) (-1733 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3 (-563))) (-4 *3 (-1045)) (-5 *1 (-99 *3)))))
+(-13 (-473) (-286 |#1| |#1|) (-10 -8 (-15 -1733 ($ (-1 |#1| |#1|))) (-15 -1733 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -1733 ($ (-1 |#1| |#1| (-563))))))
+((-3287 (((-418 |#2|) |#2| (-640 |#2|)) 10) (((-418 |#2|) |#2| |#2|) 11)))
+(((-100 |#1| |#2|) (-10 -7 (-15 -3287 ((-418 |#2|) |#2| |#2|)) (-15 -3287 ((-418 |#2|) |#2| (-640 |#2|)))) (-13 (-452) (-147)) (-1233 |#1|)) (T -100))
+((-3287 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-13 (-452) (-147))) (-5 *2 (-418 *3)) (-5 *1 (-100 *5 *3)))) (-3287 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-452) (-147))) (-5 *2 (-418 *3)) (-5 *1 (-100 *4 *3)) (-4 *3 (-1233 *4)))))
+(-10 -7 (-15 -3287 ((-418 |#2|) |#2| |#2|)) (-15 -3287 ((-418 |#2|) |#2| (-640 |#2|))))
((-1677 (((-112) $ $) 9)))
(((-101 |#1|) (-10 -8 (-15 -1677 ((-112) |#1| |#1|))) (-102)) (T -101))
NIL
@@ -352,654 +352,654 @@ NIL
(((-102) (-140)) (T -102))
((-1677 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))) (-1718 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))))
(-13 (-10 -8 (-15 -1718 ((-112) $ $)) (-15 -1677 ((-112) $ $))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2619 ((|#1| $) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-2936 ((|#1| $ |#1|) 13 (|has| $ (-6 -4408)))) (-2641 (($ $ $) NIL (|has| $ (-6 -4408)))) (-4190 (($ $ $) NIL (|has| $ (-6 -4408)))) (-3520 (($ $ (-640 |#1|)) 15)) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4408))) (($ $ "left" $) NIL (|has| $ (-6 -4408))) (($ $ "right" $) NIL (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) NIL (|has| $ (-6 -4408)))) (-4239 (($) NIL T CONST)) (-1701 (($ $) 11)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) NIL)) (-1469 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2219 (($ $ |#1| $) 17)) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2009 ((|#1| $ (-1 |#1| |#1| |#1|)) 25) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 30)) (-1522 (($ $ |#1| (-1 |#1| |#1| |#1|)) 31) (($ $ |#1| (-1 (-640 |#1|) |#1| |#1| |#1|)) 35)) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-1686 (($ $) 10)) (-2512 (((-640 |#1|) $) NIL)) (-2194 (((-112) $) 12)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) 9)) (-3135 (($) 16)) (-2309 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-4071 (((-563) $ $) NIL)) (-1434 (((-112) $) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) NIL)) (-2962 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2276 (($ (-767) |#1|) 19)) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-103 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4407) (-6 -4408) (-15 -2276 ($ (-767) |#1|)) (-15 -3520 ($ $ (-640 |#1|))) (-15 -2009 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2009 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -1522 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -1522 ($ $ |#1| (-1 (-640 |#1|) |#1| |#1| |#1|))))) (-1093)) (T -103))
-((-2276 (*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *1 (-103 *3)) (-4 *3 (-1093)))) (-3520 (*1 *1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-103 *3)))) (-2009 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1093)))) (-2009 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-103 *3)))) (-1522 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1093)) (-5 *1 (-103 *2)))) (-1522 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 (-640 *2) *2 *2 *2)) (-4 *2 (-1093)) (-5 *1 (-103 *2)))))
-(-13 (-125 |#1|) (-10 -8 (-6 -4407) (-6 -4408) (-15 -2276 ($ (-767) |#1|)) (-15 -3520 ($ $ (-640 |#1|))) (-15 -2009 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2009 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -1522 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -1522 ($ $ |#1| (-1 (-640 |#1|) |#1| |#1| |#1|)))))
-((-2772 ((|#3| |#2| |#2|) 28)) (-1486 ((|#1| |#2| |#2|) 39 (|has| |#1| (-6 (-4409 "*"))))) (-1632 ((|#3| |#2| |#2|) 29)) (-2080 ((|#1| |#2|) 42 (|has| |#1| (-6 (-4409 "*"))))))
-(((-104 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2772 (|#3| |#2| |#2|)) (-15 -1632 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4409 "*"))) (PROGN (-15 -1486 (|#1| |#2| |#2|)) (-15 -2080 (|#1| |#2|))) |%noBranch|)) (-1045) (-1233 |#1|) (-682 |#1| |#4| |#5|) (-373 |#1|) (-373 |#1|)) (T -104))
-((-2080 (*1 *2 *3) (-12 (|has| *2 (-6 (-4409 "*"))) (-4 *5 (-373 *2)) (-4 *6 (-373 *2)) (-4 *2 (-1045)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1233 *2)) (-4 *4 (-682 *2 *5 *6)))) (-1486 (*1 *2 *3 *3) (-12 (|has| *2 (-6 (-4409 "*"))) (-4 *5 (-373 *2)) (-4 *6 (-373 *2)) (-4 *2 (-1045)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1233 *2)) (-4 *4 (-682 *2 *5 *6)))) (-1632 (*1 *2 *3 *3) (-12 (-4 *4 (-1045)) (-4 *2 (-682 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1233 *4)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)))) (-2772 (*1 *2 *3 *3) (-12 (-4 *4 (-1045)) (-4 *2 (-682 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1233 *4)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)))))
-(-10 -7 (-15 -2772 (|#3| |#2| |#2|)) (-15 -1632 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4409 "*"))) (PROGN (-15 -1486 (|#1| |#2| |#2|)) (-15 -2080 (|#1| |#2|))) |%noBranch|))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-4165 (((-640 (-1169))) 33)) (-1703 (((-2 (|:| |zeros| (-1149 (-225))) (|:| |ones| (-1149 (-225))) (|:| |singularities| (-1149 (-225)))) (-1169)) 35)) (-1718 (((-112) $ $) NIL)))
-(((-105) (-13 (-1093) (-10 -7 (-15 -4165 ((-640 (-1169)))) (-15 -1703 ((-2 (|:| |zeros| (-1149 (-225))) (|:| |ones| (-1149 (-225))) (|:| |singularities| (-1149 (-225)))) (-1169))) (-6 -4407)))) (T -105))
-((-4165 (*1 *2) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-105)))) (-1703 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-2 (|:| |zeros| (-1149 (-225))) (|:| |ones| (-1149 (-225))) (|:| |singularities| (-1149 (-225))))) (-5 *1 (-105)))))
-(-13 (-1093) (-10 -7 (-15 -4165 ((-640 (-1169)))) (-15 -1703 ((-2 (|:| |zeros| (-1149 (-225))) (|:| |ones| (-1149 (-225))) (|:| |singularities| (-1149 (-225)))) (-1169))) (-6 -4407)))
-((-2233 (($ (-640 |#2|)) 11)))
-(((-106 |#1| |#2|) (-10 -8 (-15 -2233 (|#1| (-640 |#2|)))) (-107 |#2|) (-1208)) (T -106))
-NIL
-(-10 -8 (-15 -2233 (|#1| (-640 |#2|))))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2759 (((-112) $ (-767)) 8)) (-4239 (($) 7 T CONST)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2964 ((|#1| $) 39)) (-1812 (($ |#1| $) 40)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3755 ((|#1| $) 41)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-2233 (($ (-640 |#1|)) 42)) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2618 ((|#1| $) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-2336 ((|#1| $ |#1|) 13 (|has| $ (-6 -4409)))) (-2996 (($ $ $) NIL (|has| $ (-6 -4409)))) (-3007 (($ $ $) NIL (|has| $ (-6 -4409)))) (-1948 (($ $ (-640 |#1|)) 15)) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4409))) (($ $ "left" $) NIL (|has| $ (-6 -4409))) (($ $ "right" $) NIL (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) NIL (|has| $ (-6 -4409)))) (-2569 (($) NIL T CONST)) (-1700 (($ $) 11)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) NIL)) (-2358 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2218 (($ $ |#1| $) 17)) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1937 ((|#1| $ (-1 |#1| |#1| |#1|)) 25) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 30)) (-3298 (($ $ |#1| (-1 |#1| |#1| |#1|)) 31) (($ $ |#1| (-1 (-640 |#1|) |#1| |#1| |#1|)) 35)) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-1685 (($ $) 10)) (-2511 (((-640 |#1|) $) NIL)) (-1298 (((-112) $) 12)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) 9)) (-3445 (($) 16)) (-2308 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2379 (((-563) $ $) NIL)) (-2889 (((-112) $) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) NIL)) (-2367 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3128 (($ (-767) |#1|) 19)) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-103 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4408) (-6 -4409) (-15 -3128 ($ (-767) |#1|)) (-15 -1948 ($ $ (-640 |#1|))) (-15 -1937 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -1937 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -3298 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -3298 ($ $ |#1| (-1 (-640 |#1|) |#1| |#1| |#1|))))) (-1093)) (T -103))
+((-3128 (*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *1 (-103 *3)) (-4 *3 (-1093)))) (-1948 (*1 *1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-103 *3)))) (-1937 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1093)))) (-1937 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-103 *3)))) (-3298 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1093)) (-5 *1 (-103 *2)))) (-3298 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 (-640 *2) *2 *2 *2)) (-4 *2 (-1093)) (-5 *1 (-103 *2)))))
+(-13 (-125 |#1|) (-10 -8 (-6 -4408) (-6 -4409) (-15 -3128 ($ (-767) |#1|)) (-15 -1948 ($ $ (-640 |#1|))) (-15 -1937 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -1937 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -3298 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -3298 ($ $ |#1| (-1 (-640 |#1|) |#1| |#1| |#1|)))))
+((-3138 ((|#3| |#2| |#2|) 28)) (-2248 ((|#1| |#2| |#2|) 39 (|has| |#1| (-6 (-4410 "*"))))) (-2232 ((|#3| |#2| |#2|) 29)) (-2523 ((|#1| |#2|) 42 (|has| |#1| (-6 (-4410 "*"))))))
+(((-104 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3138 (|#3| |#2| |#2|)) (-15 -2232 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4410 "*"))) (PROGN (-15 -2248 (|#1| |#2| |#2|)) (-15 -2523 (|#1| |#2|))) |%noBranch|)) (-1045) (-1233 |#1|) (-682 |#1| |#4| |#5|) (-373 |#1|) (-373 |#1|)) (T -104))
+((-2523 (*1 *2 *3) (-12 (|has| *2 (-6 (-4410 "*"))) (-4 *5 (-373 *2)) (-4 *6 (-373 *2)) (-4 *2 (-1045)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1233 *2)) (-4 *4 (-682 *2 *5 *6)))) (-2248 (*1 *2 *3 *3) (-12 (|has| *2 (-6 (-4410 "*"))) (-4 *5 (-373 *2)) (-4 *6 (-373 *2)) (-4 *2 (-1045)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1233 *2)) (-4 *4 (-682 *2 *5 *6)))) (-2232 (*1 *2 *3 *3) (-12 (-4 *4 (-1045)) (-4 *2 (-682 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1233 *4)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)))) (-3138 (*1 *2 *3 *3) (-12 (-4 *4 (-1045)) (-4 *2 (-682 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1233 *4)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)))))
+(-10 -7 (-15 -3138 (|#3| |#2| |#2|)) (-15 -2232 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4410 "*"))) (PROGN (-15 -2248 (|#1| |#2| |#2|)) (-15 -2523 (|#1| |#2|))) |%noBranch|))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-2620 (((-640 (-1169))) 33)) (-2534 (((-2 (|:| |zeros| (-1149 (-225))) (|:| |ones| (-1149 (-225))) (|:| |singularities| (-1149 (-225)))) (-1169)) 35)) (-1718 (((-112) $ $) NIL)))
+(((-105) (-13 (-1093) (-10 -7 (-15 -2620 ((-640 (-1169)))) (-15 -2534 ((-2 (|:| |zeros| (-1149 (-225))) (|:| |ones| (-1149 (-225))) (|:| |singularities| (-1149 (-225)))) (-1169))) (-6 -4408)))) (T -105))
+((-2620 (*1 *2) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-105)))) (-2534 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-2 (|:| |zeros| (-1149 (-225))) (|:| |ones| (-1149 (-225))) (|:| |singularities| (-1149 (-225))))) (-5 *1 (-105)))))
+(-13 (-1093) (-10 -7 (-15 -2620 ((-640 (-1169)))) (-15 -2534 ((-2 (|:| |zeros| (-1149 (-225))) (|:| |ones| (-1149 (-225))) (|:| |singularities| (-1149 (-225)))) (-1169))) (-6 -4408)))
+((-2820 (($ (-640 |#2|)) 11)))
+(((-106 |#1| |#2|) (-10 -8 (-15 -2820 (|#1| (-640 |#2|)))) (-107 |#2|) (-1208)) (T -106))
+NIL
+(-10 -8 (-15 -2820 (|#1| (-640 |#2|))))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-3001 (((-112) $ (-767)) 8)) (-2569 (($) 7 T CONST)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2627 ((|#1| $) 39)) (-3867 (($ |#1| $) 40)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-2808 ((|#1| $) 41)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-2820 (($ (-640 |#1|)) 42)) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-107 |#1|) (-140) (-1208)) (T -107))
-((-2233 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-4 *1 (-107 *3)))) (-3755 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1208)))) (-1812 (*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1208)))) (-2964 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1208)))))
-(-13 (-489 |t#1|) (-10 -8 (-6 -4408) (-15 -2233 ($ (-640 |t#1|))) (-15 -3755 (|t#1| $)) (-15 -1812 ($ |t#1| $)) (-15 -2964 (|t#1| $))))
-(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3401 (((-563) $) NIL (|has| (-563) (-307)))) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-1919 (((-112) $ $) NIL)) (-1857 (((-563) $) NIL (|has| (-563) (-816)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (|has| (-563) (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-563) (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| (-563) (-1034 (-563))))) (-2058 (((-563) $) NIL) (((-1169) $) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| (-563) (-1034 (-563)))) (((-563) $) NIL (|has| (-563) (-1034 (-563))))) (-3090 (($ $ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) NIL (|has| (-563) (-545)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3101 (((-112) $) NIL (|has| (-563) (-816)))) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-563) (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-563) (-882 (-379))))) (-3827 (((-112) $) NIL)) (-2711 (($ $) NIL)) (-2143 (((-563) $) NIL)) (-2408 (((-3 $ "failed") $) NIL (|has| (-563) (-1144)))) (-1419 (((-112) $) NIL (|has| (-563) (-816)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3084 (($ $ $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| (-563) (-846)))) (-2240 (($ (-1 (-563) (-563)) $) NIL)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| (-563) (-1144)) CONST)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-4215 (($ $) NIL (|has| (-563) (-307))) (((-407 (-563)) $) NIL)) (-1583 (((-563) $) NIL (|has| (-563) (-545)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1540 (($ $ (-640 (-563)) (-640 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-563) (-563)) NIL (|has| (-563) (-309 (-563)))) (($ $ (-294 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-294 (-563)))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-1169)) (-640 (-563))) NIL (|has| (-563) (-514 (-1169) (-563)))) (($ $ (-1169) (-563)) NIL (|has| (-563) (-514 (-1169) (-563))))) (-2628 (((-767) $) NIL)) (-2309 (($ $ (-563)) NIL (|has| (-563) (-286 (-563) (-563))))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-4202 (($ $) NIL (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-1801 (($ $) NIL)) (-2154 (((-563) $) NIL)) (-2220 (((-888 (-563)) $) NIL (|has| (-563) (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| (-563) (-611 (-888 (-379))))) (((-536) $) NIL (|has| (-563) (-611 (-536)))) (((-379) $) NIL (|has| (-563) (-1018))) (((-225) $) NIL (|has| (-563) (-1018)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-563) (-905))))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) 8) (($ (-563)) NIL) (($ (-1169)) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) NIL) (((-1000 2) $) 10)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| (-563) (-905))) (|has| (-563) (-145))))) (-1675 (((-767)) NIL)) (-4194 (((-563) $) NIL (|has| (-563) (-545)))) (-3330 (($ (-407 (-563))) 9)) (-2126 (((-112) $ $) NIL)) (-2509 (($ $) NIL (|has| (-563) (-816)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $) NIL (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-1778 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1756 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1744 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1837 (($ $ $) NIL) (($ (-563) (-563)) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ (-563) $) NIL) (($ $ (-563)) NIL)))
-(((-108) (-13 (-988 (-563)) (-610 (-407 (-563))) (-610 (-1000 2)) (-10 -8 (-15 -4215 ((-407 (-563)) $)) (-15 -3330 ($ (-407 (-563))))))) (T -108))
-((-4215 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-108)))) (-3330 (*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-108)))))
-(-13 (-988 (-563)) (-610 (-407 (-563))) (-610 (-1000 2)) (-10 -8 (-15 -4215 ((-407 (-563)) $)) (-15 -3330 ($ (-407 (-563))))))
-((-1933 (((-640 (-961)) $) 14)) (-3348 (((-1169) $) 10)) (-1693 (((-858) $) 23)) (-1666 (($ (-1169) (-640 (-961))) 15)))
-(((-109) (-13 (-610 (-858)) (-10 -8 (-15 -3348 ((-1169) $)) (-15 -1933 ((-640 (-961)) $)) (-15 -1666 ($ (-1169) (-640 (-961))))))) (T -109))
-((-3348 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-109)))) (-1933 (*1 *2 *1) (-12 (-5 *2 (-640 (-961))) (-5 *1 (-109)))) (-1666 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-961))) (-5 *1 (-109)))))
-(-13 (-610 (-858)) (-10 -8 (-15 -3348 ((-1169) $)) (-15 -1933 ((-640 (-961)) $)) (-15 -1666 ($ (-1169) (-640 (-961))))))
-((-1677 (((-112) $ $) NIL)) (-3380 (($ $) NIL)) (-2212 (($ $ $) NIL)) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-3523 (((-112) $) NIL (|has| (-112) (-846))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-2770 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-112) (-846)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4408)))) (-1642 (($ $) NIL (|has| (-112) (-846))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-1849 (((-112) $ (-1224 (-563)) (-112)) NIL (|has| $ (-6 -4408))) (((-112) $ (-563) (-112)) NIL (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-112) (-1093))))) (-1459 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4407))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-112) (-1093))))) (-2444 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4407)) (|has| (-112) (-1093))))) (-4355 (((-112) $ (-563) (-112)) NIL (|has| $ (-6 -4408)))) (-4293 (((-112) $ (-563)) NIL)) (-4368 (((-563) (-112) $ (-563)) NIL (|has| (-112) (-1093))) (((-563) (-112) $) NIL (|has| (-112) (-1093))) (((-563) (-1 (-112) (-112)) $) NIL)) (-2659 (((-640 (-112)) $) NIL (|has| $ (-6 -4407)))) (-2202 (($ $ $) NIL)) (-2176 (($ $) NIL)) (-1546 (($ $ $) NIL)) (-1566 (($ (-767) (-112)) 8)) (-3572 (($ $ $) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) NIL (|has| (-563) (-846)))) (-3084 (($ $ $) NIL)) (-3164 (($ $ $) NIL (|has| (-112) (-846))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-2259 (((-640 (-112)) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-112) (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL)) (-4345 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-112) (-112) (-112)) $ $) NIL) (($ (-1 (-112) (-112)) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-3396 (($ $ $ (-563)) NIL) (($ (-112) $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL)) (-3781 (((-112) $) NIL (|has| (-563) (-846)))) (-4203 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-2358 (($ $ (-112)) NIL (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-112)) (-640 (-112))) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-294 (-112))) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-640 (-294 (-112)))) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-112) (-1093))))) (-2836 (((-640 (-112)) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 (($ $ (-1224 (-563))) NIL) (((-112) $ (-563)) NIL) (((-112) $ (-563) (-112)) NIL)) (-2963 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-1709 (((-767) (-112) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-112) (-1093)))) (((-767) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4407)))) (-3076 (($ $ $ (-563)) NIL (|has| $ (-6 -4408)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-112) (-611 (-536))))) (-1707 (($ (-640 (-112))) NIL)) (-2853 (($ (-640 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-1693 (((-858) $) NIL)) (-1734 (($ (-767) (-112)) 9)) (-4383 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4407)))) (-2190 (($ $ $) NIL)) (-1534 (($ $ $) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)) (-1521 (($ $ $) NIL)) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-110) (-13 (-123) (-10 -8 (-15 -1734 ($ (-767) (-112)))))) (T -110))
-((-1734 (*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *3 (-112)) (-5 *1 (-110)))))
-(-13 (-123) (-10 -8 (-15 -1734 ($ (-767) (-112)))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#1| $) 23) (($ $ |#2|) 26)))
+((-2820 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-4 *1 (-107 *3)))) (-2808 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1208)))) (-3867 (*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1208)))) (-2627 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1208)))))
+(-13 (-489 |t#1|) (-10 -8 (-6 -4409) (-15 -2820 ($ (-640 |t#1|))) (-15 -2808 (|t#1| $)) (-15 -3867 ($ |t#1| $)) (-15 -2627 (|t#1| $))))
+(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3944 (((-563) $) NIL (|has| (-563) (-307)))) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2003 (((-112) $ $) NIL)) (-2807 (((-563) $) NIL (|has| (-563) (-816)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (|has| (-563) (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-563) (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| (-563) (-1034 (-563))))) (-2057 (((-563) $) NIL) (((-1169) $) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| (-563) (-1034 (-563)))) (((-563) $) NIL (|has| (-563) (-1034 (-563))))) (-3094 (($ $ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) NIL (|has| (-563) (-545)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-3414 (((-112) $) NIL (|has| (-563) (-816)))) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-563) (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-563) (-882 (-379))))) (-3401 (((-112) $) NIL)) (-2043 (($ $) NIL)) (-2143 (((-563) $) NIL)) (-1983 (((-3 $ "failed") $) NIL (|has| (-563) (-1144)))) (-3426 (((-112) $) NIL (|has| (-563) (-816)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3088 (($ $ $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| (-563) (-846)))) (-2238 (($ (-1 (-563) (-563)) $) NIL)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| (-563) (-1144)) CONST)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3935 (($ $) NIL (|has| (-563) (-307))) (((-407 (-563)) $) NIL)) (-3954 (((-563) $) NIL (|has| (-563) (-545)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1542 (($ $ (-640 (-563)) (-640 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-563) (-563)) NIL (|has| (-563) (-309 (-563)))) (($ $ (-294 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-294 (-563)))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-1169)) (-640 (-563))) NIL (|has| (-563) (-514 (-1169) (-563)))) (($ $ (-1169) (-563)) NIL (|has| (-563) (-514 (-1169) (-563))))) (-1993 (((-767) $) NIL)) (-2308 (($ $ (-563)) NIL (|has| (-563) (-286 (-563) (-563))))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-4203 (($ $) NIL (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-2033 (($ $) NIL)) (-2153 (((-563) $) NIL)) (-2219 (((-888 (-563)) $) NIL (|has| (-563) (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| (-563) (-611 (-888 (-379))))) (((-536) $) NIL (|has| (-563) (-611 (-536)))) (((-379) $) NIL (|has| (-563) (-1018))) (((-225) $) NIL (|has| (-563) (-1018)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-563) (-905))))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) 8) (($ (-563)) NIL) (($ (-1169)) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) NIL) (((-1000 2) $) 10)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| (-563) (-905))) (|has| (-563) (-145))))) (-3914 (((-767)) NIL)) (-3965 (((-563) $) NIL (|has| (-563) (-545)))) (-4148 (($ (-407 (-563))) 9)) (-3223 (((-112) $ $) NIL)) (-1462 (($ $) NIL (|has| (-563) (-816)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $) NIL (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-1779 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1754 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1743 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1836 (($ $ $) NIL) (($ (-563) (-563)) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ (-563) $) NIL) (($ $ (-563)) NIL)))
+(((-108) (-13 (-988 (-563)) (-610 (-407 (-563))) (-610 (-1000 2)) (-10 -8 (-15 -3935 ((-407 (-563)) $)) (-15 -4148 ($ (-407 (-563))))))) (T -108))
+((-3935 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-108)))) (-4148 (*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-108)))))
+(-13 (-988 (-563)) (-610 (-407 (-563))) (-610 (-1000 2)) (-10 -8 (-15 -3935 ((-407 (-563)) $)) (-15 -4148 ($ (-407 (-563))))))
+((-1932 (((-640 (-961)) $) 14)) (-3352 (((-1169) $) 10)) (-1692 (((-858) $) 23)) (-1501 (($ (-1169) (-640 (-961))) 15)))
+(((-109) (-13 (-610 (-858)) (-10 -8 (-15 -3352 ((-1169) $)) (-15 -1932 ((-640 (-961)) $)) (-15 -1501 ($ (-1169) (-640 (-961))))))) (T -109))
+((-3352 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-109)))) (-1932 (*1 *2 *1) (-12 (-5 *2 (-640 (-961))) (-5 *1 (-109)))) (-1501 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-961))) (-5 *1 (-109)))))
+(-13 (-610 (-858)) (-10 -8 (-15 -3352 ((-1169) $)) (-15 -1932 ((-640 (-961)) $)) (-15 -1501 ($ (-1169) (-640 (-961))))))
+((-1677 (((-112) $ $) NIL)) (-3384 (($ $) NIL)) (-2210 (($ $ $) NIL)) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4073 (((-112) $) NIL (|has| (-112) (-846))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-4052 (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| (-112) (-846)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4409)))) (-1640 (($ $) NIL (|has| (-112) (-846))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-1849 (((-112) $ (-1224 (-563)) (-112)) NIL (|has| $ (-6 -4409))) (((-112) $ (-563) (-112)) NIL (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-112) (-1093))))) (-1459 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4408))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-112) (-1093))))) (-2444 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4408)) (|has| (-112) (-1093))))) (-4356 (((-112) $ (-563) (-112)) NIL (|has| $ (-6 -4409)))) (-4293 (((-112) $ (-563)) NIL)) (-4369 (((-563) (-112) $ (-563)) NIL (|has| (-112) (-1093))) (((-563) (-112) $) NIL (|has| (-112) (-1093))) (((-563) (-1 (-112) (-112)) $) NIL)) (-2658 (((-640 (-112)) $) NIL (|has| $ (-6 -4408)))) (-2200 (($ $ $) NIL)) (-2174 (($ $) NIL)) (-2292 (($ $ $) NIL)) (-1565 (($ (-767) (-112)) 8)) (-2303 (($ $ $) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) NIL (|has| (-563) (-846)))) (-3088 (($ $ $) NIL)) (-4300 (($ $ $) NIL (|has| (-112) (-846))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-3523 (((-640 (-112)) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-112) (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL)) (-4347 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-112) (-112) (-112)) $ $) NIL) (($ (-1 (-112) (-112)) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-3399 (($ $ $ (-563)) NIL) (($ (-112) $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL)) (-3782 (((-112) $) NIL (|has| (-563) (-846)))) (-1971 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-2221 (($ $ (-112)) NIL (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-112)) (-640 (-112))) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-294 (-112))) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-640 (-294 (-112)))) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-112) (-1093))))) (-2295 (((-640 (-112)) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 (($ $ (-1224 (-563))) NIL) (((-112) $ (-563)) NIL) (((-112) $ (-563) (-112)) NIL)) (-2967 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-1708 (((-767) (-112) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-112) (-1093)))) (((-767) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4408)))) (-4062 (($ $ $ (-563)) NIL (|has| $ (-6 -4409)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-112) (-611 (-536))))) (-1706 (($ (-640 (-112))) NIL)) (-2857 (($ (-640 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-1692 (((-858) $) NIL)) (-3227 (($ (-767) (-112)) 9)) (-1471 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4408)))) (-2188 (($ $ $) NIL)) (-1531 (($ $ $) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)) (-1517 (($ $ $) NIL)) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-110) (-13 (-123) (-10 -8 (-15 -3227 ($ (-767) (-112)))))) (T -110))
+((-3227 (*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *3 (-112)) (-5 *1 (-110)))))
+(-13 (-123) (-10 -8 (-15 -3227 ($ (-767) (-112)))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#1| $) 23) (($ $ |#2|) 26)))
(((-111 |#1| |#2|) (-140) (-1045) (-1045)) (T -111))
NIL
-(-13 (-643 |t#1|) (-1051 |t#2|) (-10 -7 (-6 -4402) (-6 -4401)))
+(-13 (-643 |t#1|) (-1051 |t#2|) (-10 -7 (-6 -4403) (-6 -4402)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-610 (-858)) . T) ((-643 |#1|) . T) ((-1051 |#2|) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3380 (($ $) 10)) (-2212 (($ $ $) 15)) (-1674 (($) 7 T CONST)) (-3217 (($ $) 6)) (-3749 (((-767)) 24)) (-1691 (($) 30)) (-2202 (($ $ $) 13)) (-2176 (($ $) 9)) (-1546 (($ $ $) 16)) (-3572 (($ $ $) 17)) (-3084 (($ $ $) NIL) (($) NIL T CONST)) (-1777 (($ $ $) NIL) (($) NIL T CONST)) (-1476 (((-917) $) 29)) (-3573 (((-1151) $) NIL)) (-2555 (($ (-917)) 28)) (-3234 (($ $ $) 20)) (-1694 (((-1113) $) NIL)) (-3563 (($) 8 T CONST)) (-2515 (($ $ $) 21)) (-2220 (((-536) $) 34)) (-1693 (((-858) $) 37)) (-2190 (($ $ $) 11)) (-1534 (($ $ $) 14)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 19)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 22)) (-1521 (($ $ $) 12)))
-(((-112) (-13 (-840) (-656) (-963) (-611 (-536)) (-10 -8 (-15 -1674 ($) -2669) (-15 -3563 ($) -2669) (-15 -2212 ($ $ $)) (-15 -3572 ($ $ $)) (-15 -1546 ($ $ $)) (-15 -3217 ($ $))))) (T -112))
-((-1674 (*1 *1) (-5 *1 (-112))) (-3563 (*1 *1) (-5 *1 (-112))) (-2212 (*1 *1 *1 *1) (-5 *1 (-112))) (-3572 (*1 *1 *1 *1) (-5 *1 (-112))) (-1546 (*1 *1 *1 *1) (-5 *1 (-112))) (-3217 (*1 *1 *1) (-5 *1 (-112))))
-(-13 (-840) (-656) (-963) (-611 (-536)) (-10 -8 (-15 -1674 ($) -2669) (-15 -3563 ($) -2669) (-15 -2212 ($ $ $)) (-15 -3572 ($ $ $)) (-15 -1546 ($ $ $)) (-15 -3217 ($ $))))
-((-3934 (((-3 (-1 |#1| (-640 |#1|)) "failed") (-114)) 19) (((-114) (-114) (-1 |#1| |#1|)) 13) (((-114) (-114) (-1 |#1| (-640 |#1|))) 11) (((-3 |#1| "failed") (-114) (-640 |#1|)) 21)) (-1644 (((-3 (-640 (-1 |#1| (-640 |#1|))) "failed") (-114)) 25) (((-114) (-114) (-1 |#1| |#1|)) 30) (((-114) (-114) (-640 (-1 |#1| (-640 |#1|)))) 26)) (-2582 (((-114) |#1|) 54 (|has| |#1| (-846)))) (-3292 (((-3 |#1| "failed") (-114)) 48 (|has| |#1| (-846)))))
-(((-113 |#1|) (-10 -7 (-15 -3934 ((-3 |#1| "failed") (-114) (-640 |#1|))) (-15 -3934 ((-114) (-114) (-1 |#1| (-640 |#1|)))) (-15 -3934 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3934 ((-3 (-1 |#1| (-640 |#1|)) "failed") (-114))) (-15 -1644 ((-114) (-114) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1644 ((-114) (-114) (-1 |#1| |#1|))) (-15 -1644 ((-3 (-640 (-1 |#1| (-640 |#1|))) "failed") (-114))) (IF (|has| |#1| (-846)) (PROGN (-15 -2582 ((-114) |#1|)) (-15 -3292 ((-3 |#1| "failed") (-114)))) |%noBranch|)) (-1093)) (T -113))
-((-3292 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-4 *2 (-1093)) (-4 *2 (-846)) (-5 *1 (-113 *2)))) (-2582 (*1 *2 *3) (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-846)) (-4 *3 (-1093)))) (-1644 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-640 (-1 *4 (-640 *4)))) (-5 *1 (-113 *4)) (-4 *4 (-1093)))) (-1644 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1093)) (-5 *1 (-113 *4)))) (-1644 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-640 (-1 *4 (-640 *4)))) (-4 *4 (-1093)) (-5 *1 (-113 *4)))) (-3934 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-640 *4))) (-5 *1 (-113 *4)) (-4 *4 (-1093)))) (-3934 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1093)) (-5 *1 (-113 *4)))) (-3934 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-640 *4))) (-4 *4 (-1093)) (-5 *1 (-113 *4)))) (-3934 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-640 *2)) (-5 *1 (-113 *2)) (-4 *2 (-1093)))))
-(-10 -7 (-15 -3934 ((-3 |#1| "failed") (-114) (-640 |#1|))) (-15 -3934 ((-114) (-114) (-1 |#1| (-640 |#1|)))) (-15 -3934 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3934 ((-3 (-1 |#1| (-640 |#1|)) "failed") (-114))) (-15 -1644 ((-114) (-114) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1644 ((-114) (-114) (-1 |#1| |#1|))) (-15 -1644 ((-3 (-640 (-1 |#1| (-640 |#1|))) "failed") (-114))) (IF (|has| |#1| (-846)) (PROGN (-15 -2582 ((-114) |#1|)) (-15 -3292 ((-3 |#1| "failed") (-114)))) |%noBranch|))
-((-1677 (((-112) $ $) NIL)) (-1326 (((-767) $) 72) (($ $ (-767)) 30)) (-1687 (((-112) $) 32)) (-2662 (($ $ (-1151) (-770)) 26)) (-1960 (($ $ (-45 (-1151) (-770))) 15)) (-3495 (((-3 (-770) "failed") $ (-1151)) 25)) (-1933 (((-45 (-1151) (-770)) $) 14)) (-2361 (($ (-1169)) 17) (($ (-1169) (-767)) 22)) (-1985 (((-112) $) 31)) (-3987 (((-112) $) 33)) (-3348 (((-1169) $) 8)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-2799 (((-112) $ (-1169)) 10)) (-1520 (($ $ (-1 (-536) (-640 (-536)))) 52) (((-3 (-1 (-536) (-640 (-536))) "failed") $) 56)) (-1694 (((-1113) $) NIL)) (-1579 (((-112) $ (-1151)) 29)) (-1998 (($ $ (-1 (-112) $ $)) 35)) (-1463 (((-3 (-1 (-858) (-640 (-858))) "failed") $) 54) (($ $ (-1 (-858) (-640 (-858)))) 41) (($ $ (-1 (-858) (-858))) 43)) (-2429 (($ $ (-1151)) 45)) (-1872 (($ $) 63)) (-2249 (($ $ (-1 (-112) $ $)) 36)) (-1693 (((-858) $) 48)) (-2295 (($ $ (-1151)) 27)) (-1396 (((-3 (-767) "failed") $) 58)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 71)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 78)))
-(((-114) (-13 (-846) (-10 -8 (-15 -3348 ((-1169) $)) (-15 -1933 ((-45 (-1151) (-770)) $)) (-15 -1872 ($ $)) (-15 -2361 ($ (-1169))) (-15 -2361 ($ (-1169) (-767))) (-15 -1396 ((-3 (-767) "failed") $)) (-15 -1985 ((-112) $)) (-15 -1687 ((-112) $)) (-15 -3987 ((-112) $)) (-15 -1326 ((-767) $)) (-15 -1326 ($ $ (-767))) (-15 -1998 ($ $ (-1 (-112) $ $))) (-15 -2249 ($ $ (-1 (-112) $ $))) (-15 -1463 ((-3 (-1 (-858) (-640 (-858))) "failed") $)) (-15 -1463 ($ $ (-1 (-858) (-640 (-858))))) (-15 -1463 ($ $ (-1 (-858) (-858)))) (-15 -1520 ($ $ (-1 (-536) (-640 (-536))))) (-15 -1520 ((-3 (-1 (-536) (-640 (-536))) "failed") $)) (-15 -2799 ((-112) $ (-1169))) (-15 -1579 ((-112) $ (-1151))) (-15 -2295 ($ $ (-1151))) (-15 -2429 ($ $ (-1151))) (-15 -3495 ((-3 (-770) "failed") $ (-1151))) (-15 -2662 ($ $ (-1151) (-770))) (-15 -1960 ($ $ (-45 (-1151) (-770))))))) (T -114))
-((-3348 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-114)))) (-1933 (*1 *2 *1) (-12 (-5 *2 (-45 (-1151) (-770))) (-5 *1 (-114)))) (-1872 (*1 *1 *1) (-5 *1 (-114))) (-2361 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-114)))) (-2361 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-767)) (-5 *1 (-114)))) (-1396 (*1 *2 *1) (|partial| -12 (-5 *2 (-767)) (-5 *1 (-114)))) (-1985 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-1687 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-3987 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-1326 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-114)))) (-1326 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-114)))) (-1998 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-2249 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-1463 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-858) (-640 (-858)))) (-5 *1 (-114)))) (-1463 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-858) (-640 (-858)))) (-5 *1 (-114)))) (-1463 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-858) (-858))) (-5 *1 (-114)))) (-1520 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-536) (-640 (-536)))) (-5 *1 (-114)))) (-1520 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-536) (-640 (-536)))) (-5 *1 (-114)))) (-2799 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-112)) (-5 *1 (-114)))) (-1579 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-112)) (-5 *1 (-114)))) (-2295 (*1 *1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-114)))) (-2429 (*1 *1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-114)))) (-3495 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1151)) (-5 *2 (-770)) (-5 *1 (-114)))) (-2662 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1151)) (-5 *3 (-770)) (-5 *1 (-114)))) (-1960 (*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1151) (-770))) (-5 *1 (-114)))))
-(-13 (-846) (-10 -8 (-15 -3348 ((-1169) $)) (-15 -1933 ((-45 (-1151) (-770)) $)) (-15 -1872 ($ $)) (-15 -2361 ($ (-1169))) (-15 -2361 ($ (-1169) (-767))) (-15 -1396 ((-3 (-767) "failed") $)) (-15 -1985 ((-112) $)) (-15 -1687 ((-112) $)) (-15 -3987 ((-112) $)) (-15 -1326 ((-767) $)) (-15 -1326 ($ $ (-767))) (-15 -1998 ($ $ (-1 (-112) $ $))) (-15 -2249 ($ $ (-1 (-112) $ $))) (-15 -1463 ((-3 (-1 (-858) (-640 (-858))) "failed") $)) (-15 -1463 ($ $ (-1 (-858) (-640 (-858))))) (-15 -1463 ($ $ (-1 (-858) (-858)))) (-15 -1520 ($ $ (-1 (-536) (-640 (-536))))) (-15 -1520 ((-3 (-1 (-536) (-640 (-536))) "failed") $)) (-15 -2799 ((-112) $ (-1169))) (-15 -1579 ((-112) $ (-1151))) (-15 -2295 ($ $ (-1151))) (-15 -2429 ($ $ (-1151))) (-15 -3495 ((-3 (-770) "failed") $ (-1151))) (-15 -2662 ($ $ (-1151) (-770))) (-15 -1960 ($ $ (-45 (-1151) (-770))))))
-((-4329 (((-563) |#2|) 37)))
-(((-115 |#1| |#2|) (-10 -7 (-15 -4329 ((-563) |#2|))) (-13 (-363) (-1034 (-407 (-563)))) (-1233 |#1|)) (T -115))
-((-4329 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-1034 (-407 *2)))) (-5 *2 (-563)) (-5 *1 (-115 *4 *3)) (-4 *3 (-1233 *4)))))
-(-10 -7 (-15 -4329 ((-563) |#2|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2186 (($ $ (-563)) NIL)) (-1919 (((-112) $ $) NIL)) (-4239 (($) NIL T CONST)) (-3853 (($ (-1165 (-563)) (-563)) NIL)) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-2840 (($ $) NIL)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-3254 (((-767) $) NIL)) (-3827 (((-112) $) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2995 (((-563)) NIL)) (-3553 (((-563) $) NIL)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3320 (($ $ (-563)) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-4113 (((-1149 (-563)) $) NIL)) (-1741 (($ $) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL)) (-1675 (((-767)) NIL)) (-2126 (((-112) $ $) NIL)) (-1403 (((-563) $ (-563)) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3384 (($ $) 10)) (-2210 (($ $ $) 15)) (-1674 (($) 7 T CONST)) (-3221 (($ $) 6)) (-3750 (((-767)) 24)) (-1690 (($) 30)) (-2200 (($ $ $) 13)) (-2174 (($ $) 9)) (-2292 (($ $ $) 16)) (-2303 (($ $ $) 17)) (-3088 (($ $ $) NIL) (($) NIL T CONST)) (-1776 (($ $ $) NIL) (($) NIL T CONST)) (-3990 (((-917) $) 29)) (-3854 (((-1151) $) NIL)) (-2552 (($ (-917)) 28)) (-4252 (($ $ $) 20)) (-1693 (((-1113) $) NIL)) (-3566 (($) 8 T CONST)) (-4240 (($ $ $) 21)) (-2219 (((-536) $) 34)) (-1692 (((-858) $) 37)) (-2188 (($ $ $) 11)) (-1531 (($ $ $) 14)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 19)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 22)) (-1517 (($ $ $) 12)))
+(((-112) (-13 (-840) (-656) (-963) (-611 (-536)) (-10 -8 (-15 -1674 ($) -2668) (-15 -3566 ($) -2668) (-15 -2210 ($ $ $)) (-15 -2303 ($ $ $)) (-15 -2292 ($ $ $)) (-15 -3221 ($ $))))) (T -112))
+((-1674 (*1 *1) (-5 *1 (-112))) (-3566 (*1 *1) (-5 *1 (-112))) (-2210 (*1 *1 *1 *1) (-5 *1 (-112))) (-2303 (*1 *1 *1 *1) (-5 *1 (-112))) (-2292 (*1 *1 *1 *1) (-5 *1 (-112))) (-3221 (*1 *1 *1) (-5 *1 (-112))))
+(-13 (-840) (-656) (-963) (-611 (-536)) (-10 -8 (-15 -1674 ($) -2668) (-15 -3566 ($) -2668) (-15 -2210 ($ $ $)) (-15 -2303 ($ $ $)) (-15 -2292 ($ $ $)) (-15 -3221 ($ $))))
+((-2906 (((-3 (-1 |#1| (-640 |#1|)) "failed") (-114)) 19) (((-114) (-114) (-1 |#1| |#1|)) 13) (((-114) (-114) (-1 |#1| (-640 |#1|))) 11) (((-3 |#1| "failed") (-114) (-640 |#1|)) 21)) (-2468 (((-3 (-640 (-1 |#1| (-640 |#1|))) "failed") (-114)) 25) (((-114) (-114) (-1 |#1| |#1|)) 30) (((-114) (-114) (-640 (-1 |#1| (-640 |#1|)))) 26)) (-2480 (((-114) |#1|) 54 (|has| |#1| (-846)))) (-4382 (((-3 |#1| "failed") (-114)) 48 (|has| |#1| (-846)))))
+(((-113 |#1|) (-10 -7 (-15 -2906 ((-3 |#1| "failed") (-114) (-640 |#1|))) (-15 -2906 ((-114) (-114) (-1 |#1| (-640 |#1|)))) (-15 -2906 ((-114) (-114) (-1 |#1| |#1|))) (-15 -2906 ((-3 (-1 |#1| (-640 |#1|)) "failed") (-114))) (-15 -2468 ((-114) (-114) (-640 (-1 |#1| (-640 |#1|))))) (-15 -2468 ((-114) (-114) (-1 |#1| |#1|))) (-15 -2468 ((-3 (-640 (-1 |#1| (-640 |#1|))) "failed") (-114))) (IF (|has| |#1| (-846)) (PROGN (-15 -2480 ((-114) |#1|)) (-15 -4382 ((-3 |#1| "failed") (-114)))) |%noBranch|)) (-1093)) (T -113))
+((-4382 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-4 *2 (-1093)) (-4 *2 (-846)) (-5 *1 (-113 *2)))) (-2480 (*1 *2 *3) (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-846)) (-4 *3 (-1093)))) (-2468 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-640 (-1 *4 (-640 *4)))) (-5 *1 (-113 *4)) (-4 *4 (-1093)))) (-2468 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1093)) (-5 *1 (-113 *4)))) (-2468 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-640 (-1 *4 (-640 *4)))) (-4 *4 (-1093)) (-5 *1 (-113 *4)))) (-2906 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-640 *4))) (-5 *1 (-113 *4)) (-4 *4 (-1093)))) (-2906 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1093)) (-5 *1 (-113 *4)))) (-2906 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-640 *4))) (-4 *4 (-1093)) (-5 *1 (-113 *4)))) (-2906 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-640 *2)) (-5 *1 (-113 *2)) (-4 *2 (-1093)))))
+(-10 -7 (-15 -2906 ((-3 |#1| "failed") (-114) (-640 |#1|))) (-15 -2906 ((-114) (-114) (-1 |#1| (-640 |#1|)))) (-15 -2906 ((-114) (-114) (-1 |#1| |#1|))) (-15 -2906 ((-3 (-1 |#1| (-640 |#1|)) "failed") (-114))) (-15 -2468 ((-114) (-114) (-640 (-1 |#1| (-640 |#1|))))) (-15 -2468 ((-114) (-114) (-1 |#1| |#1|))) (-15 -2468 ((-3 (-640 (-1 |#1| (-640 |#1|))) "failed") (-114))) (IF (|has| |#1| (-846)) (PROGN (-15 -2480 ((-114) |#1|)) (-15 -4382 ((-3 |#1| "failed") (-114)))) |%noBranch|))
+((-1677 (((-112) $ $) NIL)) (-4329 (((-767) $) 72) (($ $ (-767)) 30)) (-2233 (((-112) $) 32)) (-2540 (($ $ (-1151) (-770)) 26)) (-1512 (($ $ (-45 (-1151) (-770))) 15)) (-3499 (((-3 (-770) "failed") $ (-1151)) 25)) (-1932 (((-45 (-1151) (-770)) $) 14)) (-2559 (($ (-1169)) 17) (($ (-1169) (-767)) 22)) (-2249 (((-112) $) 31)) (-2169 (((-112) $) 33)) (-3352 (((-1169) $) 8)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-2602 (((-112) $ (-1169)) 10)) (-1516 (($ $ (-1 (-536) (-640 (-536)))) 52) (((-3 (-1 (-536) (-640 (-536))) "failed") $) 56)) (-1693 (((-1113) $) NIL)) (-3563 (((-112) $ (-1151)) 29)) (-2158 (($ $ (-1 (-112) $ $)) 35)) (-1463 (((-3 (-1 (-858) (-640 (-858))) "failed") $) 54) (($ $ (-1 (-858) (-640 (-858)))) 41) (($ $ (-1 (-858) (-858))) 43)) (-2550 (($ $ (-1151)) 45)) (-1870 (($ $) 63)) (-3576 (($ $ (-1 (-112) $ $)) 36)) (-1692 (((-858) $) 48)) (-2294 (($ $ (-1151)) 27)) (-2935 (((-3 (-767) "failed") $) 58)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 71)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 78)))
+(((-114) (-13 (-846) (-10 -8 (-15 -3352 ((-1169) $)) (-15 -1932 ((-45 (-1151) (-770)) $)) (-15 -1870 ($ $)) (-15 -2559 ($ (-1169))) (-15 -2559 ($ (-1169) (-767))) (-15 -2935 ((-3 (-767) "failed") $)) (-15 -2249 ((-112) $)) (-15 -2233 ((-112) $)) (-15 -2169 ((-112) $)) (-15 -4329 ((-767) $)) (-15 -4329 ($ $ (-767))) (-15 -2158 ($ $ (-1 (-112) $ $))) (-15 -3576 ($ $ (-1 (-112) $ $))) (-15 -1463 ((-3 (-1 (-858) (-640 (-858))) "failed") $)) (-15 -1463 ($ $ (-1 (-858) (-640 (-858))))) (-15 -1463 ($ $ (-1 (-858) (-858)))) (-15 -1516 ($ $ (-1 (-536) (-640 (-536))))) (-15 -1516 ((-3 (-1 (-536) (-640 (-536))) "failed") $)) (-15 -2602 ((-112) $ (-1169))) (-15 -3563 ((-112) $ (-1151))) (-15 -2294 ($ $ (-1151))) (-15 -2550 ($ $ (-1151))) (-15 -3499 ((-3 (-770) "failed") $ (-1151))) (-15 -2540 ($ $ (-1151) (-770))) (-15 -1512 ($ $ (-45 (-1151) (-770))))))) (T -114))
+((-3352 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-114)))) (-1932 (*1 *2 *1) (-12 (-5 *2 (-45 (-1151) (-770))) (-5 *1 (-114)))) (-1870 (*1 *1 *1) (-5 *1 (-114))) (-2559 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-114)))) (-2559 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-767)) (-5 *1 (-114)))) (-2935 (*1 *2 *1) (|partial| -12 (-5 *2 (-767)) (-5 *1 (-114)))) (-2249 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-2233 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-2169 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-4329 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-114)))) (-4329 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-114)))) (-2158 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-3576 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-1463 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-858) (-640 (-858)))) (-5 *1 (-114)))) (-1463 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-858) (-640 (-858)))) (-5 *1 (-114)))) (-1463 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-858) (-858))) (-5 *1 (-114)))) (-1516 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-536) (-640 (-536)))) (-5 *1 (-114)))) (-1516 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-536) (-640 (-536)))) (-5 *1 (-114)))) (-2602 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-112)) (-5 *1 (-114)))) (-3563 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-112)) (-5 *1 (-114)))) (-2294 (*1 *1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-114)))) (-2550 (*1 *1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-114)))) (-3499 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1151)) (-5 *2 (-770)) (-5 *1 (-114)))) (-2540 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1151)) (-5 *3 (-770)) (-5 *1 (-114)))) (-1512 (*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1151) (-770))) (-5 *1 (-114)))))
+(-13 (-846) (-10 -8 (-15 -3352 ((-1169) $)) (-15 -1932 ((-45 (-1151) (-770)) $)) (-15 -1870 ($ $)) (-15 -2559 ($ (-1169))) (-15 -2559 ($ (-1169) (-767))) (-15 -2935 ((-3 (-767) "failed") $)) (-15 -2249 ((-112) $)) (-15 -2233 ((-112) $)) (-15 -2169 ((-112) $)) (-15 -4329 ((-767) $)) (-15 -4329 ($ $ (-767))) (-15 -2158 ($ $ (-1 (-112) $ $))) (-15 -3576 ($ $ (-1 (-112) $ $))) (-15 -1463 ((-3 (-1 (-858) (-640 (-858))) "failed") $)) (-15 -1463 ($ $ (-1 (-858) (-640 (-858))))) (-15 -1463 ($ $ (-1 (-858) (-858)))) (-15 -1516 ($ $ (-1 (-536) (-640 (-536))))) (-15 -1516 ((-3 (-1 (-536) (-640 (-536))) "failed") $)) (-15 -2602 ((-112) $ (-1169))) (-15 -3563 ((-112) $ (-1151))) (-15 -2294 ($ $ (-1151))) (-15 -2550 ($ $ (-1151))) (-15 -3499 ((-3 (-770) "failed") $ (-1151))) (-15 -2540 ($ $ (-1151) (-770))) (-15 -1512 ($ $ (-45 (-1151) (-770))))))
+((-1294 (((-563) |#2|) 37)))
+(((-115 |#1| |#2|) (-10 -7 (-15 -1294 ((-563) |#2|))) (-13 (-363) (-1034 (-407 (-563)))) (-1233 |#1|)) (T -115))
+((-1294 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-1034 (-407 *2)))) (-5 *2 (-563)) (-5 *1 (-115 *4 *3)) (-4 *3 (-1233 *4)))))
+(-10 -7 (-15 -1294 ((-563) |#2|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2185 (($ $ (-563)) NIL)) (-2003 (((-112) $ $) NIL)) (-2569 (($) NIL T CONST)) (-3558 (($ (-1165 (-563)) (-563)) NIL)) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3572 (($ $) NIL)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-1775 (((-767) $) NIL)) (-3401 (((-112) $) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3593 (((-563)) NIL)) (-3583 (((-563) $) NIL)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1751 (($ $ (-563)) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3605 (((-1149 (-563)) $) NIL)) (-3369 (($ $) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL)) (-3914 (((-767)) NIL)) (-3223 (((-112) $ $) NIL)) (-1402 (((-563) $ (-563)) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL)))
(((-116 |#1|) (-865 |#1|) (-563)) (T -116))
NIL
(-865 |#1|)
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3401 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-307)))) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-116 |#1|) (-905)))) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| (-116 |#1|) (-905)))) (-1919 (((-112) $ $) NIL)) (-1857 (((-563) $) NIL (|has| (-116 |#1|) (-816)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-116 |#1|) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (|has| (-116 |#1|) (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-116 |#1|) (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| (-116 |#1|) (-1034 (-563))))) (-2058 (((-116 |#1|) $) NIL) (((-1169) $) NIL (|has| (-116 |#1|) (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| (-116 |#1|) (-1034 (-563)))) (((-563) $) NIL (|has| (-116 |#1|) (-1034 (-563))))) (-2457 (($ $) NIL) (($ (-563) $) NIL)) (-3090 (($ $ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| (-116 |#1|) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-116 |#1|) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-116 |#1|))) (|:| |vec| (-1257 (-116 |#1|)))) (-684 $) (-1257 $)) NIL) (((-684 (-116 |#1|)) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) NIL (|has| (-116 |#1|) (-545)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3101 (((-112) $) NIL (|has| (-116 |#1|) (-816)))) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-116 |#1|) (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-116 |#1|) (-882 (-379))))) (-3827 (((-112) $) NIL)) (-2711 (($ $) NIL)) (-2143 (((-116 |#1|) $) NIL)) (-2408 (((-3 $ "failed") $) NIL (|has| (-116 |#1|) (-1144)))) (-1419 (((-112) $) NIL (|has| (-116 |#1|) (-816)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3084 (($ $ $) NIL (|has| (-116 |#1|) (-846)))) (-1777 (($ $ $) NIL (|has| (-116 |#1|) (-846)))) (-2240 (($ (-1 (-116 |#1|) (-116 |#1|)) $) NIL)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| (-116 |#1|) (-1144)) CONST)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-4215 (($ $) NIL (|has| (-116 |#1|) (-307)))) (-1583 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-545)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-116 |#1|) (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-116 |#1|) (-905)))) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1540 (($ $ (-640 (-116 |#1|)) (-640 (-116 |#1|))) NIL (|has| (-116 |#1|) (-309 (-116 |#1|)))) (($ $ (-116 |#1|) (-116 |#1|)) NIL (|has| (-116 |#1|) (-309 (-116 |#1|)))) (($ $ (-294 (-116 |#1|))) NIL (|has| (-116 |#1|) (-309 (-116 |#1|)))) (($ $ (-640 (-294 (-116 |#1|)))) NIL (|has| (-116 |#1|) (-309 (-116 |#1|)))) (($ $ (-640 (-1169)) (-640 (-116 |#1|))) NIL (|has| (-116 |#1|) (-514 (-1169) (-116 |#1|)))) (($ $ (-1169) (-116 |#1|)) NIL (|has| (-116 |#1|) (-514 (-1169) (-116 |#1|))))) (-2628 (((-767) $) NIL)) (-2309 (($ $ (-116 |#1|)) NIL (|has| (-116 |#1|) (-286 (-116 |#1|) (-116 |#1|))))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-4202 (($ $) NIL (|has| (-116 |#1|) (-233))) (($ $ (-767)) NIL (|has| (-116 |#1|) (-233))) (($ $ (-1169)) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-767)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-1801 (($ $) NIL)) (-2154 (((-116 |#1|) $) NIL)) (-2220 (((-888 (-563)) $) NIL (|has| (-116 |#1|) (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| (-116 |#1|) (-611 (-888 (-379))))) (((-536) $) NIL (|has| (-116 |#1|) (-611 (-536)))) (((-379) $) NIL (|has| (-116 |#1|) (-1018))) (((-225) $) NIL (|has| (-116 |#1|) (-1018)))) (-2192 (((-174 (-407 (-563))) $) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-116 |#1|) (-905))))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-116 |#1|)) NIL) (($ (-1169)) NIL (|has| (-116 |#1|) (-1034 (-1169))))) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| (-116 |#1|) (-905))) (|has| (-116 |#1|) (-145))))) (-1675 (((-767)) NIL)) (-4194 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-545)))) (-2126 (((-112) $ $) NIL)) (-1403 (((-407 (-563)) $ (-563)) NIL)) (-2509 (($ $) NIL (|has| (-116 |#1|) (-816)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $) NIL (|has| (-116 |#1|) (-233))) (($ $ (-767)) NIL (|has| (-116 |#1|) (-233))) (($ $ (-1169)) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-767)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-1778 (((-112) $ $) NIL (|has| (-116 |#1|) (-846)))) (-1756 (((-112) $ $) NIL (|has| (-116 |#1|) (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| (-116 |#1|) (-846)))) (-1744 (((-112) $ $) NIL (|has| (-116 |#1|) (-846)))) (-1837 (($ $ $) NIL) (($ (-116 |#1|) (-116 |#1|)) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ (-116 |#1|) $) NIL) (($ $ (-116 |#1|)) NIL)))
-(((-117 |#1|) (-13 (-988 (-116 |#1|)) (-10 -8 (-15 -1403 ((-407 (-563)) $ (-563))) (-15 -2192 ((-174 (-407 (-563))) $)) (-15 -2457 ($ $)) (-15 -2457 ($ (-563) $)))) (-563)) (T -117))
-((-1403 (*1 *2 *1 *3) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-117 *4)) (-14 *4 *3) (-5 *3 (-563)))) (-2192 (*1 *2 *1) (-12 (-5 *2 (-174 (-407 (-563)))) (-5 *1 (-117 *3)) (-14 *3 (-563)))) (-2457 (*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-563)))) (-2457 (*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-117 *3)) (-14 *3 *2))))
-(-13 (-988 (-116 |#1|)) (-10 -8 (-15 -1403 ((-407 (-563)) $ (-563))) (-15 -2192 ((-174 (-407 (-563))) $)) (-15 -2457 ($ $)) (-15 -2457 ($ (-563) $))))
-((-1849 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 48) (($ $ "right" $) 50)) (-2071 (((-640 $) $) 27)) (-1469 (((-112) $ $) 32)) (-1729 (((-112) |#2| $) 36)) (-2512 (((-640 |#2|) $) 22)) (-2194 (((-112) $) 16)) (-2309 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-1434 (((-112) $) 45)) (-1693 (((-858) $) 41)) (-4258 (((-640 $) $) 28)) (-1718 (((-112) $ $) 34)) (-3608 (((-767) $) 43)))
-(((-118 |#1| |#2|) (-10 -8 (-15 -1693 ((-858) |#1|)) (-15 -1849 (|#1| |#1| "right" |#1|)) (-15 -1849 (|#1| |#1| "left" |#1|)) (-15 -2309 (|#1| |#1| "right")) (-15 -2309 (|#1| |#1| "left")) (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -1469 ((-112) |#1| |#1|)) (-15 -2512 ((-640 |#2|) |#1|)) (-15 -1434 ((-112) |#1|)) (-15 -2309 (|#2| |#1| "value")) (-15 -2194 ((-112) |#1|)) (-15 -2071 ((-640 |#1|) |#1|)) (-15 -4258 ((-640 |#1|) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -1729 ((-112) |#2| |#1|)) (-15 -3608 ((-767) |#1|))) (-119 |#2|) (-1208)) (T -118))
-NIL
-(-10 -8 (-15 -1693 ((-858) |#1|)) (-15 -1849 (|#1| |#1| "right" |#1|)) (-15 -1849 (|#1| |#1| "left" |#1|)) (-15 -2309 (|#1| |#1| "right")) (-15 -2309 (|#1| |#1| "left")) (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -1469 ((-112) |#1| |#1|)) (-15 -2512 ((-640 |#2|) |#1|)) (-15 -1434 ((-112) |#1|)) (-15 -2309 (|#2| |#1| "value")) (-15 -2194 ((-112) |#1|)) (-15 -2071 ((-640 |#1|) |#1|)) (-15 -4258 ((-640 |#1|) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -1729 ((-112) |#2| |#1|)) (-15 -3608 ((-767) |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2619 ((|#1| $) 48)) (-2759 (((-112) $ (-767)) 8)) (-2936 ((|#1| $ |#1|) 39 (|has| $ (-6 -4408)))) (-2641 (($ $ $) 52 (|has| $ (-6 -4408)))) (-4190 (($ $ $) 54 (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4408))) (($ $ "left" $) 55 (|has| $ (-6 -4408))) (($ $ "right" $) 53 (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) 41 (|has| $ (-6 -4408)))) (-4239 (($) 7 T CONST)) (-1701 (($ $) 57)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) 50)) (-1469 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-1686 (($ $) 59)) (-2512 (((-640 |#1|) $) 45)) (-2194 (((-112) $) 49)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-4071 (((-563) $ $) 44)) (-1434 (((-112) $) 46)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) 51)) (-2962 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3944 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-307)))) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-116 |#1|) (-905)))) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| (-116 |#1|) (-905)))) (-2003 (((-112) $ $) NIL)) (-2807 (((-563) $) NIL (|has| (-116 |#1|) (-816)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-116 |#1|) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (|has| (-116 |#1|) (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-116 |#1|) (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| (-116 |#1|) (-1034 (-563))))) (-2057 (((-116 |#1|) $) NIL) (((-1169) $) NIL (|has| (-116 |#1|) (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| (-116 |#1|) (-1034 (-563)))) (((-563) $) NIL (|has| (-116 |#1|) (-1034 (-563))))) (-2600 (($ $) NIL) (($ (-563) $) NIL)) (-3094 (($ $ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| (-116 |#1|) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-116 |#1|) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-116 |#1|))) (|:| |vec| (-1257 (-116 |#1|)))) (-684 $) (-1257 $)) NIL) (((-684 (-116 |#1|)) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) NIL (|has| (-116 |#1|) (-545)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-3414 (((-112) $) NIL (|has| (-116 |#1|) (-816)))) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-116 |#1|) (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-116 |#1|) (-882 (-379))))) (-3401 (((-112) $) NIL)) (-2043 (($ $) NIL)) (-2143 (((-116 |#1|) $) NIL)) (-1983 (((-3 $ "failed") $) NIL (|has| (-116 |#1|) (-1144)))) (-3426 (((-112) $) NIL (|has| (-116 |#1|) (-816)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3088 (($ $ $) NIL (|has| (-116 |#1|) (-846)))) (-1776 (($ $ $) NIL (|has| (-116 |#1|) (-846)))) (-2238 (($ (-1 (-116 |#1|) (-116 |#1|)) $) NIL)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| (-116 |#1|) (-1144)) CONST)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3935 (($ $) NIL (|has| (-116 |#1|) (-307)))) (-3954 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-545)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-116 |#1|) (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-116 |#1|) (-905)))) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1542 (($ $ (-640 (-116 |#1|)) (-640 (-116 |#1|))) NIL (|has| (-116 |#1|) (-309 (-116 |#1|)))) (($ $ (-116 |#1|) (-116 |#1|)) NIL (|has| (-116 |#1|) (-309 (-116 |#1|)))) (($ $ (-294 (-116 |#1|))) NIL (|has| (-116 |#1|) (-309 (-116 |#1|)))) (($ $ (-640 (-294 (-116 |#1|)))) NIL (|has| (-116 |#1|) (-309 (-116 |#1|)))) (($ $ (-640 (-1169)) (-640 (-116 |#1|))) NIL (|has| (-116 |#1|) (-514 (-1169) (-116 |#1|)))) (($ $ (-1169) (-116 |#1|)) NIL (|has| (-116 |#1|) (-514 (-1169) (-116 |#1|))))) (-1993 (((-767) $) NIL)) (-2308 (($ $ (-116 |#1|)) NIL (|has| (-116 |#1|) (-286 (-116 |#1|) (-116 |#1|))))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-4203 (($ $) NIL (|has| (-116 |#1|) (-233))) (($ $ (-767)) NIL (|has| (-116 |#1|) (-233))) (($ $ (-1169)) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-767)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-2033 (($ $) NIL)) (-2153 (((-116 |#1|) $) NIL)) (-2219 (((-888 (-563)) $) NIL (|has| (-116 |#1|) (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| (-116 |#1|) (-611 (-888 (-379))))) (((-536) $) NIL (|has| (-116 |#1|) (-611 (-536)))) (((-379) $) NIL (|has| (-116 |#1|) (-1018))) (((-225) $) NIL (|has| (-116 |#1|) (-1018)))) (-3616 (((-174 (-407 (-563))) $) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-116 |#1|) (-905))))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-116 |#1|)) NIL) (($ (-1169)) NIL (|has| (-116 |#1|) (-1034 (-1169))))) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| (-116 |#1|) (-905))) (|has| (-116 |#1|) (-145))))) (-3914 (((-767)) NIL)) (-3965 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-545)))) (-3223 (((-112) $ $) NIL)) (-1402 (((-407 (-563)) $ (-563)) NIL)) (-1462 (($ $) NIL (|has| (-116 |#1|) (-816)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $) NIL (|has| (-116 |#1|) (-233))) (($ $ (-767)) NIL (|has| (-116 |#1|) (-233))) (($ $ (-1169)) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-116 |#1|) (-896 (-1169)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-767)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-1779 (((-112) $ $) NIL (|has| (-116 |#1|) (-846)))) (-1754 (((-112) $ $) NIL (|has| (-116 |#1|) (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| (-116 |#1|) (-846)))) (-1743 (((-112) $ $) NIL (|has| (-116 |#1|) (-846)))) (-1836 (($ $ $) NIL) (($ (-116 |#1|) (-116 |#1|)) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ (-116 |#1|) $) NIL) (($ $ (-116 |#1|)) NIL)))
+(((-117 |#1|) (-13 (-988 (-116 |#1|)) (-10 -8 (-15 -1402 ((-407 (-563)) $ (-563))) (-15 -3616 ((-174 (-407 (-563))) $)) (-15 -2600 ($ $)) (-15 -2600 ($ (-563) $)))) (-563)) (T -117))
+((-1402 (*1 *2 *1 *3) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-117 *4)) (-14 *4 *3) (-5 *3 (-563)))) (-3616 (*1 *2 *1) (-12 (-5 *2 (-174 (-407 (-563)))) (-5 *1 (-117 *3)) (-14 *3 (-563)))) (-2600 (*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-563)))) (-2600 (*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-117 *3)) (-14 *3 *2))))
+(-13 (-988 (-116 |#1|)) (-10 -8 (-15 -1402 ((-407 (-563)) $ (-563))) (-15 -3616 ((-174 (-407 (-563))) $)) (-15 -2600 ($ $)) (-15 -2600 ($ (-563) $))))
+((-1849 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 48) (($ $ "right" $) 50)) (-2390 (((-640 $) $) 27)) (-2358 (((-112) $ $) 32)) (-2667 (((-112) |#2| $) 36)) (-2511 (((-640 |#2|) $) 22)) (-1298 (((-112) $) 16)) (-2308 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-2889 (((-112) $) 45)) (-1692 (((-858) $) 41)) (-4345 (((-640 $) $) 28)) (-1718 (((-112) $ $) 34)) (-3610 (((-767) $) 43)))
+(((-118 |#1| |#2|) (-10 -8 (-15 -1692 ((-858) |#1|)) (-15 -1849 (|#1| |#1| "right" |#1|)) (-15 -1849 (|#1| |#1| "left" |#1|)) (-15 -2308 (|#1| |#1| "right")) (-15 -2308 (|#1| |#1| "left")) (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -2358 ((-112) |#1| |#1|)) (-15 -2511 ((-640 |#2|) |#1|)) (-15 -2889 ((-112) |#1|)) (-15 -2308 (|#2| |#1| "value")) (-15 -1298 ((-112) |#1|)) (-15 -2390 ((-640 |#1|) |#1|)) (-15 -4345 ((-640 |#1|) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -2667 ((-112) |#2| |#1|)) (-15 -3610 ((-767) |#1|))) (-119 |#2|) (-1208)) (T -118))
+NIL
+(-10 -8 (-15 -1692 ((-858) |#1|)) (-15 -1849 (|#1| |#1| "right" |#1|)) (-15 -1849 (|#1| |#1| "left" |#1|)) (-15 -2308 (|#1| |#1| "right")) (-15 -2308 (|#1| |#1| "left")) (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -2358 ((-112) |#1| |#1|)) (-15 -2511 ((-640 |#2|) |#1|)) (-15 -2889 ((-112) |#1|)) (-15 -2308 (|#2| |#1| "value")) (-15 -1298 ((-112) |#1|)) (-15 -2390 ((-640 |#1|) |#1|)) (-15 -4345 ((-640 |#1|) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -2667 ((-112) |#2| |#1|)) (-15 -3610 ((-767) |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2618 ((|#1| $) 48)) (-3001 (((-112) $ (-767)) 8)) (-2336 ((|#1| $ |#1|) 39 (|has| $ (-6 -4409)))) (-2996 (($ $ $) 52 (|has| $ (-6 -4409)))) (-3007 (($ $ $) 54 (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4409))) (($ $ "left" $) 55 (|has| $ (-6 -4409))) (($ $ "right" $) 53 (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) 41 (|has| $ (-6 -4409)))) (-2569 (($) 7 T CONST)) (-1700 (($ $) 57)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) 50)) (-2358 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-1685 (($ $) 59)) (-2511 (((-640 |#1|) $) 45)) (-1298 (((-112) $) 49)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-2379 (((-563) $ $) 44)) (-2889 (((-112) $) 46)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) 51)) (-2367 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-119 |#1|) (-140) (-1208)) (T -119))
-((-1686 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1208)))) (-2309 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-119 *3)) (-4 *3 (-1208)))) (-1701 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1208)))) (-2309 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-119 *3)) (-4 *3 (-1208)))) (-1849 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4408)) (-4 *1 (-119 *3)) (-4 *3 (-1208)))) (-4190 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-119 *2)) (-4 *2 (-1208)))) (-1849 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4408)) (-4 *1 (-119 *3)) (-4 *3 (-1208)))) (-2641 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-119 *2)) (-4 *2 (-1208)))))
-(-13 (-1006 |t#1|) (-10 -8 (-15 -1686 ($ $)) (-15 -2309 ($ $ "left")) (-15 -1701 ($ $)) (-15 -2309 ($ $ "right")) (IF (|has| $ (-6 -4408)) (PROGN (-15 -1849 ($ $ "left" $)) (-15 -4190 ($ $ $)) (-15 -1849 ($ $ "right" $)) (-15 -2641 ($ $ $))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1006 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-1437 (((-112) |#1|) 24)) (-2289 (((-767) (-767)) 23) (((-767)) 22)) (-2324 (((-112) |#1| (-112)) 25) (((-112) |#1|) 26)))
-(((-120 |#1|) (-10 -7 (-15 -2324 ((-112) |#1|)) (-15 -2324 ((-112) |#1| (-112))) (-15 -2289 ((-767))) (-15 -2289 ((-767) (-767))) (-15 -1437 ((-112) |#1|))) (-1233 (-563))) (T -120))
-((-1437 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))) (-2289 (*1 *2 *2) (-12 (-5 *2 (-767)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))) (-2289 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))) (-2324 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))) (-2324 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))))
-(-10 -7 (-15 -2324 ((-112) |#1|)) (-15 -2324 ((-112) |#1| (-112))) (-15 -2289 ((-767))) (-15 -2289 ((-767) (-767))) (-15 -1437 ((-112) |#1|)))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2619 ((|#1| $) 15)) (-2335 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 22)) (-2759 (((-112) $ (-767)) NIL)) (-2936 ((|#1| $ |#1|) NIL (|has| $ (-6 -4408)))) (-2641 (($ $ $) 18 (|has| $ (-6 -4408)))) (-4190 (($ $ $) 20 (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4408))) (($ $ "left" $) NIL (|has| $ (-6 -4408))) (($ $ "right" $) NIL (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) NIL (|has| $ (-6 -4408)))) (-4239 (($) NIL T CONST)) (-1701 (($ $) 17)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) NIL)) (-1469 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2219 (($ $ |#1| $) 23)) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-1686 (($ $) 19)) (-2512 (((-640 |#1|) $) NIL)) (-2194 (((-112) $) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3994 (($ |#1| $) 24)) (-1812 (($ |#1| $) 10)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) 14)) (-3135 (($) 8)) (-2309 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-4071 (((-563) $ $) NIL)) (-1434 (((-112) $) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) NIL)) (-2962 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3878 (($ (-640 |#1|)) 12)) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-121 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4408) (-6 -4407) (-15 -3878 ($ (-640 |#1|))) (-15 -1812 ($ |#1| $)) (-15 -3994 ($ |#1| $)) (-15 -2335 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-846)) (T -121))
-((-3878 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-121 *3)))) (-1812 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-846)))) (-3994 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-846)))) (-2335 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3)))) (-5 *1 (-121 *3)) (-4 *3 (-846)))))
-(-13 (-125 |#1|) (-10 -8 (-6 -4408) (-6 -4407) (-15 -3878 ($ (-640 |#1|))) (-15 -1812 ($ |#1| $)) (-15 -3994 ($ |#1| $)) (-15 -2335 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
-((-3380 (($ $) 12)) (-2176 (($ $) 10)) (-1546 (($ $ $) 22)) (-3572 (($ $ $) 20)) (-1534 (($ $ $) 18)) (-1521 (($ $ $) 16)))
-(((-122 |#1|) (-10 -8 (-15 -1546 (|#1| |#1| |#1|)) (-15 -3572 (|#1| |#1| |#1|)) (-15 -2176 (|#1| |#1|)) (-15 -3380 (|#1| |#1|)) (-15 -1521 (|#1| |#1| |#1|)) (-15 -1534 (|#1| |#1| |#1|))) (-123)) (T -122))
-NIL
-(-10 -8 (-15 -1546 (|#1| |#1| |#1|)) (-15 -3572 (|#1| |#1| |#1|)) (-15 -2176 (|#1| |#1|)) (-15 -3380 (|#1| |#1|)) (-15 -1521 (|#1| |#1| |#1|)) (-15 -1534 (|#1| |#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3380 (($ $) 103)) (-2212 (($ $ $) 25)) (-4378 (((-1262) $ (-563) (-563)) 66 (|has| $ (-6 -4408)))) (-3523 (((-112) $) 98 (|has| (-112) (-846))) (((-112) (-1 (-112) (-112) (-112)) $) 92)) (-2770 (($ $) 102 (-12 (|has| (-112) (-846)) (|has| $ (-6 -4408)))) (($ (-1 (-112) (-112) (-112)) $) 101 (|has| $ (-6 -4408)))) (-1642 (($ $) 97 (|has| (-112) (-846))) (($ (-1 (-112) (-112) (-112)) $) 91)) (-2759 (((-112) $ (-767)) 37)) (-1849 (((-112) $ (-1224 (-563)) (-112)) 88 (|has| $ (-6 -4408))) (((-112) $ (-563) (-112)) 54 (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) (-112)) $) 71 (|has| $ (-6 -4407)))) (-4239 (($) 38 T CONST)) (-2907 (($ $) 100 (|has| $ (-6 -4408)))) (-4382 (($ $) 90)) (-3813 (($ $) 68 (-12 (|has| (-112) (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ (-1 (-112) (-112)) $) 72 (|has| $ (-6 -4407))) (($ (-112) $) 69 (-12 (|has| (-112) (-1093)) (|has| $ (-6 -4407))))) (-2444 (((-112) (-1 (-112) (-112) (-112)) $) 74 (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) 73 (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) 70 (-12 (|has| (-112) (-1093)) (|has| $ (-6 -4407))))) (-4355 (((-112) $ (-563) (-112)) 53 (|has| $ (-6 -4408)))) (-4293 (((-112) $ (-563)) 55)) (-4368 (((-563) (-112) $ (-563)) 95 (|has| (-112) (-1093))) (((-563) (-112) $) 94 (|has| (-112) (-1093))) (((-563) (-1 (-112) (-112)) $) 93)) (-2659 (((-640 (-112)) $) 45 (|has| $ (-6 -4407)))) (-2202 (($ $ $) 26)) (-2176 (($ $) 30)) (-1546 (($ $ $) 28)) (-1566 (($ (-767) (-112)) 77)) (-3572 (($ $ $) 29)) (-2581 (((-112) $ (-767)) 36)) (-2411 (((-563) $) 63 (|has| (-563) (-846)))) (-3084 (($ $ $) 13)) (-3164 (($ $ $) 96 (|has| (-112) (-846))) (($ (-1 (-112) (-112) (-112)) $ $) 89)) (-2259 (((-640 (-112)) $) 46 (|has| $ (-6 -4407)))) (-1729 (((-112) (-112) $) 48 (-12 (|has| (-112) (-1093)) (|has| $ (-6 -4407))))) (-3860 (((-563) $) 62 (|has| (-563) (-846)))) (-1777 (($ $ $) 14)) (-4345 (($ (-1 (-112) (-112)) $) 41 (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-112) (-112) (-112)) $ $) 82) (($ (-1 (-112) (-112)) $) 40)) (-2382 (((-112) $ (-767)) 35)) (-3573 (((-1151) $) 9)) (-3396 (($ $ $ (-563)) 87) (($ (-112) $ (-563)) 86)) (-4318 (((-640 (-563)) $) 60)) (-3192 (((-112) (-563) $) 59)) (-1694 (((-1113) $) 10)) (-3781 (((-112) $) 64 (|has| (-563) (-846)))) (-4203 (((-3 (-112) "failed") (-1 (-112) (-112)) $) 75)) (-2358 (($ $ (-112)) 65 (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) (-112)) $) 43 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-112)) (-640 (-112))) 52 (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-112) (-112)) 51 (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-294 (-112))) 50 (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-640 (-294 (-112)))) 49 (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093))))) (-2026 (((-112) $ $) 31)) (-2105 (((-112) (-112) $) 61 (-12 (|has| $ (-6 -4407)) (|has| (-112) (-1093))))) (-2836 (((-640 (-112)) $) 58)) (-3756 (((-112) $) 34)) (-3135 (($) 33)) (-2309 (($ $ (-1224 (-563))) 83) (((-112) $ (-563)) 57) (((-112) $ (-563) (-112)) 56)) (-2963 (($ $ (-1224 (-563))) 85) (($ $ (-563)) 84)) (-1709 (((-767) (-112) $) 47 (-12 (|has| (-112) (-1093)) (|has| $ (-6 -4407)))) (((-767) (-1 (-112) (-112)) $) 44 (|has| $ (-6 -4407)))) (-3076 (($ $ $ (-563)) 99 (|has| $ (-6 -4408)))) (-1872 (($ $) 32)) (-2220 (((-536) $) 67 (|has| (-112) (-611 (-536))))) (-1707 (($ (-640 (-112))) 76)) (-2853 (($ (-640 $)) 81) (($ $ $) 80) (($ (-112) $) 79) (($ $ (-112)) 78)) (-1693 (((-858) $) 11)) (-4383 (((-112) (-1 (-112) (-112)) $) 42 (|has| $ (-6 -4407)))) (-2190 (($ $ $) 27)) (-1534 (($ $ $) 105)) (-1778 (((-112) $ $) 16)) (-1756 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 15)) (-1744 (((-112) $ $) 18)) (-1521 (($ $ $) 104)) (-3608 (((-767) $) 39 (|has| $ (-6 -4407)))))
+((-1685 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1208)))) (-2308 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-119 *3)) (-4 *3 (-1208)))) (-1700 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1208)))) (-2308 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-119 *3)) (-4 *3 (-1208)))) (-1849 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4409)) (-4 *1 (-119 *3)) (-4 *3 (-1208)))) (-3007 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-119 *2)) (-4 *2 (-1208)))) (-1849 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4409)) (-4 *1 (-119 *3)) (-4 *3 (-1208)))) (-2996 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-119 *2)) (-4 *2 (-1208)))))
+(-13 (-1006 |t#1|) (-10 -8 (-15 -1685 ($ $)) (-15 -2308 ($ $ "left")) (-15 -1700 ($ $)) (-15 -2308 ($ $ "right")) (IF (|has| $ (-6 -4409)) (PROGN (-15 -1849 ($ $ "left" $)) (-15 -3007 ($ $ $)) (-15 -1849 ($ $ "right" $)) (-15 -2996 ($ $ $))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1006 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-1735 (((-112) |#1|) 24)) (-3100 (((-767) (-767)) 23) (((-767)) 22)) (-3089 (((-112) |#1| (-112)) 25) (((-112) |#1|) 26)))
+(((-120 |#1|) (-10 -7 (-15 -3089 ((-112) |#1|)) (-15 -3089 ((-112) |#1| (-112))) (-15 -3100 ((-767))) (-15 -3100 ((-767) (-767))) (-15 -1735 ((-112) |#1|))) (-1233 (-563))) (T -120))
+((-1735 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))) (-3100 (*1 *2 *2) (-12 (-5 *2 (-767)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))) (-3100 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))) (-3089 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))) (-3089 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))))
+(-10 -7 (-15 -3089 ((-112) |#1|)) (-15 -3089 ((-112) |#1| (-112))) (-15 -3100 ((-767))) (-15 -3100 ((-767) (-767))) (-15 -1735 ((-112) |#1|)))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2618 ((|#1| $) 15)) (-1792 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 22)) (-3001 (((-112) $ (-767)) NIL)) (-2336 ((|#1| $ |#1|) NIL (|has| $ (-6 -4409)))) (-2996 (($ $ $) 18 (|has| $ (-6 -4409)))) (-3007 (($ $ $) 20 (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4409))) (($ $ "left" $) NIL (|has| $ (-6 -4409))) (($ $ "right" $) NIL (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) NIL (|has| $ (-6 -4409)))) (-2569 (($) NIL T CONST)) (-1700 (($ $) 17)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) NIL)) (-2358 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2218 (($ $ |#1| $) 23)) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-1685 (($ $) 19)) (-2511 (((-640 |#1|) $) NIL)) (-1298 (((-112) $) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1762 (($ |#1| $) 24)) (-3867 (($ |#1| $) 10)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) 14)) (-3445 (($) 8)) (-2308 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2379 (((-563) $ $) NIL)) (-2889 (((-112) $) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) NIL)) (-2367 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1774 (($ (-640 |#1|)) 12)) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-121 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4409) (-6 -4408) (-15 -1774 ($ (-640 |#1|))) (-15 -3867 ($ |#1| $)) (-15 -1762 ($ |#1| $)) (-15 -1792 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-846)) (T -121))
+((-1774 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-121 *3)))) (-3867 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-846)))) (-1762 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-846)))) (-1792 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3)))) (-5 *1 (-121 *3)) (-4 *3 (-846)))))
+(-13 (-125 |#1|) (-10 -8 (-6 -4409) (-6 -4408) (-15 -1774 ($ (-640 |#1|))) (-15 -3867 ($ |#1| $)) (-15 -1762 ($ |#1| $)) (-15 -1792 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
+((-3384 (($ $) 12)) (-2174 (($ $) 10)) (-2292 (($ $ $) 22)) (-2303 (($ $ $) 20)) (-1531 (($ $ $) 18)) (-1517 (($ $ $) 16)))
+(((-122 |#1|) (-10 -8 (-15 -2292 (|#1| |#1| |#1|)) (-15 -2303 (|#1| |#1| |#1|)) (-15 -2174 (|#1| |#1|)) (-15 -3384 (|#1| |#1|)) (-15 -1517 (|#1| |#1| |#1|)) (-15 -1531 (|#1| |#1| |#1|))) (-123)) (T -122))
+NIL
+(-10 -8 (-15 -2292 (|#1| |#1| |#1|)) (-15 -2303 (|#1| |#1| |#1|)) (-15 -2174 (|#1| |#1|)) (-15 -3384 (|#1| |#1|)) (-15 -1517 (|#1| |#1| |#1|)) (-15 -1531 (|#1| |#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3384 (($ $) 103)) (-2210 (($ $ $) 25)) (-2208 (((-1262) $ (-563) (-563)) 66 (|has| $ (-6 -4409)))) (-4073 (((-112) $) 98 (|has| (-112) (-846))) (((-112) (-1 (-112) (-112) (-112)) $) 92)) (-4052 (($ $) 102 (-12 (|has| (-112) (-846)) (|has| $ (-6 -4409)))) (($ (-1 (-112) (-112) (-112)) $) 101 (|has| $ (-6 -4409)))) (-1640 (($ $) 97 (|has| (-112) (-846))) (($ (-1 (-112) (-112) (-112)) $) 91)) (-3001 (((-112) $ (-767)) 37)) (-1849 (((-112) $ (-1224 (-563)) (-112)) 88 (|has| $ (-6 -4409))) (((-112) $ (-563) (-112)) 54 (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) (-112)) $) 71 (|has| $ (-6 -4408)))) (-2569 (($) 38 T CONST)) (-1574 (($ $) 100 (|has| $ (-6 -4409)))) (-4383 (($ $) 90)) (-3814 (($ $) 68 (-12 (|has| (-112) (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ (-1 (-112) (-112)) $) 72 (|has| $ (-6 -4408))) (($ (-112) $) 69 (-12 (|has| (-112) (-1093)) (|has| $ (-6 -4408))))) (-2444 (((-112) (-1 (-112) (-112) (-112)) $) 74 (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) 73 (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) 70 (-12 (|has| (-112) (-1093)) (|has| $ (-6 -4408))))) (-4356 (((-112) $ (-563) (-112)) 53 (|has| $ (-6 -4409)))) (-4293 (((-112) $ (-563)) 55)) (-4369 (((-563) (-112) $ (-563)) 95 (|has| (-112) (-1093))) (((-563) (-112) $) 94 (|has| (-112) (-1093))) (((-563) (-1 (-112) (-112)) $) 93)) (-2658 (((-640 (-112)) $) 45 (|has| $ (-6 -4408)))) (-2200 (($ $ $) 26)) (-2174 (($ $) 30)) (-2292 (($ $ $) 28)) (-1565 (($ (-767) (-112)) 77)) (-2303 (($ $ $) 29)) (-2514 (((-112) $ (-767)) 36)) (-2236 (((-563) $) 63 (|has| (-563) (-846)))) (-3088 (($ $ $) 13)) (-4300 (($ $ $) 96 (|has| (-112) (-846))) (($ (-1 (-112) (-112) (-112)) $ $) 89)) (-3523 (((-640 (-112)) $) 46 (|has| $ (-6 -4408)))) (-2667 (((-112) (-112) $) 48 (-12 (|has| (-112) (-1093)) (|has| $ (-6 -4408))))) (-2251 (((-563) $) 62 (|has| (-563) (-846)))) (-1776 (($ $ $) 14)) (-4347 (($ (-1 (-112) (-112)) $) 41 (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-112) (-112) (-112)) $ $) 82) (($ (-1 (-112) (-112)) $) 40)) (-2481 (((-112) $ (-767)) 35)) (-3854 (((-1151) $) 9)) (-3399 (($ $ $ (-563)) 87) (($ (-112) $ (-563)) 86)) (-2272 (((-640 (-563)) $) 60)) (-2282 (((-112) (-563) $) 59)) (-1693 (((-1113) $) 10)) (-3782 (((-112) $) 64 (|has| (-563) (-846)))) (-1971 (((-3 (-112) "failed") (-1 (-112) (-112)) $) 75)) (-2221 (($ $ (-112)) 65 (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) (-112)) $) 43 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-112)) (-640 (-112))) 52 (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-112) (-112)) 51 (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-294 (-112))) 50 (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-640 (-294 (-112)))) 49 (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093))))) (-2941 (((-112) $ $) 31)) (-2262 (((-112) (-112) $) 61 (-12 (|has| $ (-6 -4408)) (|has| (-112) (-1093))))) (-2295 (((-640 (-112)) $) 58)) (-1665 (((-112) $) 34)) (-3445 (($) 33)) (-2308 (($ $ (-1224 (-563))) 83) (((-112) $ (-563)) 57) (((-112) $ (-563) (-112)) 56)) (-2967 (($ $ (-1224 (-563))) 85) (($ $ (-563)) 84)) (-1708 (((-767) (-112) $) 47 (-12 (|has| (-112) (-1093)) (|has| $ (-6 -4408)))) (((-767) (-1 (-112) (-112)) $) 44 (|has| $ (-6 -4408)))) (-4062 (($ $ $ (-563)) 99 (|has| $ (-6 -4409)))) (-1870 (($ $) 32)) (-2219 (((-536) $) 67 (|has| (-112) (-611 (-536))))) (-1706 (($ (-640 (-112))) 76)) (-2857 (($ (-640 $)) 81) (($ $ $) 80) (($ (-112) $) 79) (($ $ (-112)) 78)) (-1692 (((-858) $) 11)) (-1471 (((-112) (-1 (-112) (-112)) $) 42 (|has| $ (-6 -4408)))) (-2188 (($ $ $) 27)) (-1531 (($ $ $) 105)) (-1779 (((-112) $ $) 16)) (-1754 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 15)) (-1743 (((-112) $ $) 18)) (-1517 (($ $ $) 104)) (-3610 (((-767) $) 39 (|has| $ (-6 -4408)))))
(((-123) (-140)) (T -123))
-((-2176 (*1 *1 *1) (-4 *1 (-123))) (-3572 (*1 *1 *1 *1) (-4 *1 (-123))) (-1546 (*1 *1 *1 *1) (-4 *1 (-123))) (-2190 (*1 *1 *1 *1) (-4 *1 (-123))) (-2202 (*1 *1 *1 *1) (-4 *1 (-123))) (-2212 (*1 *1 *1 *1) (-4 *1 (-123))))
-(-13 (-846) (-656) (-19 (-112)) (-10 -8 (-15 -2176 ($ $)) (-15 -3572 ($ $ $)) (-15 -1546 ($ $ $)) (-15 -2190 ($ $ $)) (-15 -2202 ($ $ $)) (-15 -2212 ($ $ $))))
+((-2174 (*1 *1 *1) (-4 *1 (-123))) (-2303 (*1 *1 *1 *1) (-4 *1 (-123))) (-2292 (*1 *1 *1 *1) (-4 *1 (-123))) (-2188 (*1 *1 *1 *1) (-4 *1 (-123))) (-2200 (*1 *1 *1 *1) (-4 *1 (-123))) (-2210 (*1 *1 *1 *1) (-4 *1 (-123))))
+(-13 (-846) (-656) (-19 (-112)) (-10 -8 (-15 -2174 ($ $)) (-15 -2303 ($ $ $)) (-15 -2292 ($ $ $)) (-15 -2188 ($ $ $)) (-15 -2200 ($ $ $)) (-15 -2210 ($ $ $))))
(((-34) . T) ((-102) . T) ((-610 (-858)) . T) ((-151 #0=(-112)) . T) ((-611 (-536)) |has| (-112) (-611 (-536))) ((-286 #1=(-563) #0#) . T) ((-288 #1# #0#) . T) ((-309 #0#) -12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093))) ((-373 #0#) . T) ((-489 #0#) . T) ((-601 #1# #0#) . T) ((-514 #0# #0#) -12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093))) ((-646 #0#) . T) ((-656) . T) ((-19 #0#) . T) ((-846) . T) ((-1093) . T) ((-1208) . T))
-((-4345 (($ (-1 |#2| |#2|) $) 22)) (-1872 (($ $) 16)) (-3608 (((-767) $) 24)))
-(((-124 |#1| |#2|) (-10 -8 (-15 -4345 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3608 ((-767) |#1|)) (-15 -1872 (|#1| |#1|))) (-125 |#2|) (-1093)) (T -124))
+((-4347 (($ (-1 |#2| |#2|) $) 22)) (-1870 (($ $) 16)) (-3610 (((-767) $) 24)))
+(((-124 |#1| |#2|) (-10 -8 (-15 -4347 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3610 ((-767) |#1|)) (-15 -1870 (|#1| |#1|))) (-125 |#2|) (-1093)) (T -124))
NIL
-(-10 -8 (-15 -4345 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3608 ((-767) |#1|)) (-15 -1872 (|#1| |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2619 ((|#1| $) 48)) (-2759 (((-112) $ (-767)) 8)) (-2936 ((|#1| $ |#1|) 39 (|has| $ (-6 -4408)))) (-2641 (($ $ $) 52 (|has| $ (-6 -4408)))) (-4190 (($ $ $) 54 (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4408))) (($ $ "left" $) 55 (|has| $ (-6 -4408))) (($ $ "right" $) 53 (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) 41 (|has| $ (-6 -4408)))) (-4239 (($) 7 T CONST)) (-1701 (($ $) 57)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) 50)) (-1469 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-2219 (($ $ |#1| $) 60)) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-1686 (($ $) 59)) (-2512 (((-640 |#1|) $) 45)) (-2194 (((-112) $) 49)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-4071 (((-563) $ $) 44)) (-1434 (((-112) $) 46)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) 51)) (-2962 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+(-10 -8 (-15 -4347 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3610 ((-767) |#1|)) (-15 -1870 (|#1| |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2618 ((|#1| $) 48)) (-3001 (((-112) $ (-767)) 8)) (-2336 ((|#1| $ |#1|) 39 (|has| $ (-6 -4409)))) (-2996 (($ $ $) 52 (|has| $ (-6 -4409)))) (-3007 (($ $ $) 54 (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4409))) (($ $ "left" $) 55 (|has| $ (-6 -4409))) (($ $ "right" $) 53 (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) 41 (|has| $ (-6 -4409)))) (-2569 (($) 7 T CONST)) (-1700 (($ $) 57)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) 50)) (-2358 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-2218 (($ $ |#1| $) 60)) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-1685 (($ $) 59)) (-2511 (((-640 |#1|) $) 45)) (-1298 (((-112) $) 49)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-2379 (((-563) $ $) 44)) (-2889 (((-112) $) 46)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) 51)) (-2367 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-125 |#1|) (-140) (-1093)) (T -125))
-((-2219 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-125 *2)) (-4 *2 (-1093)))))
-(-13 (-119 |t#1|) (-10 -8 (-6 -4408) (-6 -4407) (-15 -2219 ($ $ |t#1| $))))
-(((-34) . T) ((-102) |has| |#1| (-1093)) ((-119 |#1|) . T) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1006 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2619 ((|#1| $) 15)) (-2759 (((-112) $ (-767)) NIL)) (-2936 ((|#1| $ |#1|) 19 (|has| $ (-6 -4408)))) (-2641 (($ $ $) 20 (|has| $ (-6 -4408)))) (-4190 (($ $ $) 18 (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4408))) (($ $ "left" $) NIL (|has| $ (-6 -4408))) (($ $ "right" $) NIL (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) NIL (|has| $ (-6 -4408)))) (-4239 (($) NIL T CONST)) (-1701 (($ $) 21)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) NIL)) (-1469 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2219 (($ $ |#1| $) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-1686 (($ $) NIL)) (-2512 (((-640 |#1|) $) NIL)) (-2194 (((-112) $) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1812 (($ |#1| $) 10)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) 14)) (-3135 (($) 8)) (-2309 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-4071 (((-563) $ $) NIL)) (-1434 (((-112) $) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) 17)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) NIL)) (-2962 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1508 (($ (-640 |#1|)) 12)) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-126 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4408) (-15 -1508 ($ (-640 |#1|))) (-15 -1812 ($ |#1| $)))) (-846)) (T -126))
-((-1508 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-126 *3)))) (-1812 (*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-846)))))
-(-13 (-125 |#1|) (-10 -8 (-6 -4408) (-15 -1508 ($ (-640 |#1|))) (-15 -1812 ($ |#1| $))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2619 ((|#1| $) 24)) (-2759 (((-112) $ (-767)) NIL)) (-2936 ((|#1| $ |#1|) 26 (|has| $ (-6 -4408)))) (-2641 (($ $ $) 30 (|has| $ (-6 -4408)))) (-4190 (($ $ $) 28 (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4408))) (($ $ "left" $) NIL (|has| $ (-6 -4408))) (($ $ "right" $) NIL (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) NIL (|has| $ (-6 -4408)))) (-4239 (($) NIL T CONST)) (-1701 (($ $) 20)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) NIL)) (-1469 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2219 (($ $ |#1| $) 15)) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-1686 (($ $) 19)) (-2512 (((-640 |#1|) $) NIL)) (-2194 (((-112) $) 21)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) 18)) (-3135 (($) 11)) (-2309 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-4071 (((-563) $ $) NIL)) (-1434 (((-112) $) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) NIL)) (-2962 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4066 (($ |#1|) 17) (($ $ |#1| $) 16)) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 10 (|has| |#1| (-1093)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-127 |#1|) (-13 (-125 |#1|) (-10 -8 (-15 -4066 ($ |#1|)) (-15 -4066 ($ $ |#1| $)))) (-1093)) (T -127))
-((-4066 (*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1093)))) (-4066 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1093)))))
-(-13 (-125 |#1|) (-10 -8 (-15 -4066 ($ |#1|)) (-15 -4066 ($ $ |#1| $))))
-((-1677 (((-112) $ $) NIL (|has| (-129) (-1093)))) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-3523 (((-112) (-1 (-112) (-129) (-129)) $) NIL) (((-112) $) NIL (|has| (-129) (-846)))) (-2770 (($ (-1 (-112) (-129) (-129)) $) NIL (|has| $ (-6 -4408))) (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-129) (-846))))) (-1642 (($ (-1 (-112) (-129) (-129)) $) NIL) (($ $) NIL (|has| (-129) (-846)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 (((-129) $ (-563) (-129)) 17 (|has| $ (-6 -4408))) (((-129) $ (-1224 (-563)) (-129)) NIL (|has| $ (-6 -4408)))) (-1466 (((-767) $ (-767)) 7)) (-2256 (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-129) (-1093))))) (-1459 (($ (-129) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-129) (-1093)))) (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4407)))) (-2444 (((-129) (-1 (-129) (-129) (-129)) $ (-129) (-129)) NIL (-12 (|has| $ (-6 -4407)) (|has| (-129) (-1093)))) (((-129) (-1 (-129) (-129) (-129)) $ (-129)) NIL (|has| $ (-6 -4407))) (((-129) (-1 (-129) (-129) (-129)) $) NIL (|has| $ (-6 -4407)))) (-4355 (((-129) $ (-563) (-129)) 16 (|has| $ (-6 -4408)))) (-4293 (((-129) $ (-563)) 13)) (-4368 (((-563) (-1 (-112) (-129)) $) NIL) (((-563) (-129) $) NIL (|has| (-129) (-1093))) (((-563) (-129) $ (-563)) NIL (|has| (-129) (-1093)))) (-2659 (((-640 (-129)) $) NIL (|has| $ (-6 -4407)))) (-1566 (($ (-767) (-129)) 11)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) 18 (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (|has| (-129) (-846)))) (-3164 (($ (-1 (-112) (-129) (-129)) $ $) NIL) (($ $ $) NIL (|has| (-129) (-846)))) (-2259 (((-640 (-129)) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-129) (-1093))))) (-3860 (((-563) $) 19 (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| (-129) (-846)))) (-4345 (($ (-1 (-129) (-129)) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-129) (-129)) $) NIL) (($ (-1 (-129) (-129) (-129)) $ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| (-129) (-1093)))) (-3396 (($ (-129) $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL (|has| (-129) (-1093)))) (-3781 (((-129) $) NIL (|has| (-563) (-846)))) (-4203 (((-3 (-129) "failed") (-1 (-112) (-129)) $) NIL)) (-2358 (($ $ (-129)) NIL (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-129)))) NIL (-12 (|has| (-129) (-309 (-129))) (|has| (-129) (-1093)))) (($ $ (-294 (-129))) NIL (-12 (|has| (-129) (-309 (-129))) (|has| (-129) (-1093)))) (($ $ (-129) (-129)) NIL (-12 (|has| (-129) (-309 (-129))) (|has| (-129) (-1093)))) (($ $ (-640 (-129)) (-640 (-129))) NIL (-12 (|has| (-129) (-309 (-129))) (|has| (-129) (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-129) (-1093))))) (-2836 (((-640 (-129)) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) 9)) (-2309 (((-129) $ (-563) (-129)) NIL) (((-129) $ (-563)) 15) (($ $ (-1224 (-563))) NIL)) (-2963 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1709 (((-767) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4407))) (((-767) (-129) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-129) (-1093))))) (-3076 (($ $ $ (-563)) NIL (|has| $ (-6 -4408)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-129) (-611 (-536))))) (-1707 (($ (-640 (-129))) 29)) (-2853 (($ $ (-129)) NIL) (($ (-129) $) NIL) (($ $ $) 30) (($ (-640 $)) NIL)) (-1693 (((-1151) $) 27) (((-858) $) NIL (|has| (-129) (-610 (-858))))) (-2371 (((-767) $) 14)) (-2181 (($ (-767)) 8)) (-4383 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) NIL (|has| (-129) (-846)))) (-1756 (((-112) $ $) NIL (|has| (-129) (-846)))) (-1718 (((-112) $ $) 22 (|has| (-129) (-1093)))) (-1768 (((-112) $ $) NIL (|has| (-129) (-846)))) (-1744 (((-112) $ $) NIL (|has| (-129) (-846)))) (-3608 (((-767) $) 20)))
-(((-128) (-13 (-19 (-129)) (-610 (-1151)) (-10 -8 (-15 -2181 ($ (-767))) (-15 -3608 ((-767) $)) (-15 -2371 ((-767) $)) (-15 -1466 ((-767) $ (-767)))))) (T -128))
-((-2181 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-128)))) (-3608 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-128)))) (-2371 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-128)))) (-1466 (*1 *2 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-128)))))
-(-13 (-19 (-129)) (-610 (-1151)) (-10 -8 (-15 -2181 ($ (-767))) (-15 -3608 ((-767) $)) (-15 -2371 ((-767) $)) (-15 -1466 ((-767) $ (-767)))))
-((-1677 (((-112) $ $) NIL)) (-3749 (((-767)) NIL)) (-4239 (($) NIL)) (-1691 (($) NIL)) (-3084 (($ $ $) NIL) (($) 15 T CONST)) (-1777 (($ $ $) NIL) (($) 16 T CONST)) (-1476 (((-917) $) NIL)) (-3573 (((-1151) $) NIL)) (-2555 (($ (-917)) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL) (($ (-144)) 9) (((-144) $) 11)) (-2947 (($ (-767)) 6)) (-3119 (($ $ $) 18)) (-3109 (($ $ $) 17)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 13)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 14)))
-(((-129) (-13 (-840) (-490 (-144)) (-10 -8 (-15 -2947 ($ (-767))) (-15 -3109 ($ $ $)) (-15 -3119 ($ $ $)) (-15 -4239 ($))))) (T -129))
-((-2947 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-129)))) (-3109 (*1 *1 *1 *1) (-5 *1 (-129))) (-3119 (*1 *1 *1 *1) (-5 *1 (-129))) (-4239 (*1 *1) (-5 *1 (-129))))
-(-13 (-840) (-490 (-144)) (-10 -8 (-15 -2947 ($ (-767))) (-15 -3109 ($ $ $)) (-15 -3119 ($ $ $)) (-15 -4239 ($))))
+((-2218 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-125 *2)) (-4 *2 (-1093)))))
+(-13 (-119 |t#1|) (-10 -8 (-6 -4409) (-6 -4408) (-15 -2218 ($ $ |t#1| $))))
+(((-34) . T) ((-102) |has| |#1| (-1093)) ((-119 |#1|) . T) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1006 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2618 ((|#1| $) 15)) (-3001 (((-112) $ (-767)) NIL)) (-2336 ((|#1| $ |#1|) 19 (|has| $ (-6 -4409)))) (-2996 (($ $ $) 20 (|has| $ (-6 -4409)))) (-3007 (($ $ $) 18 (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4409))) (($ $ "left" $) NIL (|has| $ (-6 -4409))) (($ $ "right" $) NIL (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) NIL (|has| $ (-6 -4409)))) (-2569 (($) NIL T CONST)) (-1700 (($ $) 21)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) NIL)) (-2358 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2218 (($ $ |#1| $) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-1685 (($ $) NIL)) (-2511 (((-640 |#1|) $) NIL)) (-1298 (((-112) $) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3867 (($ |#1| $) 10)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) 14)) (-3445 (($) 8)) (-2308 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2379 (((-563) $ $) NIL)) (-2889 (((-112) $) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) 17)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) NIL)) (-2367 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3800 (($ (-640 |#1|)) 12)) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-126 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4409) (-15 -3800 ($ (-640 |#1|))) (-15 -3867 ($ |#1| $)))) (-846)) (T -126))
+((-3800 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-126 *3)))) (-3867 (*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-846)))))
+(-13 (-125 |#1|) (-10 -8 (-6 -4409) (-15 -3800 ($ (-640 |#1|))) (-15 -3867 ($ |#1| $))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2618 ((|#1| $) 24)) (-3001 (((-112) $ (-767)) NIL)) (-2336 ((|#1| $ |#1|) 26 (|has| $ (-6 -4409)))) (-2996 (($ $ $) 30 (|has| $ (-6 -4409)))) (-3007 (($ $ $) 28 (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4409))) (($ $ "left" $) NIL (|has| $ (-6 -4409))) (($ $ "right" $) NIL (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) NIL (|has| $ (-6 -4409)))) (-2569 (($) NIL T CONST)) (-1700 (($ $) 20)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) NIL)) (-2358 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2218 (($ $ |#1| $) 15)) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-1685 (($ $) 19)) (-2511 (((-640 |#1|) $) NIL)) (-1298 (((-112) $) 21)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) 18)) (-3445 (($) 11)) (-2308 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2379 (((-563) $ $) NIL)) (-2889 (((-112) $) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) NIL)) (-2367 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2014 (($ |#1|) 17) (($ $ |#1| $) 16)) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 10 (|has| |#1| (-1093)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-127 |#1|) (-13 (-125 |#1|) (-10 -8 (-15 -2014 ($ |#1|)) (-15 -2014 ($ $ |#1| $)))) (-1093)) (T -127))
+((-2014 (*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1093)))) (-2014 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1093)))))
+(-13 (-125 |#1|) (-10 -8 (-15 -2014 ($ |#1|)) (-15 -2014 ($ $ |#1| $))))
+((-1677 (((-112) $ $) NIL (|has| (-129) (-1093)))) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4073 (((-112) (-1 (-112) (-129) (-129)) $) NIL) (((-112) $) NIL (|has| (-129) (-846)))) (-4052 (($ (-1 (-112) (-129) (-129)) $) NIL (|has| $ (-6 -4409))) (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| (-129) (-846))))) (-1640 (($ (-1 (-112) (-129) (-129)) $) NIL) (($ $) NIL (|has| (-129) (-846)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 (((-129) $ (-563) (-129)) 18 (|has| $ (-6 -4409))) (((-129) $ (-1224 (-563)) (-129)) NIL (|has| $ (-6 -4409)))) (-3899 (((-767) $ (-767)) 24)) (-2255 (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-129) (-1093))))) (-1459 (($ (-129) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-129) (-1093)))) (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4408)))) (-2444 (((-129) (-1 (-129) (-129) (-129)) $ (-129) (-129)) NIL (-12 (|has| $ (-6 -4408)) (|has| (-129) (-1093)))) (((-129) (-1 (-129) (-129) (-129)) $ (-129)) NIL (|has| $ (-6 -4408))) (((-129) (-1 (-129) (-129) (-129)) $) NIL (|has| $ (-6 -4408)))) (-4356 (((-129) $ (-563) (-129)) 17 (|has| $ (-6 -4409)))) (-4293 (((-129) $ (-563)) 15)) (-4369 (((-563) (-1 (-112) (-129)) $) NIL) (((-563) (-129) $) NIL (|has| (-129) (-1093))) (((-563) (-129) $ (-563)) NIL (|has| (-129) (-1093)))) (-2658 (((-640 (-129)) $) NIL (|has| $ (-6 -4408)))) (-1565 (($ (-767) (-129)) 11)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) 19 (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (|has| (-129) (-846)))) (-4300 (($ (-1 (-112) (-129) (-129)) $ $) NIL) (($ $ $) NIL (|has| (-129) (-846)))) (-3523 (((-640 (-129)) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-129) (-1093))))) (-2251 (((-563) $) 20 (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| (-129) (-846)))) (-4347 (($ (-1 (-129) (-129)) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-129) (-129)) $) NIL) (($ (-1 (-129) (-129) (-129)) $ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| (-129) (-1093)))) (-3399 (($ (-129) $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL (|has| (-129) (-1093)))) (-3782 (((-129) $) NIL (|has| (-563) (-846)))) (-1971 (((-3 (-129) "failed") (-1 (-112) (-129)) $) NIL)) (-2221 (($ $ (-129)) NIL (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-129)))) NIL (-12 (|has| (-129) (-309 (-129))) (|has| (-129) (-1093)))) (($ $ (-294 (-129))) NIL (-12 (|has| (-129) (-309 (-129))) (|has| (-129) (-1093)))) (($ $ (-129) (-129)) NIL (-12 (|has| (-129) (-309 (-129))) (|has| (-129) (-1093)))) (($ $ (-640 (-129)) (-640 (-129))) NIL (-12 (|has| (-129) (-309 (-129))) (|has| (-129) (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-129) (-1093))))) (-2295 (((-640 (-129)) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) 9)) (-2308 (((-129) $ (-563) (-129)) NIL) (((-129) $ (-563)) 16) (($ $ (-1224 (-563))) NIL)) (-2967 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1708 (((-767) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4408))) (((-767) (-129) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-129) (-1093))))) (-4062 (($ $ $ (-563)) NIL (|has| $ (-6 -4409)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-129) (-611 (-536))))) (-1706 (($ (-640 (-129))) 33)) (-2857 (($ $ (-129)) NIL) (($ (-129) $) NIL) (($ $ $) 34) (($ (-640 $)) NIL)) (-1692 (((-954 (-129)) $) 26) (((-1151) $) 31) (((-858) $) NIL (|has| (-129) (-610 (-858))))) (-3911 (((-767) $) 13)) (-3922 (($ (-767)) 8)) (-1471 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) NIL (|has| (-129) (-846)))) (-1754 (((-112) $ $) NIL (|has| (-129) (-846)))) (-1718 (((-112) $ $) 23 (|has| (-129) (-1093)))) (-1766 (((-112) $ $) NIL (|has| (-129) (-846)))) (-1743 (((-112) $ $) NIL (|has| (-129) (-846)))) (-3610 (((-767) $) 12 (|has| $ (-6 -4408)))))
+(((-128) (-13 (-19 (-129)) (-610 (-954 (-129))) (-610 (-1151)) (-10 -8 (-15 -3922 ($ (-767))) (-15 -3911 ((-767) $)) (-15 -3899 ((-767) $ (-767))) (-6 -4408)))) (T -128))
+((-3922 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-128)))) (-3911 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-128)))) (-3899 (*1 *2 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-128)))))
+(-13 (-19 (-129)) (-610 (-954 (-129))) (-610 (-1151)) (-10 -8 (-15 -3922 ($ (-767))) (-15 -3911 ((-767) $)) (-15 -3899 ((-767) $ (-767))) (-6 -4408)))
+((-1677 (((-112) $ $) NIL)) (-3750 (((-767)) NIL)) (-2569 (($) NIL)) (-1690 (($) NIL)) (-3088 (($ $ $) NIL) (($) 15 T CONST)) (-1776 (($ $ $) NIL) (($) 16 T CONST)) (-3990 (((-917) $) NIL)) (-3854 (((-1151) $) NIL)) (-2552 (($ (-917)) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL) (($ (-144)) 9) (((-144) $) 11)) (-3890 (($ (-767)) 6)) (-3123 (($ $ $) 18)) (-3113 (($ $ $) 17)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 13)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 14)))
+(((-129) (-13 (-840) (-490 (-144)) (-10 -8 (-15 -3890 ($ (-767))) (-15 -3113 ($ $ $)) (-15 -3123 ($ $ $)) (-15 -2569 ($))))) (T -129))
+((-3890 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-129)))) (-3113 (*1 *1 *1 *1) (-5 *1 (-129))) (-3123 (*1 *1 *1 *1) (-5 *1 (-129))) (-2569 (*1 *1) (-5 *1 (-129))))
+(-13 (-840) (-490 (-144)) (-10 -8 (-15 -3890 ($ (-767))) (-15 -3113 ($ $ $)) (-15 -3123 ($ $ $)) (-15 -2569 ($))))
((|NonNegativeInteger|) (< |#1| 256))
-((-1677 (((-112) $ $) NIL)) (-3534 (($) 6 T CONST)) (-3547 (($) 7 T CONST)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 14)) (-3568 (($) 8 T CONST)) (-1718 (((-112) $ $) 10)))
-(((-130) (-13 (-1093) (-10 -8 (-15 -3547 ($) -2669) (-15 -3568 ($) -2669) (-15 -3534 ($) -2669)))) (T -130))
-((-3547 (*1 *1) (-5 *1 (-130))) (-3568 (*1 *1) (-5 *1 (-130))) (-3534 (*1 *1) (-5 *1 (-130))))
-(-13 (-1093) (-10 -8 (-15 -3547 ($) -2669) (-15 -3568 ($) -2669) (-15 -3534 ($) -2669)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15)))
+((-1677 (((-112) $ $) NIL)) (-3876 (($) 6 T CONST)) (-3898 (($) 7 T CONST)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 14)) (-3886 (($) 8 T CONST)) (-1718 (((-112) $ $) 10)))
+(((-130) (-13 (-1093) (-10 -8 (-15 -3898 ($) -2668) (-15 -3886 ($) -2668) (-15 -3876 ($) -2668)))) (T -130))
+((-3898 (*1 *1) (-5 *1 (-130))) (-3886 (*1 *1) (-5 *1 (-130))) (-3876 (*1 *1) (-5 *1 (-130))))
+(-13 (-1093) (-10 -8 (-15 -3898 ($) -2668) (-15 -3886 ($) -2668) (-15 -3876 ($) -2668)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15)))
(((-131) (-140)) (T -131))
-((-1495 (*1 *1 *1 *1) (|partial| -4 *1 (-131))))
-(-13 (-23) (-10 -8 (-15 -1495 ((-3 $ "failed") $ $))))
+((-3905 (*1 *1 *1 *1) (|partial| -4 *1 (-131))))
+(-13 (-23) (-10 -8 (-15 -3905 ((-3 $ "failed") $ $))))
(((-23) . T) ((-25) . T) ((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-1677 (((-112) $ $) 7)) (-3052 (((-1262) $ (-767)) 19)) (-4368 (((-767) $) 20)) (-3084 (($ $ $) 13)) (-1777 (($ $ $) 14)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1778 (((-112) $ $) 16)) (-1756 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 15)) (-1744 (((-112) $ $) 18)))
+((-1677 (((-112) $ $) 7)) (-3916 (((-1262) $ (-767)) 19)) (-4369 (((-767) $) 20)) (-3088 (($ $ $) 13)) (-1776 (($ $ $) 14)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1779 (((-112) $ $) 16)) (-1754 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 15)) (-1743 (((-112) $ $) 18)))
(((-132) (-140)) (T -132))
-((-4368 (*1 *2 *1) (-12 (-4 *1 (-132)) (-5 *2 (-767)))) (-3052 (*1 *2 *1 *3) (-12 (-4 *1 (-132)) (-5 *3 (-767)) (-5 *2 (-1262)))))
-(-13 (-846) (-10 -8 (-15 -4368 ((-767) $)) (-15 -3052 ((-1262) $ (-767)))))
+((-4369 (*1 *2 *1) (-12 (-4 *1 (-132)) (-5 *2 (-767)))) (-3916 (*1 *2 *1 *3) (-12 (-4 *1 (-132)) (-5 *3 (-767)) (-5 *2 (-1262)))))
+(-13 (-846) (-10 -8 (-15 -4369 ((-767) $)) (-15 -3916 ((-1262) $ (-767)))))
(((-102) . T) ((-610 (-858)) . T) ((-846) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 18) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3359 (((-640 (-1128)) $) 10)) (-1718 (((-112) $ $) NIL)))
-(((-133) (-13 (-1076) (-10 -8 (-15 -3359 ((-640 (-1128)) $))))) (T -133))
-((-3359 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-133)))))
-(-13 (-1076) (-10 -8 (-15 -3359 ((-640 (-1128)) $))))
-((-1677 (((-112) $ $) 34)) (-3411 (((-112) $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-767) "failed") $) 41)) (-2058 (((-767) $) 39)) (-3400 (((-3 $ "failed") $) NIL)) (-3827 (((-112) $) NIL)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) 27)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3973 (((-112)) 42)) (-2708 (((-112) (-112)) 44)) (-1376 (((-112) $) 24)) (-3126 (((-112) $) 38)) (-1693 (((-858) $) 22) (($ (-767)) 14)) (-2241 (($) 11 T CONST)) (-2254 (($) 12 T CONST)) (-1943 (($ (-767)) 15)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 25)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 26)) (-1826 (((-3 $ "failed") $ $) 30)) (-1814 (($ $ $) 28)) (** (($ $ (-767)) NIL) (($ $ (-917)) NIL) (($ $ $) 37)) (* (($ (-767) $) 33) (($ (-917) $) NIL) (($ $ $) 31)))
-(((-134) (-13 (-846) (-23) (-722) (-1034 (-767)) (-10 -8 (-6 (-4409 "*")) (-15 -1826 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -1943 ($ (-767))) (-15 -1376 ((-112) $)) (-15 -3126 ((-112) $)) (-15 -3973 ((-112))) (-15 -2708 ((-112) (-112)))))) (T -134))
-((-1826 (*1 *1 *1 *1) (|partial| -5 *1 (-134))) (** (*1 *1 *1 *1) (-5 *1 (-134))) (-1943 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-134)))) (-1376 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134)))) (-3126 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134)))) (-3973 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))) (-2708 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
-(-13 (-846) (-23) (-722) (-1034 (-767)) (-10 -8 (-6 (-4409 "*")) (-15 -1826 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -1943 ($ (-767))) (-15 -1376 ((-112) $)) (-15 -3126 ((-112) $)) (-15 -3973 ((-112))) (-15 -2708 ((-112) (-112)))))
-((-4256 (((-136 |#1| |#2| |#4|) (-640 |#4|) (-136 |#1| |#2| |#3|)) 14)) (-2240 (((-136 |#1| |#2| |#4|) (-1 |#4| |#3|) (-136 |#1| |#2| |#3|)) 18)))
-(((-135 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4256 ((-136 |#1| |#2| |#4|) (-640 |#4|) (-136 |#1| |#2| |#3|))) (-15 -2240 ((-136 |#1| |#2| |#4|) (-1 |#4| |#3|) (-136 |#1| |#2| |#3|)))) (-563) (-767) (-172) (-172)) (T -135))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-136 *5 *6 *7)) (-14 *5 (-563)) (-14 *6 (-767)) (-4 *7 (-172)) (-4 *8 (-172)) (-5 *2 (-136 *5 *6 *8)) (-5 *1 (-135 *5 *6 *7 *8)))) (-4256 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-136 *5 *6 *7)) (-14 *5 (-563)) (-14 *6 (-767)) (-4 *7 (-172)) (-4 *8 (-172)) (-5 *2 (-136 *5 *6 *8)) (-5 *1 (-135 *5 *6 *7 *8)))))
-(-10 -7 (-15 -4256 ((-136 |#1| |#2| |#4|) (-640 |#4|) (-136 |#1| |#2| |#3|))) (-15 -2240 ((-136 |#1| |#2| |#4|) (-1 |#4| |#3|) (-136 |#1| |#2| |#3|))))
-((-1677 (((-112) $ $) NIL)) (-4230 (($ (-640 |#3|)) 40)) (-3493 (($ $) 99) (($ $ (-563) (-563)) 98)) (-4239 (($) 17)) (-2131 (((-3 |#3| "failed") $) 60)) (-2058 ((|#3| $) NIL)) (-1512 (($ $ (-640 (-563))) 100)) (-4246 (((-640 |#3|) $) 36)) (-2522 (((-767) $) 44)) (-2041 (($ $ $) 93)) (-4320 (($) 43)) (-3573 (((-1151) $) NIL)) (-2322 (($) 16)) (-1694 (((-1113) $) NIL)) (-2309 ((|#3| $) 46) ((|#3| $ (-563)) 47) ((|#3| $ (-563) (-563)) 48) ((|#3| $ (-563) (-563) (-563)) 49) ((|#3| $ (-563) (-563) (-563) (-563)) 50) ((|#3| $ (-640 (-563))) 52)) (-4167 (((-767) $) 45)) (-3161 (($ $ (-563) $ (-563)) 94) (($ $ (-563) (-563)) 96)) (-1693 (((-858) $) 67) (($ |#3|) 68) (($ (-240 |#2| |#3|)) 75) (($ (-1135 |#2| |#3|)) 78) (($ (-640 |#3|)) 53) (($ (-640 $)) 58)) (-2241 (($) 69 T CONST)) (-2254 (($) 70 T CONST)) (-1718 (((-112) $ $) 80)) (-1826 (($ $) 86) (($ $ $) 84)) (-1814 (($ $ $) 82)) (* (($ |#3| $) 91) (($ $ |#3|) 92) (($ $ (-563)) 89) (($ (-563) $) 88) (($ $ $) 95)))
-(((-136 |#1| |#2| |#3|) (-13 (-465 |#3| (-767)) (-470 (-563) (-767)) (-10 -8 (-15 -1693 ($ (-240 |#2| |#3|))) (-15 -1693 ($ (-1135 |#2| |#3|))) (-15 -1693 ($ (-640 |#3|))) (-15 -1693 ($ (-640 $))) (-15 -2522 ((-767) $)) (-15 -2309 (|#3| $)) (-15 -2309 (|#3| $ (-563))) (-15 -2309 (|#3| $ (-563) (-563))) (-15 -2309 (|#3| $ (-563) (-563) (-563))) (-15 -2309 (|#3| $ (-563) (-563) (-563) (-563))) (-15 -2309 (|#3| $ (-640 (-563)))) (-15 -2041 ($ $ $)) (-15 * ($ $ $)) (-15 -3161 ($ $ (-563) $ (-563))) (-15 -3161 ($ $ (-563) (-563))) (-15 -3493 ($ $)) (-15 -3493 ($ $ (-563) (-563))) (-15 -1512 ($ $ (-640 (-563)))) (-15 -2322 ($)) (-15 -4320 ($)) (-15 -4246 ((-640 |#3|) $)) (-15 -4230 ($ (-640 |#3|))) (-15 -4239 ($)))) (-563) (-767) (-172)) (T -136))
-((-2041 (*1 *1 *1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767)) (-4 *4 (-172)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-240 *4 *5)) (-14 *4 (-767)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-1135 *4 *5)) (-14 *4 (-767)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-640 *5)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)) (-14 *4 (-767)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-640 (-136 *3 *4 *5))) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)) (-14 *4 (-767)) (-4 *5 (-172)))) (-2522 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)) (-14 *4 *2) (-4 *5 (-172)))) (-2309 (*1 *2 *1) (-12 (-4 *2 (-172)) (-5 *1 (-136 *3 *4 *2)) (-14 *3 (-563)) (-14 *4 (-767)))) (-2309 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-767)))) (-2309 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-767)))) (-2309 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-563)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-767)))) (-2309 (*1 *2 *1 *3 *3 *3 *3) (-12 (-5 *3 (-563)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-767)))) (-2309 (*1 *2 *1 *3) (-12 (-5 *3 (-640 (-563))) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 (-563)) (-14 *5 (-767)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767)) (-4 *4 (-172)))) (-3161 (*1 *1 *1 *2 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-767)) (-4 *5 (-172)))) (-3161 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-767)) (-4 *5 (-172)))) (-3493 (*1 *1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767)) (-4 *4 (-172)))) (-3493 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-767)) (-4 *5 (-172)))) (-1512 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)) (-14 *4 (-767)) (-4 *5 (-172)))) (-2322 (*1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767)) (-4 *4 (-172)))) (-4320 (*1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767)) (-4 *4 (-172)))) (-4246 (*1 *2 *1) (-12 (-5 *2 (-640 *5)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)) (-14 *4 (-767)) (-4 *5 (-172)))) (-4230 (*1 *1 *2) (-12 (-5 *2 (-640 *5)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)) (-14 *4 (-767)))) (-4239 (*1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767)) (-4 *4 (-172)))))
-(-13 (-465 |#3| (-767)) (-470 (-563) (-767)) (-10 -8 (-15 -1693 ($ (-240 |#2| |#3|))) (-15 -1693 ($ (-1135 |#2| |#3|))) (-15 -1693 ($ (-640 |#3|))) (-15 -1693 ($ (-640 $))) (-15 -2522 ((-767) $)) (-15 -2309 (|#3| $)) (-15 -2309 (|#3| $ (-563))) (-15 -2309 (|#3| $ (-563) (-563))) (-15 -2309 (|#3| $ (-563) (-563) (-563))) (-15 -2309 (|#3| $ (-563) (-563) (-563) (-563))) (-15 -2309 (|#3| $ (-640 (-563)))) (-15 -2041 ($ $ $)) (-15 * ($ $ $)) (-15 -3161 ($ $ (-563) $ (-563))) (-15 -3161 ($ $ (-563) (-563))) (-15 -3493 ($ $)) (-15 -3493 ($ $ (-563) (-563))) (-15 -1512 ($ $ (-640 (-563)))) (-15 -2322 ($)) (-15 -4320 ($)) (-15 -4246 ((-640 |#3|) $)) (-15 -4230 ($ (-640 |#3|))) (-15 -4239 ($))))
-((-1677 (((-112) $ $) NIL)) (-2351 (((-1128) $) 11)) (-2340 (((-1128) $) 9)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 19) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-137) (-13 (-1076) (-10 -8 (-15 -2340 ((-1128) $)) (-15 -2351 ((-1128) $))))) (T -137))
-((-2340 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-137)))) (-2351 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-137)))))
-(-13 (-1076) (-10 -8 (-15 -2340 ((-1128) $)) (-15 -2351 ((-1128) $))))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-2504 (((-1169) $) 10)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 19) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3359 (((-640 (-1128)) $) 12)) (-1718 (((-112) $ $) NIL)))
-(((-138) (-13 (-1076) (-10 -8 (-15 -2504 ((-1169) $)) (-15 -3359 ((-640 (-1128)) $))))) (T -138))
-((-2504 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-138)))) (-3359 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-138)))))
-(-13 (-1076) (-10 -8 (-15 -2504 ((-1169) $)) (-15 -3359 ((-640 (-1128)) $))))
-((-1677 (((-112) $ $) NIL)) (-3453 (((-640 (-861)) $) NIL)) (-3348 (((-506) $) NIL)) (-3573 (((-1151) $) NIL)) (-2504 (((-186) $) NIL)) (-1694 (((-1113) $) NIL)) (-2544 (((-640 (-112)) $) NIL)) (-1693 (((-858) $) NIL) (((-187) $) 6)) (-1396 (((-55) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 18) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3363 (((-640 (-1128)) $) 10)) (-1718 (((-112) $ $) NIL)))
+(((-133) (-13 (-1076) (-10 -8 (-15 -3363 ((-640 (-1128)) $))))) (T -133))
+((-3363 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-133)))))
+(-13 (-1076) (-10 -8 (-15 -3363 ((-640 (-1128)) $))))
+((-1677 (((-112) $ $) 34)) (-3439 (((-112) $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-767) "failed") $) 41)) (-2057 (((-767) $) 39)) (-3951 (((-3 $ "failed") $) NIL)) (-3401 (((-112) $) NIL)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) 27)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3936 (((-112)) 42)) (-3927 (((-112) (-112)) 44)) (-2994 (((-112) $) 24)) (-3946 (((-112) $) 38)) (-1692 (((-858) $) 22) (($ (-767)) 14)) (-2239 (($) 11 T CONST)) (-2253 (($) 12 T CONST)) (-3956 (($ (-767)) 15)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 25)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 26)) (-1825 (((-3 $ "failed") $ $) 30)) (-1813 (($ $ $) 28)) (** (($ $ (-767)) NIL) (($ $ (-917)) NIL) (($ $ $) 37)) (* (($ (-767) $) 33) (($ (-917) $) NIL) (($ $ $) 31)))
+(((-134) (-13 (-846) (-23) (-722) (-1034 (-767)) (-10 -8 (-6 (-4410 "*")) (-15 -1825 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -3956 ($ (-767))) (-15 -2994 ((-112) $)) (-15 -3946 ((-112) $)) (-15 -3936 ((-112))) (-15 -3927 ((-112) (-112)))))) (T -134))
+((-1825 (*1 *1 *1 *1) (|partial| -5 *1 (-134))) (** (*1 *1 *1 *1) (-5 *1 (-134))) (-3956 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-134)))) (-2994 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134)))) (-3946 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134)))) (-3936 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))) (-3927 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
+(-13 (-846) (-23) (-722) (-1034 (-767)) (-10 -8 (-6 (-4410 "*")) (-15 -1825 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -3956 ($ (-767))) (-15 -2994 ((-112) $)) (-15 -3946 ((-112) $)) (-15 -3936 ((-112))) (-15 -3927 ((-112) (-112)))))
+((-4258 (((-136 |#1| |#2| |#4|) (-640 |#4|) (-136 |#1| |#2| |#3|)) 14)) (-2238 (((-136 |#1| |#2| |#4|) (-1 |#4| |#3|) (-136 |#1| |#2| |#3|)) 18)))
+(((-135 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4258 ((-136 |#1| |#2| |#4|) (-640 |#4|) (-136 |#1| |#2| |#3|))) (-15 -2238 ((-136 |#1| |#2| |#4|) (-1 |#4| |#3|) (-136 |#1| |#2| |#3|)))) (-563) (-767) (-172) (-172)) (T -135))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-136 *5 *6 *7)) (-14 *5 (-563)) (-14 *6 (-767)) (-4 *7 (-172)) (-4 *8 (-172)) (-5 *2 (-136 *5 *6 *8)) (-5 *1 (-135 *5 *6 *7 *8)))) (-4258 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-136 *5 *6 *7)) (-14 *5 (-563)) (-14 *6 (-767)) (-4 *7 (-172)) (-4 *8 (-172)) (-5 *2 (-136 *5 *6 *8)) (-5 *1 (-135 *5 *6 *7 *8)))))
+(-10 -7 (-15 -4258 ((-136 |#1| |#2| |#4|) (-640 |#4|) (-136 |#1| |#2| |#3|))) (-15 -2238 ((-136 |#1| |#2| |#4|) (-1 |#4| |#3|) (-136 |#1| |#2| |#3|))))
+((-1677 (((-112) $ $) NIL)) (-3967 (($ (-640 |#3|)) 40)) (-1769 (($ $) 99) (($ $ (-563) (-563)) 98)) (-2569 (($) 17)) (-2130 (((-3 |#3| "failed") $) 60)) (-2057 ((|#3| $) NIL)) (-4000 (($ $ (-640 (-563))) 100)) (-4247 (((-640 |#3|) $) 36)) (-2521 (((-767) $) 44)) (-3846 (($ $ $) 93)) (-3977 (($) 43)) (-3854 (((-1151) $) NIL)) (-3988 (($) 16)) (-1693 (((-1113) $) NIL)) (-2308 ((|#3| $) 46) ((|#3| $ (-563)) 47) ((|#3| $ (-563) (-563)) 48) ((|#3| $ (-563) (-563) (-563)) 49) ((|#3| $ (-563) (-563) (-563) (-563)) 50) ((|#3| $ (-640 (-563))) 52)) (-3871 (((-767) $) 45)) (-1857 (($ $ (-563) $ (-563)) 94) (($ $ (-563) (-563)) 96)) (-1692 (((-858) $) 67) (($ |#3|) 68) (($ (-240 |#2| |#3|)) 75) (($ (-1135 |#2| |#3|)) 78) (($ (-640 |#3|)) 53) (($ (-640 $)) 58)) (-2239 (($) 69 T CONST)) (-2253 (($) 70 T CONST)) (-1718 (((-112) $ $) 80)) (-1825 (($ $) 86) (($ $ $) 84)) (-1813 (($ $ $) 82)) (* (($ |#3| $) 91) (($ $ |#3|) 92) (($ $ (-563)) 89) (($ (-563) $) 88) (($ $ $) 95)))
+(((-136 |#1| |#2| |#3|) (-13 (-465 |#3| (-767)) (-470 (-563) (-767)) (-10 -8 (-15 -1692 ($ (-240 |#2| |#3|))) (-15 -1692 ($ (-1135 |#2| |#3|))) (-15 -1692 ($ (-640 |#3|))) (-15 -1692 ($ (-640 $))) (-15 -2521 ((-767) $)) (-15 -2308 (|#3| $)) (-15 -2308 (|#3| $ (-563))) (-15 -2308 (|#3| $ (-563) (-563))) (-15 -2308 (|#3| $ (-563) (-563) (-563))) (-15 -2308 (|#3| $ (-563) (-563) (-563) (-563))) (-15 -2308 (|#3| $ (-640 (-563)))) (-15 -3846 ($ $ $)) (-15 * ($ $ $)) (-15 -1857 ($ $ (-563) $ (-563))) (-15 -1857 ($ $ (-563) (-563))) (-15 -1769 ($ $)) (-15 -1769 ($ $ (-563) (-563))) (-15 -4000 ($ $ (-640 (-563)))) (-15 -3988 ($)) (-15 -3977 ($)) (-15 -4247 ((-640 |#3|) $)) (-15 -3967 ($ (-640 |#3|))) (-15 -2569 ($)))) (-563) (-767) (-172)) (T -136))
+((-3846 (*1 *1 *1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767)) (-4 *4 (-172)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-240 *4 *5)) (-14 *4 (-767)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-1135 *4 *5)) (-14 *4 (-767)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-640 *5)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)) (-14 *4 (-767)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-640 (-136 *3 *4 *5))) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)) (-14 *4 (-767)) (-4 *5 (-172)))) (-2521 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)) (-14 *4 *2) (-4 *5 (-172)))) (-2308 (*1 *2 *1) (-12 (-4 *2 (-172)) (-5 *1 (-136 *3 *4 *2)) (-14 *3 (-563)) (-14 *4 (-767)))) (-2308 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-767)))) (-2308 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-767)))) (-2308 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-563)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-767)))) (-2308 (*1 *2 *1 *3 *3 *3 *3) (-12 (-5 *3 (-563)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-767)))) (-2308 (*1 *2 *1 *3) (-12 (-5 *3 (-640 (-563))) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 (-563)) (-14 *5 (-767)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767)) (-4 *4 (-172)))) (-1857 (*1 *1 *1 *2 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-767)) (-4 *5 (-172)))) (-1857 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-767)) (-4 *5 (-172)))) (-1769 (*1 *1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767)) (-4 *4 (-172)))) (-1769 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-767)) (-4 *5 (-172)))) (-4000 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)) (-14 *4 (-767)) (-4 *5 (-172)))) (-3988 (*1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767)) (-4 *4 (-172)))) (-3977 (*1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767)) (-4 *4 (-172)))) (-4247 (*1 *2 *1) (-12 (-5 *2 (-640 *5)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)) (-14 *4 (-767)) (-4 *5 (-172)))) (-3967 (*1 *1 *2) (-12 (-5 *2 (-640 *5)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563)) (-14 *4 (-767)))) (-2569 (*1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767)) (-4 *4 (-172)))))
+(-13 (-465 |#3| (-767)) (-470 (-563) (-767)) (-10 -8 (-15 -1692 ($ (-240 |#2| |#3|))) (-15 -1692 ($ (-1135 |#2| |#3|))) (-15 -1692 ($ (-640 |#3|))) (-15 -1692 ($ (-640 $))) (-15 -2521 ((-767) $)) (-15 -2308 (|#3| $)) (-15 -2308 (|#3| $ (-563))) (-15 -2308 (|#3| $ (-563) (-563))) (-15 -2308 (|#3| $ (-563) (-563) (-563))) (-15 -2308 (|#3| $ (-563) (-563) (-563) (-563))) (-15 -2308 (|#3| $ (-640 (-563)))) (-15 -3846 ($ $ $)) (-15 * ($ $ $)) (-15 -1857 ($ $ (-563) $ (-563))) (-15 -1857 ($ $ (-563) (-563))) (-15 -1769 ($ $)) (-15 -1769 ($ $ (-563) (-563))) (-15 -4000 ($ $ (-640 (-563)))) (-15 -3988 ($)) (-15 -3977 ($)) (-15 -4247 ((-640 |#3|) $)) (-15 -3967 ($ (-640 |#3|))) (-15 -2569 ($))))
+((-1677 (((-112) $ $) NIL)) (-2350 (((-1128) $) 11)) (-2339 (((-1128) $) 9)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 19) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-137) (-13 (-1076) (-10 -8 (-15 -2339 ((-1128) $)) (-15 -2350 ((-1128) $))))) (T -137))
+((-2339 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-137)))) (-2350 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-137)))))
+(-13 (-1076) (-10 -8 (-15 -2339 ((-1128) $)) (-15 -2350 ((-1128) $))))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-2504 (((-1169) $) 10)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 19) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3363 (((-640 (-1128)) $) 12)) (-1718 (((-112) $ $) NIL)))
+(((-138) (-13 (-1076) (-10 -8 (-15 -2504 ((-1169) $)) (-15 -3363 ((-640 (-1128)) $))))) (T -138))
+((-2504 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-138)))) (-3363 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-138)))))
+(-13 (-1076) (-10 -8 (-15 -2504 ((-1169) $)) (-15 -3363 ((-640 (-1128)) $))))
+((-1677 (((-112) $ $) NIL)) (-3457 (((-640 (-861)) $) NIL)) (-3352 (((-506) $) NIL)) (-3854 (((-1151) $) NIL)) (-2504 (((-186) $) NIL)) (-1693 (((-1113) $) NIL)) (-1404 (((-640 (-112)) $) NIL)) (-1692 (((-858) $) NIL) (((-187) $) 6)) (-2935 (((-55) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-139) (-13 (-185) (-610 (-187)))) (T -139))
NIL
(-13 (-185) (-610 (-187)))
-((-2150 (((-640 (-183)) $) 13)) (-1856 (((-640 (-183)) $) 14)) (-1595 (((-640 (-834)) $) 10)) (-3762 (((-139) $) 7)) (-1693 (((-858) $) 16)))
-(((-140) (-13 (-610 (-858)) (-10 -8 (-15 -3762 ((-139) $)) (-15 -1595 ((-640 (-834)) $)) (-15 -2150 ((-640 (-183)) $)) (-15 -1856 ((-640 (-183)) $))))) (T -140))
-((-3762 (*1 *2 *1) (-12 (-5 *2 (-139)) (-5 *1 (-140)))) (-1595 (*1 *2 *1) (-12 (-5 *2 (-640 (-834))) (-5 *1 (-140)))) (-2150 (*1 *2 *1) (-12 (-5 *2 (-640 (-183))) (-5 *1 (-140)))) (-1856 (*1 *2 *1) (-12 (-5 *2 (-640 (-183))) (-5 *1 (-140)))))
-(-13 (-610 (-858)) (-10 -8 (-15 -3762 ((-139) $)) (-15 -1595 ((-640 (-834)) $)) (-15 -2150 ((-640 (-183)) $)) (-15 -1856 ((-640 (-183)) $))))
-((-1677 (((-112) $ $) NIL)) (-3697 (($) 15 T CONST)) (-2941 (($) NIL (|has| (-144) (-368)))) (-2583 (($ $ $) 17) (($ $ (-144)) NIL) (($ (-144) $) NIL)) (-4314 (($ $ $) NIL)) (-4149 (((-112) $ $) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-3749 (((-767)) NIL (|has| (-144) (-368)))) (-1584 (($) NIL) (($ (-640 (-144))) NIL)) (-2812 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093))))) (-2705 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407))) (($ (-144) $) 51 (|has| $ (-6 -4407)))) (-1459 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407))) (($ (-144) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093))))) (-2444 (((-144) (-1 (-144) (-144) (-144)) $) NIL (|has| $ (-6 -4407))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) NIL (|has| $ (-6 -4407))) (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093))))) (-1691 (($) NIL (|has| (-144) (-368)))) (-2659 (((-640 (-144)) $) 60 (|has| $ (-6 -4407)))) (-2539 (((-112) $ $) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-3084 (((-144) $) NIL (|has| (-144) (-846)))) (-2259 (((-640 (-144)) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-144) $) 26 (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093))))) (-1777 (((-144) $) NIL (|has| (-144) (-846)))) (-4345 (($ (-1 (-144) (-144)) $) 59 (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-144) (-144)) $) 55)) (-1652 (($) 16 T CONST)) (-1476 (((-917) $) NIL (|has| (-144) (-368)))) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-2550 (($ $ $) 29)) (-2964 (((-144) $) 52)) (-1812 (($ (-144) $) 50)) (-2555 (($ (-917)) NIL (|has| (-144) (-368)))) (-2090 (($) 14 T CONST)) (-1694 (((-1113) $) NIL)) (-4203 (((-3 (-144) "failed") (-1 (-112) (-144)) $) NIL)) (-3755 (((-144) $) 53)) (-3138 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-144)) (-640 (-144))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-144) (-144)) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-294 (-144))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-640 (-294 (-144)))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) 48)) (-2613 (($) 13 T CONST)) (-1629 (($ $ $) 31) (($ $ (-144)) NIL)) (-3890 (($ (-640 (-144))) NIL) (($) NIL)) (-1709 (((-767) (-144) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093)))) (((-767) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) NIL)) (-2220 (((-1151) $) 36) (((-536) $) NIL (|has| (-144) (-611 (-536)))) (((-640 (-144)) $) 34)) (-1707 (($ (-640 (-144))) NIL)) (-3085 (($ $) 32 (|has| (-144) (-368)))) (-1693 (((-858) $) 46)) (-3863 (($ (-1151)) 12) (($ (-640 (-144))) 43)) (-1663 (((-767) $) NIL)) (-2534 (($) 49) (($ (-640 (-144))) NIL)) (-2233 (($ (-640 (-144))) NIL)) (-4383 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407)))) (-1610 (($) 19 T CONST)) (-3393 (($) 18 T CONST)) (-1718 (((-112) $ $) 22)) (-3608 (((-767) $) 47 (|has| $ (-6 -4407)))))
-(((-141) (-13 (-1093) (-611 (-1151)) (-425 (-144)) (-611 (-640 (-144))) (-10 -8 (-15 -3863 ($ (-1151))) (-15 -3863 ($ (-640 (-144)))) (-15 -2613 ($) -2669) (-15 -2090 ($) -2669) (-15 -3697 ($) -2669) (-15 -1652 ($) -2669) (-15 -3393 ($) -2669) (-15 -1610 ($) -2669)))) (T -141))
-((-3863 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-141)))) (-3863 (*1 *1 *2) (-12 (-5 *2 (-640 (-144))) (-5 *1 (-141)))) (-2613 (*1 *1) (-5 *1 (-141))) (-2090 (*1 *1) (-5 *1 (-141))) (-3697 (*1 *1) (-5 *1 (-141))) (-1652 (*1 *1) (-5 *1 (-141))) (-3393 (*1 *1) (-5 *1 (-141))) (-1610 (*1 *1) (-5 *1 (-141))))
-(-13 (-1093) (-611 (-1151)) (-425 (-144)) (-611 (-640 (-144))) (-10 -8 (-15 -3863 ($ (-1151))) (-15 -3863 ($ (-640 (-144)))) (-15 -2613 ($) -2669) (-15 -2090 ($) -2669) (-15 -3697 ($) -2669) (-15 -1652 ($) -2669) (-15 -3393 ($) -2669) (-15 -1610 ($) -2669)))
-((-3266 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-1417 ((|#1| |#3|) 9)) (-2119 ((|#3| |#3|) 15)))
-(((-142 |#1| |#2| |#3|) (-10 -7 (-15 -1417 (|#1| |#3|)) (-15 -2119 (|#3| |#3|)) (-15 -3266 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-555) (-988 |#1|) (-373 |#2|)) (T -142))
-((-3266 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-988 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-142 *4 *5 *3)) (-4 *3 (-373 *5)))) (-2119 (*1 *2 *2) (-12 (-4 *3 (-555)) (-4 *4 (-988 *3)) (-5 *1 (-142 *3 *4 *2)) (-4 *2 (-373 *4)))) (-1417 (*1 *2 *3) (-12 (-4 *4 (-988 *2)) (-4 *2 (-555)) (-5 *1 (-142 *2 *4 *3)) (-4 *3 (-373 *4)))))
-(-10 -7 (-15 -1417 (|#1| |#3|)) (-15 -2119 (|#3| |#3|)) (-15 -3266 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-3972 (($ $ $) 8)) (-3219 (($ $) 7)) (-2869 (($ $ $) 6)))
+((-4011 (((-640 (-183)) $) 13)) (-1855 (((-640 (-183)) $) 14)) (-4021 (((-640 (-834)) $) 10)) (-3763 (((-139) $) 7)) (-1692 (((-858) $) 16)))
+(((-140) (-13 (-610 (-858)) (-10 -8 (-15 -3763 ((-139) $)) (-15 -4021 ((-640 (-834)) $)) (-15 -4011 ((-640 (-183)) $)) (-15 -1855 ((-640 (-183)) $))))) (T -140))
+((-3763 (*1 *2 *1) (-12 (-5 *2 (-139)) (-5 *1 (-140)))) (-4021 (*1 *2 *1) (-12 (-5 *2 (-640 (-834))) (-5 *1 (-140)))) (-4011 (*1 *2 *1) (-12 (-5 *2 (-640 (-183))) (-5 *1 (-140)))) (-1855 (*1 *2 *1) (-12 (-5 *2 (-640 (-183))) (-5 *1 (-140)))))
+(-13 (-610 (-858)) (-10 -8 (-15 -3763 ((-139) $)) (-15 -4021 ((-640 (-834)) $)) (-15 -4011 ((-640 (-183)) $)) (-15 -1855 ((-640 (-183)) $))))
+((-1677 (((-112) $ $) NIL)) (-1827 (($) 15 T CONST)) (-3533 (($) NIL (|has| (-144) (-368)))) (-2582 (($ $ $) 17) (($ $ (-144)) NIL) (($ (-144) $) NIL)) (-3816 (($ $ $) NIL)) (-3804 (((-112) $ $) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-3750 (((-767)) NIL (|has| (-144) (-368)))) (-1582 (($) NIL) (($ (-640 (-144))) NIL)) (-3678 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093))))) (-1691 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408))) (($ (-144) $) 51 (|has| $ (-6 -4408)))) (-1459 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408))) (($ (-144) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093))))) (-2444 (((-144) (-1 (-144) (-144) (-144)) $) NIL (|has| $ (-6 -4408))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) NIL (|has| $ (-6 -4408))) (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093))))) (-1690 (($) NIL (|has| (-144) (-368)))) (-2658 (((-640 (-144)) $) 60 (|has| $ (-6 -4408)))) (-3845 (((-112) $ $) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-3088 (((-144) $) NIL (|has| (-144) (-846)))) (-3523 (((-640 (-144)) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-144) $) 26 (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093))))) (-1776 (((-144) $) NIL (|has| (-144) (-846)))) (-4347 (($ (-1 (-144) (-144)) $) 59 (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-144) (-144)) $) 55)) (-1848 (($) 16 T CONST)) (-3990 (((-917) $) NIL (|has| (-144) (-368)))) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-3834 (($ $ $) 29)) (-2627 (((-144) $) 52)) (-3867 (($ (-144) $) 50)) (-2552 (($ (-917)) NIL (|has| (-144) (-368)))) (-4056 (($) 14 T CONST)) (-1693 (((-1113) $) NIL)) (-1971 (((-3 (-144) "failed") (-1 (-112) (-144)) $) NIL)) (-2808 (((-144) $) 53)) (-1458 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-144)) (-640 (-144))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-144) (-144)) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-294 (-144))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-640 (-294 (-144)))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) 48)) (-4067 (($) 13 T CONST)) (-3827 (($ $ $) 31) (($ $ (-144)) NIL)) (-3863 (($ (-640 (-144))) NIL) (($) NIL)) (-1708 (((-767) (-144) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093)))) (((-767) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) NIL)) (-2219 (((-1151) $) 36) (((-536) $) NIL (|has| (-144) (-611 (-536)))) (((-640 (-144)) $) 34)) (-1706 (($ (-640 (-144))) NIL)) (-3545 (($ $) 32 (|has| (-144) (-368)))) (-1692 (((-858) $) 46)) (-4077 (($ (-1151)) 12) (($ (-640 (-144))) 43)) (-3556 (((-767) $) NIL)) (-2533 (($) 49) (($ (-640 (-144))) NIL)) (-2820 (($ (-640 (-144))) NIL)) (-1471 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408)))) (-4032 (($) 19 T CONST)) (-4044 (($) 18 T CONST)) (-1718 (((-112) $ $) 22)) (-3610 (((-767) $) 47 (|has| $ (-6 -4408)))))
+(((-141) (-13 (-1093) (-611 (-1151)) (-425 (-144)) (-611 (-640 (-144))) (-10 -8 (-15 -4077 ($ (-1151))) (-15 -4077 ($ (-640 (-144)))) (-15 -4067 ($) -2668) (-15 -4056 ($) -2668) (-15 -1827 ($) -2668) (-15 -1848 ($) -2668) (-15 -4044 ($) -2668) (-15 -4032 ($) -2668)))) (T -141))
+((-4077 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-141)))) (-4077 (*1 *1 *2) (-12 (-5 *2 (-640 (-144))) (-5 *1 (-141)))) (-4067 (*1 *1) (-5 *1 (-141))) (-4056 (*1 *1) (-5 *1 (-141))) (-1827 (*1 *1) (-5 *1 (-141))) (-1848 (*1 *1) (-5 *1 (-141))) (-4044 (*1 *1) (-5 *1 (-141))) (-4032 (*1 *1) (-5 *1 (-141))))
+(-13 (-1093) (-611 (-1151)) (-425 (-144)) (-611 (-640 (-144))) (-10 -8 (-15 -4077 ($ (-1151))) (-15 -4077 ($ (-640 (-144)))) (-15 -4067 ($) -2668) (-15 -4056 ($) -2668) (-15 -1827 ($) -2668) (-15 -1848 ($) -2668) (-15 -4044 ($) -2668) (-15 -4032 ($) -2668)))
+((-2674 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-2655 ((|#1| |#3|) 9)) (-2663 ((|#3| |#3|) 15)))
+(((-142 |#1| |#2| |#3|) (-10 -7 (-15 -2655 (|#1| |#3|)) (-15 -2663 (|#3| |#3|)) (-15 -2674 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-555) (-988 |#1|) (-373 |#2|)) (T -142))
+((-2674 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-988 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-142 *4 *5 *3)) (-4 *3 (-373 *5)))) (-2663 (*1 *2 *2) (-12 (-4 *3 (-555)) (-4 *4 (-988 *3)) (-5 *1 (-142 *3 *4 *2)) (-4 *2 (-373 *4)))) (-2655 (*1 *2 *3) (-12 (-4 *4 (-988 *2)) (-4 *2 (-555)) (-5 *1 (-142 *2 *4 *3)) (-4 *3 (-373 *4)))))
+(-10 -7 (-15 -2655 (|#1| |#3|)) (-15 -2663 (|#3| |#3|)) (-15 -2674 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-2101 (($ $ $) 8)) (-2081 (($ $) 7)) (-1864 (($ $ $) 6)))
(((-143) (-140)) (T -143))
-((-3972 (*1 *1 *1 *1) (-4 *1 (-143))) (-3219 (*1 *1 *1) (-4 *1 (-143))) (-2869 (*1 *1 *1 *1) (-4 *1 (-143))))
-(-13 (-10 -8 (-15 -2869 ($ $ $)) (-15 -3219 ($ $)) (-15 -3972 ($ $ $))))
-((-1677 (((-112) $ $) NIL)) (-1917 (((-112) $) 30)) (-3697 (($ $) 43)) (-4140 (($) 17)) (-3749 (((-767)) 10)) (-1691 (($) 16)) (-2827 (($) 18)) (-3294 (((-767) $) 14)) (-3084 (($ $ $) NIL) (($) NIL T CONST)) (-1777 (($ $ $) NIL) (($) NIL T CONST)) (-4016 (((-112) $) 32)) (-1652 (($ $) 44)) (-1476 (((-917) $) 15)) (-3573 (((-1151) $) 38)) (-2555 (($ (-917)) 13)) (-4265 (((-112) $) 28)) (-1694 (((-1113) $) NIL)) (-2562 (($) 19)) (-2953 (((-112) $) 26)) (-1693 (((-858) $) 21)) (-4283 (($ (-767)) 11) (($ (-1151)) 42)) (-1422 (((-112) $) 36)) (-2787 (((-112) $) 34)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 7)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 8)))
-(((-144) (-13 (-840) (-10 -8 (-15 -3294 ((-767) $)) (-15 -4283 ($ (-767))) (-15 -4283 ($ (-1151))) (-15 -4140 ($)) (-15 -2827 ($)) (-15 -2562 ($)) (-15 -3697 ($ $)) (-15 -1652 ($ $)) (-15 -2953 ((-112) $)) (-15 -4265 ((-112) $)) (-15 -2787 ((-112) $)) (-15 -1917 ((-112) $)) (-15 -4016 ((-112) $)) (-15 -1422 ((-112) $))))) (T -144))
-((-3294 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-144)))) (-4283 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-144)))) (-4283 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-144)))) (-4140 (*1 *1) (-5 *1 (-144))) (-2827 (*1 *1) (-5 *1 (-144))) (-2562 (*1 *1) (-5 *1 (-144))) (-3697 (*1 *1 *1) (-5 *1 (-144))) (-1652 (*1 *1 *1) (-5 *1 (-144))) (-2953 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-4265 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-2787 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-1917 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-4016 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-1422 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
-(-13 (-840) (-10 -8 (-15 -3294 ((-767) $)) (-15 -4283 ($ (-767))) (-15 -4283 ($ (-1151))) (-15 -4140 ($)) (-15 -2827 ($)) (-15 -2562 ($)) (-15 -3697 ($ $)) (-15 -1652 ($ $)) (-15 -2953 ((-112) $)) (-15 -4265 ((-112) $)) (-15 -2787 ((-112) $)) (-15 -1917 ((-112) $)) (-15 -4016 ((-112) $)) (-15 -1422 ((-112) $))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ (-563)) 29)) (-2779 (((-3 $ "failed") $) 35)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-2101 (*1 *1 *1 *1) (-4 *1 (-143))) (-2081 (*1 *1 *1) (-4 *1 (-143))) (-1864 (*1 *1 *1 *1) (-4 *1 (-143))))
+(-13 (-10 -8 (-15 -1864 ($ $ $)) (-15 -2081 ($ $)) (-15 -2101 ($ $ $))))
+((-1677 (((-112) $ $) NIL)) (-4112 (((-112) $) 30)) (-1827 (($ $) 43)) (-4296 (($) 17)) (-3750 (((-767)) 10)) (-1690 (($) 16)) (-3284 (($) 18)) (-4156 (((-767) $) 14)) (-3088 (($ $ $) NIL) (($) NIL T CONST)) (-1776 (($ $ $) NIL) (($) NIL T CONST)) (-4099 (((-112) $) 32)) (-1848 (($ $) 44)) (-3990 (((-917) $) 15)) (-3854 (((-1151) $) 38)) (-2552 (($ (-917)) 13)) (-4133 (((-112) $) 28)) (-1693 (((-1113) $) NIL)) (-4145 (($) 19)) (-2957 (((-112) $) 26)) (-1692 (((-858) $) 21)) (-4285 (($ (-767)) 11) (($ (-1151)) 42)) (-4088 (((-112) $) 36)) (-4122 (((-112) $) 34)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 7)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 8)))
+(((-144) (-13 (-840) (-10 -8 (-15 -4156 ((-767) $)) (-15 -4285 ($ (-767))) (-15 -4285 ($ (-1151))) (-15 -4296 ($)) (-15 -3284 ($)) (-15 -4145 ($)) (-15 -1827 ($ $)) (-15 -1848 ($ $)) (-15 -2957 ((-112) $)) (-15 -4133 ((-112) $)) (-15 -4122 ((-112) $)) (-15 -4112 ((-112) $)) (-15 -4099 ((-112) $)) (-15 -4088 ((-112) $))))) (T -144))
+((-4156 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-144)))) (-4285 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-144)))) (-4285 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-144)))) (-4296 (*1 *1) (-5 *1 (-144))) (-3284 (*1 *1) (-5 *1 (-144))) (-4145 (*1 *1) (-5 *1 (-144))) (-1827 (*1 *1 *1) (-5 *1 (-144))) (-1848 (*1 *1 *1) (-5 *1 (-144))) (-2957 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-4133 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-4122 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-4112 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-4099 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-4088 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
+(-13 (-840) (-10 -8 (-15 -4156 ((-767) $)) (-15 -4285 ($ (-767))) (-15 -4285 ($ (-1151))) (-15 -4296 ($)) (-15 -3284 ($)) (-15 -4145 ($)) (-15 -1827 ($ $)) (-15 -1848 ($ $)) (-15 -2957 ((-112) $)) (-15 -4133 ((-112) $)) (-15 -4122 ((-112) $)) (-15 -4112 ((-112) $)) (-15 -4099 ((-112) $)) (-15 -4088 ((-112) $))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ (-563)) 29)) (-2047 (((-3 $ "failed") $) 35)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-145) (-140)) (T -145))
-((-2779 (*1 *1 *1) (|partial| -4 *1 (-145))))
-(-13 (-1045) (-10 -8 (-15 -2779 ((-3 $ "failed") $))))
+((-2047 (*1 *1 *1) (|partial| -4 *1 (-145))))
+(-13 (-1045) (-10 -8 (-15 -2047 ((-3 $ "failed") $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-563)) . T) ((-610 (-858)) . T) ((-643 $) . T) ((-722) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-3421 ((|#1| (-684 |#1|) |#1|) 19)))
-(((-146 |#1|) (-10 -7 (-15 -3421 (|#1| (-684 |#1|) |#1|))) (-172)) (T -146))
-((-3421 (*1 *2 *3 *2) (-12 (-5 *3 (-684 *2)) (-4 *2 (-172)) (-5 *1 (-146 *2)))))
-(-10 -7 (-15 -3421 (|#1| (-684 |#1|) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ (-563)) 29)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-1892 ((|#1| (-684 |#1|) |#1|) 19)))
+(((-146 |#1|) (-10 -7 (-15 -1892 (|#1| (-684 |#1|) |#1|))) (-172)) (T -146))
+((-1892 (*1 *2 *3 *2) (-12 (-5 *3 (-684 *2)) (-4 *2 (-172)) (-5 *1 (-146 *2)))))
+(-10 -7 (-15 -1892 (|#1| (-684 |#1|) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ (-563)) 29)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-147) (-140)) (T -147))
NIL
(-13 (-1045))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-563)) . T) ((-610 (-858)) . T) ((-643 $) . T) ((-722) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-2753 (((-2 (|:| -1654 (-767)) (|:| -2311 (-407 |#2|)) (|:| |radicand| |#2|)) (-407 |#2|) (-767)) 69)) (-2702 (((-3 (-2 (|:| |radicand| (-407 |#2|)) (|:| |deg| (-767))) "failed") |#3|) 51)) (-2968 (((-2 (|:| -2311 (-407 |#2|)) (|:| |poly| |#3|)) |#3|) 36)) (-1427 ((|#1| |#3| |#3|) 39)) (-1540 ((|#3| |#3| (-407 |#2|) (-407 |#2|)) 19)) (-3114 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-407 |#2|)) (|:| |c2| (-407 |#2|)) (|:| |deg| (-767))) |#3| |#3|) 48)))
-(((-148 |#1| |#2| |#3|) (-10 -7 (-15 -2968 ((-2 (|:| -2311 (-407 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -2702 ((-3 (-2 (|:| |radicand| (-407 |#2|)) (|:| |deg| (-767))) "failed") |#3|)) (-15 -2753 ((-2 (|:| -1654 (-767)) (|:| -2311 (-407 |#2|)) (|:| |radicand| |#2|)) (-407 |#2|) (-767))) (-15 -1427 (|#1| |#3| |#3|)) (-15 -1540 (|#3| |#3| (-407 |#2|) (-407 |#2|))) (-15 -3114 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-407 |#2|)) (|:| |c2| (-407 |#2|)) (|:| |deg| (-767))) |#3| |#3|))) (-1212) (-1233 |#1|) (-1233 (-407 |#2|))) (T -148))
-((-3114 (*1 *2 *3 *3) (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-407 *5)) (|:| |c2| (-407 *5)) (|:| |deg| (-767)))) (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1233 (-407 *5))))) (-1540 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-407 *5)) (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-5 *1 (-148 *4 *5 *2)) (-4 *2 (-1233 *3)))) (-1427 (*1 *2 *3 *3) (-12 (-4 *4 (-1233 *2)) (-4 *2 (-1212)) (-5 *1 (-148 *2 *4 *3)) (-4 *3 (-1233 (-407 *4))))) (-2753 (*1 *2 *3 *4) (-12 (-5 *3 (-407 *6)) (-4 *5 (-1212)) (-4 *6 (-1233 *5)) (-5 *2 (-2 (|:| -1654 (-767)) (|:| -2311 *3) (|:| |radicand| *6))) (-5 *1 (-148 *5 *6 *7)) (-5 *4 (-767)) (-4 *7 (-1233 *3)))) (-2702 (*1 *2 *3) (|partial| -12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| |radicand| (-407 *5)) (|:| |deg| (-767)))) (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1233 (-407 *5))))) (-2968 (*1 *2 *3) (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| -2311 (-407 *5)) (|:| |poly| *3))) (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1233 (-407 *5))))))
-(-10 -7 (-15 -2968 ((-2 (|:| -2311 (-407 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -2702 ((-3 (-2 (|:| |radicand| (-407 |#2|)) (|:| |deg| (-767))) "failed") |#3|)) (-15 -2753 ((-2 (|:| -1654 (-767)) (|:| -2311 (-407 |#2|)) (|:| |radicand| |#2|)) (-407 |#2|) (-767))) (-15 -1427 (|#1| |#3| |#3|)) (-15 -1540 (|#3| |#3| (-407 |#2|) (-407 |#2|))) (-15 -3114 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-407 |#2|)) (|:| |c2| (-407 |#2|)) (|:| |deg| (-767))) |#3| |#3|)))
-((-2748 (((-3 (-640 (-1165 |#2|)) "failed") (-640 (-1165 |#2|)) (-1165 |#2|)) 31)))
-(((-149 |#1| |#2|) (-10 -7 (-15 -2748 ((-3 (-640 (-1165 |#2|)) "failed") (-640 (-1165 |#2|)) (-1165 |#2|)))) (-545) (-166 |#1|)) (T -149))
-((-2748 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 (-1165 *5))) (-5 *3 (-1165 *5)) (-4 *5 (-166 *4)) (-4 *4 (-545)) (-5 *1 (-149 *4 *5)))))
-(-10 -7 (-15 -2748 ((-3 (-640 (-1165 |#2|)) "failed") (-640 (-1165 |#2|)) (-1165 |#2|))))
-((-2256 (($ (-1 (-112) |#2|) $) 29)) (-3813 (($ $) 36)) (-1459 (($ (-1 (-112) |#2|) $) 27) (($ |#2| $) 32)) (-2444 ((|#2| (-1 |#2| |#2| |#2|) $) 22) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 24) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 34)) (-4203 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 19)) (-3138 (((-112) (-1 (-112) |#2|) $) 16)) (-1709 (((-767) (-1 (-112) |#2|) $) 14) (((-767) |#2| $) NIL)) (-4383 (((-112) (-1 (-112) |#2|) $) 15)) (-3608 (((-767) $) 11)))
-(((-150 |#1| |#2|) (-10 -8 (-15 -3813 (|#1| |#1|)) (-15 -1459 (|#1| |#2| |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2256 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1459 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -4203 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1709 ((-767) |#2| |#1|)) (-15 -1709 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -3138 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4383 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3608 ((-767) |#1|))) (-151 |#2|) (-1208)) (T -150))
-NIL
-(-10 -8 (-15 -3813 (|#1| |#1|)) (-15 -1459 (|#1| |#2| |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2256 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1459 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -4203 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1709 ((-767) |#2| |#1|)) (-15 -1709 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -3138 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4383 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3608 ((-767) |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2759 (((-112) $ (-767)) 8)) (-2256 (($ (-1 (-112) |#1|) $) 44 (|has| $ (-6 -4407)))) (-4239 (($) 7 T CONST)) (-3813 (($ $) 41 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4407))) (($ |#1| $) 42 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) 47 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 46 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 48)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-2220 (((-536) $) 40 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 49)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1942 (((-2 (|:| -3311 (-767)) (|:| -2310 (-407 |#2|)) (|:| |radicand| |#2|)) (-407 |#2|) (-767)) 69)) (-1931 (((-3 (-2 (|:| |radicand| (-407 |#2|)) (|:| |deg| (-767))) "failed") |#3|) 51)) (-1918 (((-2 (|:| -2310 (-407 |#2|)) (|:| |poly| |#3|)) |#3|) 36)) (-1952 ((|#1| |#3| |#3|) 39)) (-1542 ((|#3| |#3| (-407 |#2|) (-407 |#2|)) 19)) (-1962 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-407 |#2|)) (|:| |c2| (-407 |#2|)) (|:| |deg| (-767))) |#3| |#3|) 48)))
+(((-148 |#1| |#2| |#3|) (-10 -7 (-15 -1918 ((-2 (|:| -2310 (-407 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -1931 ((-3 (-2 (|:| |radicand| (-407 |#2|)) (|:| |deg| (-767))) "failed") |#3|)) (-15 -1942 ((-2 (|:| -3311 (-767)) (|:| -2310 (-407 |#2|)) (|:| |radicand| |#2|)) (-407 |#2|) (-767))) (-15 -1952 (|#1| |#3| |#3|)) (-15 -1542 (|#3| |#3| (-407 |#2|) (-407 |#2|))) (-15 -1962 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-407 |#2|)) (|:| |c2| (-407 |#2|)) (|:| |deg| (-767))) |#3| |#3|))) (-1212) (-1233 |#1|) (-1233 (-407 |#2|))) (T -148))
+((-1962 (*1 *2 *3 *3) (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-407 *5)) (|:| |c2| (-407 *5)) (|:| |deg| (-767)))) (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1233 (-407 *5))))) (-1542 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-407 *5)) (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-5 *1 (-148 *4 *5 *2)) (-4 *2 (-1233 *3)))) (-1952 (*1 *2 *3 *3) (-12 (-4 *4 (-1233 *2)) (-4 *2 (-1212)) (-5 *1 (-148 *2 *4 *3)) (-4 *3 (-1233 (-407 *4))))) (-1942 (*1 *2 *3 *4) (-12 (-5 *3 (-407 *6)) (-4 *5 (-1212)) (-4 *6 (-1233 *5)) (-5 *2 (-2 (|:| -3311 (-767)) (|:| -2310 *3) (|:| |radicand| *6))) (-5 *1 (-148 *5 *6 *7)) (-5 *4 (-767)) (-4 *7 (-1233 *3)))) (-1931 (*1 *2 *3) (|partial| -12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| |radicand| (-407 *5)) (|:| |deg| (-767)))) (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1233 (-407 *5))))) (-1918 (*1 *2 *3) (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| -2310 (-407 *5)) (|:| |poly| *3))) (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1233 (-407 *5))))))
+(-10 -7 (-15 -1918 ((-2 (|:| -2310 (-407 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -1931 ((-3 (-2 (|:| |radicand| (-407 |#2|)) (|:| |deg| (-767))) "failed") |#3|)) (-15 -1942 ((-2 (|:| -3311 (-767)) (|:| -2310 (-407 |#2|)) (|:| |radicand| |#2|)) (-407 |#2|) (-767))) (-15 -1952 (|#1| |#3| |#3|)) (-15 -1542 (|#3| |#3| (-407 |#2|) (-407 |#2|))) (-15 -1962 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-407 |#2|)) (|:| |c2| (-407 |#2|)) (|:| |deg| (-767))) |#3| |#3|)))
+((-2066 (((-3 (-640 (-1165 |#2|)) "failed") (-640 (-1165 |#2|)) (-1165 |#2|)) 31)))
+(((-149 |#1| |#2|) (-10 -7 (-15 -2066 ((-3 (-640 (-1165 |#2|)) "failed") (-640 (-1165 |#2|)) (-1165 |#2|)))) (-545) (-166 |#1|)) (T -149))
+((-2066 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 (-1165 *5))) (-5 *3 (-1165 *5)) (-4 *5 (-166 *4)) (-4 *4 (-545)) (-5 *1 (-149 *4 *5)))))
+(-10 -7 (-15 -2066 ((-3 (-640 (-1165 |#2|)) "failed") (-640 (-1165 |#2|)) (-1165 |#2|))))
+((-2255 (($ (-1 (-112) |#2|) $) 29)) (-3814 (($ $) 36)) (-1459 (($ (-1 (-112) |#2|) $) 27) (($ |#2| $) 32)) (-2444 ((|#2| (-1 |#2| |#2| |#2|) $) 22) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 24) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 34)) (-1971 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 19)) (-1458 (((-112) (-1 (-112) |#2|) $) 16)) (-1708 (((-767) (-1 (-112) |#2|) $) 14) (((-767) |#2| $) NIL)) (-1471 (((-112) (-1 (-112) |#2|) $) 15)) (-3610 (((-767) $) 11)))
+(((-150 |#1| |#2|) (-10 -8 (-15 -3814 (|#1| |#1|)) (-15 -1459 (|#1| |#2| |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2255 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1459 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1971 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1708 ((-767) |#2| |#1|)) (-15 -1708 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -1458 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1471 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3610 ((-767) |#1|))) (-151 |#2|) (-1208)) (T -150))
+NIL
+(-10 -8 (-15 -3814 (|#1| |#1|)) (-15 -1459 (|#1| |#2| |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2255 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1459 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1971 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1708 ((-767) |#2| |#1|)) (-15 -1708 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -1458 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1471 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3610 ((-767) |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-3001 (((-112) $ (-767)) 8)) (-2255 (($ (-1 (-112) |#1|) $) 44 (|has| $ (-6 -4408)))) (-2569 (($) 7 T CONST)) (-3814 (($ $) 41 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4408))) (($ |#1| $) 42 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) 47 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 46 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 48)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-2219 (((-536) $) 40 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 49)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-151 |#1|) (-140) (-1208)) (T -151))
-((-1707 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-4 *1 (-151 *3)))) (-4203 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-151 *2)) (-4 *2 (-1208)))) (-2444 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4407)) (-4 *1 (-151 *2)) (-4 *2 (-1208)))) (-2444 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4407)) (-4 *1 (-151 *2)) (-4 *2 (-1208)))) (-1459 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4407)) (-4 *1 (-151 *3)) (-4 *3 (-1208)))) (-2256 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4407)) (-4 *1 (-151 *3)) (-4 *3 (-1208)))) (-2444 (*1 *2 *3 *1 *2 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1093)) (|has| *1 (-6 -4407)) (-4 *1 (-151 *2)) (-4 *2 (-1208)))) (-1459 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4407)) (-4 *1 (-151 *2)) (-4 *2 (-1208)) (-4 *2 (-1093)))) (-3813 (*1 *1 *1) (-12 (|has| *1 (-6 -4407)) (-4 *1 (-151 *2)) (-4 *2 (-1208)) (-4 *2 (-1093)))))
-(-13 (-489 |t#1|) (-10 -8 (-15 -1707 ($ (-640 |t#1|))) (-15 -4203 ((-3 |t#1| "failed") (-1 (-112) |t#1|) $)) (IF (|has| $ (-6 -4407)) (PROGN (-15 -2444 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -2444 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -1459 ($ (-1 (-112) |t#1|) $)) (-15 -2256 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1093)) (PROGN (-15 -2444 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -1459 ($ |t#1| $)) (-15 -3813 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-3400 (((-3 $ "failed") $) 85)) (-3827 (((-112) $) NIL)) (-2588 (($ |#2| (-640 (-917))) 55)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3728 (($ (-917)) 47)) (-3533 (((-134)) 23)) (-1693 (((-858) $) 68) (($ (-563)) 45) (($ |#2|) 46)) (-4319 ((|#2| $ (-640 (-917))) 58)) (-1675 (((-767)) 20)) (-2241 (($) 40 T CONST)) (-2254 (($) 43 T CONST)) (-1718 (((-112) $ $) 26)) (-1837 (($ $ |#2|) NIL)) (-1826 (($ $) 34) (($ $ $) 32)) (-1814 (($ $ $) 30)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 37) (($ $ $) 51) (($ |#2| $) 39) (($ $ |#2|) NIL)))
-(((-152 |#1| |#2| |#3|) (-13 (-1045) (-38 |#2|) (-1264 |#2|) (-10 -8 (-15 -3728 ($ (-917))) (-15 -2588 ($ |#2| (-640 (-917)))) (-15 -4319 (|#2| $ (-640 (-917)))) (-15 -3400 ((-3 $ "failed") $)))) (-917) (-363) (-989 |#1| |#2|)) (T -152))
-((-3400 (*1 *1 *1) (|partial| -12 (-5 *1 (-152 *2 *3 *4)) (-14 *2 (-917)) (-4 *3 (-363)) (-14 *4 (-989 *2 *3)))) (-3728 (*1 *1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-152 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-363)) (-14 *5 (-989 *3 *4)))) (-2588 (*1 *1 *2 *3) (-12 (-5 *3 (-640 (-917))) (-5 *1 (-152 *4 *2 *5)) (-14 *4 (-917)) (-4 *2 (-363)) (-14 *5 (-989 *4 *2)))) (-4319 (*1 *2 *1 *3) (-12 (-5 *3 (-640 (-917))) (-4 *2 (-363)) (-5 *1 (-152 *4 *2 *5)) (-14 *4 (-917)) (-14 *5 (-989 *4 *2)))))
-(-13 (-1045) (-38 |#2|) (-1264 |#2|) (-10 -8 (-15 -3728 ($ (-917))) (-15 -2588 ($ |#2| (-640 (-917)))) (-15 -4319 (|#2| $ (-640 (-917)))) (-15 -3400 ((-3 $ "failed") $))))
-((-3926 (((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-640 (-939 (-225)))) (-225) (-225) (-225) (-225)) 37)) (-4276 (((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923) (-407 (-563)) (-407 (-563))) 64) (((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923)) 65)) (-2769 (((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-640 (-939 (-225))))) 68) (((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-939 (-225)))) 67) (((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923) (-407 (-563)) (-407 (-563))) 59) (((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923)) 60)))
-(((-153) (-10 -7 (-15 -2769 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923))) (-15 -2769 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923) (-407 (-563)) (-407 (-563)))) (-15 -4276 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923))) (-15 -4276 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923) (-407 (-563)) (-407 (-563)))) (-15 -3926 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-640 (-939 (-225)))) (-225) (-225) (-225) (-225))) (-15 -2769 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-939 (-225))))) (-15 -2769 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-640 (-939 (-225)))))))) (T -153))
-((-2769 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225))))) (-5 *1 (-153)) (-5 *3 (-640 (-640 (-939 (-225))))))) (-2769 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225))))) (-5 *1 (-153)) (-5 *3 (-640 (-939 (-225)))))) (-3926 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *4 (-225)) (-5 *2 (-2 (|:| |brans| (-640 (-640 (-939 *4)))) (|:| |xValues| (-1087 *4)) (|:| |yValues| (-1087 *4)))) (-5 *1 (-153)) (-5 *3 (-640 (-640 (-939 *4)))))) (-4276 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-923)) (-5 *4 (-407 (-563))) (-5 *2 (-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225))))) (-5 *1 (-153)))) (-4276 (*1 *2 *3) (-12 (-5 *3 (-923)) (-5 *2 (-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225))))) (-5 *1 (-153)))) (-2769 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-923)) (-5 *4 (-407 (-563))) (-5 *2 (-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225))))) (-5 *1 (-153)))) (-2769 (*1 *2 *3) (-12 (-5 *3 (-923)) (-5 *2 (-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225))))) (-5 *1 (-153)))))
-(-10 -7 (-15 -2769 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923))) (-15 -2769 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923) (-407 (-563)) (-407 (-563)))) (-15 -4276 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923))) (-15 -4276 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923) (-407 (-563)) (-407 (-563)))) (-15 -3926 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-640 (-939 (-225)))) (-225) (-225) (-225) (-225))) (-15 -2769 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-939 (-225))))) (-15 -2769 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-640 (-939 (-225)))))))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-2530 (((-640 (-1128)) $) 15)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 24) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3359 (((-1128) $) 9)) (-1718 (((-112) $ $) NIL)))
-(((-154) (-13 (-1076) (-10 -8 (-15 -2530 ((-640 (-1128)) $)) (-15 -3359 ((-1128) $))))) (T -154))
-((-2530 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-154)))) (-3359 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-154)))))
-(-13 (-1076) (-10 -8 (-15 -2530 ((-640 (-1128)) $)) (-15 -3359 ((-1128) $))))
-((-1435 (((-640 (-169 |#2|)) |#1| |#2|) 45)))
-(((-155 |#1| |#2|) (-10 -7 (-15 -1435 ((-640 (-169 |#2|)) |#1| |#2|))) (-1233 (-169 (-563))) (-13 (-363) (-844))) (T -155))
-((-1435 (*1 *2 *3 *4) (-12 (-5 *2 (-640 (-169 *4))) (-5 *1 (-155 *3 *4)) (-4 *3 (-1233 (-169 (-563)))) (-4 *4 (-13 (-363) (-844))))))
-(-10 -7 (-15 -1435 ((-640 (-169 |#2|)) |#1| |#2|)))
-((-1677 (((-112) $ $) NIL)) (-2351 (((-1207) $) 12)) (-2340 (((-1128) $) 9)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 21) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-156) (-13 (-1076) (-10 -8 (-15 -2340 ((-1128) $)) (-15 -2351 ((-1207) $))))) (T -156))
-((-2340 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-156)))) (-2351 (*1 *2 *1) (-12 (-5 *2 (-1207)) (-5 *1 (-156)))))
-(-13 (-1076) (-10 -8 (-15 -2340 ((-1128) $)) (-15 -2351 ((-1207) $))))
-((-1677 (((-112) $ $) NIL)) (-1773 (($) 15)) (-1957 (($) 14)) (-1860 (((-917)) 22)) (-3573 (((-1151) $) NIL)) (-3788 (((-563) $) 19)) (-1694 (((-1113) $) NIL)) (-3278 (($) 16)) (-1332 (($ (-563)) 23)) (-1693 (((-858) $) 29)) (-3504 (($) 17)) (-1718 (((-112) $ $) 13)) (-1814 (($ $ $) 11)) (* (($ (-917) $) 21) (($ (-225) $) 8)))
-(((-157) (-13 (-25) (-10 -8 (-15 * ($ (-917) $)) (-15 * ($ (-225) $)) (-15 -1814 ($ $ $)) (-15 -1957 ($)) (-15 -1773 ($)) (-15 -3278 ($)) (-15 -3504 ($)) (-15 -3788 ((-563) $)) (-15 -1860 ((-917))) (-15 -1332 ($ (-563)))))) (T -157))
-((-1814 (*1 *1 *1 *1) (-5 *1 (-157))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-917)) (-5 *1 (-157)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-157)))) (-1957 (*1 *1) (-5 *1 (-157))) (-1773 (*1 *1) (-5 *1 (-157))) (-3278 (*1 *1) (-5 *1 (-157))) (-3504 (*1 *1) (-5 *1 (-157))) (-3788 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-157)))) (-1860 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-157)))) (-1332 (*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-157)))))
-(-13 (-25) (-10 -8 (-15 * ($ (-917) $)) (-15 * ($ (-225) $)) (-15 -1814 ($ $ $)) (-15 -1957 ($)) (-15 -1773 ($)) (-15 -3278 ($)) (-15 -3504 ($)) (-15 -3788 ((-563) $)) (-15 -1860 ((-917))) (-15 -1332 ($ (-563)))))
-((-3743 ((|#2| |#2| (-1085 |#2|)) 87) ((|#2| |#2| (-1169)) 67)) (-2041 ((|#2| |#2| (-1085 |#2|)) 86) ((|#2| |#2| (-1169)) 66)) (-3972 ((|#2| |#2| |#2|) 25)) (-2361 (((-114) (-114)) 98)) (-4272 ((|#2| (-640 |#2|)) 116)) (-3984 ((|#2| (-640 |#2|)) 134)) (-3058 ((|#2| (-640 |#2|)) 124)) (-2479 ((|#2| |#2|) 122)) (-2966 ((|#2| (-640 |#2|)) 110)) (-3976 ((|#2| (-640 |#2|)) 111)) (-2631 ((|#2| (-640 |#2|)) 132)) (-2487 ((|#2| |#2| (-1169)) 55) ((|#2| |#2|) 54)) (-3219 ((|#2| |#2|) 21)) (-2869 ((|#2| |#2| |#2|) 24)) (-3734 (((-112) (-114)) 48)) (** ((|#2| |#2| |#2|) 39)))
-(((-158 |#1| |#2|) (-10 -7 (-15 -3734 ((-112) (-114))) (-15 -2361 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -2869 (|#2| |#2| |#2|)) (-15 -3972 (|#2| |#2| |#2|)) (-15 -3219 (|#2| |#2|)) (-15 -2487 (|#2| |#2|)) (-15 -2487 (|#2| |#2| (-1169))) (-15 -3743 (|#2| |#2| (-1169))) (-15 -3743 (|#2| |#2| (-1085 |#2|))) (-15 -2041 (|#2| |#2| (-1169))) (-15 -2041 (|#2| |#2| (-1085 |#2|))) (-15 -2479 (|#2| |#2|)) (-15 -2631 (|#2| (-640 |#2|))) (-15 -3058 (|#2| (-640 |#2|))) (-15 -3984 (|#2| (-640 |#2|))) (-15 -2966 (|#2| (-640 |#2|))) (-15 -3976 (|#2| (-640 |#2|))) (-15 -4272 (|#2| (-640 |#2|)))) (-13 (-846) (-555)) (-430 |#1|)) (T -158))
-((-4272 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-13 (-846) (-555))))) (-3976 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-13 (-846) (-555))))) (-2966 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-13 (-846) (-555))))) (-3984 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-13 (-846) (-555))))) (-3058 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-13 (-846) (-555))))) (-2631 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-13 (-846) (-555))))) (-2479 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2)) (-4 *2 (-430 *3)))) (-2041 (*1 *2 *2 *3) (-12 (-5 *3 (-1085 *2)) (-4 *2 (-430 *4)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2)))) (-2041 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2)) (-4 *2 (-430 *4)))) (-3743 (*1 *2 *2 *3) (-12 (-5 *3 (-1085 *2)) (-4 *2 (-430 *4)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2)))) (-3743 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2)) (-4 *2 (-430 *4)))) (-2487 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2)) (-4 *2 (-430 *4)))) (-2487 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2)) (-4 *2 (-430 *3)))) (-3219 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2)) (-4 *2 (-430 *3)))) (-3972 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2)) (-4 *2 (-430 *3)))) (-2869 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2)) (-4 *2 (-430 *3)))) (** (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2)) (-4 *2 (-430 *3)))) (-2361 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *4)) (-4 *4 (-430 *3)))) (-3734 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112)) (-5 *1 (-158 *4 *5)) (-4 *5 (-430 *4)))))
-(-10 -7 (-15 -3734 ((-112) (-114))) (-15 -2361 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -2869 (|#2| |#2| |#2|)) (-15 -3972 (|#2| |#2| |#2|)) (-15 -3219 (|#2| |#2|)) (-15 -2487 (|#2| |#2|)) (-15 -2487 (|#2| |#2| (-1169))) (-15 -3743 (|#2| |#2| (-1169))) (-15 -3743 (|#2| |#2| (-1085 |#2|))) (-15 -2041 (|#2| |#2| (-1169))) (-15 -2041 (|#2| |#2| (-1085 |#2|))) (-15 -2479 (|#2| |#2|)) (-15 -2631 (|#2| (-640 |#2|))) (-15 -3058 (|#2| (-640 |#2|))) (-15 -3984 (|#2| (-640 |#2|))) (-15 -2966 (|#2| (-640 |#2|))) (-15 -3976 (|#2| (-640 |#2|))) (-15 -4272 (|#2| (-640 |#2|))))
-((-1861 ((|#1| |#1| |#1|) 53)) (-3653 ((|#1| |#1| |#1|) 50)) (-3972 ((|#1| |#1| |#1|) 44)) (-3106 ((|#1| |#1|) 35)) (-3096 ((|#1| |#1| (-640 |#1|)) 43)) (-3219 ((|#1| |#1|) 37)) (-2869 ((|#1| |#1| |#1|) 40)))
-(((-159 |#1|) (-10 -7 (-15 -2869 (|#1| |#1| |#1|)) (-15 -3219 (|#1| |#1|)) (-15 -3096 (|#1| |#1| (-640 |#1|))) (-15 -3106 (|#1| |#1|)) (-15 -3972 (|#1| |#1| |#1|)) (-15 -3653 (|#1| |#1| |#1|)) (-15 -1861 (|#1| |#1| |#1|))) (-545)) (T -159))
-((-1861 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))) (-3653 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))) (-3972 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))) (-3106 (*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))) (-3096 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-545)) (-5 *1 (-159 *2)))) (-3219 (*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))) (-2869 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))))
-(-10 -7 (-15 -2869 (|#1| |#1| |#1|)) (-15 -3219 (|#1| |#1|)) (-15 -3096 (|#1| |#1| (-640 |#1|))) (-15 -3106 (|#1| |#1|)) (-15 -3972 (|#1| |#1| |#1|)) (-15 -3653 (|#1| |#1| |#1|)) (-15 -1861 (|#1| |#1| |#1|)))
-((-3743 (($ $ (-1169)) 12) (($ $ (-1085 $)) 11)) (-2041 (($ $ (-1169)) 10) (($ $ (-1085 $)) 9)) (-3972 (($ $ $) 8)) (-2487 (($ $) 14) (($ $ (-1169)) 13)) (-3219 (($ $) 7)) (-2869 (($ $ $) 6)))
+((-1706 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-4 *1 (-151 *3)))) (-1971 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-151 *2)) (-4 *2 (-1208)))) (-2444 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4408)) (-4 *1 (-151 *2)) (-4 *2 (-1208)))) (-2444 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4408)) (-4 *1 (-151 *2)) (-4 *2 (-1208)))) (-1459 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4408)) (-4 *1 (-151 *3)) (-4 *3 (-1208)))) (-2255 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4408)) (-4 *1 (-151 *3)) (-4 *3 (-1208)))) (-2444 (*1 *2 *3 *1 *2 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1093)) (|has| *1 (-6 -4408)) (-4 *1 (-151 *2)) (-4 *2 (-1208)))) (-1459 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-151 *2)) (-4 *2 (-1208)) (-4 *2 (-1093)))) (-3814 (*1 *1 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-151 *2)) (-4 *2 (-1208)) (-4 *2 (-1093)))))
+(-13 (-489 |t#1|) (-10 -8 (-15 -1706 ($ (-640 |t#1|))) (-15 -1971 ((-3 |t#1| "failed") (-1 (-112) |t#1|) $)) (IF (|has| $ (-6 -4408)) (PROGN (-15 -2444 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -2444 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -1459 ($ (-1 (-112) |t#1|) $)) (-15 -2255 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1093)) (PROGN (-15 -2444 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -1459 ($ |t#1| $)) (-15 -3814 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-3951 (((-3 $ "failed") $) 85)) (-3401 (((-112) $) NIL)) (-2587 (($ |#2| (-640 (-917))) 55)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3729 (($ (-917)) 47)) (-3526 (((-134)) 23)) (-1692 (((-858) $) 68) (($ (-563)) 45) (($ |#2|) 46)) (-3244 ((|#2| $ (-640 (-917))) 58)) (-3914 (((-767)) 20)) (-2239 (($) 40 T CONST)) (-2253 (($) 43 T CONST)) (-1718 (((-112) $ $) 26)) (-1836 (($ $ |#2|) NIL)) (-1825 (($ $) 34) (($ $ $) 32)) (-1813 (($ $ $) 30)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 37) (($ $ $) 51) (($ |#2| $) 39) (($ $ |#2|) NIL)))
+(((-152 |#1| |#2| |#3|) (-13 (-1045) (-38 |#2|) (-1264 |#2|) (-10 -8 (-15 -3729 ($ (-917))) (-15 -2587 ($ |#2| (-640 (-917)))) (-15 -3244 (|#2| $ (-640 (-917)))) (-15 -3951 ((-3 $ "failed") $)))) (-917) (-363) (-989 |#1| |#2|)) (T -152))
+((-3951 (*1 *1 *1) (|partial| -12 (-5 *1 (-152 *2 *3 *4)) (-14 *2 (-917)) (-4 *3 (-363)) (-14 *4 (-989 *2 *3)))) (-3729 (*1 *1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-152 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-363)) (-14 *5 (-989 *3 *4)))) (-2587 (*1 *1 *2 *3) (-12 (-5 *3 (-640 (-917))) (-5 *1 (-152 *4 *2 *5)) (-14 *4 (-917)) (-4 *2 (-363)) (-14 *5 (-989 *4 *2)))) (-3244 (*1 *2 *1 *3) (-12 (-5 *3 (-640 (-917))) (-4 *2 (-363)) (-5 *1 (-152 *4 *2 *5)) (-14 *4 (-917)) (-14 *5 (-989 *4 *2)))))
+(-13 (-1045) (-38 |#2|) (-1264 |#2|) (-10 -8 (-15 -3729 ($ (-917))) (-15 -2587 ($ |#2| (-640 (-917)))) (-15 -3244 (|#2| $ (-640 (-917)))) (-15 -3951 ((-3 $ "failed") $))))
+((-1988 (((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-640 (-939 (-225)))) (-225) (-225) (-225) (-225)) 37)) (-1981 (((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923) (-407 (-563)) (-407 (-563))) 64) (((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923)) 65)) (-4208 (((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-640 (-939 (-225))))) 68) (((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-939 (-225)))) 67) (((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923) (-407 (-563)) (-407 (-563))) 59) (((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923)) 60)))
+(((-153) (-10 -7 (-15 -4208 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923))) (-15 -4208 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923) (-407 (-563)) (-407 (-563)))) (-15 -1981 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923))) (-15 -1981 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923) (-407 (-563)) (-407 (-563)))) (-15 -1988 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-640 (-939 (-225)))) (-225) (-225) (-225) (-225))) (-15 -4208 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-939 (-225))))) (-15 -4208 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-640 (-939 (-225)))))))) (T -153))
+((-4208 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225))))) (-5 *1 (-153)) (-5 *3 (-640 (-640 (-939 (-225))))))) (-4208 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225))))) (-5 *1 (-153)) (-5 *3 (-640 (-939 (-225)))))) (-1988 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *4 (-225)) (-5 *2 (-2 (|:| |brans| (-640 (-640 (-939 *4)))) (|:| |xValues| (-1087 *4)) (|:| |yValues| (-1087 *4)))) (-5 *1 (-153)) (-5 *3 (-640 (-640 (-939 *4)))))) (-1981 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-923)) (-5 *4 (-407 (-563))) (-5 *2 (-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225))))) (-5 *1 (-153)))) (-1981 (*1 *2 *3) (-12 (-5 *3 (-923)) (-5 *2 (-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225))))) (-5 *1 (-153)))) (-4208 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-923)) (-5 *4 (-407 (-563))) (-5 *2 (-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225))))) (-5 *1 (-153)))) (-4208 (*1 *2 *3) (-12 (-5 *3 (-923)) (-5 *2 (-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225))))) (-5 *1 (-153)))))
+(-10 -7 (-15 -4208 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923))) (-15 -4208 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923) (-407 (-563)) (-407 (-563)))) (-15 -1981 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923))) (-15 -1981 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-923) (-407 (-563)) (-407 (-563)))) (-15 -1988 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-640 (-939 (-225)))) (-225) (-225) (-225) (-225))) (-15 -4208 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-939 (-225))))) (-15 -4208 ((-2 (|:| |brans| (-640 (-640 (-939 (-225))))) (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))) (-640 (-640 (-939 (-225)))))))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-2529 (((-640 (-1128)) $) 15)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 24) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3363 (((-1128) $) 9)) (-1718 (((-112) $ $) NIL)))
+(((-154) (-13 (-1076) (-10 -8 (-15 -2529 ((-640 (-1128)) $)) (-15 -3363 ((-1128) $))))) (T -154))
+((-2529 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-154)))) (-3363 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-154)))))
+(-13 (-1076) (-10 -8 (-15 -2529 ((-640 (-1128)) $)) (-15 -3363 ((-1128) $))))
+((-4371 (((-640 (-169 |#2|)) |#1| |#2|) 45)))
+(((-155 |#1| |#2|) (-10 -7 (-15 -4371 ((-640 (-169 |#2|)) |#1| |#2|))) (-1233 (-169 (-563))) (-13 (-363) (-844))) (T -155))
+((-4371 (*1 *2 *3 *4) (-12 (-5 *2 (-640 (-169 *4))) (-5 *1 (-155 *3 *4)) (-4 *3 (-1233 (-169 (-563)))) (-4 *4 (-13 (-363) (-844))))))
+(-10 -7 (-15 -4371 ((-640 (-169 |#2|)) |#1| |#2|)))
+((-1677 (((-112) $ $) NIL)) (-2350 (((-1207) $) 12)) (-2339 (((-1128) $) 9)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 21) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-156) (-13 (-1076) (-10 -8 (-15 -2339 ((-1128) $)) (-15 -2350 ((-1207) $))))) (T -156))
+((-2339 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-156)))) (-2350 (*1 *2 *1) (-12 (-5 *2 (-1207)) (-5 *1 (-156)))))
+(-13 (-1076) (-10 -8 (-15 -2339 ((-1128) $)) (-15 -2350 ((-1207) $))))
+((-1677 (((-112) $ $) NIL)) (-2007 (($) 15)) (-1831 (($) 14)) (-1997 (((-917)) 22)) (-3854 (((-1151) $) NIL)) (-2830 (((-563) $) 19)) (-1693 (((-1113) $) NIL)) (-1820 (($) 16)) (-2817 (($ (-563)) 23)) (-1692 (((-858) $) 29)) (-1808 (($) 17)) (-1718 (((-112) $ $) 13)) (-1813 (($ $ $) 11)) (* (($ (-917) $) 21) (($ (-225) $) 8)))
+(((-157) (-13 (-25) (-10 -8 (-15 * ($ (-917) $)) (-15 * ($ (-225) $)) (-15 -1813 ($ $ $)) (-15 -1831 ($)) (-15 -2007 ($)) (-15 -1820 ($)) (-15 -1808 ($)) (-15 -2830 ((-563) $)) (-15 -1997 ((-917))) (-15 -2817 ($ (-563)))))) (T -157))
+((-1813 (*1 *1 *1 *1) (-5 *1 (-157))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-917)) (-5 *1 (-157)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-157)))) (-1831 (*1 *1) (-5 *1 (-157))) (-2007 (*1 *1) (-5 *1 (-157))) (-1820 (*1 *1) (-5 *1 (-157))) (-1808 (*1 *1) (-5 *1 (-157))) (-2830 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-157)))) (-1997 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-157)))) (-2817 (*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-157)))))
+(-13 (-25) (-10 -8 (-15 * ($ (-917) $)) (-15 * ($ (-225) $)) (-15 -1813 ($ $ $)) (-15 -1831 ($)) (-15 -2007 ($)) (-15 -1820 ($)) (-15 -1808 ($)) (-15 -2830 ((-563) $)) (-15 -1997 ((-917))) (-15 -2817 ($ (-563)))))
+((-2132 ((|#2| |#2| (-1085 |#2|)) 87) ((|#2| |#2| (-1169)) 67)) (-3846 ((|#2| |#2| (-1085 |#2|)) 86) ((|#2| |#2| (-1169)) 66)) (-2101 ((|#2| |#2| |#2|) 25)) (-2559 (((-114) (-114)) 98)) (-2073 ((|#2| (-640 |#2|)) 117)) (-2045 ((|#2| (-640 |#2|)) 135)) (-2036 ((|#2| (-640 |#2|)) 125)) (-2015 ((|#2| |#2|) 123)) (-2052 ((|#2| (-640 |#2|)) 111)) (-2063 ((|#2| (-640 |#2|)) 112)) (-2025 ((|#2| (-640 |#2|)) 133)) (-2142 ((|#2| |#2| (-1169)) 55) ((|#2| |#2|) 54)) (-2081 ((|#2| |#2|) 21)) (-1864 ((|#2| |#2| |#2|) 24)) (-2512 (((-112) (-114)) 48)) (** ((|#2| |#2| |#2|) 39)))
+(((-158 |#1| |#2|) (-10 -7 (-15 -2512 ((-112) (-114))) (-15 -2559 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -1864 (|#2| |#2| |#2|)) (-15 -2101 (|#2| |#2| |#2|)) (-15 -2081 (|#2| |#2|)) (-15 -2142 (|#2| |#2|)) (-15 -2142 (|#2| |#2| (-1169))) (-15 -2132 (|#2| |#2| (-1169))) (-15 -2132 (|#2| |#2| (-1085 |#2|))) (-15 -3846 (|#2| |#2| (-1169))) (-15 -3846 (|#2| |#2| (-1085 |#2|))) (-15 -2015 (|#2| |#2|)) (-15 -2025 (|#2| (-640 |#2|))) (-15 -2036 (|#2| (-640 |#2|))) (-15 -2045 (|#2| (-640 |#2|))) (-15 -2052 (|#2| (-640 |#2|))) (-15 -2063 (|#2| (-640 |#2|))) (-15 -2073 (|#2| (-640 |#2|)))) (-13 (-846) (-555)) (-430 |#1|)) (T -158))
+((-2073 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-13 (-846) (-555))))) (-2063 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-13 (-846) (-555))))) (-2052 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-13 (-846) (-555))))) (-2045 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-13 (-846) (-555))))) (-2036 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-13 (-846) (-555))))) (-2025 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-13 (-846) (-555))))) (-2015 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2)) (-4 *2 (-430 *3)))) (-3846 (*1 *2 *2 *3) (-12 (-5 *3 (-1085 *2)) (-4 *2 (-430 *4)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2)))) (-3846 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2)) (-4 *2 (-430 *4)))) (-2132 (*1 *2 *2 *3) (-12 (-5 *3 (-1085 *2)) (-4 *2 (-430 *4)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2)))) (-2132 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2)) (-4 *2 (-430 *4)))) (-2142 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2)) (-4 *2 (-430 *4)))) (-2142 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2)) (-4 *2 (-430 *3)))) (-2081 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2)) (-4 *2 (-430 *3)))) (-2101 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2)) (-4 *2 (-430 *3)))) (-1864 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2)) (-4 *2 (-430 *3)))) (** (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2)) (-4 *2 (-430 *3)))) (-2559 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *4)) (-4 *4 (-430 *3)))) (-2512 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112)) (-5 *1 (-158 *4 *5)) (-4 *5 (-430 *4)))))
+(-10 -7 (-15 -2512 ((-112) (-114))) (-15 -2559 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -1864 (|#2| |#2| |#2|)) (-15 -2101 (|#2| |#2| |#2|)) (-15 -2081 (|#2| |#2|)) (-15 -2142 (|#2| |#2|)) (-15 -2142 (|#2| |#2| (-1169))) (-15 -2132 (|#2| |#2| (-1169))) (-15 -2132 (|#2| |#2| (-1085 |#2|))) (-15 -3846 (|#2| |#2| (-1169))) (-15 -3846 (|#2| |#2| (-1085 |#2|))) (-15 -2015 (|#2| |#2|)) (-15 -2025 (|#2| (-640 |#2|))) (-15 -2036 (|#2| (-640 |#2|))) (-15 -2045 (|#2| (-640 |#2|))) (-15 -2052 (|#2| (-640 |#2|))) (-15 -2063 (|#2| (-640 |#2|))) (-15 -2073 (|#2| (-640 |#2|))))
+((-2120 ((|#1| |#1| |#1|) 53)) (-2111 ((|#1| |#1| |#1|) 50)) (-2101 ((|#1| |#1| |#1|) 44)) (-3358 ((|#1| |#1|) 35)) (-2090 ((|#1| |#1| (-640 |#1|)) 43)) (-2081 ((|#1| |#1|) 37)) (-1864 ((|#1| |#1| |#1|) 40)))
+(((-159 |#1|) (-10 -7 (-15 -1864 (|#1| |#1| |#1|)) (-15 -2081 (|#1| |#1|)) (-15 -2090 (|#1| |#1| (-640 |#1|))) (-15 -3358 (|#1| |#1|)) (-15 -2101 (|#1| |#1| |#1|)) (-15 -2111 (|#1| |#1| |#1|)) (-15 -2120 (|#1| |#1| |#1|))) (-545)) (T -159))
+((-2120 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))) (-2111 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))) (-2101 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))) (-3358 (*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))) (-2090 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-545)) (-5 *1 (-159 *2)))) (-2081 (*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))) (-1864 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))))
+(-10 -7 (-15 -1864 (|#1| |#1| |#1|)) (-15 -2081 (|#1| |#1|)) (-15 -2090 (|#1| |#1| (-640 |#1|))) (-15 -3358 (|#1| |#1|)) (-15 -2101 (|#1| |#1| |#1|)) (-15 -2111 (|#1| |#1| |#1|)) (-15 -2120 (|#1| |#1| |#1|)))
+((-2132 (($ $ (-1169)) 12) (($ $ (-1085 $)) 11)) (-3846 (($ $ (-1169)) 10) (($ $ (-1085 $)) 9)) (-2101 (($ $ $) 8)) (-2142 (($ $) 14) (($ $ (-1169)) 13)) (-2081 (($ $) 7)) (-1864 (($ $ $) 6)))
(((-160) (-140)) (T -160))
-((-2487 (*1 *1 *1) (-4 *1 (-160))) (-2487 (*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1169)))) (-3743 (*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1169)))) (-3743 (*1 *1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-160)))) (-2041 (*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1169)))) (-2041 (*1 *1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-160)))))
-(-13 (-143) (-10 -8 (-15 -2487 ($ $)) (-15 -2487 ($ $ (-1169))) (-15 -3743 ($ $ (-1169))) (-15 -3743 ($ $ (-1085 $))) (-15 -2041 ($ $ (-1169))) (-15 -2041 ($ $ (-1085 $)))))
+((-2142 (*1 *1 *1) (-4 *1 (-160))) (-2142 (*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1169)))) (-2132 (*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1169)))) (-2132 (*1 *1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-160)))) (-3846 (*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1169)))) (-3846 (*1 *1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-160)))))
+(-13 (-143) (-10 -8 (-15 -2142 ($ $)) (-15 -2142 ($ $ (-1169))) (-15 -2132 ($ $ (-1169))) (-15 -2132 ($ $ (-1085 $))) (-15 -3846 ($ $ (-1169))) (-15 -3846 ($ $ (-1085 $)))))
(((-143) . T))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 17) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3359 (((-640 (-1128)) $) 9)) (-1718 (((-112) $ $) NIL)))
-(((-161) (-13 (-1076) (-10 -8 (-15 -3359 ((-640 (-1128)) $))))) (T -161))
-((-3359 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-161)))))
-(-13 (-1076) (-10 -8 (-15 -3359 ((-640 (-1128)) $))))
-((-1677 (((-112) $ $) NIL)) (-2270 (($ (-563)) 13) (($ $ $) 14)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 17)) (-1718 (((-112) $ $) 9)))
-(((-162) (-13 (-1093) (-10 -8 (-15 -2270 ($ (-563))) (-15 -2270 ($ $ $))))) (T -162))
-((-2270 (*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-162)))) (-2270 (*1 *1 *1 *1) (-5 *1 (-162))))
-(-13 (-1093) (-10 -8 (-15 -2270 ($ (-563))) (-15 -2270 ($ $ $))))
-((-2361 (((-114) (-1169)) 95)))
-(((-163) (-10 -7 (-15 -2361 ((-114) (-1169))))) (T -163))
-((-2361 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-114)) (-5 *1 (-163)))))
-(-10 -7 (-15 -2361 ((-114) (-1169))))
-((-1536 ((|#3| |#3|) 19)))
-(((-164 |#1| |#2| |#3|) (-10 -7 (-15 -1536 (|#3| |#3|))) (-1045) (-1233 |#1|) (-1233 |#2|)) (T -164))
-((-1536 (*1 *2 *2) (-12 (-4 *3 (-1045)) (-4 *4 (-1233 *3)) (-5 *1 (-164 *3 *4 *2)) (-4 *2 (-1233 *4)))))
-(-10 -7 (-15 -1536 (|#3| |#3|)))
-((-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 214)) (-1733 ((|#2| $) 95)) (-1771 (($ $) 244)) (-1619 (($ $) 238)) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 39)) (-1748 (($ $) 242)) (-1597 (($ $) 236)) (-2131 (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 |#2| "failed") $) 138)) (-2058 (((-563) $) NIL) (((-407 (-563)) $) NIL) ((|#2| $) 136)) (-3090 (($ $ $) 219)) (-2950 (((-684 (-563)) (-684 $)) NIL) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) 152) (((-684 |#2|) (-684 $)) 146)) (-2444 (($ (-1165 |#2|)) 118) (((-3 $ "failed") (-407 (-1165 |#2|))) NIL)) (-3400 (((-3 $ "failed") $) 206)) (-3909 (((-3 (-407 (-563)) "failed") $) 196)) (-2239 (((-112) $) 191)) (-2651 (((-407 (-563)) $) 194)) (-2522 (((-917)) 88)) (-3050 (($ $ $) 221)) (-3032 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 258)) (-2180 (($) 233)) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 183) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 188)) (-3793 ((|#2| $) 93)) (-3941 (((-1165 |#2|) $) 120)) (-2240 (($ (-1 |#2| |#2|) $) 101)) (-4371 (($ $) 235)) (-2433 (((-1165 |#2|) $) 119)) (-2688 (($ $) 199)) (-3127 (($) 96)) (-1876 (((-418 (-1165 $)) (-1165 $)) 87)) (-3116 (((-418 (-1165 $)) (-1165 $)) 56)) (-3008 (((-3 $ "failed") $ |#2|) 201) (((-3 $ "failed") $ $) 204)) (-3368 (($ $) 234)) (-2628 (((-767) $) 216)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 226)) (-2315 ((|#2| (-1257 $)) NIL) ((|#2|) 90)) (-4202 (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) 112) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL) (($ $ (-767)) NIL) (($ $) NIL)) (-3390 (((-1165 |#2|)) 113)) (-1759 (($ $) 243)) (-1608 (($ $) 237)) (-1880 (((-1257 |#2|) $ (-1257 $)) 127) (((-684 |#2|) (-1257 $) (-1257 $)) NIL) (((-1257 |#2|) $) 109) (((-684 |#2|) (-1257 $)) NIL)) (-2220 (((-1257 |#2|) $) NIL) (($ (-1257 |#2|)) NIL) (((-1165 |#2|) $) NIL) (($ (-1165 |#2|)) NIL) (((-888 (-563)) $) 174) (((-888 (-379)) $) 178) (((-169 (-379)) $) 164) (((-169 (-225)) $) 159) (((-536) $) 170)) (-4339 (($ $) 97)) (-1693 (((-858) $) 135) (($ (-563)) NIL) (($ |#2|) NIL) (($ (-407 (-563))) NIL) (($ $) NIL)) (-3421 (((-1165 |#2|) $) 23)) (-1675 (((-767)) 99)) (-1840 (($ $) 247)) (-1695 (($ $) 241)) (-1817 (($ $) 245)) (-1667 (($ $) 239)) (-3237 ((|#2| $) 230)) (-1829 (($ $) 246)) (-1680 (($ $) 240)) (-2509 (($ $) 154)) (-1718 (((-112) $ $) 103)) (-1744 (((-112) $ $) 190)) (-1826 (($ $) 105) (($ $ $) NIL)) (-1814 (($ $ $) 104)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-407 (-563))) 264) (($ $ $) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 111) (($ $ $) 139) (($ $ |#2|) NIL) (($ |#2| $) 107) (($ (-407 (-563)) $) NIL) (($ $ (-407 (-563))) NIL)))
-(((-165 |#1| |#2|) (-10 -8 (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -1693 (|#1| |#1|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4372 ((-2 (|:| -1414 |#1|) (|:| -4394 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -2628 ((-767) |#1|)) (-15 -2452 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -3050 (|#1| |#1| |#1|)) (-15 -3090 (|#1| |#1| |#1|)) (-15 -2688 (|#1| |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -1744 ((-112) |#1| |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -2220 ((-169 (-225)) |#1|)) (-15 -2220 ((-169 (-379)) |#1|)) (-15 -1619 (|#1| |#1|)) (-15 -1597 (|#1| |#1|)) (-15 -1608 (|#1| |#1|)) (-15 -1680 (|#1| |#1|)) (-15 -1667 (|#1| |#1|)) (-15 -1695 (|#1| |#1|)) (-15 -1759 (|#1| |#1|)) (-15 -1748 (|#1| |#1|)) (-15 -1771 (|#1| |#1|)) (-15 -1829 (|#1| |#1|)) (-15 -1817 (|#1| |#1|)) (-15 -1840 (|#1| |#1|)) (-15 -4371 (|#1| |#1|)) (-15 -3368 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -2180 (|#1|)) (-15 ** (|#1| |#1| (-407 (-563)))) (-15 -3116 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -1876 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2748 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -3909 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2651 ((-407 (-563)) |#1|)) (-15 -2239 ((-112) |#1|)) (-15 -3032 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -3237 (|#2| |#1|)) (-15 -2509 (|#1| |#1|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#2|)) (-15 -4339 (|#1| |#1|)) (-15 -3127 (|#1|)) (-15 -2220 ((-888 (-379)) |#1|)) (-15 -2220 ((-888 (-563)) |#1|)) (-15 -3787 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -3787 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -2444 ((-3 |#1| "failed") (-407 (-1165 |#2|)))) (-15 -2433 ((-1165 |#2|) |#1|)) (-15 -2220 (|#1| (-1165 |#2|))) (-15 -2444 (|#1| (-1165 |#2|))) (-15 -3390 ((-1165 |#2|))) (-15 -2950 ((-684 |#2|) (-684 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-684 (-563)) (-684 |#1|))) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2220 ((-1165 |#2|) |#1|)) (-15 -2315 (|#2|)) (-15 -2220 (|#1| (-1257 |#2|))) (-15 -2220 ((-1257 |#2|) |#1|)) (-15 -1880 ((-684 |#2|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1|)) (-15 -3941 ((-1165 |#2|) |#1|)) (-15 -3421 ((-1165 |#2|) |#1|)) (-15 -2315 (|#2| (-1257 |#1|))) (-15 -1880 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3793 (|#2| |#1|)) (-15 -1733 (|#2| |#1|)) (-15 -2522 ((-917))) (-15 -1693 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1675 ((-767))) (-15 -1693 (|#1| (-563))) (-15 ** (|#1| |#1| (-767))) (-15 -3400 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-917))) (-15 * (|#1| (-563) |#1|)) (-15 -1826 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1814 (|#1| |#1| |#1|)) (-15 -1693 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|))) (-166 |#2|) (-172)) (T -165))
-((-1675 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-767)) (-5 *1 (-165 *3 *4)) (-4 *3 (-166 *4)))) (-2522 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-917)) (-5 *1 (-165 *3 *4)) (-4 *3 (-166 *4)))) (-2315 (*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-165 *3 *2)) (-4 *3 (-166 *2)))) (-3390 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1165 *4)) (-5 *1 (-165 *3 *4)) (-4 *3 (-166 *4)))))
-(-10 -8 (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -1693 (|#1| |#1|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4372 ((-2 (|:| -1414 |#1|) (|:| -4394 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -2628 ((-767) |#1|)) (-15 -2452 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -3050 (|#1| |#1| |#1|)) (-15 -3090 (|#1| |#1| |#1|)) (-15 -2688 (|#1| |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -1744 ((-112) |#1| |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -2220 ((-169 (-225)) |#1|)) (-15 -2220 ((-169 (-379)) |#1|)) (-15 -1619 (|#1| |#1|)) (-15 -1597 (|#1| |#1|)) (-15 -1608 (|#1| |#1|)) (-15 -1680 (|#1| |#1|)) (-15 -1667 (|#1| |#1|)) (-15 -1695 (|#1| |#1|)) (-15 -1759 (|#1| |#1|)) (-15 -1748 (|#1| |#1|)) (-15 -1771 (|#1| |#1|)) (-15 -1829 (|#1| |#1|)) (-15 -1817 (|#1| |#1|)) (-15 -1840 (|#1| |#1|)) (-15 -4371 (|#1| |#1|)) (-15 -3368 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -2180 (|#1|)) (-15 ** (|#1| |#1| (-407 (-563)))) (-15 -3116 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -1876 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2748 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -3909 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2651 ((-407 (-563)) |#1|)) (-15 -2239 ((-112) |#1|)) (-15 -3032 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -3237 (|#2| |#1|)) (-15 -2509 (|#1| |#1|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#2|)) (-15 -4339 (|#1| |#1|)) (-15 -3127 (|#1|)) (-15 -2220 ((-888 (-379)) |#1|)) (-15 -2220 ((-888 (-563)) |#1|)) (-15 -3787 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -3787 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -2444 ((-3 |#1| "failed") (-407 (-1165 |#2|)))) (-15 -2433 ((-1165 |#2|) |#1|)) (-15 -2220 (|#1| (-1165 |#2|))) (-15 -2444 (|#1| (-1165 |#2|))) (-15 -3390 ((-1165 |#2|))) (-15 -2950 ((-684 |#2|) (-684 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-684 (-563)) (-684 |#1|))) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2220 ((-1165 |#2|) |#1|)) (-15 -2315 (|#2|)) (-15 -2220 (|#1| (-1257 |#2|))) (-15 -2220 ((-1257 |#2|) |#1|)) (-15 -1880 ((-684 |#2|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1|)) (-15 -3941 ((-1165 |#2|) |#1|)) (-15 -3421 ((-1165 |#2|) |#1|)) (-15 -2315 (|#2| (-1257 |#1|))) (-15 -1880 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3793 (|#2| |#1|)) (-15 -1733 (|#2| |#1|)) (-15 -2522 ((-917))) (-15 -1693 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1675 ((-767))) (-15 -1693 (|#1| (-563))) (-15 ** (|#1| |#1| (-767))) (-15 -3400 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-917))) (-15 * (|#1| (-563) |#1|)) (-15 -1826 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1814 (|#1| |#1| |#1|)) (-15 -1693 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 93 (-4032 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-4223 (($ $) 94 (-4032 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-3156 (((-112) $) 96 (-4032 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-3561 (((-684 |#1|) (-1257 $)) 47) (((-684 |#1|)) 62)) (-1733 ((|#1| $) 53)) (-1771 (($ $) 227 (|has| |#1| (-1193)))) (-1619 (($ $) 210 (|has| |#1| (-1193)))) (-2752 (((-1181 (-917) (-767)) (-563)) 146 (|has| |#1| (-349)))) (-1495 (((-3 $ "failed") $ $) 19)) (-2424 (((-418 (-1165 $)) (-1165 $)) 241 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-4335 (($ $) 113 (-4032 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-3205 (((-418 $) $) 114 (-4032 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-2186 (($ $) 240 (-12 (|has| |#1| (-998)) (|has| |#1| (-1193))))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 244 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-1919 (((-112) $ $) 104 (|has| |#1| (-307)))) (-3749 (((-767)) 87 (|has| |#1| (-368)))) (-1748 (($ $) 226 (|has| |#1| (-1193)))) (-1597 (($ $) 211 (|has| |#1| (-1193)))) (-1794 (($ $) 225 (|has| |#1| (-1193)))) (-1643 (($ $) 212 (|has| |#1| (-1193)))) (-4239 (($) 17 T CONST)) (-2131 (((-3 (-563) "failed") $) 169 (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 167 (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 164)) (-2058 (((-563) $) 168 (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) 166 (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 165)) (-3937 (($ (-1257 |#1|) (-1257 $)) 49) (($ (-1257 |#1|)) 65)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) 152 (|has| |#1| (-349)))) (-3090 (($ $ $) 108 (|has| |#1| (-307)))) (-3914 (((-684 |#1|) $ (-1257 $)) 54) (((-684 |#1|) $) 60)) (-2950 (((-684 (-563)) (-684 $)) 163 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 162 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 161) (((-684 |#1|) (-684 $)) 160)) (-2444 (($ (-1165 |#1|)) 157) (((-3 $ "failed") (-407 (-1165 |#1|))) 154 (|has| |#1| (-363)))) (-3400 (((-3 $ "failed") $) 33)) (-2489 ((|#1| $) 252)) (-3909 (((-3 (-407 (-563)) "failed") $) 245 (|has| |#1| (-545)))) (-2239 (((-112) $) 247 (|has| |#1| (-545)))) (-2651 (((-407 (-563)) $) 246 (|has| |#1| (-545)))) (-2522 (((-917)) 55)) (-1691 (($) 90 (|has| |#1| (-368)))) (-3050 (($ $ $) 107 (|has| |#1| (-307)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 102 (|has| |#1| (-307)))) (-1571 (($) 148 (|has| |#1| (-349)))) (-2366 (((-112) $) 149 (|has| |#1| (-349)))) (-1637 (($ $ (-767)) 140 (|has| |#1| (-349))) (($ $) 139 (|has| |#1| (-349)))) (-2468 (((-112) $) 115 (-4032 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-3032 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 248 (-12 (|has| |#1| (-1054)) (|has| |#1| (-1193))))) (-2180 (($) 237 (|has| |#1| (-1193)))) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 260 (|has| |#1| (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 259 (|has| |#1| (-882 (-379))))) (-3254 (((-917) $) 151 (|has| |#1| (-349))) (((-829 (-917)) $) 137 (|has| |#1| (-349)))) (-3827 (((-112) $) 31)) (-1645 (($ $ (-563)) 239 (-12 (|has| |#1| (-998)) (|has| |#1| (-1193))))) (-3793 ((|#1| $) 52)) (-2408 (((-3 $ "failed") $) 141 (|has| |#1| (-349)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 111 (|has| |#1| (-307)))) (-3941 (((-1165 |#1|) $) 45 (|has| |#1| (-363)))) (-3084 (($ $ $) 206 (|has| |#1| (-846)))) (-1777 (($ $ $) 205 (|has| |#1| (-846)))) (-2240 (($ (-1 |#1| |#1|) $) 261)) (-1476 (((-917) $) 89 (|has| |#1| (-368)))) (-4371 (($ $) 234 (|has| |#1| (-1193)))) (-2433 (((-1165 |#1|) $) 155)) (-3513 (($ (-640 $)) 100 (-4032 (|has| |#1| (-307)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (($ $ $) 99 (-4032 (|has| |#1| (-307)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-3573 (((-1151) $) 9)) (-2688 (($ $) 116 (|has| |#1| (-363)))) (-2523 (($) 142 (|has| |#1| (-349)) CONST)) (-2555 (($ (-917)) 88 (|has| |#1| (-368)))) (-3127 (($) 256)) (-2499 ((|#1| $) 253)) (-1694 (((-1113) $) 10)) (-4333 (($) 159)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 101 (-4032 (|has| |#1| (-307)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-3548 (($ (-640 $)) 98 (-4032 (|has| |#1| (-307)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (($ $ $) 97 (-4032 (|has| |#1| (-307)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) 145 (|has| |#1| (-349)))) (-1876 (((-418 (-1165 $)) (-1165 $)) 243 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-3116 (((-418 (-1165 $)) (-1165 $)) 242 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-2174 (((-418 $) $) 112 (-4032 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-307))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 109 (|has| |#1| (-307)))) (-3008 (((-3 $ "failed") $ |#1|) 251 (|has| |#1| (-555))) (((-3 $ "failed") $ $) 92 (-4032 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 103 (|has| |#1| (-307)))) (-3368 (($ $) 235 (|has| |#1| (-1193)))) (-1540 (($ $ (-640 |#1|) (-640 |#1|)) 267 (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) 266 (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) 265 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) 264 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) 263 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) 262 (|has| |#1| (-514 (-1169) |#1|)))) (-2628 (((-767) $) 105 (|has| |#1| (-307)))) (-2309 (($ $ |#1|) 268 (|has| |#1| (-286 |#1| |#1|)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 106 (|has| |#1| (-307)))) (-2315 ((|#1| (-1257 $)) 48) ((|#1|) 61)) (-1423 (((-767) $) 150 (|has| |#1| (-349))) (((-3 (-767) "failed") $ $) 138 (|has| |#1| (-349)))) (-4202 (($ $ (-1 |#1| |#1|) (-767)) 122) (($ $ (-1 |#1| |#1|)) 121) (($ $ (-640 (-1169)) (-640 (-767))) 129 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 130 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 131 (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) 132 (|has| |#1| (-896 (-1169)))) (($ $ (-767)) 134 (-4032 (-2190 (|has| |#1| (-363)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2190 (|has| |#1| (-233)) (|has| |#1| (-363))))) (($ $) 136 (-4032 (-2190 (|has| |#1| (-363)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2190 (|has| |#1| (-233)) (|has| |#1| (-363)))))) (-3974 (((-684 |#1|) (-1257 $) (-1 |#1| |#1|)) 153 (|has| |#1| (-363)))) (-3390 (((-1165 |#1|)) 158)) (-1806 (($ $) 224 (|has| |#1| (-1193)))) (-1656 (($ $) 213 (|has| |#1| (-1193)))) (-4284 (($) 147 (|has| |#1| (-349)))) (-1784 (($ $) 223 (|has| |#1| (-1193)))) (-1630 (($ $) 214 (|has| |#1| (-1193)))) (-1759 (($ $) 222 (|has| |#1| (-1193)))) (-1608 (($ $) 215 (|has| |#1| (-1193)))) (-1880 (((-1257 |#1|) $ (-1257 $)) 51) (((-684 |#1|) (-1257 $) (-1257 $)) 50) (((-1257 |#1|) $) 67) (((-684 |#1|) (-1257 $)) 66)) (-2220 (((-1257 |#1|) $) 64) (($ (-1257 |#1|)) 63) (((-1165 |#1|) $) 170) (($ (-1165 |#1|)) 156) (((-888 (-563)) $) 258 (|has| |#1| (-611 (-888 (-563))))) (((-888 (-379)) $) 257 (|has| |#1| (-611 (-888 (-379))))) (((-169 (-379)) $) 209 (|has| |#1| (-1018))) (((-169 (-225)) $) 208 (|has| |#1| (-1018))) (((-536) $) 207 (|has| |#1| (-611 (-536))))) (-4339 (($ $) 255)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) 144 (-4032 (-2190 (|has| $ (-145)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))) (|has| |#1| (-349))))) (-1413 (($ |#1| |#1|) 254)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 38) (($ (-407 (-563))) 86 (-4032 (|has| |#1| (-363)) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) 91 (-4032 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-2779 (($ $) 143 (|has| |#1| (-349))) (((-3 $ "failed") $) 44 (-4032 (-2190 (|has| $ (-145)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))) (|has| |#1| (-145))))) (-3421 (((-1165 |#1|) $) 46)) (-1675 (((-767)) 28)) (-4315 (((-1257 $)) 68)) (-1840 (($ $) 233 (|has| |#1| (-1193)))) (-1695 (($ $) 221 (|has| |#1| (-1193)))) (-2126 (((-112) $ $) 95 (-4032 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-1817 (($ $) 232 (|has| |#1| (-1193)))) (-1667 (($ $) 220 (|has| |#1| (-1193)))) (-1862 (($ $) 231 (|has| |#1| (-1193)))) (-1722 (($ $) 219 (|has| |#1| (-1193)))) (-3237 ((|#1| $) 249 (|has| |#1| (-1193)))) (-1311 (($ $) 230 (|has| |#1| (-1193)))) (-1735 (($ $) 218 (|has| |#1| (-1193)))) (-1851 (($ $) 229 (|has| |#1| (-1193)))) (-1710 (($ $) 217 (|has| |#1| (-1193)))) (-1829 (($ $) 228 (|has| |#1| (-1193)))) (-1680 (($ $) 216 (|has| |#1| (-1193)))) (-2509 (($ $) 250 (|has| |#1| (-1054)))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ (-1 |#1| |#1|) (-767)) 124) (($ $ (-1 |#1| |#1|)) 123) (($ $ (-640 (-1169)) (-640 (-767))) 125 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 126 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 127 (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) 128 (|has| |#1| (-896 (-1169)))) (($ $ (-767)) 133 (-4032 (-2190 (|has| |#1| (-363)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2190 (|has| |#1| (-233)) (|has| |#1| (-363))))) (($ $) 135 (-4032 (-2190 (|has| |#1| (-363)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2190 (|has| |#1| (-233)) (|has| |#1| (-363)))))) (-1778 (((-112) $ $) 203 (|has| |#1| (-846)))) (-1756 (((-112) $ $) 202 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 204 (|has| |#1| (-846)))) (-1744 (((-112) $ $) 201 (|has| |#1| (-846)))) (-1837 (($ $ $) 120 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-407 (-563))) 238 (-12 (|has| |#1| (-998)) (|has| |#1| (-1193)))) (($ $ $) 236 (|has| |#1| (-1193))) (($ $ (-563)) 117 (|has| |#1| (-363)))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39) (($ (-407 (-563)) $) 119 (|has| |#1| (-363))) (($ $ (-407 (-563))) 118 (|has| |#1| (-363)))))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 17) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3363 (((-640 (-1128)) $) 9)) (-1718 (((-112) $ $) NIL)))
+(((-161) (-13 (-1076) (-10 -8 (-15 -3363 ((-640 (-1128)) $))))) (T -161))
+((-3363 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-161)))))
+(-13 (-1076) (-10 -8 (-15 -3363 ((-640 (-1128)) $))))
+((-1677 (((-112) $ $) NIL)) (-2152 (($ (-563)) 13) (($ $ $) 14)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 17)) (-1718 (((-112) $ $) 9)))
+(((-162) (-13 (-1093) (-10 -8 (-15 -2152 ($ (-563))) (-15 -2152 ($ $ $))))) (T -162))
+((-2152 (*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-162)))) (-2152 (*1 *1 *1 *1) (-5 *1 (-162))))
+(-13 (-1093) (-10 -8 (-15 -2152 ($ (-563))) (-15 -2152 ($ $ $))))
+((-2559 (((-114) (-1169)) 95)))
+(((-163) (-10 -7 (-15 -2559 ((-114) (-1169))))) (T -163))
+((-2559 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-114)) (-5 *1 (-163)))))
+(-10 -7 (-15 -2559 ((-114) (-1169))))
+((-2706 ((|#3| |#3|) 19)))
+(((-164 |#1| |#2| |#3|) (-10 -7 (-15 -2706 (|#3| |#3|))) (-1045) (-1233 |#1|) (-1233 |#2|)) (T -164))
+((-2706 (*1 *2 *2) (-12 (-4 *3 (-1045)) (-4 *4 (-1233 *3)) (-5 *1 (-164 *3 *4 *2)) (-4 *2 (-1233 *4)))))
+(-10 -7 (-15 -2706 (|#3| |#3|)))
+((-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 215)) (-1731 ((|#2| $) 95)) (-1770 (($ $) 245)) (-1618 (($ $) 239)) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 39)) (-1747 (($ $) 243)) (-1596 (($ $) 237)) (-2130 (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 |#2| "failed") $) 139)) (-2057 (((-563) $) NIL) (((-407 (-563)) $) NIL) ((|#2| $) 137)) (-3094 (($ $ $) 220)) (-1476 (((-684 (-563)) (-684 $)) NIL) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) 153) (((-684 |#2|) (-684 $)) 147)) (-2444 (($ (-1165 |#2|)) 118) (((-3 $ "failed") (-407 (-1165 |#2|))) NIL)) (-3951 (((-3 $ "failed") $) 207)) (-2327 (((-3 (-407 (-563)) "failed") $) 197)) (-2317 (((-112) $) 192)) (-2306 (((-407 (-563)) $) 195)) (-2521 (((-917)) 88)) (-3054 (($ $ $) 222)) (-2164 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 259)) (-2179 (($) 234)) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 184) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 189)) (-3975 ((|#2| $) 93)) (-4035 (((-1165 |#2|) $) 120)) (-2238 (($ (-1 |#2| |#2|) $) 101)) (-4372 (($ $) 236)) (-2433 (((-1165 |#2|) $) 119)) (-2687 (($ $) 200)) (-2178 (($) 96)) (-2075 (((-418 (-1165 $)) (-1165 $)) 87)) (-2083 (((-418 (-1165 $)) (-1165 $)) 56)) (-3012 (((-3 $ "failed") $ |#2|) 202) (((-3 $ "failed") $ $) 205)) (-3372 (($ $) 235)) (-1993 (((-767) $) 217)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 227)) (-1623 ((|#2| (-1257 $)) NIL) ((|#2|) 90)) (-4203 (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) 112) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL) (($ $ (-767)) NIL) (($ $) NIL)) (-3402 (((-1165 |#2|)) 113)) (-1758 (($ $) 244)) (-1607 (($ $) 238)) (-3759 (((-1257 |#2|) $ (-1257 $)) 127) (((-684 |#2|) (-1257 $) (-1257 $)) NIL) (((-1257 |#2|) $) 109) (((-684 |#2|) (-1257 $)) NIL)) (-2219 (((-1257 |#2|) $) NIL) (($ (-1257 |#2|)) NIL) (((-1165 |#2|) $) NIL) (($ (-1165 |#2|)) NIL) (((-888 (-563)) $) 175) (((-888 (-379)) $) 179) (((-169 (-379)) $) 165) (((-169 (-225)) $) 160) (((-536) $) 171)) (-2150 (($ $) 97)) (-1692 (((-858) $) 136) (($ (-563)) NIL) (($ |#2|) NIL) (($ (-407 (-563))) NIL) (($ $) NIL)) (-1892 (((-1165 |#2|) $) 23)) (-3914 (((-767)) 99)) (-1839 (($ $) 248)) (-1694 (($ $) 242)) (-1816 (($ $) 246)) (-1666 (($ $) 240)) (-2326 ((|#2| $) 231)) (-1828 (($ $) 247)) (-1679 (($ $) 241)) (-1462 (($ $) 155)) (-1718 (((-112) $ $) 103)) (-1743 (((-112) $ $) 191)) (-1825 (($ $) 105) (($ $ $) NIL)) (-1813 (($ $ $) 104)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-407 (-563))) 265) (($ $ $) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 111) (($ $ $) 140) (($ $ |#2|) NIL) (($ |#2| $) 107) (($ (-407 (-563)) $) NIL) (($ $ (-407 (-563))) NIL)))
+(((-165 |#1| |#2|) (-10 -8 (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -1692 (|#1| |#1|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3241 ((-2 (|:| -3245 |#1|) (|:| -4395 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -1993 ((-767) |#1|)) (-15 -3263 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -3054 (|#1| |#1| |#1|)) (-15 -3094 (|#1| |#1| |#1|)) (-15 -2687 (|#1| |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -1743 ((-112) |#1| |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -2219 ((-169 (-225)) |#1|)) (-15 -2219 ((-169 (-379)) |#1|)) (-15 -1618 (|#1| |#1|)) (-15 -1596 (|#1| |#1|)) (-15 -1607 (|#1| |#1|)) (-15 -1679 (|#1| |#1|)) (-15 -1666 (|#1| |#1|)) (-15 -1694 (|#1| |#1|)) (-15 -1758 (|#1| |#1|)) (-15 -1747 (|#1| |#1|)) (-15 -1770 (|#1| |#1|)) (-15 -1828 (|#1| |#1|)) (-15 -1816 (|#1| |#1|)) (-15 -1839 (|#1| |#1|)) (-15 -4372 (|#1| |#1|)) (-15 -3372 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -2179 (|#1|)) (-15 ** (|#1| |#1| (-407 (-563)))) (-15 -2083 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2075 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2066 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -2327 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2306 ((-407 (-563)) |#1|)) (-15 -2317 ((-112) |#1|)) (-15 -2164 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2326 (|#2| |#1|)) (-15 -1462 (|#1| |#1|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2150 (|#1| |#1|)) (-15 -2178 (|#1|)) (-15 -2219 ((-888 (-379)) |#1|)) (-15 -2219 ((-888 (-563)) |#1|)) (-15 -1812 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -1812 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -2444 ((-3 |#1| "failed") (-407 (-1165 |#2|)))) (-15 -2433 ((-1165 |#2|) |#1|)) (-15 -2219 (|#1| (-1165 |#2|))) (-15 -2444 (|#1| (-1165 |#2|))) (-15 -3402 ((-1165 |#2|))) (-15 -1476 ((-684 |#2|) (-684 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-684 (-563)) (-684 |#1|))) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2219 ((-1165 |#2|) |#1|)) (-15 -1623 (|#2|)) (-15 -2219 (|#1| (-1257 |#2|))) (-15 -2219 ((-1257 |#2|) |#1|)) (-15 -3759 ((-684 |#2|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1|)) (-15 -4035 ((-1165 |#2|) |#1|)) (-15 -1892 ((-1165 |#2|) |#1|)) (-15 -1623 (|#2| (-1257 |#1|))) (-15 -3759 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3975 (|#2| |#1|)) (-15 -1731 (|#2| |#1|)) (-15 -2521 ((-917))) (-15 -1692 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3914 ((-767))) (-15 -1692 (|#1| (-563))) (-15 ** (|#1| |#1| (-767))) (-15 -3951 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-917))) (-15 * (|#1| (-563) |#1|)) (-15 -1825 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1813 (|#1| |#1| |#1|)) (-15 -1692 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|))) (-166 |#2|) (-172)) (T -165))
+((-3914 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-767)) (-5 *1 (-165 *3 *4)) (-4 *3 (-166 *4)))) (-2521 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-917)) (-5 *1 (-165 *3 *4)) (-4 *3 (-166 *4)))) (-1623 (*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-165 *3 *2)) (-4 *3 (-166 *2)))) (-3402 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1165 *4)) (-5 *1 (-165 *3 *4)) (-4 *3 (-166 *4)))))
+(-10 -8 (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -1692 (|#1| |#1|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3241 ((-2 (|:| -3245 |#1|) (|:| -4395 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -1993 ((-767) |#1|)) (-15 -3263 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -3054 (|#1| |#1| |#1|)) (-15 -3094 (|#1| |#1| |#1|)) (-15 -2687 (|#1| |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -1743 ((-112) |#1| |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -2219 ((-169 (-225)) |#1|)) (-15 -2219 ((-169 (-379)) |#1|)) (-15 -1618 (|#1| |#1|)) (-15 -1596 (|#1| |#1|)) (-15 -1607 (|#1| |#1|)) (-15 -1679 (|#1| |#1|)) (-15 -1666 (|#1| |#1|)) (-15 -1694 (|#1| |#1|)) (-15 -1758 (|#1| |#1|)) (-15 -1747 (|#1| |#1|)) (-15 -1770 (|#1| |#1|)) (-15 -1828 (|#1| |#1|)) (-15 -1816 (|#1| |#1|)) (-15 -1839 (|#1| |#1|)) (-15 -4372 (|#1| |#1|)) (-15 -3372 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -2179 (|#1|)) (-15 ** (|#1| |#1| (-407 (-563)))) (-15 -2083 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2075 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2066 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -2327 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2306 ((-407 (-563)) |#1|)) (-15 -2317 ((-112) |#1|)) (-15 -2164 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2326 (|#2| |#1|)) (-15 -1462 (|#1| |#1|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2150 (|#1| |#1|)) (-15 -2178 (|#1|)) (-15 -2219 ((-888 (-379)) |#1|)) (-15 -2219 ((-888 (-563)) |#1|)) (-15 -1812 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -1812 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -2444 ((-3 |#1| "failed") (-407 (-1165 |#2|)))) (-15 -2433 ((-1165 |#2|) |#1|)) (-15 -2219 (|#1| (-1165 |#2|))) (-15 -2444 (|#1| (-1165 |#2|))) (-15 -3402 ((-1165 |#2|))) (-15 -1476 ((-684 |#2|) (-684 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-684 (-563)) (-684 |#1|))) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2219 ((-1165 |#2|) |#1|)) (-15 -1623 (|#2|)) (-15 -2219 (|#1| (-1257 |#2|))) (-15 -2219 ((-1257 |#2|) |#1|)) (-15 -3759 ((-684 |#2|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1|)) (-15 -4035 ((-1165 |#2|) |#1|)) (-15 -1892 ((-1165 |#2|) |#1|)) (-15 -1623 (|#2| (-1257 |#1|))) (-15 -3759 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3975 (|#2| |#1|)) (-15 -1731 (|#2| |#1|)) (-15 -2521 ((-917))) (-15 -1692 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3914 ((-767))) (-15 -1692 (|#1| (-563))) (-15 ** (|#1| |#1| (-767))) (-15 -3951 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-917))) (-15 * (|#1| (-563) |#1|)) (-15 -1825 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1813 (|#1| |#1| |#1|)) (-15 -1692 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 93 (-4034 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-3231 (($ $) 94 (-4034 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-3211 (((-112) $) 96 (-4034 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-3340 (((-684 |#1|) (-1257 $)) 47) (((-684 |#1|)) 62)) (-1731 ((|#1| $) 53)) (-1770 (($ $) 227 (|has| |#1| (-1193)))) (-1618 (($ $) 210 (|has| |#1| (-1193)))) (-1597 (((-1181 (-917) (-767)) (-563)) 146 (|has| |#1| (-349)))) (-3905 (((-3 $ "failed") $ $) 19)) (-2093 (((-418 (-1165 $)) (-1165 $)) 241 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-1798 (($ $) 113 (-4034 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-2802 (((-418 $) $) 114 (-4034 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-2185 (($ $) 240 (-12 (|has| |#1| (-998)) (|has| |#1| (-1193))))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 244 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-2003 (((-112) $ $) 104 (|has| |#1| (-307)))) (-3750 (((-767)) 87 (|has| |#1| (-368)))) (-1747 (($ $) 226 (|has| |#1| (-1193)))) (-1596 (($ $) 211 (|has| |#1| (-1193)))) (-1793 (($ $) 225 (|has| |#1| (-1193)))) (-1642 (($ $) 212 (|has| |#1| (-1193)))) (-2569 (($) 17 T CONST)) (-2130 (((-3 (-563) "failed") $) 169 (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 167 (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 164)) (-2057 (((-563) $) 168 (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) 166 (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 165)) (-3458 (($ (-1257 |#1|) (-1257 $)) 49) (($ (-1257 |#1|)) 65)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) 152 (|has| |#1| (-349)))) (-3094 (($ $ $) 108 (|has| |#1| (-307)))) (-3330 (((-684 |#1|) $ (-1257 $)) 54) (((-684 |#1|) $) 60)) (-1476 (((-684 (-563)) (-684 $)) 163 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 162 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 161) (((-684 |#1|) (-684 $)) 160)) (-2444 (($ (-1165 |#1|)) 157) (((-3 $ "failed") (-407 (-1165 |#1|))) 154 (|has| |#1| (-363)))) (-3951 (((-3 $ "failed") $) 33)) (-2488 ((|#1| $) 252)) (-2327 (((-3 (-407 (-563)) "failed") $) 245 (|has| |#1| (-545)))) (-2317 (((-112) $) 247 (|has| |#1| (-545)))) (-2306 (((-407 (-563)) $) 246 (|has| |#1| (-545)))) (-2521 (((-917)) 55)) (-1690 (($) 90 (|has| |#1| (-368)))) (-3054 (($ $ $) 107 (|has| |#1| (-307)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 102 (|has| |#1| (-307)))) (-4036 (($) 148 (|has| |#1| (-349)))) (-1656 (((-112) $) 149 (|has| |#1| (-349)))) (-3188 (($ $ (-767)) 140 (|has| |#1| (-349))) (($ $) 139 (|has| |#1| (-349)))) (-2560 (((-112) $) 115 (-4034 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-2164 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 248 (-12 (|has| |#1| (-1054)) (|has| |#1| (-1193))))) (-2179 (($) 237 (|has| |#1| (-1193)))) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 260 (|has| |#1| (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 259 (|has| |#1| (-882 (-379))))) (-1775 (((-917) $) 151 (|has| |#1| (-349))) (((-829 (-917)) $) 137 (|has| |#1| (-349)))) (-3401 (((-112) $) 31)) (-2172 (($ $ (-563)) 239 (-12 (|has| |#1| (-998)) (|has| |#1| (-1193))))) (-3975 ((|#1| $) 52)) (-1983 (((-3 $ "failed") $) 141 (|has| |#1| (-349)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 111 (|has| |#1| (-307)))) (-4035 (((-1165 |#1|) $) 45 (|has| |#1| (-363)))) (-3088 (($ $ $) 206 (|has| |#1| (-846)))) (-1776 (($ $ $) 205 (|has| |#1| (-846)))) (-2238 (($ (-1 |#1| |#1|) $) 261)) (-3990 (((-917) $) 89 (|has| |#1| (-368)))) (-4372 (($ $) 234 (|has| |#1| (-1193)))) (-2433 (((-1165 |#1|) $) 155)) (-3517 (($ (-640 $)) 100 (-4034 (|has| |#1| (-307)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (($ $ $) 99 (-4034 (|has| |#1| (-307)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-3854 (((-1151) $) 9)) (-2687 (($ $) 116 (|has| |#1| (-363)))) (-2522 (($) 142 (|has| |#1| (-349)) CONST)) (-2552 (($ (-917)) 88 (|has| |#1| (-368)))) (-2178 (($) 256)) (-2498 ((|#1| $) 253)) (-1693 (((-1113) $) 10)) (-4334 (($) 159)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 101 (-4034 (|has| |#1| (-307)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-3551 (($ (-640 $)) 98 (-4034 (|has| |#1| (-307)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (($ $ $) 97 (-4034 (|has| |#1| (-307)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) 145 (|has| |#1| (-349)))) (-2075 (((-418 (-1165 $)) (-1165 $)) 243 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-2083 (((-418 (-1165 $)) (-1165 $)) 242 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-2173 (((-418 $) $) 112 (-4034 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-307))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 109 (|has| |#1| (-307)))) (-3012 (((-3 $ "failed") $ |#1|) 251 (|has| |#1| (-555))) (((-3 $ "failed") $ $) 92 (-4034 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 103 (|has| |#1| (-307)))) (-3372 (($ $) 235 (|has| |#1| (-1193)))) (-1542 (($ $ (-640 |#1|) (-640 |#1|)) 267 (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) 266 (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) 265 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) 264 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) 263 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) 262 (|has| |#1| (-514 (-1169) |#1|)))) (-1993 (((-767) $) 105 (|has| |#1| (-307)))) (-2308 (($ $ |#1|) 268 (|has| |#1| (-286 |#1| |#1|)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 106 (|has| |#1| (-307)))) (-1623 ((|#1| (-1257 $)) 48) ((|#1|) 61)) (-3196 (((-767) $) 150 (|has| |#1| (-349))) (((-3 (-767) "failed") $ $) 138 (|has| |#1| (-349)))) (-4203 (($ $ (-1 |#1| |#1|) (-767)) 122) (($ $ (-1 |#1| |#1|)) 121) (($ $ (-640 (-1169)) (-640 (-767))) 129 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 130 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 131 (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) 132 (|has| |#1| (-896 (-1169)))) (($ $ (-767)) 134 (-4034 (-2188 (|has| |#1| (-363)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2188 (|has| |#1| (-233)) (|has| |#1| (-363))))) (($ $) 136 (-4034 (-2188 (|has| |#1| (-363)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2188 (|has| |#1| (-233)) (|has| |#1| (-363)))))) (-3388 (((-684 |#1|) (-1257 $) (-1 |#1| |#1|)) 153 (|has| |#1| (-363)))) (-3402 (((-1165 |#1|)) 158)) (-1805 (($ $) 224 (|has| |#1| (-1193)))) (-1655 (($ $) 213 (|has| |#1| (-1193)))) (-1586 (($) 147 (|has| |#1| (-349)))) (-1783 (($ $) 223 (|has| |#1| (-1193)))) (-1629 (($ $) 214 (|has| |#1| (-1193)))) (-1758 (($ $) 222 (|has| |#1| (-1193)))) (-1607 (($ $) 215 (|has| |#1| (-1193)))) (-3759 (((-1257 |#1|) $ (-1257 $)) 51) (((-684 |#1|) (-1257 $) (-1257 $)) 50) (((-1257 |#1|) $) 67) (((-684 |#1|) (-1257 $)) 66)) (-2219 (((-1257 |#1|) $) 64) (($ (-1257 |#1|)) 63) (((-1165 |#1|) $) 170) (($ (-1165 |#1|)) 156) (((-888 (-563)) $) 258 (|has| |#1| (-611 (-888 (-563))))) (((-888 (-379)) $) 257 (|has| |#1| (-611 (-888 (-379))))) (((-169 (-379)) $) 209 (|has| |#1| (-1018))) (((-169 (-225)) $) 208 (|has| |#1| (-1018))) (((-536) $) 207 (|has| |#1| (-611 (-536))))) (-2150 (($ $) 255)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) 144 (-4034 (-2188 (|has| $ (-145)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))) (|has| |#1| (-349))))) (-1413 (($ |#1| |#1|) 254)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 38) (($ (-407 (-563))) 86 (-4034 (|has| |#1| (-363)) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) 91 (-4034 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-2047 (($ $) 143 (|has| |#1| (-349))) (((-3 $ "failed") $) 44 (-4034 (-2188 (|has| $ (-145)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))) (|has| |#1| (-145))))) (-1892 (((-1165 |#1|) $) 46)) (-3914 (((-767)) 28)) (-4013 (((-1257 $)) 68)) (-1839 (($ $) 233 (|has| |#1| (-1193)))) (-1694 (($ $) 221 (|has| |#1| (-1193)))) (-3223 (((-112) $ $) 95 (-4034 (|has| |#1| (-555)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))) (-1816 (($ $) 232 (|has| |#1| (-1193)))) (-1666 (($ $) 220 (|has| |#1| (-1193)))) (-1861 (($ $) 231 (|has| |#1| (-1193)))) (-1721 (($ $) 219 (|has| |#1| (-1193)))) (-2326 ((|#1| $) 249 (|has| |#1| (-1193)))) (-1311 (($ $) 230 (|has| |#1| (-1193)))) (-1734 (($ $) 218 (|has| |#1| (-1193)))) (-1850 (($ $) 229 (|has| |#1| (-1193)))) (-1709 (($ $) 217 (|has| |#1| (-1193)))) (-1828 (($ $) 228 (|has| |#1| (-1193)))) (-1679 (($ $) 216 (|has| |#1| (-1193)))) (-1462 (($ $) 250 (|has| |#1| (-1054)))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ (-1 |#1| |#1|) (-767)) 124) (($ $ (-1 |#1| |#1|)) 123) (($ $ (-640 (-1169)) (-640 (-767))) 125 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 126 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 127 (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) 128 (|has| |#1| (-896 (-1169)))) (($ $ (-767)) 133 (-4034 (-2188 (|has| |#1| (-363)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2188 (|has| |#1| (-233)) (|has| |#1| (-363))))) (($ $) 135 (-4034 (-2188 (|has| |#1| (-363)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2188 (|has| |#1| (-233)) (|has| |#1| (-363)))))) (-1779 (((-112) $ $) 203 (|has| |#1| (-846)))) (-1754 (((-112) $ $) 202 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 204 (|has| |#1| (-846)))) (-1743 (((-112) $ $) 201 (|has| |#1| (-846)))) (-1836 (($ $ $) 120 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-407 (-563))) 238 (-12 (|has| |#1| (-998)) (|has| |#1| (-1193)))) (($ $ $) 236 (|has| |#1| (-1193))) (($ $ (-563)) 117 (|has| |#1| (-363)))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39) (($ (-407 (-563)) $) 119 (|has| |#1| (-363))) (($ $ (-407 (-563))) 118 (|has| |#1| (-363)))))
(((-166 |#1|) (-140) (-172)) (T -166))
-((-3793 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-3127 (*1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-4339 (*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-1413 (*1 *1 *2 *2) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-2499 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-2489 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-3008 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-555)))) (-2509 (*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-1054)))) (-3237 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-1193)))) (-3032 (*1 *2 *1) (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-1054)) (-4 *3 (-1193)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-2239 (*1 *2 *1) (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-112)))) (-2651 (*1 *2 *1) (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-407 (-563))))) (-3909 (*1 *2 *1) (|partial| -12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-407 (-563))))))
-(-13 (-720 |t#1| (-1165 |t#1|)) (-411 |t#1|) (-231 |t#1|) (-338 |t#1|) (-400 |t#1|) (-880 |t#1|) (-377 |t#1|) (-172) (-10 -8 (-6 -1413) (-15 -3127 ($)) (-15 -4339 ($ $)) (-15 -1413 ($ |t#1| |t#1|)) (-15 -2499 (|t#1| $)) (-15 -2489 (|t#1| $)) (-15 -3793 (|t#1| $)) (IF (|has| |t#1| (-846)) (-6 (-846)) |%noBranch|) (IF (|has| |t#1| (-555)) (PROGN (-6 (-555)) (-15 -3008 ((-3 $ "failed") $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-307)) (-6 (-307)) |%noBranch|) (IF (|has| |t#1| (-6 -4406)) (-6 -4406) |%noBranch|) (IF (|has| |t#1| (-6 -4403)) (-6 -4403) |%noBranch|) (IF (|has| |t#1| (-363)) (-6 (-363)) |%noBranch|) (IF (|has| |t#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1018)) (PROGN (-6 (-611 (-169 (-225)))) (-6 (-611 (-169 (-379))))) |%noBranch|) (IF (|has| |t#1| (-1054)) (-15 -2509 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1193)) (PROGN (-6 (-1193)) (-15 -3237 (|t#1| $)) (IF (|has| |t#1| (-998)) (-6 (-998)) |%noBranch|) (IF (|has| |t#1| (-1054)) (-15 -3032 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-545)) (PROGN (-15 -2239 ((-112) $)) (-15 -2651 ((-407 (-563)) $)) (-15 -3909 ((-3 (-407 (-563)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-905)) (IF (|has| |t#1| (-307)) (-6 (-905)) |%noBranch|) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-38 |#1|) . T) ((-38 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-35) |has| |#1| (-1193)) ((-95) |has| |#1| (-1193)) ((-102) . T) ((-111 #0# #0#) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-131) . T) ((-145) -4032 (|has| |#1| (-349)) (|has| |#1| (-145))) ((-147) |has| |#1| (-147)) ((-613 #0#) -4032 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-349)) (|has| |#1| (-363))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-610 (-858)) . T) ((-172) . T) ((-611 (-169 (-225))) |has| |#1| (-1018)) ((-611 (-169 (-379))) |has| |#1| (-1018)) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-611 (-888 (-379))) |has| |#1| (-611 (-888 (-379)))) ((-611 (-888 (-563))) |has| |#1| (-611 (-888 (-563)))) ((-611 #1=(-1165 |#1|)) . T) ((-231 |#1|) . T) ((-233) -4032 (|has| |#1| (-349)) (|has| |#1| (-233))) ((-243) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-284) |has| |#1| (-1193)) ((-286 |#1| $) |has| |#1| (-286 |#1| |#1|)) ((-290) -4032 (|has| |#1| (-555)) (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-307) -4032 (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-309 |#1|) |has| |#1| (-309 |#1|)) ((-363) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-402) |has| |#1| (-349)) ((-368) -4032 (|has| |#1| (-368)) (|has| |#1| (-349))) ((-349) |has| |#1| (-349)) ((-370 |#1| #1#) . T) ((-409 |#1| #1#) . T) ((-338 |#1|) . T) ((-377 |#1|) . T) ((-400 |#1|) . T) ((-411 |#1|) . T) ((-452) -4032 (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-493) |has| |#1| (-1193)) ((-514 (-1169) |#1|) |has| |#1| (-514 (-1169) |#1|)) ((-514 |#1| |#1|) |has| |#1| (-309 |#1|)) ((-555) -4032 (|has| |#1| (-555)) (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-643 #0#) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #0#) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-713 |#1|) . T) ((-713 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-720 |#1| #1#) . T) ((-722) . T) ((-846) |has| |#1| (-846)) ((-896 (-1169)) |has| |#1| (-896 (-1169))) ((-882 (-379)) |has| |#1| (-882 (-379))) ((-882 (-563)) |has| |#1| (-882 (-563))) ((-880 |#1|) . T) ((-905) -12 (|has| |#1| (-307)) (|has| |#1| (-905))) ((-916) -4032 (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-998) -12 (|has| |#1| (-998)) (|has| |#1| (-1193))) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1051 #0#) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-1051 |#1|) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) |has| |#1| (-349)) ((-1193) |has| |#1| (-1193)) ((-1196) |has| |#1| (-1193)) ((-1208) . T) ((-1212) -4032 (|has| |#1| (-349)) (|has| |#1| (-363)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))
-((-2174 (((-418 |#2|) |#2|) 63)))
-(((-167 |#1| |#2|) (-10 -7 (-15 -2174 ((-418 |#2|) |#2|))) (-307) (-1233 (-169 |#1|))) (T -167))
-((-2174 (*1 *2 *3) (-12 (-4 *4 (-307)) (-5 *2 (-418 *3)) (-5 *1 (-167 *4 *3)) (-4 *3 (-1233 (-169 *4))))))
-(-10 -7 (-15 -2174 ((-418 |#2|) |#2|)))
-((-2240 (((-169 |#2|) (-1 |#2| |#1|) (-169 |#1|)) 14)))
-(((-168 |#1| |#2|) (-10 -7 (-15 -2240 ((-169 |#2|) (-1 |#2| |#1|) (-169 |#1|)))) (-172) (-172)) (T -168))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-169 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-5 *2 (-169 *6)) (-5 *1 (-168 *5 *6)))))
-(-10 -7 (-15 -2240 ((-169 |#2|) (-1 |#2| |#1|) (-169 |#1|))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 33)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (-4032 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-555))))) (-4223 (($ $) NIL (-4032 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-555))))) (-3156 (((-112) $) NIL (-4032 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-555))))) (-3561 (((-684 |#1|) (-1257 $)) NIL) (((-684 |#1|)) NIL)) (-1733 ((|#1| $) NIL)) (-1771 (($ $) NIL (|has| |#1| (-1193)))) (-1619 (($ $) NIL (|has| |#1| (-1193)))) (-2752 (((-1181 (-917) (-767)) (-563)) NIL (|has| |#1| (-349)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-4335 (($ $) NIL (-4032 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-3205 (((-418 $) $) NIL (-4032 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-2186 (($ $) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1193))))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-1919 (((-112) $ $) NIL (|has| |#1| (-307)))) (-3749 (((-767)) NIL (|has| |#1| (-368)))) (-1748 (($ $) NIL (|has| |#1| (-1193)))) (-1597 (($ $) NIL (|has| |#1| (-1193)))) (-1794 (($ $) NIL (|has| |#1| (-1193)))) (-1643 (($ $) NIL (|has| |#1| (-1193)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2058 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-3937 (($ (-1257 |#1|) (-1257 $)) NIL) (($ (-1257 |#1|)) NIL)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-349)))) (-3090 (($ $ $) NIL (|has| |#1| (-307)))) (-3914 (((-684 |#1|) $ (-1257 $)) NIL) (((-684 |#1|) $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-2444 (($ (-1165 |#1|)) NIL) (((-3 $ "failed") (-407 (-1165 |#1|))) NIL (|has| |#1| (-363)))) (-3400 (((-3 $ "failed") $) NIL)) (-2489 ((|#1| $) 13)) (-3909 (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-545)))) (-2239 (((-112) $) NIL (|has| |#1| (-545)))) (-2651 (((-407 (-563)) $) NIL (|has| |#1| (-545)))) (-2522 (((-917)) NIL)) (-1691 (($) NIL (|has| |#1| (-368)))) (-3050 (($ $ $) NIL (|has| |#1| (-307)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#1| (-307)))) (-1571 (($) NIL (|has| |#1| (-349)))) (-2366 (((-112) $) NIL (|has| |#1| (-349)))) (-1637 (($ $ (-767)) NIL (|has| |#1| (-349))) (($ $) NIL (|has| |#1| (-349)))) (-2468 (((-112) $) NIL (-4032 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-3032 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-1054)) (|has| |#1| (-1193))))) (-2180 (($) NIL (|has| |#1| (-1193)))) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| |#1| (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| |#1| (-882 (-379))))) (-3254 (((-917) $) NIL (|has| |#1| (-349))) (((-829 (-917)) $) NIL (|has| |#1| (-349)))) (-3827 (((-112) $) 35)) (-1645 (($ $ (-563)) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1193))))) (-3793 ((|#1| $) 46)) (-2408 (((-3 $ "failed") $) NIL (|has| |#1| (-349)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-307)))) (-3941 (((-1165 |#1|) $) NIL (|has| |#1| (-363)))) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-1476 (((-917) $) NIL (|has| |#1| (-368)))) (-4371 (($ $) NIL (|has| |#1| (-1193)))) (-2433 (((-1165 |#1|) $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-307))) (($ $ $) NIL (|has| |#1| (-307)))) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL (|has| |#1| (-363)))) (-2523 (($) NIL (|has| |#1| (-349)) CONST)) (-2555 (($ (-917)) NIL (|has| |#1| (-368)))) (-3127 (($) NIL)) (-2499 ((|#1| $) 15)) (-1694 (((-1113) $) NIL)) (-4333 (($) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-307)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-307))) (($ $ $) NIL (|has| |#1| (-307)))) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) NIL (|has| |#1| (-349)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-2174 (((-418 $) $) NIL (-4032 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-307))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-307)))) (-3008 (((-3 $ "failed") $ |#1|) 44 (|has| |#1| (-555))) (((-3 $ "failed") $ $) 47 (-4032 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-555))))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-307)))) (-3368 (($ $) NIL (|has| |#1| (-1193)))) (-1540 (($ $ (-640 |#1|) (-640 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) NIL (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-514 (-1169) |#1|)))) (-2628 (((-767) $) NIL (|has| |#1| (-307)))) (-2309 (($ $ |#1|) NIL (|has| |#1| (-286 |#1| |#1|)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-307)))) (-2315 ((|#1| (-1257 $)) NIL) ((|#1|) NIL)) (-1423 (((-767) $) NIL (|has| |#1| (-349))) (((-3 (-767) "failed") $ $) NIL (|has| |#1| (-349)))) (-4202 (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-3974 (((-684 |#1|) (-1257 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-363)))) (-3390 (((-1165 |#1|)) NIL)) (-1806 (($ $) NIL (|has| |#1| (-1193)))) (-1656 (($ $) NIL (|has| |#1| (-1193)))) (-4284 (($) NIL (|has| |#1| (-349)))) (-1784 (($ $) NIL (|has| |#1| (-1193)))) (-1630 (($ $) NIL (|has| |#1| (-1193)))) (-1759 (($ $) NIL (|has| |#1| (-1193)))) (-1608 (($ $) NIL (|has| |#1| (-1193)))) (-1880 (((-1257 |#1|) $ (-1257 $)) NIL) (((-684 |#1|) (-1257 $) (-1257 $)) NIL) (((-1257 |#1|) $) NIL) (((-684 |#1|) (-1257 $)) NIL)) (-2220 (((-1257 |#1|) $) NIL) (($ (-1257 |#1|)) NIL) (((-1165 |#1|) $) NIL) (($ (-1165 |#1|)) NIL) (((-888 (-563)) $) NIL (|has| |#1| (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| |#1| (-611 (-888 (-379))))) (((-169 (-379)) $) NIL (|has| |#1| (-1018))) (((-169 (-225)) $) NIL (|has| |#1| (-1018))) (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-4339 (($ $) 45)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-349))))) (-1413 (($ |#1| |#1|) 37)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) 36) (($ (-407 (-563))) NIL (-4032 (|has| |#1| (-363)) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (-4032 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-555))))) (-2779 (($ $) NIL (|has| |#1| (-349))) (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-3421 (((-1165 |#1|) $) NIL)) (-1675 (((-767)) NIL)) (-4315 (((-1257 $)) NIL)) (-1840 (($ $) NIL (|has| |#1| (-1193)))) (-1695 (($ $) NIL (|has| |#1| (-1193)))) (-2126 (((-112) $ $) NIL (-4032 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-555))))) (-1817 (($ $) NIL (|has| |#1| (-1193)))) (-1667 (($ $) NIL (|has| |#1| (-1193)))) (-1862 (($ $) NIL (|has| |#1| (-1193)))) (-1722 (($ $) NIL (|has| |#1| (-1193)))) (-3237 ((|#1| $) NIL (|has| |#1| (-1193)))) (-1311 (($ $) NIL (|has| |#1| (-1193)))) (-1735 (($ $) NIL (|has| |#1| (-1193)))) (-1851 (($ $) NIL (|has| |#1| (-1193)))) (-1710 (($ $) NIL (|has| |#1| (-1193)))) (-1829 (($ $) NIL (|has| |#1| (-1193)))) (-1680 (($ $) NIL (|has| |#1| (-1193)))) (-2509 (($ $) NIL (|has| |#1| (-1054)))) (-2241 (($) 28 T CONST)) (-2254 (($) 30 T CONST)) (-3741 (((-1151) $) 23 (|has| |#1| (-824))) (((-1151) $ (-112)) 25 (|has| |#1| (-824))) (((-1262) (-818) $) 26 (|has| |#1| (-824))) (((-1262) (-818) $ (-112)) 27 (|has| |#1| (-824)))) (-3209 (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1837 (($ $ $) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) 39)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-407 (-563))) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1193)))) (($ $ $) NIL (|has| |#1| (-1193))) (($ $ (-563)) NIL (|has| |#1| (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 42) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-407 (-563)) $) NIL (|has| |#1| (-363))) (($ $ (-407 (-563))) NIL (|has| |#1| (-363)))))
+((-3975 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-2178 (*1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-2150 (*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-1413 (*1 *1 *2 *2) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-2498 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-2488 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-3012 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-555)))) (-1462 (*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-1054)))) (-2326 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-1193)))) (-2164 (*1 *2 *1) (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-1054)) (-4 *3 (-1193)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-2317 (*1 *2 *1) (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-112)))) (-2306 (*1 *2 *1) (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-407 (-563))))) (-2327 (*1 *2 *1) (|partial| -12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-407 (-563))))))
+(-13 (-720 |t#1| (-1165 |t#1|)) (-411 |t#1|) (-231 |t#1|) (-338 |t#1|) (-400 |t#1|) (-880 |t#1|) (-377 |t#1|) (-172) (-10 -8 (-6 -1413) (-15 -2178 ($)) (-15 -2150 ($ $)) (-15 -1413 ($ |t#1| |t#1|)) (-15 -2498 (|t#1| $)) (-15 -2488 (|t#1| $)) (-15 -3975 (|t#1| $)) (IF (|has| |t#1| (-846)) (-6 (-846)) |%noBranch|) (IF (|has| |t#1| (-555)) (PROGN (-6 (-555)) (-15 -3012 ((-3 $ "failed") $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-307)) (-6 (-307)) |%noBranch|) (IF (|has| |t#1| (-6 -4407)) (-6 -4407) |%noBranch|) (IF (|has| |t#1| (-6 -4404)) (-6 -4404) |%noBranch|) (IF (|has| |t#1| (-363)) (-6 (-363)) |%noBranch|) (IF (|has| |t#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1018)) (PROGN (-6 (-611 (-169 (-225)))) (-6 (-611 (-169 (-379))))) |%noBranch|) (IF (|has| |t#1| (-1054)) (-15 -1462 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1193)) (PROGN (-6 (-1193)) (-15 -2326 (|t#1| $)) (IF (|has| |t#1| (-998)) (-6 (-998)) |%noBranch|) (IF (|has| |t#1| (-1054)) (-15 -2164 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-545)) (PROGN (-15 -2317 ((-112) $)) (-15 -2306 ((-407 (-563)) $)) (-15 -2327 ((-3 (-407 (-563)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-905)) (IF (|has| |t#1| (-307)) (-6 (-905)) |%noBranch|) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-38 |#1|) . T) ((-38 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-35) |has| |#1| (-1193)) ((-95) |has| |#1| (-1193)) ((-102) . T) ((-111 #0# #0#) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-131) . T) ((-145) -4034 (|has| |#1| (-349)) (|has| |#1| (-145))) ((-147) |has| |#1| (-147)) ((-613 #0#) -4034 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-349)) (|has| |#1| (-363))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-610 (-858)) . T) ((-172) . T) ((-611 (-169 (-225))) |has| |#1| (-1018)) ((-611 (-169 (-379))) |has| |#1| (-1018)) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-611 (-888 (-379))) |has| |#1| (-611 (-888 (-379)))) ((-611 (-888 (-563))) |has| |#1| (-611 (-888 (-563)))) ((-611 #1=(-1165 |#1|)) . T) ((-231 |#1|) . T) ((-233) -4034 (|has| |#1| (-349)) (|has| |#1| (-233))) ((-243) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-284) |has| |#1| (-1193)) ((-286 |#1| $) |has| |#1| (-286 |#1| |#1|)) ((-290) -4034 (|has| |#1| (-555)) (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-307) -4034 (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-309 |#1|) |has| |#1| (-309 |#1|)) ((-363) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-402) |has| |#1| (-349)) ((-368) -4034 (|has| |#1| (-368)) (|has| |#1| (-349))) ((-349) |has| |#1| (-349)) ((-370 |#1| #1#) . T) ((-409 |#1| #1#) . T) ((-338 |#1|) . T) ((-377 |#1|) . T) ((-400 |#1|) . T) ((-411 |#1|) . T) ((-452) -4034 (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-493) |has| |#1| (-1193)) ((-514 (-1169) |#1|) |has| |#1| (-514 (-1169) |#1|)) ((-514 |#1| |#1|) |has| |#1| (-309 |#1|)) ((-555) -4034 (|has| |#1| (-555)) (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-643 #0#) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #0#) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-713 |#1|) . T) ((-713 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-720 |#1| #1#) . T) ((-722) . T) ((-846) |has| |#1| (-846)) ((-896 (-1169)) |has| |#1| (-896 (-1169))) ((-882 (-379)) |has| |#1| (-882 (-379))) ((-882 (-563)) |has| |#1| (-882 (-563))) ((-880 |#1|) . T) ((-905) -12 (|has| |#1| (-307)) (|has| |#1| (-905))) ((-916) -4034 (|has| |#1| (-349)) (|has| |#1| (-363)) (|has| |#1| (-307))) ((-998) -12 (|has| |#1| (-998)) (|has| |#1| (-1193))) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1051 #0#) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-1051 |#1|) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) |has| |#1| (-349)) ((-1193) |has| |#1| (-1193)) ((-1196) |has| |#1| (-1193)) ((-1208) . T) ((-1212) -4034 (|has| |#1| (-349)) (|has| |#1| (-363)) (-12 (|has| |#1| (-307)) (|has| |#1| (-905)))))
+((-2173 (((-418 |#2|) |#2|) 63)))
+(((-167 |#1| |#2|) (-10 -7 (-15 -2173 ((-418 |#2|) |#2|))) (-307) (-1233 (-169 |#1|))) (T -167))
+((-2173 (*1 *2 *3) (-12 (-4 *4 (-307)) (-5 *2 (-418 *3)) (-5 *1 (-167 *4 *3)) (-4 *3 (-1233 (-169 *4))))))
+(-10 -7 (-15 -2173 ((-418 |#2|) |#2|)))
+((-2238 (((-169 |#2|) (-1 |#2| |#1|) (-169 |#1|)) 14)))
+(((-168 |#1| |#2|) (-10 -7 (-15 -2238 ((-169 |#2|) (-1 |#2| |#1|) (-169 |#1|)))) (-172) (-172)) (T -168))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-169 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-5 *2 (-169 *6)) (-5 *1 (-168 *5 *6)))))
+(-10 -7 (-15 -2238 ((-169 |#2|) (-1 |#2| |#1|) (-169 |#1|))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 33)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (-4034 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-555))))) (-3231 (($ $) NIL (-4034 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-555))))) (-3211 (((-112) $) NIL (-4034 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-555))))) (-3340 (((-684 |#1|) (-1257 $)) NIL) (((-684 |#1|)) NIL)) (-1731 ((|#1| $) NIL)) (-1770 (($ $) NIL (|has| |#1| (-1193)))) (-1618 (($ $) NIL (|has| |#1| (-1193)))) (-1597 (((-1181 (-917) (-767)) (-563)) NIL (|has| |#1| (-349)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-1798 (($ $) NIL (-4034 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-2802 (((-418 $) $) NIL (-4034 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-2185 (($ $) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1193))))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-2003 (((-112) $ $) NIL (|has| |#1| (-307)))) (-3750 (((-767)) NIL (|has| |#1| (-368)))) (-1747 (($ $) NIL (|has| |#1| (-1193)))) (-1596 (($ $) NIL (|has| |#1| (-1193)))) (-1793 (($ $) NIL (|has| |#1| (-1193)))) (-1642 (($ $) NIL (|has| |#1| (-1193)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2057 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-3458 (($ (-1257 |#1|) (-1257 $)) NIL) (($ (-1257 |#1|)) NIL)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-349)))) (-3094 (($ $ $) NIL (|has| |#1| (-307)))) (-3330 (((-684 |#1|) $ (-1257 $)) NIL) (((-684 |#1|) $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-2444 (($ (-1165 |#1|)) NIL) (((-3 $ "failed") (-407 (-1165 |#1|))) NIL (|has| |#1| (-363)))) (-3951 (((-3 $ "failed") $) NIL)) (-2488 ((|#1| $) 13)) (-2327 (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-545)))) (-2317 (((-112) $) NIL (|has| |#1| (-545)))) (-2306 (((-407 (-563)) $) NIL (|has| |#1| (-545)))) (-2521 (((-917)) NIL)) (-1690 (($) NIL (|has| |#1| (-368)))) (-3054 (($ $ $) NIL (|has| |#1| (-307)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#1| (-307)))) (-4036 (($) NIL (|has| |#1| (-349)))) (-1656 (((-112) $) NIL (|has| |#1| (-349)))) (-3188 (($ $ (-767)) NIL (|has| |#1| (-349))) (($ $) NIL (|has| |#1| (-349)))) (-2560 (((-112) $) NIL (-4034 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-2164 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-1054)) (|has| |#1| (-1193))))) (-2179 (($) NIL (|has| |#1| (-1193)))) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| |#1| (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| |#1| (-882 (-379))))) (-1775 (((-917) $) NIL (|has| |#1| (-349))) (((-829 (-917)) $) NIL (|has| |#1| (-349)))) (-3401 (((-112) $) 35)) (-2172 (($ $ (-563)) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1193))))) (-3975 ((|#1| $) 46)) (-1983 (((-3 $ "failed") $) NIL (|has| |#1| (-349)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-307)))) (-4035 (((-1165 |#1|) $) NIL (|has| |#1| (-363)))) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-3990 (((-917) $) NIL (|has| |#1| (-368)))) (-4372 (($ $) NIL (|has| |#1| (-1193)))) (-2433 (((-1165 |#1|) $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-307))) (($ $ $) NIL (|has| |#1| (-307)))) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL (|has| |#1| (-363)))) (-2522 (($) NIL (|has| |#1| (-349)) CONST)) (-2552 (($ (-917)) NIL (|has| |#1| (-368)))) (-2178 (($) NIL)) (-2498 ((|#1| $) 15)) (-1693 (((-1113) $) NIL)) (-4334 (($) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-307)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-307))) (($ $ $) NIL (|has| |#1| (-307)))) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) NIL (|has| |#1| (-349)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#1| (-307)) (|has| |#1| (-905))))) (-2173 (((-418 $) $) NIL (-4034 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-363))))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-307))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-307)))) (-3012 (((-3 $ "failed") $ |#1|) 44 (|has| |#1| (-555))) (((-3 $ "failed") $ $) 47 (-4034 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-555))))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-307)))) (-3372 (($ $) NIL (|has| |#1| (-1193)))) (-1542 (($ $ (-640 |#1|) (-640 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) NIL (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-514 (-1169) |#1|)))) (-1993 (((-767) $) NIL (|has| |#1| (-307)))) (-2308 (($ $ |#1|) NIL (|has| |#1| (-286 |#1| |#1|)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-307)))) (-1623 ((|#1| (-1257 $)) NIL) ((|#1|) NIL)) (-3196 (((-767) $) NIL (|has| |#1| (-349))) (((-3 (-767) "failed") $ $) NIL (|has| |#1| (-349)))) (-4203 (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-3388 (((-684 |#1|) (-1257 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-363)))) (-3402 (((-1165 |#1|)) NIL)) (-1805 (($ $) NIL (|has| |#1| (-1193)))) (-1655 (($ $) NIL (|has| |#1| (-1193)))) (-1586 (($) NIL (|has| |#1| (-349)))) (-1783 (($ $) NIL (|has| |#1| (-1193)))) (-1629 (($ $) NIL (|has| |#1| (-1193)))) (-1758 (($ $) NIL (|has| |#1| (-1193)))) (-1607 (($ $) NIL (|has| |#1| (-1193)))) (-3759 (((-1257 |#1|) $ (-1257 $)) NIL) (((-684 |#1|) (-1257 $) (-1257 $)) NIL) (((-1257 |#1|) $) NIL) (((-684 |#1|) (-1257 $)) NIL)) (-2219 (((-1257 |#1|) $) NIL) (($ (-1257 |#1|)) NIL) (((-1165 |#1|) $) NIL) (($ (-1165 |#1|)) NIL) (((-888 (-563)) $) NIL (|has| |#1| (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| |#1| (-611 (-888 (-379))))) (((-169 (-379)) $) NIL (|has| |#1| (-1018))) (((-169 (-225)) $) NIL (|has| |#1| (-1018))) (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-2150 (($ $) 45)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-349))))) (-1413 (($ |#1| |#1|) 37)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) 36) (($ (-407 (-563))) NIL (-4034 (|has| |#1| (-363)) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (-4034 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-555))))) (-2047 (($ $) NIL (|has| |#1| (-349))) (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-1892 (((-1165 |#1|) $) NIL)) (-3914 (((-767)) NIL)) (-4013 (((-1257 $)) NIL)) (-1839 (($ $) NIL (|has| |#1| (-1193)))) (-1694 (($ $) NIL (|has| |#1| (-1193)))) (-3223 (((-112) $ $) NIL (-4034 (-12 (|has| |#1| (-307)) (|has| |#1| (-905))) (|has| |#1| (-555))))) (-1816 (($ $) NIL (|has| |#1| (-1193)))) (-1666 (($ $) NIL (|has| |#1| (-1193)))) (-1861 (($ $) NIL (|has| |#1| (-1193)))) (-1721 (($ $) NIL (|has| |#1| (-1193)))) (-2326 ((|#1| $) NIL (|has| |#1| (-1193)))) (-1311 (($ $) NIL (|has| |#1| (-1193)))) (-1734 (($ $) NIL (|has| |#1| (-1193)))) (-1850 (($ $) NIL (|has| |#1| (-1193)))) (-1709 (($ $) NIL (|has| |#1| (-1193)))) (-1828 (($ $) NIL (|has| |#1| (-1193)))) (-1679 (($ $) NIL (|has| |#1| (-1193)))) (-1462 (($ $) NIL (|has| |#1| (-1054)))) (-2239 (($) 28 T CONST)) (-2253 (($) 30 T CONST)) (-2742 (((-1151) $) 23 (|has| |#1| (-824))) (((-1151) $ (-112)) 25 (|has| |#1| (-824))) (((-1262) (-818) $) 26 (|has| |#1| (-824))) (((-1262) (-818) $ (-112)) 27 (|has| |#1| (-824)))) (-3213 (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1836 (($ $ $) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) 39)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-407 (-563))) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1193)))) (($ $ $) NIL (|has| |#1| (-1193))) (($ $ (-563)) NIL (|has| |#1| (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 42) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-407 (-563)) $) NIL (|has| |#1| (-363))) (($ $ (-407 (-563))) NIL (|has| |#1| (-363)))))
(((-169 |#1|) (-13 (-166 |#1|) (-10 -7 (IF (|has| |#1| (-824)) (-6 (-824)) |%noBranch|))) (-172)) (T -169))
NIL
(-13 (-166 |#1|) (-10 -7 (IF (|has| |#1| (-824)) (-6 (-824)) |%noBranch|)))
-((-2220 (((-888 |#1|) |#3|) 20)))
-(((-170 |#1| |#2| |#3|) (-10 -7 (-15 -2220 ((-888 |#1|) |#3|))) (-1093) (-13 (-611 (-888 |#1|)) (-172)) (-166 |#2|)) (T -170))
-((-2220 (*1 *2 *3) (-12 (-4 *5 (-13 (-611 *2) (-172))) (-5 *2 (-888 *4)) (-5 *1 (-170 *4 *5 *3)) (-4 *4 (-1093)) (-4 *3 (-166 *5)))))
-(-10 -7 (-15 -2220 ((-888 |#1|) |#3|)))
-((-1677 (((-112) $ $) NIL)) (-2593 (((-112) $) 9)) (-2849 (((-112) $ (-112)) 11)) (-1566 (($) 12)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1872 (($ $) 13)) (-1693 (((-858) $) 17)) (-1877 (((-112) $) 8)) (-1442 (((-112) $ (-112)) 10)) (-1718 (((-112) $ $) NIL)))
-(((-171) (-13 (-1093) (-10 -8 (-15 -1566 ($)) (-15 -1877 ((-112) $)) (-15 -2593 ((-112) $)) (-15 -1442 ((-112) $ (-112))) (-15 -2849 ((-112) $ (-112))) (-15 -1872 ($ $))))) (T -171))
-((-1566 (*1 *1) (-5 *1 (-171))) (-1877 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-2593 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-1442 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-2849 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-1872 (*1 *1 *1) (-5 *1 (-171))))
-(-13 (-1093) (-10 -8 (-15 -1566 ($)) (-15 -1877 ((-112) $)) (-15 -2593 ((-112) $)) (-15 -1442 ((-112) $ (-112))) (-15 -2849 ((-112) $ (-112))) (-15 -1872 ($ $))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ (-563)) 29)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-2219 (((-888 |#1|) |#3|) 20)))
+(((-170 |#1| |#2| |#3|) (-10 -7 (-15 -2219 ((-888 |#1|) |#3|))) (-1093) (-13 (-611 (-888 |#1|)) (-172)) (-166 |#2|)) (T -170))
+((-2219 (*1 *2 *3) (-12 (-4 *5 (-13 (-611 *2) (-172))) (-5 *2 (-888 *4)) (-5 *1 (-170 *4 *5 *3)) (-4 *4 (-1093)) (-4 *3 (-166 *5)))))
+(-10 -7 (-15 -2219 ((-888 |#1|) |#3|)))
+((-1677 (((-112) $ $) NIL)) (-2202 (((-112) $) 9)) (-2190 (((-112) $ (-112)) 11)) (-1565 (($) 12)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1870 (($ $) 13)) (-1692 (((-858) $) 17)) (-2349 (((-112) $) 8)) (-1442 (((-112) $ (-112)) 10)) (-1718 (((-112) $ $) NIL)))
+(((-171) (-13 (-1093) (-10 -8 (-15 -1565 ($)) (-15 -2349 ((-112) $)) (-15 -2202 ((-112) $)) (-15 -1442 ((-112) $ (-112))) (-15 -2190 ((-112) $ (-112))) (-15 -1870 ($ $))))) (T -171))
+((-1565 (*1 *1) (-5 *1 (-171))) (-2349 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-2202 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-1442 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-2190 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-1870 (*1 *1 *1) (-5 *1 (-171))))
+(-13 (-1093) (-10 -8 (-15 -1565 ($)) (-15 -2349 ((-112) $)) (-15 -2202 ((-112) $)) (-15 -1442 ((-112) $ (-112))) (-15 -2190 ((-112) $ (-112))) (-15 -1870 ($ $))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ (-563)) 29)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-172) (-140)) (T -172))
NIL
-(-13 (-1045) (-111 $ $) (-10 -7 (-6 (-4409 "*"))))
+(-13 (-1045) (-111 $ $) (-10 -7 (-6 (-4410 "*"))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-613 (-563)) . T) ((-610 (-858)) . T) ((-643 $) . T) ((-722) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-3004 (($ $) 6)))
+((-1895 (($ $) 6)))
(((-173) (-140)) (T -173))
-((-3004 (*1 *1 *1) (-4 *1 (-173))))
-(-13 (-10 -8 (-15 -3004 ($ $))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3401 ((|#1| $) 74)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-4239 (($) NIL T CONST)) (-3090 (($ $ $) NIL)) (-3221 (($ $) 19)) (-3204 (($ |#1| (-1149 |#1|)) 47)) (-3400 (((-3 $ "failed") $) 116)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-1357 (((-1149 |#1|) $) 81)) (-4095 (((-1149 |#1|) $) 78)) (-2541 (((-1149 |#1|) $) 79)) (-3827 (((-112) $) NIL)) (-3153 (((-1149 |#1|) $) 87)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3513 (($ (-640 $)) NIL) (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ (-640 $)) NIL) (($ $ $) NIL)) (-2174 (((-418 $) $) NIL)) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL)) (-3320 (($ $ (-563)) 90)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-2997 (((-1149 |#1|) $) 88)) (-4280 (((-1149 (-407 |#1|)) $) 14)) (-2192 (($ (-407 |#1|)) 17) (($ |#1| (-1149 |#1|) (-1149 |#1|)) 37)) (-1741 (($ $) 92)) (-1693 (((-858) $) 126) (($ (-563)) 50) (($ |#1|) 51) (($ (-407 |#1|)) 35) (($ (-407 (-563))) NIL) (($ $) NIL)) (-1675 (((-767)) 63)) (-2126 (((-112) $ $) NIL)) (-3810 (((-1149 (-407 |#1|)) $) 18)) (-2241 (($) 25 T CONST)) (-2254 (($) 28 T CONST)) (-1718 (((-112) $ $) 34)) (-1837 (($ $ $) 114)) (-1826 (($ $) 105) (($ $ $) 102)) (-1814 (($ $ $) 100)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 112) (($ $ $) 107) (($ $ |#1|) NIL) (($ |#1| $) 109) (($ (-407 |#1|) $) 110) (($ $ (-407 |#1|)) NIL) (($ (-407 (-563)) $) NIL) (($ $ (-407 (-563))) NIL)))
-(((-174 |#1|) (-13 (-38 |#1|) (-38 (-407 |#1|)) (-363) (-10 -8 (-15 -2192 ($ (-407 |#1|))) (-15 -2192 ($ |#1| (-1149 |#1|) (-1149 |#1|))) (-15 -3204 ($ |#1| (-1149 |#1|))) (-15 -4095 ((-1149 |#1|) $)) (-15 -2541 ((-1149 |#1|) $)) (-15 -1357 ((-1149 |#1|) $)) (-15 -3401 (|#1| $)) (-15 -3221 ($ $)) (-15 -3810 ((-1149 (-407 |#1|)) $)) (-15 -4280 ((-1149 (-407 |#1|)) $)) (-15 -3153 ((-1149 |#1|) $)) (-15 -2997 ((-1149 |#1|) $)) (-15 -3320 ($ $ (-563))) (-15 -1741 ($ $)))) (-307)) (T -174))
-((-2192 (*1 *1 *2) (-12 (-5 *2 (-407 *3)) (-4 *3 (-307)) (-5 *1 (-174 *3)))) (-2192 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1149 *2)) (-4 *2 (-307)) (-5 *1 (-174 *2)))) (-3204 (*1 *1 *2 *3) (-12 (-5 *3 (-1149 *2)) (-4 *2 (-307)) (-5 *1 (-174 *2)))) (-4095 (*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-2541 (*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-1357 (*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-3401 (*1 *2 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-307)))) (-3221 (*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-307)))) (-3810 (*1 *2 *1) (-12 (-5 *2 (-1149 (-407 *3))) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-4280 (*1 *2 *1) (-12 (-5 *2 (-1149 (-407 *3))) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-3153 (*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-2997 (*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-3320 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-1741 (*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-307)))))
-(-13 (-38 |#1|) (-38 (-407 |#1|)) (-363) (-10 -8 (-15 -2192 ($ (-407 |#1|))) (-15 -2192 ($ |#1| (-1149 |#1|) (-1149 |#1|))) (-15 -3204 ($ |#1| (-1149 |#1|))) (-15 -4095 ((-1149 |#1|) $)) (-15 -2541 ((-1149 |#1|) $)) (-15 -1357 ((-1149 |#1|) $)) (-15 -3401 (|#1| $)) (-15 -3221 ($ $)) (-15 -3810 ((-1149 (-407 |#1|)) $)) (-15 -4280 ((-1149 (-407 |#1|)) $)) (-15 -3153 ((-1149 |#1|) $)) (-15 -2997 ((-1149 |#1|) $)) (-15 -3320 ($ $ (-563))) (-15 -1741 ($ $))))
-((-2578 (($ (-109) $) 13)) (-2087 (((-3 (-109) "failed") (-1169) $) 12)) (-1693 (((-858) $) 16)) (-2931 (((-640 (-109)) $) 8)))
-(((-175) (-13 (-610 (-858)) (-10 -8 (-15 -2931 ((-640 (-109)) $)) (-15 -2578 ($ (-109) $)) (-15 -2087 ((-3 (-109) "failed") (-1169) $))))) (T -175))
-((-2931 (*1 *2 *1) (-12 (-5 *2 (-640 (-109))) (-5 *1 (-175)))) (-2578 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-175)))) (-2087 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-109)) (-5 *1 (-175)))))
-(-13 (-610 (-858)) (-10 -8 (-15 -2931 ((-640 (-109)) $)) (-15 -2578 ($ (-109) $)) (-15 -2087 ((-3 (-109) "failed") (-1169) $))))
-((-3648 (((-1 (-939 |#1|) (-939 |#1|)) |#1|) 40)) (-3910 (((-939 |#1|) (-939 |#1|)) 19)) (-1547 (((-1 (-939 |#1|) (-939 |#1|)) |#1|) 36)) (-3727 (((-939 |#1|) (-939 |#1|)) 17)) (-3412 (((-939 |#1|) (-939 |#1|)) 25)) (-2467 (((-939 |#1|) (-939 |#1|)) 24)) (-3078 (((-939 |#1|) (-939 |#1|)) 23)) (-2870 (((-1 (-939 |#1|) (-939 |#1|)) |#1|) 37)) (-3275 (((-1 (-939 |#1|) (-939 |#1|)) |#1|) 35)) (-2621 (((-1 (-939 |#1|) (-939 |#1|)) |#1|) 34)) (-2608 (((-939 |#1|) (-939 |#1|)) 18)) (-3603 (((-1 (-939 |#1|) (-939 |#1|)) |#1| |#1|) 43)) (-2195 (((-939 |#1|) (-939 |#1|)) 8)) (-3834 (((-1 (-939 |#1|) (-939 |#1|)) |#1|) 39)) (-2902 (((-1 (-939 |#1|) (-939 |#1|)) |#1|) 38)))
-(((-176 |#1|) (-10 -7 (-15 -2195 ((-939 |#1|) (-939 |#1|))) (-15 -3727 ((-939 |#1|) (-939 |#1|))) (-15 -2608 ((-939 |#1|) (-939 |#1|))) (-15 -3910 ((-939 |#1|) (-939 |#1|))) (-15 -3078 ((-939 |#1|) (-939 |#1|))) (-15 -2467 ((-939 |#1|) (-939 |#1|))) (-15 -3412 ((-939 |#1|) (-939 |#1|))) (-15 -2621 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -3275 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -1547 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2870 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2902 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -3834 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -3648 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -3603 ((-1 (-939 |#1|) (-939 |#1|)) |#1| |#1|))) (-13 (-363) (-1193) (-998))) (T -176))
-((-3603 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-3648 (*1 *2 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-3834 (*1 *2 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-2902 (*1 *2 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-2870 (*1 *2 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-1547 (*1 *2 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-3275 (*1 *2 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-2621 (*1 *2 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-3412 (*1 *2 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998))) (-5 *1 (-176 *3)))) (-2467 (*1 *2 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998))) (-5 *1 (-176 *3)))) (-3078 (*1 *2 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998))) (-5 *1 (-176 *3)))) (-3910 (*1 *2 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998))) (-5 *1 (-176 *3)))) (-2608 (*1 *2 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998))) (-5 *1 (-176 *3)))) (-3727 (*1 *2 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998))) (-5 *1 (-176 *3)))) (-2195 (*1 *2 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998))) (-5 *1 (-176 *3)))))
-(-10 -7 (-15 -2195 ((-939 |#1|) (-939 |#1|))) (-15 -3727 ((-939 |#1|) (-939 |#1|))) (-15 -2608 ((-939 |#1|) (-939 |#1|))) (-15 -3910 ((-939 |#1|) (-939 |#1|))) (-15 -3078 ((-939 |#1|) (-939 |#1|))) (-15 -2467 ((-939 |#1|) (-939 |#1|))) (-15 -3412 ((-939 |#1|) (-939 |#1|))) (-15 -2621 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -3275 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -1547 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2870 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2902 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -3834 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -3648 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -3603 ((-1 (-939 |#1|) (-939 |#1|)) |#1| |#1|)))
-((-3421 ((|#2| |#3|) 27)))
-(((-177 |#1| |#2| |#3|) (-10 -7 (-15 -3421 (|#2| |#3|))) (-172) (-1233 |#1|) (-720 |#1| |#2|)) (T -177))
-((-3421 (*1 *2 *3) (-12 (-4 *4 (-172)) (-4 *2 (-1233 *4)) (-5 *1 (-177 *4 *2 *3)) (-4 *3 (-720 *4 *2)))))
-(-10 -7 (-15 -3421 (|#2| |#3|)))
-((-3787 (((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)) 45 (|has| (-948 |#2|) (-882 |#1|)))))
-(((-178 |#1| |#2| |#3|) (-10 -7 (IF (|has| (-948 |#2|) (-882 |#1|)) (-15 -3787 ((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|))) |%noBranch|)) (-1093) (-13 (-882 |#1|) (-172)) (-166 |#2|)) (T -178))
-((-3787 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 *3)) (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-4 *3 (-166 *6)) (-4 (-948 *6) (-882 *5)) (-4 *6 (-13 (-882 *5) (-172))) (-5 *1 (-178 *5 *6 *3)))))
-(-10 -7 (IF (|has| (-948 |#2|) (-882 |#1|)) (-15 -3787 ((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|))) |%noBranch|))
-((-2667 (((-640 |#1|) (-640 |#1|) |#1|) 38)) (-4087 (((-640 |#1|) |#1| (-640 |#1|)) 19)) (-3046 (((-640 |#1|) (-640 (-640 |#1|)) (-640 |#1|)) 33) ((|#1| (-640 |#1|) (-640 |#1|)) 31)))
-(((-179 |#1|) (-10 -7 (-15 -4087 ((-640 |#1|) |#1| (-640 |#1|))) (-15 -3046 (|#1| (-640 |#1|) (-640 |#1|))) (-15 -3046 ((-640 |#1|) (-640 (-640 |#1|)) (-640 |#1|))) (-15 -2667 ((-640 |#1|) (-640 |#1|) |#1|))) (-307)) (T -179))
-((-2667 (*1 *2 *2 *3) (-12 (-5 *2 (-640 *3)) (-4 *3 (-307)) (-5 *1 (-179 *3)))) (-3046 (*1 *2 *3 *2) (-12 (-5 *3 (-640 (-640 *4))) (-5 *2 (-640 *4)) (-4 *4 (-307)) (-5 *1 (-179 *4)))) (-3046 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *2)) (-5 *1 (-179 *2)) (-4 *2 (-307)))) (-4087 (*1 *2 *3 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-307)) (-5 *1 (-179 *3)))))
-(-10 -7 (-15 -4087 ((-640 |#1|) |#1| (-640 |#1|))) (-15 -3046 (|#1| (-640 |#1|) (-640 |#1|))) (-15 -3046 ((-640 |#1|) (-640 (-640 |#1|)) (-640 |#1|))) (-15 -2667 ((-640 |#1|) (-640 |#1|) |#1|)))
-((-1677 (((-112) $ $) NIL)) (-4183 (((-1207) $) 13)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3685 (((-1128) $) 10)) (-1693 (((-858) $) 22) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-180) (-13 (-1076) (-10 -8 (-15 -3685 ((-1128) $)) (-15 -4183 ((-1207) $))))) (T -180))
-((-3685 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-180)))) (-4183 (*1 *2 *1) (-12 (-5 *2 (-1207)) (-5 *1 (-180)))))
-(-13 (-1076) (-10 -8 (-15 -3685 ((-1128) $)) (-15 -4183 ((-1207) $))))
-((-2015 (((-2 (|:| |start| |#2|) (|:| -2760 (-418 |#2|))) |#2|) 61)) (-2657 ((|#1| |#1|) 54)) (-3267 (((-169 |#1|) |#2|) 84)) (-4089 ((|#1| |#2|) 124) ((|#1| |#2| |#1|) 82)) (-2895 ((|#2| |#2|) 83)) (-3177 (((-418 |#2|) |#2| |#1|) 114) (((-418 |#2|) |#2| |#1| (-112)) 81)) (-3793 ((|#1| |#2|) 113)) (-1405 ((|#2| |#2|) 120)) (-2174 (((-418 |#2|) |#2|) 135) (((-418 |#2|) |#2| |#1|) 32) (((-418 |#2|) |#2| |#1| (-112)) 134)) (-3250 (((-640 (-2 (|:| -2760 (-640 |#2|)) (|:| -4076 |#1|))) |#2| |#2|) 133) (((-640 (-2 (|:| -2760 (-640 |#2|)) (|:| -4076 |#1|))) |#2| |#2| (-112)) 76)) (-1435 (((-640 (-169 |#1|)) |#2| |#1|) 40) (((-640 (-169 |#1|)) |#2|) 41)))
-(((-181 |#1| |#2|) (-10 -7 (-15 -1435 ((-640 (-169 |#1|)) |#2|)) (-15 -1435 ((-640 (-169 |#1|)) |#2| |#1|)) (-15 -3250 ((-640 (-2 (|:| -2760 (-640 |#2|)) (|:| -4076 |#1|))) |#2| |#2| (-112))) (-15 -3250 ((-640 (-2 (|:| -2760 (-640 |#2|)) (|:| -4076 |#1|))) |#2| |#2|)) (-15 -2174 ((-418 |#2|) |#2| |#1| (-112))) (-15 -2174 ((-418 |#2|) |#2| |#1|)) (-15 -2174 ((-418 |#2|) |#2|)) (-15 -1405 (|#2| |#2|)) (-15 -3793 (|#1| |#2|)) (-15 -3177 ((-418 |#2|) |#2| |#1| (-112))) (-15 -3177 ((-418 |#2|) |#2| |#1|)) (-15 -2895 (|#2| |#2|)) (-15 -4089 (|#1| |#2| |#1|)) (-15 -4089 (|#1| |#2|)) (-15 -3267 ((-169 |#1|) |#2|)) (-15 -2657 (|#1| |#1|)) (-15 -2015 ((-2 (|:| |start| |#2|) (|:| -2760 (-418 |#2|))) |#2|))) (-13 (-363) (-844)) (-1233 (-169 |#1|))) (T -181))
-((-2015 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-2 (|:| |start| *3) (|:| -2760 (-418 *3)))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-2657 (*1 *2 *2) (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1233 (-169 *2))))) (-3267 (*1 *2 *3) (-12 (-5 *2 (-169 *4)) (-5 *1 (-181 *4 *3)) (-4 *4 (-13 (-363) (-844))) (-4 *3 (-1233 *2)))) (-4089 (*1 *2 *3) (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1233 (-169 *2))))) (-4089 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1233 (-169 *2))))) (-2895 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-844))) (-5 *1 (-181 *3 *2)) (-4 *2 (-1233 (-169 *3))))) (-3177 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-418 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-3177 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-363) (-844))) (-5 *2 (-418 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-3793 (*1 *2 *3) (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1233 (-169 *2))))) (-1405 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-844))) (-5 *1 (-181 *3 *2)) (-4 *2 (-1233 (-169 *3))))) (-2174 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-418 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-2174 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-418 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-2174 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-363) (-844))) (-5 *2 (-418 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-3250 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-640 (-2 (|:| -2760 (-640 *3)) (|:| -4076 *4)))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-3250 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-363) (-844))) (-5 *2 (-640 (-2 (|:| -2760 (-640 *3)) (|:| -4076 *5)))) (-5 *1 (-181 *5 *3)) (-4 *3 (-1233 (-169 *5))))) (-1435 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-640 (-169 *4))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-1435 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-640 (-169 *4))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))))
-(-10 -7 (-15 -1435 ((-640 (-169 |#1|)) |#2|)) (-15 -1435 ((-640 (-169 |#1|)) |#2| |#1|)) (-15 -3250 ((-640 (-2 (|:| -2760 (-640 |#2|)) (|:| -4076 |#1|))) |#2| |#2| (-112))) (-15 -3250 ((-640 (-2 (|:| -2760 (-640 |#2|)) (|:| -4076 |#1|))) |#2| |#2|)) (-15 -2174 ((-418 |#2|) |#2| |#1| (-112))) (-15 -2174 ((-418 |#2|) |#2| |#1|)) (-15 -2174 ((-418 |#2|) |#2|)) (-15 -1405 (|#2| |#2|)) (-15 -3793 (|#1| |#2|)) (-15 -3177 ((-418 |#2|) |#2| |#1| (-112))) (-15 -3177 ((-418 |#2|) |#2| |#1|)) (-15 -2895 (|#2| |#2|)) (-15 -4089 (|#1| |#2| |#1|)) (-15 -4089 (|#1| |#2|)) (-15 -3267 ((-169 |#1|) |#2|)) (-15 -2657 (|#1| |#1|)) (-15 -2015 ((-2 (|:| |start| |#2|) (|:| -2760 (-418 |#2|))) |#2|)))
-((-1339 (((-3 |#2| "failed") |#2|) 14)) (-3003 (((-767) |#2|) 16)) (-2863 ((|#2| |#2| |#2|) 18)))
-(((-182 |#1| |#2|) (-10 -7 (-15 -1339 ((-3 |#2| "failed") |#2|)) (-15 -3003 ((-767) |#2|)) (-15 -2863 (|#2| |#2| |#2|))) (-1208) (-669 |#1|)) (T -182))
-((-2863 (*1 *2 *2 *2) (-12 (-4 *3 (-1208)) (-5 *1 (-182 *3 *2)) (-4 *2 (-669 *3)))) (-3003 (*1 *2 *3) (-12 (-4 *4 (-1208)) (-5 *2 (-767)) (-5 *1 (-182 *4 *3)) (-4 *3 (-669 *4)))) (-1339 (*1 *2 *2) (|partial| -12 (-4 *3 (-1208)) (-5 *1 (-182 *3 *2)) (-4 *2 (-669 *3)))))
-(-10 -7 (-15 -1339 ((-3 |#2| "failed") |#2|)) (-15 -3003 ((-767) |#2|)) (-15 -2863 (|#2| |#2| |#2|)))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3762 (((-187) $) 7)) (-1693 (((-858) $) 14)) (-4093 (((-640 (-1174)) $) 10)) (-1718 (((-112) $ $) 12)))
-(((-183) (-13 (-1093) (-10 -8 (-15 -3762 ((-187) $)) (-15 -4093 ((-640 (-1174)) $))))) (T -183))
-((-3762 (*1 *2 *1) (-12 (-5 *2 (-187)) (-5 *1 (-183)))) (-4093 (*1 *2 *1) (-12 (-5 *2 (-640 (-1174))) (-5 *1 (-183)))))
-(-13 (-1093) (-10 -8 (-15 -3762 ((-187) $)) (-15 -4093 ((-640 (-1174)) $))))
-((-3453 (((-640 (-861)) $) 16)) (-2504 (((-186) $) 8)) (-2544 (((-640 (-112)) $) 13)) (-1396 (((-55) $) 10)))
-(((-184 |#1|) (-10 -8 (-15 -3453 ((-640 (-861)) |#1|)) (-15 -2544 ((-640 (-112)) |#1|)) (-15 -2504 ((-186) |#1|)) (-15 -1396 ((-55) |#1|))) (-185)) (T -184))
-NIL
-(-10 -8 (-15 -3453 ((-640 (-861)) |#1|)) (-15 -2544 ((-640 (-112)) |#1|)) (-15 -2504 ((-186) |#1|)) (-15 -1396 ((-55) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3453 (((-640 (-861)) $) 17)) (-3348 (((-506) $) 14)) (-3573 (((-1151) $) 9)) (-2504 (((-186) $) 19)) (-1694 (((-1113) $) 10)) (-2544 (((-640 (-112)) $) 18)) (-1693 (((-858) $) 11)) (-1396 (((-55) $) 13)) (-1718 (((-112) $ $) 6)))
+((-1895 (*1 *1 *1) (-4 *1 (-173))))
+(-13 (-10 -8 (-15 -1895 ($ $))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3944 ((|#1| $) 74)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-2569 (($) NIL T CONST)) (-3094 (($ $ $) NIL)) (-2265 (($ $) 19)) (-2309 (($ |#1| (-1149 |#1|)) 47)) (-3951 (((-3 $ "failed") $) 116)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-2275 (((-1149 |#1|) $) 81)) (-2298 (((-1149 |#1|) $) 78)) (-2285 (((-1149 |#1|) $) 79)) (-3401 (((-112) $) NIL)) (-2226 (((-1149 |#1|) $) 87)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3517 (($ (-640 $)) NIL) (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ (-640 $)) NIL) (($ $ $) NIL)) (-2173 (((-418 $) $) NIL)) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL)) (-1751 (($ $ (-563)) 90)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-2213 (((-1149 |#1|) $) 88)) (-2242 (((-1149 (-407 |#1|)) $) 14)) (-3616 (($ (-407 |#1|)) 17) (($ |#1| (-1149 |#1|) (-1149 |#1|)) 37)) (-3369 (($ $) 92)) (-1692 (((-858) $) 126) (($ (-563)) 50) (($ |#1|) 51) (($ (-407 |#1|)) 35) (($ (-407 (-563))) NIL) (($ $) NIL)) (-3914 (((-767)) 63)) (-3223 (((-112) $ $) NIL)) (-2256 (((-1149 (-407 |#1|)) $) 18)) (-2239 (($) 25 T CONST)) (-2253 (($) 28 T CONST)) (-1718 (((-112) $ $) 34)) (-1836 (($ $ $) 114)) (-1825 (($ $) 105) (($ $ $) 102)) (-1813 (($ $ $) 100)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 112) (($ $ $) 107) (($ $ |#1|) NIL) (($ |#1| $) 109) (($ (-407 |#1|) $) 110) (($ $ (-407 |#1|)) NIL) (($ (-407 (-563)) $) NIL) (($ $ (-407 (-563))) NIL)))
+(((-174 |#1|) (-13 (-38 |#1|) (-38 (-407 |#1|)) (-363) (-10 -8 (-15 -3616 ($ (-407 |#1|))) (-15 -3616 ($ |#1| (-1149 |#1|) (-1149 |#1|))) (-15 -2309 ($ |#1| (-1149 |#1|))) (-15 -2298 ((-1149 |#1|) $)) (-15 -2285 ((-1149 |#1|) $)) (-15 -2275 ((-1149 |#1|) $)) (-15 -3944 (|#1| $)) (-15 -2265 ($ $)) (-15 -2256 ((-1149 (-407 |#1|)) $)) (-15 -2242 ((-1149 (-407 |#1|)) $)) (-15 -2226 ((-1149 |#1|) $)) (-15 -2213 ((-1149 |#1|) $)) (-15 -1751 ($ $ (-563))) (-15 -3369 ($ $)))) (-307)) (T -174))
+((-3616 (*1 *1 *2) (-12 (-5 *2 (-407 *3)) (-4 *3 (-307)) (-5 *1 (-174 *3)))) (-3616 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1149 *2)) (-4 *2 (-307)) (-5 *1 (-174 *2)))) (-2309 (*1 *1 *2 *3) (-12 (-5 *3 (-1149 *2)) (-4 *2 (-307)) (-5 *1 (-174 *2)))) (-2298 (*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-2285 (*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-2275 (*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-3944 (*1 *2 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-307)))) (-2265 (*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-307)))) (-2256 (*1 *2 *1) (-12 (-5 *2 (-1149 (-407 *3))) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-2242 (*1 *2 *1) (-12 (-5 *2 (-1149 (-407 *3))) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-2226 (*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-2213 (*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-1751 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-174 *3)) (-4 *3 (-307)))) (-3369 (*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-307)))))
+(-13 (-38 |#1|) (-38 (-407 |#1|)) (-363) (-10 -8 (-15 -3616 ($ (-407 |#1|))) (-15 -3616 ($ |#1| (-1149 |#1|) (-1149 |#1|))) (-15 -2309 ($ |#1| (-1149 |#1|))) (-15 -2298 ((-1149 |#1|) $)) (-15 -2285 ((-1149 |#1|) $)) (-15 -2275 ((-1149 |#1|) $)) (-15 -3944 (|#1| $)) (-15 -2265 ($ $)) (-15 -2256 ((-1149 (-407 |#1|)) $)) (-15 -2242 ((-1149 (-407 |#1|)) $)) (-15 -2226 ((-1149 |#1|) $)) (-15 -2213 ((-1149 |#1|) $)) (-15 -1751 ($ $ (-563))) (-15 -3369 ($ $))))
+((-2320 (($ (-109) $) 13)) (-3726 (((-3 (-109) "failed") (-1169) $) 12)) (-1692 (((-858) $) 16)) (-2329 (((-640 (-109)) $) 8)))
+(((-175) (-13 (-610 (-858)) (-10 -8 (-15 -2329 ((-640 (-109)) $)) (-15 -2320 ($ (-109) $)) (-15 -3726 ((-3 (-109) "failed") (-1169) $))))) (T -175))
+((-2329 (*1 *2 *1) (-12 (-5 *2 (-640 (-109))) (-5 *1 (-175)))) (-2320 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-175)))) (-3726 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-109)) (-5 *1 (-175)))))
+(-13 (-610 (-858)) (-10 -8 (-15 -2329 ((-640 (-109)) $)) (-15 -2320 ($ (-109) $)) (-15 -3726 ((-3 (-109) "failed") (-1169) $))))
+((-2471 (((-1 (-939 |#1|) (-939 |#1|)) |#1|) 40)) (-2370 (((-939 |#1|) (-939 |#1|)) 19)) (-2426 (((-1 (-939 |#1|) (-939 |#1|)) |#1|) 36)) (-2351 (((-939 |#1|) (-939 |#1|)) 17)) (-2403 (((-939 |#1|) (-939 |#1|)) 25)) (-2393 (((-939 |#1|) (-939 |#1|)) 24)) (-2382 (((-939 |#1|) (-939 |#1|)) 23)) (-2438 (((-1 (-939 |#1|) (-939 |#1|)) |#1|) 37)) (-2415 (((-1 (-939 |#1|) (-939 |#1|)) |#1|) 35)) (-2489 (((-1 (-939 |#1|) (-939 |#1|)) |#1|) 34)) (-2360 (((-939 |#1|) (-939 |#1|)) 18)) (-2482 (((-1 (-939 |#1|) (-939 |#1|)) |#1| |#1|) 43)) (-2340 (((-939 |#1|) (-939 |#1|)) 8)) (-2459 (((-1 (-939 |#1|) (-939 |#1|)) |#1|) 39)) (-2449 (((-1 (-939 |#1|) (-939 |#1|)) |#1|) 38)))
+(((-176 |#1|) (-10 -7 (-15 -2340 ((-939 |#1|) (-939 |#1|))) (-15 -2351 ((-939 |#1|) (-939 |#1|))) (-15 -2360 ((-939 |#1|) (-939 |#1|))) (-15 -2370 ((-939 |#1|) (-939 |#1|))) (-15 -2382 ((-939 |#1|) (-939 |#1|))) (-15 -2393 ((-939 |#1|) (-939 |#1|))) (-15 -2403 ((-939 |#1|) (-939 |#1|))) (-15 -2489 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2415 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2426 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2438 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2449 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2459 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2471 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2482 ((-1 (-939 |#1|) (-939 |#1|)) |#1| |#1|))) (-13 (-363) (-1193) (-998))) (T -176))
+((-2482 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-2471 (*1 *2 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-2459 (*1 *2 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-2449 (*1 *2 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-2438 (*1 *2 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-2426 (*1 *2 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-2415 (*1 *2 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-2489 (*1 *2 *3) (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-363) (-1193) (-998))))) (-2403 (*1 *2 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998))) (-5 *1 (-176 *3)))) (-2393 (*1 *2 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998))) (-5 *1 (-176 *3)))) (-2382 (*1 *2 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998))) (-5 *1 (-176 *3)))) (-2370 (*1 *2 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998))) (-5 *1 (-176 *3)))) (-2360 (*1 *2 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998))) (-5 *1 (-176 *3)))) (-2351 (*1 *2 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998))) (-5 *1 (-176 *3)))) (-2340 (*1 *2 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998))) (-5 *1 (-176 *3)))))
+(-10 -7 (-15 -2340 ((-939 |#1|) (-939 |#1|))) (-15 -2351 ((-939 |#1|) (-939 |#1|))) (-15 -2360 ((-939 |#1|) (-939 |#1|))) (-15 -2370 ((-939 |#1|) (-939 |#1|))) (-15 -2382 ((-939 |#1|) (-939 |#1|))) (-15 -2393 ((-939 |#1|) (-939 |#1|))) (-15 -2403 ((-939 |#1|) (-939 |#1|))) (-15 -2489 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2415 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2426 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2438 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2449 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2459 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2471 ((-1 (-939 |#1|) (-939 |#1|)) |#1|)) (-15 -2482 ((-1 (-939 |#1|) (-939 |#1|)) |#1| |#1|)))
+((-1892 ((|#2| |#3|) 27)))
+(((-177 |#1| |#2| |#3|) (-10 -7 (-15 -1892 (|#2| |#3|))) (-172) (-1233 |#1|) (-720 |#1| |#2|)) (T -177))
+((-1892 (*1 *2 *3) (-12 (-4 *4 (-172)) (-4 *2 (-1233 *4)) (-5 *1 (-177 *4 *2 *3)) (-4 *3 (-720 *4 *2)))))
+(-10 -7 (-15 -1892 (|#2| |#3|)))
+((-1812 (((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)) 45 (|has| (-948 |#2|) (-882 |#1|)))))
+(((-178 |#1| |#2| |#3|) (-10 -7 (IF (|has| (-948 |#2|) (-882 |#1|)) (-15 -1812 ((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|))) |%noBranch|)) (-1093) (-13 (-882 |#1|) (-172)) (-166 |#2|)) (T -178))
+((-1812 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 *3)) (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-4 *3 (-166 *6)) (-4 (-948 *6) (-882 *5)) (-4 *6 (-13 (-882 *5) (-172))) (-5 *1 (-178 *5 *6 *3)))))
+(-10 -7 (IF (|has| (-948 |#2|) (-882 |#1|)) (-15 -1812 ((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|))) |%noBranch|))
+((-2503 (((-640 |#1|) (-640 |#1|) |#1|) 38)) (-2493 (((-640 |#1|) |#1| (-640 |#1|)) 19)) (-3417 (((-640 |#1|) (-640 (-640 |#1|)) (-640 |#1|)) 33) ((|#1| (-640 |#1|) (-640 |#1|)) 31)))
+(((-179 |#1|) (-10 -7 (-15 -2493 ((-640 |#1|) |#1| (-640 |#1|))) (-15 -3417 (|#1| (-640 |#1|) (-640 |#1|))) (-15 -3417 ((-640 |#1|) (-640 (-640 |#1|)) (-640 |#1|))) (-15 -2503 ((-640 |#1|) (-640 |#1|) |#1|))) (-307)) (T -179))
+((-2503 (*1 *2 *2 *3) (-12 (-5 *2 (-640 *3)) (-4 *3 (-307)) (-5 *1 (-179 *3)))) (-3417 (*1 *2 *3 *2) (-12 (-5 *3 (-640 (-640 *4))) (-5 *2 (-640 *4)) (-4 *4 (-307)) (-5 *1 (-179 *4)))) (-3417 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *2)) (-5 *1 (-179 *2)) (-4 *2 (-307)))) (-2493 (*1 *2 *3 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-307)) (-5 *1 (-179 *3)))))
+(-10 -7 (-15 -2493 ((-640 |#1|) |#1| (-640 |#1|))) (-15 -3417 (|#1| (-640 |#1|) (-640 |#1|))) (-15 -3417 ((-640 |#1|) (-640 (-640 |#1|)) (-640 |#1|))) (-15 -2503 ((-640 |#1|) (-640 |#1|) |#1|)))
+((-1677 (((-112) $ $) NIL)) (-4184 (((-1207) $) 13)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3687 (((-1128) $) 10)) (-1692 (((-858) $) 22) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-180) (-13 (-1076) (-10 -8 (-15 -3687 ((-1128) $)) (-15 -4184 ((-1207) $))))) (T -180))
+((-3687 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-180)))) (-4184 (*1 *2 *1) (-12 (-5 *2 (-1207)) (-5 *1 (-180)))))
+(-13 (-1076) (-10 -8 (-15 -3687 ((-1128) $)) (-15 -4184 ((-1207) $))))
+((-1353 (((-2 (|:| |start| |#2|) (|:| -1337 (-418 |#2|))) |#2|) 61)) (-1343 ((|#1| |#1|) 54)) (-1335 (((-169 |#1|) |#2|) 84)) (-1324 ((|#1| |#2|) 124) ((|#1| |#2| |#1|) 82)) (-1314 ((|#2| |#2|) 83)) (-1302 (((-418 |#2|) |#2| |#1|) 114) (((-418 |#2|) |#2| |#1| (-112)) 80)) (-3975 ((|#1| |#2|) 113)) (-1293 ((|#2| |#2|) 120)) (-2173 (((-418 |#2|) |#2|) 135) (((-418 |#2|) |#2| |#1|) 32) (((-418 |#2|) |#2| |#1| (-112)) 134)) (-4381 (((-640 (-2 (|:| -1337 (-640 |#2|)) (|:| -4079 |#1|))) |#2| |#2|) 133) (((-640 (-2 (|:| -1337 (-640 |#2|)) (|:| -4079 |#1|))) |#2| |#2| (-112)) 75)) (-4371 (((-640 (-169 |#1|)) |#2| |#1|) 40) (((-640 (-169 |#1|)) |#2|) 41)))
+(((-181 |#1| |#2|) (-10 -7 (-15 -4371 ((-640 (-169 |#1|)) |#2|)) (-15 -4371 ((-640 (-169 |#1|)) |#2| |#1|)) (-15 -4381 ((-640 (-2 (|:| -1337 (-640 |#2|)) (|:| -4079 |#1|))) |#2| |#2| (-112))) (-15 -4381 ((-640 (-2 (|:| -1337 (-640 |#2|)) (|:| -4079 |#1|))) |#2| |#2|)) (-15 -2173 ((-418 |#2|) |#2| |#1| (-112))) (-15 -2173 ((-418 |#2|) |#2| |#1|)) (-15 -2173 ((-418 |#2|) |#2|)) (-15 -1293 (|#2| |#2|)) (-15 -3975 (|#1| |#2|)) (-15 -1302 ((-418 |#2|) |#2| |#1| (-112))) (-15 -1302 ((-418 |#2|) |#2| |#1|)) (-15 -1314 (|#2| |#2|)) (-15 -1324 (|#1| |#2| |#1|)) (-15 -1324 (|#1| |#2|)) (-15 -1335 ((-169 |#1|) |#2|)) (-15 -1343 (|#1| |#1|)) (-15 -1353 ((-2 (|:| |start| |#2|) (|:| -1337 (-418 |#2|))) |#2|))) (-13 (-363) (-844)) (-1233 (-169 |#1|))) (T -181))
+((-1353 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-2 (|:| |start| *3) (|:| -1337 (-418 *3)))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-1343 (*1 *2 *2) (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1233 (-169 *2))))) (-1335 (*1 *2 *3) (-12 (-5 *2 (-169 *4)) (-5 *1 (-181 *4 *3)) (-4 *4 (-13 (-363) (-844))) (-4 *3 (-1233 *2)))) (-1324 (*1 *2 *3) (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1233 (-169 *2))))) (-1324 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1233 (-169 *2))))) (-1314 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-844))) (-5 *1 (-181 *3 *2)) (-4 *2 (-1233 (-169 *3))))) (-1302 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-418 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-1302 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-363) (-844))) (-5 *2 (-418 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-3975 (*1 *2 *3) (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1233 (-169 *2))))) (-1293 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-844))) (-5 *1 (-181 *3 *2)) (-4 *2 (-1233 (-169 *3))))) (-2173 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-418 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-2173 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-418 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-2173 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-363) (-844))) (-5 *2 (-418 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-4381 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-640 (-2 (|:| -1337 (-640 *3)) (|:| -4079 *4)))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-4381 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-363) (-844))) (-5 *2 (-640 (-2 (|:| -1337 (-640 *3)) (|:| -4079 *5)))) (-5 *1 (-181 *5 *3)) (-4 *3 (-1233 (-169 *5))))) (-4371 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-640 (-169 *4))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))) (-4371 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-640 (-169 *4))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))))
+(-10 -7 (-15 -4371 ((-640 (-169 |#1|)) |#2|)) (-15 -4371 ((-640 (-169 |#1|)) |#2| |#1|)) (-15 -4381 ((-640 (-2 (|:| -1337 (-640 |#2|)) (|:| -4079 |#1|))) |#2| |#2| (-112))) (-15 -4381 ((-640 (-2 (|:| -1337 (-640 |#2|)) (|:| -4079 |#1|))) |#2| |#2|)) (-15 -2173 ((-418 |#2|) |#2| |#1| (-112))) (-15 -2173 ((-418 |#2|) |#2| |#1|)) (-15 -2173 ((-418 |#2|) |#2|)) (-15 -1293 (|#2| |#2|)) (-15 -3975 (|#1| |#2|)) (-15 -1302 ((-418 |#2|) |#2| |#1| (-112))) (-15 -1302 ((-418 |#2|) |#2| |#1|)) (-15 -1314 (|#2| |#2|)) (-15 -1324 (|#1| |#2| |#1|)) (-15 -1324 (|#1| |#2|)) (-15 -1335 ((-169 |#1|) |#2|)) (-15 -1343 (|#1| |#1|)) (-15 -1353 ((-2 (|:| |start| |#2|) (|:| -1337 (-418 |#2|))) |#2|)))
+((-1363 (((-3 |#2| "failed") |#2|) 14)) (-1372 (((-767) |#2|) 16)) (-1382 ((|#2| |#2| |#2|) 18)))
+(((-182 |#1| |#2|) (-10 -7 (-15 -1363 ((-3 |#2| "failed") |#2|)) (-15 -1372 ((-767) |#2|)) (-15 -1382 (|#2| |#2| |#2|))) (-1208) (-669 |#1|)) (T -182))
+((-1382 (*1 *2 *2 *2) (-12 (-4 *3 (-1208)) (-5 *1 (-182 *3 *2)) (-4 *2 (-669 *3)))) (-1372 (*1 *2 *3) (-12 (-4 *4 (-1208)) (-5 *2 (-767)) (-5 *1 (-182 *4 *3)) (-4 *3 (-669 *4)))) (-1363 (*1 *2 *2) (|partial| -12 (-4 *3 (-1208)) (-5 *1 (-182 *3 *2)) (-4 *2 (-669 *3)))))
+(-10 -7 (-15 -1363 ((-3 |#2| "failed") |#2|)) (-15 -1372 ((-767) |#2|)) (-15 -1382 (|#2| |#2| |#2|)))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3763 (((-187) $) 7)) (-1692 (((-858) $) 14)) (-4094 (((-640 (-1174)) $) 10)) (-1718 (((-112) $ $) 12)))
+(((-183) (-13 (-1093) (-10 -8 (-15 -3763 ((-187) $)) (-15 -4094 ((-640 (-1174)) $))))) (T -183))
+((-3763 (*1 *2 *1) (-12 (-5 *2 (-187)) (-5 *1 (-183)))) (-4094 (*1 *2 *1) (-12 (-5 *2 (-640 (-1174))) (-5 *1 (-183)))))
+(-13 (-1093) (-10 -8 (-15 -3763 ((-187) $)) (-15 -4094 ((-640 (-1174)) $))))
+((-3457 (((-640 (-861)) $) 16)) (-2504 (((-186) $) 8)) (-1404 (((-640 (-112)) $) 13)) (-2935 (((-55) $) 10)))
+(((-184 |#1|) (-10 -8 (-15 -3457 ((-640 (-861)) |#1|)) (-15 -1404 ((-640 (-112)) |#1|)) (-15 -2504 ((-186) |#1|)) (-15 -2935 ((-55) |#1|))) (-185)) (T -184))
+NIL
+(-10 -8 (-15 -3457 ((-640 (-861)) |#1|)) (-15 -1404 ((-640 (-112)) |#1|)) (-15 -2504 ((-186) |#1|)) (-15 -2935 ((-55) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3457 (((-640 (-861)) $) 17)) (-3352 (((-506) $) 14)) (-3854 (((-1151) $) 9)) (-2504 (((-186) $) 19)) (-1693 (((-1113) $) 10)) (-1404 (((-640 (-112)) $) 18)) (-1692 (((-858) $) 11)) (-2935 (((-55) $) 13)) (-1718 (((-112) $ $) 6)))
(((-185) (-140)) (T -185))
-((-2504 (*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-186)))) (-2544 (*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-640 (-112))))) (-3453 (*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-640 (-861))))))
-(-13 (-831 (-506)) (-10 -8 (-15 -2504 ((-186) $)) (-15 -2544 ((-640 (-112)) $)) (-15 -3453 ((-640 (-861)) $))))
+((-2504 (*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-186)))) (-1404 (*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-640 (-112))))) (-3457 (*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-640 (-861))))))
+(-13 (-831 (-506)) (-10 -8 (-15 -2504 ((-186) $)) (-15 -1404 ((-640 (-112)) $)) (-15 -3457 ((-640 (-861)) $))))
(((-102) . T) ((-610 (-858)) . T) ((-831 (-506)) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-7 (($) 8 T CONST)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-8 (($) 7 T CONST)) (-1693 (((-858) $) 12)) (-9 (($) 6 T CONST)) (-1718 (((-112) $ $) 10)))
-(((-186) (-13 (-1093) (-10 -8 (-15 -9 ($) -2669) (-15 -8 ($) -2669) (-15 -7 ($) -2669)))) (T -186))
+((-1677 (((-112) $ $) NIL)) (-7 (($) 8 T CONST)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-8 (($) 7 T CONST)) (-1692 (((-858) $) 12)) (-9 (($) 6 T CONST)) (-1718 (((-112) $ $) 10)))
+(((-186) (-13 (-1093) (-10 -8 (-15 -9 ($) -2668) (-15 -8 ($) -2668) (-15 -7 ($) -2668)))) (T -186))
((-9 (*1 *1) (-5 *1 (-186))) (-8 (*1 *1) (-5 *1 (-186))) (-7 (*1 *1) (-5 *1 (-186))))
-(-13 (-1093) (-10 -8 (-15 -9 ($) -2669) (-15 -8 ($) -2669) (-15 -7 ($) -2669)))
-((-1677 (((-112) $ $) NIL)) (-3453 (((-640 (-861)) $) NIL)) (-3348 (((-506) $) 8)) (-3573 (((-1151) $) NIL)) (-2504 (((-186) $) 10)) (-1694 (((-1113) $) NIL)) (-2495 (((-686 $) (-1169)) 18)) (-2544 (((-640 (-112)) $) NIL)) (-1693 (((-858) $) NIL)) (-1396 (((-55) $) 12)) (-1718 (((-112) $ $) NIL)))
-(((-187) (-13 (-185) (-10 -8 (-15 -2495 ((-686 $) (-1169)))))) (T -187))
-((-2495 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-686 (-187))) (-5 *1 (-187)))))
-(-13 (-185) (-10 -8 (-15 -2495 ((-686 $) (-1169)))))
-((-3021 ((|#2| |#2|) 28)) (-3087 (((-112) |#2|) 19)) (-2489 (((-316 |#1|) |#2|) 12)) (-2499 (((-316 |#1|) |#2|) 14)) (-3172 ((|#2| |#2| (-1169)) 68) ((|#2| |#2|) 69)) (-2685 (((-169 (-316 |#1|)) |#2|) 10)) (-1541 ((|#2| |#2| (-1169)) 65) ((|#2| |#2|) 59)))
-(((-188 |#1| |#2|) (-10 -7 (-15 -3172 (|#2| |#2|)) (-15 -3172 (|#2| |#2| (-1169))) (-15 -1541 (|#2| |#2|)) (-15 -1541 (|#2| |#2| (-1169))) (-15 -2489 ((-316 |#1|) |#2|)) (-15 -2499 ((-316 |#1|) |#2|)) (-15 -3087 ((-112) |#2|)) (-15 -3021 (|#2| |#2|)) (-15 -2685 ((-169 (-316 |#1|)) |#2|))) (-13 (-555) (-846) (-1034 (-563))) (-13 (-27) (-1193) (-430 (-169 |#1|)))) (T -188))
-((-2685 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-169 (-316 *4))) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 (-169 *4)))))) (-3021 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 (-169 *3)))))) (-3087 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-112)) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 (-169 *4)))))) (-2499 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-316 *4)) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 (-169 *4)))))) (-2489 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-316 *4)) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 (-169 *4)))))) (-1541 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 (-169 *4)))))) (-1541 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 (-169 *3)))))) (-3172 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 (-169 *4)))))) (-3172 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 (-169 *3)))))))
-(-10 -7 (-15 -3172 (|#2| |#2|)) (-15 -3172 (|#2| |#2| (-1169))) (-15 -1541 (|#2| |#2|)) (-15 -1541 (|#2| |#2| (-1169))) (-15 -2489 ((-316 |#1|) |#2|)) (-15 -2499 ((-316 |#1|) |#2|)) (-15 -3087 ((-112) |#2|)) (-15 -3021 (|#2| |#2|)) (-15 -2685 ((-169 (-316 |#1|)) |#2|)))
-((-1424 (((-1257 (-684 (-948 |#1|))) (-1257 (-684 |#1|))) 24)) (-1693 (((-1257 (-684 (-407 (-948 |#1|)))) (-1257 (-684 |#1|))) 33)))
-(((-189 |#1|) (-10 -7 (-15 -1424 ((-1257 (-684 (-948 |#1|))) (-1257 (-684 |#1|)))) (-15 -1693 ((-1257 (-684 (-407 (-948 |#1|)))) (-1257 (-684 |#1|))))) (-172)) (T -189))
-((-1693 (*1 *2 *3) (-12 (-5 *3 (-1257 (-684 *4))) (-4 *4 (-172)) (-5 *2 (-1257 (-684 (-407 (-948 *4))))) (-5 *1 (-189 *4)))) (-1424 (*1 *2 *3) (-12 (-5 *3 (-1257 (-684 *4))) (-4 *4 (-172)) (-5 *2 (-1257 (-684 (-948 *4)))) (-5 *1 (-189 *4)))))
-(-10 -7 (-15 -1424 ((-1257 (-684 (-948 |#1|))) (-1257 (-684 |#1|)))) (-15 -1693 ((-1257 (-684 (-407 (-948 |#1|)))) (-1257 (-684 |#1|)))))
-((-4097 (((-1171 (-407 (-563))) (-1171 (-407 (-563))) (-1171 (-407 (-563)))) 66)) (-3197 (((-1171 (-407 (-563))) (-640 (-563)) (-640 (-563))) 75)) (-4043 (((-1171 (-407 (-563))) (-563)) 40)) (-1475 (((-1171 (-407 (-563))) (-563)) 52)) (-1540 (((-407 (-563)) (-1171 (-407 (-563)))) 62)) (-3715 (((-1171 (-407 (-563))) (-563)) 32)) (-3305 (((-1171 (-407 (-563))) (-563)) 48)) (-2823 (((-1171 (-407 (-563))) (-563)) 46)) (-2317 (((-1171 (-407 (-563))) (-1171 (-407 (-563))) (-1171 (-407 (-563)))) 60)) (-1741 (((-1171 (-407 (-563))) (-563)) 25)) (-2982 (((-407 (-563)) (-1171 (-407 (-563))) (-1171 (-407 (-563)))) 64)) (-4261 (((-1171 (-407 (-563))) (-563)) 30)) (-1671 (((-1171 (-407 (-563))) (-640 (-563))) 72)))
-(((-190) (-10 -7 (-15 -1741 ((-1171 (-407 (-563))) (-563))) (-15 -4043 ((-1171 (-407 (-563))) (-563))) (-15 -3715 ((-1171 (-407 (-563))) (-563))) (-15 -4261 ((-1171 (-407 (-563))) (-563))) (-15 -2823 ((-1171 (-407 (-563))) (-563))) (-15 -3305 ((-1171 (-407 (-563))) (-563))) (-15 -1475 ((-1171 (-407 (-563))) (-563))) (-15 -2982 ((-407 (-563)) (-1171 (-407 (-563))) (-1171 (-407 (-563))))) (-15 -2317 ((-1171 (-407 (-563))) (-1171 (-407 (-563))) (-1171 (-407 (-563))))) (-15 -1540 ((-407 (-563)) (-1171 (-407 (-563))))) (-15 -4097 ((-1171 (-407 (-563))) (-1171 (-407 (-563))) (-1171 (-407 (-563))))) (-15 -1671 ((-1171 (-407 (-563))) (-640 (-563)))) (-15 -3197 ((-1171 (-407 (-563))) (-640 (-563)) (-640 (-563)))))) (T -190))
-((-3197 (*1 *2 *3 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)))) (-1671 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)))) (-4097 (*1 *2 *2 *2) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)))) (-1540 (*1 *2 *3) (-12 (-5 *3 (-1171 (-407 (-563)))) (-5 *2 (-407 (-563))) (-5 *1 (-190)))) (-2317 (*1 *2 *2 *2) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)))) (-2982 (*1 *2 *3 *3) (-12 (-5 *3 (-1171 (-407 (-563)))) (-5 *2 (-407 (-563))) (-5 *1 (-190)))) (-1475 (*1 *2 *3) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))) (-3305 (*1 *2 *3) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))) (-2823 (*1 *2 *3) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))) (-4261 (*1 *2 *3) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))) (-3715 (*1 *2 *3) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))) (-4043 (*1 *2 *3) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))) (-1741 (*1 *2 *3) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))))
-(-10 -7 (-15 -1741 ((-1171 (-407 (-563))) (-563))) (-15 -4043 ((-1171 (-407 (-563))) (-563))) (-15 -3715 ((-1171 (-407 (-563))) (-563))) (-15 -4261 ((-1171 (-407 (-563))) (-563))) (-15 -2823 ((-1171 (-407 (-563))) (-563))) (-15 -3305 ((-1171 (-407 (-563))) (-563))) (-15 -1475 ((-1171 (-407 (-563))) (-563))) (-15 -2982 ((-407 (-563)) (-1171 (-407 (-563))) (-1171 (-407 (-563))))) (-15 -2317 ((-1171 (-407 (-563))) (-1171 (-407 (-563))) (-1171 (-407 (-563))))) (-15 -1540 ((-407 (-563)) (-1171 (-407 (-563))))) (-15 -4097 ((-1171 (-407 (-563))) (-1171 (-407 (-563))) (-1171 (-407 (-563))))) (-15 -1671 ((-1171 (-407 (-563))) (-640 (-563)))) (-15 -3197 ((-1171 (-407 (-563))) (-640 (-563)) (-640 (-563)))))
-((-3864 (((-418 (-1165 (-563))) (-563)) 28)) (-2019 (((-640 (-1165 (-563))) (-563)) 23)) (-3952 (((-1165 (-563)) (-563)) 21)))
-(((-191) (-10 -7 (-15 -2019 ((-640 (-1165 (-563))) (-563))) (-15 -3952 ((-1165 (-563)) (-563))) (-15 -3864 ((-418 (-1165 (-563))) (-563))))) (T -191))
-((-3864 (*1 *2 *3) (-12 (-5 *2 (-418 (-1165 (-563)))) (-5 *1 (-191)) (-5 *3 (-563)))) (-3952 (*1 *2 *3) (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-191)) (-5 *3 (-563)))) (-2019 (*1 *2 *3) (-12 (-5 *2 (-640 (-1165 (-563)))) (-5 *1 (-191)) (-5 *3 (-563)))))
-(-10 -7 (-15 -2019 ((-640 (-1165 (-563))) (-563))) (-15 -3952 ((-1165 (-563)) (-563))) (-15 -3864 ((-418 (-1165 (-563))) (-563))))
-((-2415 (((-1149 (-225)) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 103)) (-1983 (((-640 (-1151)) (-1149 (-225))) NIL)) (-2690 (((-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 79)) (-2497 (((-640 (-225)) (-316 (-225)) (-1169) (-1087 (-839 (-225)))) NIL)) (-1636 (((-640 (-1151)) (-640 (-225))) NIL)) (-2471 (((-225) (-1087 (-839 (-225)))) 24)) (-4107 (((-225) (-1087 (-839 (-225)))) 25)) (-2986 (((-379) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 96)) (-3876 (((-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 42)) (-3274 (((-1151) (-225)) NIL)) (-2885 (((-1151) (-640 (-1151))) 20)) (-2038 (((-1031) (-1169) (-1169) (-1031)) 13)))
-(((-192) (-10 -7 (-15 -2690 ((-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3876 ((-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2471 ((-225) (-1087 (-839 (-225))))) (-15 -4107 ((-225) (-1087 (-839 (-225))))) (-15 -2986 ((-379) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2497 ((-640 (-225)) (-316 (-225)) (-1169) (-1087 (-839 (-225))))) (-15 -2415 ((-1149 (-225)) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3274 ((-1151) (-225))) (-15 -1636 ((-640 (-1151)) (-640 (-225)))) (-15 -1983 ((-640 (-1151)) (-1149 (-225)))) (-15 -2885 ((-1151) (-640 (-1151)))) (-15 -2038 ((-1031) (-1169) (-1169) (-1031))))) (T -192))
-((-2038 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1031)) (-5 *3 (-1169)) (-5 *1 (-192)))) (-2885 (*1 *2 *3) (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-1151)) (-5 *1 (-192)))) (-1983 (*1 *2 *3) (-12 (-5 *3 (-1149 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-192)))) (-1636 (*1 *2 *3) (-12 (-5 *3 (-640 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-192)))) (-3274 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1151)) (-5 *1 (-192)))) (-2415 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-1149 (-225))) (-5 *1 (-192)))) (-2497 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-316 (-225))) (-5 *4 (-1169)) (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-640 (-225))) (-5 *1 (-192)))) (-2986 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-379)) (-5 *1 (-192)))) (-4107 (*1 *2 *3) (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-192)))) (-2471 (*1 *2 *3) (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-192)))) (-3876 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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 (-192)))) (-2690 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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 (-192)))))
-(-10 -7 (-15 -2690 ((-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3876 ((-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2471 ((-225) (-1087 (-839 (-225))))) (-15 -4107 ((-225) (-1087 (-839 (-225))))) (-15 -2986 ((-379) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2497 ((-640 (-225)) (-316 (-225)) (-1169) (-1087 (-839 (-225))))) (-15 -2415 ((-1149 (-225)) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3274 ((-1151) (-225))) (-15 -1636 ((-640 (-1151)) (-640 (-225)))) (-15 -1983 ((-640 (-1151)) (-1149 (-225)))) (-15 -2885 ((-1151) (-640 (-1151)))) (-15 -2038 ((-1031) (-1169) (-1169) (-1031))))
-((-1677 (((-112) $ $) NIL)) (-1807 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 55) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 32) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(-13 (-1093) (-10 -8 (-15 -9 ($) -2668) (-15 -8 ($) -2668) (-15 -7 ($) -2668)))
+((-1677 (((-112) $ $) NIL)) (-3457 (((-640 (-861)) $) NIL)) (-3352 (((-506) $) 8)) (-3854 (((-1151) $) NIL)) (-2504 (((-186) $) 10)) (-1693 (((-1113) $) NIL)) (-1392 (((-686 $) (-1169)) 18)) (-1404 (((-640 (-112)) $) NIL)) (-1692 (((-858) $) NIL)) (-2935 (((-55) $) 12)) (-1718 (((-112) $ $) NIL)))
+(((-187) (-13 (-185) (-10 -8 (-15 -1392 ((-686 $) (-1169)))))) (T -187))
+((-1392 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-686 (-187))) (-5 *1 (-187)))))
+(-13 (-185) (-10 -8 (-15 -1392 ((-686 $) (-1169)))))
+((-2917 ((|#2| |#2|) 28)) (-2927 (((-112) |#2|) 19)) (-2488 (((-316 |#1|) |#2|) 12)) (-2498 (((-316 |#1|) |#2|) 14)) (-2898 ((|#2| |#2| (-1169)) 68) ((|#2| |#2|) 69)) (-2936 (((-169 (-316 |#1|)) |#2|) 10)) (-2907 ((|#2| |#2| (-1169)) 65) ((|#2| |#2|) 59)))
+(((-188 |#1| |#2|) (-10 -7 (-15 -2898 (|#2| |#2|)) (-15 -2898 (|#2| |#2| (-1169))) (-15 -2907 (|#2| |#2|)) (-15 -2907 (|#2| |#2| (-1169))) (-15 -2488 ((-316 |#1|) |#2|)) (-15 -2498 ((-316 |#1|) |#2|)) (-15 -2927 ((-112) |#2|)) (-15 -2917 (|#2| |#2|)) (-15 -2936 ((-169 (-316 |#1|)) |#2|))) (-13 (-555) (-846) (-1034 (-563))) (-13 (-27) (-1193) (-430 (-169 |#1|)))) (T -188))
+((-2936 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-169 (-316 *4))) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 (-169 *4)))))) (-2917 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 (-169 *3)))))) (-2927 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-112)) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 (-169 *4)))))) (-2498 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-316 *4)) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 (-169 *4)))))) (-2488 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-316 *4)) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 (-169 *4)))))) (-2907 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 (-169 *4)))))) (-2907 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 (-169 *3)))))) (-2898 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 (-169 *4)))))) (-2898 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 (-169 *3)))))))
+(-10 -7 (-15 -2898 (|#2| |#2|)) (-15 -2898 (|#2| |#2| (-1169))) (-15 -2907 (|#2| |#2|)) (-15 -2907 (|#2| |#2| (-1169))) (-15 -2488 ((-316 |#1|) |#2|)) (-15 -2498 ((-316 |#1|) |#2|)) (-15 -2927 ((-112) |#2|)) (-15 -2917 (|#2| |#2|)) (-15 -2936 ((-169 (-316 |#1|)) |#2|)))
+((-1415 (((-1257 (-684 (-948 |#1|))) (-1257 (-684 |#1|))) 24)) (-1692 (((-1257 (-684 (-407 (-948 |#1|)))) (-1257 (-684 |#1|))) 33)))
+(((-189 |#1|) (-10 -7 (-15 -1415 ((-1257 (-684 (-948 |#1|))) (-1257 (-684 |#1|)))) (-15 -1692 ((-1257 (-684 (-407 (-948 |#1|)))) (-1257 (-684 |#1|))))) (-172)) (T -189))
+((-1692 (*1 *2 *3) (-12 (-5 *3 (-1257 (-684 *4))) (-4 *4 (-172)) (-5 *2 (-1257 (-684 (-407 (-948 *4))))) (-5 *1 (-189 *4)))) (-1415 (*1 *2 *3) (-12 (-5 *3 (-1257 (-684 *4))) (-4 *4 (-172)) (-5 *2 (-1257 (-684 (-948 *4)))) (-5 *1 (-189 *4)))))
+(-10 -7 (-15 -1415 ((-1257 (-684 (-948 |#1|))) (-1257 (-684 |#1|)))) (-15 -1692 ((-1257 (-684 (-407 (-948 |#1|)))) (-1257 (-684 |#1|)))))
+((-1503 (((-1171 (-407 (-563))) (-1171 (-407 (-563))) (-1171 (-407 (-563)))) 66)) (-1528 (((-1171 (-407 (-563))) (-640 (-563)) (-640 (-563))) 75)) (-1426 (((-1171 (-407 (-563))) (-563)) 40)) (-4227 (((-1171 (-407 (-563))) (-563)) 52)) (-1542 (((-407 (-563)) (-1171 (-407 (-563)))) 62)) (-1437 (((-1171 (-407 (-563))) (-563)) 32)) (-1470 (((-1171 (-407 (-563))) (-563)) 48)) (-1457 (((-1171 (-407 (-563))) (-563)) 46)) (-1492 (((-1171 (-407 (-563))) (-1171 (-407 (-563))) (-1171 (-407 (-563)))) 60)) (-3369 (((-1171 (-407 (-563))) (-563)) 25)) (-1480 (((-407 (-563)) (-1171 (-407 (-563))) (-1171 (-407 (-563)))) 64)) (-1447 (((-1171 (-407 (-563))) (-563)) 30)) (-1514 (((-1171 (-407 (-563))) (-640 (-563))) 72)))
+(((-190) (-10 -7 (-15 -3369 ((-1171 (-407 (-563))) (-563))) (-15 -1426 ((-1171 (-407 (-563))) (-563))) (-15 -1437 ((-1171 (-407 (-563))) (-563))) (-15 -1447 ((-1171 (-407 (-563))) (-563))) (-15 -1457 ((-1171 (-407 (-563))) (-563))) (-15 -1470 ((-1171 (-407 (-563))) (-563))) (-15 -4227 ((-1171 (-407 (-563))) (-563))) (-15 -1480 ((-407 (-563)) (-1171 (-407 (-563))) (-1171 (-407 (-563))))) (-15 -1492 ((-1171 (-407 (-563))) (-1171 (-407 (-563))) (-1171 (-407 (-563))))) (-15 -1542 ((-407 (-563)) (-1171 (-407 (-563))))) (-15 -1503 ((-1171 (-407 (-563))) (-1171 (-407 (-563))) (-1171 (-407 (-563))))) (-15 -1514 ((-1171 (-407 (-563))) (-640 (-563)))) (-15 -1528 ((-1171 (-407 (-563))) (-640 (-563)) (-640 (-563)))))) (T -190))
+((-1528 (*1 *2 *3 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)))) (-1514 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)))) (-1503 (*1 *2 *2 *2) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)))) (-1542 (*1 *2 *3) (-12 (-5 *3 (-1171 (-407 (-563)))) (-5 *2 (-407 (-563))) (-5 *1 (-190)))) (-1492 (*1 *2 *2 *2) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)))) (-1480 (*1 *2 *3 *3) (-12 (-5 *3 (-1171 (-407 (-563)))) (-5 *2 (-407 (-563))) (-5 *1 (-190)))) (-4227 (*1 *2 *3) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))) (-1470 (*1 *2 *3) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))) (-1457 (*1 *2 *3) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))) (-1447 (*1 *2 *3) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))) (-1437 (*1 *2 *3) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))) (-1426 (*1 *2 *3) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))) (-3369 (*1 *2 *3) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))))
+(-10 -7 (-15 -3369 ((-1171 (-407 (-563))) (-563))) (-15 -1426 ((-1171 (-407 (-563))) (-563))) (-15 -1437 ((-1171 (-407 (-563))) (-563))) (-15 -1447 ((-1171 (-407 (-563))) (-563))) (-15 -1457 ((-1171 (-407 (-563))) (-563))) (-15 -1470 ((-1171 (-407 (-563))) (-563))) (-15 -4227 ((-1171 (-407 (-563))) (-563))) (-15 -1480 ((-407 (-563)) (-1171 (-407 (-563))) (-1171 (-407 (-563))))) (-15 -1492 ((-1171 (-407 (-563))) (-1171 (-407 (-563))) (-1171 (-407 (-563))))) (-15 -1542 ((-407 (-563)) (-1171 (-407 (-563))))) (-15 -1503 ((-1171 (-407 (-563))) (-1171 (-407 (-563))) (-1171 (-407 (-563))))) (-15 -1514 ((-1171 (-407 (-563))) (-640 (-563)))) (-15 -1528 ((-1171 (-407 (-563))) (-640 (-563)) (-640 (-563)))))
+((-1552 (((-418 (-1165 (-563))) (-563)) 28)) (-1540 (((-640 (-1165 (-563))) (-563)) 23)) (-1869 (((-1165 (-563)) (-563)) 21)))
+(((-191) (-10 -7 (-15 -1540 ((-640 (-1165 (-563))) (-563))) (-15 -1869 ((-1165 (-563)) (-563))) (-15 -1552 ((-418 (-1165 (-563))) (-563))))) (T -191))
+((-1552 (*1 *2 *3) (-12 (-5 *2 (-418 (-1165 (-563)))) (-5 *1 (-191)) (-5 *3 (-563)))) (-1869 (*1 *2 *3) (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-191)) (-5 *3 (-563)))) (-1540 (*1 *2 *3) (-12 (-5 *2 (-640 (-1165 (-563)))) (-5 *1 (-191)) (-5 *3 (-563)))))
+(-10 -7 (-15 -1540 ((-640 (-1165 (-563))) (-563))) (-15 -1869 ((-1165 (-563)) (-563))) (-15 -1552 ((-418 (-1165 (-563))) (-563))))
+((-2803 (((-1149 (-225)) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 103)) (-3013 (((-640 (-1151)) (-1149 (-225))) NIL)) (-1566 (((-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 79)) (-2783 (((-640 (-225)) (-316 (-225)) (-1169) (-1087 (-839 (-225)))) NIL)) (-3002 (((-640 (-1151)) (-640 (-225))) NIL)) (-3023 (((-225) (-1087 (-839 (-225)))) 24)) (-3033 (((-225) (-1087 (-839 (-225)))) 25)) (-1591 (((-379) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 96)) (-1578 (((-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 42)) (-2981 (((-1151) (-225)) NIL)) (-3207 (((-1151) (-640 (-1151))) 20)) (-1602 (((-1031) (-1169) (-1169) (-1031)) 13)))
+(((-192) (-10 -7 (-15 -1566 ((-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1578 ((-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3023 ((-225) (-1087 (-839 (-225))))) (-15 -3033 ((-225) (-1087 (-839 (-225))))) (-15 -1591 ((-379) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2783 ((-640 (-225)) (-316 (-225)) (-1169) (-1087 (-839 (-225))))) (-15 -2803 ((-1149 (-225)) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2981 ((-1151) (-225))) (-15 -3002 ((-640 (-1151)) (-640 (-225)))) (-15 -3013 ((-640 (-1151)) (-1149 (-225)))) (-15 -3207 ((-1151) (-640 (-1151)))) (-15 -1602 ((-1031) (-1169) (-1169) (-1031))))) (T -192))
+((-1602 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1031)) (-5 *3 (-1169)) (-5 *1 (-192)))) (-3207 (*1 *2 *3) (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-1151)) (-5 *1 (-192)))) (-3013 (*1 *2 *3) (-12 (-5 *3 (-1149 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-192)))) (-3002 (*1 *2 *3) (-12 (-5 *3 (-640 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-192)))) (-2981 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1151)) (-5 *1 (-192)))) (-2803 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-1149 (-225))) (-5 *1 (-192)))) (-2783 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-316 (-225))) (-5 *4 (-1169)) (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-640 (-225))) (-5 *1 (-192)))) (-1591 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-379)) (-5 *1 (-192)))) (-3033 (*1 *2 *3) (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-192)))) (-3023 (*1 *2 *3) (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-192)))) (-1578 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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 (-192)))) (-1566 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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 (-192)))))
+(-10 -7 (-15 -1566 ((-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1578 ((-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3023 ((-225) (-1087 (-839 (-225))))) (-15 -3033 ((-225) (-1087 (-839 (-225))))) (-15 -1591 ((-379) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2783 ((-640 (-225)) (-316 (-225)) (-1169) (-1087 (-839 (-225))))) (-15 -2803 ((-1149 (-225)) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2981 ((-1151) (-225))) (-15 -3002 ((-640 (-1151)) (-640 (-225)))) (-15 -3013 ((-640 (-1151)) (-1149 (-225)))) (-15 -3207 ((-1151) (-640 (-1151)))) (-15 -1602 ((-1031) (-1169) (-1169) (-1031))))
+((-1677 (((-112) $ $) NIL)) (-3940 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 55) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 32) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-193) (-783)) (T -193))
NIL
(-783)
-((-1677 (((-112) $ $) NIL)) (-1807 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 60) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 41) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3940 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 60) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 41) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-194) (-783)) (T -194))
NIL
(-783)
-((-1677 (((-112) $ $) NIL)) (-1807 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 69) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 40) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3940 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 69) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 40) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-195) (-783)) (T -195))
NIL
(-783)
-((-1677 (((-112) $ $) NIL)) (-1807 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 56) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 34) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3940 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 56) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 34) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-196) (-783)) (T -196))
NIL
(-783)
-((-1677 (((-112) $ $) NIL)) (-1807 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 67) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 38) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3940 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 67) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 38) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-197) (-783)) (T -197))
NIL
(-783)
-((-1677 (((-112) $ $) NIL)) (-1807 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 73) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 36) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3940 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 73) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 36) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-198) (-783)) (T -198))
NIL
(-783)
-((-1677 (((-112) $ $) NIL)) (-1807 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 80) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 44) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3940 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 80) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 44) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-199) (-783)) (T -199))
NIL
(-783)
-((-1677 (((-112) $ $) NIL)) (-1807 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 70) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 40) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3940 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 70) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 40) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-200) (-783)) (T -200))
NIL
(-783)
-((-1677 (((-112) $ $) NIL)) (-1807 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 65)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 32)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3940 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 65)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 32)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-201) (-783)) (T -201))
NIL
(-783)
-((-1677 (((-112) $ $) NIL)) (-1807 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 63)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 34)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3940 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 63)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 34)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-202) (-783)) (T -202))
NIL
(-783)
-((-1677 (((-112) $ $) NIL)) (-1807 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 90) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 78) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3940 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 90) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) NIL)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 78) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-203) (-783)) (T -203))
NIL
(-783)
-((-2683 (((-3 (-2 (|:| -2517 (-114)) (|:| |w| (-225))) "failed") (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 84)) (-3767 (((-563) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 42)) (-4330 (((-3 (-640 (-225)) "failed") (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 73)))
-(((-204) (-10 -7 (-15 -2683 ((-3 (-2 (|:| -2517 (-114)) (|:| |w| (-225))) "failed") (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -4330 ((-3 (-640 (-225)) "failed") (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3767 ((-563) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -204))
-((-3767 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-563)) (-5 *1 (-204)))) (-4330 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-640 (-225))) (-5 *1 (-204)))) (-2683 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -2517 (-114)) (|:| |w| (-225)))) (-5 *1 (-204)))))
-(-10 -7 (-15 -2683 ((-3 (-2 (|:| -2517 (-114)) (|:| |w| (-225))) "failed") (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -4330 ((-3 (-640 (-225)) "failed") (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3767 ((-563) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
-((-1973 (((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 39)) (-2283 (((-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 128)) (-3801 (((-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))) (-684 (-316 (-225)))) 87)) (-3391 (((-379) (-684 (-316 (-225)))) 111)) (-4312 (((-684 (-316 (-225))) (-1257 (-316 (-225))) (-640 (-1169))) 108)) (-2949 (((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 30)) (-1775 (((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 43)) (-1540 (((-684 (-316 (-225))) (-684 (-316 (-225))) (-640 (-1169)) (-1257 (-316 (-225)))) 100)) (-3307 (((-379) (-379) (-640 (-379))) 105) (((-379) (-379) (-379)) 103)) (-1864 (((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 36)))
-(((-205) (-10 -7 (-15 -3307 ((-379) (-379) (-379))) (-15 -3307 ((-379) (-379) (-640 (-379)))) (-15 -3391 ((-379) (-684 (-316 (-225))))) (-15 -4312 ((-684 (-316 (-225))) (-1257 (-316 (-225))) (-640 (-1169)))) (-15 -1540 ((-684 (-316 (-225))) (-684 (-316 (-225))) (-640 (-1169)) (-1257 (-316 (-225))))) (-15 -3801 ((-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))) (-684 (-316 (-225))))) (-15 -2283 ((-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1973 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1775 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1864 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2949 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -205))
-((-2949 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-379)) (-5 *1 (-205)))) (-1864 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-379)) (-5 *1 (-205)))) (-1775 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-379)) (-5 *1 (-205)))) (-1973 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-379)) (-5 *1 (-205)))) (-2283 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379)))) (-5 *1 (-205)))) (-3801 (*1 *2 *3) (-12 (-5 *3 (-684 (-316 (-225)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379)))) (-5 *1 (-205)))) (-1540 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-684 (-316 (-225)))) (-5 *3 (-640 (-1169))) (-5 *4 (-1257 (-316 (-225)))) (-5 *1 (-205)))) (-4312 (*1 *2 *3 *4) (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *4 (-640 (-1169))) (-5 *2 (-684 (-316 (-225)))) (-5 *1 (-205)))) (-3391 (*1 *2 *3) (-12 (-5 *3 (-684 (-316 (-225)))) (-5 *2 (-379)) (-5 *1 (-205)))) (-3307 (*1 *2 *2 *3) (-12 (-5 *3 (-640 (-379))) (-5 *2 (-379)) (-5 *1 (-205)))) (-3307 (*1 *2 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-205)))))
-(-10 -7 (-15 -3307 ((-379) (-379) (-379))) (-15 -3307 ((-379) (-379) (-640 (-379)))) (-15 -3391 ((-379) (-684 (-316 (-225))))) (-15 -4312 ((-684 (-316 (-225))) (-1257 (-316 (-225))) (-640 (-1169)))) (-15 -1540 ((-684 (-316 (-225))) (-684 (-316 (-225))) (-640 (-1169)) (-1257 (-316 (-225))))) (-15 -3801 ((-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))) (-684 (-316 (-225))))) (-15 -2283 ((-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1973 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1775 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1864 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2949 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
-((-1677 (((-112) $ $) NIL)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 41)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-3591 (((-1031) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 64)) (-1718 (((-112) $ $) NIL)))
+((-1613 (((-3 (-2 (|:| -2516 (-114)) (|:| |w| (-225))) "failed") (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 85)) (-1636 (((-563) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 42)) (-1624 (((-3 (-640 (-225)) "failed") (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 74)))
+(((-204) (-10 -7 (-15 -1613 ((-3 (-2 (|:| -2516 (-114)) (|:| |w| (-225))) "failed") (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1624 ((-3 (-640 (-225)) "failed") (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1636 ((-563) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -204))
+((-1636 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-563)) (-5 *1 (-204)))) (-1624 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-640 (-225))) (-5 *1 (-204)))) (-1613 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -2516 (-114)) (|:| |w| (-225)))) (-5 *1 (-204)))))
+(-10 -7 (-15 -1613 ((-3 (-2 (|:| -2516 (-114)) (|:| |w| (-225))) "failed") (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1624 ((-3 (-640 (-225)) "failed") (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1636 ((-563) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
+((-1701 (((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 39)) (-1686 (((-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 128)) (-1672 (((-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))) (-684 (-316 (-225)))) 87)) (-1661 (((-379) (-684 (-316 (-225)))) 111)) (-4163 (((-684 (-316 (-225))) (-1257 (-316 (-225))) (-640 (-1169))) 108)) (-1741 (((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 30)) (-1715 (((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 43)) (-1542 (((-684 (-316 (-225))) (-684 (-316 (-225))) (-640 (-1169)) (-1257 (-316 (-225)))) 100)) (-1650 (((-379) (-379) (-640 (-379))) 105) (((-379) (-379) (-379)) 103)) (-1727 (((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 36)))
+(((-205) (-10 -7 (-15 -1650 ((-379) (-379) (-379))) (-15 -1650 ((-379) (-379) (-640 (-379)))) (-15 -1661 ((-379) (-684 (-316 (-225))))) (-15 -4163 ((-684 (-316 (-225))) (-1257 (-316 (-225))) (-640 (-1169)))) (-15 -1542 ((-684 (-316 (-225))) (-684 (-316 (-225))) (-640 (-1169)) (-1257 (-316 (-225))))) (-15 -1672 ((-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))) (-684 (-316 (-225))))) (-15 -1686 ((-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1701 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1715 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1727 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1741 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -205))
+((-1741 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-379)) (-5 *1 (-205)))) (-1727 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-379)) (-5 *1 (-205)))) (-1715 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-379)) (-5 *1 (-205)))) (-1701 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-379)) (-5 *1 (-205)))) (-1686 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379)))) (-5 *1 (-205)))) (-1672 (*1 *2 *3) (-12 (-5 *3 (-684 (-316 (-225)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379)))) (-5 *1 (-205)))) (-1542 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-684 (-316 (-225)))) (-5 *3 (-640 (-1169))) (-5 *4 (-1257 (-316 (-225)))) (-5 *1 (-205)))) (-4163 (*1 *2 *3 *4) (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *4 (-640 (-1169))) (-5 *2 (-684 (-316 (-225)))) (-5 *1 (-205)))) (-1661 (*1 *2 *3) (-12 (-5 *3 (-684 (-316 (-225)))) (-5 *2 (-379)) (-5 *1 (-205)))) (-1650 (*1 *2 *2 *3) (-12 (-5 *3 (-640 (-379))) (-5 *2 (-379)) (-5 *1 (-205)))) (-1650 (*1 *2 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-205)))))
+(-10 -7 (-15 -1650 ((-379) (-379) (-379))) (-15 -1650 ((-379) (-379) (-640 (-379)))) (-15 -1661 ((-379) (-684 (-316 (-225))))) (-15 -4163 ((-684 (-316 (-225))) (-1257 (-316 (-225))) (-640 (-1169)))) (-15 -1542 ((-684 (-316 (-225))) (-684 (-316 (-225))) (-640 (-1169)) (-1257 (-316 (-225))))) (-15 -1672 ((-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))) (-684 (-316 (-225))))) (-15 -1686 ((-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1701 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1715 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1727 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1741 ((-379) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
+((-1677 (((-112) $ $) NIL)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 41)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-4160 (((-1031) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 64)) (-1718 (((-112) $ $) NIL)))
(((-206) (-796)) (T -206))
NIL
(-796)
-((-1677 (((-112) $ $) NIL)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 41)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-3591 (((-1031) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 62)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 41)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-4160 (((-1031) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 62)) (-1718 (((-112) $ $) NIL)))
(((-207) (-796)) (T -207))
NIL
(-796)
-((-1677 (((-112) $ $) NIL)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 40)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-3591 (((-1031) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 66)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 40)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-4160 (((-1031) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 66)) (-1718 (((-112) $ $) NIL)))
(((-208) (-796)) (T -208))
NIL
(-796)
-((-1677 (((-112) $ $) NIL)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 46)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-3591 (((-1031) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 75)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 46)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-4160 (((-1031) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 75)) (-1718 (((-112) $ $) NIL)))
(((-209) (-796)) (T -209))
NIL
(-796)
-((-3993 (((-640 (-1169)) (-1169) (-767)) 23)) (-2845 (((-316 (-225)) (-316 (-225))) 31)) (-2861 (((-112) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) 73)) (-2151 (((-112) (-225) (-225) (-640 (-316 (-225)))) 44)))
-(((-210) (-10 -7 (-15 -3993 ((-640 (-1169)) (-1169) (-767))) (-15 -2845 ((-316 (-225)) (-316 (-225)))) (-15 -2151 ((-112) (-225) (-225) (-640 (-316 (-225))))) (-15 -2861 ((-112) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))))))) (T -210))
-((-2861 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) (-5 *2 (-112)) (-5 *1 (-210)))) (-2151 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-640 (-316 (-225)))) (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-210)))) (-2845 (*1 *2 *2) (-12 (-5 *2 (-316 (-225))) (-5 *1 (-210)))) (-3993 (*1 *2 *3 *4) (-12 (-5 *4 (-767)) (-5 *2 (-640 (-1169))) (-5 *1 (-210)) (-5 *3 (-1169)))))
-(-10 -7 (-15 -3993 ((-640 (-1169)) (-1169) (-767))) (-15 -2845 ((-316 (-225)) (-316 (-225)))) (-15 -2151 ((-112) (-225) (-225) (-640 (-316 (-225))))) (-15 -2861 ((-112) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))))))
-((-1677 (((-112) $ $) NIL)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) 26)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-3703 (((-1031) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) 57)) (-1718 (((-112) $ $) NIL)))
+((-3994 (((-640 (-1169)) (-1169) (-767)) 23)) (-1752 (((-316 (-225)) (-316 (-225))) 31)) (-1777 (((-112) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) 73)) (-1764 (((-112) (-225) (-225) (-640 (-316 (-225)))) 44)))
+(((-210) (-10 -7 (-15 -3994 ((-640 (-1169)) (-1169) (-767))) (-15 -1752 ((-316 (-225)) (-316 (-225)))) (-15 -1764 ((-112) (-225) (-225) (-640 (-316 (-225))))) (-15 -1777 ((-112) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))))))) (T -210))
+((-1777 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) (-5 *2 (-112)) (-5 *1 (-210)))) (-1764 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-640 (-316 (-225)))) (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-210)))) (-1752 (*1 *2 *2) (-12 (-5 *2 (-316 (-225))) (-5 *1 (-210)))) (-3994 (*1 *2 *3 *4) (-12 (-5 *4 (-767)) (-5 *2 (-640 (-1169))) (-5 *1 (-210)) (-5 *3 (-1169)))))
+(-10 -7 (-15 -3994 ((-640 (-1169)) (-1169) (-767))) (-15 -1752 ((-316 (-225)) (-316 (-225)))) (-15 -1764 ((-112) (-225) (-225) (-640 (-316 (-225))))) (-15 -1777 ((-112) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))))))
+((-1677 (((-112) $ $) NIL)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) 26)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-2900 (((-1031) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) 57)) (-1718 (((-112) $ $) NIL)))
(((-211) (-891)) (T -211))
NIL
(-891)
-((-1677 (((-112) $ $) NIL)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) 21)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-3703 (((-1031) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) 21)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-2900 (((-1031) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) NIL)) (-1718 (((-112) $ $) NIL)))
(((-212) (-891)) (T -212))
NIL
(-891)
-((-1677 (((-112) $ $) NIL)) (-4300 ((|#2| $ (-767) |#2|) 11)) (-4293 ((|#2| $ (-767)) 10)) (-1566 (($) 8)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 18)) (-1718 (((-112) $ $) 13)))
-(((-213 |#1| |#2|) (-13 (-1093) (-10 -8 (-15 -1566 ($)) (-15 -4293 (|#2| $ (-767))) (-15 -4300 (|#2| $ (-767) |#2|)))) (-917) (-1093)) (T -213))
-((-1566 (*1 *1) (-12 (-5 *1 (-213 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1093)))) (-4293 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *2 (-1093)) (-5 *1 (-213 *4 *2)) (-14 *4 (-917)))) (-4300 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-213 *4 *2)) (-14 *4 (-917)) (-4 *2 (-1093)))))
-(-13 (-1093) (-10 -8 (-15 -1566 ($)) (-15 -4293 (|#2| $ (-767))) (-15 -4300 (|#2| $ (-767) |#2|))))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2807 (((-1262) $) 36) (((-1262) $ (-917) (-917)) 38)) (-2309 (($ $ (-985)) 19) (((-245 (-1151)) $ (-1169)) 15)) (-1463 (((-1262) $) 34)) (-1693 (((-858) $) 31) (($ (-640 |#1|)) 8)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $ $) 27)) (-1814 (($ $ $) 22)))
-(((-214 |#1|) (-13 (-1093) (-613 (-640 |#1|)) (-10 -8 (-15 -2309 ($ $ (-985))) (-15 -2309 ((-245 (-1151)) $ (-1169))) (-15 -1814 ($ $ $)) (-15 -1826 ($ $ $)) (-15 -1463 ((-1262) $)) (-15 -2807 ((-1262) $)) (-15 -2807 ((-1262) $ (-917) (-917))))) (-13 (-846) (-10 -8 (-15 -2309 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $)) (-15 -2807 ((-1262) $))))) (T -214))
-((-2309 (*1 *1 *1 *2) (-12 (-5 *2 (-985)) (-5 *1 (-214 *3)) (-4 *3 (-13 (-846) (-10 -8 (-15 -2309 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $)) (-15 -2807 ((-1262) $))))))) (-2309 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-245 (-1151))) (-5 *1 (-214 *4)) (-4 *4 (-13 (-846) (-10 -8 (-15 -2309 ((-1151) $ *3)) (-15 -1463 ((-1262) $)) (-15 -2807 ((-1262) $))))))) (-1814 (*1 *1 *1 *1) (-12 (-5 *1 (-214 *2)) (-4 *2 (-13 (-846) (-10 -8 (-15 -2309 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $)) (-15 -2807 ((-1262) $))))))) (-1826 (*1 *1 *1 *1) (-12 (-5 *1 (-214 *2)) (-4 *2 (-13 (-846) (-10 -8 (-15 -2309 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $)) (-15 -2807 ((-1262) $))))))) (-1463 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-214 *3)) (-4 *3 (-13 (-846) (-10 -8 (-15 -2309 ((-1151) $ (-1169))) (-15 -1463 (*2 $)) (-15 -2807 (*2 $))))))) (-2807 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-214 *3)) (-4 *3 (-13 (-846) (-10 -8 (-15 -2309 ((-1151) $ (-1169))) (-15 -1463 (*2 $)) (-15 -2807 (*2 $))))))) (-2807 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1262)) (-5 *1 (-214 *4)) (-4 *4 (-13 (-846) (-10 -8 (-15 -2309 ((-1151) $ (-1169))) (-15 -1463 (*2 $)) (-15 -2807 (*2 $))))))))
-(-13 (-1093) (-613 (-640 |#1|)) (-10 -8 (-15 -2309 ($ $ (-985))) (-15 -2309 ((-245 (-1151)) $ (-1169))) (-15 -1814 ($ $ $)) (-15 -1826 ($ $ $)) (-15 -1463 ((-1262) $)) (-15 -2807 ((-1262) $)) (-15 -2807 ((-1262) $ (-917) (-917)))))
-((-3614 ((|#2| |#4| (-1 |#2| |#2|)) 46)))
-(((-215 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3614 (|#2| |#4| (-1 |#2| |#2|)))) (-363) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|)) (T -215))
-((-3614 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-363)) (-4 *6 (-1233 (-407 *2))) (-4 *2 (-1233 *5)) (-5 *1 (-215 *5 *2 *6 *3)) (-4 *3 (-342 *5 *2 *6)))))
-(-10 -7 (-15 -3614 (|#2| |#4| (-1 |#2| |#2|))))
-((-1317 ((|#2| |#2| (-767) |#2|) 42)) (-2506 ((|#2| |#2| (-767) |#2|) 38)) (-4147 (((-640 |#2|) (-640 (-2 (|:| |deg| (-767)) (|:| -2169 |#2|)))) 56)) (-4155 (((-640 (-2 (|:| |deg| (-767)) (|:| -2169 |#2|))) |#2|) 52)) (-2247 (((-112) |#2|) 49)) (-2184 (((-418 |#2|) |#2|) 76)) (-2174 (((-418 |#2|) |#2|) 75)) (-1704 ((|#2| |#2| (-767) |#2|) 36)) (-2112 (((-2 (|:| |cont| |#1|) (|:| -2760 (-640 (-2 (|:| |irr| |#2|) (|:| -1650 (-563)))))) |#2| (-112)) 68)))
-(((-216 |#1| |#2|) (-10 -7 (-15 -2174 ((-418 |#2|) |#2|)) (-15 -2184 ((-418 |#2|) |#2|)) (-15 -2112 ((-2 (|:| |cont| |#1|) (|:| -2760 (-640 (-2 (|:| |irr| |#2|) (|:| -1650 (-563)))))) |#2| (-112))) (-15 -4155 ((-640 (-2 (|:| |deg| (-767)) (|:| -2169 |#2|))) |#2|)) (-15 -4147 ((-640 |#2|) (-640 (-2 (|:| |deg| (-767)) (|:| -2169 |#2|))))) (-15 -1704 (|#2| |#2| (-767) |#2|)) (-15 -2506 (|#2| |#2| (-767) |#2|)) (-15 -1317 (|#2| |#2| (-767) |#2|)) (-15 -2247 ((-112) |#2|))) (-349) (-1233 |#1|)) (T -216))
-((-2247 (*1 *2 *3) (-12 (-4 *4 (-349)) (-5 *2 (-112)) (-5 *1 (-216 *4 *3)) (-4 *3 (-1233 *4)))) (-1317 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-767)) (-4 *4 (-349)) (-5 *1 (-216 *4 *2)) (-4 *2 (-1233 *4)))) (-2506 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-767)) (-4 *4 (-349)) (-5 *1 (-216 *4 *2)) (-4 *2 (-1233 *4)))) (-1704 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-767)) (-4 *4 (-349)) (-5 *1 (-216 *4 *2)) (-4 *2 (-1233 *4)))) (-4147 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| |deg| (-767)) (|:| -2169 *5)))) (-4 *5 (-1233 *4)) (-4 *4 (-349)) (-5 *2 (-640 *5)) (-5 *1 (-216 *4 *5)))) (-4155 (*1 *2 *3) (-12 (-4 *4 (-349)) (-5 *2 (-640 (-2 (|:| |deg| (-767)) (|:| -2169 *3)))) (-5 *1 (-216 *4 *3)) (-4 *3 (-1233 *4)))) (-2112 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-349)) (-5 *2 (-2 (|:| |cont| *5) (|:| -2760 (-640 (-2 (|:| |irr| *3) (|:| -1650 (-563))))))) (-5 *1 (-216 *5 *3)) (-4 *3 (-1233 *5)))) (-2184 (*1 *2 *3) (-12 (-4 *4 (-349)) (-5 *2 (-418 *3)) (-5 *1 (-216 *4 *3)) (-4 *3 (-1233 *4)))) (-2174 (*1 *2 *3) (-12 (-4 *4 (-349)) (-5 *2 (-418 *3)) (-5 *1 (-216 *4 *3)) (-4 *3 (-1233 *4)))))
-(-10 -7 (-15 -2174 ((-418 |#2|) |#2|)) (-15 -2184 ((-418 |#2|) |#2|)) (-15 -2112 ((-2 (|:| |cont| |#1|) (|:| -2760 (-640 (-2 (|:| |irr| |#2|) (|:| -1650 (-563)))))) |#2| (-112))) (-15 -4155 ((-640 (-2 (|:| |deg| (-767)) (|:| -2169 |#2|))) |#2|)) (-15 -4147 ((-640 |#2|) (-640 (-2 (|:| |deg| (-767)) (|:| -2169 |#2|))))) (-15 -1704 (|#2| |#2| (-767) |#2|)) (-15 -2506 (|#2| |#2| (-767) |#2|)) (-15 -1317 (|#2| |#2| (-767) |#2|)) (-15 -2247 ((-112) |#2|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3401 (((-563) $) NIL (|has| (-563) (-307)))) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-1919 (((-112) $ $) NIL)) (-1857 (((-563) $) NIL (|has| (-563) (-816)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (|has| (-563) (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-563) (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| (-563) (-1034 (-563))))) (-2058 (((-563) $) NIL) (((-1169) $) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| (-563) (-1034 (-563)))) (((-563) $) NIL (|has| (-563) (-1034 (-563))))) (-3090 (($ $ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) NIL (|has| (-563) (-545)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3101 (((-112) $) NIL (|has| (-563) (-816)))) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-563) (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-563) (-882 (-379))))) (-3827 (((-112) $) NIL)) (-2711 (($ $) NIL)) (-2143 (((-563) $) NIL)) (-2408 (((-3 $ "failed") $) NIL (|has| (-563) (-1144)))) (-1419 (((-112) $) NIL (|has| (-563) (-816)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3084 (($ $ $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| (-563) (-846)))) (-2240 (($ (-1 (-563) (-563)) $) NIL)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| (-563) (-1144)) CONST)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-4215 (($ $) NIL (|has| (-563) (-307))) (((-407 (-563)) $) NIL)) (-1583 (((-563) $) NIL (|has| (-563) (-545)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1540 (($ $ (-640 (-563)) (-640 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-563) (-563)) NIL (|has| (-563) (-309 (-563)))) (($ $ (-294 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-294 (-563)))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-1169)) (-640 (-563))) NIL (|has| (-563) (-514 (-1169) (-563)))) (($ $ (-1169) (-563)) NIL (|has| (-563) (-514 (-1169) (-563))))) (-2628 (((-767) $) NIL)) (-2309 (($ $ (-563)) NIL (|has| (-563) (-286 (-563) (-563))))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-4202 (($ $) NIL (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-1801 (($ $) NIL)) (-2154 (((-563) $) NIL)) (-3605 (($ (-407 (-563))) 9)) (-2220 (((-888 (-563)) $) NIL (|has| (-563) (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| (-563) (-611 (-888 (-379))))) (((-536) $) NIL (|has| (-563) (-611 (-536)))) (((-379) $) NIL (|has| (-563) (-1018))) (((-225) $) NIL (|has| (-563) (-1018)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-563) (-905))))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) 8) (($ (-563)) NIL) (($ (-1169)) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) NIL) (((-1000 10) $) 10)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| (-563) (-905))) (|has| (-563) (-145))))) (-1675 (((-767)) NIL)) (-4194 (((-563) $) NIL (|has| (-563) (-545)))) (-2126 (((-112) $ $) NIL)) (-2509 (($ $) NIL (|has| (-563) (-816)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $) NIL (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-1778 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1756 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1744 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1837 (($ $ $) NIL) (($ (-563) (-563)) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ (-563) $) NIL) (($ $ (-563)) NIL)))
-(((-217) (-13 (-988 (-563)) (-610 (-407 (-563))) (-610 (-1000 10)) (-10 -8 (-15 -4215 ((-407 (-563)) $)) (-15 -3605 ($ (-407 (-563))))))) (T -217))
-((-4215 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-217)))) (-3605 (*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-217)))))
-(-13 (-988 (-563)) (-610 (-407 (-563))) (-610 (-1000 10)) (-10 -8 (-15 -4215 ((-407 (-563)) $)) (-15 -3605 ($ (-407 (-563))))))
-((-1677 (((-112) $ $) NIL)) (-2918 (((-1111) $) 13)) (-3573 (((-1151) $) NIL)) (-2917 (((-483) $) 10)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 25) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3359 (((-1128) $) 15)) (-1718 (((-112) $ $) NIL)))
-(((-218) (-13 (-1076) (-10 -8 (-15 -2917 ((-483) $)) (-15 -2918 ((-1111) $)) (-15 -3359 ((-1128) $))))) (T -218))
-((-2917 (*1 *2 *1) (-12 (-5 *2 (-483)) (-5 *1 (-218)))) (-2918 (*1 *2 *1) (-12 (-5 *2 (-1111)) (-5 *1 (-218)))) (-3359 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-218)))))
-(-13 (-1076) (-10 -8 (-15 -2917 ((-483) $)) (-15 -2918 ((-1111) $)) (-15 -3359 ((-1128) $))))
-((-3698 (((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085 (-839 |#2|)) (-1151)) 28) (((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085 (-839 |#2|))) 24)) (-3030 (((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1169) (-839 |#2|) (-839 |#2|) (-112)) 17)))
-(((-219 |#1| |#2|) (-10 -7 (-15 -3698 ((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085 (-839 |#2|)))) (-15 -3698 ((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085 (-839 |#2|)) (-1151))) (-15 -3030 ((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1169) (-839 |#2|) (-839 |#2|) (-112)))) (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-955) (-29 |#1|))) (T -219))
-((-3030 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-1169)) (-5 *6 (-112)) (-4 *7 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-4 *3 (-13 (-1193) (-955) (-29 *7))) (-5 *2 (-3 (|:| |f1| (-839 *3)) (|:| |f2| (-640 (-839 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *7 *3)) (-5 *5 (-839 *3)))) (-3698 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1085 (-839 *3))) (-5 *5 (-1151)) (-4 *3 (-13 (-1193) (-955) (-29 *6))) (-4 *6 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (|:| |f1| (-839 *3)) (|:| |f2| (-640 (-839 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *6 *3)))) (-3698 (*1 *2 *3 *4) (-12 (-5 *4 (-1085 (-839 *3))) (-4 *3 (-13 (-1193) (-955) (-29 *5))) (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (|:| |f1| (-839 *3)) (|:| |f2| (-640 (-839 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *5 *3)))))
-(-10 -7 (-15 -3698 ((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085 (-839 |#2|)))) (-15 -3698 ((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085 (-839 |#2|)) (-1151))) (-15 -3030 ((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1169) (-839 |#2|) (-839 |#2|) (-112))))
-((-3698 (((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-407 (-948 |#1|)))) (-1151)) 46) (((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-407 (-948 |#1|))))) 43) (((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-316 |#1|))) (-1151)) 47) (((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-316 |#1|)))) 20)))
-(((-220 |#1|) (-10 -7 (-15 -3698 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-316 |#1|))))) (-15 -3698 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-316 |#1|))) (-1151))) (-15 -3698 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-407 (-948 |#1|)))))) (-15 -3698 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-407 (-948 |#1|)))) (-1151)))) (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (T -220))
-((-3698 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1085 (-839 (-407 (-948 *6))))) (-5 *5 (-1151)) (-5 *3 (-407 (-948 *6))) (-4 *6 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (|:| |f1| (-839 (-316 *6))) (|:| |f2| (-640 (-839 (-316 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *6)))) (-3698 (*1 *2 *3 *4) (-12 (-5 *4 (-1085 (-839 (-407 (-948 *5))))) (-5 *3 (-407 (-948 *5))) (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (|:| |f1| (-839 (-316 *5))) (|:| |f2| (-640 (-839 (-316 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *5)))) (-3698 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-407 (-948 *6))) (-5 *4 (-1085 (-839 (-316 *6)))) (-5 *5 (-1151)) (-4 *6 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (|:| |f1| (-839 (-316 *6))) (|:| |f2| (-640 (-839 (-316 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *6)))) (-3698 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1085 (-839 (-316 *5)))) (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (|:| |f1| (-839 (-316 *5))) (|:| |f2| (-640 (-839 (-316 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *5)))))
-(-10 -7 (-15 -3698 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-316 |#1|))))) (-15 -3698 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-316 |#1|))) (-1151))) (-15 -3698 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-407 (-948 |#1|)))))) (-15 -3698 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-407 (-948 |#1|)))) (-1151))))
-((-2444 (((-2 (|:| -1574 (-1165 |#1|)) (|:| |deg| (-917))) (-1165 |#1|)) 21)) (-2213 (((-640 (-316 |#2|)) (-316 |#2|) (-917)) 42)))
-(((-221 |#1| |#2|) (-10 -7 (-15 -2444 ((-2 (|:| -1574 (-1165 |#1|)) (|:| |deg| (-917))) (-1165 |#1|))) (-15 -2213 ((-640 (-316 |#2|)) (-316 |#2|) (-917)))) (-1045) (-13 (-555) (-846))) (T -221))
-((-2213 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-4 *6 (-13 (-555) (-846))) (-5 *2 (-640 (-316 *6))) (-5 *1 (-221 *5 *6)) (-5 *3 (-316 *6)) (-4 *5 (-1045)))) (-2444 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-5 *2 (-2 (|:| -1574 (-1165 *4)) (|:| |deg| (-917)))) (-5 *1 (-221 *4 *5)) (-5 *3 (-1165 *4)) (-4 *5 (-13 (-555) (-846))))))
-(-10 -7 (-15 -2444 ((-2 (|:| -1574 (-1165 |#1|)) (|:| |deg| (-917))) (-1165 |#1|))) (-15 -2213 ((-640 (-316 |#2|)) (-316 |#2|) (-917))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2844 ((|#1| $) NIL)) (-2636 ((|#1| $) 25)) (-2759 (((-112) $ (-767)) NIL)) (-4239 (($) NIL T CONST)) (-3866 (($ $) NIL)) (-2907 (($ $) 31)) (-4325 ((|#1| |#1| $) NIL)) (-3017 ((|#1| $) NIL)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3415 (((-767) $) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2964 ((|#1| $) NIL)) (-3900 ((|#1| |#1| $) 28)) (-3847 ((|#1| |#1| $) 30)) (-1812 (($ |#1| $) NIL)) (-4236 (((-767) $) 27)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2822 ((|#1| $) NIL)) (-1910 ((|#1| $) 26)) (-2068 ((|#1| $) 24)) (-3755 ((|#1| $) NIL)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3958 ((|#1| |#1| $) NIL)) (-3756 (((-112) $) 9)) (-3135 (($) NIL)) (-1749 ((|#1| $) NIL)) (-1385 (($) NIL) (($ (-640 |#1|)) 16)) (-2370 (((-767) $) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1425 ((|#1| $) 13)) (-2233 (($ (-640 |#1|)) NIL)) (-3498 ((|#1| $) NIL)) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-222 |#1|) (-13 (-254 |#1|) (-10 -8 (-15 -1385 ($ (-640 |#1|))))) (-1093)) (T -222))
-((-1385 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-222 *3)))))
-(-13 (-254 |#1|) (-10 -8 (-15 -1385 ($ (-640 |#1|)))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2298 (($ (-316 |#1|)) 23)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-4134 (((-112) $) NIL)) (-2131 (((-3 (-316 |#1|) "failed") $) NIL)) (-2058 (((-316 |#1|) $) NIL)) (-2751 (($ $) 31)) (-3400 (((-3 $ "failed") $) NIL)) (-3827 (((-112) $) NIL)) (-2240 (($ (-1 (-316 |#1|) (-316 |#1|)) $) NIL)) (-2726 (((-316 |#1|) $) NIL)) (-1947 (($ $) 30)) (-3573 (((-1151) $) NIL)) (-4177 (((-112) $) NIL)) (-1694 (((-1113) $) NIL)) (-4333 (($ (-767)) NIL)) (-2115 (($ $) 32)) (-4167 (((-563) $) NIL)) (-1693 (((-858) $) 57) (($ (-563)) NIL) (($ (-316 |#1|)) NIL)) (-4319 (((-316 |#1|) $ $) NIL)) (-1675 (((-767)) NIL)) (-2241 (($) 25 T CONST)) (-2254 (($) 50 T CONST)) (-1718 (((-112) $ $) 28)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) 19)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 24) (($ (-316 |#1|) $) 18)))
-(((-223 |#1| |#2|) (-13 (-617 (-316 |#1|)) (-1034 (-316 |#1|)) (-10 -8 (-15 -2726 ((-316 |#1|) $)) (-15 -1947 ($ $)) (-15 -2751 ($ $)) (-15 -4319 ((-316 |#1|) $ $)) (-15 -4333 ($ (-767))) (-15 -4177 ((-112) $)) (-15 -4134 ((-112) $)) (-15 -4167 ((-563) $)) (-15 -2240 ($ (-1 (-316 |#1|) (-316 |#1|)) $)) (-15 -2298 ($ (-316 |#1|))) (-15 -2115 ($ $)))) (-13 (-1045) (-846)) (-640 (-1169))) (T -223))
-((-2726 (*1 *2 *1) (-12 (-5 *2 (-316 *3)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846))) (-14 *4 (-640 (-1169))))) (-1947 (*1 *1 *1) (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1045) (-846))) (-14 *3 (-640 (-1169))))) (-2751 (*1 *1 *1) (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1045) (-846))) (-14 *3 (-640 (-1169))))) (-4319 (*1 *2 *1 *1) (-12 (-5 *2 (-316 *3)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846))) (-14 *4 (-640 (-1169))))) (-4333 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846))) (-14 *4 (-640 (-1169))))) (-4177 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846))) (-14 *4 (-640 (-1169))))) (-4134 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846))) (-14 *4 (-640 (-1169))))) (-4167 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846))) (-14 *4 (-640 (-1169))))) (-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-316 *3) (-316 *3))) (-4 *3 (-13 (-1045) (-846))) (-5 *1 (-223 *3 *4)) (-14 *4 (-640 (-1169))))) (-2298 (*1 *1 *2) (-12 (-5 *2 (-316 *3)) (-4 *3 (-13 (-1045) (-846))) (-5 *1 (-223 *3 *4)) (-14 *4 (-640 (-1169))))) (-2115 (*1 *1 *1) (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1045) (-846))) (-14 *3 (-640 (-1169))))))
-(-13 (-617 (-316 |#1|)) (-1034 (-316 |#1|)) (-10 -8 (-15 -2726 ((-316 |#1|) $)) (-15 -1947 ($ $)) (-15 -2751 ($ $)) (-15 -4319 ((-316 |#1|) $ $)) (-15 -4333 ($ (-767))) (-15 -4177 ((-112) $)) (-15 -4134 ((-112) $)) (-15 -4167 ((-563) $)) (-15 -2240 ($ (-1 (-316 |#1|) (-316 |#1|)) $)) (-15 -2298 ($ (-316 |#1|))) (-15 -2115 ($ $))))
-((-2049 (((-112) (-1151)) 22)) (-2016 (((-3 (-839 |#2|) "failed") (-609 |#2|) |#2| (-839 |#2|) (-839 |#2|) (-112)) 32)) (-3904 (((-3 (-112) "failed") (-1165 |#2|) (-839 |#2|) (-839 |#2|) (-112)) 73) (((-3 (-112) "failed") (-948 |#1|) (-1169) (-839 |#2|) (-839 |#2|) (-112)) 74)))
-(((-224 |#1| |#2|) (-10 -7 (-15 -2049 ((-112) (-1151))) (-15 -2016 ((-3 (-839 |#2|) "failed") (-609 |#2|) |#2| (-839 |#2|) (-839 |#2|) (-112))) (-15 -3904 ((-3 (-112) "failed") (-948 |#1|) (-1169) (-839 |#2|) (-839 |#2|) (-112))) (-15 -3904 ((-3 (-112) "failed") (-1165 |#2|) (-839 |#2|) (-839 |#2|) (-112)))) (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-29 |#1|))) (T -224))
-((-3904 (*1 *2 *3 *4 *4 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1165 *6)) (-5 *4 (-839 *6)) (-4 *6 (-13 (-1193) (-29 *5))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-224 *5 *6)))) (-3904 (*1 *2 *3 *4 *5 *5 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-948 *6)) (-5 *4 (-1169)) (-5 *5 (-839 *7)) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-4 *7 (-13 (-1193) (-29 *6))) (-5 *1 (-224 *6 *7)))) (-2016 (*1 *2 *3 *4 *2 *2 *5) (|partial| -12 (-5 *2 (-839 *4)) (-5 *3 (-609 *4)) (-5 *5 (-112)) (-4 *4 (-13 (-1193) (-29 *6))) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-224 *6 *4)))) (-2049 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-112)) (-5 *1 (-224 *4 *5)) (-4 *5 (-13 (-1193) (-29 *4))))))
-(-10 -7 (-15 -2049 ((-112) (-1151))) (-15 -2016 ((-3 (-839 |#2|) "failed") (-609 |#2|) |#2| (-839 |#2|) (-839 |#2|) (-112))) (-15 -3904 ((-3 (-112) "failed") (-948 |#1|) (-1169) (-839 |#2|) (-839 |#2|) (-112))) (-15 -3904 ((-3 (-112) "failed") (-1165 |#2|) (-839 |#2|) (-839 |#2|) (-112))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 87)) (-3401 (((-563) $) 98)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2421 (($ $) NIL)) (-1771 (($ $) 75)) (-1619 (($ $) 63)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-2186 (($ $) 54)) (-1919 (((-112) $ $) NIL)) (-1748 (($ $) 73)) (-1597 (($ $) 61)) (-1857 (((-563) $) 115)) (-1794 (($ $) 78)) (-1643 (($ $) 65)) (-4239 (($) NIL T CONST)) (-3796 (($ $) NIL)) (-2131 (((-3 (-563) "failed") $) 114) (((-3 (-407 (-563)) "failed") $) 111)) (-2058 (((-563) $) 112) (((-407 (-563)) $) 109)) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) 91)) (-3503 (((-407 (-563)) $ (-767)) 107) (((-407 (-563)) $ (-767) (-767)) 106)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3102 (((-917)) 27) (((-917) (-917)) NIL (|has| $ (-6 -4398)))) (-3101 (((-112) $) NIL)) (-2180 (($) 37)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL)) (-3254 (((-563) $) 33)) (-3827 (((-112) $) NIL)) (-1645 (($ $ (-563)) NIL)) (-3793 (($ $) NIL)) (-1419 (((-112) $) 86)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3084 (($ $ $) 51) (($) 32 (-12 (-2176 (|has| $ (-6 -4390))) (-2176 (|has| $ (-6 -4398)))))) (-1777 (($ $ $) 50) (($) 31 (-12 (-2176 (|has| $ (-6 -4390))) (-2176 (|has| $ (-6 -4398)))))) (-4050 (((-563) $) 25)) (-2165 (($ $) 28)) (-3097 (($ $) 55)) (-4371 (($ $) 60)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-3324 (((-917) (-563)) NIL (|has| $ (-6 -4398)))) (-1694 (((-1113) $) 89)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-4215 (($ $) NIL)) (-1583 (($ $) NIL)) (-4340 (($ (-563) (-563)) NIL) (($ (-563) (-563) (-917)) 99)) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1654 (((-563) $) 26)) (-3480 (($) 36)) (-3368 (($ $) 59)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-4113 (((-917)) NIL) (((-917) (-917)) NIL (|has| $ (-6 -4398)))) (-4202 (($ $ (-767)) NIL) (($ $) 92)) (-3814 (((-917) (-563)) NIL (|has| $ (-6 -4398)))) (-1806 (($ $) 76)) (-1656 (($ $) 66)) (-1784 (($ $) 77)) (-1630 (($ $) 64)) (-1759 (($ $) 74)) (-1608 (($ $) 62)) (-2220 (((-379) $) 103) (((-225) $) 100) (((-888 (-379)) $) NIL) (((-536) $) 43)) (-1693 (((-858) $) 40) (($ (-563)) 58) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-563)) 58) (($ (-407 (-563))) NIL)) (-1675 (((-767)) NIL)) (-4194 (($ $) NIL)) (-1734 (((-917)) 30) (((-917) (-917)) NIL (|has| $ (-6 -4398)))) (-4211 (((-917)) 23)) (-1840 (($ $) 81)) (-1695 (($ $) 69) (($ $ $) 108)) (-2126 (((-112) $ $) NIL)) (-1817 (($ $) 79)) (-1667 (($ $) 67)) (-1862 (($ $) 84)) (-1722 (($ $) 72)) (-1311 (($ $) 82)) (-1735 (($ $) 70)) (-1851 (($ $) 83)) (-1710 (($ $) 71)) (-1829 (($ $) 80)) (-1680 (($ $) 68)) (-2509 (($ $) 116)) (-2241 (($) 34 T CONST)) (-2254 (($) 35 T CONST)) (-3741 (((-1151) $) 17) (((-1151) $ (-112)) 19) (((-1262) (-818) $) 20) (((-1262) (-818) $ (-112)) 21)) (-1341 (($ $) 95)) (-3209 (($ $ (-767)) NIL) (($ $) NIL)) (-3929 (($ $ $) 97)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 52)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 44)) (-1837 (($ $ $) 85) (($ $ (-563)) 53)) (-1826 (($ $) 45) (($ $ $) 47)) (-1814 (($ $ $) 46)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) 56) (($ $ (-407 (-563))) 127) (($ $ $) 57)) (* (($ (-917) $) 29) (($ (-767) $) NIL) (($ (-563) $) 49) (($ $ $) 48) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
-(((-225) (-13 (-404) (-233) (-824) (-1193) (-611 (-536)) (-10 -8 (-15 -1837 ($ $ (-563))) (-15 ** ($ $ $)) (-15 -3480 ($)) (-15 -2165 ($ $)) (-15 -3097 ($ $)) (-15 -1695 ($ $ $)) (-15 -1341 ($ $)) (-15 -3929 ($ $ $)) (-15 -3503 ((-407 (-563)) $ (-767))) (-15 -3503 ((-407 (-563)) $ (-767) (-767)))))) (T -225))
-((** (*1 *1 *1 *1) (-5 *1 (-225))) (-1837 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-225)))) (-3480 (*1 *1) (-5 *1 (-225))) (-2165 (*1 *1 *1) (-5 *1 (-225))) (-3097 (*1 *1 *1) (-5 *1 (-225))) (-1695 (*1 *1 *1 *1) (-5 *1 (-225))) (-1341 (*1 *1 *1) (-5 *1 (-225))) (-3929 (*1 *1 *1 *1) (-5 *1 (-225))) (-3503 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-225)))) (-3503 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-225)))))
-(-13 (-404) (-233) (-824) (-1193) (-611 (-536)) (-10 -8 (-15 -1837 ($ $ (-563))) (-15 ** ($ $ $)) (-15 -3480 ($)) (-15 -2165 ($ $)) (-15 -3097 ($ $)) (-15 -1695 ($ $ $)) (-15 -1341 ($ $)) (-15 -3929 ($ $ $)) (-15 -3503 ((-407 (-563)) $ (-767))) (-15 -3503 ((-407 (-563)) $ (-767) (-767)))))
-((-2507 (((-169 (-225)) (-767) (-169 (-225))) 11) (((-225) (-767) (-225)) 12)) (-3210 (((-169 (-225)) (-169 (-225))) 13) (((-225) (-225)) 14)) (-3579 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 19) (((-225) (-225) (-225)) 22)) (-1760 (((-169 (-225)) (-169 (-225))) 25) (((-225) (-225)) 24)) (-2736 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 43) (((-225) (-225) (-225)) 35)) (-2040 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 48) (((-225) (-225) (-225)) 45)) (-4271 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 15) (((-225) (-225) (-225)) 16)) (-3988 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 17) (((-225) (-225) (-225)) 18)) (-3336 (((-169 (-225)) (-169 (-225))) 60) (((-225) (-225)) 59)) (-4252 (((-225) (-225)) 54) (((-169 (-225)) (-169 (-225))) 58)) (-1341 (((-169 (-225)) (-169 (-225))) 8) (((-225) (-225)) 9)) (-3929 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 30) (((-225) (-225) (-225)) 26)))
-(((-226) (-10 -7 (-15 -1341 ((-225) (-225))) (-15 -1341 ((-169 (-225)) (-169 (-225)))) (-15 -3929 ((-225) (-225) (-225))) (-15 -3929 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -3210 ((-225) (-225))) (-15 -3210 ((-169 (-225)) (-169 (-225)))) (-15 -1760 ((-225) (-225))) (-15 -1760 ((-169 (-225)) (-169 (-225)))) (-15 -2507 ((-225) (-767) (-225))) (-15 -2507 ((-169 (-225)) (-767) (-169 (-225)))) (-15 -4271 ((-225) (-225) (-225))) (-15 -4271 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -2736 ((-225) (-225) (-225))) (-15 -2736 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -3988 ((-225) (-225) (-225))) (-15 -3988 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -2040 ((-225) (-225) (-225))) (-15 -2040 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -4252 ((-169 (-225)) (-169 (-225)))) (-15 -4252 ((-225) (-225))) (-15 -3336 ((-225) (-225))) (-15 -3336 ((-169 (-225)) (-169 (-225)))) (-15 -3579 ((-225) (-225) (-225))) (-15 -3579 ((-169 (-225)) (-169 (-225)) (-169 (-225)))))) (T -226))
-((-3579 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-3579 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-3336 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-3336 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-4252 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-4252 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-2040 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-2040 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-3988 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-3988 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-2736 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-2736 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-4271 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-4271 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-2507 (*1 *2 *3 *2) (-12 (-5 *2 (-169 (-225))) (-5 *3 (-767)) (-5 *1 (-226)))) (-2507 (*1 *2 *3 *2) (-12 (-5 *2 (-225)) (-5 *3 (-767)) (-5 *1 (-226)))) (-1760 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-1760 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-3210 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-3210 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-3929 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-3929 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-1341 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-1341 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))))
-(-10 -7 (-15 -1341 ((-225) (-225))) (-15 -1341 ((-169 (-225)) (-169 (-225)))) (-15 -3929 ((-225) (-225) (-225))) (-15 -3929 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -3210 ((-225) (-225))) (-15 -3210 ((-169 (-225)) (-169 (-225)))) (-15 -1760 ((-225) (-225))) (-15 -1760 ((-169 (-225)) (-169 (-225)))) (-15 -2507 ((-225) (-767) (-225))) (-15 -2507 ((-169 (-225)) (-767) (-169 (-225)))) (-15 -4271 ((-225) (-225) (-225))) (-15 -4271 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -2736 ((-225) (-225) (-225))) (-15 -2736 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -3988 ((-225) (-225) (-225))) (-15 -3988 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -2040 ((-225) (-225) (-225))) (-15 -2040 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -4252 ((-169 (-225)) (-169 (-225)))) (-15 -4252 ((-225) (-225))) (-15 -3336 ((-225) (-225))) (-15 -3336 ((-169 (-225)) (-169 (-225)))) (-15 -3579 ((-225) (-225) (-225))) (-15 -3579 ((-169 (-225)) (-169 (-225)) (-169 (-225)))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3212 (($ (-767) (-767)) NIL)) (-3888 (($ $ $) NIL)) (-3493 (($ (-1257 |#1|)) NIL) (($ $) NIL)) (-1944 (($ |#1| |#1| |#1|) 32)) (-3129 (((-112) $) NIL)) (-4311 (($ $ (-563) (-563)) NIL)) (-4004 (($ $ (-563) (-563)) NIL)) (-1461 (($ $ (-563) (-563) (-563) (-563)) NIL)) (-2767 (($ $) NIL)) (-1937 (((-112) $) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-4356 (($ $ (-563) (-563) $) NIL)) (-1849 ((|#1| $ (-563) (-563) |#1|) NIL) (($ $ (-640 (-563)) (-640 (-563)) $) NIL)) (-4327 (($ $ (-563) (-1257 |#1|)) NIL)) (-4175 (($ $ (-563) (-1257 |#1|)) NIL)) (-4346 (($ |#1| |#1| |#1|) 31)) (-3845 (($ (-767) |#1|) NIL)) (-4239 (($) NIL T CONST)) (-4069 (($ $) NIL (|has| |#1| (-307)))) (-2368 (((-1257 |#1|) $ (-563)) NIL)) (-4121 (($ |#1|) 30)) (-1958 (($ |#1|) 29)) (-1881 (($ |#1|) 28)) (-2522 (((-767) $) NIL (|has| |#1| (-555)))) (-4355 ((|#1| $ (-563) (-563) |#1|) NIL)) (-4293 ((|#1| $ (-563) (-563)) NIL)) (-2659 (((-640 |#1|) $) NIL)) (-1997 (((-767) $) NIL (|has| |#1| (-555)))) (-2345 (((-640 (-1257 |#1|)) $) NIL (|has| |#1| (-555)))) (-2381 (((-767) $) NIL)) (-1566 (($ (-767) (-767) |#1|) NIL)) (-2393 (((-767) $) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-3977 ((|#1| $) NIL (|has| |#1| (-6 (-4409 "*"))))) (-2013 (((-563) $) NIL)) (-3650 (((-563) $) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1859 (((-563) $) NIL)) (-2207 (((-563) $) NIL)) (-4038 (($ (-640 (-640 |#1|))) 11)) (-4345 (($ (-1 |#1| |#1|) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-4136 (((-640 (-640 |#1|)) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2591 (((-3 $ "failed") $) NIL (|has| |#1| (-363)))) (-3406 (($) 12)) (-3757 (($ $ $) NIL)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2358 (($ $ |#1|) NIL)) (-3008 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#1| $ (-563) (-563)) NIL) ((|#1| $ (-563) (-563) |#1|) NIL) (($ $ (-640 (-563)) (-640 (-563))) NIL)) (-2104 (($ (-640 |#1|)) NIL) (($ (-640 $)) NIL)) (-2717 (((-112) $) NIL)) (-3848 ((|#1| $) NIL (|has| |#1| (-6 (-4409 "*"))))) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) NIL)) (-1912 (((-1257 |#1|) $ (-563)) NIL)) (-1693 (($ (-1257 |#1|)) NIL) (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-3280 (((-112) $) NIL)) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1826 (($ $ $) NIL) (($ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-563) $) NIL) (((-1257 |#1|) $ (-1257 |#1|)) 15) (((-1257 |#1|) (-1257 |#1|) $) NIL) (((-939 |#1|) $ (-939 |#1|)) 20)) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-227 |#1|) (-13 (-682 |#1| (-1257 |#1|) (-1257 |#1|)) (-10 -8 (-15 * ((-939 |#1|) $ (-939 |#1|))) (-15 -3406 ($)) (-15 -1881 ($ |#1|)) (-15 -1958 ($ |#1|)) (-15 -4121 ($ |#1|)) (-15 -4346 ($ |#1| |#1| |#1|)) (-15 -1944 ($ |#1| |#1| |#1|)))) (-13 (-363) (-1193))) (T -227))
-((* (*1 *2 *1 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193))) (-5 *1 (-227 *3)))) (-3406 (*1 *1) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))) (-1881 (*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))) (-1958 (*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))) (-4121 (*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))) (-4346 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))) (-1944 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))))
-(-13 (-682 |#1| (-1257 |#1|) (-1257 |#1|)) (-10 -8 (-15 * ((-939 |#1|) $ (-939 |#1|))) (-15 -3406 ($)) (-15 -1881 ($ |#1|)) (-15 -1958 ($ |#1|)) (-15 -4121 ($ |#1|)) (-15 -4346 ($ |#1| |#1| |#1|)) (-15 -1944 ($ |#1| |#1| |#1|))))
-((-2812 (($ (-1 (-112) |#2|) $) 15)) (-2705 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 24)) (-3890 (($) NIL) (($ (-640 |#2|)) 11)) (-1718 (((-112) $ $) 22)))
-(((-228 |#1| |#2|) (-10 -8 (-15 -2812 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2705 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2705 (|#1| |#2| |#1|)) (-15 -3890 (|#1| (-640 |#2|))) (-15 -3890 (|#1|)) (-15 -1718 ((-112) |#1| |#1|))) (-229 |#2|) (-1093)) (T -228))
-NIL
-(-10 -8 (-15 -2812 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2705 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2705 (|#1| |#2| |#1|)) (-15 -3890 (|#1| (-640 |#2|))) (-15 -3890 (|#1|)) (-15 -1718 ((-112) |#1| |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2759 (((-112) $ (-767)) 8)) (-2812 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4407)))) (-4239 (($) 7 T CONST)) (-3813 (($ $) 58 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-2705 (($ |#1| $) 47 (|has| $ (-6 -4407))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4407)))) (-1459 (($ |#1| $) 57 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4407)))) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2964 ((|#1| $) 39)) (-1812 (($ |#1| $) 40)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3755 ((|#1| $) 41)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-3890 (($) 49) (($ (-640 |#1|)) 48)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-2220 (((-536) $) 59 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 50)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-2233 (($ (-640 |#1|)) 42)) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-4301 ((|#2| $ (-767) |#2|) 11)) (-4293 ((|#2| $ (-767)) 10)) (-1565 (($) 8)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 18)) (-1718 (((-112) $ $) 13)))
+(((-213 |#1| |#2|) (-13 (-1093) (-10 -8 (-15 -1565 ($)) (-15 -4293 (|#2| $ (-767))) (-15 -4301 (|#2| $ (-767) |#2|)))) (-917) (-1093)) (T -213))
+((-1565 (*1 *1) (-12 (-5 *1 (-213 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1093)))) (-4293 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *2 (-1093)) (-5 *1 (-213 *4 *2)) (-14 *4 (-917)))) (-4301 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-213 *4 *2)) (-14 *4 (-917)) (-4 *2 (-1093)))))
+(-13 (-1093) (-10 -8 (-15 -1565 ($)) (-15 -4293 (|#2| $ (-767))) (-15 -4301 (|#2| $ (-767) |#2|))))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1651 (((-1262) $) 36) (((-1262) $ (-917) (-917)) 38)) (-2308 (($ $ (-985)) 19) (((-245 (-1151)) $ (-1169)) 15)) (-1463 (((-1262) $) 34)) (-1692 (((-858) $) 31) (($ (-640 |#1|)) 8)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $ $) 27)) (-1813 (($ $ $) 22)))
+(((-214 |#1|) (-13 (-1093) (-613 (-640 |#1|)) (-10 -8 (-15 -2308 ($ $ (-985))) (-15 -2308 ((-245 (-1151)) $ (-1169))) (-15 -1813 ($ $ $)) (-15 -1825 ($ $ $)) (-15 -1463 ((-1262) $)) (-15 -1651 ((-1262) $)) (-15 -1651 ((-1262) $ (-917) (-917))))) (-13 (-846) (-10 -8 (-15 -2308 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $)) (-15 -1651 ((-1262) $))))) (T -214))
+((-2308 (*1 *1 *1 *2) (-12 (-5 *2 (-985)) (-5 *1 (-214 *3)) (-4 *3 (-13 (-846) (-10 -8 (-15 -2308 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $)) (-15 -1651 ((-1262) $))))))) (-2308 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-245 (-1151))) (-5 *1 (-214 *4)) (-4 *4 (-13 (-846) (-10 -8 (-15 -2308 ((-1151) $ *3)) (-15 -1463 ((-1262) $)) (-15 -1651 ((-1262) $))))))) (-1813 (*1 *1 *1 *1) (-12 (-5 *1 (-214 *2)) (-4 *2 (-13 (-846) (-10 -8 (-15 -2308 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $)) (-15 -1651 ((-1262) $))))))) (-1825 (*1 *1 *1 *1) (-12 (-5 *1 (-214 *2)) (-4 *2 (-13 (-846) (-10 -8 (-15 -2308 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $)) (-15 -1651 ((-1262) $))))))) (-1463 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-214 *3)) (-4 *3 (-13 (-846) (-10 -8 (-15 -2308 ((-1151) $ (-1169))) (-15 -1463 (*2 $)) (-15 -1651 (*2 $))))))) (-1651 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-214 *3)) (-4 *3 (-13 (-846) (-10 -8 (-15 -2308 ((-1151) $ (-1169))) (-15 -1463 (*2 $)) (-15 -1651 (*2 $))))))) (-1651 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1262)) (-5 *1 (-214 *4)) (-4 *4 (-13 (-846) (-10 -8 (-15 -2308 ((-1151) $ (-1169))) (-15 -1463 (*2 $)) (-15 -1651 (*2 $))))))))
+(-13 (-1093) (-613 (-640 |#1|)) (-10 -8 (-15 -2308 ($ $ (-985))) (-15 -2308 ((-245 (-1151)) $ (-1169))) (-15 -1813 ($ $ $)) (-15 -1825 ($ $ $)) (-15 -1463 ((-1262) $)) (-15 -1651 ((-1262) $)) (-15 -1651 ((-1262) $ (-917) (-917)))))
+((-1788 ((|#2| |#4| (-1 |#2| |#2|)) 46)))
+(((-215 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1788 (|#2| |#4| (-1 |#2| |#2|)))) (-363) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|)) (T -215))
+((-1788 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-363)) (-4 *6 (-1233 (-407 *2))) (-4 *2 (-1233 *5)) (-5 *1 (-215 *5 *2 *6 *3)) (-4 *3 (-342 *5 *2 *6)))))
+(-10 -7 (-15 -1788 (|#2| |#4| (-1 |#2| |#2|))))
+((-1833 ((|#2| |#2| (-767) |#2|) 42)) (-1822 ((|#2| |#2| (-767) |#2|) 38)) (-4225 (((-640 |#2|) (-640 (-2 (|:| |deg| (-767)) (|:| -3248 |#2|)))) 56)) (-1810 (((-640 (-2 (|:| |deg| (-767)) (|:| -3248 |#2|))) |#2|) 52)) (-1844 (((-112) |#2|) 49)) (-2619 (((-418 |#2|) |#2|) 76)) (-2173 (((-418 |#2|) |#2|) 75)) (-4234 ((|#2| |#2| (-767) |#2|) 36)) (-1799 (((-2 (|:| |cont| |#1|) (|:| -1337 (-640 (-2 (|:| |irr| |#2|) (|:| -3259 (-563)))))) |#2| (-112)) 68)))
+(((-216 |#1| |#2|) (-10 -7 (-15 -2173 ((-418 |#2|) |#2|)) (-15 -2619 ((-418 |#2|) |#2|)) (-15 -1799 ((-2 (|:| |cont| |#1|) (|:| -1337 (-640 (-2 (|:| |irr| |#2|) (|:| -3259 (-563)))))) |#2| (-112))) (-15 -1810 ((-640 (-2 (|:| |deg| (-767)) (|:| -3248 |#2|))) |#2|)) (-15 -4225 ((-640 |#2|) (-640 (-2 (|:| |deg| (-767)) (|:| -3248 |#2|))))) (-15 -4234 (|#2| |#2| (-767) |#2|)) (-15 -1822 (|#2| |#2| (-767) |#2|)) (-15 -1833 (|#2| |#2| (-767) |#2|)) (-15 -1844 ((-112) |#2|))) (-349) (-1233 |#1|)) (T -216))
+((-1844 (*1 *2 *3) (-12 (-4 *4 (-349)) (-5 *2 (-112)) (-5 *1 (-216 *4 *3)) (-4 *3 (-1233 *4)))) (-1833 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-767)) (-4 *4 (-349)) (-5 *1 (-216 *4 *2)) (-4 *2 (-1233 *4)))) (-1822 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-767)) (-4 *4 (-349)) (-5 *1 (-216 *4 *2)) (-4 *2 (-1233 *4)))) (-4234 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-767)) (-4 *4 (-349)) (-5 *1 (-216 *4 *2)) (-4 *2 (-1233 *4)))) (-4225 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| |deg| (-767)) (|:| -3248 *5)))) (-4 *5 (-1233 *4)) (-4 *4 (-349)) (-5 *2 (-640 *5)) (-5 *1 (-216 *4 *5)))) (-1810 (*1 *2 *3) (-12 (-4 *4 (-349)) (-5 *2 (-640 (-2 (|:| |deg| (-767)) (|:| -3248 *3)))) (-5 *1 (-216 *4 *3)) (-4 *3 (-1233 *4)))) (-1799 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-349)) (-5 *2 (-2 (|:| |cont| *5) (|:| -1337 (-640 (-2 (|:| |irr| *3) (|:| -3259 (-563))))))) (-5 *1 (-216 *5 *3)) (-4 *3 (-1233 *5)))) (-2619 (*1 *2 *3) (-12 (-4 *4 (-349)) (-5 *2 (-418 *3)) (-5 *1 (-216 *4 *3)) (-4 *3 (-1233 *4)))) (-2173 (*1 *2 *3) (-12 (-4 *4 (-349)) (-5 *2 (-418 *3)) (-5 *1 (-216 *4 *3)) (-4 *3 (-1233 *4)))))
+(-10 -7 (-15 -2173 ((-418 |#2|) |#2|)) (-15 -2619 ((-418 |#2|) |#2|)) (-15 -1799 ((-2 (|:| |cont| |#1|) (|:| -1337 (-640 (-2 (|:| |irr| |#2|) (|:| -3259 (-563)))))) |#2| (-112))) (-15 -1810 ((-640 (-2 (|:| |deg| (-767)) (|:| -3248 |#2|))) |#2|)) (-15 -4225 ((-640 |#2|) (-640 (-2 (|:| |deg| (-767)) (|:| -3248 |#2|))))) (-15 -4234 (|#2| |#2| (-767) |#2|)) (-15 -1822 (|#2| |#2| (-767) |#2|)) (-15 -1833 (|#2| |#2| (-767) |#2|)) (-15 -1844 ((-112) |#2|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3944 (((-563) $) NIL (|has| (-563) (-307)))) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2003 (((-112) $ $) NIL)) (-2807 (((-563) $) NIL (|has| (-563) (-816)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (|has| (-563) (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-563) (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| (-563) (-1034 (-563))))) (-2057 (((-563) $) NIL) (((-1169) $) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| (-563) (-1034 (-563)))) (((-563) $) NIL (|has| (-563) (-1034 (-563))))) (-3094 (($ $ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) NIL (|has| (-563) (-545)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-3414 (((-112) $) NIL (|has| (-563) (-816)))) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-563) (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-563) (-882 (-379))))) (-3401 (((-112) $) NIL)) (-2043 (($ $) NIL)) (-2143 (((-563) $) NIL)) (-1983 (((-3 $ "failed") $) NIL (|has| (-563) (-1144)))) (-3426 (((-112) $) NIL (|has| (-563) (-816)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3088 (($ $ $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| (-563) (-846)))) (-2238 (($ (-1 (-563) (-563)) $) NIL)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| (-563) (-1144)) CONST)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3935 (($ $) NIL (|has| (-563) (-307))) (((-407 (-563)) $) NIL)) (-3954 (((-563) $) NIL (|has| (-563) (-545)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1542 (($ $ (-640 (-563)) (-640 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-563) (-563)) NIL (|has| (-563) (-309 (-563)))) (($ $ (-294 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-294 (-563)))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-1169)) (-640 (-563))) NIL (|has| (-563) (-514 (-1169) (-563)))) (($ $ (-1169) (-563)) NIL (|has| (-563) (-514 (-1169) (-563))))) (-1993 (((-767) $) NIL)) (-2308 (($ $ (-563)) NIL (|has| (-563) (-286 (-563) (-563))))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-4203 (($ $) NIL (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-2033 (($ $) NIL)) (-2153 (((-563) $) NIL)) (-1856 (($ (-407 (-563))) 9)) (-2219 (((-888 (-563)) $) NIL (|has| (-563) (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| (-563) (-611 (-888 (-379))))) (((-536) $) NIL (|has| (-563) (-611 (-536)))) (((-379) $) NIL (|has| (-563) (-1018))) (((-225) $) NIL (|has| (-563) (-1018)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-563) (-905))))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) 8) (($ (-563)) NIL) (($ (-1169)) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) NIL) (((-1000 10) $) 10)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| (-563) (-905))) (|has| (-563) (-145))))) (-3914 (((-767)) NIL)) (-3965 (((-563) $) NIL (|has| (-563) (-545)))) (-3223 (((-112) $ $) NIL)) (-1462 (($ $) NIL (|has| (-563) (-816)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $) NIL (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-1779 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1754 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1743 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1836 (($ $ $) NIL) (($ (-563) (-563)) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ (-563) $) NIL) (($ $ (-563)) NIL)))
+(((-217) (-13 (-988 (-563)) (-610 (-407 (-563))) (-610 (-1000 10)) (-10 -8 (-15 -3935 ((-407 (-563)) $)) (-15 -1856 ($ (-407 (-563))))))) (T -217))
+((-3935 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-217)))) (-1856 (*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-217)))))
+(-13 (-988 (-563)) (-610 (-407 (-563))) (-610 (-1000 10)) (-10 -8 (-15 -3935 ((-407 (-563)) $)) (-15 -1856 ($ (-407 (-563))))))
+((-1677 (((-112) $ $) NIL)) (-2922 (((-1111) $) 13)) (-3854 (((-1151) $) NIL)) (-3333 (((-483) $) 10)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 25) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3363 (((-1128) $) 15)) (-1718 (((-112) $ $) NIL)))
+(((-218) (-13 (-1076) (-10 -8 (-15 -3333 ((-483) $)) (-15 -2922 ((-1111) $)) (-15 -3363 ((-1128) $))))) (T -218))
+((-3333 (*1 *2 *1) (-12 (-5 *2 (-483)) (-5 *1 (-218)))) (-2922 (*1 *2 *1) (-12 (-5 *2 (-1111)) (-5 *1 (-218)))) (-3363 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-218)))))
+(-13 (-1076) (-10 -8 (-15 -3333 ((-483) $)) (-15 -2922 ((-1111) $)) (-15 -3363 ((-1128) $))))
+((-2062 (((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085 (-839 |#2|)) (-1151)) 28) (((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085 (-839 |#2|))) 24)) (-1866 (((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1169) (-839 |#2|) (-839 |#2|) (-112)) 17)))
+(((-219 |#1| |#2|) (-10 -7 (-15 -2062 ((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085 (-839 |#2|)))) (-15 -2062 ((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085 (-839 |#2|)) (-1151))) (-15 -1866 ((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1169) (-839 |#2|) (-839 |#2|) (-112)))) (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-955) (-29 |#1|))) (T -219))
+((-1866 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-1169)) (-5 *6 (-112)) (-4 *7 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-4 *3 (-13 (-1193) (-955) (-29 *7))) (-5 *2 (-3 (|:| |f1| (-839 *3)) (|:| |f2| (-640 (-839 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *7 *3)) (-5 *5 (-839 *3)))) (-2062 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1085 (-839 *3))) (-5 *5 (-1151)) (-4 *3 (-13 (-1193) (-955) (-29 *6))) (-4 *6 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (|:| |f1| (-839 *3)) (|:| |f2| (-640 (-839 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *6 *3)))) (-2062 (*1 *2 *3 *4) (-12 (-5 *4 (-1085 (-839 *3))) (-4 *3 (-13 (-1193) (-955) (-29 *5))) (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (|:| |f1| (-839 *3)) (|:| |f2| (-640 (-839 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *5 *3)))))
+(-10 -7 (-15 -2062 ((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085 (-839 |#2|)))) (-15 -2062 ((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1085 (-839 |#2|)) (-1151))) (-15 -1866 ((-3 (|:| |f1| (-839 |#2|)) (|:| |f2| (-640 (-839 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1169) (-839 |#2|) (-839 |#2|) (-112))))
+((-2062 (((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-407 (-948 |#1|)))) (-1151)) 46) (((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-407 (-948 |#1|))))) 43) (((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-316 |#1|))) (-1151)) 47) (((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-316 |#1|)))) 20)))
+(((-220 |#1|) (-10 -7 (-15 -2062 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-316 |#1|))))) (-15 -2062 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-316 |#1|))) (-1151))) (-15 -2062 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-407 (-948 |#1|)))))) (-15 -2062 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-407 (-948 |#1|)))) (-1151)))) (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (T -220))
+((-2062 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1085 (-839 (-407 (-948 *6))))) (-5 *5 (-1151)) (-5 *3 (-407 (-948 *6))) (-4 *6 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (|:| |f1| (-839 (-316 *6))) (|:| |f2| (-640 (-839 (-316 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *6)))) (-2062 (*1 *2 *3 *4) (-12 (-5 *4 (-1085 (-839 (-407 (-948 *5))))) (-5 *3 (-407 (-948 *5))) (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (|:| |f1| (-839 (-316 *5))) (|:| |f2| (-640 (-839 (-316 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *5)))) (-2062 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-407 (-948 *6))) (-5 *4 (-1085 (-839 (-316 *6)))) (-5 *5 (-1151)) (-4 *6 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (|:| |f1| (-839 (-316 *6))) (|:| |f2| (-640 (-839 (-316 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *6)))) (-2062 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1085 (-839 (-316 *5)))) (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (|:| |f1| (-839 (-316 *5))) (|:| |f2| (-640 (-839 (-316 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *5)))))
+(-10 -7 (-15 -2062 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-316 |#1|))))) (-15 -2062 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-316 |#1|))) (-1151))) (-15 -2062 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-407 (-948 |#1|)))))) (-15 -2062 ((-3 (|:| |f1| (-839 (-316 |#1|))) (|:| |f2| (-640 (-839 (-316 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-407 (-948 |#1|)) (-1085 (-839 (-407 (-948 |#1|)))) (-1151))))
+((-2444 (((-2 (|:| -3929 (-1165 |#1|)) (|:| |deg| (-917))) (-1165 |#1|)) 21)) (-2212 (((-640 (-316 |#2|)) (-316 |#2|) (-917)) 42)))
+(((-221 |#1| |#2|) (-10 -7 (-15 -2444 ((-2 (|:| -3929 (-1165 |#1|)) (|:| |deg| (-917))) (-1165 |#1|))) (-15 -2212 ((-640 (-316 |#2|)) (-316 |#2|) (-917)))) (-1045) (-13 (-555) (-846))) (T -221))
+((-2212 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-4 *6 (-13 (-555) (-846))) (-5 *2 (-640 (-316 *6))) (-5 *1 (-221 *5 *6)) (-5 *3 (-316 *6)) (-4 *5 (-1045)))) (-2444 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-5 *2 (-2 (|:| -3929 (-1165 *4)) (|:| |deg| (-917)))) (-5 *1 (-221 *4 *5)) (-5 *3 (-1165 *4)) (-4 *5 (-13 (-555) (-846))))))
+(-10 -7 (-15 -2444 ((-2 (|:| -3929 (-1165 |#1|)) (|:| |deg| (-917))) (-1165 |#1|))) (-15 -2212 ((-640 (-316 |#2|)) (-316 |#2|) (-917))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4068 ((|#1| $) NIL)) (-2635 ((|#1| $) 25)) (-3001 (((-112) $ (-767)) NIL)) (-2569 (($) NIL T CONST)) (-2080 (($ $) NIL)) (-1574 (($ $) 31)) (-2147 ((|#1| |#1| $) NIL)) (-2136 ((|#1| $) NIL)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3419 (((-767) $) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2627 ((|#1| $) NIL)) (-4045 ((|#1| |#1| $) 28)) (-4033 ((|#1| |#1| $) 30)) (-3867 (($ |#1| $) NIL)) (-4238 (((-767) $) 27)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2071 ((|#1| $) NIL)) (-4022 ((|#1| $) 26)) (-4012 ((|#1| $) 24)) (-2808 ((|#1| $) NIL)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2099 ((|#1| |#1| $) NIL)) (-1665 (((-112) $) 9)) (-3445 (($) NIL)) (-2088 ((|#1| $) NIL)) (-4078 (($) NIL) (($ (-640 |#1|)) 16)) (-2369 (((-767) $) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4057 ((|#1| $) 13)) (-2820 (($ (-640 |#1|)) NIL)) (-2061 ((|#1| $) NIL)) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-222 |#1|) (-13 (-254 |#1|) (-10 -8 (-15 -4078 ($ (-640 |#1|))))) (-1093)) (T -222))
+((-4078 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-222 *3)))))
+(-13 (-254 |#1|) (-10 -8 (-15 -4078 ($ (-640 |#1|)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-1888 (($ (-316 |#1|)) 23)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2882 (((-112) $) NIL)) (-2130 (((-3 (-316 |#1|) "failed") $) NIL)) (-2057 (((-316 |#1|) $) NIL)) (-2750 (($ $) 31)) (-3951 (((-3 $ "failed") $) NIL)) (-3401 (((-112) $) NIL)) (-2238 (($ (-1 (-316 |#1|) (-316 |#1|)) $) NIL)) (-2725 (((-316 |#1|) $) NIL)) (-3762 (($ $) 30)) (-3854 (((-1151) $) NIL)) (-1899 (((-112) $) NIL)) (-1693 (((-1113) $) NIL)) (-4334 (($ (-767)) NIL)) (-1877 (($ $) 32)) (-3871 (((-563) $) NIL)) (-1692 (((-858) $) 54) (($ (-563)) NIL) (($ (-316 |#1|)) NIL)) (-3244 (((-316 |#1|) $ $) NIL)) (-3914 (((-767)) NIL)) (-2239 (($) 25 T CONST)) (-2253 (($) NIL T CONST)) (-1718 (((-112) $ $) 28)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) 19)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 24) (($ (-316 |#1|) $) 18)))
+(((-223 |#1| |#2|) (-13 (-617 (-316 |#1|)) (-1034 (-316 |#1|)) (-10 -8 (-15 -2725 ((-316 |#1|) $)) (-15 -3762 ($ $)) (-15 -2750 ($ $)) (-15 -3244 ((-316 |#1|) $ $)) (-15 -4334 ($ (-767))) (-15 -1899 ((-112) $)) (-15 -2882 ((-112) $)) (-15 -3871 ((-563) $)) (-15 -2238 ($ (-1 (-316 |#1|) (-316 |#1|)) $)) (-15 -1888 ($ (-316 |#1|))) (-15 -1877 ($ $)))) (-13 (-1045) (-846)) (-640 (-1169))) (T -223))
+((-2725 (*1 *2 *1) (-12 (-5 *2 (-316 *3)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846))) (-14 *4 (-640 (-1169))))) (-3762 (*1 *1 *1) (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1045) (-846))) (-14 *3 (-640 (-1169))))) (-2750 (*1 *1 *1) (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1045) (-846))) (-14 *3 (-640 (-1169))))) (-3244 (*1 *2 *1 *1) (-12 (-5 *2 (-316 *3)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846))) (-14 *4 (-640 (-1169))))) (-4334 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846))) (-14 *4 (-640 (-1169))))) (-1899 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846))) (-14 *4 (-640 (-1169))))) (-2882 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846))) (-14 *4 (-640 (-1169))))) (-3871 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846))) (-14 *4 (-640 (-1169))))) (-2238 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-316 *3) (-316 *3))) (-4 *3 (-13 (-1045) (-846))) (-5 *1 (-223 *3 *4)) (-14 *4 (-640 (-1169))))) (-1888 (*1 *1 *2) (-12 (-5 *2 (-316 *3)) (-4 *3 (-13 (-1045) (-846))) (-5 *1 (-223 *3 *4)) (-14 *4 (-640 (-1169))))) (-1877 (*1 *1 *1) (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1045) (-846))) (-14 *3 (-640 (-1169))))))
+(-13 (-617 (-316 |#1|)) (-1034 (-316 |#1|)) (-10 -8 (-15 -2725 ((-316 |#1|) $)) (-15 -3762 ($ $)) (-15 -2750 ($ $)) (-15 -3244 ((-316 |#1|) $ $)) (-15 -4334 ($ (-767))) (-15 -1899 ((-112) $)) (-15 -2882 ((-112) $)) (-15 -3871 ((-563) $)) (-15 -2238 ($ (-1 (-316 |#1|) (-316 |#1|)) $)) (-15 -1888 ($ (-316 |#1|))) (-15 -1877 ($ $))))
+((-3773 (((-112) (-1151)) 22)) (-3784 (((-3 (-839 |#2|) "failed") (-609 |#2|) |#2| (-839 |#2|) (-839 |#2|) (-112)) 32)) (-3795 (((-3 (-112) "failed") (-1165 |#2|) (-839 |#2|) (-839 |#2|) (-112)) 73) (((-3 (-112) "failed") (-948 |#1|) (-1169) (-839 |#2|) (-839 |#2|) (-112)) 74)))
+(((-224 |#1| |#2|) (-10 -7 (-15 -3773 ((-112) (-1151))) (-15 -3784 ((-3 (-839 |#2|) "failed") (-609 |#2|) |#2| (-839 |#2|) (-839 |#2|) (-112))) (-15 -3795 ((-3 (-112) "failed") (-948 |#1|) (-1169) (-839 |#2|) (-839 |#2|) (-112))) (-15 -3795 ((-3 (-112) "failed") (-1165 |#2|) (-839 |#2|) (-839 |#2|) (-112)))) (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-29 |#1|))) (T -224))
+((-3795 (*1 *2 *3 *4 *4 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1165 *6)) (-5 *4 (-839 *6)) (-4 *6 (-13 (-1193) (-29 *5))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-224 *5 *6)))) (-3795 (*1 *2 *3 *4 *5 *5 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-948 *6)) (-5 *4 (-1169)) (-5 *5 (-839 *7)) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-4 *7 (-13 (-1193) (-29 *6))) (-5 *1 (-224 *6 *7)))) (-3784 (*1 *2 *3 *4 *2 *2 *5) (|partial| -12 (-5 *2 (-839 *4)) (-5 *3 (-609 *4)) (-5 *5 (-112)) (-4 *4 (-13 (-1193) (-29 *6))) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-224 *6 *4)))) (-3773 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-112)) (-5 *1 (-224 *4 *5)) (-4 *5 (-13 (-1193) (-29 *4))))))
+(-10 -7 (-15 -3773 ((-112) (-1151))) (-15 -3784 ((-3 (-839 |#2|) "failed") (-609 |#2|) |#2| (-839 |#2|) (-839 |#2|) (-112))) (-15 -3795 ((-3 (-112) "failed") (-948 |#1|) (-1169) (-839 |#2|) (-839 |#2|) (-112))) (-15 -3795 ((-3 (-112) "failed") (-1165 |#2|) (-839 |#2|) (-839 |#2|) (-112))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 87)) (-3944 (((-563) $) 99)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-1763 (($ $) NIL)) (-1770 (($ $) 75)) (-1618 (($ $) 63)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2185 (($ $) 54)) (-2003 (((-112) $ $) NIL)) (-1747 (($ $) 73)) (-1596 (($ $) 61)) (-2807 (((-563) $) 116)) (-1793 (($ $) 78)) (-1642 (($ $) 65)) (-2569 (($) NIL T CONST)) (-3925 (($ $) NIL)) (-2130 (((-3 (-563) "failed") $) 115) (((-3 (-407 (-563)) "failed") $) 112)) (-2057 (((-563) $) 113) (((-407 (-563)) $) 110)) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) 92)) (-4193 (((-407 (-563)) $ (-767)) 108) (((-407 (-563)) $ (-767) (-767)) 107)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-3107 (((-917)) 27) (((-917) (-917)) NIL (|has| $ (-6 -4399)))) (-3414 (((-112) $) NIL)) (-2179 (($) 37)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL)) (-1775 (((-563) $) 33)) (-3401 (((-112) $) 88)) (-2172 (($ $ (-563)) NIL)) (-3975 (($ $) NIL)) (-3426 (((-112) $) 86)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3088 (($ $ $) 51) (($) 32 (-12 (-2174 (|has| $ (-6 -4391))) (-2174 (|has| $ (-6 -4399)))))) (-1776 (($ $ $) 50) (($) 31 (-12 (-2174 (|has| $ (-6 -4391))) (-2174 (|has| $ (-6 -4399)))))) (-4051 (((-563) $) 25)) (-4181 (($ $) 28)) (-3101 (($ $) 55)) (-4372 (($ $) 60)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-3217 (((-917) (-563)) NIL (|has| $ (-6 -4399)))) (-1693 (((-1113) $) 90)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3935 (($ $) NIL)) (-3954 (($ $) NIL)) (-4341 (($ (-563) (-563)) NIL) (($ (-563) (-563) (-917)) 100)) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3311 (((-563) $) 26)) (-4171 (($) 36)) (-3372 (($ $) 59)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3605 (((-917)) NIL) (((-917) (-917)) NIL (|has| $ (-6 -4399)))) (-4203 (($ $ (-767)) NIL) (($ $) 93)) (-3206 (((-917) (-563)) NIL (|has| $ (-6 -4399)))) (-1805 (($ $) 76)) (-1655 (($ $) 66)) (-1783 (($ $) 77)) (-1629 (($ $) 64)) (-1758 (($ $) 74)) (-1607 (($ $) 62)) (-2219 (((-379) $) 104) (((-225) $) 101) (((-888 (-379)) $) NIL) (((-536) $) 43)) (-1692 (((-858) $) 40) (($ (-563)) 58) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-563)) 58) (($ (-407 (-563))) NIL)) (-3914 (((-767)) NIL)) (-3965 (($ $) NIL)) (-3227 (((-917)) 30) (((-917) (-917)) NIL (|has| $ (-6 -4399)))) (-4212 (((-917)) 23)) (-1839 (($ $) 81)) (-1694 (($ $) 69) (($ $ $) 109)) (-3223 (((-112) $ $) NIL)) (-1816 (($ $) 79)) (-1666 (($ $) 67)) (-1861 (($ $) 84)) (-1721 (($ $) 72)) (-1311 (($ $) 82)) (-1734 (($ $) 70)) (-1850 (($ $) 83)) (-1709 (($ $) 71)) (-1828 (($ $) 80)) (-1679 (($ $) 68)) (-1462 (($ $) 117)) (-2239 (($) 34 T CONST)) (-2253 (($) 35 T CONST)) (-2742 (((-1151) $) 17) (((-1151) $ (-112)) 19) (((-1262) (-818) $) 20) (((-1262) (-818) $ (-112)) 21)) (-1507 (($ $) 96)) (-3213 (($ $ (-767)) NIL) (($ $) NIL)) (-1474 (($ $ $) 98)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 52)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 44)) (-1836 (($ $ $) 85) (($ $ (-563)) 53)) (-1825 (($ $) 45) (($ $ $) 47)) (-1813 (($ $ $) 46)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) 56) (($ $ (-407 (-563))) 127) (($ $ $) 57)) (* (($ (-917) $) 29) (($ (-767) $) NIL) (($ (-563) $) 49) (($ $ $) 48) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
+(((-225) (-13 (-404) (-233) (-824) (-1193) (-611 (-536)) (-10 -8 (-15 -1836 ($ $ (-563))) (-15 ** ($ $ $)) (-15 -4171 ($)) (-15 -4181 ($ $)) (-15 -3101 ($ $)) (-15 -1694 ($ $ $)) (-15 -1507 ($ $)) (-15 -1474 ($ $ $)) (-15 -4193 ((-407 (-563)) $ (-767))) (-15 -4193 ((-407 (-563)) $ (-767) (-767)))))) (T -225))
+((** (*1 *1 *1 *1) (-5 *1 (-225))) (-1836 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-225)))) (-4171 (*1 *1) (-5 *1 (-225))) (-4181 (*1 *1 *1) (-5 *1 (-225))) (-3101 (*1 *1 *1) (-5 *1 (-225))) (-1694 (*1 *1 *1 *1) (-5 *1 (-225))) (-1507 (*1 *1 *1) (-5 *1 (-225))) (-1474 (*1 *1 *1 *1) (-5 *1 (-225))) (-4193 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-225)))) (-4193 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-225)))))
+(-13 (-404) (-233) (-824) (-1193) (-611 (-536)) (-10 -8 (-15 -1836 ($ $ (-563))) (-15 ** ($ $ $)) (-15 -4171 ($)) (-15 -4181 ($ $)) (-15 -3101 ($ $)) (-15 -1694 ($ $ $)) (-15 -1507 ($ $)) (-15 -1474 ($ $ $)) (-15 -4193 ((-407 (-563)) $ (-767))) (-15 -4193 ((-407 (-563)) $ (-767) (-767)))))
+((-1496 (((-169 (-225)) (-767) (-169 (-225))) 11) (((-225) (-767) (-225)) 12)) (-3806 (((-169 (-225)) (-169 (-225))) 13) (((-225) (-225)) 14)) (-3818 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 19) (((-225) (-225) (-225)) 22)) (-1485 (((-169 (-225)) (-169 (-225))) 25) (((-225) (-225)) 24)) (-1534 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 43) (((-225) (-225) (-225)) 35)) (-1558 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 48) (((-225) (-225) (-225)) 45)) (-1521 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 15) (((-225) (-225) (-225)) 16)) (-1545 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 17) (((-225) (-225) (-225)) 18)) (-1583 (((-169 (-225)) (-169 (-225))) 60) (((-225) (-225)) 59)) (-1570 (((-225) (-225)) 54) (((-169 (-225)) (-169 (-225))) 58)) (-1507 (((-169 (-225)) (-169 (-225))) 8) (((-225) (-225)) 9)) (-1474 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 30) (((-225) (-225) (-225)) 26)))
+(((-226) (-10 -7 (-15 -1507 ((-225) (-225))) (-15 -1507 ((-169 (-225)) (-169 (-225)))) (-15 -1474 ((-225) (-225) (-225))) (-15 -1474 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -3806 ((-225) (-225))) (-15 -3806 ((-169 (-225)) (-169 (-225)))) (-15 -1485 ((-225) (-225))) (-15 -1485 ((-169 (-225)) (-169 (-225)))) (-15 -1496 ((-225) (-767) (-225))) (-15 -1496 ((-169 (-225)) (-767) (-169 (-225)))) (-15 -1521 ((-225) (-225) (-225))) (-15 -1521 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -1534 ((-225) (-225) (-225))) (-15 -1534 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -1545 ((-225) (-225) (-225))) (-15 -1545 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -1558 ((-225) (-225) (-225))) (-15 -1558 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -1570 ((-169 (-225)) (-169 (-225)))) (-15 -1570 ((-225) (-225))) (-15 -1583 ((-225) (-225))) (-15 -1583 ((-169 (-225)) (-169 (-225)))) (-15 -3818 ((-225) (-225) (-225))) (-15 -3818 ((-169 (-225)) (-169 (-225)) (-169 (-225)))))) (T -226))
+((-3818 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-3818 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-1583 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-1583 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-1570 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-1570 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-1558 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-1558 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-1545 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-1545 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-1534 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-1534 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-1521 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-1521 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-1496 (*1 *2 *3 *2) (-12 (-5 *2 (-169 (-225))) (-5 *3 (-767)) (-5 *1 (-226)))) (-1496 (*1 *2 *3 *2) (-12 (-5 *2 (-225)) (-5 *3 (-767)) (-5 *1 (-226)))) (-1485 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-1485 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-3806 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-3806 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-1474 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-1474 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-1507 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-1507 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))))
+(-10 -7 (-15 -1507 ((-225) (-225))) (-15 -1507 ((-169 (-225)) (-169 (-225)))) (-15 -1474 ((-225) (-225) (-225))) (-15 -1474 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -3806 ((-225) (-225))) (-15 -3806 ((-169 (-225)) (-169 (-225)))) (-15 -1485 ((-225) (-225))) (-15 -1485 ((-169 (-225)) (-169 (-225)))) (-15 -1496 ((-225) (-767) (-225))) (-15 -1496 ((-169 (-225)) (-767) (-169 (-225)))) (-15 -1521 ((-225) (-225) (-225))) (-15 -1521 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -1534 ((-225) (-225) (-225))) (-15 -1534 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -1545 ((-225) (-225) (-225))) (-15 -1545 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -1558 ((-225) (-225) (-225))) (-15 -1558 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -1570 ((-169 (-225)) (-169 (-225)))) (-15 -1570 ((-225) (-225))) (-15 -1583 ((-225) (-225))) (-15 -1583 ((-169 (-225)) (-169 (-225)))) (-15 -3818 ((-225) (-225) (-225))) (-15 -3818 ((-169 (-225)) (-169 (-225)) (-169 (-225)))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3216 (($ (-767) (-767)) NIL)) (-3934 (($ $ $) NIL)) (-1769 (($ (-1257 |#1|)) NIL) (($ $) NIL)) (-1943 (($ |#1| |#1| |#1|) 32)) (-3870 (((-112) $) NIL)) (-3924 (($ $ (-563) (-563)) NIL)) (-3913 (($ $ (-563) (-563)) NIL)) (-3901 (($ $ (-563) (-563) (-563) (-563)) NIL)) (-3953 (($ $) NIL)) (-3893 (((-112) $) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-3892 (($ $ (-563) (-563) $) NIL)) (-1849 ((|#1| $ (-563) (-563) |#1|) NIL) (($ $ (-640 (-563)) (-640 (-563)) $) NIL)) (-1589 (($ $ (-563) (-1257 |#1|)) NIL)) (-1572 (($ $ (-563) (-1257 |#1|)) NIL)) (-4165 (($ |#1| |#1| |#1|) 31)) (-2217 (($ (-767) |#1|) NIL)) (-2569 (($) NIL T CONST)) (-1940 (($ $) NIL (|has| |#1| (-307)))) (-1960 (((-1257 |#1|) $ (-563)) NIL)) (-3829 (($ |#1|) 30)) (-3837 (($ |#1|) 29)) (-3847 (($ |#1|) 28)) (-2521 (((-767) $) NIL (|has| |#1| (-555)))) (-4356 ((|#1| $ (-563) (-563) |#1|) NIL)) (-4293 ((|#1| $ (-563) (-563)) NIL)) (-2658 (((-640 |#1|) $) NIL)) (-1929 (((-767) $) NIL (|has| |#1| (-555)))) (-1917 (((-640 (-1257 |#1|)) $) NIL (|has| |#1| (-555)))) (-2380 (((-767) $) NIL)) (-1565 (($ (-767) (-767) |#1|) NIL)) (-2391 (((-767) $) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2157 ((|#1| $) NIL (|has| |#1| (-6 (-4410 "*"))))) (-1995 (((-563) $) NIL)) (-1979 (((-563) $) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1986 (((-563) $) NIL)) (-1969 (((-563) $) NIL)) (-4040 (($ (-640 (-640 |#1|))) 11)) (-4347 (($ (-1 |#1| |#1|) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3734 (((-640 (-640 |#1|)) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3694 (((-3 $ "failed") $) NIL (|has| |#1| (-363)))) (-3856 (($) 12)) (-3943 (($ $ $) NIL)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2221 (($ $ |#1|) NIL)) (-3012 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#1| $ (-563) (-563)) NIL) ((|#1| $ (-563) (-563) |#1|) NIL) (($ $ (-640 (-563)) (-640 (-563))) NIL)) (-2206 (($ (-640 |#1|)) NIL) (($ (-640 $)) NIL)) (-3881 (((-112) $) NIL)) (-2168 ((|#1| $) NIL (|has| |#1| (-6 (-4410 "*"))))) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) NIL)) (-1950 (((-1257 |#1|) $ (-563)) NIL)) (-1692 (($ (-1257 |#1|)) NIL) (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2005 (((-112) $) NIL)) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1825 (($ $ $) NIL) (($ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-563) $) NIL) (((-1257 |#1|) $ (-1257 |#1|)) 15) (((-1257 |#1|) (-1257 |#1|) $) NIL) (((-939 |#1|) $ (-939 |#1|)) 20)) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-227 |#1|) (-13 (-682 |#1| (-1257 |#1|) (-1257 |#1|)) (-10 -8 (-15 * ((-939 |#1|) $ (-939 |#1|))) (-15 -3856 ($)) (-15 -3847 ($ |#1|)) (-15 -3837 ($ |#1|)) (-15 -3829 ($ |#1|)) (-15 -4165 ($ |#1| |#1| |#1|)) (-15 -1943 ($ |#1| |#1| |#1|)))) (-13 (-363) (-1193))) (T -227))
+((* (*1 *2 *1 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193))) (-5 *1 (-227 *3)))) (-3856 (*1 *1) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))) (-3847 (*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))) (-3837 (*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))) (-3829 (*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))) (-4165 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))) (-1943 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))))
+(-13 (-682 |#1| (-1257 |#1|) (-1257 |#1|)) (-10 -8 (-15 * ((-939 |#1|) $ (-939 |#1|))) (-15 -3856 ($)) (-15 -3847 ($ |#1|)) (-15 -3837 ($ |#1|)) (-15 -3829 ($ |#1|)) (-15 -4165 ($ |#1| |#1| |#1|)) (-15 -1943 ($ |#1| |#1| |#1|))))
+((-3678 (($ (-1 (-112) |#2|) $) 15)) (-1691 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 24)) (-3863 (($) NIL) (($ (-640 |#2|)) 11)) (-1718 (((-112) $ $) 22)))
+(((-228 |#1| |#2|) (-10 -8 (-15 -3678 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1691 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1691 (|#1| |#2| |#1|)) (-15 -3863 (|#1| (-640 |#2|))) (-15 -3863 (|#1|)) (-15 -1718 ((-112) |#1| |#1|))) (-229 |#2|) (-1093)) (T -228))
+NIL
+(-10 -8 (-15 -3678 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1691 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1691 (|#1| |#2| |#1|)) (-15 -3863 (|#1| (-640 |#2|))) (-15 -3863 (|#1|)) (-15 -1718 ((-112) |#1| |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-3001 (((-112) $ (-767)) 8)) (-3678 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4408)))) (-2569 (($) 7 T CONST)) (-3814 (($ $) 58 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1691 (($ |#1| $) 47 (|has| $ (-6 -4408))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4408)))) (-1459 (($ |#1| $) 57 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4408)))) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2627 ((|#1| $) 39)) (-3867 (($ |#1| $) 40)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-2808 ((|#1| $) 41)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-3863 (($) 49) (($ (-640 |#1|)) 48)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-2219 (((-536) $) 59 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 50)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-2820 (($ (-640 |#1|)) 42)) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-229 |#1|) (-140) (-1093)) (T -229))
NIL
(-13 (-235 |t#1|))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-235 |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-4202 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-767)) 11) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) 19) (($ $ (-767)) NIL) (($ $) 16)) (-3209 (($ $ (-1 |#2| |#2|)) 12) (($ $ (-1 |#2| |#2|) (-767)) 14) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL) (($ $ (-767)) NIL) (($ $) NIL)))
-(((-230 |#1| |#2|) (-10 -8 (-15 -4202 (|#1| |#1|)) (-15 -3209 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -3209 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -3209 (|#1| |#1| (-1169))) (-15 -3209 (|#1| |#1| (-640 (-1169)))) (-15 -3209 (|#1| |#1| (-1169) (-767))) (-15 -3209 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -3209 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -3209 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|)))) (-231 |#2|) (-1045)) (T -230))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-235 |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-4203 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-767)) 11) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) 19) (($ $ (-767)) NIL) (($ $) 16)) (-3213 (($ $ (-1 |#2| |#2|)) 12) (($ $ (-1 |#2| |#2|) (-767)) 14) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL) (($ $ (-767)) NIL) (($ $) NIL)))
+(((-230 |#1| |#2|) (-10 -8 (-15 -4203 (|#1| |#1|)) (-15 -3213 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -3213 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -3213 (|#1| |#1| (-1169))) (-15 -3213 (|#1| |#1| (-640 (-1169)))) (-15 -3213 (|#1| |#1| (-1169) (-767))) (-15 -3213 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -3213 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -3213 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|)))) (-231 |#2|) (-1045)) (T -230))
NIL
-(-10 -8 (-15 -4202 (|#1| |#1|)) (-15 -3209 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -3209 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -3209 (|#1| |#1| (-1169))) (-15 -3209 (|#1| |#1| (-640 (-1169)))) (-15 -3209 (|#1| |#1| (-1169) (-767))) (-15 -3209 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -3209 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -3209 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-4202 (($ $ (-1 |#1| |#1|)) 52) (($ $ (-1 |#1| |#1|) (-767)) 51) (($ $ (-640 (-1169)) (-640 (-767))) 44 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 43 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 42 (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) 41 (|has| |#1| (-896 (-1169)))) (($ $ (-767)) 39 (|has| |#1| (-233))) (($ $) 37 (|has| |#1| (-233)))) (-1693 (((-858) $) 11) (($ (-563)) 29)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ (-1 |#1| |#1|)) 50) (($ $ (-1 |#1| |#1|) (-767)) 49) (($ $ (-640 (-1169)) (-640 (-767))) 48 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 47 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 46 (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) 45 (|has| |#1| (-896 (-1169)))) (($ $ (-767)) 40 (|has| |#1| (-233))) (($ $) 38 (|has| |#1| (-233)))) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+(-10 -8 (-15 -4203 (|#1| |#1|)) (-15 -3213 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -3213 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -3213 (|#1| |#1| (-1169))) (-15 -3213 (|#1| |#1| (-640 (-1169)))) (-15 -3213 (|#1| |#1| (-1169) (-767))) (-15 -3213 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -3213 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -3213 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-4203 (($ $ (-1 |#1| |#1|)) 52) (($ $ (-1 |#1| |#1|) (-767)) 51) (($ $ (-640 (-1169)) (-640 (-767))) 44 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 43 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 42 (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) 41 (|has| |#1| (-896 (-1169)))) (($ $ (-767)) 39 (|has| |#1| (-233))) (($ $) 37 (|has| |#1| (-233)))) (-1692 (((-858) $) 11) (($ (-563)) 29)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ (-1 |#1| |#1|)) 50) (($ $ (-1 |#1| |#1|) (-767)) 49) (($ $ (-640 (-1169)) (-640 (-767))) 48 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 47 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 46 (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) 45 (|has| |#1| (-896 (-1169)))) (($ $ (-767)) 40 (|has| |#1| (-233))) (($ $) 38 (|has| |#1| (-233)))) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-231 |#1|) (-140) (-1045)) (T -231))
-((-4202 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-231 *3)) (-4 *3 (-1045)))) (-4202 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-767)) (-4 *1 (-231 *4)) (-4 *4 (-1045)))) (-3209 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-231 *3)) (-4 *3 (-1045)))) (-3209 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-767)) (-4 *1 (-231 *4)) (-4 *4 (-1045)))))
-(-13 (-1045) (-10 -8 (-15 -4202 ($ $ (-1 |t#1| |t#1|))) (-15 -4202 ($ $ (-1 |t#1| |t#1|) (-767))) (-15 -3209 ($ $ (-1 |t#1| |t#1|))) (-15 -3209 ($ $ (-1 |t#1| |t#1|) (-767))) (IF (|has| |t#1| (-233)) (-6 (-233)) |%noBranch|) (IF (|has| |t#1| (-896 (-1169))) (-6 (-896 (-1169))) |%noBranch|)))
+((-4203 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-231 *3)) (-4 *3 (-1045)))) (-4203 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-767)) (-4 *1 (-231 *4)) (-4 *4 (-1045)))) (-3213 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-231 *3)) (-4 *3 (-1045)))) (-3213 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-767)) (-4 *1 (-231 *4)) (-4 *4 (-1045)))))
+(-13 (-1045) (-10 -8 (-15 -4203 ($ $ (-1 |t#1| |t#1|))) (-15 -4203 ($ $ (-1 |t#1| |t#1|) (-767))) (-15 -3213 ($ $ (-1 |t#1| |t#1|))) (-15 -3213 ($ $ (-1 |t#1| |t#1|) (-767))) (IF (|has| |t#1| (-233)) (-6 (-233)) |%noBranch|) (IF (|has| |t#1| (-896 (-1169))) (-6 (-896 (-1169))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-563)) . T) ((-610 (-858)) . T) ((-233) |has| |#1| (-233)) ((-643 $) . T) ((-722) . T) ((-896 (-1169)) |has| |#1| (-896 (-1169))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-4202 (($ $) NIL) (($ $ (-767)) 10)) (-3209 (($ $) 8) (($ $ (-767)) 12)))
-(((-232 |#1|) (-10 -8 (-15 -3209 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1| (-767))) (-15 -3209 (|#1| |#1|)) (-15 -4202 (|#1| |#1|))) (-233)) (T -232))
+((-4203 (($ $) NIL) (($ $ (-767)) 10)) (-3213 (($ $) 8) (($ $ (-767)) 12)))
+(((-232 |#1|) (-10 -8 (-15 -3213 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1| (-767))) (-15 -3213 (|#1| |#1|)) (-15 -4203 (|#1| |#1|))) (-233)) (T -232))
NIL
-(-10 -8 (-15 -3209 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1| (-767))) (-15 -3209 (|#1| |#1|)) (-15 -4202 (|#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-4202 (($ $) 38) (($ $ (-767)) 36)) (-1693 (((-858) $) 11) (($ (-563)) 29)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $) 37) (($ $ (-767)) 35)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+(-10 -8 (-15 -3213 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1| (-767))) (-15 -3213 (|#1| |#1|)) (-15 -4203 (|#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-4203 (($ $) 38) (($ $ (-767)) 36)) (-1692 (((-858) $) 11) (($ (-563)) 29)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $) 37) (($ $ (-767)) 35)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-233) (-140)) (T -233))
-((-4202 (*1 *1 *1) (-4 *1 (-233))) (-3209 (*1 *1 *1) (-4 *1 (-233))) (-4202 (*1 *1 *1 *2) (-12 (-4 *1 (-233)) (-5 *2 (-767)))) (-3209 (*1 *1 *1 *2) (-12 (-4 *1 (-233)) (-5 *2 (-767)))))
-(-13 (-1045) (-10 -8 (-15 -4202 ($ $)) (-15 -3209 ($ $)) (-15 -4202 ($ $ (-767))) (-15 -3209 ($ $ (-767)))))
+((-4203 (*1 *1 *1) (-4 *1 (-233))) (-3213 (*1 *1 *1) (-4 *1 (-233))) (-4203 (*1 *1 *1 *2) (-12 (-4 *1 (-233)) (-5 *2 (-767)))) (-3213 (*1 *1 *1 *2) (-12 (-4 *1 (-233)) (-5 *2 (-767)))))
+(-13 (-1045) (-10 -8 (-15 -4203 ($ $)) (-15 -3213 ($ $)) (-15 -4203 ($ $ (-767))) (-15 -3213 ($ $ (-767)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-563)) . T) ((-610 (-858)) . T) ((-643 $) . T) ((-722) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-3890 (($) 12) (($ (-640 |#2|)) NIL)) (-1872 (($ $) 14)) (-1707 (($ (-640 |#2|)) 10)) (-1693 (((-858) $) 21)))
-(((-234 |#1| |#2|) (-10 -8 (-15 -1693 ((-858) |#1|)) (-15 -3890 (|#1| (-640 |#2|))) (-15 -3890 (|#1|)) (-15 -1707 (|#1| (-640 |#2|))) (-15 -1872 (|#1| |#1|))) (-235 |#2|) (-1093)) (T -234))
+((-3863 (($) 12) (($ (-640 |#2|)) NIL)) (-1870 (($ $) 14)) (-1706 (($ (-640 |#2|)) 10)) (-1692 (((-858) $) 21)))
+(((-234 |#1| |#2|) (-10 -8 (-15 -1692 ((-858) |#1|)) (-15 -3863 (|#1| (-640 |#2|))) (-15 -3863 (|#1|)) (-15 -1706 (|#1| (-640 |#2|))) (-15 -1870 (|#1| |#1|))) (-235 |#2|) (-1093)) (T -234))
NIL
-(-10 -8 (-15 -1693 ((-858) |#1|)) (-15 -3890 (|#1| (-640 |#2|))) (-15 -3890 (|#1|)) (-15 -1707 (|#1| (-640 |#2|))) (-15 -1872 (|#1| |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2759 (((-112) $ (-767)) 8)) (-2812 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4407)))) (-4239 (($) 7 T CONST)) (-3813 (($ $) 58 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-2705 (($ |#1| $) 47 (|has| $ (-6 -4407))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4407)))) (-1459 (($ |#1| $) 57 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4407)))) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2964 ((|#1| $) 39)) (-1812 (($ |#1| $) 40)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3755 ((|#1| $) 41)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-3890 (($) 49) (($ (-640 |#1|)) 48)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-2220 (((-536) $) 59 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 50)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-2233 (($ (-640 |#1|)) 42)) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+(-10 -8 (-15 -1692 ((-858) |#1|)) (-15 -3863 (|#1| (-640 |#2|))) (-15 -3863 (|#1|)) (-15 -1706 (|#1| (-640 |#2|))) (-15 -1870 (|#1| |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-3001 (((-112) $ (-767)) 8)) (-3678 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4408)))) (-2569 (($) 7 T CONST)) (-3814 (($ $) 58 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1691 (($ |#1| $) 47 (|has| $ (-6 -4408))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4408)))) (-1459 (($ |#1| $) 57 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4408)))) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2627 ((|#1| $) 39)) (-3867 (($ |#1| $) 40)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-2808 ((|#1| $) 41)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-3863 (($) 49) (($ (-640 |#1|)) 48)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-2219 (((-536) $) 59 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 50)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-2820 (($ (-640 |#1|)) 42)) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-235 |#1|) (-140) (-1093)) (T -235))
-((-3890 (*1 *1) (-12 (-4 *1 (-235 *2)) (-4 *2 (-1093)))) (-3890 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-4 *1 (-235 *3)))) (-2705 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4407)) (-4 *1 (-235 *2)) (-4 *2 (-1093)))) (-2705 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4407)) (-4 *1 (-235 *3)) (-4 *3 (-1093)))) (-2812 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4407)) (-4 *1 (-235 *3)) (-4 *3 (-1093)))))
-(-13 (-107 |t#1|) (-151 |t#1|) (-10 -8 (-15 -3890 ($)) (-15 -3890 ($ (-640 |t#1|))) (IF (|has| $ (-6 -4407)) (PROGN (-15 -2705 ($ |t#1| $)) (-15 -2705 ($ (-1 (-112) |t#1|) $)) (-15 -2812 ($ (-1 (-112) |t#1|) $))) |%noBranch|)))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-2438 (((-2 (|:| |varOrder| (-640 (-1169))) (|:| |inhom| (-3 (-640 (-1257 (-767))) "failed")) (|:| |hom| (-640 (-1257 (-767))))) (-294 (-948 (-563)))) 27)))
-(((-236) (-10 -7 (-15 -2438 ((-2 (|:| |varOrder| (-640 (-1169))) (|:| |inhom| (-3 (-640 (-1257 (-767))) "failed")) (|:| |hom| (-640 (-1257 (-767))))) (-294 (-948 (-563))))))) (T -236))
-((-2438 (*1 *2 *3) (-12 (-5 *3 (-294 (-948 (-563)))) (-5 *2 (-2 (|:| |varOrder| (-640 (-1169))) (|:| |inhom| (-3 (-640 (-1257 (-767))) "failed")) (|:| |hom| (-640 (-1257 (-767)))))) (-5 *1 (-236)))))
-(-10 -7 (-15 -2438 ((-2 (|:| |varOrder| (-640 (-1169))) (|:| |inhom| (-3 (-640 (-1257 (-767))) "failed")) (|:| |hom| (-640 (-1257 (-767))))) (-294 (-948 (-563))))))
-((-3749 (((-767)) 51)) (-2950 (((-2 (|:| -2835 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 $) (-1257 $)) 49) (((-684 |#3|) (-684 $)) 41) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL)) (-3533 (((-134)) 57)) (-4202 (($ $ (-1 |#3| |#3|) (-767)) NIL) (($ $ (-1 |#3| |#3|)) 18) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL) (($ $ (-767)) NIL) (($ $) NIL)) (-1693 (((-1257 |#3|) $) NIL) (($ |#3|) NIL) (((-858) $) NIL) (($ (-563)) 12) (($ (-407 (-563))) NIL)) (-1675 (((-767)) 15)) (-1837 (($ $ |#3|) 54)))
-(((-237 |#1| |#2| |#3|) (-10 -8 (-15 -1693 (|#1| (-407 (-563)))) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|)) (-15 -1675 ((-767))) (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -2950 ((-684 (-563)) (-684 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -1693 (|#1| |#3|)) (-15 -4202 (|#1| |#1| (-1 |#3| |#3|))) (-15 -4202 (|#1| |#1| (-1 |#3| |#3|) (-767))) (-15 -2950 ((-684 |#3|) (-684 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 |#1|) (-1257 |#1|))) (-15 -3749 ((-767))) (-15 -1837 (|#1| |#1| |#3|)) (-15 -3533 ((-134))) (-15 -1693 ((-1257 |#3|) |#1|))) (-238 |#2| |#3|) (-767) (-1208)) (T -237))
-((-3533 (*1 *2) (-12 (-14 *4 (-767)) (-4 *5 (-1208)) (-5 *2 (-134)) (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5)))) (-3749 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1208)) (-5 *2 (-767)) (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5)))) (-1675 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1208)) (-5 *2 (-767)) (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5)))))
-(-10 -8 (-15 -1693 (|#1| (-407 (-563)))) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|)) (-15 -1675 ((-767))) (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -2950 ((-684 (-563)) (-684 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -1693 (|#1| |#3|)) (-15 -4202 (|#1| |#1| (-1 |#3| |#3|))) (-15 -4202 (|#1| |#1| (-1 |#3| |#3|) (-767))) (-15 -2950 ((-684 |#3|) (-684 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 |#1|) (-1257 |#1|))) (-15 -3749 ((-767))) (-15 -1837 (|#1| |#1| |#3|)) (-15 -3533 ((-134))) (-15 -1693 ((-1257 |#3|) |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#2| (-1093)))) (-3411 (((-112) $) 72 (|has| |#2| (-131)))) (-1946 (($ (-917)) 125 (|has| |#2| (-1045)))) (-4378 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4408)))) (-1901 (($ $ $) 121 (|has| |#2| (-789)))) (-1495 (((-3 $ "failed") $ $) 74 (|has| |#2| (-131)))) (-2759 (((-112) $ (-767)) 8)) (-3749 (((-767)) 107 (|has| |#2| (-368)))) (-1857 (((-563) $) 119 (|has| |#2| (-844)))) (-1849 ((|#2| $ (-563) |#2|) 52 (|has| $ (-6 -4408)))) (-4239 (($) 7 T CONST)) (-2131 (((-3 (-563) "failed") $) 67 (-2190 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-3 (-407 (-563)) "failed") $) 64 (-2190 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (((-3 |#2| "failed") $) 61 (|has| |#2| (-1093)))) (-2058 (((-563) $) 66 (-2190 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-407 (-563)) $) 63 (-2190 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) ((|#2| $) 62 (|has| |#2| (-1093)))) (-2950 (((-684 (-563)) (-684 $)) 106 (-2190 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 105 (-2190 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) 104 (|has| |#2| (-1045))) (((-684 |#2|) (-684 $)) 103 (|has| |#2| (-1045)))) (-3400 (((-3 $ "failed") $) 79 (|has| |#2| (-722)))) (-1691 (($) 110 (|has| |#2| (-368)))) (-4355 ((|#2| $ (-563) |#2|) 53 (|has| $ (-6 -4408)))) (-4293 ((|#2| $ (-563)) 51)) (-3101 (((-112) $) 117 (|has| |#2| (-844)))) (-2659 (((-640 |#2|) $) 30 (|has| $ (-6 -4407)))) (-3827 (((-112) $) 81 (|has| |#2| (-722)))) (-1419 (((-112) $) 118 (|has| |#2| (-844)))) (-2581 (((-112) $ (-767)) 9)) (-2411 (((-563) $) 43 (|has| (-563) (-846)))) (-3084 (($ $ $) 116 (-4032 (|has| |#2| (-844)) (|has| |#2| (-789))))) (-2259 (((-640 |#2|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#2| $) 27 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4407))))) (-3860 (((-563) $) 44 (|has| (-563) (-846)))) (-1777 (($ $ $) 115 (-4032 (|has| |#2| (-844)) (|has| |#2| (-789))))) (-4345 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#2| |#2|) $) 35)) (-1476 (((-917) $) 109 (|has| |#2| (-368)))) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#2| (-1093)))) (-4318 (((-640 (-563)) $) 46)) (-3192 (((-112) (-563) $) 47)) (-2555 (($ (-917)) 108 (|has| |#2| (-368)))) (-1694 (((-1113) $) 21 (|has| |#2| (-1093)))) (-3781 ((|#2| $) 42 (|has| (-563) (-846)))) (-2358 (($ $ |#2|) 41 (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#2|))) 26 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) 25 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) 23 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2026 (((-112) $ $) 14)) (-2105 (((-112) |#2| $) 45 (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-2836 (((-640 |#2|) $) 48)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#2| $ (-563) |#2|) 50) ((|#2| $ (-563)) 49)) (-4092 ((|#2| $ $) 124 (|has| |#2| (-1045)))) (-2510 (($ (-1257 |#2|)) 126)) (-3533 (((-134)) 123 (|has| |#2| (-363)))) (-4202 (($ $) 98 (-2190 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) 96 (-2190 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) 94 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) 93 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) 92 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) 91 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) 84 (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) 83 (|has| |#2| (-1045)))) (-1709 (((-767) (-1 (-112) |#2|) $) 31 (|has| $ (-6 -4407))) (((-767) |#2| $) 28 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-1693 (((-1257 |#2|) $) 127) (($ (-563)) 68 (-4032 (-2190 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-1045)))) (($ (-407 (-563))) 65 (-2190 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (($ |#2|) 60 (|has| |#2| (-1093))) (((-858) $) 18 (|has| |#2| (-610 (-858))))) (-1675 (((-767)) 102 (|has| |#2| (-1045)))) (-4383 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4407)))) (-2509 (($ $) 120 (|has| |#2| (-844)))) (-2241 (($) 71 (|has| |#2| (-131)) CONST)) (-2254 (($) 82 (|has| |#2| (-722)) CONST)) (-3209 (($ $) 97 (-2190 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) 95 (-2190 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) 90 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) 89 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) 88 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) 87 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) 86 (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) 85 (|has| |#2| (-1045)))) (-1778 (((-112) $ $) 113 (-4032 (|has| |#2| (-844)) (|has| |#2| (-789))))) (-1756 (((-112) $ $) 112 (-4032 (|has| |#2| (-844)) (|has| |#2| (-789))))) (-1718 (((-112) $ $) 20 (|has| |#2| (-1093)))) (-1768 (((-112) $ $) 114 (-4032 (|has| |#2| (-844)) (|has| |#2| (-789))))) (-1744 (((-112) $ $) 111 (-4032 (|has| |#2| (-844)) (|has| |#2| (-789))))) (-1837 (($ $ |#2|) 122 (|has| |#2| (-363)))) (-1826 (($ $ $) 100 (|has| |#2| (-1045))) (($ $) 99 (|has| |#2| (-1045)))) (-1814 (($ $ $) 69 (|has| |#2| (-25)))) (** (($ $ (-767)) 80 (|has| |#2| (-722))) (($ $ (-917)) 77 (|has| |#2| (-722)))) (* (($ (-563) $) 101 (|has| |#2| (-1045))) (($ $ $) 78 (|has| |#2| (-722))) (($ $ |#2|) 76 (|has| |#2| (-722))) (($ |#2| $) 75 (|has| |#2| (-722))) (($ (-767) $) 73 (|has| |#2| (-131))) (($ (-917) $) 70 (|has| |#2| (-25)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-3863 (*1 *1) (-12 (-4 *1 (-235 *2)) (-4 *2 (-1093)))) (-3863 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-4 *1 (-235 *3)))) (-1691 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-235 *2)) (-4 *2 (-1093)))) (-1691 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4408)) (-4 *1 (-235 *3)) (-4 *3 (-1093)))) (-3678 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4408)) (-4 *1 (-235 *3)) (-4 *3 (-1093)))))
+(-13 (-107 |t#1|) (-151 |t#1|) (-10 -8 (-15 -3863 ($)) (-15 -3863 ($ (-640 |t#1|))) (IF (|has| $ (-6 -4408)) (PROGN (-15 -1691 ($ |t#1| $)) (-15 -1691 ($ (-1 (-112) |t#1|) $)) (-15 -3678 ($ (-1 (-112) |t#1|) $))) |%noBranch|)))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-3872 (((-2 (|:| |varOrder| (-640 (-1169))) (|:| |inhom| (-3 (-640 (-1257 (-767))) "failed")) (|:| |hom| (-640 (-1257 (-767))))) (-294 (-948 (-563)))) 27)))
+(((-236) (-10 -7 (-15 -3872 ((-2 (|:| |varOrder| (-640 (-1169))) (|:| |inhom| (-3 (-640 (-1257 (-767))) "failed")) (|:| |hom| (-640 (-1257 (-767))))) (-294 (-948 (-563))))))) (T -236))
+((-3872 (*1 *2 *3) (-12 (-5 *3 (-294 (-948 (-563)))) (-5 *2 (-2 (|:| |varOrder| (-640 (-1169))) (|:| |inhom| (-3 (-640 (-1257 (-767))) "failed")) (|:| |hom| (-640 (-1257 (-767)))))) (-5 *1 (-236)))))
+(-10 -7 (-15 -3872 ((-2 (|:| |varOrder| (-640 (-1169))) (|:| |inhom| (-3 (-640 (-1257 (-767))) "failed")) (|:| |hom| (-640 (-1257 (-767))))) (-294 (-948 (-563))))))
+((-3750 (((-767)) 51)) (-1476 (((-2 (|:| -1957 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 $) (-1257 $)) 49) (((-684 |#3|) (-684 $)) 41) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL)) (-3526 (((-134)) 57)) (-4203 (($ $ (-1 |#3| |#3|) (-767)) NIL) (($ $ (-1 |#3| |#3|)) 18) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL) (($ $ (-767)) NIL) (($ $) NIL)) (-1692 (((-1257 |#3|) $) NIL) (($ |#3|) NIL) (((-858) $) NIL) (($ (-563)) 12) (($ (-407 (-563))) NIL)) (-3914 (((-767)) 15)) (-1836 (($ $ |#3|) 54)))
+(((-237 |#1| |#2| |#3|) (-10 -8 (-15 -1692 (|#1| (-407 (-563)))) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|)) (-15 -3914 ((-767))) (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -1476 ((-684 (-563)) (-684 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -1692 (|#1| |#3|)) (-15 -4203 (|#1| |#1| (-1 |#3| |#3|))) (-15 -4203 (|#1| |#1| (-1 |#3| |#3|) (-767))) (-15 -1476 ((-684 |#3|) (-684 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 |#1|) (-1257 |#1|))) (-15 -3750 ((-767))) (-15 -1836 (|#1| |#1| |#3|)) (-15 -3526 ((-134))) (-15 -1692 ((-1257 |#3|) |#1|))) (-238 |#2| |#3|) (-767) (-1208)) (T -237))
+((-3526 (*1 *2) (-12 (-14 *4 (-767)) (-4 *5 (-1208)) (-5 *2 (-134)) (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5)))) (-3750 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1208)) (-5 *2 (-767)) (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5)))) (-3914 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1208)) (-5 *2 (-767)) (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5)))))
+(-10 -8 (-15 -1692 (|#1| (-407 (-563)))) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|)) (-15 -3914 ((-767))) (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -1476 ((-684 (-563)) (-684 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -1692 (|#1| |#3|)) (-15 -4203 (|#1| |#1| (-1 |#3| |#3|))) (-15 -4203 (|#1| |#1| (-1 |#3| |#3|) (-767))) (-15 -1476 ((-684 |#3|) (-684 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 |#1|) (-1257 |#1|))) (-15 -3750 ((-767))) (-15 -1836 (|#1| |#1| |#3|)) (-15 -3526 ((-134))) (-15 -1692 ((-1257 |#3|) |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#2| (-1093)))) (-3439 (((-112) $) 72 (|has| |#2| (-131)))) (-2392 (($ (-917)) 125 (|has| |#2| (-1045)))) (-2208 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4409)))) (-4092 (($ $ $) 121 (|has| |#2| (-789)))) (-3905 (((-3 $ "failed") $ $) 74 (|has| |#2| (-131)))) (-3001 (((-112) $ (-767)) 8)) (-3750 (((-767)) 107 (|has| |#2| (-368)))) (-2807 (((-563) $) 119 (|has| |#2| (-844)))) (-1849 ((|#2| $ (-563) |#2|) 52 (|has| $ (-6 -4409)))) (-2569 (($) 7 T CONST)) (-2130 (((-3 (-563) "failed") $) 67 (-2188 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-3 (-407 (-563)) "failed") $) 64 (-2188 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (((-3 |#2| "failed") $) 61 (|has| |#2| (-1093)))) (-2057 (((-563) $) 66 (-2188 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-407 (-563)) $) 63 (-2188 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) ((|#2| $) 62 (|has| |#2| (-1093)))) (-1476 (((-684 (-563)) (-684 $)) 106 (-2188 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 105 (-2188 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) 104 (|has| |#2| (-1045))) (((-684 |#2|) (-684 $)) 103 (|has| |#2| (-1045)))) (-3951 (((-3 $ "failed") $) 79 (|has| |#2| (-722)))) (-1690 (($) 110 (|has| |#2| (-368)))) (-4356 ((|#2| $ (-563) |#2|) 53 (|has| $ (-6 -4409)))) (-4293 ((|#2| $ (-563)) 51)) (-3414 (((-112) $) 117 (|has| |#2| (-844)))) (-2658 (((-640 |#2|) $) 30 (|has| $ (-6 -4408)))) (-3401 (((-112) $) 81 (|has| |#2| (-722)))) (-3426 (((-112) $) 118 (|has| |#2| (-844)))) (-2514 (((-112) $ (-767)) 9)) (-2236 (((-563) $) 43 (|has| (-563) (-846)))) (-3088 (($ $ $) 116 (-4034 (|has| |#2| (-844)) (|has| |#2| (-789))))) (-3523 (((-640 |#2|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#2| $) 27 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4408))))) (-2251 (((-563) $) 44 (|has| (-563) (-846)))) (-1776 (($ $ $) 115 (-4034 (|has| |#2| (-844)) (|has| |#2| (-789))))) (-4347 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#2| |#2|) $) 35)) (-3990 (((-917) $) 109 (|has| |#2| (-368)))) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#2| (-1093)))) (-2272 (((-640 (-563)) $) 46)) (-2282 (((-112) (-563) $) 47)) (-2552 (($ (-917)) 108 (|has| |#2| (-368)))) (-1693 (((-1113) $) 21 (|has| |#2| (-1093)))) (-3782 ((|#2| $) 42 (|has| (-563) (-846)))) (-2221 (($ $ |#2|) 41 (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#2|))) 26 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) 25 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) 23 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2941 (((-112) $ $) 14)) (-2262 (((-112) |#2| $) 45 (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2295 (((-640 |#2|) $) 48)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#2| $ (-563) |#2|) 50) ((|#2| $ (-563)) 49)) (-4121 ((|#2| $ $) 124 (|has| |#2| (-1045)))) (-2509 (($ (-1257 |#2|)) 126)) (-3526 (((-134)) 123 (|has| |#2| (-363)))) (-4203 (($ $) 98 (-2188 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) 96 (-2188 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) 94 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) 93 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) 92 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) 91 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) 84 (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) 83 (|has| |#2| (-1045)))) (-1708 (((-767) (-1 (-112) |#2|) $) 31 (|has| $ (-6 -4408))) (((-767) |#2| $) 28 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-1692 (((-1257 |#2|) $) 127) (($ (-563)) 68 (-4034 (-2188 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-1045)))) (($ (-407 (-563))) 65 (-2188 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (($ |#2|) 60 (|has| |#2| (-1093))) (((-858) $) 18 (|has| |#2| (-610 (-858))))) (-3914 (((-767)) 102 (|has| |#2| (-1045)))) (-1471 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4408)))) (-1462 (($ $) 120 (|has| |#2| (-844)))) (-2239 (($) 71 (|has| |#2| (-131)) CONST)) (-2253 (($) 82 (|has| |#2| (-722)) CONST)) (-3213 (($ $) 97 (-2188 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) 95 (-2188 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) 90 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) 89 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) 88 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) 87 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) 86 (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) 85 (|has| |#2| (-1045)))) (-1779 (((-112) $ $) 113 (-4034 (|has| |#2| (-844)) (|has| |#2| (-789))))) (-1754 (((-112) $ $) 112 (-4034 (|has| |#2| (-844)) (|has| |#2| (-789))))) (-1718 (((-112) $ $) 20 (|has| |#2| (-1093)))) (-1766 (((-112) $ $) 114 (-4034 (|has| |#2| (-844)) (|has| |#2| (-789))))) (-1743 (((-112) $ $) 111 (-4034 (|has| |#2| (-844)) (|has| |#2| (-789))))) (-1836 (($ $ |#2|) 122 (|has| |#2| (-363)))) (-1825 (($ $ $) 100 (|has| |#2| (-1045))) (($ $) 99 (|has| |#2| (-1045)))) (-1813 (($ $ $) 69 (|has| |#2| (-25)))) (** (($ $ (-767)) 80 (|has| |#2| (-722))) (($ $ (-917)) 77 (|has| |#2| (-722)))) (* (($ (-563) $) 101 (|has| |#2| (-1045))) (($ $ $) 78 (|has| |#2| (-722))) (($ $ |#2|) 76 (|has| |#2| (-722))) (($ |#2| $) 75 (|has| |#2| (-722))) (($ (-767) $) 73 (|has| |#2| (-131))) (($ (-917) $) 70 (|has| |#2| (-25)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-238 |#1| |#2|) (-140) (-767) (-1208)) (T -238))
-((-2510 (*1 *1 *2) (-12 (-5 *2 (-1257 *4)) (-4 *4 (-1208)) (-4 *1 (-238 *3 *4)))) (-1946 (*1 *1 *2) (-12 (-5 *2 (-917)) (-4 *1 (-238 *3 *4)) (-4 *4 (-1045)) (-4 *4 (-1208)))) (-4092 (*1 *2 *1 *1) (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1208)) (-4 *2 (-1045)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1208)) (-4 *2 (-722)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1208)) (-4 *2 (-722)))))
-(-13 (-601 (-563) |t#2|) (-610 (-1257 |t#2|)) (-10 -8 (-6 -4407) (-15 -2510 ($ (-1257 |t#2|))) (IF (|has| |t#2| (-1093)) (-6 (-411 |t#2|)) |%noBranch|) (IF (|has| |t#2| (-1045)) (PROGN (-6 (-111 |t#2| |t#2|)) (-6 (-231 |t#2|)) (-6 (-377 |t#2|)) (-15 -1946 ($ (-917))) (-15 -4092 (|t#2| $ $))) |%noBranch|) (IF (|has| |t#2| (-25)) (-6 (-25)) |%noBranch|) (IF (|has| |t#2| (-131)) (-6 (-131)) |%noBranch|) (IF (|has| |t#2| (-722)) (PROGN (-6 (-722)) (-15 * ($ |t#2| $)) (-15 * ($ $ |t#2|))) |%noBranch|) (IF (|has| |t#2| (-368)) (-6 (-368)) |%noBranch|) (IF (|has| |t#2| (-172)) (PROGN (-6 (-38 |t#2|)) (-6 (-172))) |%noBranch|) (IF (|has| |t#2| (-6 -4404)) (-6 -4404) |%noBranch|) (IF (|has| |t#2| (-844)) (-6 (-844)) |%noBranch|) (IF (|has| |t#2| (-789)) (-6 (-789)) |%noBranch|) (IF (|has| |t#2| (-363)) (-6 (-1264 |t#2|)) |%noBranch|)))
-(((-21) -4032 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-363)) (|has| |#2| (-172))) ((-23) -4032 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-789)) (|has| |#2| (-363)) (|has| |#2| (-172)) (|has| |#2| (-131))) ((-25) -4032 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-789)) (|has| |#2| (-363)) (|has| |#2| (-172)) (|has| |#2| (-131)) (|has| |#2| (-25))) ((-34) . T) ((-38 |#2|) |has| |#2| (-172)) ((-102) -4032 (|has| |#2| (-1093)) (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-789)) (|has| |#2| (-722)) (|has| |#2| (-368)) (|has| |#2| (-363)) (|has| |#2| (-172)) (|has| |#2| (-131)) (|has| |#2| (-25))) ((-111 |#2| |#2|) -4032 (|has| |#2| (-1045)) (|has| |#2| (-363)) (|has| |#2| (-172))) ((-111 $ $) |has| |#2| (-172)) ((-131) -4032 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-789)) (|has| |#2| (-363)) (|has| |#2| (-172)) (|has| |#2| (-131))) ((-613 #0=(-407 (-563))) -12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093))) ((-613 (-563)) -4032 (|has| |#2| (-1045)) (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-844)) (|has| |#2| (-172))) ((-613 |#2|) -4032 (|has| |#2| (-1093)) (|has| |#2| (-172))) ((-610 (-858)) -4032 (|has| |#2| (-1093)) (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-789)) (|has| |#2| (-722)) (|has| |#2| (-368)) (|has| |#2| (-363)) (|has| |#2| (-172)) (|has| |#2| (-610 (-858))) (|has| |#2| (-131)) (|has| |#2| (-25))) ((-610 (-1257 |#2|)) . T) ((-172) |has| |#2| (-172)) ((-231 |#2|) |has| |#2| (-1045)) ((-233) -12 (|has| |#2| (-233)) (|has| |#2| (-1045))) ((-286 #1=(-563) |#2|) . T) ((-288 #1# |#2|) . T) ((-309 |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-368) |has| |#2| (-368)) ((-377 |#2|) |has| |#2| (-1045)) ((-411 |#2|) |has| |#2| (-1093)) ((-489 |#2|) . T) ((-601 #1# |#2|) . T) ((-514 |#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-643 |#2|) -4032 (|has| |#2| (-1045)) (|has| |#2| (-363)) (|has| |#2| (-172))) ((-643 $) -4032 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-172))) ((-636 (-563)) -12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045))) ((-636 |#2|) |has| |#2| (-1045)) ((-713 |#2|) -4032 (|has| |#2| (-363)) (|has| |#2| (-172))) ((-722) -4032 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-722)) (|has| |#2| (-172))) ((-787) |has| |#2| (-844)) ((-788) -4032 (|has| |#2| (-844)) (|has| |#2| (-789))) ((-789) |has| |#2| (-789)) ((-790) -4032 (|has| |#2| (-844)) (|has| |#2| (-789))) ((-791) -4032 (|has| |#2| (-844)) (|has| |#2| (-789))) ((-844) |has| |#2| (-844)) ((-846) -4032 (|has| |#2| (-844)) (|has| |#2| (-789))) ((-896 (-1169)) -12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045))) ((-1034 #0#) -12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093))) ((-1034 (-563)) -12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) ((-1034 |#2|) |has| |#2| (-1093)) ((-1051 |#2|) -4032 (|has| |#2| (-1045)) (|has| |#2| (-363)) (|has| |#2| (-172))) ((-1051 $) |has| |#2| (-172)) ((-1045) -4032 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-172))) ((-1052) -4032 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-172))) ((-1105) -4032 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-722)) (|has| |#2| (-172))) ((-1093) -4032 (|has| |#2| (-1093)) (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-789)) (|has| |#2| (-722)) (|has| |#2| (-368)) (|has| |#2| (-363)) (|has| |#2| (-172)) (|has| |#2| (-131)) (|has| |#2| (-25))) ((-1208) . T) ((-1264 |#2|) |has| |#2| (-363)))
-((-1567 (((-240 |#1| |#3|) (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|) 21)) (-2444 ((|#3| (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|) 23)) (-2240 (((-240 |#1| |#3|) (-1 |#3| |#2|) (-240 |#1| |#2|)) 18)))
-(((-239 |#1| |#2| |#3|) (-10 -7 (-15 -1567 ((-240 |#1| |#3|) (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -2444 (|#3| (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -2240 ((-240 |#1| |#3|) (-1 |#3| |#2|) (-240 |#1| |#2|)))) (-767) (-1208) (-1208)) (T -239))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-240 *5 *6)) (-14 *5 (-767)) (-4 *6 (-1208)) (-4 *7 (-1208)) (-5 *2 (-240 *5 *7)) (-5 *1 (-239 *5 *6 *7)))) (-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-240 *5 *6)) (-14 *5 (-767)) (-4 *6 (-1208)) (-4 *2 (-1208)) (-5 *1 (-239 *5 *6 *2)))) (-1567 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-240 *6 *7)) (-14 *6 (-767)) (-4 *7 (-1208)) (-4 *5 (-1208)) (-5 *2 (-240 *6 *5)) (-5 *1 (-239 *6 *7 *5)))))
-(-10 -7 (-15 -1567 ((-240 |#1| |#3|) (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -2444 (|#3| (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -2240 ((-240 |#1| |#3|) (-1 |#3| |#2|) (-240 |#1| |#2|))))
-((-1677 (((-112) $ $) NIL (|has| |#2| (-1093)))) (-3411 (((-112) $) NIL (|has| |#2| (-131)))) (-1946 (($ (-917)) 56 (|has| |#2| (-1045)))) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-1901 (($ $ $) 60 (|has| |#2| (-789)))) (-1495 (((-3 $ "failed") $ $) 49 (|has| |#2| (-131)))) (-2759 (((-112) $ (-767)) 17)) (-3749 (((-767)) NIL (|has| |#2| (-368)))) (-1857 (((-563) $) NIL (|has| |#2| (-844)))) (-1849 ((|#2| $ (-563) |#2|) NIL (|has| $ (-6 -4408)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (((-3 |#2| "failed") $) 29 (|has| |#2| (-1093)))) (-2058 (((-563) $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-407 (-563)) $) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) ((|#2| $) 27 (|has| |#2| (-1093)))) (-2950 (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL (|has| |#2| (-1045))) (((-684 |#2|) (-684 $)) NIL (|has| |#2| (-1045)))) (-3400 (((-3 $ "failed") $) 53 (|has| |#2| (-722)))) (-1691 (($) NIL (|has| |#2| (-368)))) (-4355 ((|#2| $ (-563) |#2|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#2| $ (-563)) 51)) (-3101 (((-112) $) NIL (|has| |#2| (-844)))) (-2659 (((-640 |#2|) $) 15 (|has| $ (-6 -4407)))) (-3827 (((-112) $) NIL (|has| |#2| (-722)))) (-1419 (((-112) $) NIL (|has| |#2| (-844)))) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) 20 (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-2259 (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-3860 (((-563) $) 50 (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-4345 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#2| |#2|) $) 41)) (-1476 (((-917) $) NIL (|has| |#2| (-368)))) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#2| (-1093)))) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-2555 (($ (-917)) NIL (|has| |#2| (-368)))) (-1694 (((-1113) $) NIL (|has| |#2| (-1093)))) (-3781 ((|#2| $) NIL (|has| (-563) (-846)))) (-2358 (($ $ |#2|) NIL (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#2|) $) 24 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-2836 (((-640 |#2|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#2| $ (-563) |#2|) NIL) ((|#2| $ (-563)) 21)) (-4092 ((|#2| $ $) NIL (|has| |#2| (-1045)))) (-2510 (($ (-1257 |#2|)) 18)) (-3533 (((-134)) NIL (|has| |#2| (-363)))) (-4202 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1045)))) (-1709 (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-1872 (($ $) NIL)) (-1693 (((-1257 |#2|) $) 10) (($ (-563)) NIL (-4032 (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-1045)))) (($ (-407 (-563))) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (($ |#2|) 13 (|has| |#2| (-1093))) (((-858) $) NIL (|has| |#2| (-610 (-858))))) (-1675 (((-767)) NIL (|has| |#2| (-1045)))) (-4383 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-2509 (($ $) NIL (|has| |#2| (-844)))) (-2241 (($) 35 (|has| |#2| (-131)) CONST)) (-2254 (($) 38 (|has| |#2| (-722)) CONST)) (-3209 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1045)))) (-1778 (((-112) $ $) NIL (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1756 (((-112) $ $) NIL (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1718 (((-112) $ $) 26 (|has| |#2| (-1093)))) (-1768 (((-112) $ $) NIL (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1744 (((-112) $ $) 58 (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1837 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1826 (($ $ $) NIL (|has| |#2| (-1045))) (($ $) NIL (|has| |#2| (-1045)))) (-1814 (($ $ $) 33 (|has| |#2| (-25)))) (** (($ $ (-767)) NIL (|has| |#2| (-722))) (($ $ (-917)) NIL (|has| |#2| (-722)))) (* (($ (-563) $) NIL (|has| |#2| (-1045))) (($ $ $) 44 (|has| |#2| (-722))) (($ $ |#2|) 42 (|has| |#2| (-722))) (($ |#2| $) 43 (|has| |#2| (-722))) (($ (-767) $) NIL (|has| |#2| (-131))) (($ (-917) $) NIL (|has| |#2| (-25)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
+((-2509 (*1 *1 *2) (-12 (-5 *2 (-1257 *4)) (-4 *4 (-1208)) (-4 *1 (-238 *3 *4)))) (-2392 (*1 *1 *2) (-12 (-5 *2 (-917)) (-4 *1 (-238 *3 *4)) (-4 *4 (-1045)) (-4 *4 (-1208)))) (-4121 (*1 *2 *1 *1) (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1208)) (-4 *2 (-1045)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1208)) (-4 *2 (-722)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1208)) (-4 *2 (-722)))))
+(-13 (-601 (-563) |t#2|) (-610 (-1257 |t#2|)) (-10 -8 (-6 -4408) (-15 -2509 ($ (-1257 |t#2|))) (IF (|has| |t#2| (-1093)) (-6 (-411 |t#2|)) |%noBranch|) (IF (|has| |t#2| (-1045)) (PROGN (-6 (-111 |t#2| |t#2|)) (-6 (-231 |t#2|)) (-6 (-377 |t#2|)) (-15 -2392 ($ (-917))) (-15 -4121 (|t#2| $ $))) |%noBranch|) (IF (|has| |t#2| (-25)) (-6 (-25)) |%noBranch|) (IF (|has| |t#2| (-131)) (-6 (-131)) |%noBranch|) (IF (|has| |t#2| (-722)) (PROGN (-6 (-722)) (-15 * ($ |t#2| $)) (-15 * ($ $ |t#2|))) |%noBranch|) (IF (|has| |t#2| (-368)) (-6 (-368)) |%noBranch|) (IF (|has| |t#2| (-172)) (PROGN (-6 (-38 |t#2|)) (-6 (-172))) |%noBranch|) (IF (|has| |t#2| (-6 -4405)) (-6 -4405) |%noBranch|) (IF (|has| |t#2| (-844)) (-6 (-844)) |%noBranch|) (IF (|has| |t#2| (-789)) (-6 (-789)) |%noBranch|) (IF (|has| |t#2| (-363)) (-6 (-1264 |t#2|)) |%noBranch|)))
+(((-21) -4034 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-363)) (|has| |#2| (-172))) ((-23) -4034 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-789)) (|has| |#2| (-363)) (|has| |#2| (-172)) (|has| |#2| (-131))) ((-25) -4034 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-789)) (|has| |#2| (-363)) (|has| |#2| (-172)) (|has| |#2| (-131)) (|has| |#2| (-25))) ((-34) . T) ((-38 |#2|) |has| |#2| (-172)) ((-102) -4034 (|has| |#2| (-1093)) (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-789)) (|has| |#2| (-722)) (|has| |#2| (-368)) (|has| |#2| (-363)) (|has| |#2| (-172)) (|has| |#2| (-131)) (|has| |#2| (-25))) ((-111 |#2| |#2|) -4034 (|has| |#2| (-1045)) (|has| |#2| (-363)) (|has| |#2| (-172))) ((-111 $ $) |has| |#2| (-172)) ((-131) -4034 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-789)) (|has| |#2| (-363)) (|has| |#2| (-172)) (|has| |#2| (-131))) ((-613 #0=(-407 (-563))) -12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093))) ((-613 (-563)) -4034 (|has| |#2| (-1045)) (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-844)) (|has| |#2| (-172))) ((-613 |#2|) -4034 (|has| |#2| (-1093)) (|has| |#2| (-172))) ((-610 (-858)) -4034 (|has| |#2| (-1093)) (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-789)) (|has| |#2| (-722)) (|has| |#2| (-368)) (|has| |#2| (-363)) (|has| |#2| (-172)) (|has| |#2| (-610 (-858))) (|has| |#2| (-131)) (|has| |#2| (-25))) ((-610 (-1257 |#2|)) . T) ((-172) |has| |#2| (-172)) ((-231 |#2|) |has| |#2| (-1045)) ((-233) -12 (|has| |#2| (-233)) (|has| |#2| (-1045))) ((-286 #1=(-563) |#2|) . T) ((-288 #1# |#2|) . T) ((-309 |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-368) |has| |#2| (-368)) ((-377 |#2|) |has| |#2| (-1045)) ((-411 |#2|) |has| |#2| (-1093)) ((-489 |#2|) . T) ((-601 #1# |#2|) . T) ((-514 |#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-643 |#2|) -4034 (|has| |#2| (-1045)) (|has| |#2| (-363)) (|has| |#2| (-172))) ((-643 $) -4034 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-172))) ((-636 (-563)) -12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045))) ((-636 |#2|) |has| |#2| (-1045)) ((-713 |#2|) -4034 (|has| |#2| (-363)) (|has| |#2| (-172))) ((-722) -4034 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-722)) (|has| |#2| (-172))) ((-787) |has| |#2| (-844)) ((-788) -4034 (|has| |#2| (-844)) (|has| |#2| (-789))) ((-789) |has| |#2| (-789)) ((-790) -4034 (|has| |#2| (-844)) (|has| |#2| (-789))) ((-791) -4034 (|has| |#2| (-844)) (|has| |#2| (-789))) ((-844) |has| |#2| (-844)) ((-846) -4034 (|has| |#2| (-844)) (|has| |#2| (-789))) ((-896 (-1169)) -12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045))) ((-1034 #0#) -12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093))) ((-1034 (-563)) -12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) ((-1034 |#2|) |has| |#2| (-1093)) ((-1051 |#2|) -4034 (|has| |#2| (-1045)) (|has| |#2| (-363)) (|has| |#2| (-172))) ((-1051 $) |has| |#2| (-172)) ((-1045) -4034 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-172))) ((-1052) -4034 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-172))) ((-1105) -4034 (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-722)) (|has| |#2| (-172))) ((-1093) -4034 (|has| |#2| (-1093)) (|has| |#2| (-1045)) (|has| |#2| (-844)) (|has| |#2| (-789)) (|has| |#2| (-722)) (|has| |#2| (-368)) (|has| |#2| (-363)) (|has| |#2| (-172)) (|has| |#2| (-131)) (|has| |#2| (-25))) ((-1208) . T) ((-1264 |#2|) |has| |#2| (-363)))
+((-4132 (((-240 |#1| |#3|) (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|) 21)) (-2444 ((|#3| (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|) 23)) (-2238 (((-240 |#1| |#3|) (-1 |#3| |#2|) (-240 |#1| |#2|)) 18)))
+(((-239 |#1| |#2| |#3|) (-10 -7 (-15 -4132 ((-240 |#1| |#3|) (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -2444 (|#3| (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -2238 ((-240 |#1| |#3|) (-1 |#3| |#2|) (-240 |#1| |#2|)))) (-767) (-1208) (-1208)) (T -239))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-240 *5 *6)) (-14 *5 (-767)) (-4 *6 (-1208)) (-4 *7 (-1208)) (-5 *2 (-240 *5 *7)) (-5 *1 (-239 *5 *6 *7)))) (-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-240 *5 *6)) (-14 *5 (-767)) (-4 *6 (-1208)) (-4 *2 (-1208)) (-5 *1 (-239 *5 *6 *2)))) (-4132 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-240 *6 *7)) (-14 *6 (-767)) (-4 *7 (-1208)) (-4 *5 (-1208)) (-5 *2 (-240 *6 *5)) (-5 *1 (-239 *6 *7 *5)))))
+(-10 -7 (-15 -4132 ((-240 |#1| |#3|) (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -2444 (|#3| (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -2238 ((-240 |#1| |#3|) (-1 |#3| |#2|) (-240 |#1| |#2|))))
+((-1677 (((-112) $ $) NIL (|has| |#2| (-1093)))) (-3439 (((-112) $) NIL (|has| |#2| (-131)))) (-2392 (($ (-917)) 56 (|has| |#2| (-1045)))) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4092 (($ $ $) 60 (|has| |#2| (-789)))) (-3905 (((-3 $ "failed") $ $) 49 (|has| |#2| (-131)))) (-3001 (((-112) $ (-767)) 17)) (-3750 (((-767)) NIL (|has| |#2| (-368)))) (-2807 (((-563) $) NIL (|has| |#2| (-844)))) (-1849 ((|#2| $ (-563) |#2|) NIL (|has| $ (-6 -4409)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (((-3 |#2| "failed") $) 29 (|has| |#2| (-1093)))) (-2057 (((-563) $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-407 (-563)) $) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) ((|#2| $) 27 (|has| |#2| (-1093)))) (-1476 (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL (|has| |#2| (-1045))) (((-684 |#2|) (-684 $)) NIL (|has| |#2| (-1045)))) (-3951 (((-3 $ "failed") $) 53 (|has| |#2| (-722)))) (-1690 (($) NIL (|has| |#2| (-368)))) (-4356 ((|#2| $ (-563) |#2|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#2| $ (-563)) 51)) (-3414 (((-112) $) NIL (|has| |#2| (-844)))) (-2658 (((-640 |#2|) $) 15 (|has| $ (-6 -4408)))) (-3401 (((-112) $) NIL (|has| |#2| (-722)))) (-3426 (((-112) $) NIL (|has| |#2| (-844)))) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) 20 (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-3523 (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2251 (((-563) $) 50 (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-4347 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#2| |#2|) $) 41)) (-3990 (((-917) $) NIL (|has| |#2| (-368)))) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#2| (-1093)))) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-2552 (($ (-917)) NIL (|has| |#2| (-368)))) (-1693 (((-1113) $) NIL (|has| |#2| (-1093)))) (-3782 ((|#2| $) NIL (|has| (-563) (-846)))) (-2221 (($ $ |#2|) NIL (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#2|) $) 24 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2295 (((-640 |#2|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#2| $ (-563) |#2|) NIL) ((|#2| $ (-563)) 21)) (-4121 ((|#2| $ $) NIL (|has| |#2| (-1045)))) (-2509 (($ (-1257 |#2|)) 18)) (-3526 (((-134)) NIL (|has| |#2| (-363)))) (-4203 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1045)))) (-1708 (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-1870 (($ $) NIL)) (-1692 (((-1257 |#2|) $) 10) (($ (-563)) NIL (-4034 (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-1045)))) (($ (-407 (-563))) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (($ |#2|) 13 (|has| |#2| (-1093))) (((-858) $) NIL (|has| |#2| (-610 (-858))))) (-3914 (((-767)) NIL (|has| |#2| (-1045)))) (-1471 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1462 (($ $) NIL (|has| |#2| (-844)))) (-2239 (($) 35 (|has| |#2| (-131)) CONST)) (-2253 (($) 38 (|has| |#2| (-722)) CONST)) (-3213 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1045)))) (-1779 (((-112) $ $) NIL (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1754 (((-112) $ $) NIL (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1718 (((-112) $ $) 26 (|has| |#2| (-1093)))) (-1766 (((-112) $ $) NIL (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1743 (((-112) $ $) 58 (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1836 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1825 (($ $ $) NIL (|has| |#2| (-1045))) (($ $) NIL (|has| |#2| (-1045)))) (-1813 (($ $ $) 33 (|has| |#2| (-25)))) (** (($ $ (-767)) NIL (|has| |#2| (-722))) (($ $ (-917)) NIL (|has| |#2| (-722)))) (* (($ (-563) $) NIL (|has| |#2| (-1045))) (($ $ $) 44 (|has| |#2| (-722))) (($ $ |#2|) 42 (|has| |#2| (-722))) (($ |#2| $) 43 (|has| |#2| (-722))) (($ (-767) $) NIL (|has| |#2| (-131))) (($ (-917) $) NIL (|has| |#2| (-25)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
(((-240 |#1| |#2|) (-238 |#1| |#2|) (-767) (-1208)) (T -240))
NIL
(-238 |#1| |#2|)
-((-2922 (((-563) (-640 (-1151))) 24) (((-563) (-1151)) 19)) (-3716 (((-1262) (-640 (-1151))) 29) (((-1262) (-1151)) 28)) (-3213 (((-1151)) 14)) (-3418 (((-1151) (-563) (-1151)) 16)) (-3408 (((-640 (-1151)) (-640 (-1151)) (-563) (-1151)) 25) (((-1151) (-1151) (-563) (-1151)) 23)) (-3995 (((-640 (-1151)) (-640 (-1151))) 13) (((-640 (-1151)) (-1151)) 11)))
-(((-241) (-10 -7 (-15 -3995 ((-640 (-1151)) (-1151))) (-15 -3995 ((-640 (-1151)) (-640 (-1151)))) (-15 -3213 ((-1151))) (-15 -3418 ((-1151) (-563) (-1151))) (-15 -3408 ((-1151) (-1151) (-563) (-1151))) (-15 -3408 ((-640 (-1151)) (-640 (-1151)) (-563) (-1151))) (-15 -3716 ((-1262) (-1151))) (-15 -3716 ((-1262) (-640 (-1151)))) (-15 -2922 ((-563) (-1151))) (-15 -2922 ((-563) (-640 (-1151)))))) (T -241))
-((-2922 (*1 *2 *3) (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-563)) (-5 *1 (-241)))) (-2922 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-563)) (-5 *1 (-241)))) (-3716 (*1 *2 *3) (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-1262)) (-5 *1 (-241)))) (-3716 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-241)))) (-3408 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-640 (-1151))) (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *1 (-241)))) (-3408 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1151)) (-5 *3 (-563)) (-5 *1 (-241)))) (-3418 (*1 *2 *3 *2) (-12 (-5 *2 (-1151)) (-5 *3 (-563)) (-5 *1 (-241)))) (-3213 (*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-241)))) (-3995 (*1 *2 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-241)))) (-3995 (*1 *2 *3) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-241)) (-5 *3 (-1151)))))
-(-10 -7 (-15 -3995 ((-640 (-1151)) (-1151))) (-15 -3995 ((-640 (-1151)) (-640 (-1151)))) (-15 -3213 ((-1151))) (-15 -3418 ((-1151) (-563) (-1151))) (-15 -3408 ((-1151) (-1151) (-563) (-1151))) (-15 -3408 ((-640 (-1151)) (-640 (-1151)) (-563) (-1151))) (-15 -3716 ((-1262) (-1151))) (-15 -3716 ((-1262) (-640 (-1151)))) (-15 -2922 ((-563) (-1151))) (-15 -2922 ((-563) (-640 (-1151)))))
+((-3906 (((-563) (-640 (-1151))) 24) (((-563) (-1151)) 19)) (-3716 (((-1262) (-640 (-1151))) 29) (((-1262) (-1151)) 28)) (-3883 (((-1151)) 14)) (-3895 (((-1151) (-563) (-1151)) 16)) (-3412 (((-640 (-1151)) (-640 (-1151)) (-563) (-1151)) 25) (((-1151) (-1151) (-563) (-1151)) 23)) (-3996 (((-640 (-1151)) (-640 (-1151))) 13) (((-640 (-1151)) (-1151)) 11)))
+(((-241) (-10 -7 (-15 -3996 ((-640 (-1151)) (-1151))) (-15 -3996 ((-640 (-1151)) (-640 (-1151)))) (-15 -3883 ((-1151))) (-15 -3895 ((-1151) (-563) (-1151))) (-15 -3412 ((-1151) (-1151) (-563) (-1151))) (-15 -3412 ((-640 (-1151)) (-640 (-1151)) (-563) (-1151))) (-15 -3716 ((-1262) (-1151))) (-15 -3716 ((-1262) (-640 (-1151)))) (-15 -3906 ((-563) (-1151))) (-15 -3906 ((-563) (-640 (-1151)))))) (T -241))
+((-3906 (*1 *2 *3) (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-563)) (-5 *1 (-241)))) (-3906 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-563)) (-5 *1 (-241)))) (-3716 (*1 *2 *3) (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-1262)) (-5 *1 (-241)))) (-3716 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-241)))) (-3412 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-640 (-1151))) (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *1 (-241)))) (-3412 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1151)) (-5 *3 (-563)) (-5 *1 (-241)))) (-3895 (*1 *2 *3 *2) (-12 (-5 *2 (-1151)) (-5 *3 (-563)) (-5 *1 (-241)))) (-3883 (*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-241)))) (-3996 (*1 *2 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-241)))) (-3996 (*1 *2 *3) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-241)) (-5 *3 (-1151)))))
+(-10 -7 (-15 -3996 ((-640 (-1151)) (-1151))) (-15 -3996 ((-640 (-1151)) (-640 (-1151)))) (-15 -3883 ((-1151))) (-15 -3895 ((-1151) (-563) (-1151))) (-15 -3412 ((-1151) (-1151) (-563) (-1151))) (-15 -3412 ((-640 (-1151)) (-640 (-1151)) (-563) (-1151))) (-15 -3716 ((-1262) (-1151))) (-15 -3716 ((-1262) (-640 (-1151)))) (-15 -3906 ((-563) (-1151))) (-15 -3906 ((-563) (-640 (-1151)))))
((** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) 16)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ (-407 (-563)) $) 23) (($ $ (-407 (-563))) NIL)))
(((-242 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-563))) (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 ** (|#1| |#1| (-767))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-917))) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|))) (-243)) (T -242))
NIL
(-10 -8 (-15 ** (|#1| |#1| (-563))) (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 ** (|#1| |#1| (-767))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-917))) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3573 (((-1151) $) 9)) (-2688 (($ $) 40)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 44)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 41)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ (-407 (-563)) $) 43) (($ $ (-407 (-563))) 42)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3854 (((-1151) $) 9)) (-2687 (($ $) 40)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 44)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 41)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ (-407 (-563)) $) 43) (($ $ (-407 (-563))) 42)))
(((-243) (-140)) (T -243))
-((** (*1 *1 *1 *2) (-12 (-4 *1 (-243)) (-5 *2 (-563)))) (-2688 (*1 *1 *1) (-4 *1 (-243))))
-(-13 (-290) (-38 (-407 (-563))) (-10 -8 (-15 ** ($ $ (-563))) (-15 -2688 ($ $))))
+((** (*1 *1 *1 *2) (-12 (-4 *1 (-243)) (-5 *2 (-563)))) (-2687 (*1 *1 *1) (-4 *1 (-243))))
+(-13 (-290) (-38 (-407 (-563))) (-10 -8 (-15 ** ($ $ (-563))) (-15 -2687 ($ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-131) . T) ((-613 #0#) . T) ((-613 (-563)) . T) ((-610 (-858)) . T) ((-290) . T) ((-643 #0#) . T) ((-643 $) . T) ((-713 #0#) . T) ((-722) . T) ((-1051 #0#) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2619 ((|#1| $) 48)) (-4302 (($ $) 57)) (-2759 (((-112) $ (-767)) 8)) (-2936 ((|#1| $ |#1|) 39 (|has| $ (-6 -4408)))) (-2644 (($ $ $) 53 (|has| $ (-6 -4408)))) (-2909 (($ $ $) 52 (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) 41 (|has| $ (-6 -4408)))) (-4239 (($) 7 T CONST)) (-4331 (($ $) 56)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) 50)) (-1469 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-1333 (($ $) 55)) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-2512 (((-640 |#1|) $) 45)) (-2194 (((-112) $) 49)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1481 ((|#1| $) 59)) (-2917 (($ $) 58)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ "value") 47)) (-4071 (((-563) $ $) 44)) (-1434 (((-112) $) 46)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-3245 (($ $ $) 54 (|has| $ (-6 -4408)))) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) 51)) (-2962 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2618 ((|#1| $) 48)) (-4303 (($ $) 57)) (-3001 (((-112) $ (-767)) 8)) (-2336 ((|#1| $ |#1|) 39 (|has| $ (-6 -4409)))) (-3928 (($ $ $) 53 (|has| $ (-6 -4409)))) (-3917 (($ $ $) 52 (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) 41 (|has| $ (-6 -4409)))) (-2569 (($) 7 T CONST)) (-4328 (($ $) 56)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) 50)) (-2358 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-1333 (($ $) 55)) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-2511 (((-640 |#1|) $) 45)) (-1298 (((-112) $) 49)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1481 ((|#1| $) 59)) (-3333 (($ $) 58)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ "value") 47)) (-2379 (((-563) $ $) 44)) (-2889 (((-112) $) 46)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-1941 (($ $ $) 54 (|has| $ (-6 -4409)))) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) 51)) (-2367 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-244 |#1|) (-140) (-1208)) (T -244))
-((-1481 (*1 *2 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208)))) (-2917 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208)))) (-4302 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208)))) (-4331 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208)))) (-1333 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208)))) (-3245 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-244 *2)) (-4 *2 (-1208)))) (-2644 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-244 *2)) (-4 *2 (-1208)))) (-2909 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-244 *2)) (-4 *2 (-1208)))))
-(-13 (-1006 |t#1|) (-10 -8 (-15 -1481 (|t#1| $)) (-15 -2917 ($ $)) (-15 -4302 ($ $)) (-15 -4331 ($ $)) (-15 -1333 ($ $)) (IF (|has| $ (-6 -4408)) (PROGN (-15 -3245 ($ $ $)) (-15 -2644 ($ $ $)) (-15 -2909 ($ $ $))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1006 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2619 ((|#1| $) NIL)) (-3442 ((|#1| $) NIL)) (-4302 (($ $) NIL)) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-1624 (($ $ (-563)) NIL (|has| $ (-6 -4408)))) (-3523 (((-112) $) NIL (|has| |#1| (-846))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-2770 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-846)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-1642 (($ $) 10 (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-2936 ((|#1| $ |#1|) NIL (|has| $ (-6 -4408)))) (-3692 (($ $ $) NIL (|has| $ (-6 -4408)))) (-3889 ((|#1| $ |#1|) NIL (|has| $ (-6 -4408)))) (-1543 ((|#1| $ |#1|) NIL (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4408))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4408))) (($ $ "rest" $) NIL (|has| $ (-6 -4408))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4408))) ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) NIL (|has| $ (-6 -4408)))) (-2812 (($ (-1 (-112) |#1|) $) NIL)) (-2256 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-3431 ((|#1| $) NIL)) (-4239 (($) NIL T CONST)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-3792 (($ $) NIL) (($ $ (-767)) NIL)) (-4005 (($ $) NIL (|has| |#1| (-1093)))) (-3813 (($ $) 7 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2705 (($ |#1| $) NIL (|has| |#1| (-1093))) (($ (-1 (-112) |#1|) $) NIL)) (-1459 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-4355 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) NIL)) (-2018 (((-112) $) NIL)) (-4368 (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093))) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) (-1 (-112) |#1|) $) NIL)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) NIL)) (-1469 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1566 (($ (-767) |#1|) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) NIL (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-2878 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3164 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3651 (($ |#1|) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-2512 (((-640 |#1|) $) NIL)) (-2194 (((-112) $) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1481 ((|#1| $) NIL) (($ $ (-767)) NIL)) (-1812 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-3396 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3781 ((|#1| $) NIL) (($ $ (-767)) NIL)) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2358 (($ $ |#1|) NIL (|has| $ (-6 -4408)))) (-2833 (((-112) $) NIL)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1224 (-563))) NIL) ((|#1| $ (-563)) NIL) ((|#1| $ (-563) |#1|) NIL) (($ $ "unique") 9) (($ $ "sort") 12) (((-767) $ "count") 16)) (-4071 (((-563) $ $) NIL)) (-1314 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-2963 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-3038 (($ (-640 |#1|)) 22)) (-1434 (((-112) $) NIL)) (-2749 (($ $) NIL)) (-1322 (($ $) NIL (|has| $ (-6 -4408)))) (-1950 (((-767) $) NIL)) (-3752 (($ $) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3076 (($ $ $ (-563)) NIL (|has| $ (-6 -4408)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) NIL)) (-3245 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2853 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-640 $)) NIL) (($ $ |#1|) NIL)) (-1693 (($ (-640 |#1|)) 17) (((-640 |#1|) $) 18) (((-858) $) 21 (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) NIL)) (-2962 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3608 (((-767) $) 14 (|has| $ (-6 -4407)))))
-(((-245 |#1|) (-13 (-661 |#1|) (-490 (-640 |#1|)) (-10 -8 (-15 -3038 ($ (-640 |#1|))) (-15 -2309 ($ $ "unique")) (-15 -2309 ($ $ "sort")) (-15 -2309 ((-767) $ "count")))) (-846)) (T -245))
-((-3038 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-245 *3)))) (-2309 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-245 *3)) (-4 *3 (-846)))) (-2309 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-245 *3)) (-4 *3 (-846)))) (-2309 (*1 *2 *1 *3) (-12 (-5 *3 "count") (-5 *2 (-767)) (-5 *1 (-245 *4)) (-4 *4 (-846)))))
-(-13 (-661 |#1|) (-490 (-640 |#1|)) (-10 -8 (-15 -3038 ($ (-640 |#1|))) (-15 -2309 ($ $ "unique")) (-15 -2309 ($ $ "sort")) (-15 -2309 ((-767) $ "count"))))
-((-2920 (((-3 (-767) "failed") |#1| |#1| (-767)) 26)))
-(((-246 |#1|) (-10 -7 (-15 -2920 ((-3 (-767) "failed") |#1| |#1| (-767)))) (-13 (-722) (-368) (-10 -7 (-15 ** (|#1| |#1| (-563)))))) (T -246))
-((-2920 (*1 *2 *3 *3 *2) (|partial| -12 (-5 *2 (-767)) (-4 *3 (-13 (-722) (-368) (-10 -7 (-15 ** (*3 *3 (-563)))))) (-5 *1 (-246 *3)))))
-(-10 -7 (-15 -2920 ((-3 (-767) "failed") |#1| |#1| (-767))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2606 (((-640 (-860 |#1|)) $) NIL)) (-2139 (((-1165 $) $ (-860 |#1|)) NIL) (((-1165 |#2|) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#2| (-555)))) (-4223 (($ $) NIL (|has| |#2| (-555)))) (-3156 (((-112) $) NIL (|has| |#2| (-555)))) (-1779 (((-767) $) NIL) (((-767) $ (-640 (-860 |#1|))) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-4335 (($ $) NIL (|has| |#2| (-452)))) (-3205 (((-418 $) $) NIL (|has| |#2| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-860 |#1|) "failed") $) NIL)) (-2058 ((|#2| $) NIL) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-860 |#1|) $) NIL)) (-2742 (($ $ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-3483 (($ $ (-640 (-563))) NIL)) (-2751 (($ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1300 (($ $) NIL (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-2739 (((-640 $) $) NIL)) (-2468 (((-112) $) NIL (|has| |#2| (-905)))) (-3554 (($ $ |#2| (-240 (-3608 |#1|) (-767)) $) NIL)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-379))) (|has| |#2| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-563))) (|has| |#2| (-882 (-563)))))) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) NIL)) (-2596 (($ (-1165 |#2|) (-860 |#1|)) NIL) (($ (-1165 $) (-860 |#1|)) NIL)) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-2588 (($ |#2| (-240 (-3608 |#1|) (-767))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ (-860 |#1|)) NIL)) (-2048 (((-240 (-3608 |#1|) (-767)) $) NIL) (((-767) $ (-860 |#1|)) NIL) (((-640 (-767)) $ (-640 (-860 |#1|))) NIL)) (-3084 (($ $ $) NIL (|has| |#2| (-846)))) (-1777 (($ $ $) NIL (|has| |#2| (-846)))) (-2803 (($ (-1 (-240 (-3608 |#1|) (-767)) (-240 (-3608 |#1|) (-767))) $) NIL)) (-2240 (($ (-1 |#2| |#2|) $) NIL)) (-4234 (((-3 (-860 |#1|) "failed") $) NIL)) (-2716 (($ $) NIL)) (-2726 ((|#2| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-3573 (((-1151) $) NIL)) (-3733 (((-3 (-640 $) "failed") $) NIL)) (-2919 (((-3 (-640 $) "failed") $) NIL)) (-4086 (((-3 (-2 (|:| |var| (-860 |#1|)) (|:| -1654 (-767))) "failed") $) NIL)) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) NIL)) (-2706 ((|#2| $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#2| (-452)))) (-3548 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2174 (((-418 $) $) NIL (|has| |#2| (-905)))) (-3008 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-555)))) (-1540 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-860 |#1|) |#2|) NIL) (($ $ (-640 (-860 |#1|)) (-640 |#2|)) NIL) (($ $ (-860 |#1|) $) NIL) (($ $ (-640 (-860 |#1|)) (-640 $)) NIL)) (-2315 (($ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-4202 (($ $ (-860 |#1|)) NIL) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-4167 (((-240 (-3608 |#1|) (-767)) $) NIL) (((-767) $ (-860 |#1|)) NIL) (((-640 (-767)) $ (-640 (-860 |#1|))) NIL)) (-2220 (((-888 (-379)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-379)))) (|has| |#2| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-563)))) (|has| |#2| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-860 |#1|) (-611 (-536))) (|has| |#2| (-611 (-536)))))) (-1836 ((|#2| $) NIL (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-905))))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) NIL) (($ (-860 |#1|)) NIL) (($ (-407 (-563))) NIL (-4032 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#2| (-555)))) (-1337 (((-640 |#2|) $) NIL)) (-4319 ((|#2| $ (-240 (-3608 |#1|) (-767))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#2| (-905))) (|has| |#2| (-145))))) (-1675 (((-767)) NIL)) (-2793 (($ $ $ (-767)) NIL (|has| |#2| (-172)))) (-2126 (((-112) $ $) NIL (|has| |#2| (-555)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ (-860 |#1|)) NIL) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-1778 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1837 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#2| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#2| (-38 (-407 (-563))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-247 |#1| |#2|) (-13 (-945 |#2| (-240 (-3608 |#1|) (-767)) (-860 |#1|)) (-10 -8 (-15 -3483 ($ $ (-640 (-563)))))) (-640 (-1169)) (-1045)) (T -247))
-((-3483 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-247 *3 *4)) (-14 *3 (-640 (-1169))) (-4 *4 (-1045)))))
-(-13 (-945 |#2| (-240 (-3608 |#1|) (-767)) (-860 |#1|)) (-10 -8 (-15 -3483 ($ $ (-640 (-563))))))
-((-1677 (((-112) $ $) NIL)) (-1795 (((-1262) $) 17)) (-4117 (((-183) $) 11)) (-3797 (($ (-183)) 12)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3762 (((-249) $) 7)) (-1693 (((-858) $) 9)) (-1718 (((-112) $ $) 15)))
-(((-248) (-13 (-1093) (-10 -8 (-15 -3762 ((-249) $)) (-15 -4117 ((-183) $)) (-15 -3797 ($ (-183))) (-15 -1795 ((-1262) $))))) (T -248))
-((-3762 (*1 *2 *1) (-12 (-5 *2 (-249)) (-5 *1 (-248)))) (-4117 (*1 *2 *1) (-12 (-5 *2 (-183)) (-5 *1 (-248)))) (-3797 (*1 *1 *2) (-12 (-5 *2 (-183)) (-5 *1 (-248)))) (-1795 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-248)))))
-(-13 (-1093) (-10 -8 (-15 -3762 ((-249) $)) (-15 -4117 ((-183) $)) (-15 -3797 ($ (-183))) (-15 -1795 ((-1262) $))))
-((-1677 (((-112) $ $) NIL)) (-3453 (((-640 (-861)) $) NIL)) (-3348 (((-506) $) NIL)) (-3573 (((-1151) $) NIL)) (-2504 (((-186) $) NIL)) (-1694 (((-1113) $) NIL)) (-2544 (((-640 (-112)) $) NIL)) (-1693 (((-858) $) NIL) (((-187) $) 6)) (-1396 (((-55) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1481 (*1 *2 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208)))) (-3333 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208)))) (-4303 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208)))) (-4328 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208)))) (-1333 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208)))) (-1941 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-244 *2)) (-4 *2 (-1208)))) (-3928 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-244 *2)) (-4 *2 (-1208)))) (-3917 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-244 *2)) (-4 *2 (-1208)))))
+(-13 (-1006 |t#1|) (-10 -8 (-15 -1481 (|t#1| $)) (-15 -3333 ($ $)) (-15 -4303 ($ $)) (-15 -4328 ($ $)) (-15 -1333 ($ $)) (IF (|has| $ (-6 -4409)) (PROGN (-15 -1941 ($ $ $)) (-15 -3928 ($ $ $)) (-15 -3917 ($ $ $))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1006 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2618 ((|#1| $) NIL)) (-3446 ((|#1| $) NIL)) (-4303 (($ $) NIL)) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-1887 (($ $ (-563)) NIL (|has| $ (-6 -4409)))) (-4073 (((-112) $) NIL (|has| |#1| (-846))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-4052 (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| |#1| (-846)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-1640 (($ $) 10 (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-2336 ((|#1| $ |#1|) NIL (|has| $ (-6 -4409)))) (-1909 (($ $ $) NIL (|has| $ (-6 -4409)))) (-1898 ((|#1| $ |#1|) NIL (|has| $ (-6 -4409)))) (-1919 ((|#1| $ |#1|) NIL (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4409))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4409))) (($ $ "rest" $) NIL (|has| $ (-6 -4409))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4409))) ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) NIL (|has| $ (-6 -4409)))) (-3678 (($ (-1 (-112) |#1|) $) NIL)) (-2255 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-3435 ((|#1| $) NIL)) (-2569 (($) NIL T CONST)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-3793 (($ $) NIL) (($ $ (-767)) NIL)) (-4194 (($ $) NIL (|has| |#1| (-1093)))) (-3814 (($ $) 7 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1691 (($ |#1| $) NIL (|has| |#1| (-1093))) (($ (-1 (-112) |#1|) $) NIL)) (-1459 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4356 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) NIL)) (-1966 (((-112) $) NIL)) (-4369 (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093))) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) (-1 (-112) |#1|) $) NIL)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) NIL)) (-2358 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1565 (($ (-767) |#1|) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) NIL (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-4265 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-4300 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3652 (($ |#1|) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-2511 (((-640 |#1|) $) NIL)) (-1298 (((-112) $) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1481 ((|#1| $) NIL) (($ $ (-767)) NIL)) (-3867 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-3399 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3782 ((|#1| $) NIL) (($ $ (-767)) NIL)) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2221 (($ $ |#1|) NIL (|has| $ (-6 -4409)))) (-1976 (((-112) $) NIL)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1224 (-563))) NIL) ((|#1| $ (-563)) NIL) ((|#1| $ (-563) |#1|) NIL) (($ $ "unique") 9) (($ $ "sort") 12) (((-767) $ "count") 16)) (-2379 (((-563) $ $) NIL)) (-3690 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-2967 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-3042 (($ (-640 |#1|)) 22)) (-2889 (((-112) $) NIL)) (-1951 (($ $) NIL)) (-1930 (($ $) NIL (|has| $ (-6 -4409)))) (-1961 (((-767) $) NIL)) (-1970 (($ $) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4062 (($ $ $ (-563)) NIL (|has| $ (-6 -4409)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) NIL)) (-1941 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2857 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-640 $)) NIL) (($ $ |#1|) NIL)) (-1692 (($ (-640 |#1|)) 17) (((-640 |#1|) $) 18) (((-858) $) 21 (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) NIL)) (-2367 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3610 (((-767) $) 14 (|has| $ (-6 -4408)))))
+(((-245 |#1|) (-13 (-661 |#1|) (-490 (-640 |#1|)) (-10 -8 (-15 -3042 ($ (-640 |#1|))) (-15 -2308 ($ $ "unique")) (-15 -2308 ($ $ "sort")) (-15 -2308 ((-767) $ "count")))) (-846)) (T -245))
+((-3042 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-245 *3)))) (-2308 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-245 *3)) (-4 *3 (-846)))) (-2308 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-245 *3)) (-4 *3 (-846)))) (-2308 (*1 *2 *1 *3) (-12 (-5 *3 "count") (-5 *2 (-767)) (-5 *1 (-245 *4)) (-4 *4 (-846)))))
+(-13 (-661 |#1|) (-490 (-640 |#1|)) (-10 -8 (-15 -3042 ($ (-640 |#1|))) (-15 -2308 ($ $ "unique")) (-15 -2308 ($ $ "sort")) (-15 -2308 ((-767) $ "count"))))
+((-3937 (((-3 (-767) "failed") |#1| |#1| (-767)) 26)))
+(((-246 |#1|) (-10 -7 (-15 -3937 ((-3 (-767) "failed") |#1| |#1| (-767)))) (-13 (-722) (-368) (-10 -7 (-15 ** (|#1| |#1| (-563)))))) (T -246))
+((-3937 (*1 *2 *3 *3 *2) (|partial| -12 (-5 *2 (-767)) (-4 *3 (-13 (-722) (-368) (-10 -7 (-15 ** (*3 *3 (-563)))))) (-5 *1 (-246 *3)))))
+(-10 -7 (-15 -3937 ((-3 (-767) "failed") |#1| |#1| (-767))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2605 (((-640 (-860 |#1|)) $) NIL)) (-2138 (((-1165 $) $ (-860 |#1|)) NIL) (((-1165 |#2|) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#2| (-555)))) (-3231 (($ $) NIL (|has| |#2| (-555)))) (-3211 (((-112) $) NIL (|has| |#2| (-555)))) (-3897 (((-767) $) NIL) (((-767) $ (-640 (-860 |#1|))) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-1798 (($ $) NIL (|has| |#2| (-452)))) (-2802 (((-418 $) $) NIL (|has| |#2| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-860 |#1|) "failed") $) NIL)) (-2057 ((|#2| $) NIL) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-860 |#1|) $) NIL)) (-1612 (($ $ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-1373 (($ $ (-640 (-563))) NIL)) (-2750 (($ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-4151 (($ $) NIL (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-2738 (((-640 $) $) NIL)) (-2560 (((-112) $) NIL (|has| |#2| (-905)))) (-2159 (($ $ |#2| (-240 (-3610 |#1|) (-767)) $) NIL)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-379))) (|has| |#2| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-563))) (|has| |#2| (-882 (-563)))))) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) NIL)) (-2595 (($ (-1165 |#2|) (-860 |#1|)) NIL) (($ (-1165 $) (-860 |#1|)) NIL)) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-2587 (($ |#2| (-240 (-3610 |#1|) (-767))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ (-860 |#1|)) NIL)) (-3908 (((-240 (-3610 |#1|) (-767)) $) NIL) (((-767) $ (-860 |#1|)) NIL) (((-640 (-767)) $ (-640 (-860 |#1|))) NIL)) (-3088 (($ $ $) NIL (|has| |#2| (-846)))) (-1776 (($ $ $) NIL (|has| |#2| (-846)))) (-2170 (($ (-1 (-240 (-3610 |#1|) (-767)) (-240 (-3610 |#1|) (-767))) $) NIL)) (-2238 (($ (-1 |#2| |#2|) $) NIL)) (-1698 (((-3 (-860 |#1|) "failed") $) NIL)) (-2715 (($ $) NIL)) (-2725 ((|#2| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-3854 (((-1151) $) NIL)) (-3939 (((-3 (-640 $) "failed") $) NIL)) (-3930 (((-3 (-640 $) "failed") $) NIL)) (-3949 (((-3 (-2 (|:| |var| (-860 |#1|)) (|:| -3311 (-767))) "failed") $) NIL)) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) NIL)) (-2705 ((|#2| $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#2| (-452)))) (-3551 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2173 (((-418 $) $) NIL (|has| |#2| (-905)))) (-3012 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-555)))) (-1542 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-860 |#1|) |#2|) NIL) (($ $ (-640 (-860 |#1|)) (-640 |#2|)) NIL) (($ $ (-860 |#1|) $) NIL) (($ $ (-640 (-860 |#1|)) (-640 $)) NIL)) (-1623 (($ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-4203 (($ $ (-860 |#1|)) NIL) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-3871 (((-240 (-3610 |#1|) (-767)) $) NIL) (((-767) $ (-860 |#1|)) NIL) (((-640 (-767)) $ (-640 (-860 |#1|))) NIL)) (-2219 (((-888 (-379)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-379)))) (|has| |#2| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-563)))) (|has| |#2| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-860 |#1|) (-611 (-536))) (|has| |#2| (-611 (-536)))))) (-3885 ((|#2| $) NIL (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-905))))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) NIL) (($ (-860 |#1|)) NIL) (($ (-407 (-563))) NIL (-4034 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#2| (-555)))) (-3955 (((-640 |#2|) $) NIL)) (-3244 ((|#2| $ (-240 (-3610 |#1|) (-767))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#2| (-905))) (|has| |#2| (-145))))) (-3914 (((-767)) NIL)) (-2148 (($ $ $ (-767)) NIL (|has| |#2| (-172)))) (-3223 (((-112) $ $) NIL (|has| |#2| (-555)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-860 |#1|)) NIL) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-1779 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1836 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#2| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#2| (-38 (-407 (-563))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-247 |#1| |#2|) (-13 (-945 |#2| (-240 (-3610 |#1|) (-767)) (-860 |#1|)) (-10 -8 (-15 -1373 ($ $ (-640 (-563)))))) (-640 (-1169)) (-1045)) (T -247))
+((-1373 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-247 *3 *4)) (-14 *3 (-640 (-1169))) (-4 *4 (-1045)))))
+(-13 (-945 |#2| (-240 (-3610 |#1|) (-767)) (-860 |#1|)) (-10 -8 (-15 -1373 ($ $ (-640 (-563))))))
+((-1677 (((-112) $ $) NIL)) (-1794 (((-1262) $) 17)) (-3957 (((-183) $) 11)) (-3947 (($ (-183)) 12)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3763 (((-249) $) 7)) (-1692 (((-858) $) 9)) (-1718 (((-112) $ $) 15)))
+(((-248) (-13 (-1093) (-10 -8 (-15 -3763 ((-249) $)) (-15 -3957 ((-183) $)) (-15 -3947 ($ (-183))) (-15 -1794 ((-1262) $))))) (T -248))
+((-3763 (*1 *2 *1) (-12 (-5 *2 (-249)) (-5 *1 (-248)))) (-3957 (*1 *2 *1) (-12 (-5 *2 (-183)) (-5 *1 (-248)))) (-3947 (*1 *1 *2) (-12 (-5 *2 (-183)) (-5 *1 (-248)))) (-1794 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-248)))))
+(-13 (-1093) (-10 -8 (-15 -3763 ((-249) $)) (-15 -3957 ((-183) $)) (-15 -3947 ($ (-183))) (-15 -1794 ((-1262) $))))
+((-1677 (((-112) $ $) NIL)) (-3457 (((-640 (-861)) $) NIL)) (-3352 (((-506) $) NIL)) (-3854 (((-1151) $) NIL)) (-2504 (((-186) $) NIL)) (-1693 (((-1113) $) NIL)) (-1404 (((-640 (-112)) $) NIL)) (-1692 (((-858) $) NIL) (((-187) $) 6)) (-2935 (((-55) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-249) (-13 (-185) (-610 (-187)))) (T -249))
NIL
(-13 (-185) (-610 (-187)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1946 (($ (-917)) NIL (|has| |#4| (-1045)))) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-1901 (($ $ $) NIL (|has| |#4| (-789)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-3749 (((-767)) NIL (|has| |#4| (-368)))) (-1857 (((-563) $) NIL (|has| |#4| (-844)))) (-1849 ((|#4| $ (-563) |#4|) NIL (|has| $ (-6 -4408)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#4| "failed") $) NIL (|has| |#4| (-1093))) (((-3 (-563) "failed") $) NIL (-12 (|has| |#4| (-1034 (-563))) (|has| |#4| (-1093)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| |#4| (-1034 (-407 (-563)))) (|has| |#4| (-1093))))) (-2058 ((|#4| $) NIL (|has| |#4| (-1093))) (((-563) $) NIL (-12 (|has| |#4| (-1034 (-563))) (|has| |#4| (-1093)))) (((-407 (-563)) $) NIL (-12 (|has| |#4| (-1034 (-407 (-563)))) (|has| |#4| (-1093))))) (-2950 (((-2 (|:| -2835 (-684 |#4|)) (|:| |vec| (-1257 |#4|))) (-684 $) (-1257 $)) NIL (|has| |#4| (-1045))) (((-684 |#4|) (-684 $)) NIL (|has| |#4| (-1045))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045)))) (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045))))) (-3400 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))) (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045))) (|has| |#4| (-722)) (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))))) (-1691 (($) NIL (|has| |#4| (-368)))) (-4355 ((|#4| $ (-563) |#4|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#4| $ (-563)) NIL)) (-3101 (((-112) $) NIL (|has| |#4| (-844)))) (-2659 (((-640 |#4|) $) NIL (|has| $ (-6 -4407)))) (-3827 (((-112) $) NIL (-4032 (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))) (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045))) (|has| |#4| (-722)) (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))))) (-1419 (((-112) $) NIL (|has| |#4| (-844)))) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) NIL (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (-4032 (|has| |#4| (-789)) (|has| |#4| (-844))))) (-2259 (((-640 |#4|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (-4032 (|has| |#4| (-789)) (|has| |#4| (-844))))) (-4345 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#4| |#4|) $) NIL)) (-1476 (((-917) $) NIL (|has| |#4| (-368)))) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-2555 (($ (-917)) NIL (|has| |#4| (-368)))) (-1694 (((-1113) $) NIL)) (-3781 ((|#4| $) NIL (|has| (-563) (-846)))) (-2358 (($ $ |#4|) NIL (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#4|))) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 |#4|) (-640 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093))))) (-2836 (((-640 |#4|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#4| $ (-563) |#4|) NIL) ((|#4| $ (-563)) 12)) (-4092 ((|#4| $ $) NIL (|has| |#4| (-1045)))) (-2510 (($ (-1257 |#4|)) NIL)) (-3533 (((-134)) NIL (|has| |#4| (-363)))) (-4202 (($ $ (-1 |#4| |#4|) (-767)) NIL (|has| |#4| (-1045))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1045))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1045)))) (($ $) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))))) (-1709 (((-767) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407))) (((-767) |#4| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093))))) (-1872 (($ $) NIL)) (-1693 (((-1257 |#4|) $) NIL) (((-858) $) NIL) (($ |#4|) NIL (|has| |#4| (-1093))) (($ (-563)) NIL (-4032 (-12 (|has| |#4| (-1034 (-563))) (|has| |#4| (-1093))) (|has| |#4| (-1045)))) (($ (-407 (-563))) NIL (-12 (|has| |#4| (-1034 (-407 (-563)))) (|has| |#4| (-1093))))) (-1675 (((-767)) NIL (|has| |#4| (-1045)))) (-4383 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-2509 (($ $) NIL (|has| |#4| (-844)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL (-4032 (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))) (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045))) (|has| |#4| (-722)) (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) CONST)) (-3209 (($ $ (-1 |#4| |#4|) (-767)) NIL (|has| |#4| (-1045))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1045))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1045)))) (($ $) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))))) (-1778 (((-112) $ $) NIL (-4032 (|has| |#4| (-789)) (|has| |#4| (-844))))) (-1756 (((-112) $ $) NIL (-4032 (|has| |#4| (-789)) (|has| |#4| (-844))))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (-4032 (|has| |#4| (-789)) (|has| |#4| (-844))))) (-1744 (((-112) $ $) NIL (-4032 (|has| |#4| (-789)) (|has| |#4| (-844))))) (-1837 (($ $ |#4|) NIL (|has| |#4| (-363)))) (-1826 (($ $ $) NIL) (($ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-767)) NIL (-4032 (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))) (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045))) (|has| |#4| (-722)) (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045))))) (($ $ (-917)) NIL (-4032 (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))) (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045))) (|has| |#4| (-722)) (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))))) (* (($ |#2| $) 14) (($ (-563) $) NIL) (($ (-767) $) NIL) (($ (-917) $) NIL) (($ |#3| $) 18) (($ $ |#4|) NIL (|has| |#4| (-722))) (($ |#4| $) NIL (|has| |#4| (-722))) (($ $ $) NIL (-4032 (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))) (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045))) (|has| |#4| (-722)) (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2392 (($ (-917)) NIL (|has| |#4| (-1045)))) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4092 (($ $ $) NIL (|has| |#4| (-789)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-3750 (((-767)) NIL (|has| |#4| (-368)))) (-2807 (((-563) $) NIL (|has| |#4| (-844)))) (-1849 ((|#4| $ (-563) |#4|) NIL (|has| $ (-6 -4409)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#4| "failed") $) NIL (|has| |#4| (-1093))) (((-3 (-563) "failed") $) NIL (-12 (|has| |#4| (-1034 (-563))) (|has| |#4| (-1093)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| |#4| (-1034 (-407 (-563)))) (|has| |#4| (-1093))))) (-2057 ((|#4| $) NIL (|has| |#4| (-1093))) (((-563) $) NIL (-12 (|has| |#4| (-1034 (-563))) (|has| |#4| (-1093)))) (((-407 (-563)) $) NIL (-12 (|has| |#4| (-1034 (-407 (-563)))) (|has| |#4| (-1093))))) (-1476 (((-2 (|:| -1957 (-684 |#4|)) (|:| |vec| (-1257 |#4|))) (-684 $) (-1257 $)) NIL (|has| |#4| (-1045))) (((-684 |#4|) (-684 $)) NIL (|has| |#4| (-1045))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045)))) (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045))))) (-3951 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))) (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045))) (|has| |#4| (-722)) (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))))) (-1690 (($) NIL (|has| |#4| (-368)))) (-4356 ((|#4| $ (-563) |#4|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#4| $ (-563)) NIL)) (-3414 (((-112) $) NIL (|has| |#4| (-844)))) (-2658 (((-640 |#4|) $) NIL (|has| $ (-6 -4408)))) (-3401 (((-112) $) NIL (-4034 (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))) (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045))) (|has| |#4| (-722)) (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))))) (-3426 (((-112) $) NIL (|has| |#4| (-844)))) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) NIL (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (-4034 (|has| |#4| (-789)) (|has| |#4| (-844))))) (-3523 (((-640 |#4|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (-4034 (|has| |#4| (-789)) (|has| |#4| (-844))))) (-4347 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#4| |#4|) $) NIL)) (-3990 (((-917) $) NIL (|has| |#4| (-368)))) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-2552 (($ (-917)) NIL (|has| |#4| (-368)))) (-1693 (((-1113) $) NIL)) (-3782 ((|#4| $) NIL (|has| (-563) (-846)))) (-2221 (($ $ |#4|) NIL (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#4|))) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 |#4|) (-640 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093))))) (-2295 (((-640 |#4|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#4| $ (-563) |#4|) NIL) ((|#4| $ (-563)) 12)) (-4121 ((|#4| $ $) NIL (|has| |#4| (-1045)))) (-2509 (($ (-1257 |#4|)) NIL)) (-3526 (((-134)) NIL (|has| |#4| (-363)))) (-4203 (($ $ (-1 |#4| |#4|) (-767)) NIL (|has| |#4| (-1045))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1045))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1045)))) (($ $) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))))) (-1708 (((-767) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408))) (((-767) |#4| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093))))) (-1870 (($ $) NIL)) (-1692 (((-1257 |#4|) $) NIL) (((-858) $) NIL) (($ |#4|) NIL (|has| |#4| (-1093))) (($ (-563)) NIL (-4034 (-12 (|has| |#4| (-1034 (-563))) (|has| |#4| (-1093))) (|has| |#4| (-1045)))) (($ (-407 (-563))) NIL (-12 (|has| |#4| (-1034 (-407 (-563)))) (|has| |#4| (-1093))))) (-3914 (((-767)) NIL (|has| |#4| (-1045)))) (-1471 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-1462 (($ $) NIL (|has| |#4| (-844)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL (-4034 (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))) (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045))) (|has| |#4| (-722)) (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) CONST)) (-3213 (($ $ (-1 |#4| |#4|) (-767)) NIL (|has| |#4| (-1045))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1045))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1045)))) (($ $) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))))) (-1779 (((-112) $ $) NIL (-4034 (|has| |#4| (-789)) (|has| |#4| (-844))))) (-1754 (((-112) $ $) NIL (-4034 (|has| |#4| (-789)) (|has| |#4| (-844))))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (-4034 (|has| |#4| (-789)) (|has| |#4| (-844))))) (-1743 (((-112) $ $) NIL (-4034 (|has| |#4| (-789)) (|has| |#4| (-844))))) (-1836 (($ $ |#4|) NIL (|has| |#4| (-363)))) (-1825 (($ $ $) NIL) (($ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-767)) NIL (-4034 (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))) (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045))) (|has| |#4| (-722)) (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045))))) (($ $ (-917)) NIL (-4034 (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))) (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045))) (|has| |#4| (-722)) (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))))) (* (($ |#2| $) 14) (($ (-563) $) NIL) (($ (-767) $) NIL) (($ (-917) $) NIL) (($ |#3| $) 18) (($ $ |#4|) NIL (|has| |#4| (-722))) (($ |#4| $) NIL (|has| |#4| (-722))) (($ $ $) NIL (-4034 (-12 (|has| |#4| (-233)) (|has| |#4| (-1045))) (-12 (|has| |#4| (-636 (-563))) (|has| |#4| (-1045))) (|has| |#4| (-722)) (-12 (|has| |#4| (-896 (-1169))) (|has| |#4| (-1045)))))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
(((-250 |#1| |#2| |#3| |#4|) (-13 (-238 |#1| |#4|) (-643 |#2|) (-643 |#3|)) (-917) (-1045) (-1116 |#1| |#2| (-240 |#1| |#2|) (-240 |#1| |#2|)) (-643 |#2|)) (T -250))
NIL
(-13 (-238 |#1| |#4|) (-643 |#2|) (-643 |#3|))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1946 (($ (-917)) NIL (|has| |#3| (-1045)))) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-1901 (($ $ $) NIL (|has| |#3| (-789)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-3749 (((-767)) NIL (|has| |#3| (-368)))) (-1857 (((-563) $) NIL (|has| |#3| (-844)))) (-1849 ((|#3| $ (-563) |#3|) NIL (|has| $ (-6 -4408)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#3| "failed") $) NIL (|has| |#3| (-1093))) (((-3 (-563) "failed") $) NIL (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093))))) (-2058 ((|#3| $) NIL (|has| |#3| (-1093))) (((-563) $) NIL (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093)))) (((-407 (-563)) $) NIL (-12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093))))) (-2950 (((-2 (|:| -2835 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 $) (-1257 $)) NIL (|has| |#3| (-1045))) (((-684 |#3|) (-684 $)) NIL (|has| |#3| (-1045))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045)))) (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045))))) (-3400 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))) (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045))) (|has| |#3| (-722)) (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))))) (-1691 (($) NIL (|has| |#3| (-368)))) (-4355 ((|#3| $ (-563) |#3|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#3| $ (-563)) NIL)) (-3101 (((-112) $) NIL (|has| |#3| (-844)))) (-2659 (((-640 |#3|) $) NIL (|has| $ (-6 -4407)))) (-3827 (((-112) $) NIL (-4032 (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))) (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045))) (|has| |#3| (-722)) (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))))) (-1419 (((-112) $) NIL (|has| |#3| (-844)))) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) NIL (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (-4032 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-2259 (((-640 |#3|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#3| (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (-4032 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-4345 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#3| |#3|) $) NIL)) (-1476 (((-917) $) NIL (|has| |#3| (-368)))) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-2555 (($ (-917)) NIL (|has| |#3| (-368)))) (-1694 (((-1113) $) NIL)) (-3781 ((|#3| $) NIL (|has| (-563) (-846)))) (-2358 (($ $ |#3|) NIL (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#3|))) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-294 |#3|)) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-640 |#3|) (-640 |#3|)) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#3| (-1093))))) (-2836 (((-640 |#3|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#3| $ (-563) |#3|) NIL) ((|#3| $ (-563)) 11)) (-4092 ((|#3| $ $) NIL (|has| |#3| (-1045)))) (-2510 (($ (-1257 |#3|)) NIL)) (-3533 (((-134)) NIL (|has| |#3| (-363)))) (-4202 (($ $ (-1 |#3| |#3|) (-767)) NIL (|has| |#3| (-1045))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1045))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045)))) (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))))) (-1709 (((-767) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4407))) (((-767) |#3| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#3| (-1093))))) (-1872 (($ $) NIL)) (-1693 (((-1257 |#3|) $) NIL) (((-858) $) NIL) (($ |#3|) NIL (|has| |#3| (-1093))) (($ (-563)) NIL (-4032 (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093))) (|has| |#3| (-1045)))) (($ (-407 (-563))) NIL (-12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093))))) (-1675 (((-767)) NIL (|has| |#3| (-1045)))) (-4383 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4407)))) (-2509 (($ $) NIL (|has| |#3| (-844)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL (-4032 (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))) (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045))) (|has| |#3| (-722)) (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) CONST)) (-3209 (($ $ (-1 |#3| |#3|) (-767)) NIL (|has| |#3| (-1045))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1045))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045)))) (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))))) (-1778 (((-112) $ $) NIL (-4032 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1756 (((-112) $ $) NIL (-4032 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (-4032 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1744 (((-112) $ $) NIL (-4032 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1837 (($ $ |#3|) NIL (|has| |#3| (-363)))) (-1826 (($ $ $) NIL) (($ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-767)) NIL (-4032 (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))) (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045))) (|has| |#3| (-722)) (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045))))) (($ $ (-917)) NIL (-4032 (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))) (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045))) (|has| |#3| (-722)) (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))))) (* (($ |#2| $) 13) (($ (-563) $) NIL) (($ (-767) $) NIL) (($ (-917) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-722))) (($ |#3| $) NIL (|has| |#3| (-722))) (($ $ $) NIL (-4032 (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))) (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045))) (|has| |#3| (-722)) (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2392 (($ (-917)) NIL (|has| |#3| (-1045)))) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4092 (($ $ $) NIL (|has| |#3| (-789)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-3750 (((-767)) NIL (|has| |#3| (-368)))) (-2807 (((-563) $) NIL (|has| |#3| (-844)))) (-1849 ((|#3| $ (-563) |#3|) NIL (|has| $ (-6 -4409)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#3| "failed") $) NIL (|has| |#3| (-1093))) (((-3 (-563) "failed") $) NIL (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093))))) (-2057 ((|#3| $) NIL (|has| |#3| (-1093))) (((-563) $) NIL (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093)))) (((-407 (-563)) $) NIL (-12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093))))) (-1476 (((-2 (|:| -1957 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 $) (-1257 $)) NIL (|has| |#3| (-1045))) (((-684 |#3|) (-684 $)) NIL (|has| |#3| (-1045))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045)))) (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045))))) (-3951 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))) (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045))) (|has| |#3| (-722)) (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))))) (-1690 (($) NIL (|has| |#3| (-368)))) (-4356 ((|#3| $ (-563) |#3|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#3| $ (-563)) NIL)) (-3414 (((-112) $) NIL (|has| |#3| (-844)))) (-2658 (((-640 |#3|) $) NIL (|has| $ (-6 -4408)))) (-3401 (((-112) $) NIL (-4034 (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))) (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045))) (|has| |#3| (-722)) (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))))) (-3426 (((-112) $) NIL (|has| |#3| (-844)))) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) NIL (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (-4034 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-3523 (((-640 |#3|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#3| (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (-4034 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-4347 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#3| |#3|) $) NIL)) (-3990 (((-917) $) NIL (|has| |#3| (-368)))) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-2552 (($ (-917)) NIL (|has| |#3| (-368)))) (-1693 (((-1113) $) NIL)) (-3782 ((|#3| $) NIL (|has| (-563) (-846)))) (-2221 (($ $ |#3|) NIL (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#3|))) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-294 |#3|)) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-640 |#3|) (-640 |#3|)) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#3| (-1093))))) (-2295 (((-640 |#3|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#3| $ (-563) |#3|) NIL) ((|#3| $ (-563)) 11)) (-4121 ((|#3| $ $) NIL (|has| |#3| (-1045)))) (-2509 (($ (-1257 |#3|)) NIL)) (-3526 (((-134)) NIL (|has| |#3| (-363)))) (-4203 (($ $ (-1 |#3| |#3|) (-767)) NIL (|has| |#3| (-1045))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1045))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045)))) (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))))) (-1708 (((-767) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4408))) (((-767) |#3| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#3| (-1093))))) (-1870 (($ $) NIL)) (-1692 (((-1257 |#3|) $) NIL) (((-858) $) NIL) (($ |#3|) NIL (|has| |#3| (-1093))) (($ (-563)) NIL (-4034 (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093))) (|has| |#3| (-1045)))) (($ (-407 (-563))) NIL (-12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093))))) (-3914 (((-767)) NIL (|has| |#3| (-1045)))) (-1471 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4408)))) (-1462 (($ $) NIL (|has| |#3| (-844)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL (-4034 (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))) (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045))) (|has| |#3| (-722)) (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) CONST)) (-3213 (($ $ (-1 |#3| |#3|) (-767)) NIL (|has| |#3| (-1045))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1045))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045)))) (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))))) (-1779 (((-112) $ $) NIL (-4034 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1754 (((-112) $ $) NIL (-4034 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (-4034 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1743 (((-112) $ $) NIL (-4034 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1836 (($ $ |#3|) NIL (|has| |#3| (-363)))) (-1825 (($ $ $) NIL) (($ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-767)) NIL (-4034 (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))) (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045))) (|has| |#3| (-722)) (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045))))) (($ $ (-917)) NIL (-4034 (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))) (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045))) (|has| |#3| (-722)) (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))))) (* (($ |#2| $) 13) (($ (-563) $) NIL) (($ (-767) $) NIL) (($ (-917) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-722))) (($ |#3| $) NIL (|has| |#3| (-722))) (($ $ $) NIL (-4034 (-12 (|has| |#3| (-233)) (|has| |#3| (-1045))) (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045))) (|has| |#3| (-722)) (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
(((-251 |#1| |#2| |#3|) (-13 (-238 |#1| |#3|) (-643 |#2|)) (-767) (-1045) (-643 |#2|)) (T -251))
NIL
(-13 (-238 |#1| |#3|) (-643 |#2|))
-((-2784 (((-640 (-767)) $) 47) (((-640 (-767)) $ |#3|) 50)) (-1326 (((-767) $) 49) (((-767) $ |#3|) 52)) (-3942 (($ $) 65)) (-2131 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 (-563) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 72)) (-3254 (((-767) $ |#3|) 39) (((-767) $) 36)) (-3376 (((-1 $ (-767)) |#3|) 15) (((-1 $ (-767)) $) 77)) (-3759 ((|#4| $) 58)) (-3871 (((-112) $) 56)) (-3562 (($ $) 64)) (-1540 (($ $ (-640 (-294 $))) 97) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-640 |#4|) (-640 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-640 |#4|) (-640 $)) NIL) (($ $ |#3| $) NIL) (($ $ (-640 |#3|) (-640 $)) 89) (($ $ |#3| |#2|) NIL) (($ $ (-640 |#3|) (-640 |#2|)) 84)) (-4202 (($ $ |#4|) NIL) (($ $ (-640 |#4|)) NIL) (($ $ |#4| (-767)) NIL) (($ $ (-640 |#4|) (-640 (-767))) NIL) (($ $) NIL) (($ $ (-767)) NIL) (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) 32)) (-3745 (((-640 |#3|) $) 75)) (-4167 ((|#5| $) NIL) (((-767) $ |#4|) NIL) (((-640 (-767)) $ (-640 |#4|)) NIL) (((-767) $ |#3|) 44)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 67) (($ (-407 (-563))) NIL) (($ $) NIL)))
-(((-252 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1693 (|#1| |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -1540 (|#1| |#1| (-640 |#3|) (-640 |#2|))) (-15 -1540 (|#1| |#1| |#3| |#2|)) (-15 -1540 (|#1| |#1| (-640 |#3|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#3| |#1|)) (-15 -3376 ((-1 |#1| (-767)) |#1|)) (-15 -3942 (|#1| |#1|)) (-15 -3562 (|#1| |#1|)) (-15 -3759 (|#4| |#1|)) (-15 -3871 ((-112) |#1|)) (-15 -1326 ((-767) |#1| |#3|)) (-15 -2784 ((-640 (-767)) |#1| |#3|)) (-15 -1326 ((-767) |#1|)) (-15 -2784 ((-640 (-767)) |#1|)) (-15 -4167 ((-767) |#1| |#3|)) (-15 -3254 ((-767) |#1|)) (-15 -3254 ((-767) |#1| |#3|)) (-15 -3745 ((-640 |#3|) |#1|)) (-15 -3376 ((-1 |#1| (-767)) |#3|)) (-15 -1693 (|#1| |#3|)) (-15 -2131 ((-3 |#3| "failed") |#1|)) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1|)) (-15 -4167 ((-640 (-767)) |#1| (-640 |#4|))) (-15 -4167 ((-767) |#1| |#4|)) (-15 -1693 (|#1| |#4|)) (-15 -2131 ((-3 |#4| "failed") |#1|)) (-15 -1540 (|#1| |#1| (-640 |#4|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#4| |#1|)) (-15 -1540 (|#1| |#1| (-640 |#4|) (-640 |#2|))) (-15 -1540 (|#1| |#1| |#4| |#2|)) (-15 -1540 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#1| |#1|)) (-15 -1540 (|#1| |#1| (-294 |#1|))) (-15 -1540 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -4167 (|#5| |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -1693 (|#1| |#2|)) (-15 -4202 (|#1| |#1| (-640 |#4|) (-640 (-767)))) (-15 -4202 (|#1| |#1| |#4| (-767))) (-15 -4202 (|#1| |#1| (-640 |#4|))) (-15 -4202 (|#1| |#1| |#4|)) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|))) (-253 |#2| |#3| |#4| |#5|) (-1045) (-846) (-266 |#3|) (-789)) (T -252))
+((-3989 (((-640 (-767)) $) 47) (((-640 (-767)) $ |#3|) 50)) (-4329 (((-767) $) 49) (((-767) $ |#3|) 52)) (-3968 (($ $) 65)) (-2130 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 (-563) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 72)) (-1775 (((-767) $ |#3|) 39) (((-767) $) 36)) (-4340 (((-1 $ (-767)) |#3|) 15) (((-1 $ (-767)) $) 77)) (-3760 ((|#4| $) 58)) (-3978 (((-112) $) 56)) (-3564 (($ $) 64)) (-1542 (($ $ (-640 (-294 $))) 97) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-640 |#4|) (-640 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-640 |#4|) (-640 $)) NIL) (($ $ |#3| $) NIL) (($ $ (-640 |#3|) (-640 $)) 89) (($ $ |#3| |#2|) NIL) (($ $ (-640 |#3|) (-640 |#2|)) 84)) (-4203 (($ $ |#4|) NIL) (($ $ (-640 |#4|)) NIL) (($ $ |#4| (-767)) NIL) (($ $ (-640 |#4|) (-640 (-767))) NIL) (($ $) NIL) (($ $ (-767)) NIL) (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) 32)) (-4001 (((-640 |#3|) $) 75)) (-3871 ((|#5| $) NIL) (((-767) $ |#4|) NIL) (((-640 (-767)) $ (-640 |#4|)) NIL) (((-767) $ |#3|) 44)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 67) (($ (-407 (-563))) NIL) (($ $) NIL)))
+(((-252 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1692 (|#1| |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -1542 (|#1| |#1| (-640 |#3|) (-640 |#2|))) (-15 -1542 (|#1| |#1| |#3| |#2|)) (-15 -1542 (|#1| |#1| (-640 |#3|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#3| |#1|)) (-15 -4340 ((-1 |#1| (-767)) |#1|)) (-15 -3968 (|#1| |#1|)) (-15 -3564 (|#1| |#1|)) (-15 -3760 (|#4| |#1|)) (-15 -3978 ((-112) |#1|)) (-15 -4329 ((-767) |#1| |#3|)) (-15 -3989 ((-640 (-767)) |#1| |#3|)) (-15 -4329 ((-767) |#1|)) (-15 -3989 ((-640 (-767)) |#1|)) (-15 -3871 ((-767) |#1| |#3|)) (-15 -1775 ((-767) |#1|)) (-15 -1775 ((-767) |#1| |#3|)) (-15 -4001 ((-640 |#3|) |#1|)) (-15 -4340 ((-1 |#1| (-767)) |#3|)) (-15 -1692 (|#1| |#3|)) (-15 -2130 ((-3 |#3| "failed") |#1|)) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1|)) (-15 -3871 ((-640 (-767)) |#1| (-640 |#4|))) (-15 -3871 ((-767) |#1| |#4|)) (-15 -1692 (|#1| |#4|)) (-15 -2130 ((-3 |#4| "failed") |#1|)) (-15 -1542 (|#1| |#1| (-640 |#4|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#4| |#1|)) (-15 -1542 (|#1| |#1| (-640 |#4|) (-640 |#2|))) (-15 -1542 (|#1| |#1| |#4| |#2|)) (-15 -1542 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#1| |#1|)) (-15 -1542 (|#1| |#1| (-294 |#1|))) (-15 -1542 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -3871 (|#5| |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -1692 (|#1| |#2|)) (-15 -4203 (|#1| |#1| (-640 |#4|) (-640 (-767)))) (-15 -4203 (|#1| |#1| |#4| (-767))) (-15 -4203 (|#1| |#1| (-640 |#4|))) (-15 -4203 (|#1| |#1| |#4|)) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|))) (-253 |#2| |#3| |#4| |#5|) (-1045) (-846) (-266 |#3|) (-789)) (T -252))
NIL
-(-10 -8 (-15 -1693 (|#1| |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -1540 (|#1| |#1| (-640 |#3|) (-640 |#2|))) (-15 -1540 (|#1| |#1| |#3| |#2|)) (-15 -1540 (|#1| |#1| (-640 |#3|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#3| |#1|)) (-15 -3376 ((-1 |#1| (-767)) |#1|)) (-15 -3942 (|#1| |#1|)) (-15 -3562 (|#1| |#1|)) (-15 -3759 (|#4| |#1|)) (-15 -3871 ((-112) |#1|)) (-15 -1326 ((-767) |#1| |#3|)) (-15 -2784 ((-640 (-767)) |#1| |#3|)) (-15 -1326 ((-767) |#1|)) (-15 -2784 ((-640 (-767)) |#1|)) (-15 -4167 ((-767) |#1| |#3|)) (-15 -3254 ((-767) |#1|)) (-15 -3254 ((-767) |#1| |#3|)) (-15 -3745 ((-640 |#3|) |#1|)) (-15 -3376 ((-1 |#1| (-767)) |#3|)) (-15 -1693 (|#1| |#3|)) (-15 -2131 ((-3 |#3| "failed") |#1|)) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1|)) (-15 -4167 ((-640 (-767)) |#1| (-640 |#4|))) (-15 -4167 ((-767) |#1| |#4|)) (-15 -1693 (|#1| |#4|)) (-15 -2131 ((-3 |#4| "failed") |#1|)) (-15 -1540 (|#1| |#1| (-640 |#4|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#4| |#1|)) (-15 -1540 (|#1| |#1| (-640 |#4|) (-640 |#2|))) (-15 -1540 (|#1| |#1| |#4| |#2|)) (-15 -1540 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#1| |#1|)) (-15 -1540 (|#1| |#1| (-294 |#1|))) (-15 -1540 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -4167 (|#5| |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -1693 (|#1| |#2|)) (-15 -4202 (|#1| |#1| (-640 |#4|) (-640 (-767)))) (-15 -4202 (|#1| |#1| |#4| (-767))) (-15 -4202 (|#1| |#1| (-640 |#4|))) (-15 -4202 (|#1| |#1| |#4|)) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-2784 (((-640 (-767)) $) 214) (((-640 (-767)) $ |#2|) 212)) (-1326 (((-767) $) 213) (((-767) $ |#2|) 211)) (-2606 (((-640 |#3|) $) 110)) (-2139 (((-1165 $) $ |#3|) 125) (((-1165 |#1|) $) 124)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 87 (|has| |#1| (-555)))) (-4223 (($ $) 88 (|has| |#1| (-555)))) (-3156 (((-112) $) 90 (|has| |#1| (-555)))) (-1779 (((-767) $) 112) (((-767) $ (-640 |#3|)) 111)) (-1495 (((-3 $ "failed") $ $) 19)) (-2424 (((-418 (-1165 $)) (-1165 $)) 100 (|has| |#1| (-905)))) (-4335 (($ $) 98 (|has| |#1| (-452)))) (-3205 (((-418 $) $) 97 (|has| |#1| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 103 (|has| |#1| (-905)))) (-3942 (($ $) 207)) (-4239 (($) 17 T CONST)) (-2131 (((-3 |#1| "failed") $) 164) (((-3 (-407 (-563)) "failed") $) 161 (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) 159 (|has| |#1| (-1034 (-563)))) (((-3 |#3| "failed") $) 136) (((-3 |#2| "failed") $) 221)) (-2058 ((|#1| $) 163) (((-407 (-563)) $) 162 (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) 160 (|has| |#1| (-1034 (-563)))) ((|#3| $) 137) ((|#2| $) 222)) (-2742 (($ $ $ |#3|) 108 (|has| |#1| (-172)))) (-2751 (($ $) 154)) (-2950 (((-684 (-563)) (-684 $)) 134 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 133 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 132) (((-684 |#1|) (-684 $)) 131)) (-3400 (((-3 $ "failed") $) 33)) (-1300 (($ $) 176 (|has| |#1| (-452))) (($ $ |#3|) 105 (|has| |#1| (-452)))) (-2739 (((-640 $) $) 109)) (-2468 (((-112) $) 96 (|has| |#1| (-905)))) (-3554 (($ $ |#1| |#4| $) 172)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 84 (-12 (|has| |#3| (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 83 (-12 (|has| |#3| (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-3254 (((-767) $ |#2|) 217) (((-767) $) 216)) (-3827 (((-112) $) 31)) (-4096 (((-767) $) 169)) (-2596 (($ (-1165 |#1|) |#3|) 117) (($ (-1165 $) |#3|) 116)) (-1368 (((-640 $) $) 126)) (-3920 (((-112) $) 152)) (-2588 (($ |#1| |#4|) 153) (($ $ |#3| (-767)) 119) (($ $ (-640 |#3|) (-640 (-767))) 118)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ |#3|) 120)) (-2048 ((|#4| $) 170) (((-767) $ |#3|) 122) (((-640 (-767)) $ (-640 |#3|)) 121)) (-3084 (($ $ $) 79 (|has| |#1| (-846)))) (-1777 (($ $ $) 78 (|has| |#1| (-846)))) (-2803 (($ (-1 |#4| |#4|) $) 171)) (-2240 (($ (-1 |#1| |#1|) $) 151)) (-3376 (((-1 $ (-767)) |#2|) 219) (((-1 $ (-767)) $) 206 (|has| |#1| (-233)))) (-4234 (((-3 |#3| "failed") $) 123)) (-2716 (($ $) 149)) (-2726 ((|#1| $) 148)) (-3759 ((|#3| $) 209)) (-3513 (($ (-640 $)) 94 (|has| |#1| (-452))) (($ $ $) 93 (|has| |#1| (-452)))) (-3573 (((-1151) $) 9)) (-3871 (((-112) $) 210)) (-3733 (((-3 (-640 $) "failed") $) 114)) (-2919 (((-3 (-640 $) "failed") $) 115)) (-4086 (((-3 (-2 (|:| |var| |#3|) (|:| -1654 (-767))) "failed") $) 113)) (-3562 (($ $) 208)) (-1694 (((-1113) $) 10)) (-2696 (((-112) $) 166)) (-2706 ((|#1| $) 167)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 95 (|has| |#1| (-452)))) (-3548 (($ (-640 $)) 92 (|has| |#1| (-452))) (($ $ $) 91 (|has| |#1| (-452)))) (-1876 (((-418 (-1165 $)) (-1165 $)) 102 (|has| |#1| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) 101 (|has| |#1| (-905)))) (-2174 (((-418 $) $) 99 (|has| |#1| (-905)))) (-3008 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-555))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-555)))) (-1540 (($ $ (-640 (-294 $))) 145) (($ $ (-294 $)) 144) (($ $ $ $) 143) (($ $ (-640 $) (-640 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-640 |#3|) (-640 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-640 |#3|) (-640 $)) 138) (($ $ |#2| $) 205 (|has| |#1| (-233))) (($ $ (-640 |#2|) (-640 $)) 204 (|has| |#1| (-233))) (($ $ |#2| |#1|) 203 (|has| |#1| (-233))) (($ $ (-640 |#2|) (-640 |#1|)) 202 (|has| |#1| (-233)))) (-2315 (($ $ |#3|) 107 (|has| |#1| (-172)))) (-4202 (($ $ |#3|) 42) (($ $ (-640 |#3|)) 41) (($ $ |#3| (-767)) 40) (($ $ (-640 |#3|) (-640 (-767))) 39) (($ $) 238 (|has| |#1| (-233))) (($ $ (-767)) 236 (|has| |#1| (-233))) (($ $ (-1169)) 234 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 233 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 232 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 231 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 224) (($ $ (-1 |#1| |#1|)) 223)) (-3745 (((-640 |#2|) $) 218)) (-4167 ((|#4| $) 150) (((-767) $ |#3|) 130) (((-640 (-767)) $ (-640 |#3|)) 129) (((-767) $ |#2|) 215)) (-2220 (((-888 (-379)) $) 82 (-12 (|has| |#3| (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) 81 (-12 (|has| |#3| (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) 80 (-12 (|has| |#3| (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-1836 ((|#1| $) 175 (|has| |#1| (-452))) (($ $ |#3|) 106 (|has| |#1| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) 104 (-2190 (|has| $ (-145)) (|has| |#1| (-905))))) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 165) (($ |#3|) 135) (($ |#2|) 220) (($ (-407 (-563))) 72 (-4032 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563)))))) (($ $) 85 (|has| |#1| (-555)))) (-1337 (((-640 |#1|) $) 168)) (-4319 ((|#1| $ |#4|) 155) (($ $ |#3| (-767)) 128) (($ $ (-640 |#3|) (-640 (-767))) 127)) (-2779 (((-3 $ "failed") $) 73 (-4032 (-2190 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-1675 (((-767)) 28)) (-2793 (($ $ $ (-767)) 173 (|has| |#1| (-172)))) (-2126 (((-112) $ $) 89 (|has| |#1| (-555)))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ |#3|) 38) (($ $ (-640 |#3|)) 37) (($ $ |#3| (-767)) 36) (($ $ (-640 |#3|) (-640 (-767))) 35) (($ $) 237 (|has| |#1| (-233))) (($ $ (-767)) 235 (|has| |#1| (-233))) (($ $ (-1169)) 230 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 229 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 228 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 227 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 226) (($ $ (-1 |#1| |#1|)) 225)) (-1778 (((-112) $ $) 76 (|has| |#1| (-846)))) (-1756 (((-112) $ $) 75 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 77 (|has| |#1| (-846)))) (-1744 (((-112) $ $) 74 (|has| |#1| (-846)))) (-1837 (($ $ |#1|) 156 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 158 (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) 157 (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+(-10 -8 (-15 -1692 (|#1| |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -1542 (|#1| |#1| (-640 |#3|) (-640 |#2|))) (-15 -1542 (|#1| |#1| |#3| |#2|)) (-15 -1542 (|#1| |#1| (-640 |#3|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#3| |#1|)) (-15 -4340 ((-1 |#1| (-767)) |#1|)) (-15 -3968 (|#1| |#1|)) (-15 -3564 (|#1| |#1|)) (-15 -3760 (|#4| |#1|)) (-15 -3978 ((-112) |#1|)) (-15 -4329 ((-767) |#1| |#3|)) (-15 -3989 ((-640 (-767)) |#1| |#3|)) (-15 -4329 ((-767) |#1|)) (-15 -3989 ((-640 (-767)) |#1|)) (-15 -3871 ((-767) |#1| |#3|)) (-15 -1775 ((-767) |#1|)) (-15 -1775 ((-767) |#1| |#3|)) (-15 -4001 ((-640 |#3|) |#1|)) (-15 -4340 ((-1 |#1| (-767)) |#3|)) (-15 -1692 (|#1| |#3|)) (-15 -2130 ((-3 |#3| "failed") |#1|)) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1|)) (-15 -3871 ((-640 (-767)) |#1| (-640 |#4|))) (-15 -3871 ((-767) |#1| |#4|)) (-15 -1692 (|#1| |#4|)) (-15 -2130 ((-3 |#4| "failed") |#1|)) (-15 -1542 (|#1| |#1| (-640 |#4|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#4| |#1|)) (-15 -1542 (|#1| |#1| (-640 |#4|) (-640 |#2|))) (-15 -1542 (|#1| |#1| |#4| |#2|)) (-15 -1542 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#1| |#1|)) (-15 -1542 (|#1| |#1| (-294 |#1|))) (-15 -1542 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -3871 (|#5| |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -1692 (|#1| |#2|)) (-15 -4203 (|#1| |#1| (-640 |#4|) (-640 (-767)))) (-15 -4203 (|#1| |#1| |#4| (-767))) (-15 -4203 (|#1| |#1| (-640 |#4|))) (-15 -4203 (|#1| |#1| |#4|)) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3989 (((-640 (-767)) $) 214) (((-640 (-767)) $ |#2|) 212)) (-4329 (((-767) $) 213) (((-767) $ |#2|) 211)) (-2605 (((-640 |#3|) $) 110)) (-2138 (((-1165 $) $ |#3|) 125) (((-1165 |#1|) $) 124)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 87 (|has| |#1| (-555)))) (-3231 (($ $) 88 (|has| |#1| (-555)))) (-3211 (((-112) $) 90 (|has| |#1| (-555)))) (-3897 (((-767) $) 112) (((-767) $ (-640 |#3|)) 111)) (-3905 (((-3 $ "failed") $ $) 19)) (-2093 (((-418 (-1165 $)) (-1165 $)) 100 (|has| |#1| (-905)))) (-1798 (($ $) 98 (|has| |#1| (-452)))) (-2802 (((-418 $) $) 97 (|has| |#1| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 103 (|has| |#1| (-905)))) (-3968 (($ $) 207)) (-2569 (($) 17 T CONST)) (-2130 (((-3 |#1| "failed") $) 164) (((-3 (-407 (-563)) "failed") $) 161 (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) 159 (|has| |#1| (-1034 (-563)))) (((-3 |#3| "failed") $) 136) (((-3 |#2| "failed") $) 221)) (-2057 ((|#1| $) 163) (((-407 (-563)) $) 162 (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) 160 (|has| |#1| (-1034 (-563)))) ((|#3| $) 137) ((|#2| $) 222)) (-1612 (($ $ $ |#3|) 108 (|has| |#1| (-172)))) (-2750 (($ $) 154)) (-1476 (((-684 (-563)) (-684 $)) 134 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 133 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 132) (((-684 |#1|) (-684 $)) 131)) (-3951 (((-3 $ "failed") $) 33)) (-4151 (($ $) 176 (|has| |#1| (-452))) (($ $ |#3|) 105 (|has| |#1| (-452)))) (-2738 (((-640 $) $) 109)) (-2560 (((-112) $) 96 (|has| |#1| (-905)))) (-2159 (($ $ |#1| |#4| $) 172)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 84 (-12 (|has| |#3| (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 83 (-12 (|has| |#3| (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-1775 (((-767) $ |#2|) 217) (((-767) $) 216)) (-3401 (((-112) $) 31)) (-3481 (((-767) $) 169)) (-2595 (($ (-1165 |#1|) |#3|) 117) (($ (-1165 $) |#3|) 116)) (-3919 (((-640 $) $) 126)) (-3805 (((-112) $) 152)) (-2587 (($ |#1| |#4|) 153) (($ $ |#3| (-767)) 119) (($ $ (-640 |#3|) (-640 (-767))) 118)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ |#3|) 120)) (-3908 ((|#4| $) 170) (((-767) $ |#3|) 122) (((-640 (-767)) $ (-640 |#3|)) 121)) (-3088 (($ $ $) 79 (|has| |#1| (-846)))) (-1776 (($ $ $) 78 (|has| |#1| (-846)))) (-2170 (($ (-1 |#4| |#4|) $) 171)) (-2238 (($ (-1 |#1| |#1|) $) 151)) (-4340 (((-1 $ (-767)) |#2|) 219) (((-1 $ (-767)) $) 206 (|has| |#1| (-233)))) (-1698 (((-3 |#3| "failed") $) 123)) (-2715 (($ $) 149)) (-2725 ((|#1| $) 148)) (-3760 ((|#3| $) 209)) (-3517 (($ (-640 $)) 94 (|has| |#1| (-452))) (($ $ $) 93 (|has| |#1| (-452)))) (-3854 (((-1151) $) 9)) (-3978 (((-112) $) 210)) (-3939 (((-3 (-640 $) "failed") $) 114)) (-3930 (((-3 (-640 $) "failed") $) 115)) (-3949 (((-3 (-2 (|:| |var| |#3|) (|:| -3311 (-767))) "failed") $) 113)) (-3564 (($ $) 208)) (-1693 (((-1113) $) 10)) (-2695 (((-112) $) 166)) (-2705 ((|#1| $) 167)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 95 (|has| |#1| (-452)))) (-3551 (($ (-640 $)) 92 (|has| |#1| (-452))) (($ $ $) 91 (|has| |#1| (-452)))) (-2075 (((-418 (-1165 $)) (-1165 $)) 102 (|has| |#1| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) 101 (|has| |#1| (-905)))) (-2173 (((-418 $) $) 99 (|has| |#1| (-905)))) (-3012 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-555))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-555)))) (-1542 (($ $ (-640 (-294 $))) 145) (($ $ (-294 $)) 144) (($ $ $ $) 143) (($ $ (-640 $) (-640 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-640 |#3|) (-640 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-640 |#3|) (-640 $)) 138) (($ $ |#2| $) 205 (|has| |#1| (-233))) (($ $ (-640 |#2|) (-640 $)) 204 (|has| |#1| (-233))) (($ $ |#2| |#1|) 203 (|has| |#1| (-233))) (($ $ (-640 |#2|) (-640 |#1|)) 202 (|has| |#1| (-233)))) (-1623 (($ $ |#3|) 107 (|has| |#1| (-172)))) (-4203 (($ $ |#3|) 42) (($ $ (-640 |#3|)) 41) (($ $ |#3| (-767)) 40) (($ $ (-640 |#3|) (-640 (-767))) 39) (($ $) 238 (|has| |#1| (-233))) (($ $ (-767)) 236 (|has| |#1| (-233))) (($ $ (-1169)) 234 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 233 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 232 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 231 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 224) (($ $ (-1 |#1| |#1|)) 223)) (-4001 (((-640 |#2|) $) 218)) (-3871 ((|#4| $) 150) (((-767) $ |#3|) 130) (((-640 (-767)) $ (-640 |#3|)) 129) (((-767) $ |#2|) 215)) (-2219 (((-888 (-379)) $) 82 (-12 (|has| |#3| (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) 81 (-12 (|has| |#3| (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) 80 (-12 (|has| |#3| (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-3885 ((|#1| $) 175 (|has| |#1| (-452))) (($ $ |#3|) 106 (|has| |#1| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) 104 (-2188 (|has| $ (-145)) (|has| |#1| (-905))))) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 165) (($ |#3|) 135) (($ |#2|) 220) (($ (-407 (-563))) 72 (-4034 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563)))))) (($ $) 85 (|has| |#1| (-555)))) (-3955 (((-640 |#1|) $) 168)) (-3244 ((|#1| $ |#4|) 155) (($ $ |#3| (-767)) 128) (($ $ (-640 |#3|) (-640 (-767))) 127)) (-2047 (((-3 $ "failed") $) 73 (-4034 (-2188 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-3914 (((-767)) 28)) (-2148 (($ $ $ (-767)) 173 (|has| |#1| (-172)))) (-3223 (((-112) $ $) 89 (|has| |#1| (-555)))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ |#3|) 38) (($ $ (-640 |#3|)) 37) (($ $ |#3| (-767)) 36) (($ $ (-640 |#3|) (-640 (-767))) 35) (($ $) 237 (|has| |#1| (-233))) (($ $ (-767)) 235 (|has| |#1| (-233))) (($ $ (-1169)) 230 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 229 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 228 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 227 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 226) (($ $ (-1 |#1| |#1|)) 225)) (-1779 (((-112) $ $) 76 (|has| |#1| (-846)))) (-1754 (((-112) $ $) 75 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 77 (|has| |#1| (-846)))) (-1743 (((-112) $ $) 74 (|has| |#1| (-846)))) (-1836 (($ $ |#1|) 156 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 158 (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) 157 (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
(((-253 |#1| |#2| |#3| |#4|) (-140) (-1045) (-846) (-266 |t#2|) (-789)) (T -253))
-((-3376 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *3 (-846)) (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-1 *1 (-767))) (-4 *1 (-253 *4 *3 *5 *6)))) (-3745 (*1 *2 *1) (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-640 *4)))) (-3254 (*1 *2 *1 *3) (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846)) (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-767)))) (-3254 (*1 *2 *1) (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-767)))) (-4167 (*1 *2 *1 *3) (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846)) (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-767)))) (-2784 (*1 *2 *1) (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-640 (-767))))) (-1326 (*1 *2 *1) (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-767)))) (-2784 (*1 *2 *1 *3) (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846)) (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-640 (-767))))) (-1326 (*1 *2 *1 *3) (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846)) (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-767)))) (-3871 (*1 *2 *1) (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-112)))) (-3759 (*1 *2 *1) (-12 (-4 *1 (-253 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-789)) (-4 *2 (-266 *4)))) (-3562 (*1 *1 *1) (-12 (-4 *1 (-253 *2 *3 *4 *5)) (-4 *2 (-1045)) (-4 *3 (-846)) (-4 *4 (-266 *3)) (-4 *5 (-789)))) (-3942 (*1 *1 *1) (-12 (-4 *1 (-253 *2 *3 *4 *5)) (-4 *2 (-1045)) (-4 *3 (-846)) (-4 *4 (-266 *3)) (-4 *5 (-789)))) (-3376 (*1 *2 *1) (-12 (-4 *3 (-233)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-1 *1 (-767))) (-4 *1 (-253 *3 *4 *5 *6)))))
-(-13 (-945 |t#1| |t#4| |t#3|) (-231 |t#1|) (-1034 |t#2|) (-10 -8 (-15 -3376 ((-1 $ (-767)) |t#2|)) (-15 -3745 ((-640 |t#2|) $)) (-15 -3254 ((-767) $ |t#2|)) (-15 -3254 ((-767) $)) (-15 -4167 ((-767) $ |t#2|)) (-15 -2784 ((-640 (-767)) $)) (-15 -1326 ((-767) $)) (-15 -2784 ((-640 (-767)) $ |t#2|)) (-15 -1326 ((-767) $ |t#2|)) (-15 -3871 ((-112) $)) (-15 -3759 (|t#3| $)) (-15 -3562 ($ $)) (-15 -3942 ($ $)) (IF (|has| |t#1| (-233)) (PROGN (-6 (-514 |t#2| |t#1|)) (-6 (-514 |t#2| $)) (-6 (-309 $)) (-15 -3376 ((-1 $ (-767)) $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| |#4|) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) -4032 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 |#2|) . T) ((-613 |#3|) . T) ((-613 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-610 (-858)) . T) ((-172) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-611 (-536)) -12 (|has| |#1| (-611 (-536))) (|has| |#3| (-611 (-536)))) ((-611 (-888 (-379))) -12 (|has| |#1| (-611 (-888 (-379)))) (|has| |#3| (-611 (-888 (-379))))) ((-611 (-888 (-563))) -12 (|has| |#1| (-611 (-888 (-563)))) (|has| |#3| (-611 (-888 (-563))))) ((-231 |#1|) . T) ((-233) |has| |#1| (-233)) ((-290) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-309 $) . T) ((-326 |#1| |#4|) . T) ((-377 |#1|) . T) ((-411 |#1|) . T) ((-452) -4032 (|has| |#1| (-905)) (|has| |#1| (-452))) ((-514 |#2| |#1|) |has| |#1| (-233)) ((-514 |#2| $) |has| |#1| (-233)) ((-514 |#3| |#1|) . T) ((-514 |#3| $) . T) ((-514 $ $) . T) ((-555) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-643 #0#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #0#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-722) . T) ((-846) |has| |#1| (-846)) ((-896 (-1169)) |has| |#1| (-896 (-1169))) ((-896 |#3|) . T) ((-882 (-379)) -12 (|has| |#1| (-882 (-379))) (|has| |#3| (-882 (-379)))) ((-882 (-563)) -12 (|has| |#1| (-882 (-563))) (|has| |#3| (-882 (-563)))) ((-945 |#1| |#4| |#3|) . T) ((-905) |has| |#1| (-905)) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1034 |#2|) . T) ((-1034 |#3|) . T) ((-1051 #0#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1212) |has| |#1| (-905)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2844 ((|#1| $) 54)) (-2636 ((|#1| $) 44)) (-2759 (((-112) $ (-767)) 8)) (-4239 (($) 7 T CONST)) (-3866 (($ $) 60)) (-2907 (($ $) 48)) (-4325 ((|#1| |#1| $) 46)) (-3017 ((|#1| $) 45)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-3415 (((-767) $) 61)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2964 ((|#1| $) 39)) (-3900 ((|#1| |#1| $) 52)) (-3847 ((|#1| |#1| $) 51)) (-1812 (($ |#1| $) 40)) (-4236 (((-767) $) 55)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-2822 ((|#1| $) 62)) (-1910 ((|#1| $) 50)) (-2068 ((|#1| $) 49)) (-3755 ((|#1| $) 41)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3958 ((|#1| |#1| $) 58)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-1749 ((|#1| $) 59)) (-1385 (($) 57) (($ (-640 |#1|)) 56)) (-2370 (((-767) $) 43)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-1425 ((|#1| $) 53)) (-2233 (($ (-640 |#1|)) 42)) (-3498 ((|#1| $) 63)) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-4340 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *3 (-846)) (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-1 *1 (-767))) (-4 *1 (-253 *4 *3 *5 *6)))) (-4001 (*1 *2 *1) (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-640 *4)))) (-1775 (*1 *2 *1 *3) (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846)) (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-767)))) (-1775 (*1 *2 *1) (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-767)))) (-3871 (*1 *2 *1 *3) (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846)) (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-767)))) (-3989 (*1 *2 *1) (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-640 (-767))))) (-4329 (*1 *2 *1) (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-767)))) (-3989 (*1 *2 *1 *3) (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846)) (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-640 (-767))))) (-4329 (*1 *2 *1 *3) (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846)) (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-767)))) (-3978 (*1 *2 *1) (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-112)))) (-3760 (*1 *2 *1) (-12 (-4 *1 (-253 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-789)) (-4 *2 (-266 *4)))) (-3564 (*1 *1 *1) (-12 (-4 *1 (-253 *2 *3 *4 *5)) (-4 *2 (-1045)) (-4 *3 (-846)) (-4 *4 (-266 *3)) (-4 *5 (-789)))) (-3968 (*1 *1 *1) (-12 (-4 *1 (-253 *2 *3 *4 *5)) (-4 *2 (-1045)) (-4 *3 (-846)) (-4 *4 (-266 *3)) (-4 *5 (-789)))) (-4340 (*1 *2 *1) (-12 (-4 *3 (-233)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-1 *1 (-767))) (-4 *1 (-253 *3 *4 *5 *6)))))
+(-13 (-945 |t#1| |t#4| |t#3|) (-231 |t#1|) (-1034 |t#2|) (-10 -8 (-15 -4340 ((-1 $ (-767)) |t#2|)) (-15 -4001 ((-640 |t#2|) $)) (-15 -1775 ((-767) $ |t#2|)) (-15 -1775 ((-767) $)) (-15 -3871 ((-767) $ |t#2|)) (-15 -3989 ((-640 (-767)) $)) (-15 -4329 ((-767) $)) (-15 -3989 ((-640 (-767)) $ |t#2|)) (-15 -4329 ((-767) $ |t#2|)) (-15 -3978 ((-112) $)) (-15 -3760 (|t#3| $)) (-15 -3564 ($ $)) (-15 -3968 ($ $)) (IF (|has| |t#1| (-233)) (PROGN (-6 (-514 |t#2| |t#1|)) (-6 (-514 |t#2| $)) (-6 (-309 $)) (-15 -4340 ((-1 $ (-767)) $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| |#4|) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) -4034 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 |#2|) . T) ((-613 |#3|) . T) ((-613 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-610 (-858)) . T) ((-172) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-611 (-536)) -12 (|has| |#1| (-611 (-536))) (|has| |#3| (-611 (-536)))) ((-611 (-888 (-379))) -12 (|has| |#1| (-611 (-888 (-379)))) (|has| |#3| (-611 (-888 (-379))))) ((-611 (-888 (-563))) -12 (|has| |#1| (-611 (-888 (-563)))) (|has| |#3| (-611 (-888 (-563))))) ((-231 |#1|) . T) ((-233) |has| |#1| (-233)) ((-290) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-309 $) . T) ((-326 |#1| |#4|) . T) ((-377 |#1|) . T) ((-411 |#1|) . T) ((-452) -4034 (|has| |#1| (-905)) (|has| |#1| (-452))) ((-514 |#2| |#1|) |has| |#1| (-233)) ((-514 |#2| $) |has| |#1| (-233)) ((-514 |#3| |#1|) . T) ((-514 |#3| $) . T) ((-514 $ $) . T) ((-555) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-643 #0#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #0#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-722) . T) ((-846) |has| |#1| (-846)) ((-896 (-1169)) |has| |#1| (-896 (-1169))) ((-896 |#3|) . T) ((-882 (-379)) -12 (|has| |#1| (-882 (-379))) (|has| |#3| (-882 (-379)))) ((-882 (-563)) -12 (|has| |#1| (-882 (-563))) (|has| |#3| (-882 (-563)))) ((-945 |#1| |#4| |#3|) . T) ((-905) |has| |#1| (-905)) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1034 |#2|) . T) ((-1034 |#3|) . T) ((-1051 #0#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1212) |has| |#1| (-905)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-4068 ((|#1| $) 54)) (-2635 ((|#1| $) 44)) (-3001 (((-112) $ (-767)) 8)) (-2569 (($) 7 T CONST)) (-2080 (($ $) 60)) (-1574 (($ $) 48)) (-2147 ((|#1| |#1| $) 46)) (-2136 ((|#1| $) 45)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-3419 (((-767) $) 61)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2627 ((|#1| $) 39)) (-4045 ((|#1| |#1| $) 52)) (-4033 ((|#1| |#1| $) 51)) (-3867 (($ |#1| $) 40)) (-4238 (((-767) $) 55)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-2071 ((|#1| $) 62)) (-4022 ((|#1| $) 50)) (-4012 ((|#1| $) 49)) (-2808 ((|#1| $) 41)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-2099 ((|#1| |#1| $) 58)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2088 ((|#1| $) 59)) (-4078 (($) 57) (($ (-640 |#1|)) 56)) (-2369 (((-767) $) 43)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4057 ((|#1| $) 53)) (-2820 (($ (-640 |#1|)) 42)) (-2061 ((|#1| $) 63)) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-254 |#1|) (-140) (-1208)) (T -254))
-((-1385 (*1 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))) (-1385 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-4 *1 (-254 *3)))) (-4236 (*1 *2 *1) (-12 (-4 *1 (-254 *3)) (-4 *3 (-1208)) (-5 *2 (-767)))) (-2844 (*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))) (-1425 (*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))) (-3900 (*1 *2 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))) (-3847 (*1 *2 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))) (-1910 (*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))) (-2068 (*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))) (-2907 (*1 *1 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
-(-13 (-1114 |t#1|) (-991 |t#1|) (-10 -8 (-15 -1385 ($)) (-15 -1385 ($ (-640 |t#1|))) (-15 -4236 ((-767) $)) (-15 -2844 (|t#1| $)) (-15 -1425 (|t#1| $)) (-15 -3900 (|t#1| |t#1| $)) (-15 -3847 (|t#1| |t#1| $)) (-15 -1910 (|t#1| $)) (-15 -2068 (|t#1| $)) (-15 -2907 ($ $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-991 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1114 |#1|) . T) ((-1208) . T))
-((-2959 (((-1 (-939 (-225)) (-225) (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225) (-225))) 139)) (-2286 (((-1126 (-225)) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379))) 160) (((-1126 (-225)) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)) (-640 (-263))) 158) (((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379))) 163) (((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263))) 159) (((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379))) 150) (((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263))) 149) (((-1126 (-225)) (-1 (-939 (-225)) (-225)) (-1087 (-379))) 129) (((-1126 (-225)) (-1 (-939 (-225)) (-225)) (-1087 (-379)) (-640 (-263))) 127) (((-1126 (-225)) (-875 (-1 (-225) (-225))) (-1087 (-379))) 128) (((-1126 (-225)) (-875 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263))) 125)) (-2243 (((-1259) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379))) 162) (((-1259) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)) (-640 (-263))) 161) (((-1259) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379))) 165) (((-1259) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263))) 164) (((-1259) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379))) 152) (((-1259) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263))) 151) (((-1259) (-1 (-939 (-225)) (-225)) (-1087 (-379))) 135) (((-1259) (-1 (-939 (-225)) (-225)) (-1087 (-379)) (-640 (-263))) 134) (((-1259) (-875 (-1 (-225) (-225))) (-1087 (-379))) 133) (((-1259) (-875 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263))) 132) (((-1258) (-873 (-1 (-225) (-225))) (-1087 (-379))) 100) (((-1258) (-873 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263))) 99) (((-1258) (-1 (-225) (-225)) (-1087 (-379))) 96) (((-1258) (-1 (-225) (-225)) (-1087 (-379)) (-640 (-263))) 95)))
-(((-255) (-10 -7 (-15 -2243 ((-1258) (-1 (-225) (-225)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1258) (-1 (-225) (-225)) (-1087 (-379)))) (-15 -2243 ((-1258) (-873 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1258) (-873 (-1 (-225) (-225))) (-1087 (-379)))) (-15 -2243 ((-1259) (-875 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-875 (-1 (-225) (-225))) (-1087 (-379)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-875 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-875 (-1 (-225) (-225))) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225)) (-1087 (-379)))) (-15 -2243 ((-1259) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2243 ((-1259) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)))) (-15 -2959 ((-1 (-939 (-225)) (-225) (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))) (T -255))
-((-2959 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-939 (-225)) (-225) (-225))) (-5 *3 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-878 (-1 (-225) (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-878 (-1 (-225) (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-878 (-1 (-225) (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-878 (-1 (-225) (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-939 (-225)) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-939 (-225)) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-939 (-225)) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-939 (-225)) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-939 (-225)) (-225))) (-5 *4 (-1087 (-379))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-939 (-225)) (-225))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4) (-12 (-5 *3 (-875 (-1 (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-875 (-1 (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-939 (-225)) (-225))) (-5 *4 (-1087 (-379))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-939 (-225)) (-225))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4) (-12 (-5 *3 (-875 (-1 (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-875 (-1 (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4) (-12 (-5 *3 (-873 (-1 (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *2 (-1258)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-873 (-1 (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1258)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *2 (-1258)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1258)) (-5 *1 (-255)))))
-(-10 -7 (-15 -2243 ((-1258) (-1 (-225) (-225)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1258) (-1 (-225) (-225)) (-1087 (-379)))) (-15 -2243 ((-1258) (-873 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1258) (-873 (-1 (-225) (-225))) (-1087 (-379)))) (-15 -2243 ((-1259) (-875 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-875 (-1 (-225) (-225))) (-1087 (-379)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-875 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-875 (-1 (-225) (-225))) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225)) (-1087 (-379)))) (-15 -2243 ((-1259) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2243 ((-1259) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)))) (-15 -2959 ((-1 (-939 (-225)) (-225) (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))
+((-4078 (*1 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))) (-4078 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-4 *1 (-254 *3)))) (-4238 (*1 *2 *1) (-12 (-4 *1 (-254 *3)) (-4 *3 (-1208)) (-5 *2 (-767)))) (-4068 (*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))) (-4057 (*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))) (-4045 (*1 *2 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))) (-4033 (*1 *2 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))) (-4022 (*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))) (-4012 (*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))) (-1574 (*1 *1 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
+(-13 (-1114 |t#1|) (-991 |t#1|) (-10 -8 (-15 -4078 ($)) (-15 -4078 ($ (-640 |t#1|))) (-15 -4238 ((-767) $)) (-15 -4068 (|t#1| $)) (-15 -4057 (|t#1| $)) (-15 -4045 (|t#1| |t#1| $)) (-15 -4033 (|t#1| |t#1| $)) (-15 -4022 (|t#1| $)) (-15 -4012 (|t#1| $)) (-15 -1574 ($ $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-991 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1114 |#1|) . T) ((-1208) . T))
+((-4089 (((-1 (-939 (-225)) (-225) (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225) (-225))) 139)) (-2286 (((-1126 (-225)) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379))) 160) (((-1126 (-225)) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)) (-640 (-263))) 158) (((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379))) 163) (((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263))) 159) (((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379))) 150) (((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263))) 149) (((-1126 (-225)) (-1 (-939 (-225)) (-225)) (-1087 (-379))) 129) (((-1126 (-225)) (-1 (-939 (-225)) (-225)) (-1087 (-379)) (-640 (-263))) 127) (((-1126 (-225)) (-875 (-1 (-225) (-225))) (-1087 (-379))) 128) (((-1126 (-225)) (-875 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263))) 125)) (-2243 (((-1259) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379))) 162) (((-1259) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)) (-640 (-263))) 161) (((-1259) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379))) 165) (((-1259) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263))) 164) (((-1259) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379))) 152) (((-1259) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263))) 151) (((-1259) (-1 (-939 (-225)) (-225)) (-1087 (-379))) 135) (((-1259) (-1 (-939 (-225)) (-225)) (-1087 (-379)) (-640 (-263))) 134) (((-1259) (-875 (-1 (-225) (-225))) (-1087 (-379))) 133) (((-1259) (-875 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263))) 132) (((-1258) (-873 (-1 (-225) (-225))) (-1087 (-379))) 100) (((-1258) (-873 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263))) 99) (((-1258) (-1 (-225) (-225)) (-1087 (-379))) 96) (((-1258) (-1 (-225) (-225)) (-1087 (-379)) (-640 (-263))) 95)))
+(((-255) (-10 -7 (-15 -2243 ((-1258) (-1 (-225) (-225)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1258) (-1 (-225) (-225)) (-1087 (-379)))) (-15 -2243 ((-1258) (-873 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1258) (-873 (-1 (-225) (-225))) (-1087 (-379)))) (-15 -2243 ((-1259) (-875 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-875 (-1 (-225) (-225))) (-1087 (-379)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-875 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-875 (-1 (-225) (-225))) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225)) (-1087 (-379)))) (-15 -2243 ((-1259) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2243 ((-1259) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)))) (-15 -4089 ((-1 (-939 (-225)) (-225) (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))) (T -255))
+((-4089 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-939 (-225)) (-225) (-225))) (-5 *3 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-878 (-1 (-225) (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-878 (-1 (-225) (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-878 (-1 (-225) (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-878 (-1 (-225) (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-939 (-225)) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-939 (-225)) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-939 (-225)) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-939 (-225)) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-939 (-225)) (-225))) (-5 *4 (-1087 (-379))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-939 (-225)) (-225))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4) (-12 (-5 *3 (-875 (-1 (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2286 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-875 (-1 (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-939 (-225)) (-225))) (-5 *4 (-1087 (-379))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-939 (-225)) (-225))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4) (-12 (-5 *3 (-875 (-1 (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-875 (-1 (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1259)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4) (-12 (-5 *3 (-873 (-1 (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *2 (-1258)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-873 (-1 (-225) (-225)))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1258)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *2 (-1258)) (-5 *1 (-255)))) (-2243 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-225) (-225))) (-5 *4 (-1087 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1258)) (-5 *1 (-255)))))
+(-10 -7 (-15 -2243 ((-1258) (-1 (-225) (-225)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1258) (-1 (-225) (-225)) (-1087 (-379)))) (-15 -2243 ((-1258) (-873 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1258) (-873 (-1 (-225) (-225))) (-1087 (-379)))) (-15 -2243 ((-1259) (-875 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-875 (-1 (-225) (-225))) (-1087 (-379)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-875 (-1 (-225) (-225))) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-875 (-1 (-225) (-225))) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225)) (-1087 (-379)))) (-15 -2243 ((-1259) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-379)) (-1087 (-379)))) (-15 -2243 ((-1259) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)))) (-15 -2286 ((-1126 (-225)) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-878 (-1 (-225) (-225) (-225))) (-1087 (-379)) (-1087 (-379)))) (-15 -4089 ((-1 (-939 (-225)) (-225) (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))
((-2243 (((-1258) (-294 |#2|) (-1169) (-1169) (-640 (-263))) 96)))
(((-256 |#1| |#2|) (-10 -7 (-15 -2243 ((-1258) (-294 |#2|) (-1169) (-1169) (-640 (-263))))) (-13 (-555) (-846) (-1034 (-563))) (-430 |#1|)) (T -256))
((-2243 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-294 *7)) (-5 *4 (-1169)) (-5 *5 (-640 (-263))) (-4 *7 (-430 *6)) (-4 *6 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-1258)) (-5 *1 (-256 *6 *7)))))
(-10 -7 (-15 -2243 ((-1258) (-294 |#2|) (-1169) (-1169) (-640 (-263)))))
-((-4288 (((-563) (-563)) 50)) (-3505 (((-563) (-563)) 51)) (-4178 (((-225) (-225)) 52)) (-4213 (((-1259) (-1 (-169 (-225)) (-169 (-225))) (-1087 (-225)) (-1087 (-225))) 49)) (-2668 (((-1259) (-1 (-169 (-225)) (-169 (-225))) (-1087 (-225)) (-1087 (-225)) (-112)) 47)))
-(((-257) (-10 -7 (-15 -2668 ((-1259) (-1 (-169 (-225)) (-169 (-225))) (-1087 (-225)) (-1087 (-225)) (-112))) (-15 -4213 ((-1259) (-1 (-169 (-225)) (-169 (-225))) (-1087 (-225)) (-1087 (-225)))) (-15 -4288 ((-563) (-563))) (-15 -3505 ((-563) (-563))) (-15 -4178 ((-225) (-225))))) (T -257))
-((-4178 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-257)))) (-3505 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-257)))) (-4288 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-257)))) (-4213 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1087 (-225))) (-5 *2 (-1259)) (-5 *1 (-257)))) (-2668 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1087 (-225))) (-5 *5 (-112)) (-5 *2 (-1259)) (-5 *1 (-257)))))
-(-10 -7 (-15 -2668 ((-1259) (-1 (-169 (-225)) (-169 (-225))) (-1087 (-225)) (-1087 (-225)) (-112))) (-15 -4213 ((-1259) (-1 (-169 (-225)) (-169 (-225))) (-1087 (-225)) (-1087 (-225)))) (-15 -4288 ((-563) (-563))) (-15 -3505 ((-563) (-563))) (-15 -4178 ((-225) (-225))))
-((-1693 (((-1085 (-379)) (-1085 (-316 |#1|))) 16)))
-(((-258 |#1|) (-10 -7 (-15 -1693 ((-1085 (-379)) (-1085 (-316 |#1|))))) (-13 (-846) (-555) (-611 (-379)))) (T -258))
-((-1693 (*1 *2 *3) (-12 (-5 *3 (-1085 (-316 *4))) (-4 *4 (-13 (-846) (-555) (-611 (-379)))) (-5 *2 (-1085 (-379))) (-5 *1 (-258 *4)))))
-(-10 -7 (-15 -1693 ((-1085 (-379)) (-1085 (-316 |#1|)))))
+((-4123 (((-563) (-563)) 50)) (-4134 (((-563) (-563)) 51)) (-4146 (((-225) (-225)) 52)) (-4113 (((-1259) (-1 (-169 (-225)) (-169 (-225))) (-1087 (-225)) (-1087 (-225))) 49)) (-4100 (((-1259) (-1 (-169 (-225)) (-169 (-225))) (-1087 (-225)) (-1087 (-225)) (-112)) 47)))
+(((-257) (-10 -7 (-15 -4100 ((-1259) (-1 (-169 (-225)) (-169 (-225))) (-1087 (-225)) (-1087 (-225)) (-112))) (-15 -4113 ((-1259) (-1 (-169 (-225)) (-169 (-225))) (-1087 (-225)) (-1087 (-225)))) (-15 -4123 ((-563) (-563))) (-15 -4134 ((-563) (-563))) (-15 -4146 ((-225) (-225))))) (T -257))
+((-4146 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-257)))) (-4134 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-257)))) (-4123 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-257)))) (-4113 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1087 (-225))) (-5 *2 (-1259)) (-5 *1 (-257)))) (-4100 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1087 (-225))) (-5 *5 (-112)) (-5 *2 (-1259)) (-5 *1 (-257)))))
+(-10 -7 (-15 -4100 ((-1259) (-1 (-169 (-225)) (-169 (-225))) (-1087 (-225)) (-1087 (-225)) (-112))) (-15 -4113 ((-1259) (-1 (-169 (-225)) (-169 (-225))) (-1087 (-225)) (-1087 (-225)))) (-15 -4123 ((-563) (-563))) (-15 -4134 ((-563) (-563))) (-15 -4146 ((-225) (-225))))
+((-1692 (((-1085 (-379)) (-1085 (-316 |#1|))) 16)))
+(((-258 |#1|) (-10 -7 (-15 -1692 ((-1085 (-379)) (-1085 (-316 |#1|))))) (-13 (-846) (-555) (-611 (-379)))) (T -258))
+((-1692 (*1 *2 *3) (-12 (-5 *3 (-1085 (-316 *4))) (-4 *4 (-13 (-846) (-555) (-611 (-379)))) (-5 *2 (-1085 (-379))) (-5 *1 (-258 *4)))))
+(-10 -7 (-15 -1692 ((-1085 (-379)) (-1085 (-316 |#1|)))))
((-2286 (((-1126 (-225)) (-878 |#1|) (-1085 (-379)) (-1085 (-379))) 71) (((-1126 (-225)) (-878 |#1|) (-1085 (-379)) (-1085 (-379)) (-640 (-263))) 70) (((-1126 (-225)) |#1| (-1085 (-379)) (-1085 (-379))) 61) (((-1126 (-225)) |#1| (-1085 (-379)) (-1085 (-379)) (-640 (-263))) 60) (((-1126 (-225)) (-875 |#1|) (-1085 (-379))) 52) (((-1126 (-225)) (-875 |#1|) (-1085 (-379)) (-640 (-263))) 51)) (-2243 (((-1259) (-878 |#1|) (-1085 (-379)) (-1085 (-379))) 74) (((-1259) (-878 |#1|) (-1085 (-379)) (-1085 (-379)) (-640 (-263))) 73) (((-1259) |#1| (-1085 (-379)) (-1085 (-379))) 64) (((-1259) |#1| (-1085 (-379)) (-1085 (-379)) (-640 (-263))) 63) (((-1259) (-875 |#1|) (-1085 (-379))) 56) (((-1259) (-875 |#1|) (-1085 (-379)) (-640 (-263))) 55) (((-1258) (-873 |#1|) (-1085 (-379))) 43) (((-1258) (-873 |#1|) (-1085 (-379)) (-640 (-263))) 42) (((-1258) |#1| (-1085 (-379))) 35) (((-1258) |#1| (-1085 (-379)) (-640 (-263))) 34)))
(((-259 |#1|) (-10 -7 (-15 -2243 ((-1258) |#1| (-1085 (-379)) (-640 (-263)))) (-15 -2243 ((-1258) |#1| (-1085 (-379)))) (-15 -2243 ((-1258) (-873 |#1|) (-1085 (-379)) (-640 (-263)))) (-15 -2243 ((-1258) (-873 |#1|) (-1085 (-379)))) (-15 -2243 ((-1259) (-875 |#1|) (-1085 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-875 |#1|) (-1085 (-379)))) (-15 -2286 ((-1126 (-225)) (-875 |#1|) (-1085 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-875 |#1|) (-1085 (-379)))) (-15 -2243 ((-1259) |#1| (-1085 (-379)) (-1085 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) |#1| (-1085 (-379)) (-1085 (-379)))) (-15 -2286 ((-1126 (-225)) |#1| (-1085 (-379)) (-1085 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) |#1| (-1085 (-379)) (-1085 (-379)))) (-15 -2243 ((-1259) (-878 |#1|) (-1085 (-379)) (-1085 (-379)) (-640 (-263)))) (-15 -2243 ((-1259) (-878 |#1|) (-1085 (-379)) (-1085 (-379)))) (-15 -2286 ((-1126 (-225)) (-878 |#1|) (-1085 (-379)) (-1085 (-379)) (-640 (-263)))) (-15 -2286 ((-1126 (-225)) (-878 |#1|) (-1085 (-379)) (-1085 (-379))))) (-13 (-611 (-536)) (-1093))) (T -259))
((-2286 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-878 *5)) (-5 *4 (-1085 (-379))) (-4 *5 (-13 (-611 (-536)) (-1093))) (-5 *2 (-1126 (-225))) (-5 *1 (-259 *5)))) (-2286 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-878 *6)) (-5 *4 (-1085 (-379))) (-5 *5 (-640 (-263))) (-4 *6 (-13 (-611 (-536)) (-1093))) (-5 *2 (-1126 (-225))) (-5 *1 (-259 *6)))) (-2243 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-878 *5)) (-5 *4 (-1085 (-379))) (-4 *5 (-13 (-611 (-536)) (-1093))) (-5 *2 (-1259)) (-5 *1 (-259 *5)))) (-2243 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-878 *6)) (-5 *4 (-1085 (-379))) (-5 *5 (-640 (-263))) (-4 *6 (-13 (-611 (-536)) (-1093))) (-5 *2 (-1259)) (-5 *1 (-259 *6)))) (-2286 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1085 (-379))) (-5 *2 (-1126 (-225))) (-5 *1 (-259 *3)) (-4 *3 (-13 (-611 (-536)) (-1093))))) (-2286 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1085 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-259 *3)) (-4 *3 (-13 (-611 (-536)) (-1093))))) (-2243 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1085 (-379))) (-5 *2 (-1259)) (-5 *1 (-259 *3)) (-4 *3 (-13 (-611 (-536)) (-1093))))) (-2243 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1085 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1259)) (-5 *1 (-259 *3)) (-4 *3 (-13 (-611 (-536)) (-1093))))) (-2286 (*1 *2 *3 *4) (-12 (-5 *3 (-875 *5)) (-5 *4 (-1085 (-379))) (-4 *5 (-13 (-611 (-536)) (-1093))) (-5 *2 (-1126 (-225))) (-5 *1 (-259 *5)))) (-2286 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-875 *6)) (-5 *4 (-1085 (-379))) (-5 *5 (-640 (-263))) (-4 *6 (-13 (-611 (-536)) (-1093))) (-5 *2 (-1126 (-225))) (-5 *1 (-259 *6)))) (-2243 (*1 *2 *3 *4) (-12 (-5 *3 (-875 *5)) (-5 *4 (-1085 (-379))) (-4 *5 (-13 (-611 (-536)) (-1093))) (-5 *2 (-1259)) (-5 *1 (-259 *5)))) (-2243 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-875 *6)) (-5 *4 (-1085 (-379))) (-5 *5 (-640 (-263))) (-4 *6 (-13 (-611 (-536)) (-1093))) (-5 *2 (-1259)) (-5 *1 (-259 *6)))) (-2243 (*1 *2 *3 *4) (-12 (-5 *3 (-873 *5)) (-5 *4 (-1085 (-379))) (-4 *5 (-13 (-611 (-536)) (-1093))) (-5 *2 (-1258)) (-5 *1 (-259 *5)))) (-2243 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-873 *6)) (-5 *4 (-1085 (-379))) (-5 *5 (-640 (-263))) (-4 *6 (-13 (-611 (-536)) (-1093))) (-5 *2 (-1258)) (-5 *1 (-259 *6)))) (-2243 (*1 *2 *3 *4) (-12 (-5 *4 (-1085 (-379))) (-5 *2 (-1258)) (-5 *1 (-259 *3)) (-4 *3 (-13 (-611 (-536)) (-1093))))) (-2243 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1085 (-379))) (-5 *5 (-640 (-263))) (-5 *2 (-1258)) (-5 *1 (-259 *3)) (-4 *3 (-13 (-611 (-536)) (-1093))))))
@@ -1008,3949 +1008,3949 @@ NIL
(((-260) (-10 -7 (-15 -2243 ((-1258) (-640 (-225)) (-640 (-225)))) (-15 -2243 ((-1258) (-640 (-225)) (-640 (-225)) (-640 (-263)))) (-15 -2243 ((-1258) (-640 (-939 (-225))))) (-15 -2243 ((-1258) (-640 (-939 (-225))) (-640 (-263)))) (-15 -2243 ((-1259) (-640 (-225)) (-640 (-225)) (-640 (-225)))) (-15 -2243 ((-1259) (-640 (-225)) (-640 (-225)) (-640 (-225)) (-640 (-263)))))) (T -260))
((-2243 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-640 (-225))) (-5 *4 (-640 (-263))) (-5 *2 (-1259)) (-5 *1 (-260)))) (-2243 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-640 (-225))) (-5 *2 (-1259)) (-5 *1 (-260)))) (-2243 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-939 (-225)))) (-5 *4 (-640 (-263))) (-5 *2 (-1258)) (-5 *1 (-260)))) (-2243 (*1 *2 *3) (-12 (-5 *3 (-640 (-939 (-225)))) (-5 *2 (-1258)) (-5 *1 (-260)))) (-2243 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-640 (-225))) (-5 *4 (-640 (-263))) (-5 *2 (-1258)) (-5 *1 (-260)))) (-2243 (*1 *2 *3 *3) (-12 (-5 *3 (-640 (-225))) (-5 *2 (-1258)) (-5 *1 (-260)))))
(-10 -7 (-15 -2243 ((-1258) (-640 (-225)) (-640 (-225)))) (-15 -2243 ((-1258) (-640 (-225)) (-640 (-225)) (-640 (-263)))) (-15 -2243 ((-1258) (-640 (-939 (-225))))) (-15 -2243 ((-1258) (-640 (-939 (-225))) (-640 (-263)))) (-15 -2243 ((-1259) (-640 (-225)) (-640 (-225)) (-640 (-225)))) (-15 -2243 ((-1259) (-640 (-225)) (-640 (-225)) (-640 (-225)) (-640 (-263)))))
-((-2135 (((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) (-640 (-263)) (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) 25)) (-2786 (((-917) (-640 (-263)) (-917)) 52)) (-3220 (((-917) (-640 (-263)) (-917)) 51)) (-3528 (((-640 (-379)) (-640 (-263)) (-640 (-379))) 68)) (-2185 (((-379) (-640 (-263)) (-379)) 57)) (-2750 (((-917) (-640 (-263)) (-917)) 53)) (-1353 (((-112) (-640 (-263)) (-112)) 27)) (-3694 (((-1151) (-640 (-263)) (-1151)) 19)) (-2383 (((-1151) (-640 (-263)) (-1151)) 26)) (-4140 (((-1126 (-225)) (-640 (-263))) 46)) (-2567 (((-640 (-1087 (-379))) (-640 (-263)) (-640 (-1087 (-379)))) 40)) (-3229 (((-870) (-640 (-263)) (-870)) 32)) (-1457 (((-870) (-640 (-263)) (-870)) 33)) (-2430 (((-1 (-939 (-225)) (-939 (-225))) (-640 (-263)) (-1 (-939 (-225)) (-939 (-225)))) 63)) (-3489 (((-112) (-640 (-263)) (-112)) 14)) (-3450 (((-112) (-640 (-263)) (-112)) 13)))
-(((-261) (-10 -7 (-15 -3450 ((-112) (-640 (-263)) (-112))) (-15 -3489 ((-112) (-640 (-263)) (-112))) (-15 -2135 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) (-640 (-263)) (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3694 ((-1151) (-640 (-263)) (-1151))) (-15 -2383 ((-1151) (-640 (-263)) (-1151))) (-15 -1353 ((-112) (-640 (-263)) (-112))) (-15 -3229 ((-870) (-640 (-263)) (-870))) (-15 -1457 ((-870) (-640 (-263)) (-870))) (-15 -2567 ((-640 (-1087 (-379))) (-640 (-263)) (-640 (-1087 (-379))))) (-15 -3220 ((-917) (-640 (-263)) (-917))) (-15 -2786 ((-917) (-640 (-263)) (-917))) (-15 -4140 ((-1126 (-225)) (-640 (-263)))) (-15 -2750 ((-917) (-640 (-263)) (-917))) (-15 -2185 ((-379) (-640 (-263)) (-379))) (-15 -2430 ((-1 (-939 (-225)) (-939 (-225))) (-640 (-263)) (-1 (-939 (-225)) (-939 (-225))))) (-15 -3528 ((-640 (-379)) (-640 (-263)) (-640 (-379)))))) (T -261))
-((-3528 (*1 *2 *3 *2) (-12 (-5 *2 (-640 (-379))) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-2430 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-939 (-225)) (-939 (-225)))) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-2185 (*1 *2 *3 *2) (-12 (-5 *2 (-379)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-2750 (*1 *2 *3 *2) (-12 (-5 *2 (-917)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-4140 (*1 *2 *3) (-12 (-5 *3 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-261)))) (-2786 (*1 *2 *3 *2) (-12 (-5 *2 (-917)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-3220 (*1 *2 *3 *2) (-12 (-5 *2 (-917)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-2567 (*1 *2 *3 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-1457 (*1 *2 *3 *2) (-12 (-5 *2 (-870)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-3229 (*1 *2 *3 *2) (-12 (-5 *2 (-870)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-1353 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-2383 (*1 *2 *3 *2) (-12 (-5 *2 (-1151)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-3694 (*1 *2 *3 *2) (-12 (-5 *2 (-1151)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-2135 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-3489 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-3450 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))))
-(-10 -7 (-15 -3450 ((-112) (-640 (-263)) (-112))) (-15 -3489 ((-112) (-640 (-263)) (-112))) (-15 -2135 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) (-640 (-263)) (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3694 ((-1151) (-640 (-263)) (-1151))) (-15 -2383 ((-1151) (-640 (-263)) (-1151))) (-15 -1353 ((-112) (-640 (-263)) (-112))) (-15 -3229 ((-870) (-640 (-263)) (-870))) (-15 -1457 ((-870) (-640 (-263)) (-870))) (-15 -2567 ((-640 (-1087 (-379))) (-640 (-263)) (-640 (-1087 (-379))))) (-15 -3220 ((-917) (-640 (-263)) (-917))) (-15 -2786 ((-917) (-640 (-263)) (-917))) (-15 -4140 ((-1126 (-225)) (-640 (-263)))) (-15 -2750 ((-917) (-640 (-263)) (-917))) (-15 -2185 ((-379) (-640 (-263)) (-379))) (-15 -2430 ((-1 (-939 (-225)) (-939 (-225))) (-640 (-263)) (-1 (-939 (-225)) (-939 (-225))))) (-15 -3528 ((-640 (-379)) (-640 (-263)) (-640 (-379)))))
-((-1974 (((-3 |#1| "failed") (-640 (-263)) (-1169)) 17)))
-(((-262 |#1|) (-10 -7 (-15 -1974 ((-3 |#1| "failed") (-640 (-263)) (-1169)))) (-1208)) (T -262))
-((-1974 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-640 (-263))) (-5 *4 (-1169)) (-5 *1 (-262 *2)) (-4 *2 (-1208)))))
-(-10 -7 (-15 -1974 ((-3 |#1| "failed") (-640 (-263)) (-1169))))
-((-1677 (((-112) $ $) NIL)) (-2135 (($ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) 12)) (-2786 (($ (-917)) 74)) (-3220 (($ (-917)) 73)) (-1414 (($ (-640 (-379))) 80)) (-2185 (($ (-379)) 56)) (-2750 (($ (-917)) 75)) (-1353 (($ (-112)) 21)) (-3694 (($ (-1151)) 16)) (-2383 (($ (-1151)) 17)) (-4140 (($ (-1126 (-225))) 69)) (-2567 (($ (-640 (-1087 (-379)))) 65)) (-2516 (($ (-640 (-1087 (-379)))) 57) (($ (-640 (-1087 (-407 (-563))))) 64)) (-2285 (($ (-379)) 27) (($ (-870)) 31)) (-3098 (((-112) (-640 $) (-1169)) 90)) (-1974 (((-3 (-52) "failed") (-640 $) (-1169)) 92)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3751 (($ (-379)) 32) (($ (-870)) 33)) (-1880 (($ (-1 (-939 (-225)) (-939 (-225)))) 55)) (-2430 (($ (-1 (-939 (-225)) (-939 (-225)))) 76)) (-1940 (($ (-1 (-225) (-225))) 37) (($ (-1 (-225) (-225) (-225))) 41) (($ (-1 (-225) (-225) (-225) (-225))) 45)) (-1693 (((-858) $) 86)) (-2769 (($ (-112)) 22) (($ (-640 (-1087 (-379)))) 50)) (-3450 (($ (-112)) 23)) (-1718 (((-112) $ $) 88)))
-(((-263) (-13 (-1093) (-10 -8 (-15 -3450 ($ (-112))) (-15 -2769 ($ (-112))) (-15 -2135 ($ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3694 ($ (-1151))) (-15 -2383 ($ (-1151))) (-15 -1353 ($ (-112))) (-15 -2769 ($ (-640 (-1087 (-379))))) (-15 -1880 ($ (-1 (-939 (-225)) (-939 (-225))))) (-15 -2285 ($ (-379))) (-15 -2285 ($ (-870))) (-15 -3751 ($ (-379))) (-15 -3751 ($ (-870))) (-15 -1940 ($ (-1 (-225) (-225)))) (-15 -1940 ($ (-1 (-225) (-225) (-225)))) (-15 -1940 ($ (-1 (-225) (-225) (-225) (-225)))) (-15 -2185 ($ (-379))) (-15 -2516 ($ (-640 (-1087 (-379))))) (-15 -2516 ($ (-640 (-1087 (-407 (-563)))))) (-15 -2567 ($ (-640 (-1087 (-379))))) (-15 -4140 ($ (-1126 (-225)))) (-15 -3220 ($ (-917))) (-15 -2786 ($ (-917))) (-15 -2750 ($ (-917))) (-15 -2430 ($ (-1 (-939 (-225)) (-939 (-225))))) (-15 -1414 ($ (-640 (-379)))) (-15 -1974 ((-3 (-52) "failed") (-640 $) (-1169))) (-15 -3098 ((-112) (-640 $) (-1169)))))) (T -263))
-((-3450 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-263)))) (-2769 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-263)))) (-2135 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *1 (-263)))) (-3694 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-263)))) (-2383 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-263)))) (-1353 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-263)))) (-2769 (*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-263)))) (-1880 (*1 *1 *2) (-12 (-5 *2 (-1 (-939 (-225)) (-939 (-225)))) (-5 *1 (-263)))) (-2285 (*1 *1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-263)))) (-2285 (*1 *1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-263)))) (-3751 (*1 *1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-263)))) (-3751 (*1 *1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-263)))) (-1940 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-263)))) (-1940 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225) (-225))) (-5 *1 (-263)))) (-1940 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-263)))) (-2185 (*1 *1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-263)))) (-2516 (*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-263)))) (-2516 (*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-407 (-563))))) (-5 *1 (-263)))) (-2567 (*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-263)))) (-4140 (*1 *1 *2) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-263)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-263)))) (-2786 (*1 *1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-263)))) (-2750 (*1 *1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-263)))) (-2430 (*1 *1 *2) (-12 (-5 *2 (-1 (-939 (-225)) (-939 (-225)))) (-5 *1 (-263)))) (-1414 (*1 *1 *2) (-12 (-5 *2 (-640 (-379))) (-5 *1 (-263)))) (-1974 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-640 (-263))) (-5 *4 (-1169)) (-5 *2 (-52)) (-5 *1 (-263)))) (-3098 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-263))) (-5 *4 (-1169)) (-5 *2 (-112)) (-5 *1 (-263)))))
-(-13 (-1093) (-10 -8 (-15 -3450 ($ (-112))) (-15 -2769 ($ (-112))) (-15 -2135 ($ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3694 ($ (-1151))) (-15 -2383 ($ (-1151))) (-15 -1353 ($ (-112))) (-15 -2769 ($ (-640 (-1087 (-379))))) (-15 -1880 ($ (-1 (-939 (-225)) (-939 (-225))))) (-15 -2285 ($ (-379))) (-15 -2285 ($ (-870))) (-15 -3751 ($ (-379))) (-15 -3751 ($ (-870))) (-15 -1940 ($ (-1 (-225) (-225)))) (-15 -1940 ($ (-1 (-225) (-225) (-225)))) (-15 -1940 ($ (-1 (-225) (-225) (-225) (-225)))) (-15 -2185 ($ (-379))) (-15 -2516 ($ (-640 (-1087 (-379))))) (-15 -2516 ($ (-640 (-1087 (-407 (-563)))))) (-15 -2567 ($ (-640 (-1087 (-379))))) (-15 -4140 ($ (-1126 (-225)))) (-15 -3220 ($ (-917))) (-15 -2786 ($ (-917))) (-15 -2750 ($ (-917))) (-15 -2430 ($ (-1 (-939 (-225)) (-939 (-225))))) (-15 -1414 ($ (-640 (-379)))) (-15 -1974 ((-3 (-52) "failed") (-640 $) (-1169))) (-15 -3098 ((-112) (-640 $) (-1169)))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2784 (((-640 (-767)) $) NIL) (((-640 (-767)) $ |#2|) NIL)) (-1326 (((-767) $) NIL) (((-767) $ |#2|) NIL)) (-2606 (((-640 |#3|) $) NIL)) (-2139 (((-1165 $) $ |#3|) NIL) (((-1165 |#1|) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-1779 (((-767) $) NIL) (((-767) $ (-640 |#3|)) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-4335 (($ $) NIL (|has| |#1| (-452)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-3942 (($ $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 |#3| "failed") $) NIL) (((-3 |#2| "failed") $) NIL) (((-3 (-1118 |#1| |#2|) "failed") $) 21)) (-2058 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1118 |#1| |#2|) $) NIL)) (-2742 (($ $ $ |#3|) NIL (|has| |#1| (-172)))) (-2751 (($ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1300 (($ $) NIL (|has| |#1| (-452))) (($ $ |#3|) NIL (|has| |#1| (-452)))) (-2739 (((-640 $) $) NIL)) (-2468 (((-112) $) NIL (|has| |#1| (-905)))) (-3554 (($ $ |#1| (-531 |#3|) $) NIL)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| |#1| (-882 (-379))) (|has| |#3| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| |#1| (-882 (-563))) (|has| |#3| (-882 (-563)))))) (-3254 (((-767) $ |#2|) NIL) (((-767) $) 10)) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) NIL)) (-2596 (($ (-1165 |#1|) |#3|) NIL) (($ (-1165 $) |#3|) NIL)) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-531 |#3|)) NIL) (($ $ |#3| (-767)) NIL) (($ $ (-640 |#3|) (-640 (-767))) NIL)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ |#3|) NIL)) (-2048 (((-531 |#3|) $) NIL) (((-767) $ |#3|) NIL) (((-640 (-767)) $ (-640 |#3|)) NIL)) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-2803 (($ (-1 (-531 |#3|) (-531 |#3|)) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-3376 (((-1 $ (-767)) |#2|) NIL) (((-1 $ (-767)) $) NIL (|has| |#1| (-233)))) (-4234 (((-3 |#3| "failed") $) NIL)) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3759 ((|#3| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3573 (((-1151) $) NIL)) (-3871 (((-112) $) NIL)) (-3733 (((-3 (-640 $) "failed") $) NIL)) (-2919 (((-3 (-640 $) "failed") $) NIL)) (-4086 (((-3 (-2 (|:| |var| |#3|) (|:| -1654 (-767))) "failed") $) NIL)) (-3562 (($ $) NIL)) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) NIL)) (-2706 ((|#1| $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2174 (((-418 $) $) NIL (|has| |#1| (-905)))) (-3008 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1540 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ |#3| |#1|) NIL) (($ $ (-640 |#3|) (-640 |#1|)) NIL) (($ $ |#3| $) NIL) (($ $ (-640 |#3|) (-640 $)) NIL) (($ $ |#2| $) NIL (|has| |#1| (-233))) (($ $ (-640 |#2|) (-640 $)) NIL (|has| |#1| (-233))) (($ $ |#2| |#1|) NIL (|has| |#1| (-233))) (($ $ (-640 |#2|) (-640 |#1|)) NIL (|has| |#1| (-233)))) (-2315 (($ $ |#3|) NIL (|has| |#1| (-172)))) (-4202 (($ $ |#3|) NIL) (($ $ (-640 |#3|)) NIL) (($ $ |#3| (-767)) NIL) (($ $ (-640 |#3|) (-640 (-767))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3745 (((-640 |#2|) $) NIL)) (-4167 (((-531 |#3|) $) NIL) (((-767) $ |#3|) NIL) (((-640 (-767)) $ (-640 |#3|)) NIL) (((-767) $ |#2|) NIL)) (-2220 (((-888 (-379)) $) NIL (-12 (|has| |#1| (-611 (-888 (-379)))) (|has| |#3| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| |#1| (-611 (-888 (-563)))) (|has| |#3| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| |#1| (-611 (-536))) (|has| |#3| (-611 (-536)))))) (-1836 ((|#1| $) NIL (|has| |#1| (-452))) (($ $ |#3|) NIL (|has| |#1| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) 24) (($ |#3|) 23) (($ |#2|) NIL) (($ (-1118 |#1| |#2|)) 30) (($ (-407 (-563))) NIL (-4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-1337 (((-640 |#1|) $) NIL)) (-4319 ((|#1| $ (-531 |#3|)) NIL) (($ $ |#3| (-767)) NIL) (($ $ (-640 |#3|) (-640 (-767))) NIL)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-1675 (((-767)) NIL)) (-2793 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ |#3|) NIL) (($ $ (-640 |#3|)) NIL) (($ $ |#3| (-767)) NIL) (($ $ (-640 |#3|) (-640 (-767))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+((-1362 (((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) (-640 (-263)) (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) 25)) (-4286 (((-917) (-640 (-263)) (-917)) 52)) (-4274 (((-917) (-640 (-263)) (-917)) 51)) (-3532 (((-640 (-379)) (-640 (-263)) (-640 (-379))) 68)) (-4318 (((-379) (-640 (-263)) (-379)) 57)) (-4307 (((-917) (-640 (-263)) (-917)) 53)) (-4237 (((-112) (-640 (-263)) (-112)) 27)) (-3695 (((-1151) (-640 (-263)) (-1151)) 19)) (-4228 (((-1151) (-640 (-263)) (-1151)) 26)) (-4296 (((-1126 (-225)) (-640 (-263))) 46)) (-2528 (((-640 (-1087 (-379))) (-640 (-263)) (-640 (-1087 (-379)))) 40)) (-4250 (((-870) (-640 (-263)) (-870)) 32)) (-4263 (((-870) (-640 (-263)) (-870)) 33)) (-2607 (((-1 (-939 (-225)) (-939 (-225))) (-640 (-263)) (-1 (-939 (-225)) (-939 (-225)))) 63)) (-4218 (((-112) (-640 (-263)) (-112)) 14)) (-2472 (((-112) (-640 (-263)) (-112)) 13)))
+(((-261) (-10 -7 (-15 -2472 ((-112) (-640 (-263)) (-112))) (-15 -4218 ((-112) (-640 (-263)) (-112))) (-15 -1362 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) (-640 (-263)) (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3695 ((-1151) (-640 (-263)) (-1151))) (-15 -4228 ((-1151) (-640 (-263)) (-1151))) (-15 -4237 ((-112) (-640 (-263)) (-112))) (-15 -4250 ((-870) (-640 (-263)) (-870))) (-15 -4263 ((-870) (-640 (-263)) (-870))) (-15 -2528 ((-640 (-1087 (-379))) (-640 (-263)) (-640 (-1087 (-379))))) (-15 -4274 ((-917) (-640 (-263)) (-917))) (-15 -4286 ((-917) (-640 (-263)) (-917))) (-15 -4296 ((-1126 (-225)) (-640 (-263)))) (-15 -4307 ((-917) (-640 (-263)) (-917))) (-15 -4318 ((-379) (-640 (-263)) (-379))) (-15 -2607 ((-1 (-939 (-225)) (-939 (-225))) (-640 (-263)) (-1 (-939 (-225)) (-939 (-225))))) (-15 -3532 ((-640 (-379)) (-640 (-263)) (-640 (-379)))))) (T -261))
+((-3532 (*1 *2 *3 *2) (-12 (-5 *2 (-640 (-379))) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-2607 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-939 (-225)) (-939 (-225)))) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-4318 (*1 *2 *3 *2) (-12 (-5 *2 (-379)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-4307 (*1 *2 *3 *2) (-12 (-5 *2 (-917)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-4296 (*1 *2 *3) (-12 (-5 *3 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-261)))) (-4286 (*1 *2 *3 *2) (-12 (-5 *2 (-917)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-4274 (*1 *2 *3 *2) (-12 (-5 *2 (-917)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-2528 (*1 *2 *3 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-4263 (*1 *2 *3 *2) (-12 (-5 *2 (-870)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-4250 (*1 *2 *3 *2) (-12 (-5 *2 (-870)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-4237 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-4228 (*1 *2 *3 *2) (-12 (-5 *2 (-1151)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-3695 (*1 *2 *3 *2) (-12 (-5 *2 (-1151)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-1362 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-4218 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))) (-2472 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))))
+(-10 -7 (-15 -2472 ((-112) (-640 (-263)) (-112))) (-15 -4218 ((-112) (-640 (-263)) (-112))) (-15 -1362 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) (-640 (-263)) (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3695 ((-1151) (-640 (-263)) (-1151))) (-15 -4228 ((-1151) (-640 (-263)) (-1151))) (-15 -4237 ((-112) (-640 (-263)) (-112))) (-15 -4250 ((-870) (-640 (-263)) (-870))) (-15 -4263 ((-870) (-640 (-263)) (-870))) (-15 -2528 ((-640 (-1087 (-379))) (-640 (-263)) (-640 (-1087 (-379))))) (-15 -4274 ((-917) (-640 (-263)) (-917))) (-15 -4286 ((-917) (-640 (-263)) (-917))) (-15 -4296 ((-1126 (-225)) (-640 (-263)))) (-15 -4307 ((-917) (-640 (-263)) (-917))) (-15 -4318 ((-379) (-640 (-263)) (-379))) (-15 -2607 ((-1 (-939 (-225)) (-939 (-225))) (-640 (-263)) (-1 (-939 (-225)) (-939 (-225))))) (-15 -3532 ((-640 (-379)) (-640 (-263)) (-640 (-379)))))
+((-1972 (((-3 |#1| "failed") (-640 (-263)) (-1169)) 17)))
+(((-262 |#1|) (-10 -7 (-15 -1972 ((-3 |#1| "failed") (-640 (-263)) (-1169)))) (-1208)) (T -262))
+((-1972 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-640 (-263))) (-5 *4 (-1169)) (-5 *1 (-262 *2)) (-4 *2 (-1208)))))
+(-10 -7 (-15 -1972 ((-3 |#1| "failed") (-640 (-263)) (-1169))))
+((-1677 (((-112) $ $) NIL)) (-1362 (($ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) 12)) (-4286 (($ (-917)) 74)) (-4274 (($ (-917)) 73)) (-3245 (($ (-640 (-379))) 80)) (-4318 (($ (-379)) 56)) (-4307 (($ (-917)) 75)) (-4237 (($ (-112)) 21)) (-3695 (($ (-1151)) 16)) (-4228 (($ (-1151)) 17)) (-4296 (($ (-1126 (-225))) 69)) (-2528 (($ (-640 (-1087 (-379)))) 65)) (-4166 (($ (-640 (-1087 (-379)))) 57) (($ (-640 (-1087 (-407 (-563))))) 64)) (-4197 (($ (-379)) 27) (($ (-870)) 31)) (-4157 (((-112) (-640 $) (-1169)) 90)) (-1972 (((-3 (-52) "failed") (-640 $) (-1169)) 92)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-4187 (($ (-379)) 32) (($ (-870)) 33)) (-3759 (($ (-1 (-939 (-225)) (-939 (-225)))) 55)) (-2607 (($ (-1 (-939 (-225)) (-939 (-225)))) 76)) (-4175 (($ (-1 (-225) (-225))) 37) (($ (-1 (-225) (-225) (-225))) 41) (($ (-1 (-225) (-225) (-225) (-225))) 45)) (-1692 (((-858) $) 86)) (-4208 (($ (-112)) 22) (($ (-640 (-1087 (-379)))) 50)) (-2472 (($ (-112)) 23)) (-1718 (((-112) $ $) 88)))
+(((-263) (-13 (-1093) (-10 -8 (-15 -2472 ($ (-112))) (-15 -4208 ($ (-112))) (-15 -1362 ($ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3695 ($ (-1151))) (-15 -4228 ($ (-1151))) (-15 -4237 ($ (-112))) (-15 -4208 ($ (-640 (-1087 (-379))))) (-15 -3759 ($ (-1 (-939 (-225)) (-939 (-225))))) (-15 -4197 ($ (-379))) (-15 -4197 ($ (-870))) (-15 -4187 ($ (-379))) (-15 -4187 ($ (-870))) (-15 -4175 ($ (-1 (-225) (-225)))) (-15 -4175 ($ (-1 (-225) (-225) (-225)))) (-15 -4175 ($ (-1 (-225) (-225) (-225) (-225)))) (-15 -4318 ($ (-379))) (-15 -4166 ($ (-640 (-1087 (-379))))) (-15 -4166 ($ (-640 (-1087 (-407 (-563)))))) (-15 -2528 ($ (-640 (-1087 (-379))))) (-15 -4296 ($ (-1126 (-225)))) (-15 -4274 ($ (-917))) (-15 -4286 ($ (-917))) (-15 -4307 ($ (-917))) (-15 -2607 ($ (-1 (-939 (-225)) (-939 (-225))))) (-15 -3245 ($ (-640 (-379)))) (-15 -1972 ((-3 (-52) "failed") (-640 $) (-1169))) (-15 -4157 ((-112) (-640 $) (-1169)))))) (T -263))
+((-2472 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-263)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-263)))) (-1362 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *1 (-263)))) (-3695 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-263)))) (-4228 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-263)))) (-4237 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-263)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-263)))) (-3759 (*1 *1 *2) (-12 (-5 *2 (-1 (-939 (-225)) (-939 (-225)))) (-5 *1 (-263)))) (-4197 (*1 *1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-263)))) (-4197 (*1 *1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-263)))) (-4187 (*1 *1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-263)))) (-4187 (*1 *1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-263)))) (-4175 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-263)))) (-4175 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225) (-225))) (-5 *1 (-263)))) (-4175 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-263)))) (-4318 (*1 *1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-263)))) (-4166 (*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-263)))) (-4166 (*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-407 (-563))))) (-5 *1 (-263)))) (-2528 (*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-263)))) (-4296 (*1 *1 *2) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-263)))) (-4274 (*1 *1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-263)))) (-4286 (*1 *1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-263)))) (-4307 (*1 *1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-263)))) (-2607 (*1 *1 *2) (-12 (-5 *2 (-1 (-939 (-225)) (-939 (-225)))) (-5 *1 (-263)))) (-3245 (*1 *1 *2) (-12 (-5 *2 (-640 (-379))) (-5 *1 (-263)))) (-1972 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-640 (-263))) (-5 *4 (-1169)) (-5 *2 (-52)) (-5 *1 (-263)))) (-4157 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-263))) (-5 *4 (-1169)) (-5 *2 (-112)) (-5 *1 (-263)))))
+(-13 (-1093) (-10 -8 (-15 -2472 ($ (-112))) (-15 -4208 ($ (-112))) (-15 -1362 ($ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3695 ($ (-1151))) (-15 -4228 ($ (-1151))) (-15 -4237 ($ (-112))) (-15 -4208 ($ (-640 (-1087 (-379))))) (-15 -3759 ($ (-1 (-939 (-225)) (-939 (-225))))) (-15 -4197 ($ (-379))) (-15 -4197 ($ (-870))) (-15 -4187 ($ (-379))) (-15 -4187 ($ (-870))) (-15 -4175 ($ (-1 (-225) (-225)))) (-15 -4175 ($ (-1 (-225) (-225) (-225)))) (-15 -4175 ($ (-1 (-225) (-225) (-225) (-225)))) (-15 -4318 ($ (-379))) (-15 -4166 ($ (-640 (-1087 (-379))))) (-15 -4166 ($ (-640 (-1087 (-407 (-563)))))) (-15 -2528 ($ (-640 (-1087 (-379))))) (-15 -4296 ($ (-1126 (-225)))) (-15 -4274 ($ (-917))) (-15 -4286 ($ (-917))) (-15 -4307 ($ (-917))) (-15 -2607 ($ (-1 (-939 (-225)) (-939 (-225))))) (-15 -3245 ($ (-640 (-379)))) (-15 -1972 ((-3 (-52) "failed") (-640 $) (-1169))) (-15 -4157 ((-112) (-640 $) (-1169)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3989 (((-640 (-767)) $) NIL) (((-640 (-767)) $ |#2|) NIL)) (-4329 (((-767) $) NIL) (((-767) $ |#2|) NIL)) (-2605 (((-640 |#3|) $) NIL)) (-2138 (((-1165 $) $ |#3|) NIL) (((-1165 |#1|) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-3897 (((-767) $) NIL) (((-767) $ (-640 |#3|)) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-1798 (($ $) NIL (|has| |#1| (-452)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-3968 (($ $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 |#3| "failed") $) NIL) (((-3 |#2| "failed") $) NIL) (((-3 (-1118 |#1| |#2|) "failed") $) 21)) (-2057 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1118 |#1| |#2|) $) NIL)) (-1612 (($ $ $ |#3|) NIL (|has| |#1| (-172)))) (-2750 (($ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-4151 (($ $) NIL (|has| |#1| (-452))) (($ $ |#3|) NIL (|has| |#1| (-452)))) (-2738 (((-640 $) $) NIL)) (-2560 (((-112) $) NIL (|has| |#1| (-905)))) (-2159 (($ $ |#1| (-531 |#3|) $) NIL)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| |#1| (-882 (-379))) (|has| |#3| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| |#1| (-882 (-563))) (|has| |#3| (-882 (-563)))))) (-1775 (((-767) $ |#2|) NIL) (((-767) $) 10)) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) NIL)) (-2595 (($ (-1165 |#1|) |#3|) NIL) (($ (-1165 $) |#3|) NIL)) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-531 |#3|)) NIL) (($ $ |#3| (-767)) NIL) (($ $ (-640 |#3|) (-640 (-767))) NIL)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ |#3|) NIL)) (-3908 (((-531 |#3|) $) NIL) (((-767) $ |#3|) NIL) (((-640 (-767)) $ (-640 |#3|)) NIL)) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-2170 (($ (-1 (-531 |#3|) (-531 |#3|)) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-4340 (((-1 $ (-767)) |#2|) NIL) (((-1 $ (-767)) $) NIL (|has| |#1| (-233)))) (-1698 (((-3 |#3| "failed") $) NIL)) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3760 ((|#3| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3854 (((-1151) $) NIL)) (-3978 (((-112) $) NIL)) (-3939 (((-3 (-640 $) "failed") $) NIL)) (-3930 (((-3 (-640 $) "failed") $) NIL)) (-3949 (((-3 (-2 (|:| |var| |#3|) (|:| -3311 (-767))) "failed") $) NIL)) (-3564 (($ $) NIL)) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) NIL)) (-2705 ((|#1| $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2173 (((-418 $) $) NIL (|has| |#1| (-905)))) (-3012 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1542 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ |#3| |#1|) NIL) (($ $ (-640 |#3|) (-640 |#1|)) NIL) (($ $ |#3| $) NIL) (($ $ (-640 |#3|) (-640 $)) NIL) (($ $ |#2| $) NIL (|has| |#1| (-233))) (($ $ (-640 |#2|) (-640 $)) NIL (|has| |#1| (-233))) (($ $ |#2| |#1|) NIL (|has| |#1| (-233))) (($ $ (-640 |#2|) (-640 |#1|)) NIL (|has| |#1| (-233)))) (-1623 (($ $ |#3|) NIL (|has| |#1| (-172)))) (-4203 (($ $ |#3|) NIL) (($ $ (-640 |#3|)) NIL) (($ $ |#3| (-767)) NIL) (($ $ (-640 |#3|) (-640 (-767))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4001 (((-640 |#2|) $) NIL)) (-3871 (((-531 |#3|) $) NIL) (((-767) $ |#3|) NIL) (((-640 (-767)) $ (-640 |#3|)) NIL) (((-767) $ |#2|) NIL)) (-2219 (((-888 (-379)) $) NIL (-12 (|has| |#1| (-611 (-888 (-379)))) (|has| |#3| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| |#1| (-611 (-888 (-563)))) (|has| |#3| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| |#1| (-611 (-536))) (|has| |#3| (-611 (-536)))))) (-3885 ((|#1| $) NIL (|has| |#1| (-452))) (($ $ |#3|) NIL (|has| |#1| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) 24) (($ |#3|) 23) (($ |#2|) NIL) (($ (-1118 |#1| |#2|)) 30) (($ (-407 (-563))) NIL (-4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-3955 (((-640 |#1|) $) NIL)) (-3244 ((|#1| $ (-531 |#3|)) NIL) (($ $ |#3| (-767)) NIL) (($ $ (-640 |#3|) (-640 (-767))) NIL)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-3914 (((-767)) NIL)) (-2148 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ |#3|) NIL) (($ $ (-640 |#3|)) NIL) (($ $ |#3| (-767)) NIL) (($ $ (-640 |#3|) (-640 (-767))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
(((-264 |#1| |#2| |#3|) (-13 (-253 |#1| |#2| |#3| (-531 |#3|)) (-1034 (-1118 |#1| |#2|))) (-1045) (-846) (-266 |#2|)) (T -264))
NIL
(-13 (-253 |#1| |#2| |#3| (-531 |#3|)) (-1034 (-1118 |#1| |#2|)))
-((-1326 (((-767) $) 30)) (-2131 (((-3 |#2| "failed") $) 17)) (-2058 ((|#2| $) 27)) (-4202 (($ $) 12) (($ $ (-767)) 15)) (-1693 (((-858) $) 26) (($ |#2|) 10)) (-1718 (((-112) $ $) 20)) (-1744 (((-112) $ $) 29)))
-(((-265 |#1| |#2|) (-10 -8 (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1|)) (-15 -1326 ((-767) |#1|)) (-15 -1693 (|#1| |#2|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -1744 ((-112) |#1| |#1|)) (-15 -1693 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|))) (-266 |#2|) (-846)) (T -265))
+((-4329 (((-767) $) 30)) (-2130 (((-3 |#2| "failed") $) 17)) (-2057 ((|#2| $) 27)) (-4203 (($ $) 12) (($ $ (-767)) 15)) (-1692 (((-858) $) 26) (($ |#2|) 10)) (-1718 (((-112) $ $) 20)) (-1743 (((-112) $ $) 29)))
+(((-265 |#1| |#2|) (-10 -8 (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1|)) (-15 -4329 ((-767) |#1|)) (-15 -1692 (|#1| |#2|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -1743 ((-112) |#1| |#1|)) (-15 -1692 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|))) (-266 |#2|) (-846)) (T -265))
NIL
-(-10 -8 (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1|)) (-15 -1326 ((-767) |#1|)) (-15 -1693 (|#1| |#2|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -1744 ((-112) |#1| |#1|)) (-15 -1693 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-1326 (((-767) $) 22)) (-2518 ((|#1| $) 23)) (-2131 (((-3 |#1| "failed") $) 27)) (-2058 ((|#1| $) 28)) (-3254 (((-767) $) 24)) (-3084 (($ $ $) 13)) (-1777 (($ $ $) 14)) (-3376 (($ |#1| (-767)) 25)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-4202 (($ $) 21) (($ $ (-767)) 20)) (-1693 (((-858) $) 11) (($ |#1|) 26)) (-1778 (((-112) $ $) 16)) (-1756 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 15)) (-1744 (((-112) $ $) 18)))
+(-10 -8 (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1|)) (-15 -4329 ((-767) |#1|)) (-15 -1692 (|#1| |#2|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -1743 ((-112) |#1| |#1|)) (-15 -1692 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-4329 (((-767) $) 22)) (-2517 ((|#1| $) 23)) (-2130 (((-3 |#1| "failed") $) 27)) (-2057 ((|#1| $) 28)) (-1775 (((-767) $) 24)) (-3088 (($ $ $) 13)) (-1776 (($ $ $) 14)) (-4340 (($ |#1| (-767)) 25)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-4203 (($ $) 21) (($ $ (-767)) 20)) (-1692 (((-858) $) 11) (($ |#1|) 26)) (-1779 (((-112) $ $) 16)) (-1754 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 15)) (-1743 (((-112) $ $) 18)))
(((-266 |#1|) (-140) (-846)) (T -266))
-((-1693 (*1 *1 *2) (-12 (-4 *1 (-266 *2)) (-4 *2 (-846)))) (-3376 (*1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-266 *2)) (-4 *2 (-846)))) (-3254 (*1 *2 *1) (-12 (-4 *1 (-266 *3)) (-4 *3 (-846)) (-5 *2 (-767)))) (-2518 (*1 *2 *1) (-12 (-4 *1 (-266 *2)) (-4 *2 (-846)))) (-1326 (*1 *2 *1) (-12 (-4 *1 (-266 *3)) (-4 *3 (-846)) (-5 *2 (-767)))) (-4202 (*1 *1 *1) (-12 (-4 *1 (-266 *2)) (-4 *2 (-846)))) (-4202 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-266 *3)) (-4 *3 (-846)))))
-(-13 (-846) (-1034 |t#1|) (-10 -8 (-15 -3376 ($ |t#1| (-767))) (-15 -3254 ((-767) $)) (-15 -2518 (|t#1| $)) (-15 -1326 ((-767) $)) (-15 -4202 ($ $)) (-15 -4202 ($ $ (-767))) (-15 -1693 ($ |t#1|))))
+((-1692 (*1 *1 *2) (-12 (-4 *1 (-266 *2)) (-4 *2 (-846)))) (-4340 (*1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-266 *2)) (-4 *2 (-846)))) (-1775 (*1 *2 *1) (-12 (-4 *1 (-266 *3)) (-4 *3 (-846)) (-5 *2 (-767)))) (-2517 (*1 *2 *1) (-12 (-4 *1 (-266 *2)) (-4 *2 (-846)))) (-4329 (*1 *2 *1) (-12 (-4 *1 (-266 *3)) (-4 *3 (-846)) (-5 *2 (-767)))) (-4203 (*1 *1 *1) (-12 (-4 *1 (-266 *2)) (-4 *2 (-846)))) (-4203 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-266 *3)) (-4 *3 (-846)))))
+(-13 (-846) (-1034 |t#1|) (-10 -8 (-15 -4340 ($ |t#1| (-767))) (-15 -1775 ((-767) $)) (-15 -2517 (|t#1| $)) (-15 -4329 ((-767) $)) (-15 -4203 ($ $)) (-15 -4203 ($ $ (-767))) (-15 -1692 ($ |t#1|))))
(((-102) . T) ((-613 |#1|) . T) ((-610 (-858)) . T) ((-846) . T) ((-1034 |#1|) . T) ((-1093) . T))
-((-2606 (((-640 (-1169)) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) 41)) (-3993 (((-640 (-1169)) (-316 (-225)) (-767)) 80)) (-3540 (((-3 (-316 (-225)) "failed") (-316 (-225))) 51)) (-2442 (((-316 (-225)) (-316 (-225))) 67)) (-4100 (((-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 26)) (-2731 (((-112) (-640 (-316 (-225)))) 84)) (-3512 (((-112) (-316 (-225))) 24)) (-1976 (((-640 (-1151)) (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))))) 105)) (-2800 (((-640 (-316 (-225))) (-640 (-316 (-225)))) 87)) (-3855 (((-640 (-316 (-225))) (-640 (-316 (-225)))) 86)) (-2364 (((-684 (-225)) (-640 (-316 (-225))) (-767)) 94)) (-4304 (((-112) (-316 (-225))) 20) (((-112) (-640 (-316 (-225)))) 85)) (-2217 (((-640 (-225)) (-640 (-839 (-225))) (-225)) 14)) (-2466 (((-379) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) 100)) (-1369 (((-1031) (-1169) (-1031)) 34)))
-(((-267) (-10 -7 (-15 -2217 ((-640 (-225)) (-640 (-839 (-225))) (-225))) (-15 -4100 ((-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))))) (-15 -3540 ((-3 (-316 (-225)) "failed") (-316 (-225)))) (-15 -2442 ((-316 (-225)) (-316 (-225)))) (-15 -2731 ((-112) (-640 (-316 (-225))))) (-15 -4304 ((-112) (-640 (-316 (-225))))) (-15 -4304 ((-112) (-316 (-225)))) (-15 -2364 ((-684 (-225)) (-640 (-316 (-225))) (-767))) (-15 -3855 ((-640 (-316 (-225))) (-640 (-316 (-225))))) (-15 -2800 ((-640 (-316 (-225))) (-640 (-316 (-225))))) (-15 -3512 ((-112) (-316 (-225)))) (-15 -2606 ((-640 (-1169)) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))) (-15 -3993 ((-640 (-1169)) (-316 (-225)) (-767))) (-15 -1369 ((-1031) (-1169) (-1031))) (-15 -2466 ((-379) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))) (-15 -1976 ((-640 (-1151)) (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))))))) (T -267))
-((-1976 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))))) (-5 *2 (-640 (-1151))) (-5 *1 (-267)))) (-2466 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) (-5 *2 (-379)) (-5 *1 (-267)))) (-1369 (*1 *2 *3 *2) (-12 (-5 *2 (-1031)) (-5 *3 (-1169)) (-5 *1 (-267)))) (-3993 (*1 *2 *3 *4) (-12 (-5 *3 (-316 (-225))) (-5 *4 (-767)) (-5 *2 (-640 (-1169))) (-5 *1 (-267)))) (-2606 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) (-5 *2 (-640 (-1169))) (-5 *1 (-267)))) (-3512 (*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-112)) (-5 *1 (-267)))) (-2800 (*1 *2 *2) (-12 (-5 *2 (-640 (-316 (-225)))) (-5 *1 (-267)))) (-3855 (*1 *2 *2) (-12 (-5 *2 (-640 (-316 (-225)))) (-5 *1 (-267)))) (-2364 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-316 (-225)))) (-5 *4 (-767)) (-5 *2 (-684 (-225))) (-5 *1 (-267)))) (-4304 (*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-112)) (-5 *1 (-267)))) (-4304 (*1 *2 *3) (-12 (-5 *3 (-640 (-316 (-225)))) (-5 *2 (-112)) (-5 *1 (-267)))) (-2731 (*1 *2 *3) (-12 (-5 *3 (-640 (-316 (-225)))) (-5 *2 (-112)) (-5 *1 (-267)))) (-2442 (*1 *2 *2) (-12 (-5 *2 (-316 (-225))) (-5 *1 (-267)))) (-3540 (*1 *2 *2) (|partial| -12 (-5 *2 (-316 (-225))) (-5 *1 (-267)))) (-4100 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (-5 *1 (-267)))) (-2217 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-839 (-225)))) (-5 *4 (-225)) (-5 *2 (-640 *4)) (-5 *1 (-267)))))
-(-10 -7 (-15 -2217 ((-640 (-225)) (-640 (-839 (-225))) (-225))) (-15 -4100 ((-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))))) (-15 -3540 ((-3 (-316 (-225)) "failed") (-316 (-225)))) (-15 -2442 ((-316 (-225)) (-316 (-225)))) (-15 -2731 ((-112) (-640 (-316 (-225))))) (-15 -4304 ((-112) (-640 (-316 (-225))))) (-15 -4304 ((-112) (-316 (-225)))) (-15 -2364 ((-684 (-225)) (-640 (-316 (-225))) (-767))) (-15 -3855 ((-640 (-316 (-225))) (-640 (-316 (-225))))) (-15 -2800 ((-640 (-316 (-225))) (-640 (-316 (-225))))) (-15 -3512 ((-112) (-316 (-225)))) (-15 -2606 ((-640 (-1169)) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))) (-15 -3993 ((-640 (-1169)) (-316 (-225)) (-767))) (-15 -1369 ((-1031) (-1169) (-1031))) (-15 -2466 ((-379) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))) (-15 -1976 ((-640 (-1151)) (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))))))
-((-1677 (((-112) $ $) NIL)) (-3422 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) NIL) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 44)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 26) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-2605 (((-640 (-1169)) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) 41)) (-3994 (((-640 (-1169)) (-316 (-225)) (-767)) 80)) (-3148 (((-3 (-316 (-225)) "failed") (-316 (-225))) 51)) (-3157 (((-316 (-225)) (-316 (-225))) 67)) (-3139 (((-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 26)) (-3164 (((-112) (-640 (-316 (-225)))) 84)) (-3200 (((-112) (-316 (-225))) 24)) (-3222 (((-640 (-1151)) (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))))) 105)) (-3192 (((-640 (-316 (-225))) (-640 (-316 (-225)))) 87)) (-3183 (((-640 (-316 (-225))) (-640 (-316 (-225)))) 86)) (-3173 (((-684 (-225)) (-640 (-316 (-225))) (-767)) 94)) (-3719 (((-112) (-316 (-225))) 20) (((-112) (-640 (-316 (-225)))) 85)) (-4351 (((-640 (-225)) (-640 (-839 (-225))) (-225)) 14)) (-2894 (((-379) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) 100)) (-3210 (((-1031) (-1169) (-1031)) 34)))
+(((-267) (-10 -7 (-15 -4351 ((-640 (-225)) (-640 (-839 (-225))) (-225))) (-15 -3139 ((-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))))) (-15 -3148 ((-3 (-316 (-225)) "failed") (-316 (-225)))) (-15 -3157 ((-316 (-225)) (-316 (-225)))) (-15 -3164 ((-112) (-640 (-316 (-225))))) (-15 -3719 ((-112) (-640 (-316 (-225))))) (-15 -3719 ((-112) (-316 (-225)))) (-15 -3173 ((-684 (-225)) (-640 (-316 (-225))) (-767))) (-15 -3183 ((-640 (-316 (-225))) (-640 (-316 (-225))))) (-15 -3192 ((-640 (-316 (-225))) (-640 (-316 (-225))))) (-15 -3200 ((-112) (-316 (-225)))) (-15 -2605 ((-640 (-1169)) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))) (-15 -3994 ((-640 (-1169)) (-316 (-225)) (-767))) (-15 -3210 ((-1031) (-1169) (-1031))) (-15 -2894 ((-379) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))) (-15 -3222 ((-640 (-1151)) (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))))))) (T -267))
+((-3222 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))))) (-5 *2 (-640 (-1151))) (-5 *1 (-267)))) (-2894 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) (-5 *2 (-379)) (-5 *1 (-267)))) (-3210 (*1 *2 *3 *2) (-12 (-5 *2 (-1031)) (-5 *3 (-1169)) (-5 *1 (-267)))) (-3994 (*1 *2 *3 *4) (-12 (-5 *3 (-316 (-225))) (-5 *4 (-767)) (-5 *2 (-640 (-1169))) (-5 *1 (-267)))) (-2605 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) (-5 *2 (-640 (-1169))) (-5 *1 (-267)))) (-3200 (*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-112)) (-5 *1 (-267)))) (-3192 (*1 *2 *2) (-12 (-5 *2 (-640 (-316 (-225)))) (-5 *1 (-267)))) (-3183 (*1 *2 *2) (-12 (-5 *2 (-640 (-316 (-225)))) (-5 *1 (-267)))) (-3173 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-316 (-225)))) (-5 *4 (-767)) (-5 *2 (-684 (-225))) (-5 *1 (-267)))) (-3719 (*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-112)) (-5 *1 (-267)))) (-3719 (*1 *2 *3) (-12 (-5 *3 (-640 (-316 (-225)))) (-5 *2 (-112)) (-5 *1 (-267)))) (-3164 (*1 *2 *3) (-12 (-5 *3 (-640 (-316 (-225)))) (-5 *2 (-112)) (-5 *1 (-267)))) (-3157 (*1 *2 *2) (-12 (-5 *2 (-316 (-225))) (-5 *1 (-267)))) (-3148 (*1 *2 *2) (|partial| -12 (-5 *2 (-316 (-225))) (-5 *1 (-267)))) (-3139 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (-5 *1 (-267)))) (-4351 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-839 (-225)))) (-5 *4 (-225)) (-5 *2 (-640 *4)) (-5 *1 (-267)))))
+(-10 -7 (-15 -4351 ((-640 (-225)) (-640 (-839 (-225))) (-225))) (-15 -3139 ((-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))))) (-15 -3148 ((-3 (-316 (-225)) "failed") (-316 (-225)))) (-15 -3157 ((-316 (-225)) (-316 (-225)))) (-15 -3164 ((-112) (-640 (-316 (-225))))) (-15 -3719 ((-112) (-640 (-316 (-225))))) (-15 -3719 ((-112) (-316 (-225)))) (-15 -3173 ((-684 (-225)) (-640 (-316 (-225))) (-767))) (-15 -3183 ((-640 (-316 (-225))) (-640 (-316 (-225))))) (-15 -3192 ((-640 (-316 (-225))) (-640 (-316 (-225))))) (-15 -3200 ((-112) (-316 (-225)))) (-15 -2605 ((-640 (-1169)) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))) (-15 -3994 ((-640 (-1169)) (-316 (-225)) (-767))) (-15 -3210 ((-1031) (-1169) (-1031))) (-15 -2894 ((-379) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))) (-15 -3222 ((-640 (-1151)) (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))))))
+((-1677 (((-112) $ $) NIL)) (-2955 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) NIL) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 44)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 26) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-268) (-835)) (T -268))
NIL
(-835)
-((-1677 (((-112) $ $) NIL)) (-3422 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) 58) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 54)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 34) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) 36)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-2955 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) 58) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 54)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 34) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) 36)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-269) (-835)) (T -269))
NIL
(-835)
-((-1677 (((-112) $ $) NIL)) (-3422 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) 76) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 73)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 44) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) 55)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-2955 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) 76) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 73)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 44) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) 55)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-270) (-835)) (T -270))
NIL
(-835)
-((-1677 (((-112) $ $) NIL)) (-3422 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) NIL) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 50)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 31) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-2955 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) NIL) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 50)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 31) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-271) (-835)) (T -271))
NIL
(-835)
-((-1677 (((-112) $ $) NIL)) (-3422 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) NIL) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 50)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 28) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-2955 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) NIL) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 50)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 28) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-272) (-835)) (T -272))
NIL
(-835)
-((-1677 (((-112) $ $) NIL)) (-3422 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) NIL) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 73)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 28) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-2955 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) NIL) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 73)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 28) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-273) (-835)) (T -273))
NIL
(-835)
-((-1677 (((-112) $ $) NIL)) (-3422 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) NIL) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 77)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 25) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-2955 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) NIL) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 77)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 25) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-274) (-835)) (T -274))
NIL
(-835)
-((-1677 (((-112) $ $) NIL)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1915 (((-640 (-563)) $) 18)) (-4167 (((-767) $) 16)) (-1693 (((-858) $) 22) (($ (-640 (-563))) 14)) (-2542 (($ (-767)) 19)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 9)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 10)))
-(((-275) (-13 (-846) (-10 -8 (-15 -1693 ($ (-640 (-563)))) (-15 -4167 ((-767) $)) (-15 -1915 ((-640 (-563)) $)) (-15 -2542 ($ (-767)))))) (T -275))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-275)))) (-4167 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-275)))) (-1915 (*1 *2 *1) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-275)))) (-2542 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-275)))))
-(-13 (-846) (-10 -8 (-15 -1693 ($ (-640 (-563)))) (-15 -4167 ((-767) $)) (-15 -1915 ((-640 (-563)) $)) (-15 -2542 ($ (-767)))))
-((-1771 ((|#2| |#2|) 75)) (-1619 ((|#2| |#2|) 63)) (-3640 (((-3 |#2| "failed") |#2| (-640 (-2 (|:| |func| |#2|) (|:| |pole| (-112))))) 115)) (-1748 ((|#2| |#2|) 73)) (-1597 ((|#2| |#2|) 61)) (-1794 ((|#2| |#2|) 77)) (-1643 ((|#2| |#2|) 65)) (-2180 ((|#2|) 44)) (-2361 (((-114) (-114)) 94)) (-4371 ((|#2| |#2|) 59)) (-2231 (((-112) |#2|) 133)) (-1792 ((|#2| |#2|) 180)) (-3999 ((|#2| |#2|) 156)) (-2403 ((|#2|) 57)) (-1724 ((|#2|) 56)) (-3668 ((|#2| |#2|) 176)) (-1343 ((|#2| |#2|) 152)) (-1752 ((|#2| |#2|) 184)) (-3416 ((|#2| |#2|) 160)) (-3740 ((|#2| |#2|) 148)) (-2035 ((|#2| |#2|) 150)) (-3829 ((|#2| |#2|) 186)) (-2948 ((|#2| |#2|) 162)) (-1460 ((|#2| |#2|) 182)) (-1493 ((|#2| |#2|) 158)) (-2743 ((|#2| |#2|) 178)) (-2318 ((|#2| |#2|) 154)) (-2932 ((|#2| |#2|) 192)) (-1432 ((|#2| |#2|) 168)) (-3886 ((|#2| |#2|) 188)) (-4240 ((|#2| |#2|) 164)) (-3695 ((|#2| |#2|) 196)) (-2638 ((|#2| |#2|) 172)) (-2075 ((|#2| |#2|) 198)) (-2834 ((|#2| |#2|) 174)) (-2117 ((|#2| |#2|) 194)) (-3173 ((|#2| |#2|) 170)) (-2552 ((|#2| |#2|) 190)) (-2551 ((|#2| |#2|) 166)) (-3368 ((|#2| |#2|) 60)) (-1806 ((|#2| |#2|) 78)) (-1656 ((|#2| |#2|) 66)) (-1784 ((|#2| |#2|) 76)) (-1630 ((|#2| |#2|) 64)) (-1759 ((|#2| |#2|) 74)) (-1608 ((|#2| |#2|) 62)) (-3734 (((-112) (-114)) 92)) (-1840 ((|#2| |#2|) 81)) (-1695 ((|#2| |#2|) 69)) (-1817 ((|#2| |#2|) 79)) (-1667 ((|#2| |#2|) 67)) (-1862 ((|#2| |#2|) 83)) (-1722 ((|#2| |#2|) 71)) (-1311 ((|#2| |#2|) 84)) (-1735 ((|#2| |#2|) 72)) (-1851 ((|#2| |#2|) 82)) (-1710 ((|#2| |#2|) 70)) (-1829 ((|#2| |#2|) 80)) (-1680 ((|#2| |#2|) 68)))
-(((-276 |#1| |#2|) (-10 -7 (-15 -3368 (|#2| |#2|)) (-15 -4371 (|#2| |#2|)) (-15 -1597 (|#2| |#2|)) (-15 -1608 (|#2| |#2|)) (-15 -1619 (|#2| |#2|)) (-15 -1630 (|#2| |#2|)) (-15 -1643 (|#2| |#2|)) (-15 -1656 (|#2| |#2|)) (-15 -1667 (|#2| |#2|)) (-15 -1680 (|#2| |#2|)) (-15 -1695 (|#2| |#2|)) (-15 -1710 (|#2| |#2|)) (-15 -1722 (|#2| |#2|)) (-15 -1735 (|#2| |#2|)) (-15 -1748 (|#2| |#2|)) (-15 -1759 (|#2| |#2|)) (-15 -1771 (|#2| |#2|)) (-15 -1784 (|#2| |#2|)) (-15 -1794 (|#2| |#2|)) (-15 -1806 (|#2| |#2|)) (-15 -1817 (|#2| |#2|)) (-15 -1829 (|#2| |#2|)) (-15 -1840 (|#2| |#2|)) (-15 -1851 (|#2| |#2|)) (-15 -1862 (|#2| |#2|)) (-15 -1311 (|#2| |#2|)) (-15 -2180 (|#2|)) (-15 -3734 ((-112) (-114))) (-15 -2361 ((-114) (-114))) (-15 -1724 (|#2|)) (-15 -2403 (|#2|)) (-15 -2035 (|#2| |#2|)) (-15 -3740 (|#2| |#2|)) (-15 -1343 (|#2| |#2|)) (-15 -2318 (|#2| |#2|)) (-15 -3999 (|#2| |#2|)) (-15 -1493 (|#2| |#2|)) (-15 -3416 (|#2| |#2|)) (-15 -2948 (|#2| |#2|)) (-15 -4240 (|#2| |#2|)) (-15 -2551 (|#2| |#2|)) (-15 -1432 (|#2| |#2|)) (-15 -3173 (|#2| |#2|)) (-15 -2638 (|#2| |#2|)) (-15 -2834 (|#2| |#2|)) (-15 -3668 (|#2| |#2|)) (-15 -2743 (|#2| |#2|)) (-15 -1792 (|#2| |#2|)) (-15 -1460 (|#2| |#2|)) (-15 -1752 (|#2| |#2|)) (-15 -3829 (|#2| |#2|)) (-15 -3886 (|#2| |#2|)) (-15 -2552 (|#2| |#2|)) (-15 -2932 (|#2| |#2|)) (-15 -2117 (|#2| |#2|)) (-15 -3695 (|#2| |#2|)) (-15 -2075 (|#2| |#2|)) (-15 -3640 ((-3 |#2| "failed") |#2| (-640 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -2231 ((-112) |#2|))) (-13 (-846) (-555)) (-13 (-430 |#1|) (-998))) (T -276))
-((-2231 (*1 *2 *3) (-12 (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112)) (-5 *1 (-276 *4 *3)) (-4 *3 (-13 (-430 *4) (-998))))) (-3640 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-640 (-2 (|:| |func| *2) (|:| |pole| (-112))))) (-4 *2 (-13 (-430 *4) (-998))) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-276 *4 *2)))) (-2075 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3695 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-2117 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-2932 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-2552 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3886 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3829 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1752 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1460 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1792 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-2743 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3668 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-2834 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-2638 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3173 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1432 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-2551 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-4240 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-2948 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3416 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1493 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3999 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-2318 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1343 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3740 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-2035 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-2403 (*1 *2) (-12 (-4 *2 (-13 (-430 *3) (-998))) (-5 *1 (-276 *3 *2)) (-4 *3 (-13 (-846) (-555))))) (-1724 (*1 *2) (-12 (-4 *2 (-13 (-430 *3) (-998))) (-5 *1 (-276 *3 *2)) (-4 *3 (-13 (-846) (-555))))) (-2361 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *4)) (-4 *4 (-13 (-430 *3) (-998))))) (-3734 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112)) (-5 *1 (-276 *4 *5)) (-4 *5 (-13 (-430 *4) (-998))))) (-2180 (*1 *2) (-12 (-4 *2 (-13 (-430 *3) (-998))) (-5 *1 (-276 *3 *2)) (-4 *3 (-13 (-846) (-555))))) (-1311 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1862 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1851 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1840 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1829 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1817 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1806 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1794 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1784 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1771 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1759 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1748 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1735 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1722 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1710 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1695 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1680 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1667 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1656 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1643 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1630 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1619 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1608 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1597 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-4371 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3368 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))))
-(-10 -7 (-15 -3368 (|#2| |#2|)) (-15 -4371 (|#2| |#2|)) (-15 -1597 (|#2| |#2|)) (-15 -1608 (|#2| |#2|)) (-15 -1619 (|#2| |#2|)) (-15 -1630 (|#2| |#2|)) (-15 -1643 (|#2| |#2|)) (-15 -1656 (|#2| |#2|)) (-15 -1667 (|#2| |#2|)) (-15 -1680 (|#2| |#2|)) (-15 -1695 (|#2| |#2|)) (-15 -1710 (|#2| |#2|)) (-15 -1722 (|#2| |#2|)) (-15 -1735 (|#2| |#2|)) (-15 -1748 (|#2| |#2|)) (-15 -1759 (|#2| |#2|)) (-15 -1771 (|#2| |#2|)) (-15 -1784 (|#2| |#2|)) (-15 -1794 (|#2| |#2|)) (-15 -1806 (|#2| |#2|)) (-15 -1817 (|#2| |#2|)) (-15 -1829 (|#2| |#2|)) (-15 -1840 (|#2| |#2|)) (-15 -1851 (|#2| |#2|)) (-15 -1862 (|#2| |#2|)) (-15 -1311 (|#2| |#2|)) (-15 -2180 (|#2|)) (-15 -3734 ((-112) (-114))) (-15 -2361 ((-114) (-114))) (-15 -1724 (|#2|)) (-15 -2403 (|#2|)) (-15 -2035 (|#2| |#2|)) (-15 -3740 (|#2| |#2|)) (-15 -1343 (|#2| |#2|)) (-15 -2318 (|#2| |#2|)) (-15 -3999 (|#2| |#2|)) (-15 -1493 (|#2| |#2|)) (-15 -3416 (|#2| |#2|)) (-15 -2948 (|#2| |#2|)) (-15 -4240 (|#2| |#2|)) (-15 -2551 (|#2| |#2|)) (-15 -1432 (|#2| |#2|)) (-15 -3173 (|#2| |#2|)) (-15 -2638 (|#2| |#2|)) (-15 -2834 (|#2| |#2|)) (-15 -3668 (|#2| |#2|)) (-15 -2743 (|#2| |#2|)) (-15 -1792 (|#2| |#2|)) (-15 -1460 (|#2| |#2|)) (-15 -1752 (|#2| |#2|)) (-15 -3829 (|#2| |#2|)) (-15 -3886 (|#2| |#2|)) (-15 -2552 (|#2| |#2|)) (-15 -2932 (|#2| |#2|)) (-15 -2117 (|#2| |#2|)) (-15 -3695 (|#2| |#2|)) (-15 -2075 (|#2| |#2|)) (-15 -3640 ((-3 |#2| "failed") |#2| (-640 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -2231 ((-112) |#2|)))
-((-3935 (((-3 |#2| "failed") (-640 (-609 |#2|)) |#2| (-1169)) 135)) (-2321 ((|#2| (-407 (-563)) |#2|) 51)) (-1815 ((|#2| |#2| (-609 |#2|)) 128)) (-4162 (((-2 (|:| |func| |#2|) (|:| |kers| (-640 (-609 |#2|))) (|:| |vals| (-640 |#2|))) |#2| (-1169)) 127)) (-2978 ((|#2| |#2| (-1169)) 20) ((|#2| |#2|) 23)) (-2441 ((|#2| |#2| (-1169)) 141) ((|#2| |#2|) 139)))
-(((-277 |#1| |#2|) (-10 -7 (-15 -2441 (|#2| |#2|)) (-15 -2441 (|#2| |#2| (-1169))) (-15 -4162 ((-2 (|:| |func| |#2|) (|:| |kers| (-640 (-609 |#2|))) (|:| |vals| (-640 |#2|))) |#2| (-1169))) (-15 -2978 (|#2| |#2|)) (-15 -2978 (|#2| |#2| (-1169))) (-15 -3935 ((-3 |#2| "failed") (-640 (-609 |#2|)) |#2| (-1169))) (-15 -1815 (|#2| |#2| (-609 |#2|))) (-15 -2321 (|#2| (-407 (-563)) |#2|))) (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|))) (T -277))
-((-2321 (*1 *2 *3 *2) (-12 (-5 *3 (-407 (-563))) (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-277 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))) (-1815 (*1 *2 *2 *3) (-12 (-5 *3 (-609 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))) (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-277 *4 *2)))) (-3935 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-640 (-609 *2))) (-5 *4 (-1169)) (-4 *2 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-277 *5 *2)))) (-2978 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-277 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))) (-2978 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))) (-4162 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-2 (|:| |func| *3) (|:| |kers| (-640 (-609 *3))) (|:| |vals| (-640 *3)))) (-5 *1 (-277 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-2441 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-277 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))) (-2441 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))))
-(-10 -7 (-15 -2441 (|#2| |#2|)) (-15 -2441 (|#2| |#2| (-1169))) (-15 -4162 ((-2 (|:| |func| |#2|) (|:| |kers| (-640 (-609 |#2|))) (|:| |vals| (-640 |#2|))) |#2| (-1169))) (-15 -2978 (|#2| |#2|)) (-15 -2978 (|#2| |#2| (-1169))) (-15 -3935 ((-3 |#2| "failed") (-640 (-609 |#2|)) |#2| (-1169))) (-15 -1815 (|#2| |#2| (-609 |#2|))) (-15 -2321 (|#2| (-407 (-563)) |#2|)))
-((-2695 (((-3 |#3| "failed") |#3|) 110)) (-1771 ((|#3| |#3|) 131)) (-4243 (((-3 |#3| "failed") |#3|) 82)) (-1619 ((|#3| |#3|) 121)) (-2030 (((-3 |#3| "failed") |#3|) 58)) (-1748 ((|#3| |#3|) 129)) (-1923 (((-3 |#3| "failed") |#3|) 46)) (-1597 ((|#3| |#3|) 119)) (-3565 (((-3 |#3| "failed") |#3|) 112)) (-1794 ((|#3| |#3|) 133)) (-3918 (((-3 |#3| "failed") |#3|) 84)) (-1643 ((|#3| |#3|) 123)) (-2092 (((-3 |#3| "failed") |#3| (-767)) 36)) (-1739 (((-3 |#3| "failed") |#3|) 74)) (-4371 ((|#3| |#3|) 118)) (-3089 (((-3 |#3| "failed") |#3|) 44)) (-3368 ((|#3| |#3|) 117)) (-3344 (((-3 |#3| "failed") |#3|) 113)) (-1806 ((|#3| |#3|) 134)) (-1732 (((-3 |#3| "failed") |#3|) 85)) (-1656 ((|#3| |#3|) 124)) (-3392 (((-3 |#3| "failed") |#3|) 111)) (-1784 ((|#3| |#3|) 132)) (-2616 (((-3 |#3| "failed") |#3|) 83)) (-1630 ((|#3| |#3|) 122)) (-3240 (((-3 |#3| "failed") |#3|) 60)) (-1759 ((|#3| |#3|) 130)) (-2106 (((-3 |#3| "failed") |#3|) 48)) (-1608 ((|#3| |#3|) 120)) (-4385 (((-3 |#3| "failed") |#3|) 66)) (-1840 ((|#3| |#3|) 137)) (-2566 (((-3 |#3| "failed") |#3|) 104)) (-1695 ((|#3| |#3|) 142)) (-4074 (((-3 |#3| "failed") |#3|) 62)) (-1817 ((|#3| |#3|) 135)) (-2000 (((-3 |#3| "failed") |#3|) 50)) (-1667 ((|#3| |#3|) 125)) (-2915 (((-3 |#3| "failed") |#3|) 70)) (-1862 ((|#3| |#3|) 139)) (-2002 (((-3 |#3| "failed") |#3|) 54)) (-1722 ((|#3| |#3|) 127)) (-3874 (((-3 |#3| "failed") |#3|) 72)) (-1311 ((|#3| |#3|) 140)) (-3409 (((-3 |#3| "failed") |#3|) 56)) (-1735 ((|#3| |#3|) 128)) (-2951 (((-3 |#3| "failed") |#3|) 68)) (-1851 ((|#3| |#3|) 138)) (-3235 (((-3 |#3| "failed") |#3|) 107)) (-1710 ((|#3| |#3|) 143)) (-2819 (((-3 |#3| "failed") |#3|) 64)) (-1829 ((|#3| |#3|) 136)) (-3137 (((-3 |#3| "failed") |#3|) 52)) (-1680 ((|#3| |#3|) 126)) (** ((|#3| |#3| (-407 (-563))) 40 (|has| |#1| (-363)))))
-(((-278 |#1| |#2| |#3|) (-13 (-979 |#3|) (-10 -7 (IF (|has| |#1| (-363)) (-15 ** (|#3| |#3| (-407 (-563)))) |%noBranch|) (-15 -3368 (|#3| |#3|)) (-15 -4371 (|#3| |#3|)) (-15 -1597 (|#3| |#3|)) (-15 -1608 (|#3| |#3|)) (-15 -1619 (|#3| |#3|)) (-15 -1630 (|#3| |#3|)) (-15 -1643 (|#3| |#3|)) (-15 -1656 (|#3| |#3|)) (-15 -1667 (|#3| |#3|)) (-15 -1680 (|#3| |#3|)) (-15 -1695 (|#3| |#3|)) (-15 -1710 (|#3| |#3|)) (-15 -1722 (|#3| |#3|)) (-15 -1735 (|#3| |#3|)) (-15 -1748 (|#3| |#3|)) (-15 -1759 (|#3| |#3|)) (-15 -1771 (|#3| |#3|)) (-15 -1784 (|#3| |#3|)) (-15 -1794 (|#3| |#3|)) (-15 -1806 (|#3| |#3|)) (-15 -1817 (|#3| |#3|)) (-15 -1829 (|#3| |#3|)) (-15 -1840 (|#3| |#3|)) (-15 -1851 (|#3| |#3|)) (-15 -1862 (|#3| |#3|)) (-15 -1311 (|#3| |#3|)))) (-38 (-407 (-563))) (-1248 |#1|) (-1219 |#1| |#2|)) (T -278))
-((** (*1 *2 *2 *3) (-12 (-5 *3 (-407 (-563))) (-4 *4 (-363)) (-4 *4 (-38 *3)) (-4 *5 (-1248 *4)) (-5 *1 (-278 *4 *5 *2)) (-4 *2 (-1219 *4 *5)))) (-3368 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-4371 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1597 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1608 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1619 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1630 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1643 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1656 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1667 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1680 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1695 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1710 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1722 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1735 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1748 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1759 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1771 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1784 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1794 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1806 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1817 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1829 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1840 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1851 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1862 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1311 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))))
-(-13 (-979 |#3|) (-10 -7 (IF (|has| |#1| (-363)) (-15 ** (|#3| |#3| (-407 (-563)))) |%noBranch|) (-15 -3368 (|#3| |#3|)) (-15 -4371 (|#3| |#3|)) (-15 -1597 (|#3| |#3|)) (-15 -1608 (|#3| |#3|)) (-15 -1619 (|#3| |#3|)) (-15 -1630 (|#3| |#3|)) (-15 -1643 (|#3| |#3|)) (-15 -1656 (|#3| |#3|)) (-15 -1667 (|#3| |#3|)) (-15 -1680 (|#3| |#3|)) (-15 -1695 (|#3| |#3|)) (-15 -1710 (|#3| |#3|)) (-15 -1722 (|#3| |#3|)) (-15 -1735 (|#3| |#3|)) (-15 -1748 (|#3| |#3|)) (-15 -1759 (|#3| |#3|)) (-15 -1771 (|#3| |#3|)) (-15 -1784 (|#3| |#3|)) (-15 -1794 (|#3| |#3|)) (-15 -1806 (|#3| |#3|)) (-15 -1817 (|#3| |#3|)) (-15 -1829 (|#3| |#3|)) (-15 -1840 (|#3| |#3|)) (-15 -1851 (|#3| |#3|)) (-15 -1862 (|#3| |#3|)) (-15 -1311 (|#3| |#3|))))
-((-2695 (((-3 |#3| "failed") |#3|) 66)) (-1771 ((|#3| |#3|) 129)) (-4243 (((-3 |#3| "failed") |#3|) 50)) (-1619 ((|#3| |#3|) 117)) (-2030 (((-3 |#3| "failed") |#3|) 62)) (-1748 ((|#3| |#3|) 127)) (-1923 (((-3 |#3| "failed") |#3|) 46)) (-1597 ((|#3| |#3|) 115)) (-3565 (((-3 |#3| "failed") |#3|) 70)) (-1794 ((|#3| |#3|) 131)) (-3918 (((-3 |#3| "failed") |#3|) 54)) (-1643 ((|#3| |#3|) 119)) (-2092 (((-3 |#3| "failed") |#3| (-767)) 35)) (-1739 (((-3 |#3| "failed") |#3|) 44)) (-4371 ((|#3| |#3|) 104)) (-3089 (((-3 |#3| "failed") |#3|) 42)) (-3368 ((|#3| |#3|) 114)) (-3344 (((-3 |#3| "failed") |#3|) 72)) (-1806 ((|#3| |#3|) 132)) (-1732 (((-3 |#3| "failed") |#3|) 56)) (-1656 ((|#3| |#3|) 120)) (-3392 (((-3 |#3| "failed") |#3|) 68)) (-1784 ((|#3| |#3|) 130)) (-2616 (((-3 |#3| "failed") |#3|) 52)) (-1630 ((|#3| |#3|) 118)) (-3240 (((-3 |#3| "failed") |#3|) 64)) (-1759 ((|#3| |#3|) 128)) (-2106 (((-3 |#3| "failed") |#3|) 48)) (-1608 ((|#3| |#3|) 116)) (-4385 (((-3 |#3| "failed") |#3|) 74)) (-1840 ((|#3| |#3|) 135)) (-2566 (((-3 |#3| "failed") |#3|) 58)) (-1695 ((|#3| |#3|) 123)) (-4074 (((-3 |#3| "failed") |#3|) 105)) (-1817 ((|#3| |#3|) 133)) (-2000 (((-3 |#3| "failed") |#3|) 94)) (-1667 ((|#3| |#3|) 121)) (-2915 (((-3 |#3| "failed") |#3|) 109)) (-1862 ((|#3| |#3|) 137)) (-2002 (((-3 |#3| "failed") |#3|) 101)) (-1722 ((|#3| |#3|) 125)) (-3874 (((-3 |#3| "failed") |#3|) 110)) (-1311 ((|#3| |#3|) 138)) (-3409 (((-3 |#3| "failed") |#3|) 103)) (-1735 ((|#3| |#3|) 126)) (-2951 (((-3 |#3| "failed") |#3|) 76)) (-1851 ((|#3| |#3|) 136)) (-3235 (((-3 |#3| "failed") |#3|) 60)) (-1710 ((|#3| |#3|) 124)) (-2819 (((-3 |#3| "failed") |#3|) 106)) (-1829 ((|#3| |#3|) 134)) (-3137 (((-3 |#3| "failed") |#3|) 97)) (-1680 ((|#3| |#3|) 122)) (** ((|#3| |#3| (-407 (-563))) 40 (|has| |#1| (-363)))))
-(((-279 |#1| |#2| |#3| |#4|) (-13 (-979 |#3|) (-10 -7 (IF (|has| |#1| (-363)) (-15 ** (|#3| |#3| (-407 (-563)))) |%noBranch|) (-15 -3368 (|#3| |#3|)) (-15 -4371 (|#3| |#3|)) (-15 -1597 (|#3| |#3|)) (-15 -1608 (|#3| |#3|)) (-15 -1619 (|#3| |#3|)) (-15 -1630 (|#3| |#3|)) (-15 -1643 (|#3| |#3|)) (-15 -1656 (|#3| |#3|)) (-15 -1667 (|#3| |#3|)) (-15 -1680 (|#3| |#3|)) (-15 -1695 (|#3| |#3|)) (-15 -1710 (|#3| |#3|)) (-15 -1722 (|#3| |#3|)) (-15 -1735 (|#3| |#3|)) (-15 -1748 (|#3| |#3|)) (-15 -1759 (|#3| |#3|)) (-15 -1771 (|#3| |#3|)) (-15 -1784 (|#3| |#3|)) (-15 -1794 (|#3| |#3|)) (-15 -1806 (|#3| |#3|)) (-15 -1817 (|#3| |#3|)) (-15 -1829 (|#3| |#3|)) (-15 -1840 (|#3| |#3|)) (-15 -1851 (|#3| |#3|)) (-15 -1862 (|#3| |#3|)) (-15 -1311 (|#3| |#3|)))) (-38 (-407 (-563))) (-1217 |#1|) (-1240 |#1| |#2|) (-979 |#2|)) (T -279))
-((** (*1 *2 *2 *3) (-12 (-5 *3 (-407 (-563))) (-4 *4 (-363)) (-4 *4 (-38 *3)) (-4 *5 (-1217 *4)) (-5 *1 (-279 *4 *5 *2 *6)) (-4 *2 (-1240 *4 *5)) (-4 *6 (-979 *5)))) (-3368 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-4371 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1597 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1608 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1619 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1630 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1643 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1656 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1667 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1680 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1695 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1710 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1722 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1735 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1748 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1759 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1771 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1784 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1794 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1806 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1817 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1829 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1840 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1851 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1862 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1311 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))))
-(-13 (-979 |#3|) (-10 -7 (IF (|has| |#1| (-363)) (-15 ** (|#3| |#3| (-407 (-563)))) |%noBranch|) (-15 -3368 (|#3| |#3|)) (-15 -4371 (|#3| |#3|)) (-15 -1597 (|#3| |#3|)) (-15 -1608 (|#3| |#3|)) (-15 -1619 (|#3| |#3|)) (-15 -1630 (|#3| |#3|)) (-15 -1643 (|#3| |#3|)) (-15 -1656 (|#3| |#3|)) (-15 -1667 (|#3| |#3|)) (-15 -1680 (|#3| |#3|)) (-15 -1695 (|#3| |#3|)) (-15 -1710 (|#3| |#3|)) (-15 -1722 (|#3| |#3|)) (-15 -1735 (|#3| |#3|)) (-15 -1748 (|#3| |#3|)) (-15 -1759 (|#3| |#3|)) (-15 -1771 (|#3| |#3|)) (-15 -1784 (|#3| |#3|)) (-15 -1794 (|#3| |#3|)) (-15 -1806 (|#3| |#3|)) (-15 -1817 (|#3| |#3|)) (-15 -1829 (|#3| |#3|)) (-15 -1840 (|#3| |#3|)) (-15 -1851 (|#3| |#3|)) (-15 -1862 (|#3| |#3|)) (-15 -1311 (|#3| |#3|))))
-((-4036 (((-112) $) 18)) (-3721 (((-183) $) 7)) (-2658 (((-3 (-1169) "failed") $) 14)) (-3639 (((-3 (-640 $) "failed") $) NIL)) (-2992 (((-3 (-1169) "failed") $) 20)) (-2410 (((-3 (-1097) "failed") $) 17)) (-4018 (((-112) $) 15)) (-1693 (((-858) $) NIL)) (-4341 (((-112) $) 9)))
-(((-280) (-13 (-610 (-858)) (-10 -8 (-15 -3721 ((-183) $)) (-15 -4018 ((-112) $)) (-15 -2410 ((-3 (-1097) "failed") $)) (-15 -4036 ((-112) $)) (-15 -2992 ((-3 (-1169) "failed") $)) (-15 -4341 ((-112) $)) (-15 -2658 ((-3 (-1169) "failed") $)) (-15 -3639 ((-3 (-640 $) "failed") $))))) (T -280))
-((-3721 (*1 *2 *1) (-12 (-5 *2 (-183)) (-5 *1 (-280)))) (-4018 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-280)))) (-2410 (*1 *2 *1) (|partial| -12 (-5 *2 (-1097)) (-5 *1 (-280)))) (-4036 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-280)))) (-2992 (*1 *2 *1) (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-280)))) (-4341 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-280)))) (-2658 (*1 *2 *1) (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-280)))) (-3639 (*1 *2 *1) (|partial| -12 (-5 *2 (-640 (-280))) (-5 *1 (-280)))))
-(-13 (-610 (-858)) (-10 -8 (-15 -3721 ((-183) $)) (-15 -4018 ((-112) $)) (-15 -2410 ((-3 (-1097) "failed") $)) (-15 -4036 ((-112) $)) (-15 -2992 ((-3 (-1169) "failed") $)) (-15 -4341 ((-112) $)) (-15 -2658 ((-3 (-1169) "failed") $)) (-15 -3639 ((-3 (-640 $) "failed") $))))
-((-2256 (($ (-1 (-112) |#2|) $) 24)) (-3813 (($ $) 36)) (-2705 (($ (-1 (-112) |#2|) $) NIL) (($ |#2| $) 34)) (-1459 (($ |#2| $) 32) (($ (-1 (-112) |#2|) $) 18)) (-2878 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 40)) (-3396 (($ |#2| $ (-563)) 20) (($ $ $ (-563)) 22)) (-2963 (($ $ (-563)) 11) (($ $ (-1224 (-563))) 14)) (-3245 (($ $ |#2|) 30) (($ $ $) NIL)) (-2853 (($ $ |#2|) 29) (($ |#2| $) NIL) (($ $ $) 26) (($ (-640 $)) NIL)))
-(((-281 |#1| |#2|) (-10 -8 (-15 -2878 (|#1| |#1| |#1|)) (-15 -2705 (|#1| |#2| |#1|)) (-15 -2878 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2705 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3245 (|#1| |#1| |#1|)) (-15 -3245 (|#1| |#1| |#2|)) (-15 -3396 (|#1| |#1| |#1| (-563))) (-15 -3396 (|#1| |#2| |#1| (-563))) (-15 -2963 (|#1| |#1| (-1224 (-563)))) (-15 -2963 (|#1| |#1| (-563))) (-15 -2853 (|#1| (-640 |#1|))) (-15 -2853 (|#1| |#1| |#1|)) (-15 -2853 (|#1| |#2| |#1|)) (-15 -2853 (|#1| |#1| |#2|)) (-15 -1459 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2256 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1459 (|#1| |#2| |#1|)) (-15 -3813 (|#1| |#1|))) (-282 |#2|) (-1208)) (T -281))
-NIL
-(-10 -8 (-15 -2878 (|#1| |#1| |#1|)) (-15 -2705 (|#1| |#2| |#1|)) (-15 -2878 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2705 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3245 (|#1| |#1| |#1|)) (-15 -3245 (|#1| |#1| |#2|)) (-15 -3396 (|#1| |#1| |#1| (-563))) (-15 -3396 (|#1| |#2| |#1| (-563))) (-15 -2963 (|#1| |#1| (-1224 (-563)))) (-15 -2963 (|#1| |#1| (-563))) (-15 -2853 (|#1| (-640 |#1|))) (-15 -2853 (|#1| |#1| |#1|)) (-15 -2853 (|#1| |#2| |#1|)) (-15 -2853 (|#1| |#1| |#2|)) (-15 -1459 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2256 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1459 (|#1| |#2| |#1|)) (-15 -3813 (|#1| |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-4378 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) 8)) (-1849 ((|#1| $ (-563) |#1|) 52 (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) 58 (|has| $ (-6 -4408)))) (-2812 (($ (-1 (-112) |#1|) $) 85)) (-2256 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4407)))) (-4239 (($) 7 T CONST)) (-4005 (($ $) 83 (|has| |#1| (-1093)))) (-3813 (($ $) 78 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-2705 (($ (-1 (-112) |#1|) $) 89) (($ |#1| $) 84 (|has| |#1| (-1093)))) (-1459 (($ |#1| $) 77 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4407)))) (-4355 ((|#1| $ (-563) |#1|) 53 (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) 51)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-1566 (($ (-767) |#1|) 69)) (-2581 (((-112) $ (-767)) 9)) (-2411 (((-563) $) 43 (|has| (-563) (-846)))) (-2878 (($ (-1 (-112) |#1| |#1|) $ $) 86) (($ $ $) 82 (|has| |#1| (-846)))) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-3860 (((-563) $) 44 (|has| (-563) (-846)))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1812 (($ |#1| $ (-563)) 88) (($ $ $ (-563)) 87)) (-3396 (($ |#1| $ (-563)) 60) (($ $ $ (-563)) 59)) (-4318 (((-640 (-563)) $) 46)) (-3192 (((-112) (-563) $) 47)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3781 ((|#1| $) 42 (|has| (-563) (-846)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2358 (($ $ |#1|) 41 (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-2105 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) 48)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ (-563) |#1|) 50) ((|#1| $ (-563)) 49) (($ $ (-1224 (-563))) 63)) (-1314 (($ $ (-563)) 91) (($ $ (-1224 (-563))) 90)) (-2963 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-2220 (((-536) $) 79 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 70)) (-3245 (($ $ |#1|) 93) (($ $ $) 92)) (-2853 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3240 (((-640 (-563)) $) 18)) (-3871 (((-767) $) 16)) (-1692 (((-858) $) 22) (($ (-640 (-563))) 14)) (-3230 (($ (-767)) 19)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 9)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 10)))
+(((-275) (-13 (-846) (-10 -8 (-15 -1692 ($ (-640 (-563)))) (-15 -3871 ((-767) $)) (-15 -3240 ((-640 (-563)) $)) (-15 -3230 ($ (-767)))))) (T -275))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-275)))) (-3871 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-275)))) (-3240 (*1 *2 *1) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-275)))) (-3230 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-275)))))
+(-13 (-846) (-10 -8 (-15 -1692 ($ (-640 (-563)))) (-15 -3871 ((-767) $)) (-15 -3240 ((-640 (-563)) $)) (-15 -3230 ($ (-767)))))
+((-1770 ((|#2| |#2|) 75)) (-1618 ((|#2| |#2|) 63)) (-3565 (((-3 |#2| "failed") |#2| (-640 (-2 (|:| |func| |#2|) (|:| |pole| (-112))))) 115)) (-1747 ((|#2| |#2|) 73)) (-1596 ((|#2| |#2|) 61)) (-1793 ((|#2| |#2|) 77)) (-1642 ((|#2| |#2|) 65)) (-2179 ((|#2|) 44)) (-2559 (((-114) (-114)) 94)) (-4372 ((|#2| |#2|) 59)) (-3577 (((-112) |#2|) 134)) (-3452 ((|#2| |#2|) 182)) (-3314 ((|#2| |#2|) 158)) (-3261 ((|#2|) 57)) (-3251 ((|#2|) 56)) (-3428 ((|#2| |#2|) 178)) (-3288 ((|#2| |#2|) 154)) (-3474 ((|#2| |#2|) 186)) (-3335 ((|#2| |#2|) 162)) (-3278 ((|#2| |#2|) 150)) (-3268 ((|#2| |#2|) 152)) (-3484 ((|#2| |#2|) 188)) (-3345 ((|#2| |#2|) 164)) (-3464 ((|#2| |#2|) 184)) (-3325 ((|#2| |#2|) 160)) (-3441 ((|#2| |#2|) 180)) (-3299 ((|#2| |#2|) 156)) (-3516 ((|#2| |#2|) 194)) (-3379 ((|#2| |#2|) 170)) (-3494 ((|#2| |#2|) 190)) (-3356 ((|#2| |#2|) 166)) (-3539 ((|#2| |#2|) 198)) (-3404 ((|#2| |#2|) 174)) (-3550 ((|#2| |#2|) 200)) (-3416 ((|#2| |#2|) 176)) (-3527 ((|#2| |#2|) 196)) (-3391 ((|#2| |#2|) 172)) (-3506 ((|#2| |#2|) 192)) (-3367 ((|#2| |#2|) 168)) (-3372 ((|#2| |#2|) 60)) (-1805 ((|#2| |#2|) 78)) (-1655 ((|#2| |#2|) 66)) (-1783 ((|#2| |#2|) 76)) (-1629 ((|#2| |#2|) 64)) (-1758 ((|#2| |#2|) 74)) (-1607 ((|#2| |#2|) 62)) (-2512 (((-112) (-114)) 92)) (-1839 ((|#2| |#2|) 81)) (-1694 ((|#2| |#2|) 69)) (-1816 ((|#2| |#2|) 79)) (-1666 ((|#2| |#2|) 67)) (-1861 ((|#2| |#2|) 83)) (-1721 ((|#2| |#2|) 71)) (-1311 ((|#2| |#2|) 84)) (-1734 ((|#2| |#2|) 72)) (-1850 ((|#2| |#2|) 82)) (-1709 ((|#2| |#2|) 70)) (-1828 ((|#2| |#2|) 80)) (-1679 ((|#2| |#2|) 68)))
+(((-276 |#1| |#2|) (-10 -7 (-15 -3372 (|#2| |#2|)) (-15 -4372 (|#2| |#2|)) (-15 -1596 (|#2| |#2|)) (-15 -1607 (|#2| |#2|)) (-15 -1618 (|#2| |#2|)) (-15 -1629 (|#2| |#2|)) (-15 -1642 (|#2| |#2|)) (-15 -1655 (|#2| |#2|)) (-15 -1666 (|#2| |#2|)) (-15 -1679 (|#2| |#2|)) (-15 -1694 (|#2| |#2|)) (-15 -1709 (|#2| |#2|)) (-15 -1721 (|#2| |#2|)) (-15 -1734 (|#2| |#2|)) (-15 -1747 (|#2| |#2|)) (-15 -1758 (|#2| |#2|)) (-15 -1770 (|#2| |#2|)) (-15 -1783 (|#2| |#2|)) (-15 -1793 (|#2| |#2|)) (-15 -1805 (|#2| |#2|)) (-15 -1816 (|#2| |#2|)) (-15 -1828 (|#2| |#2|)) (-15 -1839 (|#2| |#2|)) (-15 -1850 (|#2| |#2|)) (-15 -1861 (|#2| |#2|)) (-15 -1311 (|#2| |#2|)) (-15 -2179 (|#2|)) (-15 -2512 ((-112) (-114))) (-15 -2559 ((-114) (-114))) (-15 -3251 (|#2|)) (-15 -3261 (|#2|)) (-15 -3268 (|#2| |#2|)) (-15 -3278 (|#2| |#2|)) (-15 -3288 (|#2| |#2|)) (-15 -3299 (|#2| |#2|)) (-15 -3314 (|#2| |#2|)) (-15 -3325 (|#2| |#2|)) (-15 -3335 (|#2| |#2|)) (-15 -3345 (|#2| |#2|)) (-15 -3356 (|#2| |#2|)) (-15 -3367 (|#2| |#2|)) (-15 -3379 (|#2| |#2|)) (-15 -3391 (|#2| |#2|)) (-15 -3404 (|#2| |#2|)) (-15 -3416 (|#2| |#2|)) (-15 -3428 (|#2| |#2|)) (-15 -3441 (|#2| |#2|)) (-15 -3452 (|#2| |#2|)) (-15 -3464 (|#2| |#2|)) (-15 -3474 (|#2| |#2|)) (-15 -3484 (|#2| |#2|)) (-15 -3494 (|#2| |#2|)) (-15 -3506 (|#2| |#2|)) (-15 -3516 (|#2| |#2|)) (-15 -3527 (|#2| |#2|)) (-15 -3539 (|#2| |#2|)) (-15 -3550 (|#2| |#2|)) (-15 -3565 ((-3 |#2| "failed") |#2| (-640 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -3577 ((-112) |#2|))) (-13 (-846) (-555)) (-13 (-430 |#1|) (-998))) (T -276))
+((-3577 (*1 *2 *3) (-12 (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112)) (-5 *1 (-276 *4 *3)) (-4 *3 (-13 (-430 *4) (-998))))) (-3565 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-640 (-2 (|:| |func| *2) (|:| |pole| (-112))))) (-4 *2 (-13 (-430 *4) (-998))) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-276 *4 *2)))) (-3550 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3539 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3527 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3516 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3506 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3494 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3484 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3474 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3464 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3452 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3441 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3428 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3416 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3404 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3391 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3379 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3367 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3356 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3345 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3335 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3325 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3314 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3299 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3288 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3278 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3268 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3261 (*1 *2) (-12 (-4 *2 (-13 (-430 *3) (-998))) (-5 *1 (-276 *3 *2)) (-4 *3 (-13 (-846) (-555))))) (-3251 (*1 *2) (-12 (-4 *2 (-13 (-430 *3) (-998))) (-5 *1 (-276 *3 *2)) (-4 *3 (-13 (-846) (-555))))) (-2559 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *4)) (-4 *4 (-13 (-430 *3) (-998))))) (-2512 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112)) (-5 *1 (-276 *4 *5)) (-4 *5 (-13 (-430 *4) (-998))))) (-2179 (*1 *2) (-12 (-4 *2 (-13 (-430 *3) (-998))) (-5 *1 (-276 *3 *2)) (-4 *3 (-13 (-846) (-555))))) (-1311 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1861 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1850 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1839 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1828 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1816 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1805 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1793 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1783 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1770 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1758 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1747 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1734 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1721 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1709 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1694 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1679 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1666 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1655 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1642 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1629 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1618 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1607 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-1596 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-4372 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))) (-3372 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-430 *3) (-998))))))
+(-10 -7 (-15 -3372 (|#2| |#2|)) (-15 -4372 (|#2| |#2|)) (-15 -1596 (|#2| |#2|)) (-15 -1607 (|#2| |#2|)) (-15 -1618 (|#2| |#2|)) (-15 -1629 (|#2| |#2|)) (-15 -1642 (|#2| |#2|)) (-15 -1655 (|#2| |#2|)) (-15 -1666 (|#2| |#2|)) (-15 -1679 (|#2| |#2|)) (-15 -1694 (|#2| |#2|)) (-15 -1709 (|#2| |#2|)) (-15 -1721 (|#2| |#2|)) (-15 -1734 (|#2| |#2|)) (-15 -1747 (|#2| |#2|)) (-15 -1758 (|#2| |#2|)) (-15 -1770 (|#2| |#2|)) (-15 -1783 (|#2| |#2|)) (-15 -1793 (|#2| |#2|)) (-15 -1805 (|#2| |#2|)) (-15 -1816 (|#2| |#2|)) (-15 -1828 (|#2| |#2|)) (-15 -1839 (|#2| |#2|)) (-15 -1850 (|#2| |#2|)) (-15 -1861 (|#2| |#2|)) (-15 -1311 (|#2| |#2|)) (-15 -2179 (|#2|)) (-15 -2512 ((-112) (-114))) (-15 -2559 ((-114) (-114))) (-15 -3251 (|#2|)) (-15 -3261 (|#2|)) (-15 -3268 (|#2| |#2|)) (-15 -3278 (|#2| |#2|)) (-15 -3288 (|#2| |#2|)) (-15 -3299 (|#2| |#2|)) (-15 -3314 (|#2| |#2|)) (-15 -3325 (|#2| |#2|)) (-15 -3335 (|#2| |#2|)) (-15 -3345 (|#2| |#2|)) (-15 -3356 (|#2| |#2|)) (-15 -3367 (|#2| |#2|)) (-15 -3379 (|#2| |#2|)) (-15 -3391 (|#2| |#2|)) (-15 -3404 (|#2| |#2|)) (-15 -3416 (|#2| |#2|)) (-15 -3428 (|#2| |#2|)) (-15 -3441 (|#2| |#2|)) (-15 -3452 (|#2| |#2|)) (-15 -3464 (|#2| |#2|)) (-15 -3474 (|#2| |#2|)) (-15 -3484 (|#2| |#2|)) (-15 -3494 (|#2| |#2|)) (-15 -3506 (|#2| |#2|)) (-15 -3516 (|#2| |#2|)) (-15 -3527 (|#2| |#2|)) (-15 -3539 (|#2| |#2|)) (-15 -3550 (|#2| |#2|)) (-15 -3565 ((-3 |#2| "failed") |#2| (-640 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -3577 ((-112) |#2|)))
+((-3609 (((-3 |#2| "failed") (-640 (-609 |#2|)) |#2| (-1169)) 135)) (-3633 ((|#2| (-407 (-563)) |#2|) 51)) (-3620 ((|#2| |#2| (-609 |#2|)) 128)) (-3587 (((-2 (|:| |func| |#2|) (|:| |kers| (-640 (-609 |#2|))) (|:| |vals| (-640 |#2|))) |#2| (-1169)) 127)) (-3598 ((|#2| |#2| (-1169)) 20) ((|#2| |#2|) 23)) (-1826 ((|#2| |#2| (-1169)) 141) ((|#2| |#2|) 139)))
+(((-277 |#1| |#2|) (-10 -7 (-15 -1826 (|#2| |#2|)) (-15 -1826 (|#2| |#2| (-1169))) (-15 -3587 ((-2 (|:| |func| |#2|) (|:| |kers| (-640 (-609 |#2|))) (|:| |vals| (-640 |#2|))) |#2| (-1169))) (-15 -3598 (|#2| |#2|)) (-15 -3598 (|#2| |#2| (-1169))) (-15 -3609 ((-3 |#2| "failed") (-640 (-609 |#2|)) |#2| (-1169))) (-15 -3620 (|#2| |#2| (-609 |#2|))) (-15 -3633 (|#2| (-407 (-563)) |#2|))) (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|))) (T -277))
+((-3633 (*1 *2 *3 *2) (-12 (-5 *3 (-407 (-563))) (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-277 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))) (-3620 (*1 *2 *2 *3) (-12 (-5 *3 (-609 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))) (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-277 *4 *2)))) (-3609 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-640 (-609 *2))) (-5 *4 (-1169)) (-4 *2 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-277 *5 *2)))) (-3598 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-277 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))) (-3598 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))) (-3587 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-2 (|:| |func| *3) (|:| |kers| (-640 (-609 *3))) (|:| |vals| (-640 *3)))) (-5 *1 (-277 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-1826 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-277 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))) (-1826 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))))
+(-10 -7 (-15 -1826 (|#2| |#2|)) (-15 -1826 (|#2| |#2| (-1169))) (-15 -3587 ((-2 (|:| |func| |#2|) (|:| |kers| (-640 (-609 |#2|))) (|:| |vals| (-640 |#2|))) |#2| (-1169))) (-15 -3598 (|#2| |#2|)) (-15 -3598 (|#2| |#2| (-1169))) (-15 -3609 ((-3 |#2| "failed") (-640 (-609 |#2|)) |#2| (-1169))) (-15 -3620 (|#2| |#2| (-609 |#2|))) (-15 -3633 (|#2| (-407 (-563)) |#2|)))
+((-3015 (((-3 |#3| "failed") |#3|) 111)) (-1770 ((|#3| |#3|) 132)) (-2896 (((-3 |#3| "failed") |#3|) 82)) (-1618 ((|#3| |#3|) 122)) (-2993 (((-3 |#3| "failed") |#3|) 58)) (-1747 ((|#3| |#3|) 130)) (-2878 (((-3 |#3| "failed") |#3|) 46)) (-1596 ((|#3| |#3|) 120)) (-3035 (((-3 |#3| "failed") |#3|) 113)) (-1793 ((|#3| |#3|) 134)) (-2915 (((-3 |#3| "failed") |#3|) 84)) (-1642 ((|#3| |#3|) 124)) (-2850 (((-3 |#3| "failed") |#3| (-767)) 36)) (-2869 (((-3 |#3| "failed") |#3|) 74)) (-4372 ((|#3| |#3|) 119)) (-2860 (((-3 |#3| "failed") |#3|) 44)) (-3372 ((|#3| |#3|) 118)) (-3046 (((-3 |#3| "failed") |#3|) 114)) (-1805 ((|#3| |#3|) 135)) (-2925 (((-3 |#3| "failed") |#3|) 85)) (-1655 ((|#3| |#3|) 125)) (-3025 (((-3 |#3| "failed") |#3|) 112)) (-1783 ((|#3| |#3|) 133)) (-2905 (((-3 |#3| "failed") |#3|) 83)) (-1629 ((|#3| |#3|) 123)) (-3004 (((-3 |#3| "failed") |#3|) 60)) (-1758 ((|#3| |#3|) 131)) (-2887 (((-3 |#3| "failed") |#3|) 48)) (-1607 ((|#3| |#3|) 121)) (-3075 (((-3 |#3| "failed") |#3|) 66)) (-1839 ((|#3| |#3|) 138)) (-2954 (((-3 |#3| "failed") |#3|) 105)) (-1694 ((|#3| |#3|) 143)) (-3057 (((-3 |#3| "failed") |#3|) 62)) (-1816 ((|#3| |#3|) 136)) (-2934 (((-3 |#3| "failed") |#3|) 50)) (-1666 ((|#3| |#3|) 126)) (-3097 (((-3 |#3| "failed") |#3|) 70)) (-1861 ((|#3| |#3|) 140)) (-2974 (((-3 |#3| "failed") |#3|) 54)) (-1721 ((|#3| |#3|) 128)) (-3109 (((-3 |#3| "failed") |#3|) 72)) (-1311 ((|#3| |#3|) 141)) (-2983 (((-3 |#3| "failed") |#3|) 56)) (-1734 ((|#3| |#3|) 129)) (-3085 (((-3 |#3| "failed") |#3|) 68)) (-1850 ((|#3| |#3|) 139)) (-2964 (((-3 |#3| "failed") |#3|) 108)) (-1709 ((|#3| |#3|) 144)) (-3066 (((-3 |#3| "failed") |#3|) 64)) (-1828 ((|#3| |#3|) 137)) (-2944 (((-3 |#3| "failed") |#3|) 52)) (-1679 ((|#3| |#3|) 127)) (** ((|#3| |#3| (-407 (-563))) 40 (|has| |#1| (-363)))))
+(((-278 |#1| |#2| |#3|) (-13 (-979 |#3|) (-10 -7 (IF (|has| |#1| (-363)) (-15 ** (|#3| |#3| (-407 (-563)))) |%noBranch|) (-15 -3372 (|#3| |#3|)) (-15 -4372 (|#3| |#3|)) (-15 -1596 (|#3| |#3|)) (-15 -1607 (|#3| |#3|)) (-15 -1618 (|#3| |#3|)) (-15 -1629 (|#3| |#3|)) (-15 -1642 (|#3| |#3|)) (-15 -1655 (|#3| |#3|)) (-15 -1666 (|#3| |#3|)) (-15 -1679 (|#3| |#3|)) (-15 -1694 (|#3| |#3|)) (-15 -1709 (|#3| |#3|)) (-15 -1721 (|#3| |#3|)) (-15 -1734 (|#3| |#3|)) (-15 -1747 (|#3| |#3|)) (-15 -1758 (|#3| |#3|)) (-15 -1770 (|#3| |#3|)) (-15 -1783 (|#3| |#3|)) (-15 -1793 (|#3| |#3|)) (-15 -1805 (|#3| |#3|)) (-15 -1816 (|#3| |#3|)) (-15 -1828 (|#3| |#3|)) (-15 -1839 (|#3| |#3|)) (-15 -1850 (|#3| |#3|)) (-15 -1861 (|#3| |#3|)) (-15 -1311 (|#3| |#3|)))) (-38 (-407 (-563))) (-1248 |#1|) (-1219 |#1| |#2|)) (T -278))
+((** (*1 *2 *2 *3) (-12 (-5 *3 (-407 (-563))) (-4 *4 (-363)) (-4 *4 (-38 *3)) (-4 *5 (-1248 *4)) (-5 *1 (-278 *4 *5 *2)) (-4 *2 (-1219 *4 *5)))) (-3372 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-4372 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1596 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1607 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1618 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1629 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1642 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1655 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1666 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1679 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1694 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1709 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1721 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1734 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1747 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1758 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1770 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1783 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1793 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1805 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1816 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1828 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1839 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1850 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1861 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))) (-1311 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1248 *3)) (-5 *1 (-278 *3 *4 *2)) (-4 *2 (-1219 *3 *4)))))
+(-13 (-979 |#3|) (-10 -7 (IF (|has| |#1| (-363)) (-15 ** (|#3| |#3| (-407 (-563)))) |%noBranch|) (-15 -3372 (|#3| |#3|)) (-15 -4372 (|#3| |#3|)) (-15 -1596 (|#3| |#3|)) (-15 -1607 (|#3| |#3|)) (-15 -1618 (|#3| |#3|)) (-15 -1629 (|#3| |#3|)) (-15 -1642 (|#3| |#3|)) (-15 -1655 (|#3| |#3|)) (-15 -1666 (|#3| |#3|)) (-15 -1679 (|#3| |#3|)) (-15 -1694 (|#3| |#3|)) (-15 -1709 (|#3| |#3|)) (-15 -1721 (|#3| |#3|)) (-15 -1734 (|#3| |#3|)) (-15 -1747 (|#3| |#3|)) (-15 -1758 (|#3| |#3|)) (-15 -1770 (|#3| |#3|)) (-15 -1783 (|#3| |#3|)) (-15 -1793 (|#3| |#3|)) (-15 -1805 (|#3| |#3|)) (-15 -1816 (|#3| |#3|)) (-15 -1828 (|#3| |#3|)) (-15 -1839 (|#3| |#3|)) (-15 -1850 (|#3| |#3|)) (-15 -1861 (|#3| |#3|)) (-15 -1311 (|#3| |#3|))))
+((-3015 (((-3 |#3| "failed") |#3|) 66)) (-1770 ((|#3| |#3|) 129)) (-2896 (((-3 |#3| "failed") |#3|) 50)) (-1618 ((|#3| |#3|) 117)) (-2993 (((-3 |#3| "failed") |#3|) 62)) (-1747 ((|#3| |#3|) 127)) (-2878 (((-3 |#3| "failed") |#3|) 46)) (-1596 ((|#3| |#3|) 115)) (-3035 (((-3 |#3| "failed") |#3|) 70)) (-1793 ((|#3| |#3|) 131)) (-2915 (((-3 |#3| "failed") |#3|) 54)) (-1642 ((|#3| |#3|) 119)) (-2850 (((-3 |#3| "failed") |#3| (-767)) 35)) (-2869 (((-3 |#3| "failed") |#3|) 44)) (-4372 ((|#3| |#3|) 104)) (-2860 (((-3 |#3| "failed") |#3|) 42)) (-3372 ((|#3| |#3|) 114)) (-3046 (((-3 |#3| "failed") |#3|) 72)) (-1805 ((|#3| |#3|) 132)) (-2925 (((-3 |#3| "failed") |#3|) 56)) (-1655 ((|#3| |#3|) 120)) (-3025 (((-3 |#3| "failed") |#3|) 68)) (-1783 ((|#3| |#3|) 130)) (-2905 (((-3 |#3| "failed") |#3|) 52)) (-1629 ((|#3| |#3|) 118)) (-3004 (((-3 |#3| "failed") |#3|) 64)) (-1758 ((|#3| |#3|) 128)) (-2887 (((-3 |#3| "failed") |#3|) 48)) (-1607 ((|#3| |#3|) 116)) (-3075 (((-3 |#3| "failed") |#3|) 74)) (-1839 ((|#3| |#3|) 135)) (-2954 (((-3 |#3| "failed") |#3|) 58)) (-1694 ((|#3| |#3|) 123)) (-3057 (((-3 |#3| "failed") |#3|) 105)) (-1816 ((|#3| |#3|) 133)) (-2934 (((-3 |#3| "failed") |#3|) 94)) (-1666 ((|#3| |#3|) 121)) (-3097 (((-3 |#3| "failed") |#3|) 109)) (-1861 ((|#3| |#3|) 137)) (-2974 (((-3 |#3| "failed") |#3|) 101)) (-1721 ((|#3| |#3|) 125)) (-3109 (((-3 |#3| "failed") |#3|) 110)) (-1311 ((|#3| |#3|) 138)) (-2983 (((-3 |#3| "failed") |#3|) 103)) (-1734 ((|#3| |#3|) 126)) (-3085 (((-3 |#3| "failed") |#3|) 76)) (-1850 ((|#3| |#3|) 136)) (-2964 (((-3 |#3| "failed") |#3|) 60)) (-1709 ((|#3| |#3|) 124)) (-3066 (((-3 |#3| "failed") |#3|) 106)) (-1828 ((|#3| |#3|) 134)) (-2944 (((-3 |#3| "failed") |#3|) 97)) (-1679 ((|#3| |#3|) 122)) (** ((|#3| |#3| (-407 (-563))) 40 (|has| |#1| (-363)))))
+(((-279 |#1| |#2| |#3| |#4|) (-13 (-979 |#3|) (-10 -7 (IF (|has| |#1| (-363)) (-15 ** (|#3| |#3| (-407 (-563)))) |%noBranch|) (-15 -3372 (|#3| |#3|)) (-15 -4372 (|#3| |#3|)) (-15 -1596 (|#3| |#3|)) (-15 -1607 (|#3| |#3|)) (-15 -1618 (|#3| |#3|)) (-15 -1629 (|#3| |#3|)) (-15 -1642 (|#3| |#3|)) (-15 -1655 (|#3| |#3|)) (-15 -1666 (|#3| |#3|)) (-15 -1679 (|#3| |#3|)) (-15 -1694 (|#3| |#3|)) (-15 -1709 (|#3| |#3|)) (-15 -1721 (|#3| |#3|)) (-15 -1734 (|#3| |#3|)) (-15 -1747 (|#3| |#3|)) (-15 -1758 (|#3| |#3|)) (-15 -1770 (|#3| |#3|)) (-15 -1783 (|#3| |#3|)) (-15 -1793 (|#3| |#3|)) (-15 -1805 (|#3| |#3|)) (-15 -1816 (|#3| |#3|)) (-15 -1828 (|#3| |#3|)) (-15 -1839 (|#3| |#3|)) (-15 -1850 (|#3| |#3|)) (-15 -1861 (|#3| |#3|)) (-15 -1311 (|#3| |#3|)))) (-38 (-407 (-563))) (-1217 |#1|) (-1240 |#1| |#2|) (-979 |#2|)) (T -279))
+((** (*1 *2 *2 *3) (-12 (-5 *3 (-407 (-563))) (-4 *4 (-363)) (-4 *4 (-38 *3)) (-4 *5 (-1217 *4)) (-5 *1 (-279 *4 *5 *2 *6)) (-4 *2 (-1240 *4 *5)) (-4 *6 (-979 *5)))) (-3372 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-4372 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1596 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1607 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1618 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1629 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1642 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1655 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1666 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1679 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1694 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1709 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1721 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1734 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1747 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1758 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1770 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1783 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1793 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1805 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1816 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1828 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1839 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1850 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1861 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))) (-1311 (*1 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *4 (-1217 *3)) (-5 *1 (-279 *3 *4 *2 *5)) (-4 *2 (-1240 *3 *4)) (-4 *5 (-979 *4)))))
+(-13 (-979 |#3|) (-10 -7 (IF (|has| |#1| (-363)) (-15 ** (|#3| |#3| (-407 (-563)))) |%noBranch|) (-15 -3372 (|#3| |#3|)) (-15 -4372 (|#3| |#3|)) (-15 -1596 (|#3| |#3|)) (-15 -1607 (|#3| |#3|)) (-15 -1618 (|#3| |#3|)) (-15 -1629 (|#3| |#3|)) (-15 -1642 (|#3| |#3|)) (-15 -1655 (|#3| |#3|)) (-15 -1666 (|#3| |#3|)) (-15 -1679 (|#3| |#3|)) (-15 -1694 (|#3| |#3|)) (-15 -1709 (|#3| |#3|)) (-15 -1721 (|#3| |#3|)) (-15 -1734 (|#3| |#3|)) (-15 -1747 (|#3| |#3|)) (-15 -1758 (|#3| |#3|)) (-15 -1770 (|#3| |#3|)) (-15 -1783 (|#3| |#3|)) (-15 -1793 (|#3| |#3|)) (-15 -1805 (|#3| |#3|)) (-15 -1816 (|#3| |#3|)) (-15 -1828 (|#3| |#3|)) (-15 -1839 (|#3| |#3|)) (-15 -1850 (|#3| |#3|)) (-15 -1861 (|#3| |#3|)) (-15 -1311 (|#3| |#3|))))
+((-4211 (((-112) $) 18)) (-3722 (((-183) $) 7)) (-3478 (((-3 (-1169) "failed") $) 14)) (-3468 (((-3 (-640 $) "failed") $) NIL)) (-3655 (((-3 (-1169) "failed") $) 20)) (-3666 (((-3 (-1097) "failed") $) 17)) (-3904 (((-112) $) 15)) (-1692 (((-858) $) NIL)) (-3644 (((-112) $) 9)))
+(((-280) (-13 (-610 (-858)) (-10 -8 (-15 -3722 ((-183) $)) (-15 -3904 ((-112) $)) (-15 -3666 ((-3 (-1097) "failed") $)) (-15 -4211 ((-112) $)) (-15 -3655 ((-3 (-1169) "failed") $)) (-15 -3644 ((-112) $)) (-15 -3478 ((-3 (-1169) "failed") $)) (-15 -3468 ((-3 (-640 $) "failed") $))))) (T -280))
+((-3722 (*1 *2 *1) (-12 (-5 *2 (-183)) (-5 *1 (-280)))) (-3904 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-280)))) (-3666 (*1 *2 *1) (|partial| -12 (-5 *2 (-1097)) (-5 *1 (-280)))) (-4211 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-280)))) (-3655 (*1 *2 *1) (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-280)))) (-3644 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-280)))) (-3478 (*1 *2 *1) (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-280)))) (-3468 (*1 *2 *1) (|partial| -12 (-5 *2 (-640 (-280))) (-5 *1 (-280)))))
+(-13 (-610 (-858)) (-10 -8 (-15 -3722 ((-183) $)) (-15 -3904 ((-112) $)) (-15 -3666 ((-3 (-1097) "failed") $)) (-15 -4211 ((-112) $)) (-15 -3655 ((-3 (-1169) "failed") $)) (-15 -3644 ((-112) $)) (-15 -3478 ((-3 (-1169) "failed") $)) (-15 -3468 ((-3 (-640 $) "failed") $))))
+((-2255 (($ (-1 (-112) |#2|) $) 24)) (-3814 (($ $) 36)) (-1691 (($ (-1 (-112) |#2|) $) NIL) (($ |#2| $) 34)) (-1459 (($ |#2| $) 32) (($ (-1 (-112) |#2|) $) 18)) (-4265 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 40)) (-3399 (($ |#2| $ (-563)) 20) (($ $ $ (-563)) 22)) (-2967 (($ $ (-563)) 11) (($ $ (-1224 (-563))) 14)) (-1941 (($ $ |#2|) 30) (($ $ $) NIL)) (-2857 (($ $ |#2|) 29) (($ |#2| $) NIL) (($ $ $) 26) (($ (-640 $)) NIL)))
+(((-281 |#1| |#2|) (-10 -8 (-15 -4265 (|#1| |#1| |#1|)) (-15 -1691 (|#1| |#2| |#1|)) (-15 -4265 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1691 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1941 (|#1| |#1| |#1|)) (-15 -1941 (|#1| |#1| |#2|)) (-15 -3399 (|#1| |#1| |#1| (-563))) (-15 -3399 (|#1| |#2| |#1| (-563))) (-15 -2967 (|#1| |#1| (-1224 (-563)))) (-15 -2967 (|#1| |#1| (-563))) (-15 -2857 (|#1| (-640 |#1|))) (-15 -2857 (|#1| |#1| |#1|)) (-15 -2857 (|#1| |#2| |#1|)) (-15 -2857 (|#1| |#1| |#2|)) (-15 -1459 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2255 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1459 (|#1| |#2| |#1|)) (-15 -3814 (|#1| |#1|))) (-282 |#2|) (-1208)) (T -281))
+NIL
+(-10 -8 (-15 -4265 (|#1| |#1| |#1|)) (-15 -1691 (|#1| |#2| |#1|)) (-15 -4265 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1691 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1941 (|#1| |#1| |#1|)) (-15 -1941 (|#1| |#1| |#2|)) (-15 -3399 (|#1| |#1| |#1| (-563))) (-15 -3399 (|#1| |#2| |#1| (-563))) (-15 -2967 (|#1| |#1| (-1224 (-563)))) (-15 -2967 (|#1| |#1| (-563))) (-15 -2857 (|#1| (-640 |#1|))) (-15 -2857 (|#1| |#1| |#1|)) (-15 -2857 (|#1| |#2| |#1|)) (-15 -2857 (|#1| |#1| |#2|)) (-15 -1459 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2255 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1459 (|#1| |#2| |#1|)) (-15 -3814 (|#1| |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2208 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) 8)) (-1849 ((|#1| $ (-563) |#1|) 52 (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) 58 (|has| $ (-6 -4409)))) (-3678 (($ (-1 (-112) |#1|) $) 85)) (-2255 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4408)))) (-2569 (($) 7 T CONST)) (-4194 (($ $) 83 (|has| |#1| (-1093)))) (-3814 (($ $) 78 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1691 (($ (-1 (-112) |#1|) $) 89) (($ |#1| $) 84 (|has| |#1| (-1093)))) (-1459 (($ |#1| $) 77 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4408)))) (-4356 ((|#1| $ (-563) |#1|) 53 (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) 51)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-1565 (($ (-767) |#1|) 69)) (-2514 (((-112) $ (-767)) 9)) (-2236 (((-563) $) 43 (|has| (-563) (-846)))) (-4265 (($ (-1 (-112) |#1| |#1|) $ $) 86) (($ $ $) 82 (|has| |#1| (-846)))) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-2251 (((-563) $) 44 (|has| (-563) (-846)))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-3867 (($ |#1| $ (-563)) 88) (($ $ $ (-563)) 87)) (-3399 (($ |#1| $ (-563)) 60) (($ $ $ (-563)) 59)) (-2272 (((-640 (-563)) $) 46)) (-2282 (((-112) (-563) $) 47)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3782 ((|#1| $) 42 (|has| (-563) (-846)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2221 (($ $ |#1|) 41 (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) 48)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ (-563) |#1|) 50) ((|#1| $ (-563)) 49) (($ $ (-1224 (-563))) 63)) (-3690 (($ $ (-563)) 91) (($ $ (-1224 (-563))) 90)) (-2967 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-2219 (((-536) $) 79 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 70)) (-1941 (($ $ |#1|) 93) (($ $ $) 92)) (-2857 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-282 |#1|) (-140) (-1208)) (T -282))
-((-3245 (*1 *1 *1 *2) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)))) (-3245 (*1 *1 *1 *1) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)))) (-1314 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-282 *3)) (-4 *3 (-1208)))) (-1314 (*1 *1 *1 *2) (-12 (-5 *2 (-1224 (-563))) (-4 *1 (-282 *3)) (-4 *3 (-1208)))) (-2705 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-282 *3)) (-4 *3 (-1208)))) (-1812 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-282 *2)) (-4 *2 (-1208)))) (-1812 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-282 *3)) (-4 *3 (-1208)))) (-2878 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-282 *3)) (-4 *3 (-1208)))) (-2812 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-282 *3)) (-4 *3 (-1208)))) (-2705 (*1 *1 *2 *1) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)) (-4 *2 (-1093)))) (-4005 (*1 *1 *1) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)) (-4 *2 (-1093)))) (-2878 (*1 *1 *1 *1) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)) (-4 *2 (-846)))))
-(-13 (-646 |t#1|) (-10 -8 (-6 -4408) (-15 -3245 ($ $ |t#1|)) (-15 -3245 ($ $ $)) (-15 -1314 ($ $ (-563))) (-15 -1314 ($ $ (-1224 (-563)))) (-15 -2705 ($ (-1 (-112) |t#1|) $)) (-15 -1812 ($ |t#1| $ (-563))) (-15 -1812 ($ $ $ (-563))) (-15 -2878 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -2812 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1093)) (PROGN (-15 -2705 ($ |t#1| $)) (-15 -4005 ($ $))) |%noBranch|) (IF (|has| |t#1| (-846)) (-15 -2878 ($ $ $)) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-1941 (*1 *1 *1 *2) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)))) (-1941 (*1 *1 *1 *1) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)))) (-3690 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-282 *3)) (-4 *3 (-1208)))) (-3690 (*1 *1 *1 *2) (-12 (-5 *2 (-1224 (-563))) (-4 *1 (-282 *3)) (-4 *3 (-1208)))) (-1691 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-282 *3)) (-4 *3 (-1208)))) (-3867 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-282 *2)) (-4 *2 (-1208)))) (-3867 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-282 *3)) (-4 *3 (-1208)))) (-4265 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-282 *3)) (-4 *3 (-1208)))) (-3678 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-282 *3)) (-4 *3 (-1208)))) (-1691 (*1 *1 *2 *1) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)) (-4 *2 (-1093)))) (-4194 (*1 *1 *1) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)) (-4 *2 (-1093)))) (-4265 (*1 *1 *1 *1) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)) (-4 *2 (-846)))))
+(-13 (-646 |t#1|) (-10 -8 (-6 -4409) (-15 -1941 ($ $ |t#1|)) (-15 -1941 ($ $ $)) (-15 -3690 ($ $ (-563))) (-15 -3690 ($ $ (-1224 (-563)))) (-15 -1691 ($ (-1 (-112) |t#1|) $)) (-15 -3867 ($ |t#1| $ (-563))) (-15 -3867 ($ $ $ (-563))) (-15 -4265 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -3678 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1093)) (PROGN (-15 -1691 ($ |t#1| $)) (-15 -4194 ($ $))) |%noBranch|) (IF (|has| |t#1| (-846)) (-15 -4265 ($ $ $)) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
((** (($ $ $) 10)))
(((-283 |#1|) (-10 -8 (-15 ** (|#1| |#1| |#1|))) (-284)) (T -283))
NIL
(-10 -8 (-15 ** (|#1| |#1| |#1|)))
-((-4371 (($ $) 6)) (-3368 (($ $) 7)) (** (($ $ $) 8)))
+((-4372 (($ $) 6)) (-3372 (($ $) 7)) (** (($ $ $) 8)))
(((-284) (-140)) (T -284))
-((** (*1 *1 *1 *1) (-4 *1 (-284))) (-3368 (*1 *1 *1) (-4 *1 (-284))) (-4371 (*1 *1 *1) (-4 *1 (-284))))
-(-13 (-10 -8 (-15 -4371 ($ $)) (-15 -3368 ($ $)) (-15 ** ($ $ $))))
-((-3768 (((-640 (-1149 |#1|)) (-1149 |#1|) |#1|) 35)) (-2676 ((|#2| |#2| |#1|) 38)) (-3440 ((|#2| |#2| |#1|) 40)) (-1800 ((|#2| |#2| |#1|) 39)))
-(((-285 |#1| |#2|) (-10 -7 (-15 -2676 (|#2| |#2| |#1|)) (-15 -1800 (|#2| |#2| |#1|)) (-15 -3440 (|#2| |#2| |#1|)) (-15 -3768 ((-640 (-1149 |#1|)) (-1149 |#1|) |#1|))) (-363) (-1248 |#1|)) (T -285))
-((-3768 (*1 *2 *3 *4) (-12 (-4 *4 (-363)) (-5 *2 (-640 (-1149 *4))) (-5 *1 (-285 *4 *5)) (-5 *3 (-1149 *4)) (-4 *5 (-1248 *4)))) (-3440 (*1 *2 *2 *3) (-12 (-4 *3 (-363)) (-5 *1 (-285 *3 *2)) (-4 *2 (-1248 *3)))) (-1800 (*1 *2 *2 *3) (-12 (-4 *3 (-363)) (-5 *1 (-285 *3 *2)) (-4 *2 (-1248 *3)))) (-2676 (*1 *2 *2 *3) (-12 (-4 *3 (-363)) (-5 *1 (-285 *3 *2)) (-4 *2 (-1248 *3)))))
-(-10 -7 (-15 -2676 (|#2| |#2| |#1|)) (-15 -1800 (|#2| |#2| |#1|)) (-15 -3440 (|#2| |#2| |#1|)) (-15 -3768 ((-640 (-1149 |#1|)) (-1149 |#1|) |#1|)))
-((-2309 ((|#2| $ |#1|) 6)))
+((** (*1 *1 *1 *1) (-4 *1 (-284))) (-3372 (*1 *1 *1) (-4 *1 (-284))) (-4372 (*1 *1 *1) (-4 *1 (-284))))
+(-13 (-10 -8 (-15 -4372 ($ $)) (-15 -3372 ($ $)) (-15 ** ($ $ $))))
+((-3730 (((-640 (-1149 |#1|)) (-1149 |#1|) |#1|) 35)) (-3704 ((|#2| |#2| |#1|) 38)) (-3717 ((|#2| |#2| |#1|) 40)) (-1800 ((|#2| |#2| |#1|) 39)))
+(((-285 |#1| |#2|) (-10 -7 (-15 -3704 (|#2| |#2| |#1|)) (-15 -1800 (|#2| |#2| |#1|)) (-15 -3717 (|#2| |#2| |#1|)) (-15 -3730 ((-640 (-1149 |#1|)) (-1149 |#1|) |#1|))) (-363) (-1248 |#1|)) (T -285))
+((-3730 (*1 *2 *3 *4) (-12 (-4 *4 (-363)) (-5 *2 (-640 (-1149 *4))) (-5 *1 (-285 *4 *5)) (-5 *3 (-1149 *4)) (-4 *5 (-1248 *4)))) (-3717 (*1 *2 *2 *3) (-12 (-4 *3 (-363)) (-5 *1 (-285 *3 *2)) (-4 *2 (-1248 *3)))) (-1800 (*1 *2 *2 *3) (-12 (-4 *3 (-363)) (-5 *1 (-285 *3 *2)) (-4 *2 (-1248 *3)))) (-3704 (*1 *2 *2 *3) (-12 (-4 *3 (-363)) (-5 *1 (-285 *3 *2)) (-4 *2 (-1248 *3)))))
+(-10 -7 (-15 -3704 (|#2| |#2| |#1|)) (-15 -1800 (|#2| |#2| |#1|)) (-15 -3717 (|#2| |#2| |#1|)) (-15 -3730 ((-640 (-1149 |#1|)) (-1149 |#1|) |#1|)))
+((-2308 ((|#2| $ |#1|) 6)))
(((-286 |#1| |#2|) (-140) (-1093) (-1208)) (T -286))
-((-2309 (*1 *2 *1 *3) (-12 (-4 *1 (-286 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1208)))))
-(-13 (-10 -8 (-15 -2309 (|t#2| $ |t#1|))))
-((-4355 ((|#3| $ |#2| |#3|) 12)) (-4293 ((|#3| $ |#2|) 10)))
-(((-287 |#1| |#2| |#3|) (-10 -8 (-15 -4355 (|#3| |#1| |#2| |#3|)) (-15 -4293 (|#3| |#1| |#2|))) (-288 |#2| |#3|) (-1093) (-1208)) (T -287))
+((-2308 (*1 *2 *1 *3) (-12 (-4 *1 (-286 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1208)))))
+(-13 (-10 -8 (-15 -2308 (|t#2| $ |t#1|))))
+((-4356 ((|#3| $ |#2| |#3|) 12)) (-4293 ((|#3| $ |#2|) 10)))
+(((-287 |#1| |#2| |#3|) (-10 -8 (-15 -4356 (|#3| |#1| |#2| |#3|)) (-15 -4293 (|#3| |#1| |#2|))) (-288 |#2| |#3|) (-1093) (-1208)) (T -287))
NIL
-(-10 -8 (-15 -4355 (|#3| |#1| |#2| |#3|)) (-15 -4293 (|#3| |#1| |#2|)))
-((-1849 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4408)))) (-4355 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4408)))) (-4293 ((|#2| $ |#1|) 11)) (-2309 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
+(-10 -8 (-15 -4356 (|#3| |#1| |#2| |#3|)) (-15 -4293 (|#3| |#1| |#2|)))
+((-1849 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4409)))) (-4356 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4409)))) (-4293 ((|#2| $ |#1|) 11)) (-2308 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
(((-288 |#1| |#2|) (-140) (-1093) (-1208)) (T -288))
-((-2309 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-288 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1208)))) (-4293 (*1 *2 *1 *3) (-12 (-4 *1 (-288 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1208)))) (-1849 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-288 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1208)))) (-4355 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-288 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1208)))))
-(-13 (-286 |t#1| |t#2|) (-10 -8 (-15 -2309 (|t#2| $ |t#1| |t#2|)) (-15 -4293 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4408)) (PROGN (-15 -1849 (|t#2| $ |t#1| |t#2|)) (-15 -4355 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
+((-2308 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-288 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1208)))) (-4293 (*1 *2 *1 *3) (-12 (-4 *1 (-288 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1208)))) (-1849 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-288 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1208)))) (-4356 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-288 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1208)))))
+(-13 (-286 |t#1| |t#2|) (-10 -8 (-15 -2308 (|t#2| $ |t#1| |t#2|)) (-15 -4293 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4409)) (PROGN (-15 -1849 (|t#2| $ |t#1| |t#2|)) (-15 -4356 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
(((-286 |#1| |#2|) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 34)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 39)) (-4223 (($ $) 37)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-1919 (((-112) $ $) NIL)) (-4239 (($) NIL T CONST)) (-3090 (($ $ $) 32)) (-2444 (($ |#2| |#3|) 19)) (-3400 (((-3 $ "failed") $) NIL)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-3827 (((-112) $) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2995 ((|#3| $) NIL)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 20)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4322 (((-3 $ "failed") $ $) NIL)) (-2628 (((-767) $) 33)) (-2309 ((|#2| $ |#2|) 41)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 24)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-1675 (((-767)) NIL)) (-2126 (((-112) $ $) NIL)) (-2241 (($) 28 T CONST)) (-2254 (($) 35 T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 36)))
-(((-289 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-307) (-10 -8 (-15 -2995 (|#3| $)) (-15 -1693 (|#2| $)) (-15 -2444 ($ |#2| |#3|)) (-15 -4322 ((-3 $ "failed") $ $)) (-15 -3400 ((-3 $ "failed") $)) (-15 -2688 ($ $)) (-15 -2309 (|#2| $ |#2|)))) (-172) (-1233 |#1|) (-23) (-1 |#2| |#2| |#3|) (-1 (-3 |#3| "failed") |#3| |#3|) (-1 (-3 |#2| "failed") |#2| |#2| |#3|)) (T -289))
-((-3400 (*1 *1 *1) (|partial| -12 (-4 *2 (-172)) (-5 *1 (-289 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1233 *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)))) (-2995 (*1 *2 *1) (-12 (-4 *3 (-172)) (-4 *2 (-23)) (-5 *1 (-289 *3 *4 *2 *5 *6 *7)) (-4 *4 (-1233 *3)) (-14 *5 (-1 *4 *4 *2)) (-14 *6 (-1 (-3 *2 "failed") *2 *2)) (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2)))) (-1693 (*1 *2 *1) (-12 (-4 *2 (-1233 *3)) (-5 *1 (-289 *3 *2 *4 *5 *6 *7)) (-4 *3 (-172)) (-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)))) (-2444 (*1 *1 *2 *3) (-12 (-4 *4 (-172)) (-5 *1 (-289 *4 *2 *3 *5 *6 *7)) (-4 *2 (-1233 *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)))) (-4322 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-172)) (-5 *1 (-289 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1233 *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)))) (-2688 (*1 *1 *1) (-12 (-4 *2 (-172)) (-5 *1 (-289 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1233 *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)))) (-2309 (*1 *2 *1 *2) (-12 (-4 *3 (-172)) (-5 *1 (-289 *3 *2 *4 *5 *6 *7)) (-4 *2 (-1233 *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 (-307) (-10 -8 (-15 -2995 (|#3| $)) (-15 -1693 (|#2| $)) (-15 -2444 ($ |#2| |#3|)) (-15 -4322 ((-3 $ "failed") $ $)) (-15 -3400 ((-3 $ "failed") $)) (-15 -2688 ($ $)) (-15 -2309 (|#2| $ |#2|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ (-563)) 29)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 33)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 39)) (-3231 (($ $) 36)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2003 (((-112) $ $) NIL)) (-2569 (($) NIL T CONST)) (-3094 (($ $ $) 31)) (-2444 (($ |#2| |#3|) 18)) (-3951 (((-3 $ "failed") $) NIL)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-3401 (((-112) $) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3593 ((|#3| $) NIL)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 19)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3322 (((-3 $ "failed") $ $) NIL)) (-1993 (((-767) $) 32)) (-2308 ((|#2| $ |#2|) 41)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 23)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-3914 (((-767)) NIL)) (-3223 (((-112) $ $) NIL)) (-2239 (($) 27 T CONST)) (-2253 (($) 34 T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 35)))
+(((-289 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-307) (-10 -8 (-15 -3593 (|#3| $)) (-15 -1692 (|#2| $)) (-15 -2444 ($ |#2| |#3|)) (-15 -3322 ((-3 $ "failed") $ $)) (-15 -3951 ((-3 $ "failed") $)) (-15 -2687 ($ $)) (-15 -2308 (|#2| $ |#2|)))) (-172) (-1233 |#1|) (-23) (-1 |#2| |#2| |#3|) (-1 (-3 |#3| "failed") |#3| |#3|) (-1 (-3 |#2| "failed") |#2| |#2| |#3|)) (T -289))
+((-3951 (*1 *1 *1) (|partial| -12 (-4 *2 (-172)) (-5 *1 (-289 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1233 *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)))) (-3593 (*1 *2 *1) (-12 (-4 *3 (-172)) (-4 *2 (-23)) (-5 *1 (-289 *3 *4 *2 *5 *6 *7)) (-4 *4 (-1233 *3)) (-14 *5 (-1 *4 *4 *2)) (-14 *6 (-1 (-3 *2 "failed") *2 *2)) (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2)))) (-1692 (*1 *2 *1) (-12 (-4 *2 (-1233 *3)) (-5 *1 (-289 *3 *2 *4 *5 *6 *7)) (-4 *3 (-172)) (-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)))) (-2444 (*1 *1 *2 *3) (-12 (-4 *4 (-172)) (-5 *1 (-289 *4 *2 *3 *5 *6 *7)) (-4 *2 (-1233 *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)))) (-3322 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-172)) (-5 *1 (-289 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1233 *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)))) (-2687 (*1 *1 *1) (-12 (-4 *2 (-172)) (-5 *1 (-289 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1233 *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)))) (-2308 (*1 *2 *1 *2) (-12 (-4 *3 (-172)) (-5 *1 (-289 *3 *2 *4 *5 *6 *7)) (-4 *2 (-1233 *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 (-307) (-10 -8 (-15 -3593 (|#3| $)) (-15 -1692 (|#2| $)) (-15 -2444 ($ |#2| |#3|)) (-15 -3322 ((-3 $ "failed") $ $)) (-15 -3951 ((-3 $ "failed") $)) (-15 -2687 ($ $)) (-15 -2308 (|#2| $ |#2|))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ (-563)) 29)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-290) (-140)) (T -290))
NIL
-(-13 (-1045) (-111 $ $) (-10 -7 (-6 -4400)))
+(-13 (-1045) (-111 $ $) (-10 -7 (-6 -4401)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-613 (-563)) . T) ((-610 (-858)) . T) ((-643 $) . T) ((-722) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-4214 (($ (-1169) (-1169) (-1097) $) 17)) (-1673 (($ (-1169) (-640 (-961)) $) 22)) (-1827 (((-640 (-1078)) $) 10)) (-3550 (((-3 (-1097) "failed") (-1169) (-1169) $) 16)) (-2107 (((-3 (-640 (-961)) "failed") (-1169) $) 21)) (-3135 (($) 7)) (-2576 (($) 23)) (-1693 (((-858) $) 27)) (-4231 (($) 24)))
-(((-291) (-13 (-610 (-858)) (-10 -8 (-15 -3135 ($)) (-15 -1827 ((-640 (-1078)) $)) (-15 -3550 ((-3 (-1097) "failed") (-1169) (-1169) $)) (-15 -4214 ($ (-1169) (-1169) (-1097) $)) (-15 -2107 ((-3 (-640 (-961)) "failed") (-1169) $)) (-15 -1673 ($ (-1169) (-640 (-961)) $)) (-15 -2576 ($)) (-15 -4231 ($))))) (T -291))
-((-3135 (*1 *1) (-5 *1 (-291))) (-1827 (*1 *2 *1) (-12 (-5 *2 (-640 (-1078))) (-5 *1 (-291)))) (-3550 (*1 *2 *3 *3 *1) (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-1097)) (-5 *1 (-291)))) (-4214 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-1169)) (-5 *3 (-1097)) (-5 *1 (-291)))) (-2107 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-640 (-961))) (-5 *1 (-291)))) (-1673 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-961))) (-5 *1 (-291)))) (-2576 (*1 *1) (-5 *1 (-291))) (-4231 (*1 *1) (-5 *1 (-291))))
-(-13 (-610 (-858)) (-10 -8 (-15 -3135 ($)) (-15 -1827 ((-640 (-1078)) $)) (-15 -3550 ((-3 (-1097) "failed") (-1169) (-1169) $)) (-15 -4214 ($ (-1169) (-1169) (-1097) $)) (-15 -2107 ((-3 (-640 (-961)) "failed") (-1169) $)) (-15 -1673 ($ (-1169) (-640 (-961)) $)) (-15 -2576 ($)) (-15 -4231 ($))))
-((-2125 (((-640 (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |geneigvec| (-640 (-684 (-407 (-948 |#1|))))))) (-684 (-407 (-948 |#1|)))) 85)) (-3986 (((-640 (-684 (-407 (-948 |#1|)))) (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 (-684 (-407 (-948 |#1|)))))) (-684 (-407 (-948 |#1|)))) 80) (((-640 (-684 (-407 (-948 |#1|)))) (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|))) (-684 (-407 (-948 |#1|))) (-767) (-767)) 38)) (-3575 (((-640 (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 (-684 (-407 (-948 |#1|))))))) (-684 (-407 (-948 |#1|)))) 82)) (-2501 (((-640 (-684 (-407 (-948 |#1|)))) (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|))) (-684 (-407 (-948 |#1|)))) 62)) (-3241 (((-640 (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (-684 (-407 (-948 |#1|)))) 61)) (-3421 (((-948 |#1|) (-684 (-407 (-948 |#1|)))) 50) (((-948 |#1|) (-684 (-407 (-948 |#1|))) (-1169)) 51)))
-(((-292 |#1|) (-10 -7 (-15 -3421 ((-948 |#1|) (-684 (-407 (-948 |#1|))) (-1169))) (-15 -3421 ((-948 |#1|) (-684 (-407 (-948 |#1|))))) (-15 -3241 ((-640 (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (-684 (-407 (-948 |#1|))))) (-15 -2501 ((-640 (-684 (-407 (-948 |#1|)))) (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|))) (-684 (-407 (-948 |#1|))))) (-15 -3986 ((-640 (-684 (-407 (-948 |#1|)))) (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|))) (-684 (-407 (-948 |#1|))) (-767) (-767))) (-15 -3986 ((-640 (-684 (-407 (-948 |#1|)))) (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 (-684 (-407 (-948 |#1|)))))) (-684 (-407 (-948 |#1|))))) (-15 -2125 ((-640 (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |geneigvec| (-640 (-684 (-407 (-948 |#1|))))))) (-684 (-407 (-948 |#1|))))) (-15 -3575 ((-640 (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 (-684 (-407 (-948 |#1|))))))) (-684 (-407 (-948 |#1|)))))) (-452)) (T -292))
-((-3575 (*1 *2 *3) (-12 (-4 *4 (-452)) (-5 *2 (-640 (-2 (|:| |eigval| (-3 (-407 (-948 *4)) (-1158 (-1169) (-948 *4)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 (-684 (-407 (-948 *4)))))))) (-5 *1 (-292 *4)) (-5 *3 (-684 (-407 (-948 *4)))))) (-2125 (*1 *2 *3) (-12 (-4 *4 (-452)) (-5 *2 (-640 (-2 (|:| |eigval| (-3 (-407 (-948 *4)) (-1158 (-1169) (-948 *4)))) (|:| |geneigvec| (-640 (-684 (-407 (-948 *4)))))))) (-5 *1 (-292 *4)) (-5 *3 (-684 (-407 (-948 *4)))))) (-3986 (*1 *2 *3 *4) (-12 (-5 *3 (-2 (|:| |eigval| (-3 (-407 (-948 *5)) (-1158 (-1169) (-948 *5)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 *4)))) (-4 *5 (-452)) (-5 *2 (-640 (-684 (-407 (-948 *5))))) (-5 *1 (-292 *5)) (-5 *4 (-684 (-407 (-948 *5)))))) (-3986 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-3 (-407 (-948 *6)) (-1158 (-1169) (-948 *6)))) (-5 *5 (-767)) (-4 *6 (-452)) (-5 *2 (-640 (-684 (-407 (-948 *6))))) (-5 *1 (-292 *6)) (-5 *4 (-684 (-407 (-948 *6)))))) (-2501 (*1 *2 *3 *4) (-12 (-5 *3 (-3 (-407 (-948 *5)) (-1158 (-1169) (-948 *5)))) (-4 *5 (-452)) (-5 *2 (-640 (-684 (-407 (-948 *5))))) (-5 *1 (-292 *5)) (-5 *4 (-684 (-407 (-948 *5)))))) (-3241 (*1 *2 *3) (-12 (-5 *3 (-684 (-407 (-948 *4)))) (-4 *4 (-452)) (-5 *2 (-640 (-3 (-407 (-948 *4)) (-1158 (-1169) (-948 *4))))) (-5 *1 (-292 *4)))) (-3421 (*1 *2 *3) (-12 (-5 *3 (-684 (-407 (-948 *4)))) (-5 *2 (-948 *4)) (-5 *1 (-292 *4)) (-4 *4 (-452)))) (-3421 (*1 *2 *3 *4) (-12 (-5 *3 (-684 (-407 (-948 *5)))) (-5 *4 (-1169)) (-5 *2 (-948 *5)) (-5 *1 (-292 *5)) (-4 *5 (-452)))))
-(-10 -7 (-15 -3421 ((-948 |#1|) (-684 (-407 (-948 |#1|))) (-1169))) (-15 -3421 ((-948 |#1|) (-684 (-407 (-948 |#1|))))) (-15 -3241 ((-640 (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (-684 (-407 (-948 |#1|))))) (-15 -2501 ((-640 (-684 (-407 (-948 |#1|)))) (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|))) (-684 (-407 (-948 |#1|))))) (-15 -3986 ((-640 (-684 (-407 (-948 |#1|)))) (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|))) (-684 (-407 (-948 |#1|))) (-767) (-767))) (-15 -3986 ((-640 (-684 (-407 (-948 |#1|)))) (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 (-684 (-407 (-948 |#1|)))))) (-684 (-407 (-948 |#1|))))) (-15 -2125 ((-640 (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |geneigvec| (-640 (-684 (-407 (-948 |#1|))))))) (-684 (-407 (-948 |#1|))))) (-15 -3575 ((-640 (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 (-684 (-407 (-948 |#1|))))))) (-684 (-407 (-948 |#1|))))))
-((-2240 (((-294 |#2|) (-1 |#2| |#1|) (-294 |#1|)) 14)))
-(((-293 |#1| |#2|) (-10 -7 (-15 -2240 ((-294 |#2|) (-1 |#2| |#1|) (-294 |#1|)))) (-1208) (-1208)) (T -293))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-294 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-294 *6)) (-5 *1 (-293 *5 *6)))))
-(-10 -7 (-15 -2240 ((-294 |#2|) (-1 |#2| |#1|) (-294 |#1|))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3411 (((-112) $) NIL (|has| |#1| (-21)))) (-1536 (($ $) 12)) (-1495 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-4132 (($ $ $) 94 (|has| |#1| (-302)))) (-4239 (($) NIL (-4032 (|has| |#1| (-21)) (|has| |#1| (-722))) CONST)) (-2400 (($ $) 50 (|has| |#1| (-21)))) (-3215 (((-3 $ "failed") $) 61 (|has| |#1| (-722)))) (-2351 ((|#1| $) 11)) (-3400 (((-3 $ "failed") $) 59 (|has| |#1| (-722)))) (-3827 (((-112) $) NIL (|has| |#1| (-722)))) (-2240 (($ (-1 |#1| |#1|) $) 14)) (-2340 ((|#1| $) 10)) (-1963 (($ $) 49 (|has| |#1| (-21)))) (-4357 (((-3 $ "failed") $) 60 (|has| |#1| (-722)))) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2688 (($ $) 63 (-4032 (|has| |#1| (-363)) (|has| |#1| (-473))))) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3710 (((-640 $) $) 84 (|has| |#1| (-555)))) (-1540 (($ $ $) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 $)) 28 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-1169) |#1|) 17 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) 21 (|has| |#1| (-514 (-1169) |#1|)))) (-2378 (($ |#1| |#1|) 9)) (-3533 (((-134)) 89 (|has| |#1| (-363)))) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) 86 (|has| |#1| (-896 (-1169))))) (-4339 (($ $ $) NIL (|has| |#1| (-473)))) (-2146 (($ $ $) NIL (|has| |#1| (-473)))) (-1693 (($ (-563)) NIL (|has| |#1| (-1045))) (((-112) $) 36 (|has| |#1| (-1093))) (((-858) $) 35 (|has| |#1| (-1093)))) (-1675 (((-767)) 66 (|has| |#1| (-1045)))) (-2241 (($) 46 (|has| |#1| (-21)) CONST)) (-2254 (($) 56 (|has| |#1| (-722)) CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169))))) (-1718 (($ |#1| |#1|) 8) (((-112) $ $) 31 (|has| |#1| (-1093)))) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) 91 (-4032 (|has| |#1| (-363)) (|has| |#1| (-473))))) (-1826 (($ |#1| $) 44 (|has| |#1| (-21))) (($ $ |#1|) 45 (|has| |#1| (-21))) (($ $ $) 43 (|has| |#1| (-21))) (($ $) 42 (|has| |#1| (-21)))) (-1814 (($ |#1| $) 39 (|has| |#1| (-25))) (($ $ |#1|) 40 (|has| |#1| (-25))) (($ $ $) 38 (|has| |#1| (-25)))) (** (($ $ (-563)) NIL (|has| |#1| (-473))) (($ $ (-767)) NIL (|has| |#1| (-722))) (($ $ (-917)) NIL (|has| |#1| (-1105)))) (* (($ $ |#1|) 54 (|has| |#1| (-1105))) (($ |#1| $) 53 (|has| |#1| (-1105))) (($ $ $) 52 (|has| |#1| (-1105))) (($ (-563) $) 69 (|has| |#1| (-21))) (($ (-767) $) NIL (|has| |#1| (-21))) (($ (-917) $) NIL (|has| |#1| (-25)))))
-(((-294 |#1|) (-13 (-1208) (-10 -8 (-15 -1718 ($ |#1| |#1|)) (-15 -2378 ($ |#1| |#1|)) (-15 -1536 ($ $)) (-15 -2340 (|#1| $)) (-15 -2351 (|#1| $)) (-15 -2240 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-514 (-1169) |#1|)) (-6 (-514 (-1169) |#1|)) |%noBranch|) (IF (|has| |#1| (-1093)) (PROGN (-6 (-1093)) (-6 (-610 (-112))) (IF (|has| |#1| (-309 |#1|)) (PROGN (-15 -1540 ($ $ $)) (-15 -1540 ($ $ (-640 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -1814 ($ |#1| $)) (-15 -1814 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -1963 ($ $)) (-15 -2400 ($ $)) (-15 -1826 ($ |#1| $)) (-15 -1826 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1105)) (PROGN (-6 (-1105)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-722)) (PROGN (-6 (-722)) (-15 -4357 ((-3 $ "failed") $)) (-15 -3215 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-473)) (PROGN (-6 (-473)) (-15 -4357 ((-3 $ "failed") $)) (-15 -3215 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1045)) (PROGN (-6 (-1045)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-713 |#1|)) |%noBranch|) (IF (|has| |#1| (-555)) (-15 -3710 ((-640 $) $)) |%noBranch|) (IF (|has| |#1| (-896 (-1169))) (-6 (-896 (-1169))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-6 (-1264 |#1|)) (-15 -1837 ($ $ $)) (-15 -2688 ($ $))) |%noBranch|) (IF (|has| |#1| (-302)) (-15 -4132 ($ $ $)) |%noBranch|))) (-1208)) (T -294))
-((-1718 (*1 *1 *2 *2) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208)))) (-2378 (*1 *1 *2 *2) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208)))) (-1536 (*1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208)))) (-2340 (*1 *2 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208)))) (-2351 (*1 *2 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208)))) (-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1208)) (-5 *1 (-294 *3)))) (-1540 (*1 *1 *1 *1) (-12 (-4 *2 (-309 *2)) (-4 *2 (-1093)) (-4 *2 (-1208)) (-5 *1 (-294 *2)))) (-1540 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-294 *3))) (-4 *3 (-309 *3)) (-4 *3 (-1093)) (-4 *3 (-1208)) (-5 *1 (-294 *3)))) (-1814 (*1 *1 *2 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-25)) (-4 *2 (-1208)))) (-1814 (*1 *1 *1 *2) (-12 (-5 *1 (-294 *2)) (-4 *2 (-25)) (-4 *2 (-1208)))) (-1963 (*1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-21)) (-4 *2 (-1208)))) (-2400 (*1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-21)) (-4 *2 (-1208)))) (-1826 (*1 *1 *2 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-21)) (-4 *2 (-1208)))) (-1826 (*1 *1 *1 *2) (-12 (-5 *1 (-294 *2)) (-4 *2 (-21)) (-4 *2 (-1208)))) (-4357 (*1 *1 *1) (|partial| -12 (-5 *1 (-294 *2)) (-4 *2 (-722)) (-4 *2 (-1208)))) (-3215 (*1 *1 *1) (|partial| -12 (-5 *1 (-294 *2)) (-4 *2 (-722)) (-4 *2 (-1208)))) (-3710 (*1 *2 *1) (-12 (-5 *2 (-640 (-294 *3))) (-5 *1 (-294 *3)) (-4 *3 (-555)) (-4 *3 (-1208)))) (-4132 (*1 *1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-302)) (-4 *2 (-1208)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1105)) (-4 *2 (-1208)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1105)) (-4 *2 (-1208)))) (-1837 (*1 *1 *1 *1) (-4032 (-12 (-5 *1 (-294 *2)) (-4 *2 (-363)) (-4 *2 (-1208))) (-12 (-5 *1 (-294 *2)) (-4 *2 (-473)) (-4 *2 (-1208))))) (-2688 (*1 *1 *1) (-4032 (-12 (-5 *1 (-294 *2)) (-4 *2 (-363)) (-4 *2 (-1208))) (-12 (-5 *1 (-294 *2)) (-4 *2 (-473)) (-4 *2 (-1208))))))
-(-13 (-1208) (-10 -8 (-15 -1718 ($ |#1| |#1|)) (-15 -2378 ($ |#1| |#1|)) (-15 -1536 ($ $)) (-15 -2340 (|#1| $)) (-15 -2351 (|#1| $)) (-15 -2240 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-514 (-1169) |#1|)) (-6 (-514 (-1169) |#1|)) |%noBranch|) (IF (|has| |#1| (-1093)) (PROGN (-6 (-1093)) (-6 (-610 (-112))) (IF (|has| |#1| (-309 |#1|)) (PROGN (-15 -1540 ($ $ $)) (-15 -1540 ($ $ (-640 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -1814 ($ |#1| $)) (-15 -1814 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -1963 ($ $)) (-15 -2400 ($ $)) (-15 -1826 ($ |#1| $)) (-15 -1826 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1105)) (PROGN (-6 (-1105)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-722)) (PROGN (-6 (-722)) (-15 -4357 ((-3 $ "failed") $)) (-15 -3215 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-473)) (PROGN (-6 (-473)) (-15 -4357 ((-3 $ "failed") $)) (-15 -3215 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1045)) (PROGN (-6 (-1045)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-713 |#1|)) |%noBranch|) (IF (|has| |#1| (-555)) (-15 -3710 ((-640 $) $)) |%noBranch|) (IF (|has| |#1| (-896 (-1169))) (-6 (-896 (-1169))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-6 (-1264 |#1|)) (-15 -1837 ($ $ $)) (-15 -2688 ($ $))) |%noBranch|) (IF (|has| |#1| (-302)) (-15 -4132 ($ $ $)) |%noBranch|)))
-((-1677 (((-112) $ $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1552 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-4378 (((-1262) $ |#1| |#1|) NIL (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#2| $ |#1| |#2|) NIL)) (-2812 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-1577 (((-3 |#2| "failed") |#1| $) NIL)) (-4239 (($) NIL T CONST)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-2705 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-3 |#2| "failed") |#1| $) NIL)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4407))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#2| $ |#1|) NIL)) (-2659 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2411 ((|#1| $) NIL (|has| |#1| (-846)))) (-2259 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-3860 ((|#1| $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4408))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1303 (((-640 |#1|) $) NIL)) (-4173 (((-112) |#1| $) NIL)) (-2964 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-1812 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-4318 (((-640 |#1|) $) NIL)) (-3192 (((-112) |#1| $) NIL)) (-1694 (((-1113) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3781 ((|#2| $) NIL (|has| |#1| (-846)))) (-4203 (((-3 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL)) (-2358 (($ $ |#2|) NIL (|has| $ (-6 -4408)))) (-3755 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-3138 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-2836 (((-640 |#2|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3890 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-1709 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093)))) (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-611 (-536))))) (-1707 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-1693 (((-858) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858)))))) (-2233 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-4383 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-295 |#1| |#2|) (-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4407))) (-1093) (-1093)) (T -295))
-NIL
-(-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4407)))
-((-4076 (((-312) (-1151) (-640 (-1151))) 16) (((-312) (-1151) (-1151)) 15) (((-312) (-640 (-1151))) 14) (((-312) (-1151)) 12)))
-(((-296) (-10 -7 (-15 -4076 ((-312) (-1151))) (-15 -4076 ((-312) (-640 (-1151)))) (-15 -4076 ((-312) (-1151) (-1151))) (-15 -4076 ((-312) (-1151) (-640 (-1151)))))) (T -296))
-((-4076 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-1151))) (-5 *3 (-1151)) (-5 *2 (-312)) (-5 *1 (-296)))) (-4076 (*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-312)) (-5 *1 (-296)))) (-4076 (*1 *2 *3) (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-312)) (-5 *1 (-296)))) (-4076 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-312)) (-5 *1 (-296)))))
-(-10 -7 (-15 -4076 ((-312) (-1151))) (-15 -4076 ((-312) (-640 (-1151)))) (-15 -4076 ((-312) (-1151) (-1151))) (-15 -4076 ((-312) (-1151) (-640 (-1151)))))
-((-2240 ((|#2| (-1 |#2| |#1|) (-1151) (-609 |#1|)) 18)))
-(((-297 |#1| |#2|) (-10 -7 (-15 -2240 (|#2| (-1 |#2| |#1|) (-1151) (-609 |#1|)))) (-302) (-1208)) (T -297))
-((-2240 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1151)) (-5 *5 (-609 *6)) (-4 *6 (-302)) (-4 *2 (-1208)) (-5 *1 (-297 *6 *2)))))
-(-10 -7 (-15 -2240 (|#2| (-1 |#2| |#1|) (-1151) (-609 |#1|))))
-((-2240 ((|#2| (-1 |#2| |#1|) (-609 |#1|)) 17)))
-(((-298 |#1| |#2|) (-10 -7 (-15 -2240 (|#2| (-1 |#2| |#1|) (-609 |#1|)))) (-302) (-302)) (T -298))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-609 *5)) (-4 *5 (-302)) (-4 *2 (-302)) (-5 *1 (-298 *5 *2)))))
-(-10 -7 (-15 -2240 (|#2| (-1 |#2| |#1|) (-609 |#1|))))
-((-3198 (((-112) (-225)) 10)))
-(((-299 |#1| |#2|) (-10 -7 (-15 -3198 ((-112) (-225)))) (-225) (-225)) (T -299))
-((-3198 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-299 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
-(-10 -7 (-15 -3198 ((-112) (-225))))
-((-2802 (((-1149 (-225)) (-316 (-225)) (-640 (-1169)) (-1087 (-839 (-225)))) 92)) (-2415 (((-1149 (-225)) (-1257 (-316 (-225))) (-640 (-1169)) (-1087 (-839 (-225)))) 106) (((-1149 (-225)) (-316 (-225)) (-640 (-1169)) (-1087 (-839 (-225)))) 61)) (-1983 (((-640 (-1151)) (-1149 (-225))) NIL)) (-2497 (((-640 (-225)) (-316 (-225)) (-1169) (-1087 (-839 (-225)))) 58)) (-4273 (((-640 (-225)) (-948 (-407 (-563))) (-1169) (-1087 (-839 (-225)))) 49)) (-1636 (((-640 (-1151)) (-640 (-225))) NIL)) (-2471 (((-225) (-1087 (-839 (-225)))) 25)) (-4107 (((-225) (-1087 (-839 (-225)))) 26)) (-2973 (((-112) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 54)) (-3274 (((-1151) (-225)) NIL)))
-(((-300) (-10 -7 (-15 -2471 ((-225) (-1087 (-839 (-225))))) (-15 -4107 ((-225) (-1087 (-839 (-225))))) (-15 -2973 ((-112) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2497 ((-640 (-225)) (-316 (-225)) (-1169) (-1087 (-839 (-225))))) (-15 -2802 ((-1149 (-225)) (-316 (-225)) (-640 (-1169)) (-1087 (-839 (-225))))) (-15 -2415 ((-1149 (-225)) (-316 (-225)) (-640 (-1169)) (-1087 (-839 (-225))))) (-15 -2415 ((-1149 (-225)) (-1257 (-316 (-225))) (-640 (-1169)) (-1087 (-839 (-225))))) (-15 -4273 ((-640 (-225)) (-948 (-407 (-563))) (-1169) (-1087 (-839 (-225))))) (-15 -3274 ((-1151) (-225))) (-15 -1636 ((-640 (-1151)) (-640 (-225)))) (-15 -1983 ((-640 (-1151)) (-1149 (-225)))))) (T -300))
-((-1983 (*1 *2 *3) (-12 (-5 *3 (-1149 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-300)))) (-1636 (*1 *2 *3) (-12 (-5 *3 (-640 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-300)))) (-3274 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1151)) (-5 *1 (-300)))) (-4273 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-948 (-407 (-563)))) (-5 *4 (-1169)) (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-640 (-225))) (-5 *1 (-300)))) (-2415 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *4 (-640 (-1169))) (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-1149 (-225))) (-5 *1 (-300)))) (-2415 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-316 (-225))) (-5 *4 (-640 (-1169))) (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-1149 (-225))) (-5 *1 (-300)))) (-2802 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-316 (-225))) (-5 *4 (-640 (-1169))) (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-1149 (-225))) (-5 *1 (-300)))) (-2497 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-316 (-225))) (-5 *4 (-1169)) (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-640 (-225))) (-5 *1 (-300)))) (-2973 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-112)) (-5 *1 (-300)))) (-4107 (*1 *2 *3) (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-300)))) (-2471 (*1 *2 *3) (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-300)))))
-(-10 -7 (-15 -2471 ((-225) (-1087 (-839 (-225))))) (-15 -4107 ((-225) (-1087 (-839 (-225))))) (-15 -2973 ((-112) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2497 ((-640 (-225)) (-316 (-225)) (-1169) (-1087 (-839 (-225))))) (-15 -2802 ((-1149 (-225)) (-316 (-225)) (-640 (-1169)) (-1087 (-839 (-225))))) (-15 -2415 ((-1149 (-225)) (-316 (-225)) (-640 (-1169)) (-1087 (-839 (-225))))) (-15 -2415 ((-1149 (-225)) (-1257 (-316 (-225))) (-640 (-1169)) (-1087 (-839 (-225))))) (-15 -4273 ((-640 (-225)) (-948 (-407 (-563))) (-1169) (-1087 (-839 (-225))))) (-15 -3274 ((-1151) (-225))) (-15 -1636 ((-640 (-1151)) (-640 (-225)))) (-15 -1983 ((-640 (-1151)) (-1149 (-225)))))
-((-2059 (((-640 (-609 $)) $) 30)) (-4132 (($ $ (-294 $)) 80) (($ $ (-640 (-294 $))) 122) (($ $ (-640 (-609 $)) (-640 $)) NIL)) (-2131 (((-3 (-609 $) "failed") $) 112)) (-2058 (((-609 $) $) 111)) (-3968 (($ $) 19) (($ (-640 $)) 55)) (-3804 (((-640 (-114)) $) 38)) (-2361 (((-114) (-114)) 90)) (-3131 (((-112) $) 130)) (-2240 (($ (-1 $ $) (-609 $)) 88)) (-2875 (((-3 (-609 $) "failed") $) 92)) (-2227 (($ (-114) $) 60) (($ (-114) (-640 $)) 99)) (-2799 (((-112) $ (-114)) 116) (((-112) $ (-1169)) 115)) (-4236 (((-767) $) 46)) (-1372 (((-112) $ $) 58) (((-112) $ (-1169)) 50)) (-2359 (((-112) $) 128)) (-1540 (($ $ (-609 $) $) NIL) (($ $ (-640 (-609 $)) (-640 $)) NIL) (($ $ (-640 (-294 $))) 120) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ $))) 83) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-1169) (-1 $ (-640 $))) 68) (($ $ (-1169) (-1 $ $)) 74) (($ $ (-640 (-114)) (-640 (-1 $ $))) 82) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) 84) (($ $ (-114) (-1 $ (-640 $))) 70) (($ $ (-114) (-1 $ $)) 76)) (-2309 (($ (-114) $) 61) (($ (-114) $ $) 62) (($ (-114) $ $ $) 63) (($ (-114) $ $ $ $) 64) (($ (-114) (-640 $)) 108)) (-3071 (($ $) 52) (($ $ $) 118)) (-3079 (($ $) 17) (($ (-640 $)) 54)) (-3734 (((-112) (-114)) 22)))
-(((-301 |#1|) (-10 -8 (-15 -3131 ((-112) |#1|)) (-15 -2359 ((-112) |#1|)) (-15 -1540 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1540 (|#1| |#1| (-114) (-1 |#1| (-640 |#1|)))) (-15 -1540 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1540 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| |#1|)))) (-15 -1540 (|#1| |#1| (-1169) (-1 |#1| |#1|))) (-15 -1540 (|#1| |#1| (-1169) (-1 |#1| (-640 |#1|)))) (-15 -1540 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1540 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| |#1|)))) (-15 -1372 ((-112) |#1| (-1169))) (-15 -1372 ((-112) |#1| |#1|)) (-15 -2240 (|#1| (-1 |#1| |#1|) (-609 |#1|))) (-15 -2227 (|#1| (-114) (-640 |#1|))) (-15 -2227 (|#1| (-114) |#1|)) (-15 -2799 ((-112) |#1| (-1169))) (-15 -2799 ((-112) |#1| (-114))) (-15 -3734 ((-112) (-114))) (-15 -2361 ((-114) (-114))) (-15 -3804 ((-640 (-114)) |#1|)) (-15 -2059 ((-640 (-609 |#1|)) |#1|)) (-15 -2875 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -4236 ((-767) |#1|)) (-15 -3071 (|#1| |#1| |#1|)) (-15 -3071 (|#1| |#1|)) (-15 -3968 (|#1| (-640 |#1|))) (-15 -3968 (|#1| |#1|)) (-15 -3079 (|#1| (-640 |#1|))) (-15 -3079 (|#1| |#1|)) (-15 -4132 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -4132 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -4132 (|#1| |#1| (-294 |#1|))) (-15 -2309 (|#1| (-114) (-640 |#1|))) (-15 -2309 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2309 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2309 (|#1| (-114) |#1| |#1|)) (-15 -2309 (|#1| (-114) |#1|)) (-15 -1540 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#1| |#1|)) (-15 -1540 (|#1| |#1| (-294 |#1|))) (-15 -1540 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -1540 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -1540 (|#1| |#1| (-609 |#1|) |#1|)) (-15 -2131 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -2058 ((-609 |#1|) |#1|))) (-302)) (T -301))
-((-2361 (*1 *2 *2) (-12 (-5 *2 (-114)) (-5 *1 (-301 *3)) (-4 *3 (-302)))) (-3734 (*1 *2 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-301 *4)) (-4 *4 (-302)))))
-(-10 -8 (-15 -3131 ((-112) |#1|)) (-15 -2359 ((-112) |#1|)) (-15 -1540 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1540 (|#1| |#1| (-114) (-1 |#1| (-640 |#1|)))) (-15 -1540 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1540 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| |#1|)))) (-15 -1540 (|#1| |#1| (-1169) (-1 |#1| |#1|))) (-15 -1540 (|#1| |#1| (-1169) (-1 |#1| (-640 |#1|)))) (-15 -1540 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1540 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| |#1|)))) (-15 -1372 ((-112) |#1| (-1169))) (-15 -1372 ((-112) |#1| |#1|)) (-15 -2240 (|#1| (-1 |#1| |#1|) (-609 |#1|))) (-15 -2227 (|#1| (-114) (-640 |#1|))) (-15 -2227 (|#1| (-114) |#1|)) (-15 -2799 ((-112) |#1| (-1169))) (-15 -2799 ((-112) |#1| (-114))) (-15 -3734 ((-112) (-114))) (-15 -2361 ((-114) (-114))) (-15 -3804 ((-640 (-114)) |#1|)) (-15 -2059 ((-640 (-609 |#1|)) |#1|)) (-15 -2875 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -4236 ((-767) |#1|)) (-15 -3071 (|#1| |#1| |#1|)) (-15 -3071 (|#1| |#1|)) (-15 -3968 (|#1| (-640 |#1|))) (-15 -3968 (|#1| |#1|)) (-15 -3079 (|#1| (-640 |#1|))) (-15 -3079 (|#1| |#1|)) (-15 -4132 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -4132 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -4132 (|#1| |#1| (-294 |#1|))) (-15 -2309 (|#1| (-114) (-640 |#1|))) (-15 -2309 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2309 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2309 (|#1| (-114) |#1| |#1|)) (-15 -2309 (|#1| (-114) |#1|)) (-15 -1540 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#1| |#1|)) (-15 -1540 (|#1| |#1| (-294 |#1|))) (-15 -1540 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -1540 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -1540 (|#1| |#1| (-609 |#1|) |#1|)) (-15 -2131 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -2058 ((-609 |#1|) |#1|)))
-((-1677 (((-112) $ $) 7)) (-2059 (((-640 (-609 $)) $) 44)) (-4132 (($ $ (-294 $)) 56) (($ $ (-640 (-294 $))) 55) (($ $ (-640 (-609 $)) (-640 $)) 54)) (-2131 (((-3 (-609 $) "failed") $) 69)) (-2058 (((-609 $) $) 70)) (-3968 (($ $) 51) (($ (-640 $)) 50)) (-3804 (((-640 (-114)) $) 43)) (-2361 (((-114) (-114)) 42)) (-3131 (((-112) $) 22 (|has| $ (-1034 (-563))))) (-3180 (((-1165 $) (-609 $)) 25 (|has| $ (-1045)))) (-3084 (($ $ $) 13)) (-1777 (($ $ $) 14)) (-2240 (($ (-1 $ $) (-609 $)) 36)) (-2875 (((-3 (-609 $) "failed") $) 46)) (-3573 (((-1151) $) 9)) (-2127 (((-640 (-609 $)) $) 45)) (-2227 (($ (-114) $) 38) (($ (-114) (-640 $)) 37)) (-2799 (((-112) $ (-114)) 40) (((-112) $ (-1169)) 39)) (-4236 (((-767) $) 47)) (-1694 (((-1113) $) 10)) (-1372 (((-112) $ $) 35) (((-112) $ (-1169)) 34)) (-2359 (((-112) $) 23 (|has| $ (-1034 (-563))))) (-1540 (($ $ (-609 $) $) 67) (($ $ (-640 (-609 $)) (-640 $)) 66) (($ $ (-640 (-294 $))) 65) (($ $ (-294 $)) 64) (($ $ $ $) 63) (($ $ (-640 $) (-640 $)) 62) (($ $ (-640 (-1169)) (-640 (-1 $ $))) 33) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) 32) (($ $ (-1169) (-1 $ (-640 $))) 31) (($ $ (-1169) (-1 $ $)) 30) (($ $ (-640 (-114)) (-640 (-1 $ $))) 29) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) 28) (($ $ (-114) (-1 $ (-640 $))) 27) (($ $ (-114) (-1 $ $)) 26)) (-2309 (($ (-114) $) 61) (($ (-114) $ $) 60) (($ (-114) $ $ $) 59) (($ (-114) $ $ $ $) 58) (($ (-114) (-640 $)) 57)) (-3071 (($ $) 49) (($ $ $) 48)) (-3390 (($ $) 24 (|has| $ (-1045)))) (-1693 (((-858) $) 11) (($ (-609 $)) 68)) (-3079 (($ $) 53) (($ (-640 $)) 52)) (-3734 (((-112) (-114)) 41)) (-1778 (((-112) $ $) 16)) (-1756 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 15)) (-1744 (((-112) $ $) 18)))
+((-2588 (($ (-1169) (-1169) (-1097) $) 17)) (-2566 (($ (-1169) (-640 (-961)) $) 22)) (-2606 (((-640 (-1078)) $) 10)) (-2596 (((-3 (-1097) "failed") (-1169) (-1169) $) 16)) (-2576 (((-3 (-640 (-961)) "failed") (-1169) $) 21)) (-3445 (($) 7)) (-2575 (($) 23)) (-1692 (((-858) $) 27)) (-3741 (($) 24)))
+(((-291) (-13 (-610 (-858)) (-10 -8 (-15 -3445 ($)) (-15 -2606 ((-640 (-1078)) $)) (-15 -2596 ((-3 (-1097) "failed") (-1169) (-1169) $)) (-15 -2588 ($ (-1169) (-1169) (-1097) $)) (-15 -2576 ((-3 (-640 (-961)) "failed") (-1169) $)) (-15 -2566 ($ (-1169) (-640 (-961)) $)) (-15 -2575 ($)) (-15 -3741 ($))))) (T -291))
+((-3445 (*1 *1) (-5 *1 (-291))) (-2606 (*1 *2 *1) (-12 (-5 *2 (-640 (-1078))) (-5 *1 (-291)))) (-2596 (*1 *2 *3 *3 *1) (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-1097)) (-5 *1 (-291)))) (-2588 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-1169)) (-5 *3 (-1097)) (-5 *1 (-291)))) (-2576 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-640 (-961))) (-5 *1 (-291)))) (-2566 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-961))) (-5 *1 (-291)))) (-2575 (*1 *1) (-5 *1 (-291))) (-3741 (*1 *1) (-5 *1 (-291))))
+(-13 (-610 (-858)) (-10 -8 (-15 -3445 ($)) (-15 -2606 ((-640 (-1078)) $)) (-15 -2596 ((-3 (-1097) "failed") (-1169) (-1169) $)) (-15 -2588 ($ (-1169) (-1169) (-1097) $)) (-15 -2576 ((-3 (-640 (-961)) "failed") (-1169) $)) (-15 -2566 ($ (-1169) (-640 (-961)) $)) (-15 -2575 ($)) (-15 -3741 ($))))
+((-2642 (((-640 (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |geneigvec| (-640 (-684 (-407 (-948 |#1|))))))) (-684 (-407 (-948 |#1|)))) 85)) (-2632 (((-640 (-684 (-407 (-948 |#1|)))) (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 (-684 (-407 (-948 |#1|)))))) (-684 (-407 (-948 |#1|)))) 80) (((-640 (-684 (-407 (-948 |#1|)))) (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|))) (-684 (-407 (-948 |#1|))) (-767) (-767)) 38)) (-2652 (((-640 (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 (-684 (-407 (-948 |#1|))))))) (-684 (-407 (-948 |#1|)))) 82)) (-2625 (((-640 (-684 (-407 (-948 |#1|)))) (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|))) (-684 (-407 (-948 |#1|)))) 62)) (-2614 (((-640 (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (-684 (-407 (-948 |#1|)))) 61)) (-1892 (((-948 |#1|) (-684 (-407 (-948 |#1|)))) 50) (((-948 |#1|) (-684 (-407 (-948 |#1|))) (-1169)) 51)))
+(((-292 |#1|) (-10 -7 (-15 -1892 ((-948 |#1|) (-684 (-407 (-948 |#1|))) (-1169))) (-15 -1892 ((-948 |#1|) (-684 (-407 (-948 |#1|))))) (-15 -2614 ((-640 (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (-684 (-407 (-948 |#1|))))) (-15 -2625 ((-640 (-684 (-407 (-948 |#1|)))) (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|))) (-684 (-407 (-948 |#1|))))) (-15 -2632 ((-640 (-684 (-407 (-948 |#1|)))) (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|))) (-684 (-407 (-948 |#1|))) (-767) (-767))) (-15 -2632 ((-640 (-684 (-407 (-948 |#1|)))) (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 (-684 (-407 (-948 |#1|)))))) (-684 (-407 (-948 |#1|))))) (-15 -2642 ((-640 (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |geneigvec| (-640 (-684 (-407 (-948 |#1|))))))) (-684 (-407 (-948 |#1|))))) (-15 -2652 ((-640 (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 (-684 (-407 (-948 |#1|))))))) (-684 (-407 (-948 |#1|)))))) (-452)) (T -292))
+((-2652 (*1 *2 *3) (-12 (-4 *4 (-452)) (-5 *2 (-640 (-2 (|:| |eigval| (-3 (-407 (-948 *4)) (-1158 (-1169) (-948 *4)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 (-684 (-407 (-948 *4)))))))) (-5 *1 (-292 *4)) (-5 *3 (-684 (-407 (-948 *4)))))) (-2642 (*1 *2 *3) (-12 (-4 *4 (-452)) (-5 *2 (-640 (-2 (|:| |eigval| (-3 (-407 (-948 *4)) (-1158 (-1169) (-948 *4)))) (|:| |geneigvec| (-640 (-684 (-407 (-948 *4)))))))) (-5 *1 (-292 *4)) (-5 *3 (-684 (-407 (-948 *4)))))) (-2632 (*1 *2 *3 *4) (-12 (-5 *3 (-2 (|:| |eigval| (-3 (-407 (-948 *5)) (-1158 (-1169) (-948 *5)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 *4)))) (-4 *5 (-452)) (-5 *2 (-640 (-684 (-407 (-948 *5))))) (-5 *1 (-292 *5)) (-5 *4 (-684 (-407 (-948 *5)))))) (-2632 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-3 (-407 (-948 *6)) (-1158 (-1169) (-948 *6)))) (-5 *5 (-767)) (-4 *6 (-452)) (-5 *2 (-640 (-684 (-407 (-948 *6))))) (-5 *1 (-292 *6)) (-5 *4 (-684 (-407 (-948 *6)))))) (-2625 (*1 *2 *3 *4) (-12 (-5 *3 (-3 (-407 (-948 *5)) (-1158 (-1169) (-948 *5)))) (-4 *5 (-452)) (-5 *2 (-640 (-684 (-407 (-948 *5))))) (-5 *1 (-292 *5)) (-5 *4 (-684 (-407 (-948 *5)))))) (-2614 (*1 *2 *3) (-12 (-5 *3 (-684 (-407 (-948 *4)))) (-4 *4 (-452)) (-5 *2 (-640 (-3 (-407 (-948 *4)) (-1158 (-1169) (-948 *4))))) (-5 *1 (-292 *4)))) (-1892 (*1 *2 *3) (-12 (-5 *3 (-684 (-407 (-948 *4)))) (-5 *2 (-948 *4)) (-5 *1 (-292 *4)) (-4 *4 (-452)))) (-1892 (*1 *2 *3 *4) (-12 (-5 *3 (-684 (-407 (-948 *5)))) (-5 *4 (-1169)) (-5 *2 (-948 *5)) (-5 *1 (-292 *5)) (-4 *5 (-452)))))
+(-10 -7 (-15 -1892 ((-948 |#1|) (-684 (-407 (-948 |#1|))) (-1169))) (-15 -1892 ((-948 |#1|) (-684 (-407 (-948 |#1|))))) (-15 -2614 ((-640 (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (-684 (-407 (-948 |#1|))))) (-15 -2625 ((-640 (-684 (-407 (-948 |#1|)))) (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|))) (-684 (-407 (-948 |#1|))))) (-15 -2632 ((-640 (-684 (-407 (-948 |#1|)))) (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|))) (-684 (-407 (-948 |#1|))) (-767) (-767))) (-15 -2632 ((-640 (-684 (-407 (-948 |#1|)))) (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 (-684 (-407 (-948 |#1|)))))) (-684 (-407 (-948 |#1|))))) (-15 -2642 ((-640 (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |geneigvec| (-640 (-684 (-407 (-948 |#1|))))))) (-684 (-407 (-948 |#1|))))) (-15 -2652 ((-640 (-2 (|:| |eigval| (-3 (-407 (-948 |#1|)) (-1158 (-1169) (-948 |#1|)))) (|:| |eigmult| (-767)) (|:| |eigvec| (-640 (-684 (-407 (-948 |#1|))))))) (-684 (-407 (-948 |#1|))))))
+((-2238 (((-294 |#2|) (-1 |#2| |#1|) (-294 |#1|)) 14)))
+(((-293 |#1| |#2|) (-10 -7 (-15 -2238 ((-294 |#2|) (-1 |#2| |#1|) (-294 |#1|)))) (-1208) (-1208)) (T -293))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-294 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-294 *6)) (-5 *1 (-293 *5 *6)))))
+(-10 -7 (-15 -2238 ((-294 |#2|) (-1 |#2| |#1|) (-294 |#1|))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3439 (((-112) $) NIL (|has| |#1| (-21)))) (-2706 (($ $) 12)) (-3905 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-4135 (($ $ $) 94 (|has| |#1| (-302)))) (-2569 (($) NIL (-4034 (|has| |#1| (-21)) (|has| |#1| (-722))) CONST)) (-2688 (($ $) 50 (|has| |#1| (-21)))) (-2670 (((-3 $ "failed") $) 61 (|has| |#1| (-722)))) (-2350 ((|#1| $) 11)) (-3951 (((-3 $ "failed") $) 59 (|has| |#1| (-722)))) (-3401 (((-112) $) NIL (|has| |#1| (-722)))) (-2238 (($ (-1 |#1| |#1|) $) 14)) (-2339 ((|#1| $) 10)) (-2696 (($ $) 49 (|has| |#1| (-21)))) (-2679 (((-3 $ "failed") $) 60 (|has| |#1| (-722)))) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2687 (($ $) 63 (-4034 (|has| |#1| (-363)) (|has| |#1| (-473))))) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2660 (((-640 $) $) 84 (|has| |#1| (-555)))) (-1542 (($ $ $) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 $)) 28 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-1169) |#1|) 17 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) 21 (|has| |#1| (-514 (-1169) |#1|)))) (-2377 (($ |#1| |#1|) 9)) (-3526 (((-134)) 89 (|has| |#1| (-363)))) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) 86 (|has| |#1| (-896 (-1169))))) (-2150 (($ $ $) NIL (|has| |#1| (-473)))) (-1745 (($ $ $) NIL (|has| |#1| (-473)))) (-1692 (($ (-563)) NIL (|has| |#1| (-1045))) (((-112) $) 36 (|has| |#1| (-1093))) (((-858) $) 35 (|has| |#1| (-1093)))) (-3914 (((-767)) 66 (|has| |#1| (-1045)))) (-2239 (($) 46 (|has| |#1| (-21)) CONST)) (-2253 (($) 56 (|has| |#1| (-722)) CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169))))) (-1718 (($ |#1| |#1|) 8) (((-112) $ $) 31 (|has| |#1| (-1093)))) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) 91 (-4034 (|has| |#1| (-363)) (|has| |#1| (-473))))) (-1825 (($ |#1| $) 44 (|has| |#1| (-21))) (($ $ |#1|) 45 (|has| |#1| (-21))) (($ $ $) 43 (|has| |#1| (-21))) (($ $) 42 (|has| |#1| (-21)))) (-1813 (($ |#1| $) 39 (|has| |#1| (-25))) (($ $ |#1|) 40 (|has| |#1| (-25))) (($ $ $) 38 (|has| |#1| (-25)))) (** (($ $ (-563)) NIL (|has| |#1| (-473))) (($ $ (-767)) NIL (|has| |#1| (-722))) (($ $ (-917)) NIL (|has| |#1| (-1105)))) (* (($ $ |#1|) 54 (|has| |#1| (-1105))) (($ |#1| $) 53 (|has| |#1| (-1105))) (($ $ $) 52 (|has| |#1| (-1105))) (($ (-563) $) 69 (|has| |#1| (-21))) (($ (-767) $) NIL (|has| |#1| (-21))) (($ (-917) $) NIL (|has| |#1| (-25)))))
+(((-294 |#1|) (-13 (-1208) (-10 -8 (-15 -1718 ($ |#1| |#1|)) (-15 -2377 ($ |#1| |#1|)) (-15 -2706 ($ $)) (-15 -2339 (|#1| $)) (-15 -2350 (|#1| $)) (-15 -2238 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-514 (-1169) |#1|)) (-6 (-514 (-1169) |#1|)) |%noBranch|) (IF (|has| |#1| (-1093)) (PROGN (-6 (-1093)) (-6 (-610 (-112))) (IF (|has| |#1| (-309 |#1|)) (PROGN (-15 -1542 ($ $ $)) (-15 -1542 ($ $ (-640 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -1813 ($ |#1| $)) (-15 -1813 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2696 ($ $)) (-15 -2688 ($ $)) (-15 -1825 ($ |#1| $)) (-15 -1825 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1105)) (PROGN (-6 (-1105)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-722)) (PROGN (-6 (-722)) (-15 -2679 ((-3 $ "failed") $)) (-15 -2670 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-473)) (PROGN (-6 (-473)) (-15 -2679 ((-3 $ "failed") $)) (-15 -2670 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1045)) (PROGN (-6 (-1045)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-713 |#1|)) |%noBranch|) (IF (|has| |#1| (-555)) (-15 -2660 ((-640 $) $)) |%noBranch|) (IF (|has| |#1| (-896 (-1169))) (-6 (-896 (-1169))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-6 (-1264 |#1|)) (-15 -1836 ($ $ $)) (-15 -2687 ($ $))) |%noBranch|) (IF (|has| |#1| (-302)) (-15 -4135 ($ $ $)) |%noBranch|))) (-1208)) (T -294))
+((-1718 (*1 *1 *2 *2) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208)))) (-2377 (*1 *1 *2 *2) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208)))) (-2706 (*1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208)))) (-2339 (*1 *2 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208)))) (-2350 (*1 *2 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208)))) (-2238 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1208)) (-5 *1 (-294 *3)))) (-1542 (*1 *1 *1 *1) (-12 (-4 *2 (-309 *2)) (-4 *2 (-1093)) (-4 *2 (-1208)) (-5 *1 (-294 *2)))) (-1542 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-294 *3))) (-4 *3 (-309 *3)) (-4 *3 (-1093)) (-4 *3 (-1208)) (-5 *1 (-294 *3)))) (-1813 (*1 *1 *2 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-25)) (-4 *2 (-1208)))) (-1813 (*1 *1 *1 *2) (-12 (-5 *1 (-294 *2)) (-4 *2 (-25)) (-4 *2 (-1208)))) (-2696 (*1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-21)) (-4 *2 (-1208)))) (-2688 (*1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-21)) (-4 *2 (-1208)))) (-1825 (*1 *1 *2 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-21)) (-4 *2 (-1208)))) (-1825 (*1 *1 *1 *2) (-12 (-5 *1 (-294 *2)) (-4 *2 (-21)) (-4 *2 (-1208)))) (-2679 (*1 *1 *1) (|partial| -12 (-5 *1 (-294 *2)) (-4 *2 (-722)) (-4 *2 (-1208)))) (-2670 (*1 *1 *1) (|partial| -12 (-5 *1 (-294 *2)) (-4 *2 (-722)) (-4 *2 (-1208)))) (-2660 (*1 *2 *1) (-12 (-5 *2 (-640 (-294 *3))) (-5 *1 (-294 *3)) (-4 *3 (-555)) (-4 *3 (-1208)))) (-4135 (*1 *1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-302)) (-4 *2 (-1208)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1105)) (-4 *2 (-1208)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1105)) (-4 *2 (-1208)))) (-1836 (*1 *1 *1 *1) (-4034 (-12 (-5 *1 (-294 *2)) (-4 *2 (-363)) (-4 *2 (-1208))) (-12 (-5 *1 (-294 *2)) (-4 *2 (-473)) (-4 *2 (-1208))))) (-2687 (*1 *1 *1) (-4034 (-12 (-5 *1 (-294 *2)) (-4 *2 (-363)) (-4 *2 (-1208))) (-12 (-5 *1 (-294 *2)) (-4 *2 (-473)) (-4 *2 (-1208))))))
+(-13 (-1208) (-10 -8 (-15 -1718 ($ |#1| |#1|)) (-15 -2377 ($ |#1| |#1|)) (-15 -2706 ($ $)) (-15 -2339 (|#1| $)) (-15 -2350 (|#1| $)) (-15 -2238 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-514 (-1169) |#1|)) (-6 (-514 (-1169) |#1|)) |%noBranch|) (IF (|has| |#1| (-1093)) (PROGN (-6 (-1093)) (-6 (-610 (-112))) (IF (|has| |#1| (-309 |#1|)) (PROGN (-15 -1542 ($ $ $)) (-15 -1542 ($ $ (-640 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -1813 ($ |#1| $)) (-15 -1813 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2696 ($ $)) (-15 -2688 ($ $)) (-15 -1825 ($ |#1| $)) (-15 -1825 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1105)) (PROGN (-6 (-1105)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-722)) (PROGN (-6 (-722)) (-15 -2679 ((-3 $ "failed") $)) (-15 -2670 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-473)) (PROGN (-6 (-473)) (-15 -2679 ((-3 $ "failed") $)) (-15 -2670 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1045)) (PROGN (-6 (-1045)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-713 |#1|)) |%noBranch|) (IF (|has| |#1| (-555)) (-15 -2660 ((-640 $) $)) |%noBranch|) (IF (|has| |#1| (-896 (-1169))) (-6 (-896 (-1169))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-6 (-1264 |#1|)) (-15 -1836 ($ $ $)) (-15 -2687 ($ $))) |%noBranch|) (IF (|has| |#1| (-302)) (-15 -4135 ($ $ $)) |%noBranch|)))
+((-1677 (((-112) $ $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1551 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-2208 (((-1262) $ |#1| |#1|) NIL (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#2| $ |#1| |#2|) NIL)) (-3678 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-1576 (((-3 |#2| "failed") |#1| $) NIL)) (-2569 (($) NIL T CONST)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-1691 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-3 |#2| "failed") |#1| $) NIL)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#2| $ |#1|) NIL)) (-2658 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-2236 ((|#1| $) NIL (|has| |#1| (-846)))) (-3523 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2251 ((|#1| $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4409))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1304 (((-640 |#1|) $) NIL)) (-2305 (((-112) |#1| $) NIL)) (-2627 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-3867 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-2272 (((-640 |#1|) $) NIL)) (-2282 (((-112) |#1| $) NIL)) (-1693 (((-1113) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3782 ((|#2| $) NIL (|has| |#1| (-846)))) (-1971 (((-3 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL)) (-2221 (($ $ |#2|) NIL (|has| $ (-6 -4409)))) (-2808 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-1458 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2295 (((-640 |#2|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3863 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1708 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093)))) (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-611 (-536))))) (-1706 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1692 (((-858) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858)))))) (-2820 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1471 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-295 |#1| |#2|) (-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4408))) (-1093) (-1093)) (T -295))
+NIL
+(-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4408)))
+((-4079 (((-312) (-1151) (-640 (-1151))) 16) (((-312) (-1151) (-1151)) 15) (((-312) (-640 (-1151))) 14) (((-312) (-1151)) 12)))
+(((-296) (-10 -7 (-15 -4079 ((-312) (-1151))) (-15 -4079 ((-312) (-640 (-1151)))) (-15 -4079 ((-312) (-1151) (-1151))) (-15 -4079 ((-312) (-1151) (-640 (-1151)))))) (T -296))
+((-4079 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-1151))) (-5 *3 (-1151)) (-5 *2 (-312)) (-5 *1 (-296)))) (-4079 (*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-312)) (-5 *1 (-296)))) (-4079 (*1 *2 *3) (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-312)) (-5 *1 (-296)))) (-4079 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-312)) (-5 *1 (-296)))))
+(-10 -7 (-15 -4079 ((-312) (-1151))) (-15 -4079 ((-312) (-640 (-1151)))) (-15 -4079 ((-312) (-1151) (-1151))) (-15 -4079 ((-312) (-1151) (-640 (-1151)))))
+((-2238 ((|#2| (-1 |#2| |#1|) (-1151) (-609 |#1|)) 18)))
+(((-297 |#1| |#2|) (-10 -7 (-15 -2238 (|#2| (-1 |#2| |#1|) (-1151) (-609 |#1|)))) (-302) (-1208)) (T -297))
+((-2238 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1151)) (-5 *5 (-609 *6)) (-4 *6 (-302)) (-4 *2 (-1208)) (-5 *1 (-297 *6 *2)))))
+(-10 -7 (-15 -2238 (|#2| (-1 |#2| |#1|) (-1151) (-609 |#1|))))
+((-2238 ((|#2| (-1 |#2| |#1|) (-609 |#1|)) 17)))
+(((-298 |#1| |#2|) (-10 -7 (-15 -2238 (|#2| (-1 |#2| |#1|) (-609 |#1|)))) (-302) (-302)) (T -298))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-609 *5)) (-4 *5 (-302)) (-4 *2 (-302)) (-5 *1 (-298 *5 *2)))))
+(-10 -7 (-15 -2238 (|#2| (-1 |#2| |#1|) (-609 |#1|))))
+((-1801 (((-112) (-225)) 10)))
+(((-299 |#1| |#2|) (-10 -7 (-15 -1801 ((-112) (-225)))) (-225) (-225)) (T -299))
+((-1801 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-299 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
+(-10 -7 (-15 -1801 ((-112) (-225))))
+((-2793 (((-1149 (-225)) (-316 (-225)) (-640 (-1169)) (-1087 (-839 (-225)))) 92)) (-2803 (((-1149 (-225)) (-1257 (-316 (-225))) (-640 (-1169)) (-1087 (-839 (-225)))) 106) (((-1149 (-225)) (-316 (-225)) (-640 (-1169)) (-1087 (-839 (-225)))) 61)) (-3013 (((-640 (-1151)) (-1149 (-225))) NIL)) (-2783 (((-640 (-225)) (-316 (-225)) (-1169) (-1087 (-839 (-225)))) 58)) (-2814 (((-640 (-225)) (-948 (-407 (-563))) (-1169) (-1087 (-839 (-225)))) 49)) (-3002 (((-640 (-1151)) (-640 (-225))) NIL)) (-3023 (((-225) (-1087 (-839 (-225)))) 25)) (-3033 (((-225) (-1087 (-839 (-225)))) 26)) (-2771 (((-112) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 54)) (-2981 (((-1151) (-225)) NIL)))
+(((-300) (-10 -7 (-15 -3023 ((-225) (-1087 (-839 (-225))))) (-15 -3033 ((-225) (-1087 (-839 (-225))))) (-15 -2771 ((-112) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2783 ((-640 (-225)) (-316 (-225)) (-1169) (-1087 (-839 (-225))))) (-15 -2793 ((-1149 (-225)) (-316 (-225)) (-640 (-1169)) (-1087 (-839 (-225))))) (-15 -2803 ((-1149 (-225)) (-316 (-225)) (-640 (-1169)) (-1087 (-839 (-225))))) (-15 -2803 ((-1149 (-225)) (-1257 (-316 (-225))) (-640 (-1169)) (-1087 (-839 (-225))))) (-15 -2814 ((-640 (-225)) (-948 (-407 (-563))) (-1169) (-1087 (-839 (-225))))) (-15 -2981 ((-1151) (-225))) (-15 -3002 ((-640 (-1151)) (-640 (-225)))) (-15 -3013 ((-640 (-1151)) (-1149 (-225)))))) (T -300))
+((-3013 (*1 *2 *3) (-12 (-5 *3 (-1149 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-300)))) (-3002 (*1 *2 *3) (-12 (-5 *3 (-640 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-300)))) (-2981 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1151)) (-5 *1 (-300)))) (-2814 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-948 (-407 (-563)))) (-5 *4 (-1169)) (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-640 (-225))) (-5 *1 (-300)))) (-2803 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *4 (-640 (-1169))) (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-1149 (-225))) (-5 *1 (-300)))) (-2803 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-316 (-225))) (-5 *4 (-640 (-1169))) (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-1149 (-225))) (-5 *1 (-300)))) (-2793 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-316 (-225))) (-5 *4 (-640 (-1169))) (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-1149 (-225))) (-5 *1 (-300)))) (-2783 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-316 (-225))) (-5 *4 (-1169)) (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-640 (-225))) (-5 *1 (-300)))) (-2771 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-112)) (-5 *1 (-300)))) (-3033 (*1 *2 *3) (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-300)))) (-3023 (*1 *2 *3) (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-300)))))
+(-10 -7 (-15 -3023 ((-225) (-1087 (-839 (-225))))) (-15 -3033 ((-225) (-1087 (-839 (-225))))) (-15 -2771 ((-112) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2783 ((-640 (-225)) (-316 (-225)) (-1169) (-1087 (-839 (-225))))) (-15 -2793 ((-1149 (-225)) (-316 (-225)) (-640 (-1169)) (-1087 (-839 (-225))))) (-15 -2803 ((-1149 (-225)) (-316 (-225)) (-640 (-1169)) (-1087 (-839 (-225))))) (-15 -2803 ((-1149 (-225)) (-1257 (-316 (-225))) (-640 (-1169)) (-1087 (-839 (-225))))) (-15 -2814 ((-640 (-225)) (-948 (-407 (-563))) (-1169) (-1087 (-839 (-225))))) (-15 -2981 ((-1151) (-225))) (-15 -3002 ((-640 (-1151)) (-640 (-225)))) (-15 -3013 ((-640 (-1151)) (-1149 (-225)))))
+((-2058 (((-640 (-609 $)) $) 30)) (-4135 (($ $ (-294 $)) 80) (($ $ (-640 (-294 $))) 122) (($ $ (-640 (-609 $)) (-640 $)) NIL)) (-2130 (((-3 (-609 $) "failed") $) 112)) (-2057 (((-609 $) $) 111)) (-3228 (($ $) 19) (($ (-640 $)) 55)) (-2739 (((-640 (-114)) $) 38)) (-2559 (((-114) (-114)) 90)) (-2959 (((-112) $) 130)) (-2238 (($ (-1 $ $) (-609 $)) 88)) (-2751 (((-3 (-609 $) "failed") $) 92)) (-2227 (($ (-114) $) 60) (($ (-114) (-640 $)) 99)) (-2602 (((-112) $ (-114)) 116) (((-112) $ (-1169)) 115)) (-4238 (((-767) $) 46)) (-2726 (((-112) $ $) 58) (((-112) $ (-1169)) 50)) (-2969 (((-112) $) 128)) (-1542 (($ $ (-609 $) $) NIL) (($ $ (-640 (-609 $)) (-640 $)) NIL) (($ $ (-640 (-294 $))) 120) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ $))) 83) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-1169) (-1 $ (-640 $))) 68) (($ $ (-1169) (-1 $ $)) 74) (($ $ (-640 (-114)) (-640 (-1 $ $))) 82) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) 84) (($ $ (-114) (-1 $ (-640 $))) 70) (($ $ (-114) (-1 $ $)) 76)) (-2308 (($ (-114) $) 61) (($ (-114) $ $) 62) (($ (-114) $ $ $) 63) (($ (-114) $ $ $ $) 64) (($ (-114) (-640 $)) 108)) (-2761 (($ $) 52) (($ $ $) 118)) (-3083 (($ $) 17) (($ (-640 $)) 54)) (-2512 (((-112) (-114)) 22)))
+(((-301 |#1|) (-10 -8 (-15 -2959 ((-112) |#1|)) (-15 -2969 ((-112) |#1|)) (-15 -1542 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1542 (|#1| |#1| (-114) (-1 |#1| (-640 |#1|)))) (-15 -1542 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1542 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| |#1|)))) (-15 -1542 (|#1| |#1| (-1169) (-1 |#1| |#1|))) (-15 -1542 (|#1| |#1| (-1169) (-1 |#1| (-640 |#1|)))) (-15 -1542 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1542 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| |#1|)))) (-15 -2726 ((-112) |#1| (-1169))) (-15 -2726 ((-112) |#1| |#1|)) (-15 -2238 (|#1| (-1 |#1| |#1|) (-609 |#1|))) (-15 -2227 (|#1| (-114) (-640 |#1|))) (-15 -2227 (|#1| (-114) |#1|)) (-15 -2602 ((-112) |#1| (-1169))) (-15 -2602 ((-112) |#1| (-114))) (-15 -2512 ((-112) (-114))) (-15 -2559 ((-114) (-114))) (-15 -2739 ((-640 (-114)) |#1|)) (-15 -2058 ((-640 (-609 |#1|)) |#1|)) (-15 -2751 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -4238 ((-767) |#1|)) (-15 -2761 (|#1| |#1| |#1|)) (-15 -2761 (|#1| |#1|)) (-15 -3228 (|#1| (-640 |#1|))) (-15 -3228 (|#1| |#1|)) (-15 -3083 (|#1| (-640 |#1|))) (-15 -3083 (|#1| |#1|)) (-15 -4135 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -4135 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -4135 (|#1| |#1| (-294 |#1|))) (-15 -2308 (|#1| (-114) (-640 |#1|))) (-15 -2308 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2308 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2308 (|#1| (-114) |#1| |#1|)) (-15 -2308 (|#1| (-114) |#1|)) (-15 -1542 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#1| |#1|)) (-15 -1542 (|#1| |#1| (-294 |#1|))) (-15 -1542 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -1542 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -1542 (|#1| |#1| (-609 |#1|) |#1|)) (-15 -2130 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -2057 ((-609 |#1|) |#1|))) (-302)) (T -301))
+((-2559 (*1 *2 *2) (-12 (-5 *2 (-114)) (-5 *1 (-301 *3)) (-4 *3 (-302)))) (-2512 (*1 *2 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-301 *4)) (-4 *4 (-302)))))
+(-10 -8 (-15 -2959 ((-112) |#1|)) (-15 -2969 ((-112) |#1|)) (-15 -1542 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1542 (|#1| |#1| (-114) (-1 |#1| (-640 |#1|)))) (-15 -1542 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1542 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| |#1|)))) (-15 -1542 (|#1| |#1| (-1169) (-1 |#1| |#1|))) (-15 -1542 (|#1| |#1| (-1169) (-1 |#1| (-640 |#1|)))) (-15 -1542 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1542 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| |#1|)))) (-15 -2726 ((-112) |#1| (-1169))) (-15 -2726 ((-112) |#1| |#1|)) (-15 -2238 (|#1| (-1 |#1| |#1|) (-609 |#1|))) (-15 -2227 (|#1| (-114) (-640 |#1|))) (-15 -2227 (|#1| (-114) |#1|)) (-15 -2602 ((-112) |#1| (-1169))) (-15 -2602 ((-112) |#1| (-114))) (-15 -2512 ((-112) (-114))) (-15 -2559 ((-114) (-114))) (-15 -2739 ((-640 (-114)) |#1|)) (-15 -2058 ((-640 (-609 |#1|)) |#1|)) (-15 -2751 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -4238 ((-767) |#1|)) (-15 -2761 (|#1| |#1| |#1|)) (-15 -2761 (|#1| |#1|)) (-15 -3228 (|#1| (-640 |#1|))) (-15 -3228 (|#1| |#1|)) (-15 -3083 (|#1| (-640 |#1|))) (-15 -3083 (|#1| |#1|)) (-15 -4135 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -4135 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -4135 (|#1| |#1| (-294 |#1|))) (-15 -2308 (|#1| (-114) (-640 |#1|))) (-15 -2308 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2308 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2308 (|#1| (-114) |#1| |#1|)) (-15 -2308 (|#1| (-114) |#1|)) (-15 -1542 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#1| |#1|)) (-15 -1542 (|#1| |#1| (-294 |#1|))) (-15 -1542 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -1542 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -1542 (|#1| |#1| (-609 |#1|) |#1|)) (-15 -2130 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -2057 ((-609 |#1|) |#1|)))
+((-1677 (((-112) $ $) 7)) (-2058 (((-640 (-609 $)) $) 44)) (-4135 (($ $ (-294 $)) 56) (($ $ (-640 (-294 $))) 55) (($ $ (-640 (-609 $)) (-640 $)) 54)) (-2130 (((-3 (-609 $) "failed") $) 69)) (-2057 (((-609 $) $) 70)) (-3228 (($ $) 51) (($ (-640 $)) 50)) (-2739 (((-640 (-114)) $) 43)) (-2559 (((-114) (-114)) 42)) (-2959 (((-112) $) 22 (|has| $ (-1034 (-563))))) (-2716 (((-1165 $) (-609 $)) 25 (|has| $ (-1045)))) (-3088 (($ $ $) 13)) (-1776 (($ $ $) 14)) (-2238 (($ (-1 $ $) (-609 $)) 36)) (-2751 (((-3 (-609 $) "failed") $) 46)) (-3854 (((-1151) $) 9)) (-2126 (((-640 (-609 $)) $) 45)) (-2227 (($ (-114) $) 38) (($ (-114) (-640 $)) 37)) (-2602 (((-112) $ (-114)) 40) (((-112) $ (-1169)) 39)) (-4238 (((-767) $) 47)) (-1693 (((-1113) $) 10)) (-2726 (((-112) $ $) 35) (((-112) $ (-1169)) 34)) (-2969 (((-112) $) 23 (|has| $ (-1034 (-563))))) (-1542 (($ $ (-609 $) $) 67) (($ $ (-640 (-609 $)) (-640 $)) 66) (($ $ (-640 (-294 $))) 65) (($ $ (-294 $)) 64) (($ $ $ $) 63) (($ $ (-640 $) (-640 $)) 62) (($ $ (-640 (-1169)) (-640 (-1 $ $))) 33) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) 32) (($ $ (-1169) (-1 $ (-640 $))) 31) (($ $ (-1169) (-1 $ $)) 30) (($ $ (-640 (-114)) (-640 (-1 $ $))) 29) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) 28) (($ $ (-114) (-1 $ (-640 $))) 27) (($ $ (-114) (-1 $ $)) 26)) (-2308 (($ (-114) $) 61) (($ (-114) $ $) 60) (($ (-114) $ $ $) 59) (($ (-114) $ $ $ $) 58) (($ (-114) (-640 $)) 57)) (-2761 (($ $) 49) (($ $ $) 48)) (-3402 (($ $) 24 (|has| $ (-1045)))) (-1692 (((-858) $) 11) (($ (-609 $)) 68)) (-3083 (($ $) 53) (($ (-640 $)) 52)) (-2512 (((-112) (-114)) 41)) (-1779 (((-112) $ $) 16)) (-1754 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 15)) (-1743 (((-112) $ $) 18)))
(((-302) (-140)) (T -302))
-((-2309 (*1 *1 *2 *1) (-12 (-4 *1 (-302)) (-5 *2 (-114)))) (-2309 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-302)) (-5 *2 (-114)))) (-2309 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-302)) (-5 *2 (-114)))) (-2309 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-302)) (-5 *2 (-114)))) (-2309 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-640 *1)) (-4 *1 (-302)))) (-4132 (*1 *1 *1 *2) (-12 (-5 *2 (-294 *1)) (-4 *1 (-302)))) (-4132 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-294 *1))) (-4 *1 (-302)))) (-4132 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-609 *1))) (-5 *3 (-640 *1)) (-4 *1 (-302)))) (-3079 (*1 *1 *1) (-4 *1 (-302))) (-3079 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-302)))) (-3968 (*1 *1 *1) (-4 *1 (-302))) (-3968 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-302)))) (-3071 (*1 *1 *1) (-4 *1 (-302))) (-3071 (*1 *1 *1 *1) (-4 *1 (-302))) (-4236 (*1 *2 *1) (-12 (-4 *1 (-302)) (-5 *2 (-767)))) (-2875 (*1 *2 *1) (|partial| -12 (-5 *2 (-609 *1)) (-4 *1 (-302)))) (-2127 (*1 *2 *1) (-12 (-5 *2 (-640 (-609 *1))) (-4 *1 (-302)))) (-2059 (*1 *2 *1) (-12 (-5 *2 (-640 (-609 *1))) (-4 *1 (-302)))) (-3804 (*1 *2 *1) (-12 (-4 *1 (-302)) (-5 *2 (-640 (-114))))) (-2361 (*1 *2 *2) (-12 (-4 *1 (-302)) (-5 *2 (-114)))) (-3734 (*1 *2 *3) (-12 (-4 *1 (-302)) (-5 *3 (-114)) (-5 *2 (-112)))) (-2799 (*1 *2 *1 *3) (-12 (-4 *1 (-302)) (-5 *3 (-114)) (-5 *2 (-112)))) (-2799 (*1 *2 *1 *3) (-12 (-4 *1 (-302)) (-5 *3 (-1169)) (-5 *2 (-112)))) (-2227 (*1 *1 *2 *1) (-12 (-4 *1 (-302)) (-5 *2 (-114)))) (-2227 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-640 *1)) (-4 *1 (-302)))) (-2240 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-609 *1)) (-4 *1 (-302)))) (-1372 (*1 *2 *1 *1) (-12 (-4 *1 (-302)) (-5 *2 (-112)))) (-1372 (*1 *2 *1 *3) (-12 (-4 *1 (-302)) (-5 *3 (-1169)) (-5 *2 (-112)))) (-1540 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-640 (-1 *1 *1))) (-4 *1 (-302)))) (-1540 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-640 (-1 *1 (-640 *1)))) (-4 *1 (-302)))) (-1540 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1 *1 (-640 *1))) (-4 *1 (-302)))) (-1540 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1 *1 *1)) (-4 *1 (-302)))) (-1540 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-114))) (-5 *3 (-640 (-1 *1 *1))) (-4 *1 (-302)))) (-1540 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-114))) (-5 *3 (-640 (-1 *1 (-640 *1)))) (-4 *1 (-302)))) (-1540 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 (-640 *1))) (-4 *1 (-302)))) (-1540 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 *1)) (-4 *1 (-302)))) (-3180 (*1 *2 *3) (-12 (-5 *3 (-609 *1)) (-4 *1 (-1045)) (-4 *1 (-302)) (-5 *2 (-1165 *1)))) (-3390 (*1 *1 *1) (-12 (-4 *1 (-1045)) (-4 *1 (-302)))) (-2359 (*1 *2 *1) (-12 (-4 *1 (-1034 (-563))) (-4 *1 (-302)) (-5 *2 (-112)))) (-3131 (*1 *2 *1) (-12 (-4 *1 (-1034 (-563))) (-4 *1 (-302)) (-5 *2 (-112)))))
-(-13 (-846) (-1034 (-609 $)) (-514 (-609 $) $) (-309 $) (-10 -8 (-15 -2309 ($ (-114) $)) (-15 -2309 ($ (-114) $ $)) (-15 -2309 ($ (-114) $ $ $)) (-15 -2309 ($ (-114) $ $ $ $)) (-15 -2309 ($ (-114) (-640 $))) (-15 -4132 ($ $ (-294 $))) (-15 -4132 ($ $ (-640 (-294 $)))) (-15 -4132 ($ $ (-640 (-609 $)) (-640 $))) (-15 -3079 ($ $)) (-15 -3079 ($ (-640 $))) (-15 -3968 ($ $)) (-15 -3968 ($ (-640 $))) (-15 -3071 ($ $)) (-15 -3071 ($ $ $)) (-15 -4236 ((-767) $)) (-15 -2875 ((-3 (-609 $) "failed") $)) (-15 -2127 ((-640 (-609 $)) $)) (-15 -2059 ((-640 (-609 $)) $)) (-15 -3804 ((-640 (-114)) $)) (-15 -2361 ((-114) (-114))) (-15 -3734 ((-112) (-114))) (-15 -2799 ((-112) $ (-114))) (-15 -2799 ((-112) $ (-1169))) (-15 -2227 ($ (-114) $)) (-15 -2227 ($ (-114) (-640 $))) (-15 -2240 ($ (-1 $ $) (-609 $))) (-15 -1372 ((-112) $ $)) (-15 -1372 ((-112) $ (-1169))) (-15 -1540 ($ $ (-640 (-1169)) (-640 (-1 $ $)))) (-15 -1540 ($ $ (-640 (-1169)) (-640 (-1 $ (-640 $))))) (-15 -1540 ($ $ (-1169) (-1 $ (-640 $)))) (-15 -1540 ($ $ (-1169) (-1 $ $))) (-15 -1540 ($ $ (-640 (-114)) (-640 (-1 $ $)))) (-15 -1540 ($ $ (-640 (-114)) (-640 (-1 $ (-640 $))))) (-15 -1540 ($ $ (-114) (-1 $ (-640 $)))) (-15 -1540 ($ $ (-114) (-1 $ $))) (IF (|has| $ (-1045)) (PROGN (-15 -3180 ((-1165 $) (-609 $))) (-15 -3390 ($ $))) |%noBranch|) (IF (|has| $ (-1034 (-563))) (PROGN (-15 -2359 ((-112) $)) (-15 -3131 ((-112) $))) |%noBranch|)))
+((-2308 (*1 *1 *2 *1) (-12 (-4 *1 (-302)) (-5 *2 (-114)))) (-2308 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-302)) (-5 *2 (-114)))) (-2308 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-302)) (-5 *2 (-114)))) (-2308 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-302)) (-5 *2 (-114)))) (-2308 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-640 *1)) (-4 *1 (-302)))) (-4135 (*1 *1 *1 *2) (-12 (-5 *2 (-294 *1)) (-4 *1 (-302)))) (-4135 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-294 *1))) (-4 *1 (-302)))) (-4135 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-609 *1))) (-5 *3 (-640 *1)) (-4 *1 (-302)))) (-3083 (*1 *1 *1) (-4 *1 (-302))) (-3083 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-302)))) (-3228 (*1 *1 *1) (-4 *1 (-302))) (-3228 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-302)))) (-2761 (*1 *1 *1) (-4 *1 (-302))) (-2761 (*1 *1 *1 *1) (-4 *1 (-302))) (-4238 (*1 *2 *1) (-12 (-4 *1 (-302)) (-5 *2 (-767)))) (-2751 (*1 *2 *1) (|partial| -12 (-5 *2 (-609 *1)) (-4 *1 (-302)))) (-2126 (*1 *2 *1) (-12 (-5 *2 (-640 (-609 *1))) (-4 *1 (-302)))) (-2058 (*1 *2 *1) (-12 (-5 *2 (-640 (-609 *1))) (-4 *1 (-302)))) (-2739 (*1 *2 *1) (-12 (-4 *1 (-302)) (-5 *2 (-640 (-114))))) (-2559 (*1 *2 *2) (-12 (-4 *1 (-302)) (-5 *2 (-114)))) (-2512 (*1 *2 *3) (-12 (-4 *1 (-302)) (-5 *3 (-114)) (-5 *2 (-112)))) (-2602 (*1 *2 *1 *3) (-12 (-4 *1 (-302)) (-5 *3 (-114)) (-5 *2 (-112)))) (-2602 (*1 *2 *1 *3) (-12 (-4 *1 (-302)) (-5 *3 (-1169)) (-5 *2 (-112)))) (-2227 (*1 *1 *2 *1) (-12 (-4 *1 (-302)) (-5 *2 (-114)))) (-2227 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-640 *1)) (-4 *1 (-302)))) (-2238 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-609 *1)) (-4 *1 (-302)))) (-2726 (*1 *2 *1 *1) (-12 (-4 *1 (-302)) (-5 *2 (-112)))) (-2726 (*1 *2 *1 *3) (-12 (-4 *1 (-302)) (-5 *3 (-1169)) (-5 *2 (-112)))) (-1542 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-640 (-1 *1 *1))) (-4 *1 (-302)))) (-1542 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-640 (-1 *1 (-640 *1)))) (-4 *1 (-302)))) (-1542 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1 *1 (-640 *1))) (-4 *1 (-302)))) (-1542 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1 *1 *1)) (-4 *1 (-302)))) (-1542 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-114))) (-5 *3 (-640 (-1 *1 *1))) (-4 *1 (-302)))) (-1542 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-114))) (-5 *3 (-640 (-1 *1 (-640 *1)))) (-4 *1 (-302)))) (-1542 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 (-640 *1))) (-4 *1 (-302)))) (-1542 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 *1)) (-4 *1 (-302)))) (-2716 (*1 *2 *3) (-12 (-5 *3 (-609 *1)) (-4 *1 (-1045)) (-4 *1 (-302)) (-5 *2 (-1165 *1)))) (-3402 (*1 *1 *1) (-12 (-4 *1 (-1045)) (-4 *1 (-302)))) (-2969 (*1 *2 *1) (-12 (-4 *1 (-1034 (-563))) (-4 *1 (-302)) (-5 *2 (-112)))) (-2959 (*1 *2 *1) (-12 (-4 *1 (-1034 (-563))) (-4 *1 (-302)) (-5 *2 (-112)))))
+(-13 (-846) (-1034 (-609 $)) (-514 (-609 $) $) (-309 $) (-10 -8 (-15 -2308 ($ (-114) $)) (-15 -2308 ($ (-114) $ $)) (-15 -2308 ($ (-114) $ $ $)) (-15 -2308 ($ (-114) $ $ $ $)) (-15 -2308 ($ (-114) (-640 $))) (-15 -4135 ($ $ (-294 $))) (-15 -4135 ($ $ (-640 (-294 $)))) (-15 -4135 ($ $ (-640 (-609 $)) (-640 $))) (-15 -3083 ($ $)) (-15 -3083 ($ (-640 $))) (-15 -3228 ($ $)) (-15 -3228 ($ (-640 $))) (-15 -2761 ($ $)) (-15 -2761 ($ $ $)) (-15 -4238 ((-767) $)) (-15 -2751 ((-3 (-609 $) "failed") $)) (-15 -2126 ((-640 (-609 $)) $)) (-15 -2058 ((-640 (-609 $)) $)) (-15 -2739 ((-640 (-114)) $)) (-15 -2559 ((-114) (-114))) (-15 -2512 ((-112) (-114))) (-15 -2602 ((-112) $ (-114))) (-15 -2602 ((-112) $ (-1169))) (-15 -2227 ($ (-114) $)) (-15 -2227 ($ (-114) (-640 $))) (-15 -2238 ($ (-1 $ $) (-609 $))) (-15 -2726 ((-112) $ $)) (-15 -2726 ((-112) $ (-1169))) (-15 -1542 ($ $ (-640 (-1169)) (-640 (-1 $ $)))) (-15 -1542 ($ $ (-640 (-1169)) (-640 (-1 $ (-640 $))))) (-15 -1542 ($ $ (-1169) (-1 $ (-640 $)))) (-15 -1542 ($ $ (-1169) (-1 $ $))) (-15 -1542 ($ $ (-640 (-114)) (-640 (-1 $ $)))) (-15 -1542 ($ $ (-640 (-114)) (-640 (-1 $ (-640 $))))) (-15 -1542 ($ $ (-114) (-1 $ (-640 $)))) (-15 -1542 ($ $ (-114) (-1 $ $))) (IF (|has| $ (-1045)) (PROGN (-15 -2716 ((-1165 $) (-609 $))) (-15 -3402 ($ $))) |%noBranch|) (IF (|has| $ (-1034 (-563))) (PROGN (-15 -2969 ((-112) $)) (-15 -2959 ((-112) $))) |%noBranch|)))
(((-102) . T) ((-613 #0=(-609 $)) . T) ((-610 (-858)) . T) ((-309 $) . T) ((-514 (-609 $) $) . T) ((-514 $ $) . T) ((-846) . T) ((-1034 #0#) . T) ((-1093) . T))
-((-4044 (((-640 |#1|) (-640 |#1|)) 10)))
-(((-303 |#1|) (-10 -7 (-15 -4044 ((-640 |#1|) (-640 |#1|)))) (-844)) (T -303))
-((-4044 (*1 *2 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-844)) (-5 *1 (-303 *3)))))
-(-10 -7 (-15 -4044 ((-640 |#1|) (-640 |#1|))))
-((-2240 (((-684 |#2|) (-1 |#2| |#1|) (-684 |#1|)) 17)))
-(((-304 |#1| |#2|) (-10 -7 (-15 -2240 ((-684 |#2|) (-1 |#2| |#1|) (-684 |#1|)))) (-1045) (-1045)) (T -304))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-684 *5)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-5 *2 (-684 *6)) (-5 *1 (-304 *5 *6)))))
-(-10 -7 (-15 -2240 ((-684 |#2|) (-1 |#2| |#1|) (-684 |#1|))))
-((-3352 (((-1257 (-316 (-379))) (-1257 (-316 (-225)))) 105)) (-2271 (((-1087 (-839 (-225))) (-1087 (-839 (-379)))) 40)) (-1983 (((-640 (-1151)) (-1149 (-225))) 87)) (-2633 (((-316 (-379)) (-948 (-225))) 50)) (-2698 (((-225) (-948 (-225))) 46)) (-2446 (((-1151) (-379)) 169)) (-3230 (((-839 (-225)) (-839 (-379))) 34)) (-2469 (((-2 (|:| |additions| (-563)) (|:| |multiplications| (-563)) (|:| |exponentiations| (-563)) (|:| |functionCalls| (-563))) (-1257 (-316 (-225)))) 143)) (-2296 (((-1031) (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031)))) 181) (((-1031) (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))))) 179)) (-2835 (((-684 (-225)) (-640 (-225)) (-767)) 14)) (-2868 (((-1257 (-694)) (-640 (-225))) 94)) (-1636 (((-640 (-1151)) (-640 (-225))) 75)) (-4187 (((-3 (-316 (-225)) "failed") (-316 (-225))) 120)) (-3198 (((-112) (-225) (-1087 (-839 (-225)))) 109)) (-3873 (((-1031) (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379)))) 198)) (-2471 (((-225) (-1087 (-839 (-225)))) 107)) (-4107 (((-225) (-1087 (-839 (-225)))) 108)) (-2671 (((-225) (-407 (-563))) 27)) (-4353 (((-1151) (-379)) 73)) (-2642 (((-225) (-379)) 17)) (-2466 (((-379) (-1257 (-316 (-225)))) 154)) (-2528 (((-316 (-225)) (-316 (-379))) 23)) (-4073 (((-407 (-563)) (-316 (-225))) 53)) (-3496 (((-316 (-407 (-563))) (-316 (-225))) 69)) (-1390 (((-316 (-379)) (-316 (-225))) 98)) (-1988 (((-225) (-316 (-225))) 54)) (-3226 (((-640 (-225)) (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) 64)) (-4102 (((-1087 (-839 (-225))) (-1087 (-839 (-225)))) 61)) (-3274 (((-1151) (-225)) 72)) (-2830 (((-694) (-225)) 90)) (-4000 (((-407 (-563)) (-225)) 55)) (-3574 (((-316 (-379)) (-225)) 49)) (-2220 (((-640 (-1087 (-839 (-225)))) (-640 (-1087 (-839 (-379))))) 43)) (-2853 (((-1031) (-640 (-1031))) 165) (((-1031) (-1031) (-1031)) 162)) (-2103 (((-1031) (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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"))))) 195)))
-(((-305) (-10 -7 (-15 -2642 ((-225) (-379))) (-15 -2528 ((-316 (-225)) (-316 (-379)))) (-15 -3230 ((-839 (-225)) (-839 (-379)))) (-15 -2271 ((-1087 (-839 (-225))) (-1087 (-839 (-379))))) (-15 -2220 ((-640 (-1087 (-839 (-225)))) (-640 (-1087 (-839 (-379)))))) (-15 -4000 ((-407 (-563)) (-225))) (-15 -4073 ((-407 (-563)) (-316 (-225)))) (-15 -1988 ((-225) (-316 (-225)))) (-15 -4187 ((-3 (-316 (-225)) "failed") (-316 (-225)))) (-15 -2466 ((-379) (-1257 (-316 (-225))))) (-15 -2469 ((-2 (|:| |additions| (-563)) (|:| |multiplications| (-563)) (|:| |exponentiations| (-563)) (|:| |functionCalls| (-563))) (-1257 (-316 (-225))))) (-15 -3496 ((-316 (-407 (-563))) (-316 (-225)))) (-15 -4102 ((-1087 (-839 (-225))) (-1087 (-839 (-225))))) (-15 -3226 ((-640 (-225)) (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))))) (-15 -2830 ((-694) (-225))) (-15 -2868 ((-1257 (-694)) (-640 (-225)))) (-15 -1390 ((-316 (-379)) (-316 (-225)))) (-15 -3352 ((-1257 (-316 (-379))) (-1257 (-316 (-225))))) (-15 -3198 ((-112) (-225) (-1087 (-839 (-225))))) (-15 -3274 ((-1151) (-225))) (-15 -4353 ((-1151) (-379))) (-15 -1636 ((-640 (-1151)) (-640 (-225)))) (-15 -1983 ((-640 (-1151)) (-1149 (-225)))) (-15 -2471 ((-225) (-1087 (-839 (-225))))) (-15 -4107 ((-225) (-1087 (-839 (-225))))) (-15 -2853 ((-1031) (-1031) (-1031))) (-15 -2853 ((-1031) (-640 (-1031)))) (-15 -2446 ((-1151) (-379))) (-15 -2296 ((-1031) (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))))) (-15 -2296 ((-1031) (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))))) (-15 -2103 ((-1031) (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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 -3873 ((-1031) (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))))) (-15 -2633 ((-316 (-379)) (-948 (-225)))) (-15 -2698 ((-225) (-948 (-225)))) (-15 -3574 ((-316 (-379)) (-225))) (-15 -2671 ((-225) (-407 (-563)))) (-15 -2835 ((-684 (-225)) (-640 (-225)) (-767))))) (T -305))
-((-2835 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-225))) (-5 *4 (-767)) (-5 *2 (-684 (-225))) (-5 *1 (-305)))) (-2671 (*1 *2 *3) (-12 (-5 *3 (-407 (-563))) (-5 *2 (-225)) (-5 *1 (-305)))) (-3574 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-316 (-379))) (-5 *1 (-305)))) (-2698 (*1 *2 *3) (-12 (-5 *3 (-948 (-225))) (-5 *2 (-225)) (-5 *1 (-305)))) (-2633 (*1 *2 *3) (-12 (-5 *3 (-948 (-225))) (-5 *2 (-316 (-379))) (-5 *1 (-305)))) (-3873 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379)))) (-5 *2 (-1031)) (-5 *1 (-305)))) (-2103 (*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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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 (-1031)) (-5 *1 (-305)))) (-2296 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031)))) (-5 *2 (-1031)) (-5 *1 (-305)))) (-2296 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))))) (-5 *2 (-1031)) (-5 *1 (-305)))) (-2446 (*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1151)) (-5 *1 (-305)))) (-2853 (*1 *2 *3) (-12 (-5 *3 (-640 (-1031))) (-5 *2 (-1031)) (-5 *1 (-305)))) (-2853 (*1 *2 *2 *2) (-12 (-5 *2 (-1031)) (-5 *1 (-305)))) (-4107 (*1 *2 *3) (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-305)))) (-2471 (*1 *2 *3) (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-305)))) (-1983 (*1 *2 *3) (-12 (-5 *3 (-1149 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-305)))) (-1636 (*1 *2 *3) (-12 (-5 *3 (-640 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-305)))) (-4353 (*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1151)) (-5 *1 (-305)))) (-3274 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1151)) (-5 *1 (-305)))) (-3198 (*1 *2 *3 *4) (-12 (-5 *4 (-1087 (-839 (-225)))) (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-305)))) (-3352 (*1 *2 *3) (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *2 (-1257 (-316 (-379)))) (-5 *1 (-305)))) (-1390 (*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-316 (-379))) (-5 *1 (-305)))) (-2868 (*1 *2 *3) (-12 (-5 *3 (-640 (-225))) (-5 *2 (-1257 (-694))) (-5 *1 (-305)))) (-2830 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-694)) (-5 *1 (-305)))) (-3226 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) (-5 *2 (-640 (-225))) (-5 *1 (-305)))) (-4102 (*1 *2 *2) (-12 (-5 *2 (-1087 (-839 (-225)))) (-5 *1 (-305)))) (-3496 (*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-316 (-407 (-563)))) (-5 *1 (-305)))) (-2469 (*1 *2 *3) (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *2 (-2 (|:| |additions| (-563)) (|:| |multiplications| (-563)) (|:| |exponentiations| (-563)) (|:| |functionCalls| (-563)))) (-5 *1 (-305)))) (-2466 (*1 *2 *3) (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *2 (-379)) (-5 *1 (-305)))) (-4187 (*1 *2 *2) (|partial| -12 (-5 *2 (-316 (-225))) (-5 *1 (-305)))) (-1988 (*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-225)) (-5 *1 (-305)))) (-4073 (*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-407 (-563))) (-5 *1 (-305)))) (-4000 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-407 (-563))) (-5 *1 (-305)))) (-2220 (*1 *2 *3) (-12 (-5 *3 (-640 (-1087 (-839 (-379))))) (-5 *2 (-640 (-1087 (-839 (-225))))) (-5 *1 (-305)))) (-2271 (*1 *2 *3) (-12 (-5 *3 (-1087 (-839 (-379)))) (-5 *2 (-1087 (-839 (-225)))) (-5 *1 (-305)))) (-3230 (*1 *2 *3) (-12 (-5 *3 (-839 (-379))) (-5 *2 (-839 (-225))) (-5 *1 (-305)))) (-2528 (*1 *2 *3) (-12 (-5 *3 (-316 (-379))) (-5 *2 (-316 (-225))) (-5 *1 (-305)))) (-2642 (*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-225)) (-5 *1 (-305)))))
-(-10 -7 (-15 -2642 ((-225) (-379))) (-15 -2528 ((-316 (-225)) (-316 (-379)))) (-15 -3230 ((-839 (-225)) (-839 (-379)))) (-15 -2271 ((-1087 (-839 (-225))) (-1087 (-839 (-379))))) (-15 -2220 ((-640 (-1087 (-839 (-225)))) (-640 (-1087 (-839 (-379)))))) (-15 -4000 ((-407 (-563)) (-225))) (-15 -4073 ((-407 (-563)) (-316 (-225)))) (-15 -1988 ((-225) (-316 (-225)))) (-15 -4187 ((-3 (-316 (-225)) "failed") (-316 (-225)))) (-15 -2466 ((-379) (-1257 (-316 (-225))))) (-15 -2469 ((-2 (|:| |additions| (-563)) (|:| |multiplications| (-563)) (|:| |exponentiations| (-563)) (|:| |functionCalls| (-563))) (-1257 (-316 (-225))))) (-15 -3496 ((-316 (-407 (-563))) (-316 (-225)))) (-15 -4102 ((-1087 (-839 (-225))) (-1087 (-839 (-225))))) (-15 -3226 ((-640 (-225)) (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))))) (-15 -2830 ((-694) (-225))) (-15 -2868 ((-1257 (-694)) (-640 (-225)))) (-15 -1390 ((-316 (-379)) (-316 (-225)))) (-15 -3352 ((-1257 (-316 (-379))) (-1257 (-316 (-225))))) (-15 -3198 ((-112) (-225) (-1087 (-839 (-225))))) (-15 -3274 ((-1151) (-225))) (-15 -4353 ((-1151) (-379))) (-15 -1636 ((-640 (-1151)) (-640 (-225)))) (-15 -1983 ((-640 (-1151)) (-1149 (-225)))) (-15 -2471 ((-225) (-1087 (-839 (-225))))) (-15 -4107 ((-225) (-1087 (-839 (-225))))) (-15 -2853 ((-1031) (-1031) (-1031))) (-15 -2853 ((-1031) (-640 (-1031)))) (-15 -2446 ((-1151) (-379))) (-15 -2296 ((-1031) (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))))) (-15 -2296 ((-1031) (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))))) (-15 -2103 ((-1031) (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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 -3873 ((-1031) (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))))) (-15 -2633 ((-316 (-379)) (-948 (-225)))) (-15 -2698 ((-225) (-948 (-225)))) (-15 -3574 ((-316 (-379)) (-225))) (-15 -2671 ((-225) (-407 (-563)))) (-15 -2835 ((-684 (-225)) (-640 (-225)) (-767))))
-((-1919 (((-112) $ $) 11)) (-3090 (($ $ $) 15)) (-3050 (($ $ $) 14)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 43)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 52)) (-3548 (($ $ $) 20) (($ (-640 $)) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 31) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 36)) (-3008 (((-3 $ "failed") $ $) 17)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 45)))
-(((-306 |#1|) (-10 -8 (-15 -3643 ((-3 (-640 |#1|) "failed") (-640 |#1|) |#1|)) (-15 -3678 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -3678 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4333 |#1|)) |#1| |#1|)) (-15 -3090 (|#1| |#1| |#1|)) (-15 -3050 (|#1| |#1| |#1|)) (-15 -1919 ((-112) |#1| |#1|)) (-15 -1465 ((-3 (-640 |#1|) "failed") (-640 |#1|) |#1|)) (-15 -3286 ((-2 (|:| -2311 (-640 |#1|)) (|:| -4333 |#1|)) (-640 |#1|))) (-15 -3548 (|#1| (-640 |#1|))) (-15 -3548 (|#1| |#1| |#1|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#1|))) (-307)) (T -306))
-NIL
-(-10 -8 (-15 -3643 ((-3 (-640 |#1|) "failed") (-640 |#1|) |#1|)) (-15 -3678 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -3678 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4333 |#1|)) |#1| |#1|)) (-15 -3090 (|#1| |#1| |#1|)) (-15 -3050 (|#1| |#1| |#1|)) (-15 -1919 ((-112) |#1| |#1|)) (-15 -1465 ((-3 (-640 |#1|) "failed") (-640 |#1|) |#1|)) (-15 -3286 ((-2 (|:| -2311 (-640 |#1|)) (|:| -4333 |#1|)) (-640 |#1|))) (-15 -3548 (|#1| (-640 |#1|))) (-15 -3548 (|#1| |#1| |#1|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-1495 (((-3 $ "failed") $ $) 19)) (-1919 (((-112) $ $) 60)) (-4239 (($) 17 T CONST)) (-3090 (($ $ $) 56)) (-3400 (((-3 $ "failed") $) 33)) (-3050 (($ $ $) 57)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 52)) (-3827 (((-112) $) 31)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3008 (((-3 $ "failed") $ $) 43)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-2628 (((-767) $) 59)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 58)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 40)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-1967 (((-640 |#1|) (-640 |#1|)) 10)))
+(((-303 |#1|) (-10 -7 (-15 -1967 ((-640 |#1|) (-640 |#1|)))) (-844)) (T -303))
+((-1967 (*1 *2 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-844)) (-5 *1 (-303 *3)))))
+(-10 -7 (-15 -1967 ((-640 |#1|) (-640 |#1|))))
+((-2238 (((-684 |#2|) (-1 |#2| |#1|) (-684 |#1|)) 17)))
+(((-304 |#1| |#2|) (-10 -7 (-15 -2238 ((-684 |#2|) (-1 |#2| |#1|) (-684 |#1|)))) (-1045) (-1045)) (T -304))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-684 *5)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-5 *2 (-684 *6)) (-5 *1 (-304 *5 *6)))))
+(-10 -7 (-15 -2238 ((-684 |#2|) (-1 |#2| |#1|) (-684 |#1|))))
+((-2972 (((-1257 (-316 (-379))) (-1257 (-316 (-225)))) 105)) (-2858 (((-1087 (-839 (-225))) (-1087 (-839 (-379)))) 40)) (-3013 (((-640 (-1151)) (-1149 (-225))) 87)) (-3082 (((-316 (-379)) (-948 (-225))) 50)) (-3095 (((-225) (-948 (-225))) 46)) (-3044 (((-1151) (-379)) 170)) (-2848 (((-839 (-225)) (-839 (-379))) 34)) (-2903 (((-2 (|:| |additions| (-563)) (|:| |multiplications| (-563)) (|:| |exponentiations| (-563)) (|:| |functionCalls| (-563))) (-1257 (-316 (-225)))) 144)) (-3055 (((-1031) (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031)))) 182) (((-1031) (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))))) 180)) (-1957 (((-684 (-225)) (-640 (-225)) (-767)) 14)) (-2952 (((-1257 (-694)) (-640 (-225))) 94)) (-3002 (((-640 (-1151)) (-640 (-225))) 75)) (-4188 (((-3 (-316 (-225)) "failed") (-316 (-225))) 120)) (-1801 (((-112) (-225) (-1087 (-839 (-225)))) 109)) (-3073 (((-1031) (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379)))) 199)) (-3023 (((-225) (-1087 (-839 (-225)))) 107)) (-3033 (((-225) (-1087 (-839 (-225)))) 108)) (-3118 (((-225) (-407 (-563))) 27)) (-2991 (((-1151) (-379)) 73)) (-2828 (((-225) (-379)) 17)) (-2894 (((-379) (-1257 (-316 (-225)))) 155)) (-2839 (((-316 (-225)) (-316 (-379))) 23)) (-2876 (((-407 (-563)) (-316 (-225))) 53)) (-2913 (((-316 (-407 (-563))) (-316 (-225))) 69)) (-2962 (((-316 (-379)) (-316 (-225))) 98)) (-2885 (((-225) (-316 (-225))) 54)) (-2932 (((-640 (-225)) (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) 64)) (-2923 (((-1087 (-839 (-225))) (-1087 (-839 (-225)))) 61)) (-2981 (((-1151) (-225)) 72)) (-2942 (((-694) (-225)) 90)) (-2867 (((-407 (-563)) (-225)) 55)) (-3106 (((-316 (-379)) (-225)) 49)) (-2219 (((-640 (-1087 (-839 (-225)))) (-640 (-1087 (-839 (-379))))) 43)) (-2857 (((-1031) (-640 (-1031))) 166) (((-1031) (-1031) (-1031)) 163)) (-3064 (((-1031) (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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"))))) 196)))
+(((-305) (-10 -7 (-15 -2828 ((-225) (-379))) (-15 -2839 ((-316 (-225)) (-316 (-379)))) (-15 -2848 ((-839 (-225)) (-839 (-379)))) (-15 -2858 ((-1087 (-839 (-225))) (-1087 (-839 (-379))))) (-15 -2219 ((-640 (-1087 (-839 (-225)))) (-640 (-1087 (-839 (-379)))))) (-15 -2867 ((-407 (-563)) (-225))) (-15 -2876 ((-407 (-563)) (-316 (-225)))) (-15 -2885 ((-225) (-316 (-225)))) (-15 -4188 ((-3 (-316 (-225)) "failed") (-316 (-225)))) (-15 -2894 ((-379) (-1257 (-316 (-225))))) (-15 -2903 ((-2 (|:| |additions| (-563)) (|:| |multiplications| (-563)) (|:| |exponentiations| (-563)) (|:| |functionCalls| (-563))) (-1257 (-316 (-225))))) (-15 -2913 ((-316 (-407 (-563))) (-316 (-225)))) (-15 -2923 ((-1087 (-839 (-225))) (-1087 (-839 (-225))))) (-15 -2932 ((-640 (-225)) (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))))) (-15 -2942 ((-694) (-225))) (-15 -2952 ((-1257 (-694)) (-640 (-225)))) (-15 -2962 ((-316 (-379)) (-316 (-225)))) (-15 -2972 ((-1257 (-316 (-379))) (-1257 (-316 (-225))))) (-15 -1801 ((-112) (-225) (-1087 (-839 (-225))))) (-15 -2981 ((-1151) (-225))) (-15 -2991 ((-1151) (-379))) (-15 -3002 ((-640 (-1151)) (-640 (-225)))) (-15 -3013 ((-640 (-1151)) (-1149 (-225)))) (-15 -3023 ((-225) (-1087 (-839 (-225))))) (-15 -3033 ((-225) (-1087 (-839 (-225))))) (-15 -2857 ((-1031) (-1031) (-1031))) (-15 -2857 ((-1031) (-640 (-1031)))) (-15 -3044 ((-1151) (-379))) (-15 -3055 ((-1031) (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))))) (-15 -3055 ((-1031) (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))))) (-15 -3064 ((-1031) (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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 -3073 ((-1031) (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))))) (-15 -3082 ((-316 (-379)) (-948 (-225)))) (-15 -3095 ((-225) (-948 (-225)))) (-15 -3106 ((-316 (-379)) (-225))) (-15 -3118 ((-225) (-407 (-563)))) (-15 -1957 ((-684 (-225)) (-640 (-225)) (-767))))) (T -305))
+((-1957 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-225))) (-5 *4 (-767)) (-5 *2 (-684 (-225))) (-5 *1 (-305)))) (-3118 (*1 *2 *3) (-12 (-5 *3 (-407 (-563))) (-5 *2 (-225)) (-5 *1 (-305)))) (-3106 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-316 (-379))) (-5 *1 (-305)))) (-3095 (*1 *2 *3) (-12 (-5 *3 (-948 (-225))) (-5 *2 (-225)) (-5 *1 (-305)))) (-3082 (*1 *2 *3) (-12 (-5 *3 (-948 (-225))) (-5 *2 (-316 (-379))) (-5 *1 (-305)))) (-3073 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379)))) (-5 *2 (-1031)) (-5 *1 (-305)))) (-3064 (*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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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 (-1031)) (-5 *1 (-305)))) (-3055 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031)))) (-5 *2 (-1031)) (-5 *1 (-305)))) (-3055 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))))) (-5 *2 (-1031)) (-5 *1 (-305)))) (-3044 (*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1151)) (-5 *1 (-305)))) (-2857 (*1 *2 *3) (-12 (-5 *3 (-640 (-1031))) (-5 *2 (-1031)) (-5 *1 (-305)))) (-2857 (*1 *2 *2 *2) (-12 (-5 *2 (-1031)) (-5 *1 (-305)))) (-3033 (*1 *2 *3) (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-305)))) (-3023 (*1 *2 *3) (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-305)))) (-3013 (*1 *2 *3) (-12 (-5 *3 (-1149 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-305)))) (-3002 (*1 *2 *3) (-12 (-5 *3 (-640 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-305)))) (-2991 (*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1151)) (-5 *1 (-305)))) (-2981 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1151)) (-5 *1 (-305)))) (-1801 (*1 *2 *3 *4) (-12 (-5 *4 (-1087 (-839 (-225)))) (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-305)))) (-2972 (*1 *2 *3) (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *2 (-1257 (-316 (-379)))) (-5 *1 (-305)))) (-2962 (*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-316 (-379))) (-5 *1 (-305)))) (-2952 (*1 *2 *3) (-12 (-5 *3 (-640 (-225))) (-5 *2 (-1257 (-694))) (-5 *1 (-305)))) (-2942 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-694)) (-5 *1 (-305)))) (-2932 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) (-5 *2 (-640 (-225))) (-5 *1 (-305)))) (-2923 (*1 *2 *2) (-12 (-5 *2 (-1087 (-839 (-225)))) (-5 *1 (-305)))) (-2913 (*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-316 (-407 (-563)))) (-5 *1 (-305)))) (-2903 (*1 *2 *3) (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *2 (-2 (|:| |additions| (-563)) (|:| |multiplications| (-563)) (|:| |exponentiations| (-563)) (|:| |functionCalls| (-563)))) (-5 *1 (-305)))) (-2894 (*1 *2 *3) (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *2 (-379)) (-5 *1 (-305)))) (-4188 (*1 *2 *2) (|partial| -12 (-5 *2 (-316 (-225))) (-5 *1 (-305)))) (-2885 (*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-225)) (-5 *1 (-305)))) (-2876 (*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-407 (-563))) (-5 *1 (-305)))) (-2867 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-407 (-563))) (-5 *1 (-305)))) (-2219 (*1 *2 *3) (-12 (-5 *3 (-640 (-1087 (-839 (-379))))) (-5 *2 (-640 (-1087 (-839 (-225))))) (-5 *1 (-305)))) (-2858 (*1 *2 *3) (-12 (-5 *3 (-1087 (-839 (-379)))) (-5 *2 (-1087 (-839 (-225)))) (-5 *1 (-305)))) (-2848 (*1 *2 *3) (-12 (-5 *3 (-839 (-379))) (-5 *2 (-839 (-225))) (-5 *1 (-305)))) (-2839 (*1 *2 *3) (-12 (-5 *3 (-316 (-379))) (-5 *2 (-316 (-225))) (-5 *1 (-305)))) (-2828 (*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-225)) (-5 *1 (-305)))))
+(-10 -7 (-15 -2828 ((-225) (-379))) (-15 -2839 ((-316 (-225)) (-316 (-379)))) (-15 -2848 ((-839 (-225)) (-839 (-379)))) (-15 -2858 ((-1087 (-839 (-225))) (-1087 (-839 (-379))))) (-15 -2219 ((-640 (-1087 (-839 (-225)))) (-640 (-1087 (-839 (-379)))))) (-15 -2867 ((-407 (-563)) (-225))) (-15 -2876 ((-407 (-563)) (-316 (-225)))) (-15 -2885 ((-225) (-316 (-225)))) (-15 -4188 ((-3 (-316 (-225)) "failed") (-316 (-225)))) (-15 -2894 ((-379) (-1257 (-316 (-225))))) (-15 -2903 ((-2 (|:| |additions| (-563)) (|:| |multiplications| (-563)) (|:| |exponentiations| (-563)) (|:| |functionCalls| (-563))) (-1257 (-316 (-225))))) (-15 -2913 ((-316 (-407 (-563))) (-316 (-225)))) (-15 -2923 ((-1087 (-839 (-225))) (-1087 (-839 (-225))))) (-15 -2932 ((-640 (-225)) (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))))) (-15 -2942 ((-694) (-225))) (-15 -2952 ((-1257 (-694)) (-640 (-225)))) (-15 -2962 ((-316 (-379)) (-316 (-225)))) (-15 -2972 ((-1257 (-316 (-379))) (-1257 (-316 (-225))))) (-15 -1801 ((-112) (-225) (-1087 (-839 (-225))))) (-15 -2981 ((-1151) (-225))) (-15 -2991 ((-1151) (-379))) (-15 -3002 ((-640 (-1151)) (-640 (-225)))) (-15 -3013 ((-640 (-1151)) (-1149 (-225)))) (-15 -3023 ((-225) (-1087 (-839 (-225))))) (-15 -3033 ((-225) (-1087 (-839 (-225))))) (-15 -2857 ((-1031) (-1031) (-1031))) (-15 -2857 ((-1031) (-640 (-1031)))) (-15 -3044 ((-1151) (-379))) (-15 -3055 ((-1031) (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))))) (-15 -3055 ((-1031) (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))))) (-15 -3064 ((-1031) (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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 -3073 ((-1031) (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))))) (-15 -3082 ((-316 (-379)) (-948 (-225)))) (-15 -3095 ((-225) (-948 (-225)))) (-15 -3106 ((-316 (-379)) (-225))) (-15 -3118 ((-225) (-407 (-563)))) (-15 -1957 ((-684 (-225)) (-640 (-225)) (-767))))
+((-2003 (((-112) $ $) 11)) (-3094 (($ $ $) 15)) (-3054 (($ $ $) 14)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 43)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3551 (($ $ $) 21) (($ (-640 $)) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 31) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 36)) (-3012 (((-3 $ "failed") $ $) 18)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 46)))
+(((-306 |#1|) (-10 -8 (-15 -1977 ((-3 (-640 |#1|) "failed") (-640 |#1|) |#1|)) (-15 -1984 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -1984 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4334 |#1|)) |#1| |#1|)) (-15 -3094 (|#1| |#1| |#1|)) (-15 -3054 (|#1| |#1| |#1|)) (-15 -2003 ((-112) |#1| |#1|)) (-15 -2461 ((-3 (-640 |#1|) "failed") (-640 |#1|) |#1|)) (-15 -2474 ((-2 (|:| -2310 (-640 |#1|)) (|:| -4334 |#1|)) (-640 |#1|))) (-15 -3551 (|#1| (-640 |#1|))) (-15 -3551 (|#1| |#1| |#1|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#1|))) (-307)) (T -306))
+NIL
+(-10 -8 (-15 -1977 ((-3 (-640 |#1|) "failed") (-640 |#1|) |#1|)) (-15 -1984 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -1984 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4334 |#1|)) |#1| |#1|)) (-15 -3094 (|#1| |#1| |#1|)) (-15 -3054 (|#1| |#1| |#1|)) (-15 -2003 ((-112) |#1| |#1|)) (-15 -2461 ((-3 (-640 |#1|) "failed") (-640 |#1|) |#1|)) (-15 -2474 ((-2 (|:| -2310 (-640 |#1|)) (|:| -4334 |#1|)) (-640 |#1|))) (-15 -3551 (|#1| (-640 |#1|))) (-15 -3551 (|#1| |#1| |#1|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-3905 (((-3 $ "failed") $ $) 19)) (-2003 (((-112) $ $) 60)) (-2569 (($) 17 T CONST)) (-3094 (($ $ $) 56)) (-3951 (((-3 $ "failed") $) 33)) (-3054 (($ $ $) 57)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 52)) (-3401 (((-112) $) 31)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3012 (((-3 $ "failed") $ $) 43)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-1993 (((-767) $) 59)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 58)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 40)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-307) (-140)) (T -307))
-((-1919 (*1 *2 *1 *1) (-12 (-4 *1 (-307)) (-5 *2 (-112)))) (-2628 (*1 *2 *1) (-12 (-4 *1 (-307)) (-5 *2 (-767)))) (-2452 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-307)))) (-3050 (*1 *1 *1 *1) (-4 *1 (-307))) (-3090 (*1 *1 *1 *1) (-4 *1 (-307))) (-3678 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4333 *1))) (-4 *1 (-307)))) (-3678 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-307)))) (-3643 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-640 *1)) (-4 *1 (-307)))))
-(-13 (-916) (-10 -8 (-15 -1919 ((-112) $ $)) (-15 -2628 ((-767) $)) (-15 -2452 ((-2 (|:| -3490 $) (|:| -1972 $)) $ $)) (-15 -3050 ($ $ $)) (-15 -3090 ($ $ $)) (-15 -3678 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $)) (-15 -3678 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -3643 ((-3 (-640 $) "failed") (-640 $) $))))
+((-2003 (*1 *2 *1 *1) (-12 (-4 *1 (-307)) (-5 *2 (-112)))) (-1993 (*1 *2 *1) (-12 (-4 *1 (-307)) (-5 *2 (-767)))) (-3263 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-307)))) (-3054 (*1 *1 *1 *1) (-4 *1 (-307))) (-3094 (*1 *1 *1 *1) (-4 *1 (-307))) (-1984 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4334 *1))) (-4 *1 (-307)))) (-1984 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-307)))) (-1977 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-640 *1)) (-4 *1 (-307)))))
+(-13 (-916) (-10 -8 (-15 -2003 ((-112) $ $)) (-15 -1993 ((-767) $)) (-15 -3263 ((-2 (|:| -1765 $) (|:| -3443 $)) $ $)) (-15 -3054 ($ $ $)) (-15 -3094 ($ $ $)) (-15 -1984 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $)) (-15 -1984 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -1977 ((-3 (-640 $) "failed") (-640 $) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-290) . T) ((-452) . T) ((-555) . T) ((-643 $) . T) ((-713 $) . T) ((-722) . T) ((-916) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1540 (($ $ (-640 |#2|) (-640 |#2|)) 14) (($ $ |#2| |#2|) NIL) (($ $ (-294 |#2|)) 11) (($ $ (-640 (-294 |#2|))) NIL)))
-(((-308 |#1| |#2|) (-10 -8 (-15 -1540 (|#1| |#1| (-640 (-294 |#2|)))) (-15 -1540 (|#1| |#1| (-294 |#2|))) (-15 -1540 (|#1| |#1| |#2| |#2|)) (-15 -1540 (|#1| |#1| (-640 |#2|) (-640 |#2|)))) (-309 |#2|) (-1093)) (T -308))
+((-1542 (($ $ (-640 |#2|) (-640 |#2|)) 14) (($ $ |#2| |#2|) NIL) (($ $ (-294 |#2|)) 11) (($ $ (-640 (-294 |#2|))) NIL)))
+(((-308 |#1| |#2|) (-10 -8 (-15 -1542 (|#1| |#1| (-640 (-294 |#2|)))) (-15 -1542 (|#1| |#1| (-294 |#2|))) (-15 -1542 (|#1| |#1| |#2| |#2|)) (-15 -1542 (|#1| |#1| (-640 |#2|) (-640 |#2|)))) (-309 |#2|) (-1093)) (T -308))
NIL
-(-10 -8 (-15 -1540 (|#1| |#1| (-640 (-294 |#2|)))) (-15 -1540 (|#1| |#1| (-294 |#2|))) (-15 -1540 (|#1| |#1| |#2| |#2|)) (-15 -1540 (|#1| |#1| (-640 |#2|) (-640 |#2|))))
-((-1540 (($ $ (-640 |#1|) (-640 |#1|)) 7) (($ $ |#1| |#1|) 6) (($ $ (-294 |#1|)) 11) (($ $ (-640 (-294 |#1|))) 10)))
+(-10 -8 (-15 -1542 (|#1| |#1| (-640 (-294 |#2|)))) (-15 -1542 (|#1| |#1| (-294 |#2|))) (-15 -1542 (|#1| |#1| |#2| |#2|)) (-15 -1542 (|#1| |#1| (-640 |#2|) (-640 |#2|))))
+((-1542 (($ $ (-640 |#1|) (-640 |#1|)) 7) (($ $ |#1| |#1|) 6) (($ $ (-294 |#1|)) 11) (($ $ (-640 (-294 |#1|))) 10)))
(((-309 |#1|) (-140) (-1093)) (T -309))
-((-1540 (*1 *1 *1 *2) (-12 (-5 *2 (-294 *3)) (-4 *1 (-309 *3)) (-4 *3 (-1093)))) (-1540 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-294 *3))) (-4 *1 (-309 *3)) (-4 *3 (-1093)))))
-(-13 (-514 |t#1| |t#1|) (-10 -8 (-15 -1540 ($ $ (-294 |t#1|))) (-15 -1540 ($ $ (-640 (-294 |t#1|))))))
+((-1542 (*1 *1 *1 *2) (-12 (-5 *2 (-294 *3)) (-4 *1 (-309 *3)) (-4 *3 (-1093)))) (-1542 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-294 *3))) (-4 *1 (-309 *3)) (-4 *3 (-1093)))))
+(-13 (-514 |t#1| |t#1|) (-10 -8 (-15 -1542 ($ $ (-294 |t#1|))) (-15 -1542 ($ $ (-640 (-294 |t#1|))))))
(((-514 |#1| |#1|) . T))
-((-1540 ((|#1| (-1 |#1| (-563)) (-1171 (-407 (-563)))) 25)))
-(((-310 |#1|) (-10 -7 (-15 -1540 (|#1| (-1 |#1| (-563)) (-1171 (-407 (-563)))))) (-38 (-407 (-563)))) (T -310))
-((-1540 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-563))) (-5 *4 (-1171 (-407 (-563)))) (-5 *1 (-310 *2)) (-4 *2 (-38 (-407 (-563)))))))
-(-10 -7 (-15 -1540 (|#1| (-1 |#1| (-563)) (-1171 (-407 (-563))))))
-((-1677 (((-112) $ $) NIL)) (-1407 (((-563) $) 12)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3685 (((-1128) $) 9)) (-1693 (((-858) $) 21) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-311) (-13 (-1076) (-10 -8 (-15 -3685 ((-1128) $)) (-15 -1407 ((-563) $))))) (T -311))
-((-3685 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-311)))) (-1407 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-311)))))
-(-13 (-1076) (-10 -8 (-15 -3685 ((-1128) $)) (-15 -1407 ((-563) $))))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 7)) (-1718 (((-112) $ $) 9)))
+((-1542 ((|#1| (-1 |#1| (-563)) (-1171 (-407 (-563)))) 25)))
+(((-310 |#1|) (-10 -7 (-15 -1542 (|#1| (-1 |#1| (-563)) (-1171 (-407 (-563)))))) (-38 (-407 (-563)))) (T -310))
+((-1542 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-563))) (-5 *4 (-1171 (-407 (-563)))) (-5 *1 (-310 *2)) (-4 *2 (-38 (-407 (-563)))))))
+(-10 -7 (-15 -1542 (|#1| (-1 |#1| (-563)) (-1171 (-407 (-563))))))
+((-1677 (((-112) $ $) NIL)) (-1407 (((-563) $) 12)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3687 (((-1128) $) 9)) (-1692 (((-858) $) 21) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-311) (-13 (-1076) (-10 -8 (-15 -3687 ((-1128) $)) (-15 -1407 ((-563) $))))) (T -311))
+((-3687 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-311)))) (-1407 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-311)))))
+(-13 (-1076) (-10 -8 (-15 -3687 ((-1128) $)) (-15 -1407 ((-563) $))))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 7)) (-1718 (((-112) $ $) 9)))
(((-312) (-1093)) (T -312))
NIL
(-1093)
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 62)) (-3401 (((-1243 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-307)))) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-905)))) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-905)))) (-1919 (((-112) $ $) NIL)) (-1857 (((-563) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-816)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-1243 |#1| |#2| |#3| |#4|) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1034 (-563)))) (((-3 (-1242 |#2| |#3| |#4|) "failed") $) 25)) (-2058 (((-1243 |#1| |#2| |#3| |#4|) $) NIL) (((-1169) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1034 (-563)))) (((-563) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1034 (-563)))) (((-1242 |#2| |#3| |#4|) $) NIL)) (-3090 (($ $ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-1243 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1257 (-1243 |#1| |#2| |#3| |#4|)))) (-684 $) (-1257 $)) NIL) (((-684 (-1243 |#1| |#2| |#3| |#4|)) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-545)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3101 (((-112) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-816)))) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-882 (-379))))) (-3827 (((-112) $) NIL)) (-2711 (($ $) NIL)) (-2143 (((-1243 |#1| |#2| |#3| |#4|) $) 21)) (-2408 (((-3 $ "failed") $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1144)))) (-1419 (((-112) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-816)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3084 (($ $ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-846)))) (-1777 (($ $ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-846)))) (-2240 (($ (-1 (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|)) $) NIL)) (-4363 (((-3 (-839 |#2|) "failed") $) 78)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1144)) CONST)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-4215 (($ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-307)))) (-1583 (((-1243 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-545)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-905)))) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1540 (($ $ (-640 (-1243 |#1| |#2| |#3| |#4|)) (-640 (-1243 |#1| |#2| |#3| |#4|))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-309 (-1243 |#1| |#2| |#3| |#4|)))) (($ $ (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-309 (-1243 |#1| |#2| |#3| |#4|)))) (($ $ (-294 (-1243 |#1| |#2| |#3| |#4|))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-309 (-1243 |#1| |#2| |#3| |#4|)))) (($ $ (-640 (-294 (-1243 |#1| |#2| |#3| |#4|)))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-309 (-1243 |#1| |#2| |#3| |#4|)))) (($ $ (-640 (-1169)) (-640 (-1243 |#1| |#2| |#3| |#4|))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-514 (-1169) (-1243 |#1| |#2| |#3| |#4|)))) (($ $ (-1169) (-1243 |#1| |#2| |#3| |#4|)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-514 (-1169) (-1243 |#1| |#2| |#3| |#4|))))) (-2628 (((-767) $) NIL)) (-2309 (($ $ (-1243 |#1| |#2| |#3| |#4|)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-286 (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|))))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-4202 (($ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-767)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-1169)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-1 (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|)) (-767)) NIL) (($ $ (-1 (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|))) NIL)) (-1801 (($ $) NIL)) (-2154 (((-1243 |#1| |#2| |#3| |#4|) $) 17)) (-2220 (((-888 (-563)) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-611 (-888 (-379))))) (((-536) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-611 (-536)))) (((-379) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1018))) (((-225) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1018)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-1243 |#1| |#2| |#3| |#4|) (-905))))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-1243 |#1| |#2| |#3| |#4|)) 29) (($ (-1169)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1034 (-1169)))) (($ (-1242 |#2| |#3| |#4|)) 36)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| (-1243 |#1| |#2| |#3| |#4|) (-905))) (|has| (-1243 |#1| |#2| |#3| |#4|) (-145))))) (-1675 (((-767)) NIL)) (-4194 (((-1243 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-545)))) (-2126 (((-112) $ $) NIL)) (-2509 (($ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-816)))) (-2241 (($) 41 T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-767)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-1169)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-1 (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|)) (-767)) NIL) (($ $ (-1 (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|))) NIL)) (-1778 (((-112) $ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-846)))) (-1756 (((-112) $ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-846)))) (-1744 (((-112) $ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-846)))) (-1837 (($ $ $) 34) (($ (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|)) 31)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ (-1243 |#1| |#2| |#3| |#4|) $) 30) (($ $ (-1243 |#1| |#2| |#3| |#4|)) NIL)))
-(((-313 |#1| |#2| |#3| |#4|) (-13 (-988 (-1243 |#1| |#2| |#3| |#4|)) (-1034 (-1242 |#2| |#3| |#4|)) (-10 -8 (-15 -4363 ((-3 (-839 |#2|) "failed") $)) (-15 -1693 ($ (-1242 |#2| |#3| |#4|))))) (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452)) (-13 (-27) (-1193) (-430 |#1|)) (-1169) |#2|) (T -313))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1242 *4 *5 *6)) (-4 *4 (-13 (-27) (-1193) (-430 *3))) (-14 *5 (-1169)) (-14 *6 *4) (-4 *3 (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452))) (-5 *1 (-313 *3 *4 *5 *6)))) (-4363 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452))) (-5 *2 (-839 *4)) (-5 *1 (-313 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1193) (-430 *3))) (-14 *5 (-1169)) (-14 *6 *4))))
-(-13 (-988 (-1243 |#1| |#2| |#3| |#4|)) (-1034 (-1242 |#2| |#3| |#4|)) (-10 -8 (-15 -4363 ((-3 (-839 |#2|) "failed") $)) (-15 -1693 ($ (-1242 |#2| |#3| |#4|)))))
-((-2240 (((-316 |#2|) (-1 |#2| |#1|) (-316 |#1|)) 13)))
-(((-314 |#1| |#2|) (-10 -7 (-15 -2240 ((-316 |#2|) (-1 |#2| |#1|) (-316 |#1|)))) (-846) (-846)) (T -314))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-316 *5)) (-4 *5 (-846)) (-4 *6 (-846)) (-5 *2 (-316 *6)) (-5 *1 (-314 *5 *6)))))
-(-10 -7 (-15 -2240 ((-316 |#2|) (-1 |#2| |#1|) (-316 |#1|))))
-((-2652 (((-52) |#2| (-294 |#2|) (-767)) 33) (((-52) |#2| (-294 |#2|)) 24) (((-52) |#2| (-767)) 28) (((-52) |#2|) 25) (((-52) (-1169)) 21)) (-3045 (((-52) |#2| (-294 |#2|) (-407 (-563))) 51) (((-52) |#2| (-294 |#2|)) 48) (((-52) |#2| (-407 (-563))) 50) (((-52) |#2|) 49) (((-52) (-1169)) 47)) (-2670 (((-52) |#2| (-294 |#2|) (-407 (-563))) 46) (((-52) |#2| (-294 |#2|)) 43) (((-52) |#2| (-407 (-563))) 45) (((-52) |#2|) 44) (((-52) (-1169)) 42)) (-2660 (((-52) |#2| (-294 |#2|) (-563)) 39) (((-52) |#2| (-294 |#2|)) 35) (((-52) |#2| (-563)) 38) (((-52) |#2|) 36) (((-52) (-1169)) 34)))
-(((-315 |#1| |#2|) (-10 -7 (-15 -2652 ((-52) (-1169))) (-15 -2652 ((-52) |#2|)) (-15 -2652 ((-52) |#2| (-767))) (-15 -2652 ((-52) |#2| (-294 |#2|))) (-15 -2652 ((-52) |#2| (-294 |#2|) (-767))) (-15 -2660 ((-52) (-1169))) (-15 -2660 ((-52) |#2|)) (-15 -2660 ((-52) |#2| (-563))) (-15 -2660 ((-52) |#2| (-294 |#2|))) (-15 -2660 ((-52) |#2| (-294 |#2|) (-563))) (-15 -2670 ((-52) (-1169))) (-15 -2670 ((-52) |#2|)) (-15 -2670 ((-52) |#2| (-407 (-563)))) (-15 -2670 ((-52) |#2| (-294 |#2|))) (-15 -2670 ((-52) |#2| (-294 |#2|) (-407 (-563)))) (-15 -3045 ((-52) (-1169))) (-15 -3045 ((-52) |#2|)) (-15 -3045 ((-52) |#2| (-407 (-563)))) (-15 -3045 ((-52) |#2| (-294 |#2|))) (-15 -3045 ((-52) |#2| (-294 |#2|) (-407 (-563))))) (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|))) (T -315))
-((-3045 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-294 *3)) (-5 *5 (-407 (-563))) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *6 *3)))) (-3045 (*1 *2 *3 *4) (-12 (-5 *4 (-294 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)))) (-3045 (*1 *2 *3 *4) (-12 (-5 *4 (-407 (-563))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-3045 (*1 *2 *3) (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *4))))) (-3045 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *5)) (-4 *5 (-13 (-27) (-1193) (-430 *4))))) (-2670 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-294 *3)) (-5 *5 (-407 (-563))) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *6 *3)))) (-2670 (*1 *2 *3 *4) (-12 (-5 *4 (-294 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)))) (-2670 (*1 *2 *3 *4) (-12 (-5 *4 (-407 (-563))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-2670 (*1 *2 *3) (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *4))))) (-2670 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *5)) (-4 *5 (-13 (-27) (-1193) (-430 *4))))) (-2660 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-294 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-452) (-846) (-1034 *5) (-636 *5))) (-5 *5 (-563)) (-5 *2 (-52)) (-5 *1 (-315 *6 *3)))) (-2660 (*1 *2 *3 *4) (-12 (-5 *4 (-294 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)))) (-2660 (*1 *2 *3 *4) (-12 (-5 *4 (-563)) (-4 *5 (-13 (-452) (-846) (-1034 *4) (-636 *4))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-2660 (*1 *2 *3) (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *4))))) (-2660 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *5)) (-4 *5 (-13 (-27) (-1193) (-430 *4))))) (-2652 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-294 *3)) (-5 *5 (-767)) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *6 *3)))) (-2652 (*1 *2 *3 *4) (-12 (-5 *4 (-294 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)))) (-2652 (*1 *2 *3 *4) (-12 (-5 *4 (-767)) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-2652 (*1 *2 *3) (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *4))))) (-2652 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *5)) (-4 *5 (-13 (-27) (-1193) (-430 *4))))))
-(-10 -7 (-15 -2652 ((-52) (-1169))) (-15 -2652 ((-52) |#2|)) (-15 -2652 ((-52) |#2| (-767))) (-15 -2652 ((-52) |#2| (-294 |#2|))) (-15 -2652 ((-52) |#2| (-294 |#2|) (-767))) (-15 -2660 ((-52) (-1169))) (-15 -2660 ((-52) |#2|)) (-15 -2660 ((-52) |#2| (-563))) (-15 -2660 ((-52) |#2| (-294 |#2|))) (-15 -2660 ((-52) |#2| (-294 |#2|) (-563))) (-15 -2670 ((-52) (-1169))) (-15 -2670 ((-52) |#2|)) (-15 -2670 ((-52) |#2| (-407 (-563)))) (-15 -2670 ((-52) |#2| (-294 |#2|))) (-15 -2670 ((-52) |#2| (-294 |#2|) (-407 (-563)))) (-15 -3045 ((-52) (-1169))) (-15 -3045 ((-52) |#2|)) (-15 -3045 ((-52) |#2| (-407 (-563)))) (-15 -3045 ((-52) |#2| (-294 |#2|))) (-15 -3045 ((-52) |#2| (-294 |#2|) (-407 (-563)))))
-((-1677 (((-112) $ $) NIL)) (-2802 (((-640 $) $ (-1169)) NIL (|has| |#1| (-555))) (((-640 $) $) NIL (|has| |#1| (-555))) (((-640 $) (-1165 $) (-1169)) NIL (|has| |#1| (-555))) (((-640 $) (-1165 $)) NIL (|has| |#1| (-555))) (((-640 $) (-948 $)) NIL (|has| |#1| (-555)))) (-3070 (($ $ (-1169)) NIL (|has| |#1| (-555))) (($ $) NIL (|has| |#1| (-555))) (($ (-1165 $) (-1169)) NIL (|has| |#1| (-555))) (($ (-1165 $)) NIL (|has| |#1| (-555))) (($ (-948 $)) NIL (|has| |#1| (-555)))) (-3411 (((-112) $) 27 (-4032 (|has| |#1| (-25)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))))) (-2606 (((-640 (-1169)) $) 348)) (-2139 (((-407 (-1165 $)) $ (-609 $)) NIL (|has| |#1| (-555)))) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-2059 (((-640 (-609 $)) $) NIL)) (-1771 (($ $) 158 (|has| |#1| (-555)))) (-1619 (($ $) 134 (|has| |#1| (-555)))) (-3743 (($ $ (-1085 $)) 219 (|has| |#1| (-555))) (($ $ (-1169)) 215 (|has| |#1| (-555)))) (-1495 (((-3 $ "failed") $ $) NIL (-4032 (|has| |#1| (-21)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))))) (-4132 (($ $ (-294 $)) NIL) (($ $ (-640 (-294 $))) 365) (($ $ (-640 (-609 $)) (-640 $)) 409)) (-2424 (((-418 (-1165 $)) (-1165 $)) 293 (-12 (|has| |#1| (-452)) (|has| |#1| (-555))))) (-4335 (($ $) NIL (|has| |#1| (-555)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-555)))) (-2186 (($ $) NIL (|has| |#1| (-555)))) (-1919 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1748 (($ $) 154 (|has| |#1| (-555)))) (-1597 (($ $) 130 (|has| |#1| (-555)))) (-4145 (($ $ (-563)) 67 (|has| |#1| (-555)))) (-1794 (($ $) 162 (|has| |#1| (-555)))) (-1643 (($ $) 138 (|has| |#1| (-555)))) (-4239 (($) NIL (-4032 (|has| |#1| (-25)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) (|has| |#1| (-1105))) CONST)) (-4144 (((-640 $) $ (-1169)) NIL (|has| |#1| (-555))) (((-640 $) $) NIL (|has| |#1| (-555))) (((-640 $) (-1165 $) (-1169)) NIL (|has| |#1| (-555))) (((-640 $) (-1165 $)) NIL (|has| |#1| (-555))) (((-640 $) (-948 $)) NIL (|has| |#1| (-555)))) (-3457 (($ $ (-1169)) NIL (|has| |#1| (-555))) (($ $) NIL (|has| |#1| (-555))) (($ (-1165 $) (-1169)) 121 (|has| |#1| (-555))) (($ (-1165 $)) NIL (|has| |#1| (-555))) (($ (-948 $)) NIL (|has| |#1| (-555)))) (-2131 (((-3 (-609 $) "failed") $) 17) (((-3 (-1169) "failed") $) NIL) (((-3 |#1| "failed") $) 418) (((-3 (-48) "failed") $) 321 (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-948 |#1|)) "failed") $) NIL (|has| |#1| (-555))) (((-3 (-948 |#1|) "failed") $) NIL (|has| |#1| (-1045))) (((-3 (-407 (-563)) "failed") $) 46 (-4032 (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-2058 (((-609 $) $) 11) (((-1169) $) NIL) ((|#1| $) 400) (((-48) $) NIL (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-948 |#1|)) $) NIL (|has| |#1| (-555))) (((-948 |#1|) $) NIL (|has| |#1| (-1045))) (((-407 (-563)) $) 304 (-4032 (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-3090 (($ $ $) NIL (|has| |#1| (-555)))) (-2950 (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 114 (|has| |#1| (-1045))) (((-684 |#1|) (-684 $)) 104 (|has| |#1| (-1045))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))) (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))))) (-2444 (($ $) 85 (|has| |#1| (-555)))) (-3400 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) (|has| |#1| (-1105))))) (-3050 (($ $ $) NIL (|has| |#1| (-555)))) (-2041 (($ $ (-1085 $)) 223 (|has| |#1| (-555))) (($ $ (-1169)) 221 (|has| |#1| (-555)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#1| (-555)))) (-2468 (((-112) $) NIL (|has| |#1| (-555)))) (-2507 (($ $ $) 189 (|has| |#1| (-555)))) (-2180 (($) 124 (|has| |#1| (-555)))) (-3972 (($ $ $) 209 (|has| |#1| (-555)))) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 371 (|has| |#1| (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 378 (|has| |#1| (-882 (-379))))) (-3968 (($ $) NIL) (($ (-640 $)) NIL)) (-3804 (((-640 (-114)) $) NIL)) (-2361 (((-114) (-114)) 264)) (-3827 (((-112) $) 25 (-4032 (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) (|has| |#1| (-1105))))) (-3131 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-2711 (($ $) 66 (|has| |#1| (-1045)))) (-2143 (((-1118 |#1| (-609 $)) $) 80 (|has| |#1| (-1045)))) (-2414 (((-112) $) 59 (|has| |#1| (-555)))) (-1645 (($ $ (-563)) NIL (|has| |#1| (-555)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-555)))) (-3180 (((-1165 $) (-609 $)) 265 (|has| $ (-1045)))) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-2240 (($ (-1 $ $) (-609 $)) 405)) (-2875 (((-3 (-609 $) "failed") $) NIL)) (-4371 (($ $) 128 (|has| |#1| (-555)))) (-3108 (($ $) 234 (|has| |#1| (-555)))) (-3513 (($ (-640 $)) NIL (|has| |#1| (-555))) (($ $ $) NIL (|has| |#1| (-555)))) (-3573 (((-1151) $) NIL)) (-2127 (((-640 (-609 $)) $) 49)) (-2227 (($ (-114) $) NIL) (($ (-114) (-640 $)) 410)) (-3733 (((-3 (-640 $) "failed") $) NIL (|has| |#1| (-1105)))) (-1848 (((-3 (-2 (|:| |val| $) (|:| -1654 (-563))) "failed") $) NIL (|has| |#1| (-1045)))) (-2919 (((-3 (-640 $) "failed") $) 413 (|has| |#1| (-25)))) (-4298 (((-3 (-2 (|:| -2311 (-563)) (|:| |var| (-609 $))) "failed") $) 417 (|has| |#1| (-25)))) (-4086 (((-3 (-2 (|:| |var| (-609 $)) (|:| -1654 (-563))) "failed") $) NIL (|has| |#1| (-1105))) (((-3 (-2 (|:| |var| (-609 $)) (|:| -1654 (-563))) "failed") $ (-114)) NIL (|has| |#1| (-1045))) (((-3 (-2 (|:| |var| (-609 $)) (|:| -1654 (-563))) "failed") $ (-1169)) NIL (|has| |#1| (-1045)))) (-2799 (((-112) $ (-114)) NIL) (((-112) $ (-1169)) 51)) (-2688 (($ $) NIL (-4032 (|has| |#1| (-473)) (|has| |#1| (-555))))) (-1335 (($ $ (-1169)) 238 (|has| |#1| (-555))) (($ $ (-1085 $)) 240 (|has| |#1| (-555)))) (-4236 (((-767) $) NIL)) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) 43)) (-2706 ((|#1| $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 286 (|has| |#1| (-555)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-555))) (($ $ $) NIL (|has| |#1| (-555)))) (-1372 (((-112) $ $) NIL) (((-112) $ (-1169)) NIL)) (-2487 (($ $ (-1169)) 213 (|has| |#1| (-555))) (($ $) 211 (|has| |#1| (-555)))) (-3219 (($ $) 205 (|has| |#1| (-555)))) (-3116 (((-418 (-1165 $)) (-1165 $)) 291 (-12 (|has| |#1| (-452)) (|has| |#1| (-555))))) (-2174 (((-418 $) $) NIL (|has| |#1| (-555)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-555))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-555)))) (-3008 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-555)))) (-3368 (($ $) 126 (|has| |#1| (-555)))) (-2359 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-1540 (($ $ (-609 $) $) NIL) (($ $ (-640 (-609 $)) (-640 $)) 404) (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-1169) (-1 $ (-640 $))) NIL) (($ $ (-1169) (-1 $ $)) NIL) (($ $ (-640 (-114)) (-640 (-1 $ $))) 358) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-114) (-1 $ (-640 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1169)) NIL (|has| |#1| (-611 (-536)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-611 (-536)))) (($ $) NIL (|has| |#1| (-611 (-536)))) (($ $ (-114) $ (-1169)) 346 (|has| |#1| (-611 (-536)))) (($ $ (-640 (-114)) (-640 $) (-1169)) 345 (|has| |#1| (-611 (-536)))) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ $))) NIL (|has| |#1| (-1045))) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ (-640 $)))) NIL (|has| |#1| (-1045))) (($ $ (-1169) (-767) (-1 $ (-640 $))) NIL (|has| |#1| (-1045))) (($ $ (-1169) (-767) (-1 $ $)) NIL (|has| |#1| (-1045)))) (-2628 (((-767) $) NIL (|has| |#1| (-555)))) (-2773 (($ $) 226 (|has| |#1| (-555)))) (-2309 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-640 $)) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-555)))) (-3071 (($ $) NIL) (($ $ $) NIL)) (-1586 (($ $) 236 (|has| |#1| (-555)))) (-1760 (($ $) 187 (|has| |#1| (-555)))) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-1045))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-1045))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-1045))) (($ $ (-1169)) NIL (|has| |#1| (-1045)))) (-1801 (($ $) 68 (|has| |#1| (-555)))) (-2154 (((-1118 |#1| (-609 $)) $) 82 (|has| |#1| (-555)))) (-3390 (($ $) 302 (|has| $ (-1045)))) (-1806 (($ $) 164 (|has| |#1| (-555)))) (-1656 (($ $) 140 (|has| |#1| (-555)))) (-1784 (($ $) 160 (|has| |#1| (-555)))) (-1630 (($ $) 136 (|has| |#1| (-555)))) (-1759 (($ $) 156 (|has| |#1| (-555)))) (-1608 (($ $) 132 (|has| |#1| (-555)))) (-2220 (((-888 (-563)) $) NIL (|has| |#1| (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| |#1| (-611 (-888 (-379))))) (($ (-418 $)) NIL (|has| |#1| (-555))) (((-536) $) 343 (|has| |#1| (-611 (-536))))) (-4339 (($ $ $) NIL (|has| |#1| (-473)))) (-2146 (($ $ $) NIL (|has| |#1| (-473)))) (-1693 (((-858) $) 403) (($ (-609 $)) 394) (($ (-1169)) 360) (($ |#1|) 322) (($ $) NIL (|has| |#1| (-555))) (($ (-48)) 297 (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563))))) (($ (-1118 |#1| (-609 $))) 84 (|has| |#1| (-1045))) (($ (-407 |#1|)) NIL (|has| |#1| (-555))) (($ (-948 (-407 |#1|))) NIL (|has| |#1| (-555))) (($ (-407 (-948 (-407 |#1|)))) NIL (|has| |#1| (-555))) (($ (-407 (-948 |#1|))) NIL (|has| |#1| (-555))) (($ (-948 |#1|)) NIL (|has| |#1| (-1045))) (($ (-407 (-563))) NIL (-4032 (|has| |#1| (-555)) (|has| |#1| (-1034 (-407 (-563)))))) (($ (-563)) 34 (-4032 (|has| |#1| (-1034 (-563))) (|has| |#1| (-1045))))) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) NIL (|has| |#1| (-1045)))) (-3079 (($ $) NIL) (($ (-640 $)) NIL)) (-2869 (($ $ $) 207 (|has| |#1| (-555)))) (-2736 (($ $ $) 193 (|has| |#1| (-555)))) (-2040 (($ $ $) 197 (|has| |#1| (-555)))) (-4271 (($ $ $) 191 (|has| |#1| (-555)))) (-3988 (($ $ $) 195 (|has| |#1| (-555)))) (-3734 (((-112) (-114)) 9)) (-1840 (($ $) 170 (|has| |#1| (-555)))) (-1695 (($ $) 146 (|has| |#1| (-555)))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1817 (($ $) 166 (|has| |#1| (-555)))) (-1667 (($ $) 142 (|has| |#1| (-555)))) (-1862 (($ $) 174 (|has| |#1| (-555)))) (-1722 (($ $) 150 (|has| |#1| (-555)))) (-1895 (($ (-1169) $) NIL) (($ (-1169) $ $) NIL) (($ (-1169) $ $ $) NIL) (($ (-1169) $ $ $ $) NIL) (($ (-1169) (-640 $)) NIL)) (-3336 (($ $) 201 (|has| |#1| (-555)))) (-4252 (($ $) 199 (|has| |#1| (-555)))) (-1311 (($ $) 176 (|has| |#1| (-555)))) (-1735 (($ $) 152 (|has| |#1| (-555)))) (-1851 (($ $) 172 (|has| |#1| (-555)))) (-1710 (($ $) 148 (|has| |#1| (-555)))) (-1829 (($ $) 168 (|has| |#1| (-555)))) (-1680 (($ $) 144 (|has| |#1| (-555)))) (-2509 (($ $) 179 (|has| |#1| (-555)))) (-2241 (($) 20 (-4032 (|has| |#1| (-25)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))) CONST)) (-1482 (($ $) 230 (|has| |#1| (-555)))) (-2254 (($) 22 (-4032 (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) (|has| |#1| (-1105))) CONST)) (-1341 (($ $) 181 (|has| |#1| (-555))) (($ $ $) 183 (|has| |#1| (-555)))) (-1561 (($ $) 228 (|has| |#1| (-555)))) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-1045))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-1045))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-1045))) (($ $ (-1169)) NIL (|has| |#1| (-1045)))) (-3525 (($ $) 232 (|has| |#1| (-555)))) (-3929 (($ $ $) 185 (|has| |#1| (-555)))) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 77)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 76)) (-1837 (($ (-1118 |#1| (-609 $)) (-1118 |#1| (-609 $))) 95 (|has| |#1| (-555))) (($ $ $) 42 (-4032 (|has| |#1| (-473)) (|has| |#1| (-555))))) (-1826 (($ $ $) 40 (-4032 (|has| |#1| (-21)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))))) (($ $) 29 (-4032 (|has| |#1| (-21)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))))) (-1814 (($ $ $) 38 (-4032 (|has| |#1| (-25)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))))) (** (($ $ $) 61 (|has| |#1| (-555))) (($ $ (-407 (-563))) 299 (|has| |#1| (-555))) (($ $ (-563)) 72 (-4032 (|has| |#1| (-473)) (|has| |#1| (-555)))) (($ $ (-767)) 69 (-4032 (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) (|has| |#1| (-1105)))) (($ $ (-917)) 74 (-4032 (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) (|has| |#1| (-1105))))) (* (($ (-407 (-563)) $) NIL (|has| |#1| (-555))) (($ $ (-407 (-563))) NIL (|has| |#1| (-555))) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172))) (($ $ $) 36 (-4032 (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) (|has| |#1| (-1105)))) (($ (-563) $) 32 (-4032 (|has| |#1| (-21)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))))) (($ (-767) $) NIL (-4032 (|has| |#1| (-25)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))))) (($ (-917) $) NIL (-4032 (|has| |#1| (-25)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))))))
-(((-316 |#1|) (-13 (-430 |#1|) (-10 -8 (IF (|has| |#1| (-555)) (PROGN (-6 (-29 |#1|)) (-6 (-1193)) (-6 (-160)) (-6 (-626)) (-6 (-1132)) (-15 -2444 ($ $)) (-15 -2414 ((-112) $)) (-15 -4145 ($ $ (-563))) (IF (|has| |#1| (-452)) (PROGN (-15 -3116 ((-418 (-1165 $)) (-1165 $))) (-15 -2424 ((-418 (-1165 $)) (-1165 $)))) |%noBranch|) (IF (|has| |#1| (-1034 (-563))) (-6 (-1034 (-48))) |%noBranch|)) |%noBranch|))) (-846)) (T -316))
-((-2444 (*1 *1 *1) (-12 (-5 *1 (-316 *2)) (-4 *2 (-555)) (-4 *2 (-846)))) (-2414 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-316 *3)) (-4 *3 (-555)) (-4 *3 (-846)))) (-4145 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-316 *3)) (-4 *3 (-555)) (-4 *3 (-846)))) (-3116 (*1 *2 *3) (-12 (-5 *2 (-418 (-1165 *1))) (-5 *1 (-316 *4)) (-5 *3 (-1165 *1)) (-4 *4 (-452)) (-4 *4 (-555)) (-4 *4 (-846)))) (-2424 (*1 *2 *3) (-12 (-5 *2 (-418 (-1165 *1))) (-5 *1 (-316 *4)) (-5 *3 (-1165 *1)) (-4 *4 (-452)) (-4 *4 (-555)) (-4 *4 (-846)))))
-(-13 (-430 |#1|) (-10 -8 (IF (|has| |#1| (-555)) (PROGN (-6 (-29 |#1|)) (-6 (-1193)) (-6 (-160)) (-6 (-626)) (-6 (-1132)) (-15 -2444 ($ $)) (-15 -2414 ((-112) $)) (-15 -4145 ($ $ (-563))) (IF (|has| |#1| (-452)) (PROGN (-15 -3116 ((-418 (-1165 $)) (-1165 $))) (-15 -2424 ((-418 (-1165 $)) (-1165 $)))) |%noBranch|) (IF (|has| |#1| (-1034 (-563))) (-6 (-1034 (-48))) |%noBranch|)) |%noBranch|)))
-((-2561 (((-52) |#2| (-114) (-294 |#2|) (-640 |#2|)) 88) (((-52) |#2| (-114) (-294 |#2|) (-294 |#2|)) 84) (((-52) |#2| (-114) (-294 |#2|) |#2|) 86) (((-52) (-294 |#2|) (-114) (-294 |#2|) |#2|) 87) (((-52) (-640 |#2|) (-640 (-114)) (-294 |#2|) (-640 (-294 |#2|))) 80) (((-52) (-640 |#2|) (-640 (-114)) (-294 |#2|) (-640 |#2|)) 82) (((-52) (-640 (-294 |#2|)) (-640 (-114)) (-294 |#2|) (-640 |#2|)) 83) (((-52) (-640 (-294 |#2|)) (-640 (-114)) (-294 |#2|) (-640 (-294 |#2|))) 81) (((-52) (-294 |#2|) (-114) (-294 |#2|) (-640 |#2|)) 89) (((-52) (-294 |#2|) (-114) (-294 |#2|) (-294 |#2|)) 85)))
-(((-317 |#1| |#2|) (-10 -7 (-15 -2561 ((-52) (-294 |#2|) (-114) (-294 |#2|) (-294 |#2|))) (-15 -2561 ((-52) (-294 |#2|) (-114) (-294 |#2|) (-640 |#2|))) (-15 -2561 ((-52) (-640 (-294 |#2|)) (-640 (-114)) (-294 |#2|) (-640 (-294 |#2|)))) (-15 -2561 ((-52) (-640 (-294 |#2|)) (-640 (-114)) (-294 |#2|) (-640 |#2|))) (-15 -2561 ((-52) (-640 |#2|) (-640 (-114)) (-294 |#2|) (-640 |#2|))) (-15 -2561 ((-52) (-640 |#2|) (-640 (-114)) (-294 |#2|) (-640 (-294 |#2|)))) (-15 -2561 ((-52) (-294 |#2|) (-114) (-294 |#2|) |#2|)) (-15 -2561 ((-52) |#2| (-114) (-294 |#2|) |#2|)) (-15 -2561 ((-52) |#2| (-114) (-294 |#2|) (-294 |#2|))) (-15 -2561 ((-52) |#2| (-114) (-294 |#2|) (-640 |#2|)))) (-13 (-846) (-555) (-611 (-536))) (-430 |#1|)) (T -317))
-((-2561 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-114)) (-5 *5 (-294 *3)) (-5 *6 (-640 *3)) (-4 *3 (-430 *7)) (-4 *7 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *7 *3)))) (-2561 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-114)) (-5 *5 (-294 *3)) (-4 *3 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *6 *3)))) (-2561 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-114)) (-5 *5 (-294 *3)) (-4 *3 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *6 *3)))) (-2561 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-294 *5)) (-5 *4 (-114)) (-4 *5 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *6 *5)))) (-2561 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 (-114))) (-5 *6 (-640 (-294 *8))) (-4 *8 (-430 *7)) (-5 *5 (-294 *8)) (-4 *7 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *7 *8)))) (-2561 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-640 *7)) (-5 *4 (-640 (-114))) (-5 *5 (-294 *7)) (-4 *7 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *6 *7)))) (-2561 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-640 (-294 *8))) (-5 *4 (-640 (-114))) (-5 *5 (-294 *8)) (-5 *6 (-640 *8)) (-4 *8 (-430 *7)) (-4 *7 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *7 *8)))) (-2561 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-640 (-294 *7))) (-5 *4 (-640 (-114))) (-5 *5 (-294 *7)) (-4 *7 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *6 *7)))) (-2561 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-294 *7)) (-5 *4 (-114)) (-5 *5 (-640 *7)) (-4 *7 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *6 *7)))) (-2561 (*1 *2 *3 *4 *3 *3) (-12 (-5 *3 (-294 *6)) (-5 *4 (-114)) (-4 *6 (-430 *5)) (-4 *5 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *5 *6)))))
-(-10 -7 (-15 -2561 ((-52) (-294 |#2|) (-114) (-294 |#2|) (-294 |#2|))) (-15 -2561 ((-52) (-294 |#2|) (-114) (-294 |#2|) (-640 |#2|))) (-15 -2561 ((-52) (-640 (-294 |#2|)) (-640 (-114)) (-294 |#2|) (-640 (-294 |#2|)))) (-15 -2561 ((-52) (-640 (-294 |#2|)) (-640 (-114)) (-294 |#2|) (-640 |#2|))) (-15 -2561 ((-52) (-640 |#2|) (-640 (-114)) (-294 |#2|) (-640 |#2|))) (-15 -2561 ((-52) (-640 |#2|) (-640 (-114)) (-294 |#2|) (-640 (-294 |#2|)))) (-15 -2561 ((-52) (-294 |#2|) (-114) (-294 |#2|) |#2|)) (-15 -2561 ((-52) |#2| (-114) (-294 |#2|) |#2|)) (-15 -2561 ((-52) |#2| (-114) (-294 |#2|) (-294 |#2|))) (-15 -2561 ((-52) |#2| (-114) (-294 |#2|) (-640 |#2|))))
-((-2826 (((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-225) (-563) (-1151)) 45) (((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-225) (-563)) 46) (((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-1 (-225) (-225)) (-563) (-1151)) 42) (((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-1 (-225) (-225)) (-563)) 43)) (-2945 (((-1 (-225) (-225)) (-225)) 44)))
-(((-318) (-10 -7 (-15 -2945 ((-1 (-225) (-225)) (-225))) (-15 -2826 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-1 (-225) (-225)) (-563))) (-15 -2826 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-1 (-225) (-225)) (-563) (-1151))) (-15 -2826 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-225) (-563))) (-15 -2826 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-225) (-563) (-1151))))) (T -318))
-((-2826 (*1 *2 *3 *3 *3 *4 *5 *6 *7 *8) (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1087 (-225))) (-5 *6 (-225)) (-5 *7 (-563)) (-5 *8 (-1151)) (-5 *2 (-1203 (-922))) (-5 *1 (-318)))) (-2826 (*1 *2 *3 *3 *3 *4 *5 *6 *7) (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1087 (-225))) (-5 *6 (-225)) (-5 *7 (-563)) (-5 *2 (-1203 (-922))) (-5 *1 (-318)))) (-2826 (*1 *2 *3 *3 *3 *4 *5 *4 *6 *7) (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1087 (-225))) (-5 *6 (-563)) (-5 *7 (-1151)) (-5 *2 (-1203 (-922))) (-5 *1 (-318)))) (-2826 (*1 *2 *3 *3 *3 *4 *5 *4 *6) (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1087 (-225))) (-5 *6 (-563)) (-5 *2 (-1203 (-922))) (-5 *1 (-318)))) (-2945 (*1 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-318)) (-5 *3 (-225)))))
-(-10 -7 (-15 -2945 ((-1 (-225) (-225)) (-225))) (-15 -2826 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-1 (-225) (-225)) (-563))) (-15 -2826 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-1 (-225) (-225)) (-563) (-1151))) (-15 -2826 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-225) (-563))) (-15 -2826 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-225) (-563) (-1151))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 25)) (-2606 (((-640 (-1075)) $) NIL)) (-2518 (((-1169) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-2421 (($ $ (-407 (-563))) NIL) (($ $ (-407 (-563)) (-407 (-563))) NIL)) (-1539 (((-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|))) $) 20)) (-1771 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL (|has| |#1| (-363)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2186 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1919 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1748 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3045 (($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|)))) NIL)) (-1794 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) NIL T CONST)) (-3090 (($ $ $) NIL (|has| |#1| (-363)))) (-2751 (($ $) 31)) (-3400 (((-3 $ "failed") $) NIL)) (-3050 (($ $ $) NIL (|has| |#1| (-363)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2468 (((-112) $) NIL (|has| |#1| (-363)))) (-2788 (((-112) $) NIL)) (-2180 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3254 (((-407 (-563)) $) NIL) (((-407 (-563)) $ (-407 (-563))) 16)) (-3827 (((-112) $) NIL)) (-1645 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1351 (($ $ (-917)) NIL) (($ $ (-407 (-563))) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-407 (-563))) NIL) (($ $ (-1075) (-407 (-563))) NIL) (($ $ (-640 (-1075)) (-640 (-407 (-563)))) NIL)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-4371 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL (|has| |#1| (-363)))) (-3698 (($ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) NIL (-4032 (-12 (|has| |#1| (-15 -3698 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2606 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193)))))) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2174 (((-418 $) $) NIL (|has| |#1| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3320 (($ $ (-407 (-563))) NIL)) (-3008 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-4379 (((-407 (-563)) $) 17)) (-4094 (($ (-1242 |#1| |#2| |#3|)) 11)) (-1654 (((-1242 |#1| |#2| |#3|) $) 12)) (-3368 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1540 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))))) (-2628 (((-767) $) NIL (|has| |#1| (-363)))) (-2309 ((|#1| $ (-407 (-563))) NIL) (($ $ $) NIL (|has| (-407 (-563)) (-1105)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-4167 (((-407 (-563)) $) NIL)) (-1806 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1741 (($ $) 10)) (-1693 (((-858) $) 37) (($ (-563)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555)))) (-4319 ((|#1| $ (-407 (-563))) 29)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) NIL)) (-3408 ((|#1| $) NIL)) (-1840 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1817 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1403 ((|#1| $ (-407 (-563))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-1311 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 27)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 32)) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
-(((-319 |#1| |#2| |#3|) (-13 (-1238 |#1|) (-788) (-10 -8 (-15 -4094 ($ (-1242 |#1| |#2| |#3|))) (-15 -1654 ((-1242 |#1| |#2| |#3|) $)) (-15 -4379 ((-407 (-563)) $)))) (-13 (-363) (-846)) (-1169) |#1|) (T -319))
-((-4094 (*1 *1 *2) (-12 (-5 *2 (-1242 *3 *4 *5)) (-4 *3 (-13 (-363) (-846))) (-14 *4 (-1169)) (-14 *5 *3) (-5 *1 (-319 *3 *4 *5)))) (-1654 (*1 *2 *1) (-12 (-5 *2 (-1242 *3 *4 *5)) (-5 *1 (-319 *3 *4 *5)) (-4 *3 (-13 (-363) (-846))) (-14 *4 (-1169)) (-14 *5 *3))) (-4379 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-319 *3 *4 *5)) (-4 *3 (-13 (-363) (-846))) (-14 *4 (-1169)) (-14 *5 *3))))
-(-13 (-1238 |#1|) (-788) (-10 -8 (-15 -4094 ($ (-1242 |#1| |#2| |#3|))) (-15 -1654 ((-1242 |#1| |#2| |#3|) $)) (-15 -4379 ((-407 (-563)) $))))
-((-1645 (((-2 (|:| -1654 (-767)) (|:| -2311 |#1|) (|:| |radicand| (-640 |#1|))) (-418 |#1|) (-767)) 24)) (-4371 (((-640 (-2 (|:| -2311 (-767)) (|:| |logand| |#1|))) (-418 |#1|)) 28)))
-(((-320 |#1|) (-10 -7 (-15 -1645 ((-2 (|:| -1654 (-767)) (|:| -2311 |#1|) (|:| |radicand| (-640 |#1|))) (-418 |#1|) (-767))) (-15 -4371 ((-640 (-2 (|:| -2311 (-767)) (|:| |logand| |#1|))) (-418 |#1|)))) (-555)) (T -320))
-((-4371 (*1 *2 *3) (-12 (-5 *3 (-418 *4)) (-4 *4 (-555)) (-5 *2 (-640 (-2 (|:| -2311 (-767)) (|:| |logand| *4)))) (-5 *1 (-320 *4)))) (-1645 (*1 *2 *3 *4) (-12 (-5 *3 (-418 *5)) (-4 *5 (-555)) (-5 *2 (-2 (|:| -1654 (-767)) (|:| -2311 *5) (|:| |radicand| (-640 *5)))) (-5 *1 (-320 *5)) (-5 *4 (-767)))))
-(-10 -7 (-15 -1645 ((-2 (|:| -1654 (-767)) (|:| -2311 |#1|) (|:| |radicand| (-640 |#1|))) (-418 |#1|) (-767))) (-15 -4371 ((-640 (-2 (|:| -2311 (-767)) (|:| |logand| |#1|))) (-418 |#1|))))
-((-2606 (((-640 |#2|) (-1165 |#4|)) 43)) (-1878 ((|#3| (-563)) 46)) (-1889 (((-1165 |#4|) (-1165 |#3|)) 30)) (-3178 (((-1165 |#4|) (-1165 |#4|) (-563)) 55)) (-4188 (((-1165 |#3|) (-1165 |#4|)) 21)) (-4167 (((-640 (-767)) (-1165 |#4|) (-640 |#2|)) 40)) (-4010 (((-1165 |#3|) (-1165 |#4|) (-640 |#2|) (-640 |#3|)) 35)))
-(((-321 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4010 ((-1165 |#3|) (-1165 |#4|) (-640 |#2|) (-640 |#3|))) (-15 -4167 ((-640 (-767)) (-1165 |#4|) (-640 |#2|))) (-15 -2606 ((-640 |#2|) (-1165 |#4|))) (-15 -4188 ((-1165 |#3|) (-1165 |#4|))) (-15 -1889 ((-1165 |#4|) (-1165 |#3|))) (-15 -3178 ((-1165 |#4|) (-1165 |#4|) (-563))) (-15 -1878 (|#3| (-563)))) (-789) (-846) (-1045) (-945 |#3| |#1| |#2|)) (T -321))
-((-1878 (*1 *2 *3) (-12 (-5 *3 (-563)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1045)) (-5 *1 (-321 *4 *5 *2 *6)) (-4 *6 (-945 *2 *4 *5)))) (-3178 (*1 *2 *2 *3) (-12 (-5 *2 (-1165 *7)) (-5 *3 (-563)) (-4 *7 (-945 *6 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-5 *1 (-321 *4 *5 *6 *7)))) (-1889 (*1 *2 *3) (-12 (-5 *3 (-1165 *6)) (-4 *6 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-1165 *7)) (-5 *1 (-321 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5)))) (-4188 (*1 *2 *3) (-12 (-5 *3 (-1165 *7)) (-4 *7 (-945 *6 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-5 *2 (-1165 *6)) (-5 *1 (-321 *4 *5 *6 *7)))) (-2606 (*1 *2 *3) (-12 (-5 *3 (-1165 *7)) (-4 *7 (-945 *6 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-5 *2 (-640 *5)) (-5 *1 (-321 *4 *5 *6 *7)))) (-4167 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 *8)) (-5 *4 (-640 *6)) (-4 *6 (-846)) (-4 *8 (-945 *7 *5 *6)) (-4 *5 (-789)) (-4 *7 (-1045)) (-5 *2 (-640 (-767))) (-5 *1 (-321 *5 *6 *7 *8)))) (-4010 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1165 *9)) (-5 *4 (-640 *7)) (-5 *5 (-640 *8)) (-4 *7 (-846)) (-4 *8 (-1045)) (-4 *9 (-945 *8 *6 *7)) (-4 *6 (-789)) (-5 *2 (-1165 *8)) (-5 *1 (-321 *6 *7 *8 *9)))))
-(-10 -7 (-15 -4010 ((-1165 |#3|) (-1165 |#4|) (-640 |#2|) (-640 |#3|))) (-15 -4167 ((-640 (-767)) (-1165 |#4|) (-640 |#2|))) (-15 -2606 ((-640 |#2|) (-1165 |#4|))) (-15 -4188 ((-1165 |#3|) (-1165 |#4|))) (-15 -1889 ((-1165 |#4|) (-1165 |#3|))) (-15 -3178 ((-1165 |#4|) (-1165 |#4|) (-563))) (-15 -1878 (|#3| (-563))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 14)) (-1539 (((-640 (-2 (|:| |gen| |#1|) (|:| -3368 (-563)))) $) 18)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3749 (((-767) $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL)) (-2058 ((|#1| $) NIL)) (-2768 ((|#1| $ (-563)) NIL)) (-1992 (((-563) $ (-563)) NIL)) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-1633 (($ (-1 |#1| |#1|) $) NIL)) (-1480 (($ (-1 (-563) (-563)) $) 10)) (-3573 (((-1151) $) NIL)) (-2700 (($ $ $) NIL (|has| (-563) (-788)))) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL) (($ |#1|) NIL)) (-4319 (((-563) |#1| $) NIL)) (-2241 (($) 15 T CONST)) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) 21 (|has| |#1| (-846)))) (-1826 (($ $) 11) (($ $ $) 20)) (-1814 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ (-563)) NIL) (($ (-563) |#1|) 19)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 61)) (-3944 (((-1243 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-307)))) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-905)))) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-905)))) (-2003 (((-112) $ $) NIL)) (-2807 (((-563) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-816)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-1243 |#1| |#2| |#3| |#4|) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1034 (-563)))) (((-3 (-1242 |#2| |#3| |#4|) "failed") $) 24)) (-2057 (((-1243 |#1| |#2| |#3| |#4|) $) NIL) (((-1169) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1034 (-563)))) (((-563) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1034 (-563)))) (((-1242 |#2| |#3| |#4|) $) NIL)) (-3094 (($ $ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-1243 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1257 (-1243 |#1| |#2| |#3| |#4|)))) (-684 $) (-1257 $)) NIL) (((-684 (-1243 |#1| |#2| |#3| |#4|)) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-545)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-3414 (((-112) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-816)))) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-882 (-379))))) (-3401 (((-112) $) NIL)) (-2043 (($ $) NIL)) (-2143 (((-1243 |#1| |#2| |#3| |#4|) $) 20)) (-1983 (((-3 $ "failed") $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1144)))) (-3426 (((-112) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-816)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3088 (($ $ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-846)))) (-1776 (($ $ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-846)))) (-2238 (($ (-1 (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|)) $) NIL)) (-1876 (((-3 (-839 |#2|) "failed") $) 79)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1144)) CONST)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3935 (($ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-307)))) (-3954 (((-1243 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-545)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-905)))) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1542 (($ $ (-640 (-1243 |#1| |#2| |#3| |#4|)) (-640 (-1243 |#1| |#2| |#3| |#4|))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-309 (-1243 |#1| |#2| |#3| |#4|)))) (($ $ (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-309 (-1243 |#1| |#2| |#3| |#4|)))) (($ $ (-294 (-1243 |#1| |#2| |#3| |#4|))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-309 (-1243 |#1| |#2| |#3| |#4|)))) (($ $ (-640 (-294 (-1243 |#1| |#2| |#3| |#4|)))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-309 (-1243 |#1| |#2| |#3| |#4|)))) (($ $ (-640 (-1169)) (-640 (-1243 |#1| |#2| |#3| |#4|))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-514 (-1169) (-1243 |#1| |#2| |#3| |#4|)))) (($ $ (-1169) (-1243 |#1| |#2| |#3| |#4|)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-514 (-1169) (-1243 |#1| |#2| |#3| |#4|))))) (-1993 (((-767) $) NIL)) (-2308 (($ $ (-1243 |#1| |#2| |#3| |#4|)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-286 (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|))))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-4203 (($ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-767)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-1169)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-1 (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|)) (-767)) NIL) (($ $ (-1 (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|))) NIL)) (-2033 (($ $) NIL)) (-2153 (((-1243 |#1| |#2| |#3| |#4|) $) 17)) (-2219 (((-888 (-563)) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-611 (-888 (-379))))) (((-536) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-611 (-536)))) (((-379) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1018))) (((-225) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1018)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-1243 |#1| |#2| |#3| |#4|) (-905))))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-1243 |#1| |#2| |#3| |#4|)) 28) (($ (-1169)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-1034 (-1169)))) (($ (-1242 |#2| |#3| |#4|)) 35)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| (-1243 |#1| |#2| |#3| |#4|) (-905))) (|has| (-1243 |#1| |#2| |#3| |#4|) (-145))))) (-3914 (((-767)) NIL)) (-3965 (((-1243 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-545)))) (-3223 (((-112) $ $) NIL)) (-1462 (($ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-816)))) (-2239 (($) 40 T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-767)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-1169)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-896 (-1169)))) (($ $ (-1 (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|)) (-767)) NIL) (($ $ (-1 (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|))) NIL)) (-1779 (((-112) $ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-846)))) (-1754 (((-112) $ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-846)))) (-1743 (((-112) $ $) NIL (|has| (-1243 |#1| |#2| |#3| |#4|) (-846)))) (-1836 (($ $ $) 33) (($ (-1243 |#1| |#2| |#3| |#4|) (-1243 |#1| |#2| |#3| |#4|)) 30)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ (-1243 |#1| |#2| |#3| |#4|) $) 29) (($ $ (-1243 |#1| |#2| |#3| |#4|)) NIL)))
+(((-313 |#1| |#2| |#3| |#4|) (-13 (-988 (-1243 |#1| |#2| |#3| |#4|)) (-1034 (-1242 |#2| |#3| |#4|)) (-10 -8 (-15 -1876 ((-3 (-839 |#2|) "failed") $)) (-15 -1692 ($ (-1242 |#2| |#3| |#4|))))) (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452)) (-13 (-27) (-1193) (-430 |#1|)) (-1169) |#2|) (T -313))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1242 *4 *5 *6)) (-4 *4 (-13 (-27) (-1193) (-430 *3))) (-14 *5 (-1169)) (-14 *6 *4) (-4 *3 (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452))) (-5 *1 (-313 *3 *4 *5 *6)))) (-1876 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452))) (-5 *2 (-839 *4)) (-5 *1 (-313 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1193) (-430 *3))) (-14 *5 (-1169)) (-14 *6 *4))))
+(-13 (-988 (-1243 |#1| |#2| |#3| |#4|)) (-1034 (-1242 |#2| |#3| |#4|)) (-10 -8 (-15 -1876 ((-3 (-839 |#2|) "failed") $)) (-15 -1692 ($ (-1242 |#2| |#3| |#4|)))))
+((-2238 (((-316 |#2|) (-1 |#2| |#1|) (-316 |#1|)) 13)))
+(((-314 |#1| |#2|) (-10 -7 (-15 -2238 ((-316 |#2|) (-1 |#2| |#1|) (-316 |#1|)))) (-846) (-846)) (T -314))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-316 *5)) (-4 *5 (-846)) (-4 *6 (-846)) (-5 *2 (-316 *6)) (-5 *1 (-314 *5 *6)))))
+(-10 -7 (-15 -2238 ((-316 |#2|) (-1 |#2| |#1|) (-316 |#1|))))
+((-2651 (((-52) |#2| (-294 |#2|) (-767)) 33) (((-52) |#2| (-294 |#2|)) 24) (((-52) |#2| (-767)) 28) (((-52) |#2|) 25) (((-52) (-1169)) 21)) (-3049 (((-52) |#2| (-294 |#2|) (-407 (-563))) 51) (((-52) |#2| (-294 |#2|)) 48) (((-52) |#2| (-407 (-563))) 50) (((-52) |#2|) 49) (((-52) (-1169)) 47)) (-2669 (((-52) |#2| (-294 |#2|) (-407 (-563))) 46) (((-52) |#2| (-294 |#2|)) 43) (((-52) |#2| (-407 (-563))) 45) (((-52) |#2|) 44) (((-52) (-1169)) 42)) (-2659 (((-52) |#2| (-294 |#2|) (-563)) 39) (((-52) |#2| (-294 |#2|)) 35) (((-52) |#2| (-563)) 38) (((-52) |#2|) 36) (((-52) (-1169)) 34)))
+(((-315 |#1| |#2|) (-10 -7 (-15 -2651 ((-52) (-1169))) (-15 -2651 ((-52) |#2|)) (-15 -2651 ((-52) |#2| (-767))) (-15 -2651 ((-52) |#2| (-294 |#2|))) (-15 -2651 ((-52) |#2| (-294 |#2|) (-767))) (-15 -2659 ((-52) (-1169))) (-15 -2659 ((-52) |#2|)) (-15 -2659 ((-52) |#2| (-563))) (-15 -2659 ((-52) |#2| (-294 |#2|))) (-15 -2659 ((-52) |#2| (-294 |#2|) (-563))) (-15 -2669 ((-52) (-1169))) (-15 -2669 ((-52) |#2|)) (-15 -2669 ((-52) |#2| (-407 (-563)))) (-15 -2669 ((-52) |#2| (-294 |#2|))) (-15 -2669 ((-52) |#2| (-294 |#2|) (-407 (-563)))) (-15 -3049 ((-52) (-1169))) (-15 -3049 ((-52) |#2|)) (-15 -3049 ((-52) |#2| (-407 (-563)))) (-15 -3049 ((-52) |#2| (-294 |#2|))) (-15 -3049 ((-52) |#2| (-294 |#2|) (-407 (-563))))) (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|))) (T -315))
+((-3049 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-294 *3)) (-5 *5 (-407 (-563))) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *6 *3)))) (-3049 (*1 *2 *3 *4) (-12 (-5 *4 (-294 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)))) (-3049 (*1 *2 *3 *4) (-12 (-5 *4 (-407 (-563))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-3049 (*1 *2 *3) (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *4))))) (-3049 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *5)) (-4 *5 (-13 (-27) (-1193) (-430 *4))))) (-2669 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-294 *3)) (-5 *5 (-407 (-563))) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *6 *3)))) (-2669 (*1 *2 *3 *4) (-12 (-5 *4 (-294 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)))) (-2669 (*1 *2 *3 *4) (-12 (-5 *4 (-407 (-563))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-2669 (*1 *2 *3) (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *4))))) (-2669 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *5)) (-4 *5 (-13 (-27) (-1193) (-430 *4))))) (-2659 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-294 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-452) (-846) (-1034 *5) (-636 *5))) (-5 *5 (-563)) (-5 *2 (-52)) (-5 *1 (-315 *6 *3)))) (-2659 (*1 *2 *3 *4) (-12 (-5 *4 (-294 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)))) (-2659 (*1 *2 *3 *4) (-12 (-5 *4 (-563)) (-4 *5 (-13 (-452) (-846) (-1034 *4) (-636 *4))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-2659 (*1 *2 *3) (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *4))))) (-2659 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *5)) (-4 *5 (-13 (-27) (-1193) (-430 *4))))) (-2651 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-294 *3)) (-5 *5 (-767)) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *6 *3)))) (-2651 (*1 *2 *3 *4) (-12 (-5 *4 (-294 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)))) (-2651 (*1 *2 *3 *4) (-12 (-5 *4 (-767)) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-2651 (*1 *2 *3) (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *4))))) (-2651 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-315 *4 *5)) (-4 *5 (-13 (-27) (-1193) (-430 *4))))))
+(-10 -7 (-15 -2651 ((-52) (-1169))) (-15 -2651 ((-52) |#2|)) (-15 -2651 ((-52) |#2| (-767))) (-15 -2651 ((-52) |#2| (-294 |#2|))) (-15 -2651 ((-52) |#2| (-294 |#2|) (-767))) (-15 -2659 ((-52) (-1169))) (-15 -2659 ((-52) |#2|)) (-15 -2659 ((-52) |#2| (-563))) (-15 -2659 ((-52) |#2| (-294 |#2|))) (-15 -2659 ((-52) |#2| (-294 |#2|) (-563))) (-15 -2669 ((-52) (-1169))) (-15 -2669 ((-52) |#2|)) (-15 -2669 ((-52) |#2| (-407 (-563)))) (-15 -2669 ((-52) |#2| (-294 |#2|))) (-15 -2669 ((-52) |#2| (-294 |#2|) (-407 (-563)))) (-15 -3049 ((-52) (-1169))) (-15 -3049 ((-52) |#2|)) (-15 -3049 ((-52) |#2| (-407 (-563)))) (-15 -3049 ((-52) |#2| (-294 |#2|))) (-15 -3049 ((-52) |#2| (-294 |#2|) (-407 (-563)))))
+((-1677 (((-112) $ $) NIL)) (-2793 (((-640 $) $ (-1169)) NIL (|has| |#1| (-555))) (((-640 $) $) NIL (|has| |#1| (-555))) (((-640 $) (-1165 $) (-1169)) NIL (|has| |#1| (-555))) (((-640 $) (-1165 $)) NIL (|has| |#1| (-555))) (((-640 $) (-948 $)) NIL (|has| |#1| (-555)))) (-1559 (($ $ (-1169)) NIL (|has| |#1| (-555))) (($ $) NIL (|has| |#1| (-555))) (($ (-1165 $) (-1169)) NIL (|has| |#1| (-555))) (($ (-1165 $)) NIL (|has| |#1| (-555))) (($ (-948 $)) NIL (|has| |#1| (-555)))) (-3439 (((-112) $) 26 (-4034 (|has| |#1| (-25)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))))) (-2605 (((-640 (-1169)) $) 349)) (-2138 (((-407 (-1165 $)) $ (-609 $)) NIL (|has| |#1| (-555)))) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-2058 (((-640 (-609 $)) $) NIL)) (-1770 (($ $) 159 (|has| |#1| (-555)))) (-1618 (($ $) 135 (|has| |#1| (-555)))) (-2132 (($ $ (-1085 $)) 220 (|has| |#1| (-555))) (($ $ (-1169)) 216 (|has| |#1| (-555)))) (-3905 (((-3 $ "failed") $ $) NIL (-4034 (|has| |#1| (-21)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))))) (-4135 (($ $ (-294 $)) NIL) (($ $ (-640 (-294 $))) 366) (($ $ (-640 (-609 $)) (-640 $)) 410)) (-2093 (((-418 (-1165 $)) (-1165 $)) 294 (-12 (|has| |#1| (-452)) (|has| |#1| (-555))))) (-1798 (($ $) NIL (|has| |#1| (-555)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-555)))) (-2185 (($ $) NIL (|has| |#1| (-555)))) (-2003 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1747 (($ $) 155 (|has| |#1| (-555)))) (-1596 (($ $) 131 (|has| |#1| (-555)))) (-2012 (($ $ (-563)) 67 (|has| |#1| (-555)))) (-1793 (($ $) 163 (|has| |#1| (-555)))) (-1642 (($ $) 139 (|has| |#1| (-555)))) (-2569 (($) NIL (-4034 (|has| |#1| (-25)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) (|has| |#1| (-1105))) CONST)) (-4249 (((-640 $) $ (-1169)) NIL (|has| |#1| (-555))) (((-640 $) $) NIL (|has| |#1| (-555))) (((-640 $) (-1165 $) (-1169)) NIL (|has| |#1| (-555))) (((-640 $) (-1165 $)) NIL (|has| |#1| (-555))) (((-640 $) (-948 $)) NIL (|has| |#1| (-555)))) (-3377 (($ $ (-1169)) NIL (|has| |#1| (-555))) (($ $) NIL (|has| |#1| (-555))) (($ (-1165 $) (-1169)) 122 (|has| |#1| (-555))) (($ (-1165 $)) NIL (|has| |#1| (-555))) (($ (-948 $)) NIL (|has| |#1| (-555)))) (-2130 (((-3 (-609 $) "failed") $) 17) (((-3 (-1169) "failed") $) NIL) (((-3 |#1| "failed") $) 419) (((-3 (-48) "failed") $) 322 (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-948 |#1|)) "failed") $) NIL (|has| |#1| (-555))) (((-3 (-948 |#1|) "failed") $) NIL (|has| |#1| (-1045))) (((-3 (-407 (-563)) "failed") $) 45 (-4034 (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-2057 (((-609 $) $) 11) (((-1169) $) NIL) ((|#1| $) 401) (((-48) $) NIL (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-948 |#1|)) $) NIL (|has| |#1| (-555))) (((-948 |#1|) $) NIL (|has| |#1| (-1045))) (((-407 (-563)) $) 305 (-4034 (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-3094 (($ $ $) NIL (|has| |#1| (-555)))) (-1476 (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 115 (|has| |#1| (-1045))) (((-684 |#1|) (-684 $)) 105 (|has| |#1| (-1045))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))) (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))))) (-2444 (($ $) 86 (|has| |#1| (-555)))) (-3951 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) (|has| |#1| (-1105))))) (-3054 (($ $ $) NIL (|has| |#1| (-555)))) (-3846 (($ $ (-1085 $)) 224 (|has| |#1| (-555))) (($ $ (-1169)) 222 (|has| |#1| (-555)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#1| (-555)))) (-2560 (((-112) $) NIL (|has| |#1| (-555)))) (-1496 (($ $ $) 190 (|has| |#1| (-555)))) (-2179 (($) 125 (|has| |#1| (-555)))) (-2101 (($ $ $) 210 (|has| |#1| (-555)))) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 372 (|has| |#1| (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 379 (|has| |#1| (-882 (-379))))) (-3228 (($ $) NIL) (($ (-640 $)) NIL)) (-2739 (((-640 (-114)) $) NIL)) (-2559 (((-114) (-114)) 265)) (-3401 (((-112) $) 24 (-4034 (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) (|has| |#1| (-1105))))) (-2959 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-2043 (($ $) 66 (|has| |#1| (-1045)))) (-2143 (((-1118 |#1| (-609 $)) $) 81 (|has| |#1| (-1045)))) (-2020 (((-112) $) 59 (|has| |#1| (-555)))) (-2172 (($ $ (-563)) NIL (|has| |#1| (-555)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-555)))) (-2716 (((-1165 $) (-609 $)) 266 (|has| $ (-1045)))) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-2238 (($ (-1 $ $) (-609 $)) 406)) (-2751 (((-3 (-609 $) "failed") $) NIL)) (-4372 (($ $) 129 (|has| |#1| (-555)))) (-3114 (($ $) 235 (|has| |#1| (-555)))) (-3517 (($ (-640 $)) NIL (|has| |#1| (-555))) (($ $ $) NIL (|has| |#1| (-555)))) (-3854 (((-1151) $) NIL)) (-2126 (((-640 (-609 $)) $) 48)) (-2227 (($ (-114) $) NIL) (($ (-114) (-640 $)) 411)) (-3939 (((-3 (-640 $) "failed") $) NIL (|has| |#1| (-1105)))) (-3959 (((-3 (-2 (|:| |val| $) (|:| -3311 (-563))) "failed") $) NIL (|has| |#1| (-1045)))) (-3930 (((-3 (-640 $) "failed") $) 414 (|has| |#1| (-25)))) (-3479 (((-3 (-2 (|:| -2310 (-563)) (|:| |var| (-609 $))) "failed") $) 418 (|has| |#1| (-25)))) (-3949 (((-3 (-2 (|:| |var| (-609 $)) (|:| -3311 (-563))) "failed") $) NIL (|has| |#1| (-1105))) (((-3 (-2 (|:| |var| (-609 $)) (|:| -3311 (-563))) "failed") $ (-114)) NIL (|has| |#1| (-1045))) (((-3 (-2 (|:| |var| (-609 $)) (|:| -3311 (-563))) "failed") $ (-1169)) NIL (|has| |#1| (-1045)))) (-2602 (((-112) $ (-114)) NIL) (((-112) $ (-1169)) 50)) (-2687 (($ $) NIL (-4034 (|has| |#1| (-473)) (|has| |#1| (-555))))) (-4025 (($ $ (-1169)) 239 (|has| |#1| (-555))) (($ $ (-1085 $)) 241 (|has| |#1| (-555)))) (-4238 (((-767) $) NIL)) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) 42)) (-2705 ((|#1| $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 287 (|has| |#1| (-555)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-555))) (($ $ $) NIL (|has| |#1| (-555)))) (-2726 (((-112) $ $) NIL) (((-112) $ (-1169)) NIL)) (-2142 (($ $ (-1169)) 214 (|has| |#1| (-555))) (($ $) 212 (|has| |#1| (-555)))) (-2081 (($ $) 206 (|has| |#1| (-555)))) (-2083 (((-418 (-1165 $)) (-1165 $)) 292 (-12 (|has| |#1| (-452)) (|has| |#1| (-555))))) (-2173 (((-418 $) $) NIL (|has| |#1| (-555)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-555))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-555)))) (-3012 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-555)))) (-3372 (($ $) 127 (|has| |#1| (-555)))) (-2969 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-1542 (($ $ (-609 $) $) NIL) (($ $ (-640 (-609 $)) (-640 $)) 405) (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-1169) (-1 $ (-640 $))) NIL) (($ $ (-1169) (-1 $ $)) NIL) (($ $ (-640 (-114)) (-640 (-1 $ $))) 359) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-114) (-1 $ (-640 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1169)) NIL (|has| |#1| (-611 (-536)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-611 (-536)))) (($ $) NIL (|has| |#1| (-611 (-536)))) (($ $ (-114) $ (-1169)) 347 (|has| |#1| (-611 (-536)))) (($ $ (-640 (-114)) (-640 $) (-1169)) 346 (|has| |#1| (-611 (-536)))) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ $))) NIL (|has| |#1| (-1045))) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ (-640 $)))) NIL (|has| |#1| (-1045))) (($ $ (-1169) (-767) (-1 $ (-640 $))) NIL (|has| |#1| (-1045))) (($ $ (-1169) (-767) (-1 $ $)) NIL (|has| |#1| (-1045)))) (-1993 (((-767) $) NIL (|has| |#1| (-555)))) (-2772 (($ $) 227 (|has| |#1| (-555)))) (-2308 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-640 $)) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-555)))) (-2761 (($ $) NIL) (($ $ $) NIL)) (-1585 (($ $) 237 (|has| |#1| (-555)))) (-1485 (($ $) 188 (|has| |#1| (-555)))) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-1045))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-1045))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-1045))) (($ $ (-1169)) NIL (|has| |#1| (-1045)))) (-2033 (($ $) 68 (|has| |#1| (-555)))) (-2153 (((-1118 |#1| (-609 $)) $) 83 (|has| |#1| (-555)))) (-3402 (($ $) 303 (|has| $ (-1045)))) (-1805 (($ $) 165 (|has| |#1| (-555)))) (-1655 (($ $) 141 (|has| |#1| (-555)))) (-1783 (($ $) 161 (|has| |#1| (-555)))) (-1629 (($ $) 137 (|has| |#1| (-555)))) (-1758 (($ $) 157 (|has| |#1| (-555)))) (-1607 (($ $) 133 (|has| |#1| (-555)))) (-2219 (((-888 (-563)) $) NIL (|has| |#1| (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| |#1| (-611 (-888 (-379))))) (($ (-418 $)) NIL (|has| |#1| (-555))) (((-536) $) 344 (|has| |#1| (-611 (-536))))) (-2150 (($ $ $) NIL (|has| |#1| (-473)))) (-1745 (($ $ $) NIL (|has| |#1| (-473)))) (-1692 (((-858) $) 404) (($ (-609 $)) 395) (($ (-1169)) 361) (($ |#1|) 323) (($ $) NIL (|has| |#1| (-555))) (($ (-48)) 298 (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563))))) (($ (-1118 |#1| (-609 $))) 85 (|has| |#1| (-1045))) (($ (-407 |#1|)) NIL (|has| |#1| (-555))) (($ (-948 (-407 |#1|))) NIL (|has| |#1| (-555))) (($ (-407 (-948 (-407 |#1|)))) NIL (|has| |#1| (-555))) (($ (-407 (-948 |#1|))) NIL (|has| |#1| (-555))) (($ (-948 |#1|)) NIL (|has| |#1| (-1045))) (($ (-407 (-563))) NIL (-4034 (|has| |#1| (-555)) (|has| |#1| (-1034 (-407 (-563)))))) (($ (-563)) 33 (-4034 (|has| |#1| (-1034 (-563))) (|has| |#1| (-1045))))) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) NIL (|has| |#1| (-1045)))) (-3083 (($ $) NIL) (($ (-640 $)) NIL)) (-1864 (($ $ $) 208 (|has| |#1| (-555)))) (-1534 (($ $ $) 194 (|has| |#1| (-555)))) (-1558 (($ $ $) 198 (|has| |#1| (-555)))) (-1521 (($ $ $) 192 (|has| |#1| (-555)))) (-1545 (($ $ $) 196 (|has| |#1| (-555)))) (-2512 (((-112) (-114)) 9)) (-1839 (($ $) 171 (|has| |#1| (-555)))) (-1694 (($ $) 147 (|has| |#1| (-555)))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1816 (($ $) 167 (|has| |#1| (-555)))) (-1666 (($ $) 143 (|has| |#1| (-555)))) (-1861 (($ $) 175 (|has| |#1| (-555)))) (-1721 (($ $) 151 (|has| |#1| (-555)))) (-1894 (($ (-1169) $) NIL) (($ (-1169) $ $) NIL) (($ (-1169) $ $ $) NIL) (($ (-1169) $ $ $ $) NIL) (($ (-1169) (-640 $)) NIL)) (-1583 (($ $) 202 (|has| |#1| (-555)))) (-1570 (($ $) 200 (|has| |#1| (-555)))) (-1311 (($ $) 177 (|has| |#1| (-555)))) (-1734 (($ $) 153 (|has| |#1| (-555)))) (-1850 (($ $) 173 (|has| |#1| (-555)))) (-1709 (($ $) 149 (|has| |#1| (-555)))) (-1828 (($ $) 169 (|has| |#1| (-555)))) (-1679 (($ $) 145 (|has| |#1| (-555)))) (-1462 (($ $) 180 (|has| |#1| (-555)))) (-2239 (($) 20 (-4034 (|has| |#1| (-25)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))) CONST)) (-2536 (($ $) 231 (|has| |#1| (-555)))) (-2253 (($) 22 (-4034 (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) (|has| |#1| (-1105))) CONST)) (-1507 (($ $) 182 (|has| |#1| (-555))) (($ $ $) 184 (|has| |#1| (-555)))) (-2547 (($ $) 229 (|has| |#1| (-555)))) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-1045))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-1045))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-1045))) (($ $ (-1169)) NIL (|has| |#1| (-1045)))) (-2525 (($ $) 233 (|has| |#1| (-555)))) (-1474 (($ $ $) 186 (|has| |#1| (-555)))) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 78)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 76)) (-1836 (($ (-1118 |#1| (-609 $)) (-1118 |#1| (-609 $))) 96 (|has| |#1| (-555))) (($ $ $) 41 (-4034 (|has| |#1| (-473)) (|has| |#1| (-555))))) (-1825 (($ $ $) 39 (-4034 (|has| |#1| (-21)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))))) (($ $) 28 (-4034 (|has| |#1| (-21)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))))) (-1813 (($ $ $) 37 (-4034 (|has| |#1| (-25)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))))) (** (($ $ $) 61 (|has| |#1| (-555))) (($ $ (-407 (-563))) 300 (|has| |#1| (-555))) (($ $ (-563)) 72 (-4034 (|has| |#1| (-473)) (|has| |#1| (-555)))) (($ $ (-767)) 69 (-4034 (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) (|has| |#1| (-1105)))) (($ $ (-917)) 74 (-4034 (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) (|has| |#1| (-1105))))) (* (($ (-407 (-563)) $) NIL (|has| |#1| (-555))) (($ $ (-407 (-563))) NIL (|has| |#1| (-555))) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172))) (($ $ $) 35 (-4034 (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) (|has| |#1| (-1105)))) (($ (-563) $) 31 (-4034 (|has| |#1| (-21)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))))) (($ (-767) $) NIL (-4034 (|has| |#1| (-25)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))))) (($ (-917) $) NIL (-4034 (|has| |#1| (-25)) (-12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))))))
+(((-316 |#1|) (-13 (-430 |#1|) (-10 -8 (IF (|has| |#1| (-555)) (PROGN (-6 (-29 |#1|)) (-6 (-1193)) (-6 (-160)) (-6 (-626)) (-6 (-1132)) (-15 -2444 ($ $)) (-15 -2020 ((-112) $)) (-15 -2012 ($ $ (-563))) (IF (|has| |#1| (-452)) (PROGN (-15 -2083 ((-418 (-1165 $)) (-1165 $))) (-15 -2093 ((-418 (-1165 $)) (-1165 $)))) |%noBranch|) (IF (|has| |#1| (-1034 (-563))) (-6 (-1034 (-48))) |%noBranch|)) |%noBranch|))) (-846)) (T -316))
+((-2444 (*1 *1 *1) (-12 (-5 *1 (-316 *2)) (-4 *2 (-555)) (-4 *2 (-846)))) (-2020 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-316 *3)) (-4 *3 (-555)) (-4 *3 (-846)))) (-2012 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-316 *3)) (-4 *3 (-555)) (-4 *3 (-846)))) (-2083 (*1 *2 *3) (-12 (-5 *2 (-418 (-1165 *1))) (-5 *1 (-316 *4)) (-5 *3 (-1165 *1)) (-4 *4 (-452)) (-4 *4 (-555)) (-4 *4 (-846)))) (-2093 (*1 *2 *3) (-12 (-5 *2 (-418 (-1165 *1))) (-5 *1 (-316 *4)) (-5 *3 (-1165 *1)) (-4 *4 (-452)) (-4 *4 (-555)) (-4 *4 (-846)))))
+(-13 (-430 |#1|) (-10 -8 (IF (|has| |#1| (-555)) (PROGN (-6 (-29 |#1|)) (-6 (-1193)) (-6 (-160)) (-6 (-626)) (-6 (-1132)) (-15 -2444 ($ $)) (-15 -2020 ((-112) $)) (-15 -2012 ($ $ (-563))) (IF (|has| |#1| (-452)) (PROGN (-15 -2083 ((-418 (-1165 $)) (-1165 $))) (-15 -2093 ((-418 (-1165 $)) (-1165 $)))) |%noBranch|) (IF (|has| |#1| (-1034 (-563))) (-6 (-1034 (-48))) |%noBranch|)) |%noBranch|)))
+((-2031 (((-52) |#2| (-114) (-294 |#2|) (-640 |#2|)) 87) (((-52) |#2| (-114) (-294 |#2|) (-294 |#2|)) 83) (((-52) |#2| (-114) (-294 |#2|) |#2|) 85) (((-52) (-294 |#2|) (-114) (-294 |#2|) |#2|) 86) (((-52) (-640 |#2|) (-640 (-114)) (-294 |#2|) (-640 (-294 |#2|))) 79) (((-52) (-640 |#2|) (-640 (-114)) (-294 |#2|) (-640 |#2|)) 81) (((-52) (-640 (-294 |#2|)) (-640 (-114)) (-294 |#2|) (-640 |#2|)) 82) (((-52) (-640 (-294 |#2|)) (-640 (-114)) (-294 |#2|) (-640 (-294 |#2|))) 80) (((-52) (-294 |#2|) (-114) (-294 |#2|) (-640 |#2|)) 88) (((-52) (-294 |#2|) (-114) (-294 |#2|) (-294 |#2|)) 84)))
+(((-317 |#1| |#2|) (-10 -7 (-15 -2031 ((-52) (-294 |#2|) (-114) (-294 |#2|) (-294 |#2|))) (-15 -2031 ((-52) (-294 |#2|) (-114) (-294 |#2|) (-640 |#2|))) (-15 -2031 ((-52) (-640 (-294 |#2|)) (-640 (-114)) (-294 |#2|) (-640 (-294 |#2|)))) (-15 -2031 ((-52) (-640 (-294 |#2|)) (-640 (-114)) (-294 |#2|) (-640 |#2|))) (-15 -2031 ((-52) (-640 |#2|) (-640 (-114)) (-294 |#2|) (-640 |#2|))) (-15 -2031 ((-52) (-640 |#2|) (-640 (-114)) (-294 |#2|) (-640 (-294 |#2|)))) (-15 -2031 ((-52) (-294 |#2|) (-114) (-294 |#2|) |#2|)) (-15 -2031 ((-52) |#2| (-114) (-294 |#2|) |#2|)) (-15 -2031 ((-52) |#2| (-114) (-294 |#2|) (-294 |#2|))) (-15 -2031 ((-52) |#2| (-114) (-294 |#2|) (-640 |#2|)))) (-13 (-846) (-555) (-611 (-536))) (-430 |#1|)) (T -317))
+((-2031 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-114)) (-5 *5 (-294 *3)) (-5 *6 (-640 *3)) (-4 *3 (-430 *7)) (-4 *7 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *7 *3)))) (-2031 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-114)) (-5 *5 (-294 *3)) (-4 *3 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *6 *3)))) (-2031 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-114)) (-5 *5 (-294 *3)) (-4 *3 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *6 *3)))) (-2031 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-294 *5)) (-5 *4 (-114)) (-4 *5 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *6 *5)))) (-2031 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 (-114))) (-5 *6 (-640 (-294 *8))) (-4 *8 (-430 *7)) (-5 *5 (-294 *8)) (-4 *7 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *7 *8)))) (-2031 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-640 *7)) (-5 *4 (-640 (-114))) (-5 *5 (-294 *7)) (-4 *7 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *6 *7)))) (-2031 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-640 (-294 *8))) (-5 *4 (-640 (-114))) (-5 *5 (-294 *8)) (-5 *6 (-640 *8)) (-4 *8 (-430 *7)) (-4 *7 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *7 *8)))) (-2031 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-640 (-294 *7))) (-5 *4 (-640 (-114))) (-5 *5 (-294 *7)) (-4 *7 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *6 *7)))) (-2031 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-294 *7)) (-5 *4 (-114)) (-5 *5 (-640 *7)) (-4 *7 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *6 *7)))) (-2031 (*1 *2 *3 *4 *3 *3) (-12 (-5 *3 (-294 *6)) (-5 *4 (-114)) (-4 *6 (-430 *5)) (-4 *5 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52)) (-5 *1 (-317 *5 *6)))))
+(-10 -7 (-15 -2031 ((-52) (-294 |#2|) (-114) (-294 |#2|) (-294 |#2|))) (-15 -2031 ((-52) (-294 |#2|) (-114) (-294 |#2|) (-640 |#2|))) (-15 -2031 ((-52) (-640 (-294 |#2|)) (-640 (-114)) (-294 |#2|) (-640 (-294 |#2|)))) (-15 -2031 ((-52) (-640 (-294 |#2|)) (-640 (-114)) (-294 |#2|) (-640 |#2|))) (-15 -2031 ((-52) (-640 |#2|) (-640 (-114)) (-294 |#2|) (-640 |#2|))) (-15 -2031 ((-52) (-640 |#2|) (-640 (-114)) (-294 |#2|) (-640 (-294 |#2|)))) (-15 -2031 ((-52) (-294 |#2|) (-114) (-294 |#2|) |#2|)) (-15 -2031 ((-52) |#2| (-114) (-294 |#2|) |#2|)) (-15 -2031 ((-52) |#2| (-114) (-294 |#2|) (-294 |#2|))) (-15 -2031 ((-52) |#2| (-114) (-294 |#2|) (-640 |#2|))))
+((-2048 (((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-225) (-563) (-1151)) 45) (((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-225) (-563)) 46) (((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-1 (-225) (-225)) (-563) (-1151)) 42) (((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-1 (-225) (-225)) (-563)) 43)) (-2041 (((-1 (-225) (-225)) (-225)) 44)))
+(((-318) (-10 -7 (-15 -2041 ((-1 (-225) (-225)) (-225))) (-15 -2048 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-1 (-225) (-225)) (-563))) (-15 -2048 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-1 (-225) (-225)) (-563) (-1151))) (-15 -2048 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-225) (-563))) (-15 -2048 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-225) (-563) (-1151))))) (T -318))
+((-2048 (*1 *2 *3 *3 *3 *4 *5 *6 *7 *8) (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1087 (-225))) (-5 *6 (-225)) (-5 *7 (-563)) (-5 *8 (-1151)) (-5 *2 (-1203 (-922))) (-5 *1 (-318)))) (-2048 (*1 *2 *3 *3 *3 *4 *5 *6 *7) (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1087 (-225))) (-5 *6 (-225)) (-5 *7 (-563)) (-5 *2 (-1203 (-922))) (-5 *1 (-318)))) (-2048 (*1 *2 *3 *3 *3 *4 *5 *4 *6 *7) (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1087 (-225))) (-5 *6 (-563)) (-5 *7 (-1151)) (-5 *2 (-1203 (-922))) (-5 *1 (-318)))) (-2048 (*1 *2 *3 *3 *3 *4 *5 *4 *6) (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1087 (-225))) (-5 *6 (-563)) (-5 *2 (-1203 (-922))) (-5 *1 (-318)))) (-2041 (*1 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-318)) (-5 *3 (-225)))))
+(-10 -7 (-15 -2041 ((-1 (-225) (-225)) (-225))) (-15 -2048 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-1 (-225) (-225)) (-563))) (-15 -2048 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-1 (-225) (-225)) (-563) (-1151))) (-15 -2048 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-225) (-563))) (-15 -2048 ((-1203 (-922)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-225) (-563) (-1151))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 25)) (-2605 (((-640 (-1075)) $) NIL)) (-2517 (((-1169) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-1763 (($ $ (-407 (-563))) NIL) (($ $ (-407 (-563)) (-407 (-563))) NIL)) (-1787 (((-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|))) $) 20)) (-1770 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL (|has| |#1| (-363)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2185 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2003 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1747 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3049 (($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|)))) NIL)) (-1793 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) NIL T CONST)) (-3094 (($ $ $) NIL (|has| |#1| (-363)))) (-2750 (($ $) 31)) (-3951 (((-3 $ "failed") $) NIL)) (-3054 (($ $ $) NIL (|has| |#1| (-363)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2560 (((-112) $) NIL (|has| |#1| (-363)))) (-3381 (((-112) $) NIL)) (-2179 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1775 (((-407 (-563)) $) NIL) (((-407 (-563)) $ (-407 (-563))) 16)) (-3401 (((-112) $) NIL)) (-2172 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1821 (($ $ (-917)) NIL) (($ $ (-407 (-563))) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-407 (-563))) NIL) (($ $ (-1075) (-407 (-563))) NIL) (($ $ (-640 (-1075)) (-640 (-407 (-563)))) NIL)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-4372 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL (|has| |#1| (-363)))) (-2062 (($ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) NIL (-4034 (-12 (|has| |#1| (-15 -2062 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2605 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193)))))) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2173 (((-418 $) $) NIL (|has| |#1| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-1751 (($ $ (-407 (-563))) NIL)) (-3012 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-2059 (((-407 (-563)) $) 17)) (-1761 (($ (-1242 |#1| |#2| |#3|)) 11)) (-3311 (((-1242 |#1| |#2| |#3|) $) 12)) (-3372 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1542 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))))) (-1993 (((-767) $) NIL (|has| |#1| (-363)))) (-2308 ((|#1| $ (-407 (-563))) NIL) (($ $ $) NIL (|has| (-407 (-563)) (-1105)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-3871 (((-407 (-563)) $) NIL)) (-1805 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3369 (($ $) 10)) (-1692 (((-858) $) 37) (($ (-563)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555)))) (-3244 ((|#1| $ (-407 (-563))) 29)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) NIL)) (-3412 ((|#1| $) NIL)) (-1839 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1816 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1402 ((|#1| $ (-407 (-563))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-1311 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 27)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 32)) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
+(((-319 |#1| |#2| |#3|) (-13 (-1238 |#1|) (-788) (-10 -8 (-15 -1761 ($ (-1242 |#1| |#2| |#3|))) (-15 -3311 ((-1242 |#1| |#2| |#3|) $)) (-15 -2059 ((-407 (-563)) $)))) (-13 (-363) (-846)) (-1169) |#1|) (T -319))
+((-1761 (*1 *1 *2) (-12 (-5 *2 (-1242 *3 *4 *5)) (-4 *3 (-13 (-363) (-846))) (-14 *4 (-1169)) (-14 *5 *3) (-5 *1 (-319 *3 *4 *5)))) (-3311 (*1 *2 *1) (-12 (-5 *2 (-1242 *3 *4 *5)) (-5 *1 (-319 *3 *4 *5)) (-4 *3 (-13 (-363) (-846))) (-14 *4 (-1169)) (-14 *5 *3))) (-2059 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-319 *3 *4 *5)) (-4 *3 (-13 (-363) (-846))) (-14 *4 (-1169)) (-14 *5 *3))))
+(-13 (-1238 |#1|) (-788) (-10 -8 (-15 -1761 ($ (-1242 |#1| |#2| |#3|))) (-15 -3311 ((-1242 |#1| |#2| |#3|) $)) (-15 -2059 ((-407 (-563)) $))))
+((-2172 (((-2 (|:| -3311 (-767)) (|:| -2310 |#1|) (|:| |radicand| (-640 |#1|))) (-418 |#1|) (-767)) 24)) (-4372 (((-640 (-2 (|:| -2310 (-767)) (|:| |logand| |#1|))) (-418 |#1|)) 28)))
+(((-320 |#1|) (-10 -7 (-15 -2172 ((-2 (|:| -3311 (-767)) (|:| -2310 |#1|) (|:| |radicand| (-640 |#1|))) (-418 |#1|) (-767))) (-15 -4372 ((-640 (-2 (|:| -2310 (-767)) (|:| |logand| |#1|))) (-418 |#1|)))) (-555)) (T -320))
+((-4372 (*1 *2 *3) (-12 (-5 *3 (-418 *4)) (-4 *4 (-555)) (-5 *2 (-640 (-2 (|:| -2310 (-767)) (|:| |logand| *4)))) (-5 *1 (-320 *4)))) (-2172 (*1 *2 *3 *4) (-12 (-5 *3 (-418 *5)) (-4 *5 (-555)) (-5 *2 (-2 (|:| -3311 (-767)) (|:| -2310 *5) (|:| |radicand| (-640 *5)))) (-5 *1 (-320 *5)) (-5 *4 (-767)))))
+(-10 -7 (-15 -2172 ((-2 (|:| -3311 (-767)) (|:| -2310 |#1|) (|:| |radicand| (-640 |#1|))) (-418 |#1|) (-767))) (-15 -4372 ((-640 (-2 (|:| -2310 (-767)) (|:| |logand| |#1|))) (-418 |#1|))))
+((-2605 (((-640 |#2|) (-1165 |#4|)) 43)) (-2106 ((|#3| (-563)) 46)) (-2086 (((-1165 |#4|) (-1165 |#3|)) 30)) (-2096 (((-1165 |#4|) (-1165 |#4|) (-563)) 55)) (-2078 (((-1165 |#3|) (-1165 |#4|)) 21)) (-3871 (((-640 (-767)) (-1165 |#4|) (-640 |#2|)) 40)) (-2069 (((-1165 |#3|) (-1165 |#4|) (-640 |#2|) (-640 |#3|)) 35)))
+(((-321 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2069 ((-1165 |#3|) (-1165 |#4|) (-640 |#2|) (-640 |#3|))) (-15 -3871 ((-640 (-767)) (-1165 |#4|) (-640 |#2|))) (-15 -2605 ((-640 |#2|) (-1165 |#4|))) (-15 -2078 ((-1165 |#3|) (-1165 |#4|))) (-15 -2086 ((-1165 |#4|) (-1165 |#3|))) (-15 -2096 ((-1165 |#4|) (-1165 |#4|) (-563))) (-15 -2106 (|#3| (-563)))) (-789) (-846) (-1045) (-945 |#3| |#1| |#2|)) (T -321))
+((-2106 (*1 *2 *3) (-12 (-5 *3 (-563)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1045)) (-5 *1 (-321 *4 *5 *2 *6)) (-4 *6 (-945 *2 *4 *5)))) (-2096 (*1 *2 *2 *3) (-12 (-5 *2 (-1165 *7)) (-5 *3 (-563)) (-4 *7 (-945 *6 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-5 *1 (-321 *4 *5 *6 *7)))) (-2086 (*1 *2 *3) (-12 (-5 *3 (-1165 *6)) (-4 *6 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-1165 *7)) (-5 *1 (-321 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5)))) (-2078 (*1 *2 *3) (-12 (-5 *3 (-1165 *7)) (-4 *7 (-945 *6 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-5 *2 (-1165 *6)) (-5 *1 (-321 *4 *5 *6 *7)))) (-2605 (*1 *2 *3) (-12 (-5 *3 (-1165 *7)) (-4 *7 (-945 *6 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-5 *2 (-640 *5)) (-5 *1 (-321 *4 *5 *6 *7)))) (-3871 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 *8)) (-5 *4 (-640 *6)) (-4 *6 (-846)) (-4 *8 (-945 *7 *5 *6)) (-4 *5 (-789)) (-4 *7 (-1045)) (-5 *2 (-640 (-767))) (-5 *1 (-321 *5 *6 *7 *8)))) (-2069 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1165 *9)) (-5 *4 (-640 *7)) (-5 *5 (-640 *8)) (-4 *7 (-846)) (-4 *8 (-1045)) (-4 *9 (-945 *8 *6 *7)) (-4 *6 (-789)) (-5 *2 (-1165 *8)) (-5 *1 (-321 *6 *7 *8 *9)))))
+(-10 -7 (-15 -2069 ((-1165 |#3|) (-1165 |#4|) (-640 |#2|) (-640 |#3|))) (-15 -3871 ((-640 (-767)) (-1165 |#4|) (-640 |#2|))) (-15 -2605 ((-640 |#2|) (-1165 |#4|))) (-15 -2078 ((-1165 |#3|) (-1165 |#4|))) (-15 -2086 ((-1165 |#4|) (-1165 |#3|))) (-15 -2096 ((-1165 |#4|) (-1165 |#4|) (-563))) (-15 -2106 (|#3| (-563))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 14)) (-1787 (((-640 (-2 (|:| |gen| |#1|) (|:| -3372 (-563)))) $) 18)) (-3905 (((-3 $ "failed") $ $) NIL)) (-3750 (((-767) $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL)) (-2057 ((|#1| $) NIL)) (-1347 ((|#1| $ (-563)) NIL)) (-2137 (((-563) $ (-563)) NIL)) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-1499 (($ (-1 |#1| |#1|) $) NIL)) (-2127 (($ (-1 (-563) (-563)) $) 10)) (-3854 (((-1151) $) NIL)) (-2116 (($ $ $) NIL (|has| (-563) (-788)))) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL) (($ |#1|) NIL)) (-3244 (((-563) |#1| $) NIL)) (-2239 (($) 15 T CONST)) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) 21 (|has| |#1| (-846)))) (-1825 (($ $) 11) (($ $ $) 20)) (-1813 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ (-563)) NIL) (($ (-563) |#1|) 19)))
(((-322 |#1|) (-13 (-21) (-713 (-563)) (-323 |#1| (-563)) (-10 -7 (IF (|has| |#1| (-846)) (-6 (-846)) |%noBranch|))) (-1093)) (T -322))
NIL
(-13 (-21) (-713 (-563)) (-323 |#1| (-563)) (-10 -7 (IF (|has| |#1| (-846)) (-6 (-846)) |%noBranch|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1539 (((-640 (-2 (|:| |gen| |#1|) (|:| -3368 |#2|))) $) 27)) (-1495 (((-3 $ "failed") $ $) 19)) (-3749 (((-767) $) 28)) (-4239 (($) 17 T CONST)) (-2131 (((-3 |#1| "failed") $) 32)) (-2058 ((|#1| $) 33)) (-2768 ((|#1| $ (-563)) 25)) (-1992 ((|#2| $ (-563)) 26)) (-1633 (($ (-1 |#1| |#1|) $) 22)) (-1480 (($ (-1 |#2| |#2|) $) 23)) (-3573 (((-1151) $) 9)) (-2700 (($ $ $) 21 (|has| |#2| (-788)))) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ |#1|) 31)) (-4319 ((|#2| |#1| $) 24)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1814 (($ $ $) 14) (($ |#1| $) 30)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ |#2| |#1|) 29)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-1787 (((-640 (-2 (|:| |gen| |#1|) (|:| -3372 |#2|))) $) 27)) (-3905 (((-3 $ "failed") $ $) 19)) (-3750 (((-767) $) 28)) (-2569 (($) 17 T CONST)) (-2130 (((-3 |#1| "failed") $) 32)) (-2057 ((|#1| $) 33)) (-1347 ((|#1| $ (-563)) 25)) (-2137 ((|#2| $ (-563)) 26)) (-1499 (($ (-1 |#1| |#1|) $) 22)) (-2127 (($ (-1 |#2| |#2|) $) 23)) (-3854 (((-1151) $) 9)) (-2116 (($ $ $) 21 (|has| |#2| (-788)))) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ |#1|) 31)) (-3244 ((|#2| |#1| $) 24)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1813 (($ $ $) 14) (($ |#1| $) 30)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ |#2| |#1|) 29)))
(((-323 |#1| |#2|) (-140) (-1093) (-131)) (T -323))
-((-1814 (*1 *1 *2 *1) (-12 (-4 *1 (-323 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-131)))) (* (*1 *1 *2 *3) (-12 (-4 *1 (-323 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-131)))) (-3749 (*1 *2 *1) (-12 (-4 *1 (-323 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-131)) (-5 *2 (-767)))) (-1539 (*1 *2 *1) (-12 (-4 *1 (-323 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-131)) (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3368 *4)))))) (-1992 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-323 *4 *2)) (-4 *4 (-1093)) (-4 *2 (-131)))) (-2768 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-323 *2 *4)) (-4 *4 (-131)) (-4 *2 (-1093)))) (-4319 (*1 *2 *3 *1) (-12 (-4 *1 (-323 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-131)))) (-1480 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-323 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-131)))) (-1633 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-323 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-131)))) (-2700 (*1 *1 *1 *1) (-12 (-4 *1 (-323 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-131)) (-4 *3 (-788)))))
-(-13 (-131) (-1034 |t#1|) (-10 -8 (-15 -1814 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -3749 ((-767) $)) (-15 -1539 ((-640 (-2 (|:| |gen| |t#1|) (|:| -3368 |t#2|))) $)) (-15 -1992 (|t#2| $ (-563))) (-15 -2768 (|t#1| $ (-563))) (-15 -4319 (|t#2| |t#1| $)) (-15 -1480 ($ (-1 |t#2| |t#2|) $)) (-15 -1633 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-788)) (-15 -2700 ($ $ $)) |%noBranch|)))
+((-1813 (*1 *1 *2 *1) (-12 (-4 *1 (-323 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-131)))) (* (*1 *1 *2 *3) (-12 (-4 *1 (-323 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-131)))) (-3750 (*1 *2 *1) (-12 (-4 *1 (-323 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-131)) (-5 *2 (-767)))) (-1787 (*1 *2 *1) (-12 (-4 *1 (-323 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-131)) (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3372 *4)))))) (-2137 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-323 *4 *2)) (-4 *4 (-1093)) (-4 *2 (-131)))) (-1347 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-323 *2 *4)) (-4 *4 (-131)) (-4 *2 (-1093)))) (-3244 (*1 *2 *3 *1) (-12 (-4 *1 (-323 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-131)))) (-2127 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-323 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-131)))) (-1499 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-323 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-131)))) (-2116 (*1 *1 *1 *1) (-12 (-4 *1 (-323 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-131)) (-4 *3 (-788)))))
+(-13 (-131) (-1034 |t#1|) (-10 -8 (-15 -1813 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -3750 ((-767) $)) (-15 -1787 ((-640 (-2 (|:| |gen| |t#1|) (|:| -3372 |t#2|))) $)) (-15 -2137 (|t#2| $ (-563))) (-15 -1347 (|t#1| $ (-563))) (-15 -3244 (|t#2| |t#1| $)) (-15 -2127 ($ (-1 |t#2| |t#2|) $)) (-15 -1499 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-788)) (-15 -2116 ($ $ $)) |%noBranch|)))
(((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 |#1|) . T) ((-610 (-858)) . T) ((-1034 |#1|) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1539 (((-640 (-2 (|:| |gen| |#1|) (|:| -3368 (-767)))) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3749 (((-767) $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL)) (-2058 ((|#1| $) NIL)) (-2768 ((|#1| $ (-563)) NIL)) (-1992 (((-767) $ (-563)) NIL)) (-1633 (($ (-1 |#1| |#1|) $) NIL)) (-1480 (($ (-1 (-767) (-767)) $) NIL)) (-3573 (((-1151) $) NIL)) (-2700 (($ $ $) NIL (|has| (-767) (-788)))) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL) (($ |#1|) NIL)) (-4319 (((-767) |#1| $) NIL)) (-2241 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1814 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-767) |#1|) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-1787 (((-640 (-2 (|:| |gen| |#1|) (|:| -3372 (-767)))) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-3750 (((-767) $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL)) (-2057 ((|#1| $) NIL)) (-1347 ((|#1| $ (-563)) NIL)) (-2137 (((-767) $ (-563)) NIL)) (-1499 (($ (-1 |#1| |#1|) $) NIL)) (-2127 (($ (-1 (-767) (-767)) $) NIL)) (-3854 (((-1151) $) NIL)) (-2116 (($ $ $) NIL (|has| (-767) (-788)))) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL) (($ |#1|) NIL)) (-3244 (((-767) |#1| $) NIL)) (-2239 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1813 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-767) |#1|) NIL)))
(((-324 |#1|) (-323 |#1| (-767)) (-1093)) (T -324))
NIL
(-323 |#1| (-767))
-((-1300 (($ $) 52)) (-3554 (($ $ |#2| |#3| $) 14)) (-2803 (($ (-1 |#3| |#3|) $) 33)) (-2696 (((-112) $) 24)) (-2706 ((|#2| $) 26)) (-3008 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 43)) (-1836 ((|#2| $) 48)) (-1337 (((-640 |#2|) $) 36)) (-2793 (($ $ $ (-767)) 20)) (-1837 (($ $ |#2|) 40)))
-(((-325 |#1| |#2| |#3|) (-10 -8 (-15 -1300 (|#1| |#1|)) (-15 -1836 (|#2| |#1|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2793 (|#1| |#1| |#1| (-767))) (-15 -3554 (|#1| |#1| |#2| |#3| |#1|)) (-15 -2803 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1337 ((-640 |#2|) |#1|)) (-15 -2706 (|#2| |#1|)) (-15 -2696 ((-112) |#1|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1837 (|#1| |#1| |#2|))) (-326 |#2| |#3|) (-1045) (-788)) (T -325))
+((-4151 (($ $) 51)) (-2159 (($ $ |#2| |#3| $) 14)) (-2170 (($ (-1 |#3| |#3|) $) 33)) (-2695 (((-112) $) 24)) (-2705 ((|#2| $) 26)) (-3012 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 43)) (-3885 ((|#2| $) 47)) (-3955 (((-640 |#2|) $) 36)) (-2148 (($ $ $ (-767)) 20)) (-1836 (($ $ |#2|) 40)))
+(((-325 |#1| |#2| |#3|) (-10 -8 (-15 -4151 (|#1| |#1|)) (-15 -3885 (|#2| |#1|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2148 (|#1| |#1| |#1| (-767))) (-15 -2159 (|#1| |#1| |#2| |#3| |#1|)) (-15 -2170 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3955 ((-640 |#2|) |#1|)) (-15 -2705 (|#2| |#1|)) (-15 -2695 ((-112) |#1|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1836 (|#1| |#1| |#2|))) (-326 |#2| |#3|) (-1045) (-788)) (T -325))
NIL
-(-10 -8 (-15 -1300 (|#1| |#1|)) (-15 -1836 (|#2| |#1|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2793 (|#1| |#1| |#1| (-767))) (-15 -3554 (|#1| |#1| |#2| |#3| |#1|)) (-15 -2803 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1337 ((-640 |#2|) |#1|)) (-15 -2706 (|#2| |#1|)) (-15 -2696 ((-112) |#1|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1837 (|#1| |#1| |#2|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-4223 (($ $) 55 (|has| |#1| (-555)))) (-3156 (((-112) $) 57 (|has| |#1| (-555)))) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-2131 (((-3 (-563) "failed") $) 91 (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 89 (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 86)) (-2058 (((-563) $) 90 (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) 88 (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 87)) (-2751 (($ $) 63)) (-3400 (((-3 $ "failed") $) 33)) (-1300 (($ $) 75 (|has| |#1| (-452)))) (-3554 (($ $ |#1| |#2| $) 79)) (-3827 (((-112) $) 31)) (-4096 (((-767) $) 82)) (-3920 (((-112) $) 65)) (-2588 (($ |#1| |#2|) 64)) (-2048 ((|#2| $) 81)) (-2803 (($ (-1 |#2| |#2|) $) 80)) (-2240 (($ (-1 |#1| |#1|) $) 66)) (-2716 (($ $) 68)) (-2726 ((|#1| $) 69)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-2696 (((-112) $) 85)) (-2706 ((|#1| $) 84)) (-3008 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555))) (((-3 $ "failed") $ |#1|) 77 (|has| |#1| (-555)))) (-4167 ((|#2| $) 67)) (-1836 ((|#1| $) 76 (|has| |#1| (-452)))) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 52 (|has| |#1| (-555))) (($ |#1|) 50) (($ (-407 (-563))) 60 (-4032 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563))))))) (-1337 (((-640 |#1|) $) 83)) (-4319 ((|#1| $ |#2|) 62)) (-2779 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-1675 (((-767)) 28)) (-2793 (($ $ $ (-767)) 78 (|has| |#1| (-172)))) (-2126 (((-112) $ $) 56 (|has| |#1| (-555)))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1837 (($ $ |#1|) 61 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
+(-10 -8 (-15 -4151 (|#1| |#1|)) (-15 -3885 (|#2| |#1|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2148 (|#1| |#1| |#1| (-767))) (-15 -2159 (|#1| |#1| |#2| |#3| |#1|)) (-15 -2170 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3955 ((-640 |#2|) |#1|)) (-15 -2705 (|#2| |#1|)) (-15 -2695 ((-112) |#1|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1836 (|#1| |#1| |#2|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-3231 (($ $) 55 (|has| |#1| (-555)))) (-3211 (((-112) $) 57 (|has| |#1| (-555)))) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-2130 (((-3 (-563) "failed") $) 91 (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 89 (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 86)) (-2057 (((-563) $) 90 (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) 88 (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 87)) (-2750 (($ $) 63)) (-3951 (((-3 $ "failed") $) 33)) (-4151 (($ $) 75 (|has| |#1| (-452)))) (-2159 (($ $ |#1| |#2| $) 79)) (-3401 (((-112) $) 31)) (-3481 (((-767) $) 82)) (-3805 (((-112) $) 65)) (-2587 (($ |#1| |#2|) 64)) (-3908 ((|#2| $) 81)) (-2170 (($ (-1 |#2| |#2|) $) 80)) (-2238 (($ (-1 |#1| |#1|) $) 66)) (-2715 (($ $) 68)) (-2725 ((|#1| $) 69)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-2695 (((-112) $) 85)) (-2705 ((|#1| $) 84)) (-3012 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555))) (((-3 $ "failed") $ |#1|) 77 (|has| |#1| (-555)))) (-3871 ((|#2| $) 67)) (-3885 ((|#1| $) 76 (|has| |#1| (-452)))) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 52 (|has| |#1| (-555))) (($ |#1|) 50) (($ (-407 (-563))) 60 (-4034 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563))))))) (-3955 (((-640 |#1|) $) 83)) (-3244 ((|#1| $ |#2|) 62)) (-2047 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-3914 (((-767)) 28)) (-2148 (($ $ $ (-767)) 78 (|has| |#1| (-172)))) (-3223 (((-112) $ $) 56 (|has| |#1| (-555)))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1836 (($ $ |#1|) 61 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
(((-326 |#1| |#2|) (-140) (-1045) (-788)) (T -326))
-((-2696 (*1 *2 *1) (-12 (-4 *1 (-326 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (-5 *2 (-112)))) (-2706 (*1 *2 *1) (-12 (-4 *1 (-326 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045)))) (-1337 (*1 *2 *1) (-12 (-4 *1 (-326 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (-5 *2 (-640 *3)))) (-4096 (*1 *2 *1) (-12 (-4 *1 (-326 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (-5 *2 (-767)))) (-2048 (*1 *2 *1) (-12 (-4 *1 (-326 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))) (-2803 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-326 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)))) (-3554 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-326 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)))) (-2793 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-326 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (-4 *3 (-172)))) (-3008 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-326 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)) (-4 *2 (-555)))) (-1836 (*1 *2 *1) (-12 (-4 *1 (-326 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045)) (-4 *2 (-452)))) (-1300 (*1 *1 *1) (-12 (-4 *1 (-326 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)) (-4 *2 (-452)))))
-(-13 (-47 |t#1| |t#2|) (-411 |t#1|) (-10 -8 (-15 -2696 ((-112) $)) (-15 -2706 (|t#1| $)) (-15 -1337 ((-640 |t#1|) $)) (-15 -4096 ((-767) $)) (-15 -2048 (|t#2| $)) (-15 -2803 ($ (-1 |t#2| |t#2|) $)) (-15 -3554 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-172)) (-15 -2793 ($ $ $ (-767))) |%noBranch|) (IF (|has| |t#1| (-555)) (-15 -3008 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-452)) (PROGN (-15 -1836 (|t#1| $)) (-15 -1300 ($ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-555)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) -4032 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 $) |has| |#1| (-555)) ((-610 (-858)) . T) ((-172) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-290) |has| |#1| (-555)) ((-411 |#1|) . T) ((-555) |has| |#1| (-555)) ((-643 #0#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #0#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) |has| |#1| (-555)) ((-722) . T) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1051 #0#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-3523 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-2770 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4408))) (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-846))))) (-1642 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-2759 (((-112) $ (-767)) NIL)) (-3689 (((-112) (-112)) NIL)) (-1849 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4408)))) (-2812 (($ (-1 (-112) |#1|) $) NIL)) (-2256 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-4005 (($ $) NIL (|has| |#1| (-1093)))) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2705 (($ |#1| $) NIL (|has| |#1| (-1093))) (($ (-1 (-112) |#1|) $) NIL)) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) NIL)) (-4368 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-3945 (($ $ (-563)) NIL)) (-4182 (((-767) $) NIL)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1566 (($ (-767) |#1|) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) NIL (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-2878 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3164 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-846)))) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1812 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-3396 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3374 (($ (-640 |#1|)) NIL)) (-3781 ((|#1| $) NIL (|has| (-563) (-846)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2358 (($ $ |#1|) NIL (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1314 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-2963 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3076 (($ $ $ (-563)) NIL (|has| $ (-6 -4408)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) NIL)) (-3245 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2853 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-327 |#1|) (-13 (-19 |#1|) (-282 |#1|) (-10 -8 (-15 -3374 ($ (-640 |#1|))) (-15 -4182 ((-767) $)) (-15 -3945 ($ $ (-563))) (-15 -3689 ((-112) (-112))))) (-1208)) (T -327))
-((-3374 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-327 *3)))) (-4182 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-327 *3)) (-4 *3 (-1208)))) (-3945 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-327 *3)) (-4 *3 (-1208)))) (-3689 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-327 *3)) (-4 *3 (-1208)))))
-(-13 (-19 |#1|) (-282 |#1|) (-10 -8 (-15 -3374 ($ (-640 |#1|))) (-15 -4182 ((-767) $)) (-15 -3945 ($ $ (-563))) (-15 -3689 ((-112) (-112)))))
-((-2388 (((-112) $) 42)) (-3259 (((-767)) 22)) (-1733 ((|#2| $) 46) (($ $ (-917)) 100)) (-3749 (((-767)) 101)) (-3937 (($ (-1257 |#2|)) 20)) (-2890 (((-112) $) 114)) (-3793 ((|#2| $) 48) (($ $ (-917)) 98)) (-3941 (((-1165 |#2|) $) NIL) (((-1165 $) $ (-917)) 94)) (-2229 (((-1165 |#2|) $) 82)) (-1631 (((-1165 |#2|) $) 79) (((-3 (-1165 |#2|) "failed") $ $) 76)) (-4166 (($ $ (-1165 |#2|)) 53)) (-1467 (((-829 (-917))) 28) (((-917)) 43)) (-3533 (((-134)) 25)) (-4167 (((-829 (-917)) $) 30) (((-917) $) 116)) (-1484 (($) 107)) (-1880 (((-1257 |#2|) $) NIL) (((-684 |#2|) (-1257 $)) 39)) (-2779 (($ $) NIL) (((-3 $ "failed") $) 85)) (-3152 (((-112) $) 41)))
-(((-328 |#1| |#2|) (-10 -8 (-15 -2779 ((-3 |#1| "failed") |#1|)) (-15 -3749 ((-767))) (-15 -2779 (|#1| |#1|)) (-15 -1631 ((-3 (-1165 |#2|) "failed") |#1| |#1|)) (-15 -1631 ((-1165 |#2|) |#1|)) (-15 -2229 ((-1165 |#2|) |#1|)) (-15 -4166 (|#1| |#1| (-1165 |#2|))) (-15 -2890 ((-112) |#1|)) (-15 -1484 (|#1|)) (-15 -1733 (|#1| |#1| (-917))) (-15 -3793 (|#1| |#1| (-917))) (-15 -3941 ((-1165 |#1|) |#1| (-917))) (-15 -1733 (|#2| |#1|)) (-15 -3793 (|#2| |#1|)) (-15 -4167 ((-917) |#1|)) (-15 -1467 ((-917))) (-15 -3941 ((-1165 |#2|) |#1|)) (-15 -3937 (|#1| (-1257 |#2|))) (-15 -1880 ((-684 |#2|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1|)) (-15 -3259 ((-767))) (-15 -1467 ((-829 (-917)))) (-15 -4167 ((-829 (-917)) |#1|)) (-15 -2388 ((-112) |#1|)) (-15 -3152 ((-112) |#1|)) (-15 -3533 ((-134)))) (-329 |#2|) (-363)) (T -328))
-((-3533 (*1 *2) (-12 (-4 *4 (-363)) (-5 *2 (-134)) (-5 *1 (-328 *3 *4)) (-4 *3 (-329 *4)))) (-1467 (*1 *2) (-12 (-4 *4 (-363)) (-5 *2 (-829 (-917))) (-5 *1 (-328 *3 *4)) (-4 *3 (-329 *4)))) (-3259 (*1 *2) (-12 (-4 *4 (-363)) (-5 *2 (-767)) (-5 *1 (-328 *3 *4)) (-4 *3 (-329 *4)))) (-1467 (*1 *2) (-12 (-4 *4 (-363)) (-5 *2 (-917)) (-5 *1 (-328 *3 *4)) (-4 *3 (-329 *4)))) (-3749 (*1 *2) (-12 (-4 *4 (-363)) (-5 *2 (-767)) (-5 *1 (-328 *3 *4)) (-4 *3 (-329 *4)))))
-(-10 -8 (-15 -2779 ((-3 |#1| "failed") |#1|)) (-15 -3749 ((-767))) (-15 -2779 (|#1| |#1|)) (-15 -1631 ((-3 (-1165 |#2|) "failed") |#1| |#1|)) (-15 -1631 ((-1165 |#2|) |#1|)) (-15 -2229 ((-1165 |#2|) |#1|)) (-15 -4166 (|#1| |#1| (-1165 |#2|))) (-15 -2890 ((-112) |#1|)) (-15 -1484 (|#1|)) (-15 -1733 (|#1| |#1| (-917))) (-15 -3793 (|#1| |#1| (-917))) (-15 -3941 ((-1165 |#1|) |#1| (-917))) (-15 -1733 (|#2| |#1|)) (-15 -3793 (|#2| |#1|)) (-15 -4167 ((-917) |#1|)) (-15 -1467 ((-917))) (-15 -3941 ((-1165 |#2|) |#1|)) (-15 -3937 (|#1| (-1257 |#2|))) (-15 -1880 ((-684 |#2|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1|)) (-15 -3259 ((-767))) (-15 -1467 ((-829 (-917)))) (-15 -4167 ((-829 (-917)) |#1|)) (-15 -2388 ((-112) |#1|)) (-15 -3152 ((-112) |#1|)) (-15 -3533 ((-134))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-2388 (((-112) $) 95)) (-3259 (((-767)) 91)) (-1733 ((|#1| $) 141) (($ $ (-917)) 138 (|has| |#1| (-368)))) (-2752 (((-1181 (-917) (-767)) (-563)) 123 (|has| |#1| (-368)))) (-1495 (((-3 $ "failed") $ $) 19)) (-4335 (($ $) 74)) (-3205 (((-418 $) $) 73)) (-1919 (((-112) $ $) 60)) (-3749 (((-767)) 113 (|has| |#1| (-368)))) (-4239 (($) 17 T CONST)) (-2131 (((-3 |#1| "failed") $) 102)) (-2058 ((|#1| $) 103)) (-3937 (($ (-1257 |#1|)) 147)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) 129 (|has| |#1| (-368)))) (-3090 (($ $ $) 56)) (-3400 (((-3 $ "failed") $) 33)) (-1691 (($) 110 (|has| |#1| (-368)))) (-3050 (($ $ $) 57)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 52)) (-1571 (($) 125 (|has| |#1| (-368)))) (-2366 (((-112) $) 126 (|has| |#1| (-368)))) (-1637 (($ $ (-767)) 88 (-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) 87 (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2468 (((-112) $) 72)) (-3254 (((-917) $) 128 (|has| |#1| (-368))) (((-829 (-917)) $) 85 (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3827 (((-112) $) 31)) (-3723 (($) 136 (|has| |#1| (-368)))) (-2890 (((-112) $) 135 (|has| |#1| (-368)))) (-3793 ((|#1| $) 142) (($ $ (-917)) 139 (|has| |#1| (-368)))) (-2408 (((-3 $ "failed") $) 114 (|has| |#1| (-368)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3941 (((-1165 |#1|) $) 146) (((-1165 $) $ (-917)) 140 (|has| |#1| (-368)))) (-1476 (((-917) $) 111 (|has| |#1| (-368)))) (-2229 (((-1165 |#1|) $) 132 (|has| |#1| (-368)))) (-1631 (((-1165 |#1|) $) 131 (|has| |#1| (-368))) (((-3 (-1165 |#1|) "failed") $ $) 130 (|has| |#1| (-368)))) (-4166 (($ $ (-1165 |#1|)) 133 (|has| |#1| (-368)))) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-2688 (($ $) 71)) (-2523 (($) 115 (|has| |#1| (-368)) CONST)) (-2555 (($ (-917)) 112 (|has| |#1| (-368)))) (-3013 (((-112) $) 94)) (-1694 (((-1113) $) 10)) (-4333 (($) 134 (|has| |#1| (-368)))) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) 122 (|has| |#1| (-368)))) (-2174 (((-418 $) $) 75)) (-1467 (((-829 (-917))) 92) (((-917)) 144)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3008 (((-3 $ "failed") $ $) 43)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-2628 (((-767) $) 59)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 58)) (-1423 (((-767) $) 127 (|has| |#1| (-368))) (((-3 (-767) "failed") $ $) 86 (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3533 (((-134)) 100)) (-4202 (($ $) 119 (|has| |#1| (-368))) (($ $ (-767)) 117 (|has| |#1| (-368)))) (-4167 (((-829 (-917)) $) 93) (((-917) $) 143)) (-3390 (((-1165 |#1|)) 145)) (-4284 (($) 124 (|has| |#1| (-368)))) (-1484 (($) 137 (|has| |#1| (-368)))) (-1880 (((-1257 |#1|) $) 149) (((-684 |#1|) (-1257 $)) 148)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) 121 (|has| |#1| (-368)))) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67) (($ |#1|) 101)) (-2779 (($ $) 120 (|has| |#1| (-368))) (((-3 $ "failed") $) 84 (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-1675 (((-767)) 28)) (-4315 (((-1257 $)) 151) (((-1257 $) (-917)) 150)) (-2126 (((-112) $ $) 40)) (-3152 (((-112) $) 96)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-2350 (($ $) 90 (|has| |#1| (-368))) (($ $ (-767)) 89 (|has| |#1| (-368)))) (-3209 (($ $) 118 (|has| |#1| (-368))) (($ $ (-767)) 116 (|has| |#1| (-368)))) (-1718 (((-112) $ $) 6)) (-1837 (($ $ $) 66) (($ $ |#1|) 99)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68) (($ $ |#1|) 98) (($ |#1| $) 97)))
+((-2695 (*1 *2 *1) (-12 (-4 *1 (-326 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (-5 *2 (-112)))) (-2705 (*1 *2 *1) (-12 (-4 *1 (-326 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045)))) (-3955 (*1 *2 *1) (-12 (-4 *1 (-326 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (-5 *2 (-640 *3)))) (-3481 (*1 *2 *1) (-12 (-4 *1 (-326 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (-5 *2 (-767)))) (-3908 (*1 *2 *1) (-12 (-4 *1 (-326 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))) (-2170 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-326 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)))) (-2159 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-326 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)))) (-2148 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-326 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (-4 *3 (-172)))) (-3012 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-326 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)) (-4 *2 (-555)))) (-3885 (*1 *2 *1) (-12 (-4 *1 (-326 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045)) (-4 *2 (-452)))) (-4151 (*1 *1 *1) (-12 (-4 *1 (-326 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)) (-4 *2 (-452)))))
+(-13 (-47 |t#1| |t#2|) (-411 |t#1|) (-10 -8 (-15 -2695 ((-112) $)) (-15 -2705 (|t#1| $)) (-15 -3955 ((-640 |t#1|) $)) (-15 -3481 ((-767) $)) (-15 -3908 (|t#2| $)) (-15 -2170 ($ (-1 |t#2| |t#2|) $)) (-15 -2159 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-172)) (-15 -2148 ($ $ $ (-767))) |%noBranch|) (IF (|has| |t#1| (-555)) (-15 -3012 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-452)) (PROGN (-15 -3885 (|t#1| $)) (-15 -4151 ($ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-555)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) -4034 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 $) |has| |#1| (-555)) ((-610 (-858)) . T) ((-172) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-290) |has| |#1| (-555)) ((-411 |#1|) . T) ((-555) |has| |#1| (-555)) ((-643 #0#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #0#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) |has| |#1| (-555)) ((-722) . T) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1051 #0#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4073 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-4052 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4409))) (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| |#1| (-846))))) (-1640 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-3001 (((-112) $ (-767)) NIL)) (-1878 (((-112) (-112)) NIL)) (-1849 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4409)))) (-3678 (($ (-1 (-112) |#1|) $) NIL)) (-2255 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-4194 (($ $) NIL (|has| |#1| (-1093)))) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1691 (($ |#1| $) NIL (|has| |#1| (-1093))) (($ (-1 (-112) |#1|) $) NIL)) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) NIL)) (-4369 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-1889 (($ $ (-563)) NIL)) (-1900 (((-767) $) NIL)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-1565 (($ (-767) |#1|) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) NIL (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-4265 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-4300 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-846)))) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3867 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-3399 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-1910 (($ (-640 |#1|)) NIL)) (-3782 ((|#1| $) NIL (|has| (-563) (-846)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2221 (($ $ |#1|) NIL (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-3690 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-2967 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4062 (($ $ $ (-563)) NIL (|has| $ (-6 -4409)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) NIL)) (-1941 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2857 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-327 |#1|) (-13 (-19 |#1|) (-282 |#1|) (-10 -8 (-15 -1910 ($ (-640 |#1|))) (-15 -1900 ((-767) $)) (-15 -1889 ($ $ (-563))) (-15 -1878 ((-112) (-112))))) (-1208)) (T -327))
+((-1910 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-327 *3)))) (-1900 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-327 *3)) (-4 *3 (-1208)))) (-1889 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-327 *3)) (-4 *3 (-1208)))) (-1878 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-327 *3)) (-4 *3 (-1208)))))
+(-13 (-19 |#1|) (-282 |#1|) (-10 -8 (-15 -1910 ($ (-640 |#1|))) (-15 -1900 ((-767) $)) (-15 -1889 ($ $ (-563))) (-15 -1878 ((-112) (-112)))))
+((-3761 (((-112) $) 42)) (-3728 (((-767)) 22)) (-1731 ((|#2| $) 46) (($ $ (-917)) 100)) (-3750 (((-767)) 101)) (-3458 (($ (-1257 |#2|)) 20)) (-4002 (((-112) $) 114)) (-3975 ((|#2| $) 48) (($ $ (-917)) 98)) (-4035 (((-1165 |#2|) $) NIL) (((-1165 $) $ (-917)) 94)) (-2196 (((-1165 |#2|) $) 82)) (-2184 (((-1165 |#2|) $) 79) (((-3 (-1165 |#2|) "failed") $ $) 76)) (-2207 (($ $ (-1165 |#2|)) 53)) (-3740 (((-829 (-917))) 28) (((-917)) 43)) (-3526 (((-134)) 25)) (-3871 (((-829 (-917)) $) 30) (((-917) $) 116)) (-2220 (($) 107)) (-3759 (((-1257 |#2|) $) NIL) (((-684 |#2|) (-1257 $)) 39)) (-2047 (($ $) NIL) (((-3 $ "failed") $) 85)) (-3772 (((-112) $) 41)))
+(((-328 |#1| |#2|) (-10 -8 (-15 -2047 ((-3 |#1| "failed") |#1|)) (-15 -3750 ((-767))) (-15 -2047 (|#1| |#1|)) (-15 -2184 ((-3 (-1165 |#2|) "failed") |#1| |#1|)) (-15 -2184 ((-1165 |#2|) |#1|)) (-15 -2196 ((-1165 |#2|) |#1|)) (-15 -2207 (|#1| |#1| (-1165 |#2|))) (-15 -4002 ((-112) |#1|)) (-15 -2220 (|#1|)) (-15 -1731 (|#1| |#1| (-917))) (-15 -3975 (|#1| |#1| (-917))) (-15 -4035 ((-1165 |#1|) |#1| (-917))) (-15 -1731 (|#2| |#1|)) (-15 -3975 (|#2| |#1|)) (-15 -3871 ((-917) |#1|)) (-15 -3740 ((-917))) (-15 -4035 ((-1165 |#2|) |#1|)) (-15 -3458 (|#1| (-1257 |#2|))) (-15 -3759 ((-684 |#2|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1|)) (-15 -3728 ((-767))) (-15 -3740 ((-829 (-917)))) (-15 -3871 ((-829 (-917)) |#1|)) (-15 -3761 ((-112) |#1|)) (-15 -3772 ((-112) |#1|)) (-15 -3526 ((-134)))) (-329 |#2|) (-363)) (T -328))
+((-3526 (*1 *2) (-12 (-4 *4 (-363)) (-5 *2 (-134)) (-5 *1 (-328 *3 *4)) (-4 *3 (-329 *4)))) (-3740 (*1 *2) (-12 (-4 *4 (-363)) (-5 *2 (-829 (-917))) (-5 *1 (-328 *3 *4)) (-4 *3 (-329 *4)))) (-3728 (*1 *2) (-12 (-4 *4 (-363)) (-5 *2 (-767)) (-5 *1 (-328 *3 *4)) (-4 *3 (-329 *4)))) (-3740 (*1 *2) (-12 (-4 *4 (-363)) (-5 *2 (-917)) (-5 *1 (-328 *3 *4)) (-4 *3 (-329 *4)))) (-3750 (*1 *2) (-12 (-4 *4 (-363)) (-5 *2 (-767)) (-5 *1 (-328 *3 *4)) (-4 *3 (-329 *4)))))
+(-10 -8 (-15 -2047 ((-3 |#1| "failed") |#1|)) (-15 -3750 ((-767))) (-15 -2047 (|#1| |#1|)) (-15 -2184 ((-3 (-1165 |#2|) "failed") |#1| |#1|)) (-15 -2184 ((-1165 |#2|) |#1|)) (-15 -2196 ((-1165 |#2|) |#1|)) (-15 -2207 (|#1| |#1| (-1165 |#2|))) (-15 -4002 ((-112) |#1|)) (-15 -2220 (|#1|)) (-15 -1731 (|#1| |#1| (-917))) (-15 -3975 (|#1| |#1| (-917))) (-15 -4035 ((-1165 |#1|) |#1| (-917))) (-15 -1731 (|#2| |#1|)) (-15 -3975 (|#2| |#1|)) (-15 -3871 ((-917) |#1|)) (-15 -3740 ((-917))) (-15 -4035 ((-1165 |#2|) |#1|)) (-15 -3458 (|#1| (-1257 |#2|))) (-15 -3759 ((-684 |#2|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1|)) (-15 -3728 ((-767))) (-15 -3740 ((-829 (-917)))) (-15 -3871 ((-829 (-917)) |#1|)) (-15 -3761 ((-112) |#1|)) (-15 -3772 ((-112) |#1|)) (-15 -3526 ((-134))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-3761 (((-112) $) 95)) (-3728 (((-767)) 91)) (-1731 ((|#1| $) 141) (($ $ (-917)) 138 (|has| |#1| (-368)))) (-1597 (((-1181 (-917) (-767)) (-563)) 123 (|has| |#1| (-368)))) (-3905 (((-3 $ "failed") $ $) 19)) (-1798 (($ $) 74)) (-2802 (((-418 $) $) 73)) (-2003 (((-112) $ $) 60)) (-3750 (((-767)) 113 (|has| |#1| (-368)))) (-2569 (($) 17 T CONST)) (-2130 (((-3 |#1| "failed") $) 102)) (-2057 ((|#1| $) 103)) (-3458 (($ (-1257 |#1|)) 147)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) 129 (|has| |#1| (-368)))) (-3094 (($ $ $) 56)) (-3951 (((-3 $ "failed") $) 33)) (-1690 (($) 110 (|has| |#1| (-368)))) (-3054 (($ $ $) 57)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 52)) (-4036 (($) 125 (|has| |#1| (-368)))) (-1656 (((-112) $) 126 (|has| |#1| (-368)))) (-3188 (($ $ (-767)) 88 (-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) 87 (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2560 (((-112) $) 72)) (-1775 (((-917) $) 128 (|has| |#1| (-368))) (((-829 (-917)) $) 85 (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3401 (((-112) $) 31)) (-4024 (($) 136 (|has| |#1| (-368)))) (-4002 (((-112) $) 135 (|has| |#1| (-368)))) (-3975 ((|#1| $) 142) (($ $ (-917)) 139 (|has| |#1| (-368)))) (-1983 (((-3 $ "failed") $) 114 (|has| |#1| (-368)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-4035 (((-1165 |#1|) $) 146) (((-1165 $) $ (-917)) 140 (|has| |#1| (-368)))) (-3990 (((-917) $) 111 (|has| |#1| (-368)))) (-2196 (((-1165 |#1|) $) 132 (|has| |#1| (-368)))) (-2184 (((-1165 |#1|) $) 131 (|has| |#1| (-368))) (((-3 (-1165 |#1|) "failed") $ $) 130 (|has| |#1| (-368)))) (-2207 (($ $ (-1165 |#1|)) 133 (|has| |#1| (-368)))) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-2687 (($ $) 71)) (-2522 (($) 115 (|has| |#1| (-368)) CONST)) (-2552 (($ (-917)) 112 (|has| |#1| (-368)))) (-3751 (((-112) $) 94)) (-1693 (((-1113) $) 10)) (-4334 (($) 134 (|has| |#1| (-368)))) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) 122 (|has| |#1| (-368)))) (-2173 (((-418 $) $) 75)) (-3740 (((-829 (-917))) 92) (((-917)) 144)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3012 (((-3 $ "failed") $ $) 43)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-1993 (((-767) $) 59)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 58)) (-3196 (((-767) $) 127 (|has| |#1| (-368))) (((-3 (-767) "failed") $ $) 86 (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3526 (((-134)) 100)) (-4203 (($ $) 119 (|has| |#1| (-368))) (($ $ (-767)) 117 (|has| |#1| (-368)))) (-3871 (((-829 (-917)) $) 93) (((-917) $) 143)) (-3402 (((-1165 |#1|)) 145)) (-1586 (($) 124 (|has| |#1| (-368)))) (-2220 (($) 137 (|has| |#1| (-368)))) (-3759 (((-1257 |#1|) $) 149) (((-684 |#1|) (-1257 $)) 148)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) 121 (|has| |#1| (-368)))) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67) (($ |#1|) 101)) (-2047 (($ $) 120 (|has| |#1| (-368))) (((-3 $ "failed") $) 84 (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3914 (((-767)) 28)) (-4013 (((-1257 $)) 151) (((-1257 $) (-917)) 150)) (-3223 (((-112) $ $) 40)) (-3772 (((-112) $) 96)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3715 (($ $) 90 (|has| |#1| (-368))) (($ $ (-767)) 89 (|has| |#1| (-368)))) (-3213 (($ $) 118 (|has| |#1| (-368))) (($ $ (-767)) 116 (|has| |#1| (-368)))) (-1718 (((-112) $ $) 6)) (-1836 (($ $ $) 66) (($ $ |#1|) 99)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68) (($ $ |#1|) 98) (($ |#1| $) 97)))
(((-329 |#1|) (-140) (-363)) (T -329))
-((-4315 (*1 *2) (-12 (-4 *3 (-363)) (-5 *2 (-1257 *1)) (-4 *1 (-329 *3)))) (-4315 (*1 *2 *3) (-12 (-5 *3 (-917)) (-4 *4 (-363)) (-5 *2 (-1257 *1)) (-4 *1 (-329 *4)))) (-1880 (*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-1257 *3)))) (-1880 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-329 *4)) (-4 *4 (-363)) (-5 *2 (-684 *4)))) (-3937 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-363)) (-4 *1 (-329 *3)))) (-3941 (*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-1165 *3)))) (-3390 (*1 *2) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-1165 *3)))) (-1467 (*1 *2) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-917)))) (-4167 (*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-917)))) (-3793 (*1 *2 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-363)))) (-1733 (*1 *2 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-363)))) (-3941 (*1 *2 *1 *3) (-12 (-5 *3 (-917)) (-4 *4 (-368)) (-4 *4 (-363)) (-5 *2 (-1165 *1)) (-4 *1 (-329 *4)))) (-3793 (*1 *1 *1 *2) (-12 (-5 *2 (-917)) (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368)))) (-1733 (*1 *1 *1 *2) (-12 (-5 *2 (-917)) (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368)))) (-1484 (*1 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-368)) (-4 *2 (-363)))) (-3723 (*1 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-368)) (-4 *2 (-363)))) (-2890 (*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368)) (-5 *2 (-112)))) (-4333 (*1 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-368)) (-4 *2 (-363)))) (-4166 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *3)) (-4 *3 (-368)) (-4 *1 (-329 *3)) (-4 *3 (-363)))) (-2229 (*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368)) (-5 *2 (-1165 *3)))) (-1631 (*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368)) (-5 *2 (-1165 *3)))) (-1631 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368)) (-5 *2 (-1165 *3)))))
-(-13 (-1276 |t#1|) (-1034 |t#1|) (-10 -8 (-15 -4315 ((-1257 $))) (-15 -4315 ((-1257 $) (-917))) (-15 -1880 ((-1257 |t#1|) $)) (-15 -1880 ((-684 |t#1|) (-1257 $))) (-15 -3937 ($ (-1257 |t#1|))) (-15 -3941 ((-1165 |t#1|) $)) (-15 -3390 ((-1165 |t#1|))) (-15 -1467 ((-917))) (-15 -4167 ((-917) $)) (-15 -3793 (|t#1| $)) (-15 -1733 (|t#1| $)) (IF (|has| |t#1| (-368)) (PROGN (-6 (-349)) (-15 -3941 ((-1165 $) $ (-917))) (-15 -3793 ($ $ (-917))) (-15 -1733 ($ $ (-917))) (-15 -1484 ($)) (-15 -3723 ($)) (-15 -2890 ((-112) $)) (-15 -4333 ($)) (-15 -4166 ($ $ (-1165 |t#1|))) (-15 -2229 ((-1165 |t#1|) $)) (-15 -1631 ((-1165 |t#1|) $)) (-15 -1631 ((-3 (-1165 |t#1|) "failed") $ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-131) . T) ((-145) -4032 (|has| |#1| (-368)) (|has| |#1| (-145))) ((-147) |has| |#1| (-147)) ((-613 #0#) . T) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-233) |has| |#1| (-368)) ((-243) . T) ((-290) . T) ((-307) . T) ((-1276 |#1|) . T) ((-363) . T) ((-402) -4032 (|has| |#1| (-368)) (|has| |#1| (-145))) ((-368) |has| |#1| (-368)) ((-349) |has| |#1| (-368)) ((-452) . T) ((-555) . T) ((-643 #0#) . T) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #0#) . T) ((-713 |#1|) . T) ((-713 $) . T) ((-722) . T) ((-916) . T) ((-1034 |#1|) . T) ((-1051 #0#) . T) ((-1051 |#1|) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) |has| |#1| (-368)) ((-1212) . T) ((-1264 |#1|) . T))
-((-1677 (((-112) $ $) NIL)) (-1853 (($ (-1168) $) 87)) (-2064 (($) 76)) (-2330 (((-1113) (-1113)) 9)) (-3818 (($) 77)) (-3659 (($) 89) (($ (-316 (-694))) 97) (($ (-316 (-696))) 93) (($ (-316 (-689))) 101) (($ (-316 (-379))) 108) (($ (-316 (-563))) 104) (($ (-316 (-169 (-379)))) 112)) (-2459 (($ (-1168) $) 88)) (-3145 (($ (-640 (-858))) 78)) (-3680 (((-1262) $) 74)) (-2745 (((-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")) $) 26)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1797 (($ (-1113)) 50)) (-2054 (((-1097) $) 24)) (-1538 (($ (-1085 (-948 (-563))) $) 84) (($ (-1085 (-948 (-563))) (-948 (-563)) $) 85)) (-2099 (($ (-1113)) 86)) (-3039 (($ (-1168) $) 114) (($ (-1168) $ $) 115)) (-4254 (($ (-1169) (-640 (-1169))) 75)) (-1408 (($ (-1151)) 81) (($ (-640 (-1151))) 79)) (-1693 (((-858) $) 117)) (-2412 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1169)) (|:| |arrayIndex| (-640 (-948 (-563)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2474 (-858)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1169)) (|:| |rand| (-858)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1168)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3756 (-112)) (|:| -2619 (-2 (|:| |ints2Floats?| (-112)) (|:| -2474 (-858)))))) (|:| |blockBranch| (-640 $)) (|:| |commentBranch| (-640 (-1151))) (|:| |callBranch| (-1151)) (|:| |forBranch| (-2 (|:| -2516 (-1085 (-948 (-563)))) (|:| |span| (-948 (-563))) (|:| -3359 $))) (|:| |labelBranch| (-1113)) (|:| |loopBranch| (-2 (|:| |switch| (-1168)) (|:| -3359 $))) (|:| |commonBranch| (-2 (|:| -3348 (-1169)) (|:| |contents| (-640 (-1169))))) (|:| |printBranch| (-640 (-858)))) $) 43)) (-3836 (($ (-1151)) 186)) (-1820 (($ (-640 $)) 113)) (-2085 (($ (-1169) (-1151)) 119) (($ (-1169) (-316 (-696))) 159) (($ (-1169) (-316 (-694))) 160) (($ (-1169) (-316 (-689))) 161) (($ (-1169) (-684 (-696))) 122) (($ (-1169) (-684 (-694))) 125) (($ (-1169) (-684 (-689))) 128) (($ (-1169) (-1257 (-696))) 131) (($ (-1169) (-1257 (-694))) 134) (($ (-1169) (-1257 (-689))) 137) (($ (-1169) (-684 (-316 (-696)))) 140) (($ (-1169) (-684 (-316 (-694)))) 143) (($ (-1169) (-684 (-316 (-689)))) 146) (($ (-1169) (-1257 (-316 (-696)))) 149) (($ (-1169) (-1257 (-316 (-694)))) 152) (($ (-1169) (-1257 (-316 (-689)))) 155) (($ (-1169) (-640 (-948 (-563))) (-316 (-696))) 156) (($ (-1169) (-640 (-948 (-563))) (-316 (-694))) 157) (($ (-1169) (-640 (-948 (-563))) (-316 (-689))) 158) (($ (-1169) (-316 (-563))) 183) (($ (-1169) (-316 (-379))) 184) (($ (-1169) (-316 (-169 (-379)))) 185) (($ (-1169) (-684 (-316 (-563)))) 164) (($ (-1169) (-684 (-316 (-379)))) 167) (($ (-1169) (-684 (-316 (-169 (-379))))) 170) (($ (-1169) (-1257 (-316 (-563)))) 173) (($ (-1169) (-1257 (-316 (-379)))) 176) (($ (-1169) (-1257 (-316 (-169 (-379))))) 179) (($ (-1169) (-640 (-948 (-563))) (-316 (-563))) 180) (($ (-1169) (-640 (-948 (-563))) (-316 (-379))) 181) (($ (-1169) (-640 (-948 (-563))) (-316 (-169 (-379)))) 182)) (-1718 (((-112) $ $) NIL)))
-(((-330) (-13 (-1093) (-10 -8 (-15 -1538 ($ (-1085 (-948 (-563))) $)) (-15 -1538 ($ (-1085 (-948 (-563))) (-948 (-563)) $)) (-15 -1853 ($ (-1168) $)) (-15 -2459 ($ (-1168) $)) (-15 -1797 ($ (-1113))) (-15 -2099 ($ (-1113))) (-15 -1408 ($ (-1151))) (-15 -1408 ($ (-640 (-1151)))) (-15 -3836 ($ (-1151))) (-15 -3659 ($)) (-15 -3659 ($ (-316 (-694)))) (-15 -3659 ($ (-316 (-696)))) (-15 -3659 ($ (-316 (-689)))) (-15 -3659 ($ (-316 (-379)))) (-15 -3659 ($ (-316 (-563)))) (-15 -3659 ($ (-316 (-169 (-379))))) (-15 -3039 ($ (-1168) $)) (-15 -3039 ($ (-1168) $ $)) (-15 -2085 ($ (-1169) (-1151))) (-15 -2085 ($ (-1169) (-316 (-696)))) (-15 -2085 ($ (-1169) (-316 (-694)))) (-15 -2085 ($ (-1169) (-316 (-689)))) (-15 -2085 ($ (-1169) (-684 (-696)))) (-15 -2085 ($ (-1169) (-684 (-694)))) (-15 -2085 ($ (-1169) (-684 (-689)))) (-15 -2085 ($ (-1169) (-1257 (-696)))) (-15 -2085 ($ (-1169) (-1257 (-694)))) (-15 -2085 ($ (-1169) (-1257 (-689)))) (-15 -2085 ($ (-1169) (-684 (-316 (-696))))) (-15 -2085 ($ (-1169) (-684 (-316 (-694))))) (-15 -2085 ($ (-1169) (-684 (-316 (-689))))) (-15 -2085 ($ (-1169) (-1257 (-316 (-696))))) (-15 -2085 ($ (-1169) (-1257 (-316 (-694))))) (-15 -2085 ($ (-1169) (-1257 (-316 (-689))))) (-15 -2085 ($ (-1169) (-640 (-948 (-563))) (-316 (-696)))) (-15 -2085 ($ (-1169) (-640 (-948 (-563))) (-316 (-694)))) (-15 -2085 ($ (-1169) (-640 (-948 (-563))) (-316 (-689)))) (-15 -2085 ($ (-1169) (-316 (-563)))) (-15 -2085 ($ (-1169) (-316 (-379)))) (-15 -2085 ($ (-1169) (-316 (-169 (-379))))) (-15 -2085 ($ (-1169) (-684 (-316 (-563))))) (-15 -2085 ($ (-1169) (-684 (-316 (-379))))) (-15 -2085 ($ (-1169) (-684 (-316 (-169 (-379)))))) (-15 -2085 ($ (-1169) (-1257 (-316 (-563))))) (-15 -2085 ($ (-1169) (-1257 (-316 (-379))))) (-15 -2085 ($ (-1169) (-1257 (-316 (-169 (-379)))))) (-15 -2085 ($ (-1169) (-640 (-948 (-563))) (-316 (-563)))) (-15 -2085 ($ (-1169) (-640 (-948 (-563))) (-316 (-379)))) (-15 -2085 ($ (-1169) (-640 (-948 (-563))) (-316 (-169 (-379))))) (-15 -1820 ($ (-640 $))) (-15 -2064 ($)) (-15 -3818 ($)) (-15 -3145 ($ (-640 (-858)))) (-15 -4254 ($ (-1169) (-640 (-1169)))) (-15 -2745 ((-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 -2412 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1169)) (|:| |arrayIndex| (-640 (-948 (-563)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2474 (-858)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1169)) (|:| |rand| (-858)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1168)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3756 (-112)) (|:| -2619 (-2 (|:| |ints2Floats?| (-112)) (|:| -2474 (-858)))))) (|:| |blockBranch| (-640 $)) (|:| |commentBranch| (-640 (-1151))) (|:| |callBranch| (-1151)) (|:| |forBranch| (-2 (|:| -2516 (-1085 (-948 (-563)))) (|:| |span| (-948 (-563))) (|:| -3359 $))) (|:| |labelBranch| (-1113)) (|:| |loopBranch| (-2 (|:| |switch| (-1168)) (|:| -3359 $))) (|:| |commonBranch| (-2 (|:| -3348 (-1169)) (|:| |contents| (-640 (-1169))))) (|:| |printBranch| (-640 (-858)))) $)) (-15 -3680 ((-1262) $)) (-15 -2054 ((-1097) $)) (-15 -2330 ((-1113) (-1113)))))) (T -330))
-((-1538 (*1 *1 *2 *1) (-12 (-5 *2 (-1085 (-948 (-563)))) (-5 *1 (-330)))) (-1538 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1085 (-948 (-563)))) (-5 *3 (-948 (-563))) (-5 *1 (-330)))) (-1853 (*1 *1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-330)))) (-2459 (*1 *1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-330)))) (-1797 (*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-330)))) (-2099 (*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-330)))) (-1408 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-330)))) (-1408 (*1 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-330)))) (-3836 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-330)))) (-3659 (*1 *1) (-5 *1 (-330))) (-3659 (*1 *1 *2) (-12 (-5 *2 (-316 (-694))) (-5 *1 (-330)))) (-3659 (*1 *1 *2) (-12 (-5 *2 (-316 (-696))) (-5 *1 (-330)))) (-3659 (*1 *1 *2) (-12 (-5 *2 (-316 (-689))) (-5 *1 (-330)))) (-3659 (*1 *1 *2) (-12 (-5 *2 (-316 (-379))) (-5 *1 (-330)))) (-3659 (*1 *1 *2) (-12 (-5 *2 (-316 (-563))) (-5 *1 (-330)))) (-3659 (*1 *1 *2) (-12 (-5 *2 (-316 (-169 (-379)))) (-5 *1 (-330)))) (-3039 (*1 *1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-330)))) (-3039 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1151)) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-696))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-694))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-689))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-696))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-694))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-689))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-696))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-694))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-689))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-696)))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-694)))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-689)))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-696)))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-694)))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-689)))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-316 (-696))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-316 (-694))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-316 (-689))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-563))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-379))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-169 (-379)))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-563)))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-379)))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-169 (-379))))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-563)))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-379)))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-169 (-379))))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-316 (-563))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-316 (-379))) (-5 *1 (-330)))) (-2085 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-316 (-169 (-379)))) (-5 *1 (-330)))) (-1820 (*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-5 *1 (-330)))) (-2064 (*1 *1) (-5 *1 (-330))) (-3818 (*1 *1) (-5 *1 (-330))) (-3145 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-330)))) (-4254 (*1 *1 *2 *3) (-12 (-5 *3 (-640 (-1169))) (-5 *2 (-1169)) (-5 *1 (-330)))) (-2745 (*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 (-330)))) (-2412 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1169)) (|:| |arrayIndex| (-640 (-948 (-563)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2474 (-858)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1169)) (|:| |rand| (-858)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1168)) (|:| |thenClause| (-330)) (|:| |elseClause| (-330)))) (|:| |returnBranch| (-2 (|:| -3756 (-112)) (|:| -2619 (-2 (|:| |ints2Floats?| (-112)) (|:| -2474 (-858)))))) (|:| |blockBranch| (-640 (-330))) (|:| |commentBranch| (-640 (-1151))) (|:| |callBranch| (-1151)) (|:| |forBranch| (-2 (|:| -2516 (-1085 (-948 (-563)))) (|:| |span| (-948 (-563))) (|:| -3359 (-330)))) (|:| |labelBranch| (-1113)) (|:| |loopBranch| (-2 (|:| |switch| (-1168)) (|:| -3359 (-330)))) (|:| |commonBranch| (-2 (|:| -3348 (-1169)) (|:| |contents| (-640 (-1169))))) (|:| |printBranch| (-640 (-858))))) (-5 *1 (-330)))) (-3680 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-330)))) (-2054 (*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-330)))) (-2330 (*1 *2 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-330)))))
-(-13 (-1093) (-10 -8 (-15 -1538 ($ (-1085 (-948 (-563))) $)) (-15 -1538 ($ (-1085 (-948 (-563))) (-948 (-563)) $)) (-15 -1853 ($ (-1168) $)) (-15 -2459 ($ (-1168) $)) (-15 -1797 ($ (-1113))) (-15 -2099 ($ (-1113))) (-15 -1408 ($ (-1151))) (-15 -1408 ($ (-640 (-1151)))) (-15 -3836 ($ (-1151))) (-15 -3659 ($)) (-15 -3659 ($ (-316 (-694)))) (-15 -3659 ($ (-316 (-696)))) (-15 -3659 ($ (-316 (-689)))) (-15 -3659 ($ (-316 (-379)))) (-15 -3659 ($ (-316 (-563)))) (-15 -3659 ($ (-316 (-169 (-379))))) (-15 -3039 ($ (-1168) $)) (-15 -3039 ($ (-1168) $ $)) (-15 -2085 ($ (-1169) (-1151))) (-15 -2085 ($ (-1169) (-316 (-696)))) (-15 -2085 ($ (-1169) (-316 (-694)))) (-15 -2085 ($ (-1169) (-316 (-689)))) (-15 -2085 ($ (-1169) (-684 (-696)))) (-15 -2085 ($ (-1169) (-684 (-694)))) (-15 -2085 ($ (-1169) (-684 (-689)))) (-15 -2085 ($ (-1169) (-1257 (-696)))) (-15 -2085 ($ (-1169) (-1257 (-694)))) (-15 -2085 ($ (-1169) (-1257 (-689)))) (-15 -2085 ($ (-1169) (-684 (-316 (-696))))) (-15 -2085 ($ (-1169) (-684 (-316 (-694))))) (-15 -2085 ($ (-1169) (-684 (-316 (-689))))) (-15 -2085 ($ (-1169) (-1257 (-316 (-696))))) (-15 -2085 ($ (-1169) (-1257 (-316 (-694))))) (-15 -2085 ($ (-1169) (-1257 (-316 (-689))))) (-15 -2085 ($ (-1169) (-640 (-948 (-563))) (-316 (-696)))) (-15 -2085 ($ (-1169) (-640 (-948 (-563))) (-316 (-694)))) (-15 -2085 ($ (-1169) (-640 (-948 (-563))) (-316 (-689)))) (-15 -2085 ($ (-1169) (-316 (-563)))) (-15 -2085 ($ (-1169) (-316 (-379)))) (-15 -2085 ($ (-1169) (-316 (-169 (-379))))) (-15 -2085 ($ (-1169) (-684 (-316 (-563))))) (-15 -2085 ($ (-1169) (-684 (-316 (-379))))) (-15 -2085 ($ (-1169) (-684 (-316 (-169 (-379)))))) (-15 -2085 ($ (-1169) (-1257 (-316 (-563))))) (-15 -2085 ($ (-1169) (-1257 (-316 (-379))))) (-15 -2085 ($ (-1169) (-1257 (-316 (-169 (-379)))))) (-15 -2085 ($ (-1169) (-640 (-948 (-563))) (-316 (-563)))) (-15 -2085 ($ (-1169) (-640 (-948 (-563))) (-316 (-379)))) (-15 -2085 ($ (-1169) (-640 (-948 (-563))) (-316 (-169 (-379))))) (-15 -1820 ($ (-640 $))) (-15 -2064 ($)) (-15 -3818 ($)) (-15 -3145 ($ (-640 (-858)))) (-15 -4254 ($ (-1169) (-640 (-1169)))) (-15 -2745 ((-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 -2412 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1169)) (|:| |arrayIndex| (-640 (-948 (-563)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2474 (-858)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1169)) (|:| |rand| (-858)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1168)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3756 (-112)) (|:| -2619 (-2 (|:| |ints2Floats?| (-112)) (|:| -2474 (-858)))))) (|:| |blockBranch| (-640 $)) (|:| |commentBranch| (-640 (-1151))) (|:| |callBranch| (-1151)) (|:| |forBranch| (-2 (|:| -2516 (-1085 (-948 (-563)))) (|:| |span| (-948 (-563))) (|:| -3359 $))) (|:| |labelBranch| (-1113)) (|:| |loopBranch| (-2 (|:| |switch| (-1168)) (|:| -3359 $))) (|:| |commonBranch| (-2 (|:| -3348 (-1169)) (|:| |contents| (-640 (-1169))))) (|:| |printBranch| (-640 (-858)))) $)) (-15 -3680 ((-1262) $)) (-15 -2054 ((-1097) $)) (-15 -2330 ((-1113) (-1113)))))
-((-1677 (((-112) $ $) NIL)) (-3194 (((-112) $) 11)) (-1597 (($ |#1|) 8)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1608 (($ |#1|) 9)) (-1693 (((-858) $) 17)) (-3237 ((|#1| $) 12)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 19)))
-(((-331 |#1|) (-13 (-846) (-10 -8 (-15 -1597 ($ |#1|)) (-15 -1608 ($ |#1|)) (-15 -3194 ((-112) $)) (-15 -3237 (|#1| $)))) (-846)) (T -331))
-((-1597 (*1 *1 *2) (-12 (-5 *1 (-331 *2)) (-4 *2 (-846)))) (-1608 (*1 *1 *2) (-12 (-5 *1 (-331 *2)) (-4 *2 (-846)))) (-3194 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-331 *3)) (-4 *3 (-846)))) (-3237 (*1 *2 *1) (-12 (-5 *1 (-331 *2)) (-4 *2 (-846)))))
-(-13 (-846) (-10 -8 (-15 -1597 ($ |#1|)) (-15 -1608 ($ |#1|)) (-15 -3194 ((-112) $)) (-15 -3237 (|#1| $))))
-((-2857 (((-330) (-1169) (-948 (-563))) 23)) (-2650 (((-330) (-1169) (-948 (-563))) 27)) (-4255 (((-330) (-1169) (-1085 (-948 (-563))) (-1085 (-948 (-563)))) 26) (((-330) (-1169) (-948 (-563)) (-948 (-563))) 24)) (-3978 (((-330) (-1169) (-948 (-563))) 31)))
-(((-332) (-10 -7 (-15 -2857 ((-330) (-1169) (-948 (-563)))) (-15 -4255 ((-330) (-1169) (-948 (-563)) (-948 (-563)))) (-15 -4255 ((-330) (-1169) (-1085 (-948 (-563))) (-1085 (-948 (-563))))) (-15 -2650 ((-330) (-1169) (-948 (-563)))) (-15 -3978 ((-330) (-1169) (-948 (-563)))))) (T -332))
-((-3978 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330)) (-5 *1 (-332)))) (-2650 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330)) (-5 *1 (-332)))) (-4255 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-1085 (-948 (-563)))) (-5 *2 (-330)) (-5 *1 (-332)))) (-4255 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330)) (-5 *1 (-332)))) (-2857 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330)) (-5 *1 (-332)))))
-(-10 -7 (-15 -2857 ((-330) (-1169) (-948 (-563)))) (-15 -4255 ((-330) (-1169) (-948 (-563)) (-948 (-563)))) (-15 -4255 ((-330) (-1169) (-1085 (-948 (-563))) (-1085 (-948 (-563))))) (-15 -2650 ((-330) (-1169) (-948 (-563)))) (-15 -3978 ((-330) (-1169) (-948 (-563)))))
-((-2240 (((-336 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-336 |#1| |#2| |#3| |#4|)) 33)))
-(((-333 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2240 ((-336 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-336 |#1| |#2| |#3| |#4|)))) (-363) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|) (-363) (-1233 |#5|) (-1233 (-407 |#6|)) (-342 |#5| |#6| |#7|)) (T -333))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-336 *5 *6 *7 *8)) (-4 *5 (-363)) (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6))) (-4 *8 (-342 *5 *6 *7)) (-4 *9 (-363)) (-4 *10 (-1233 *9)) (-4 *11 (-1233 (-407 *10))) (-5 *2 (-336 *9 *10 *11 *12)) (-5 *1 (-333 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-342 *9 *10 *11)))))
-(-10 -7 (-15 -2240 ((-336 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-336 |#1| |#2| |#3| |#4|))))
-((-2257 (((-112) $) 14)))
-(((-334 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2257 ((-112) |#1|))) (-335 |#2| |#3| |#4| |#5|) (-363) (-1233 |#2|) (-1233 (-407 |#3|)) (-342 |#2| |#3| |#4|)) (T -334))
-NIL
-(-10 -8 (-15 -2257 ((-112) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-2444 (($ $) 26)) (-2257 (((-112) $) 25)) (-3573 (((-1151) $) 9)) (-1776 (((-413 |#2| (-407 |#2|) |#3| |#4|) $) 32)) (-1694 (((-1113) $) 10)) (-4333 (((-3 |#4| "failed") $) 24)) (-3899 (($ (-413 |#2| (-407 |#2|) |#3| |#4|)) 31) (($ |#4|) 30) (($ |#1| |#1|) 29) (($ |#1| |#1| (-563)) 28) (($ |#4| |#2| |#2| |#2| |#1|) 23)) (-2927 (((-2 (|:| -1524 (-413 |#2| (-407 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 27)) (-1693 (((-858) $) 11)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20)))
+((-4013 (*1 *2) (-12 (-4 *3 (-363)) (-5 *2 (-1257 *1)) (-4 *1 (-329 *3)))) (-4013 (*1 *2 *3) (-12 (-5 *3 (-917)) (-4 *4 (-363)) (-5 *2 (-1257 *1)) (-4 *1 (-329 *4)))) (-3759 (*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-1257 *3)))) (-3759 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-329 *4)) (-4 *4 (-363)) (-5 *2 (-684 *4)))) (-3458 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-363)) (-4 *1 (-329 *3)))) (-4035 (*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-1165 *3)))) (-3402 (*1 *2) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-1165 *3)))) (-3740 (*1 *2) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-917)))) (-3871 (*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-917)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-363)))) (-1731 (*1 *2 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-363)))) (-4035 (*1 *2 *1 *3) (-12 (-5 *3 (-917)) (-4 *4 (-368)) (-4 *4 (-363)) (-5 *2 (-1165 *1)) (-4 *1 (-329 *4)))) (-3975 (*1 *1 *1 *2) (-12 (-5 *2 (-917)) (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368)))) (-1731 (*1 *1 *1 *2) (-12 (-5 *2 (-917)) (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368)))) (-2220 (*1 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-368)) (-4 *2 (-363)))) (-4024 (*1 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-368)) (-4 *2 (-363)))) (-4002 (*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368)) (-5 *2 (-112)))) (-4334 (*1 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-368)) (-4 *2 (-363)))) (-2207 (*1 *1 *1 *2) (-12 (-5 *2 (-1165 *3)) (-4 *3 (-368)) (-4 *1 (-329 *3)) (-4 *3 (-363)))) (-2196 (*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368)) (-5 *2 (-1165 *3)))) (-2184 (*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368)) (-5 *2 (-1165 *3)))) (-2184 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368)) (-5 *2 (-1165 *3)))))
+(-13 (-1276 |t#1|) (-1034 |t#1|) (-10 -8 (-15 -4013 ((-1257 $))) (-15 -4013 ((-1257 $) (-917))) (-15 -3759 ((-1257 |t#1|) $)) (-15 -3759 ((-684 |t#1|) (-1257 $))) (-15 -3458 ($ (-1257 |t#1|))) (-15 -4035 ((-1165 |t#1|) $)) (-15 -3402 ((-1165 |t#1|))) (-15 -3740 ((-917))) (-15 -3871 ((-917) $)) (-15 -3975 (|t#1| $)) (-15 -1731 (|t#1| $)) (IF (|has| |t#1| (-368)) (PROGN (-6 (-349)) (-15 -4035 ((-1165 $) $ (-917))) (-15 -3975 ($ $ (-917))) (-15 -1731 ($ $ (-917))) (-15 -2220 ($)) (-15 -4024 ($)) (-15 -4002 ((-112) $)) (-15 -4334 ($)) (-15 -2207 ($ $ (-1165 |t#1|))) (-15 -2196 ((-1165 |t#1|) $)) (-15 -2184 ((-1165 |t#1|) $)) (-15 -2184 ((-3 (-1165 |t#1|) "failed") $ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-131) . T) ((-145) -4034 (|has| |#1| (-368)) (|has| |#1| (-145))) ((-147) |has| |#1| (-147)) ((-613 #0#) . T) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-233) |has| |#1| (-368)) ((-243) . T) ((-290) . T) ((-307) . T) ((-1276 |#1|) . T) ((-363) . T) ((-402) -4034 (|has| |#1| (-368)) (|has| |#1| (-145))) ((-368) |has| |#1| (-368)) ((-349) |has| |#1| (-368)) ((-452) . T) ((-555) . T) ((-643 #0#) . T) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #0#) . T) ((-713 |#1|) . T) ((-713 $) . T) ((-722) . T) ((-916) . T) ((-1034 |#1|) . T) ((-1051 #0#) . T) ((-1051 |#1|) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) |has| |#1| (-368)) ((-1212) . T) ((-1264 |#1|) . T))
+((-1677 (((-112) $ $) NIL)) (-2325 (($ (-1168) $) 87)) (-2064 (($) 76)) (-2234 (((-1113) (-1113)) 9)) (-3819 (($) 77)) (-2293 (($) 89) (($ (-316 (-694))) 97) (($ (-316 (-696))) 93) (($ (-316 (-689))) 101) (($ (-316 (-379))) 108) (($ (-316 (-563))) 104) (($ (-316 (-169 (-379)))) 112)) (-2315 (($ (-1168) $) 88)) (-2271 (($ (-640 (-858))) 78)) (-2261 (((-1262) $) 74)) (-2744 (((-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")) $) 26)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2304 (($ (-1113)) 50)) (-2250 (((-1097) $) 24)) (-2334 (($ (-1085 (-948 (-563))) $) 84) (($ (-1085 (-948 (-563))) (-948 (-563)) $) 85)) (-2097 (($ (-1113)) 86)) (-3043 (($ (-1168) $) 114) (($ (-1168) $ $) 115)) (-4255 (($ (-1169) (-640 (-1169))) 75)) (-1408 (($ (-1151)) 81) (($ (-640 (-1151))) 79)) (-1692 (((-858) $) 117)) (-2409 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1169)) (|:| |arrayIndex| (-640 (-948 (-563)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2473 (-858)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1169)) (|:| |rand| (-858)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1168)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -1665 (-112)) (|:| -2618 (-2 (|:| |ints2Floats?| (-112)) (|:| -2473 (-858)))))) (|:| |blockBranch| (-640 $)) (|:| |commentBranch| (-640 (-1151))) (|:| |callBranch| (-1151)) (|:| |forBranch| (-2 (|:| -4166 (-1085 (-948 (-563)))) (|:| |span| (-948 (-563))) (|:| -3363 $))) (|:| |labelBranch| (-1113)) (|:| |loopBranch| (-2 (|:| |switch| (-1168)) (|:| -3363 $))) (|:| |commonBranch| (-2 (|:| -3352 (-1169)) (|:| |contents| (-640 (-1169))))) (|:| |printBranch| (-640 (-858)))) $) 43)) (-3838 (($ (-1151)) 186)) (-2281 (($ (-640 $)) 113)) (-3351 (($ (-1169) (-1151)) 119) (($ (-1169) (-316 (-696))) 159) (($ (-1169) (-316 (-694))) 160) (($ (-1169) (-316 (-689))) 161) (($ (-1169) (-684 (-696))) 122) (($ (-1169) (-684 (-694))) 125) (($ (-1169) (-684 (-689))) 128) (($ (-1169) (-1257 (-696))) 131) (($ (-1169) (-1257 (-694))) 134) (($ (-1169) (-1257 (-689))) 137) (($ (-1169) (-684 (-316 (-696)))) 140) (($ (-1169) (-684 (-316 (-694)))) 143) (($ (-1169) (-684 (-316 (-689)))) 146) (($ (-1169) (-1257 (-316 (-696)))) 149) (($ (-1169) (-1257 (-316 (-694)))) 152) (($ (-1169) (-1257 (-316 (-689)))) 155) (($ (-1169) (-640 (-948 (-563))) (-316 (-696))) 156) (($ (-1169) (-640 (-948 (-563))) (-316 (-694))) 157) (($ (-1169) (-640 (-948 (-563))) (-316 (-689))) 158) (($ (-1169) (-316 (-563))) 183) (($ (-1169) (-316 (-379))) 184) (($ (-1169) (-316 (-169 (-379)))) 185) (($ (-1169) (-684 (-316 (-563)))) 164) (($ (-1169) (-684 (-316 (-379)))) 167) (($ (-1169) (-684 (-316 (-169 (-379))))) 170) (($ (-1169) (-1257 (-316 (-563)))) 173) (($ (-1169) (-1257 (-316 (-379)))) 176) (($ (-1169) (-1257 (-316 (-169 (-379))))) 179) (($ (-1169) (-640 (-948 (-563))) (-316 (-563))) 180) (($ (-1169) (-640 (-948 (-563))) (-316 (-379))) 181) (($ (-1169) (-640 (-948 (-563))) (-316 (-169 (-379)))) 182)) (-1718 (((-112) $ $) NIL)))
+(((-330) (-13 (-1093) (-10 -8 (-15 -2334 ($ (-1085 (-948 (-563))) $)) (-15 -2334 ($ (-1085 (-948 (-563))) (-948 (-563)) $)) (-15 -2325 ($ (-1168) $)) (-15 -2315 ($ (-1168) $)) (-15 -2304 ($ (-1113))) (-15 -2097 ($ (-1113))) (-15 -1408 ($ (-1151))) (-15 -1408 ($ (-640 (-1151)))) (-15 -3838 ($ (-1151))) (-15 -2293 ($)) (-15 -2293 ($ (-316 (-694)))) (-15 -2293 ($ (-316 (-696)))) (-15 -2293 ($ (-316 (-689)))) (-15 -2293 ($ (-316 (-379)))) (-15 -2293 ($ (-316 (-563)))) (-15 -2293 ($ (-316 (-169 (-379))))) (-15 -3043 ($ (-1168) $)) (-15 -3043 ($ (-1168) $ $)) (-15 -3351 ($ (-1169) (-1151))) (-15 -3351 ($ (-1169) (-316 (-696)))) (-15 -3351 ($ (-1169) (-316 (-694)))) (-15 -3351 ($ (-1169) (-316 (-689)))) (-15 -3351 ($ (-1169) (-684 (-696)))) (-15 -3351 ($ (-1169) (-684 (-694)))) (-15 -3351 ($ (-1169) (-684 (-689)))) (-15 -3351 ($ (-1169) (-1257 (-696)))) (-15 -3351 ($ (-1169) (-1257 (-694)))) (-15 -3351 ($ (-1169) (-1257 (-689)))) (-15 -3351 ($ (-1169) (-684 (-316 (-696))))) (-15 -3351 ($ (-1169) (-684 (-316 (-694))))) (-15 -3351 ($ (-1169) (-684 (-316 (-689))))) (-15 -3351 ($ (-1169) (-1257 (-316 (-696))))) (-15 -3351 ($ (-1169) (-1257 (-316 (-694))))) (-15 -3351 ($ (-1169) (-1257 (-316 (-689))))) (-15 -3351 ($ (-1169) (-640 (-948 (-563))) (-316 (-696)))) (-15 -3351 ($ (-1169) (-640 (-948 (-563))) (-316 (-694)))) (-15 -3351 ($ (-1169) (-640 (-948 (-563))) (-316 (-689)))) (-15 -3351 ($ (-1169) (-316 (-563)))) (-15 -3351 ($ (-1169) (-316 (-379)))) (-15 -3351 ($ (-1169) (-316 (-169 (-379))))) (-15 -3351 ($ (-1169) (-684 (-316 (-563))))) (-15 -3351 ($ (-1169) (-684 (-316 (-379))))) (-15 -3351 ($ (-1169) (-684 (-316 (-169 (-379)))))) (-15 -3351 ($ (-1169) (-1257 (-316 (-563))))) (-15 -3351 ($ (-1169) (-1257 (-316 (-379))))) (-15 -3351 ($ (-1169) (-1257 (-316 (-169 (-379)))))) (-15 -3351 ($ (-1169) (-640 (-948 (-563))) (-316 (-563)))) (-15 -3351 ($ (-1169) (-640 (-948 (-563))) (-316 (-379)))) (-15 -3351 ($ (-1169) (-640 (-948 (-563))) (-316 (-169 (-379))))) (-15 -2281 ($ (-640 $))) (-15 -2064 ($)) (-15 -3819 ($)) (-15 -2271 ($ (-640 (-858)))) (-15 -4255 ($ (-1169) (-640 (-1169)))) (-15 -2744 ((-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 -2409 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1169)) (|:| |arrayIndex| (-640 (-948 (-563)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2473 (-858)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1169)) (|:| |rand| (-858)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1168)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -1665 (-112)) (|:| -2618 (-2 (|:| |ints2Floats?| (-112)) (|:| -2473 (-858)))))) (|:| |blockBranch| (-640 $)) (|:| |commentBranch| (-640 (-1151))) (|:| |callBranch| (-1151)) (|:| |forBranch| (-2 (|:| -4166 (-1085 (-948 (-563)))) (|:| |span| (-948 (-563))) (|:| -3363 $))) (|:| |labelBranch| (-1113)) (|:| |loopBranch| (-2 (|:| |switch| (-1168)) (|:| -3363 $))) (|:| |commonBranch| (-2 (|:| -3352 (-1169)) (|:| |contents| (-640 (-1169))))) (|:| |printBranch| (-640 (-858)))) $)) (-15 -2261 ((-1262) $)) (-15 -2250 ((-1097) $)) (-15 -2234 ((-1113) (-1113)))))) (T -330))
+((-2334 (*1 *1 *2 *1) (-12 (-5 *2 (-1085 (-948 (-563)))) (-5 *1 (-330)))) (-2334 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1085 (-948 (-563)))) (-5 *3 (-948 (-563))) (-5 *1 (-330)))) (-2325 (*1 *1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-330)))) (-2315 (*1 *1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-330)))) (-2304 (*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-330)))) (-2097 (*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-330)))) (-1408 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-330)))) (-1408 (*1 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-330)))) (-3838 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-330)))) (-2293 (*1 *1) (-5 *1 (-330))) (-2293 (*1 *1 *2) (-12 (-5 *2 (-316 (-694))) (-5 *1 (-330)))) (-2293 (*1 *1 *2) (-12 (-5 *2 (-316 (-696))) (-5 *1 (-330)))) (-2293 (*1 *1 *2) (-12 (-5 *2 (-316 (-689))) (-5 *1 (-330)))) (-2293 (*1 *1 *2) (-12 (-5 *2 (-316 (-379))) (-5 *1 (-330)))) (-2293 (*1 *1 *2) (-12 (-5 *2 (-316 (-563))) (-5 *1 (-330)))) (-2293 (*1 *1 *2) (-12 (-5 *2 (-316 (-169 (-379)))) (-5 *1 (-330)))) (-3043 (*1 *1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-330)))) (-3043 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1151)) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-696))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-694))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-689))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-696))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-694))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-689))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-696))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-694))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-689))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-696)))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-694)))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-689)))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-696)))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-694)))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-689)))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-316 (-696))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-316 (-694))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-316 (-689))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-563))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-379))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-169 (-379)))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-563)))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-379)))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-169 (-379))))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-563)))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-379)))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-169 (-379))))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-316 (-563))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-316 (-379))) (-5 *1 (-330)))) (-3351 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-316 (-169 (-379)))) (-5 *1 (-330)))) (-2281 (*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-5 *1 (-330)))) (-2064 (*1 *1) (-5 *1 (-330))) (-3819 (*1 *1) (-5 *1 (-330))) (-2271 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-330)))) (-4255 (*1 *1 *2 *3) (-12 (-5 *3 (-640 (-1169))) (-5 *2 (-1169)) (-5 *1 (-330)))) (-2744 (*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 (-330)))) (-2409 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1169)) (|:| |arrayIndex| (-640 (-948 (-563)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2473 (-858)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1169)) (|:| |rand| (-858)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1168)) (|:| |thenClause| (-330)) (|:| |elseClause| (-330)))) (|:| |returnBranch| (-2 (|:| -1665 (-112)) (|:| -2618 (-2 (|:| |ints2Floats?| (-112)) (|:| -2473 (-858)))))) (|:| |blockBranch| (-640 (-330))) (|:| |commentBranch| (-640 (-1151))) (|:| |callBranch| (-1151)) (|:| |forBranch| (-2 (|:| -4166 (-1085 (-948 (-563)))) (|:| |span| (-948 (-563))) (|:| -3363 (-330)))) (|:| |labelBranch| (-1113)) (|:| |loopBranch| (-2 (|:| |switch| (-1168)) (|:| -3363 (-330)))) (|:| |commonBranch| (-2 (|:| -3352 (-1169)) (|:| |contents| (-640 (-1169))))) (|:| |printBranch| (-640 (-858))))) (-5 *1 (-330)))) (-2261 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-330)))) (-2250 (*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-330)))) (-2234 (*1 *2 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-330)))))
+(-13 (-1093) (-10 -8 (-15 -2334 ($ (-1085 (-948 (-563))) $)) (-15 -2334 ($ (-1085 (-948 (-563))) (-948 (-563)) $)) (-15 -2325 ($ (-1168) $)) (-15 -2315 ($ (-1168) $)) (-15 -2304 ($ (-1113))) (-15 -2097 ($ (-1113))) (-15 -1408 ($ (-1151))) (-15 -1408 ($ (-640 (-1151)))) (-15 -3838 ($ (-1151))) (-15 -2293 ($)) (-15 -2293 ($ (-316 (-694)))) (-15 -2293 ($ (-316 (-696)))) (-15 -2293 ($ (-316 (-689)))) (-15 -2293 ($ (-316 (-379)))) (-15 -2293 ($ (-316 (-563)))) (-15 -2293 ($ (-316 (-169 (-379))))) (-15 -3043 ($ (-1168) $)) (-15 -3043 ($ (-1168) $ $)) (-15 -3351 ($ (-1169) (-1151))) (-15 -3351 ($ (-1169) (-316 (-696)))) (-15 -3351 ($ (-1169) (-316 (-694)))) (-15 -3351 ($ (-1169) (-316 (-689)))) (-15 -3351 ($ (-1169) (-684 (-696)))) (-15 -3351 ($ (-1169) (-684 (-694)))) (-15 -3351 ($ (-1169) (-684 (-689)))) (-15 -3351 ($ (-1169) (-1257 (-696)))) (-15 -3351 ($ (-1169) (-1257 (-694)))) (-15 -3351 ($ (-1169) (-1257 (-689)))) (-15 -3351 ($ (-1169) (-684 (-316 (-696))))) (-15 -3351 ($ (-1169) (-684 (-316 (-694))))) (-15 -3351 ($ (-1169) (-684 (-316 (-689))))) (-15 -3351 ($ (-1169) (-1257 (-316 (-696))))) (-15 -3351 ($ (-1169) (-1257 (-316 (-694))))) (-15 -3351 ($ (-1169) (-1257 (-316 (-689))))) (-15 -3351 ($ (-1169) (-640 (-948 (-563))) (-316 (-696)))) (-15 -3351 ($ (-1169) (-640 (-948 (-563))) (-316 (-694)))) (-15 -3351 ($ (-1169) (-640 (-948 (-563))) (-316 (-689)))) (-15 -3351 ($ (-1169) (-316 (-563)))) (-15 -3351 ($ (-1169) (-316 (-379)))) (-15 -3351 ($ (-1169) (-316 (-169 (-379))))) (-15 -3351 ($ (-1169) (-684 (-316 (-563))))) (-15 -3351 ($ (-1169) (-684 (-316 (-379))))) (-15 -3351 ($ (-1169) (-684 (-316 (-169 (-379)))))) (-15 -3351 ($ (-1169) (-1257 (-316 (-563))))) (-15 -3351 ($ (-1169) (-1257 (-316 (-379))))) (-15 -3351 ($ (-1169) (-1257 (-316 (-169 (-379)))))) (-15 -3351 ($ (-1169) (-640 (-948 (-563))) (-316 (-563)))) (-15 -3351 ($ (-1169) (-640 (-948 (-563))) (-316 (-379)))) (-15 -3351 ($ (-1169) (-640 (-948 (-563))) (-316 (-169 (-379))))) (-15 -2281 ($ (-640 $))) (-15 -2064 ($)) (-15 -3819 ($)) (-15 -2271 ($ (-640 (-858)))) (-15 -4255 ($ (-1169) (-640 (-1169)))) (-15 -2744 ((-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 -2409 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1169)) (|:| |arrayIndex| (-640 (-948 (-563)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2473 (-858)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1169)) (|:| |rand| (-858)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1168)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -1665 (-112)) (|:| -2618 (-2 (|:| |ints2Floats?| (-112)) (|:| -2473 (-858)))))) (|:| |blockBranch| (-640 $)) (|:| |commentBranch| (-640 (-1151))) (|:| |callBranch| (-1151)) (|:| |forBranch| (-2 (|:| -4166 (-1085 (-948 (-563)))) (|:| |span| (-948 (-563))) (|:| -3363 $))) (|:| |labelBranch| (-1113)) (|:| |loopBranch| (-2 (|:| |switch| (-1168)) (|:| -3363 $))) (|:| |commonBranch| (-2 (|:| -3352 (-1169)) (|:| |contents| (-640 (-1169))))) (|:| |printBranch| (-640 (-858)))) $)) (-15 -2261 ((-1262) $)) (-15 -2250 ((-1097) $)) (-15 -2234 ((-1113) (-1113)))))
+((-1677 (((-112) $ $) NIL)) (-2345 (((-112) $) 11)) (-1596 (($ |#1|) 8)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1607 (($ |#1|) 9)) (-1692 (((-858) $) 17)) (-2326 ((|#1| $) 12)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 19)))
+(((-331 |#1|) (-13 (-846) (-10 -8 (-15 -1596 ($ |#1|)) (-15 -1607 ($ |#1|)) (-15 -2345 ((-112) $)) (-15 -2326 (|#1| $)))) (-846)) (T -331))
+((-1596 (*1 *1 *2) (-12 (-5 *1 (-331 *2)) (-4 *2 (-846)))) (-1607 (*1 *1 *2) (-12 (-5 *1 (-331 *2)) (-4 *2 (-846)))) (-2345 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-331 *3)) (-4 *3 (-846)))) (-2326 (*1 *2 *1) (-12 (-5 *1 (-331 *2)) (-4 *2 (-846)))))
+(-13 (-846) (-10 -8 (-15 -1596 ($ |#1|)) (-15 -1607 ($ |#1|)) (-15 -2345 ((-112) $)) (-15 -2326 (|#1| $))))
+((-2356 (((-330) (-1169) (-948 (-563))) 23)) (-2365 (((-330) (-1169) (-948 (-563))) 27)) (-1907 (((-330) (-1169) (-1085 (-948 (-563))) (-1085 (-948 (-563)))) 26) (((-330) (-1169) (-948 (-563)) (-948 (-563))) 24)) (-2375 (((-330) (-1169) (-948 (-563))) 31)))
+(((-332) (-10 -7 (-15 -2356 ((-330) (-1169) (-948 (-563)))) (-15 -1907 ((-330) (-1169) (-948 (-563)) (-948 (-563)))) (-15 -1907 ((-330) (-1169) (-1085 (-948 (-563))) (-1085 (-948 (-563))))) (-15 -2365 ((-330) (-1169) (-948 (-563)))) (-15 -2375 ((-330) (-1169) (-948 (-563)))))) (T -332))
+((-2375 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330)) (-5 *1 (-332)))) (-2365 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330)) (-5 *1 (-332)))) (-1907 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-1085 (-948 (-563)))) (-5 *2 (-330)) (-5 *1 (-332)))) (-1907 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330)) (-5 *1 (-332)))) (-2356 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330)) (-5 *1 (-332)))))
+(-10 -7 (-15 -2356 ((-330) (-1169) (-948 (-563)))) (-15 -1907 ((-330) (-1169) (-948 (-563)) (-948 (-563)))) (-15 -1907 ((-330) (-1169) (-1085 (-948 (-563))) (-1085 (-948 (-563))))) (-15 -2365 ((-330) (-1169) (-948 (-563)))) (-15 -2375 ((-330) (-1169) (-948 (-563)))))
+((-2238 (((-336 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-336 |#1| |#2| |#3| |#4|)) 33)))
+(((-333 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2238 ((-336 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-336 |#1| |#2| |#3| |#4|)))) (-363) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|) (-363) (-1233 |#5|) (-1233 (-407 |#6|)) (-342 |#5| |#6| |#7|)) (T -333))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-336 *5 *6 *7 *8)) (-4 *5 (-363)) (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6))) (-4 *8 (-342 *5 *6 *7)) (-4 *9 (-363)) (-4 *10 (-1233 *9)) (-4 *11 (-1233 (-407 *10))) (-5 *2 (-336 *9 *10 *11 *12)) (-5 *1 (-333 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-342 *9 *10 *11)))))
+(-10 -7 (-15 -2238 ((-336 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-336 |#1| |#2| |#3| |#4|))))
+((-2410 (((-112) $) 14)))
+(((-334 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2410 ((-112) |#1|))) (-335 |#2| |#3| |#4| |#5|) (-363) (-1233 |#2|) (-1233 (-407 |#3|)) (-342 |#2| |#3| |#4|)) (T -334))
+NIL
+(-10 -8 (-15 -2410 ((-112) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-2444 (($ $) 26)) (-2410 (((-112) $) 25)) (-3854 (((-1151) $) 9)) (-1716 (((-413 |#2| (-407 |#2|) |#3| |#4|) $) 32)) (-1693 (((-1113) $) 10)) (-4334 (((-3 |#4| "failed") $) 24)) (-2421 (($ (-413 |#2| (-407 |#2|) |#3| |#4|)) 31) (($ |#4|) 30) (($ |#1| |#1|) 29) (($ |#1| |#1| (-563)) 28) (($ |#4| |#2| |#2| |#2| |#1|) 23)) (-1913 (((-2 (|:| -1526 (-413 |#2| (-407 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 27)) (-1692 (((-858) $) 11)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20)))
(((-335 |#1| |#2| |#3| |#4|) (-140) (-363) (-1233 |t#1|) (-1233 (-407 |t#2|)) (-342 |t#1| |t#2| |t#3|)) (T -335))
-((-1776 (*1 *2 *1) (-12 (-4 *1 (-335 *3 *4 *5 *6)) (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5)) (-5 *2 (-413 *4 (-407 *4) *5 *6)))) (-3899 (*1 *1 *2) (-12 (-5 *2 (-413 *4 (-407 *4) *5 *6)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5)) (-4 *3 (-363)) (-4 *1 (-335 *3 *4 *5 *6)))) (-3899 (*1 *1 *2) (-12 (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-4 *1 (-335 *3 *4 *5 *2)) (-4 *2 (-342 *3 *4 *5)))) (-3899 (*1 *1 *2 *2) (-12 (-4 *2 (-363)) (-4 *3 (-1233 *2)) (-4 *4 (-1233 (-407 *3))) (-4 *1 (-335 *2 *3 *4 *5)) (-4 *5 (-342 *2 *3 *4)))) (-3899 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-563)) (-4 *2 (-363)) (-4 *4 (-1233 *2)) (-4 *5 (-1233 (-407 *4))) (-4 *1 (-335 *2 *4 *5 *6)) (-4 *6 (-342 *2 *4 *5)))) (-2927 (*1 *2 *1) (-12 (-4 *1 (-335 *3 *4 *5 *6)) (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5)) (-5 *2 (-2 (|:| -1524 (-413 *4 (-407 *4) *5 *6)) (|:| |principalPart| *6))))) (-2444 (*1 *1 *1) (-12 (-4 *1 (-335 *2 *3 *4 *5)) (-4 *2 (-363)) (-4 *3 (-1233 *2)) (-4 *4 (-1233 (-407 *3))) (-4 *5 (-342 *2 *3 *4)))) (-2257 (*1 *2 *1) (-12 (-4 *1 (-335 *3 *4 *5 *6)) (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5)) (-5 *2 (-112)))) (-4333 (*1 *2 *1) (|partial| -12 (-4 *1 (-335 *3 *4 *5 *2)) (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-4 *2 (-342 *3 *4 *5)))) (-3899 (*1 *1 *2 *3 *3 *3 *4) (-12 (-4 *4 (-363)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 (-407 *3))) (-4 *1 (-335 *4 *3 *5 *2)) (-4 *2 (-342 *4 *3 *5)))))
-(-13 (-21) (-10 -8 (-15 -1776 ((-413 |t#2| (-407 |t#2|) |t#3| |t#4|) $)) (-15 -3899 ($ (-413 |t#2| (-407 |t#2|) |t#3| |t#4|))) (-15 -3899 ($ |t#4|)) (-15 -3899 ($ |t#1| |t#1|)) (-15 -3899 ($ |t#1| |t#1| (-563))) (-15 -2927 ((-2 (|:| -1524 (-413 |t#2| (-407 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -2444 ($ $)) (-15 -2257 ((-112) $)) (-15 -4333 ((-3 |t#4| "failed") $)) (-15 -3899 ($ |t#4| |t#2| |t#2| |t#2| |t#1|))))
+((-1716 (*1 *2 *1) (-12 (-4 *1 (-335 *3 *4 *5 *6)) (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5)) (-5 *2 (-413 *4 (-407 *4) *5 *6)))) (-2421 (*1 *1 *2) (-12 (-5 *2 (-413 *4 (-407 *4) *5 *6)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5)) (-4 *3 (-363)) (-4 *1 (-335 *3 *4 *5 *6)))) (-2421 (*1 *1 *2) (-12 (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-4 *1 (-335 *3 *4 *5 *2)) (-4 *2 (-342 *3 *4 *5)))) (-2421 (*1 *1 *2 *2) (-12 (-4 *2 (-363)) (-4 *3 (-1233 *2)) (-4 *4 (-1233 (-407 *3))) (-4 *1 (-335 *2 *3 *4 *5)) (-4 *5 (-342 *2 *3 *4)))) (-2421 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-563)) (-4 *2 (-363)) (-4 *4 (-1233 *2)) (-4 *5 (-1233 (-407 *4))) (-4 *1 (-335 *2 *4 *5 *6)) (-4 *6 (-342 *2 *4 *5)))) (-1913 (*1 *2 *1) (-12 (-4 *1 (-335 *3 *4 *5 *6)) (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5)) (-5 *2 (-2 (|:| -1526 (-413 *4 (-407 *4) *5 *6)) (|:| |principalPart| *6))))) (-2444 (*1 *1 *1) (-12 (-4 *1 (-335 *2 *3 *4 *5)) (-4 *2 (-363)) (-4 *3 (-1233 *2)) (-4 *4 (-1233 (-407 *3))) (-4 *5 (-342 *2 *3 *4)))) (-2410 (*1 *2 *1) (-12 (-4 *1 (-335 *3 *4 *5 *6)) (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5)) (-5 *2 (-112)))) (-4334 (*1 *2 *1) (|partial| -12 (-4 *1 (-335 *3 *4 *5 *2)) (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-4 *2 (-342 *3 *4 *5)))) (-2421 (*1 *1 *2 *3 *3 *3 *4) (-12 (-4 *4 (-363)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 (-407 *3))) (-4 *1 (-335 *4 *3 *5 *2)) (-4 *2 (-342 *4 *3 *5)))))
+(-13 (-21) (-10 -8 (-15 -1716 ((-413 |t#2| (-407 |t#2|) |t#3| |t#4|) $)) (-15 -2421 ($ (-413 |t#2| (-407 |t#2|) |t#3| |t#4|))) (-15 -2421 ($ |t#4|)) (-15 -2421 ($ |t#1| |t#1|)) (-15 -2421 ($ |t#1| |t#1| (-563))) (-15 -1913 ((-2 (|:| -1526 (-413 |t#2| (-407 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -2444 ($ $)) (-15 -2410 ((-112) $)) (-15 -4334 ((-3 |t#4| "failed") $)) (-15 -2421 ($ |t#4| |t#2| |t#2| |t#2| |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2444 (($ $) 33)) (-2257 (((-112) $) NIL)) (-3573 (((-1151) $) NIL)) (-1867 (((-1257 |#4|) $) 125)) (-1776 (((-413 |#2| (-407 |#2|) |#3| |#4|) $) 31)) (-1694 (((-1113) $) NIL)) (-4333 (((-3 |#4| "failed") $) 36)) (-3195 (((-1257 |#4|) $) 118)) (-3899 (($ (-413 |#2| (-407 |#2|) |#3| |#4|)) 41) (($ |#4|) 43) (($ |#1| |#1|) 45) (($ |#1| |#1| (-563)) 47) (($ |#4| |#2| |#2| |#2| |#1|) 49)) (-2927 (((-2 (|:| -1524 (-413 |#2| (-407 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 39)) (-1693 (((-858) $) 17)) (-2241 (($) 14 T CONST)) (-1718 (((-112) $ $) 20)) (-1826 (($ $) 27) (($ $ $) NIL)) (-1814 (($ $ $) 25)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 23)))
-(((-336 |#1| |#2| |#3| |#4|) (-13 (-335 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3195 ((-1257 |#4|) $)) (-15 -1867 ((-1257 |#4|) $)))) (-363) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|)) (T -336))
-((-3195 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-1257 *6)) (-5 *1 (-336 *3 *4 *5 *6)) (-4 *6 (-342 *3 *4 *5)))) (-1867 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-1257 *6)) (-5 *1 (-336 *3 *4 *5 *6)) (-4 *6 (-342 *3 *4 *5)))))
-(-13 (-335 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3195 ((-1257 |#4|) $)) (-15 -1867 ((-1257 |#4|) $))))
-((-1540 (($ $ (-1169) |#2|) NIL) (($ $ (-640 (-1169)) (-640 |#2|)) 20) (($ $ (-640 (-294 |#2|))) 15) (($ $ (-294 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-640 |#2|) (-640 |#2|)) NIL)) (-2309 (($ $ |#2|) 11)))
-(((-337 |#1| |#2|) (-10 -8 (-15 -2309 (|#1| |#1| |#2|)) (-15 -1540 (|#1| |#1| (-640 |#2|) (-640 |#2|))) (-15 -1540 (|#1| |#1| |#2| |#2|)) (-15 -1540 (|#1| |#1| (-294 |#2|))) (-15 -1540 (|#1| |#1| (-640 (-294 |#2|)))) (-15 -1540 (|#1| |#1| (-640 (-1169)) (-640 |#2|))) (-15 -1540 (|#1| |#1| (-1169) |#2|))) (-338 |#2|) (-1093)) (T -337))
-NIL
-(-10 -8 (-15 -2309 (|#1| |#1| |#2|)) (-15 -1540 (|#1| |#1| (-640 |#2|) (-640 |#2|))) (-15 -1540 (|#1| |#1| |#2| |#2|)) (-15 -1540 (|#1| |#1| (-294 |#2|))) (-15 -1540 (|#1| |#1| (-640 (-294 |#2|)))) (-15 -1540 (|#1| |#1| (-640 (-1169)) (-640 |#2|))) (-15 -1540 (|#1| |#1| (-1169) |#2|)))
-((-2240 (($ (-1 |#1| |#1|) $) 6)) (-1540 (($ $ (-1169) |#1|) 17 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) 16 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-640 (-294 |#1|))) 15 (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) 14 (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) 13 (|has| |#1| (-309 |#1|))) (($ $ (-640 |#1|) (-640 |#1|)) 12 (|has| |#1| (-309 |#1|)))) (-2309 (($ $ |#1|) 11 (|has| |#1| (-286 |#1| |#1|)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2444 (($ $) 33)) (-2410 (((-112) $) NIL)) (-3854 (((-1151) $) NIL)) (-2388 (((-1257 |#4|) $) 125)) (-1716 (((-413 |#2| (-407 |#2|) |#3| |#4|) $) 31)) (-1693 (((-1113) $) NIL)) (-4334 (((-3 |#4| "failed") $) 36)) (-2398 (((-1257 |#4|) $) 118)) (-2421 (($ (-413 |#2| (-407 |#2|) |#3| |#4|)) 41) (($ |#4|) 43) (($ |#1| |#1|) 45) (($ |#1| |#1| (-563)) 47) (($ |#4| |#2| |#2| |#2| |#1|) 49)) (-1913 (((-2 (|:| -1526 (-413 |#2| (-407 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 39)) (-1692 (((-858) $) 17)) (-2239 (($) 14 T CONST)) (-1718 (((-112) $ $) 20)) (-1825 (($ $) 27) (($ $ $) NIL)) (-1813 (($ $ $) 25)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 23)))
+(((-336 |#1| |#2| |#3| |#4|) (-13 (-335 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2398 ((-1257 |#4|) $)) (-15 -2388 ((-1257 |#4|) $)))) (-363) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|)) (T -336))
+((-2398 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-1257 *6)) (-5 *1 (-336 *3 *4 *5 *6)) (-4 *6 (-342 *3 *4 *5)))) (-2388 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-1257 *6)) (-5 *1 (-336 *3 *4 *5 *6)) (-4 *6 (-342 *3 *4 *5)))))
+(-13 (-335 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2398 ((-1257 |#4|) $)) (-15 -2388 ((-1257 |#4|) $))))
+((-1542 (($ $ (-1169) |#2|) NIL) (($ $ (-640 (-1169)) (-640 |#2|)) 20) (($ $ (-640 (-294 |#2|))) 15) (($ $ (-294 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-640 |#2|) (-640 |#2|)) NIL)) (-2308 (($ $ |#2|) 11)))
+(((-337 |#1| |#2|) (-10 -8 (-15 -2308 (|#1| |#1| |#2|)) (-15 -1542 (|#1| |#1| (-640 |#2|) (-640 |#2|))) (-15 -1542 (|#1| |#1| |#2| |#2|)) (-15 -1542 (|#1| |#1| (-294 |#2|))) (-15 -1542 (|#1| |#1| (-640 (-294 |#2|)))) (-15 -1542 (|#1| |#1| (-640 (-1169)) (-640 |#2|))) (-15 -1542 (|#1| |#1| (-1169) |#2|))) (-338 |#2|) (-1093)) (T -337))
+NIL
+(-10 -8 (-15 -2308 (|#1| |#1| |#2|)) (-15 -1542 (|#1| |#1| (-640 |#2|) (-640 |#2|))) (-15 -1542 (|#1| |#1| |#2| |#2|)) (-15 -1542 (|#1| |#1| (-294 |#2|))) (-15 -1542 (|#1| |#1| (-640 (-294 |#2|)))) (-15 -1542 (|#1| |#1| (-640 (-1169)) (-640 |#2|))) (-15 -1542 (|#1| |#1| (-1169) |#2|)))
+((-2238 (($ (-1 |#1| |#1|) $) 6)) (-1542 (($ $ (-1169) |#1|) 17 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) 16 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-640 (-294 |#1|))) 15 (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) 14 (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) 13 (|has| |#1| (-309 |#1|))) (($ $ (-640 |#1|) (-640 |#1|)) 12 (|has| |#1| (-309 |#1|)))) (-2308 (($ $ |#1|) 11 (|has| |#1| (-286 |#1| |#1|)))))
(((-338 |#1|) (-140) (-1093)) (T -338))
-((-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-338 *3)) (-4 *3 (-1093)))))
-(-13 (-10 -8 (-15 -2240 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-286 |t#1| |t#1|)) (-6 (-286 |t#1| $)) |%noBranch|) (IF (|has| |t#1| (-309 |t#1|)) (-6 (-309 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-514 (-1169) |t#1|)) (-6 (-514 (-1169) |t#1|)) |%noBranch|)))
+((-2238 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-338 *3)) (-4 *3 (-1093)))))
+(-13 (-10 -8 (-15 -2238 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-286 |t#1| |t#1|)) (-6 (-286 |t#1| $)) |%noBranch|) (IF (|has| |t#1| (-309 |t#1|)) (-6 (-309 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-514 (-1169) |t#1|)) (-6 (-514 (-1169) |t#1|)) |%noBranch|)))
(((-286 |#1| $) |has| |#1| (-286 |#1| |#1|)) ((-309 |#1|) |has| |#1| (-309 |#1|)) ((-514 (-1169) |#1|) |has| |#1| (-514 (-1169) |#1|)) ((-514 |#1| |#1|) |has| |#1| (-309 |#1|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2606 (((-640 (-1169)) $) NIL)) (-2189 (((-112)) 90) (((-112) (-112)) 91)) (-2059 (((-640 (-609 $)) $) NIL)) (-1771 (($ $) NIL)) (-1619 (($ $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4132 (($ $ (-294 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-640 (-609 $)) (-640 $)) NIL)) (-2186 (($ $) NIL)) (-1748 (($ $) NIL)) (-1597 (($ $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-609 $) "failed") $) NIL) (((-3 |#3| "failed") $) NIL) (((-3 $ "failed") (-316 |#3|)) 70) (((-3 $ "failed") (-1169)) 96) (((-3 $ "failed") (-316 (-563))) 58 (|has| |#3| (-1034 (-563)))) (((-3 $ "failed") (-407 (-948 (-563)))) 64 (|has| |#3| (-1034 (-563)))) (((-3 $ "failed") (-948 (-563))) 59 (|has| |#3| (-1034 (-563)))) (((-3 $ "failed") (-316 (-379))) 88 (|has| |#3| (-1034 (-379)))) (((-3 $ "failed") (-407 (-948 (-379)))) 82 (|has| |#3| (-1034 (-379)))) (((-3 $ "failed") (-948 (-379))) 77 (|has| |#3| (-1034 (-379))))) (-2058 (((-609 $) $) NIL) ((|#3| $) NIL) (($ (-316 |#3|)) 71) (($ (-1169)) 97) (($ (-316 (-563))) 60 (|has| |#3| (-1034 (-563)))) (($ (-407 (-948 (-563)))) 65 (|has| |#3| (-1034 (-563)))) (($ (-948 (-563))) 61 (|has| |#3| (-1034 (-563)))) (($ (-316 (-379))) 89 (|has| |#3| (-1034 (-379)))) (($ (-407 (-948 (-379)))) 83 (|has| |#3| (-1034 (-379)))) (($ (-948 (-379))) 79 (|has| |#3| (-1034 (-379))))) (-3400 (((-3 $ "failed") $) NIL)) (-2180 (($) 10)) (-3968 (($ $) NIL) (($ (-640 $)) NIL)) (-3804 (((-640 (-114)) $) NIL)) (-2361 (((-114) (-114)) NIL)) (-3827 (((-112) $) NIL)) (-3131 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-3180 (((-1165 $) (-609 $)) NIL (|has| $ (-1045)))) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-2240 (($ (-1 $ $) (-609 $)) NIL)) (-2875 (((-3 (-609 $) "failed") $) NIL)) (-3097 (($ $) 93)) (-4371 (($ $) NIL)) (-3573 (((-1151) $) NIL)) (-2127 (((-640 (-609 $)) $) NIL)) (-2227 (($ (-114) $) 92) (($ (-114) (-640 $)) NIL)) (-2799 (((-112) $ (-114)) NIL) (((-112) $ (-1169)) NIL)) (-4236 (((-767) $) NIL)) (-1694 (((-1113) $) NIL)) (-1372 (((-112) $ $) NIL) (((-112) $ (-1169)) NIL)) (-3368 (($ $) NIL)) (-2359 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-1540 (($ $ (-609 $) $) NIL) (($ $ (-640 (-609 $)) (-640 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-1169) (-1 $ (-640 $))) NIL) (($ $ (-1169) (-1 $ $)) NIL) (($ $ (-640 (-114)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-114) (-1 $ (-640 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-2309 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-640 $)) NIL)) (-3071 (($ $) NIL) (($ $ $) NIL)) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL)) (-3390 (($ $) NIL (|has| $ (-1045)))) (-1759 (($ $) NIL)) (-1608 (($ $) NIL)) (-1693 (((-858) $) NIL) (($ (-609 $)) NIL) (($ |#3|) NIL) (($ (-563)) NIL) (((-316 |#3|) $) 95)) (-1675 (((-767)) NIL)) (-3079 (($ $) NIL) (($ (-640 $)) NIL)) (-3734 (((-112) (-114)) NIL)) (-1695 (($ $) NIL)) (-1667 (($ $) NIL)) (-1680 (($ $) NIL)) (-2509 (($ $) NIL)) (-2241 (($) 94 T CONST)) (-2254 (($) 24 T CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)) (-1826 (($ $ $) NIL) (($ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-767)) NIL) (($ $ (-917)) NIL)) (* (($ |#3| $) NIL) (($ $ |#3|) NIL) (($ $ $) NIL) (($ (-563) $) NIL) (($ (-767) $) NIL) (($ (-917) $) NIL)))
-(((-339 |#1| |#2| |#3|) (-13 (-302) (-38 |#3|) (-1034 |#3|) (-896 (-1169)) (-10 -8 (-15 -2058 ($ (-316 |#3|))) (-15 -2131 ((-3 $ "failed") (-316 |#3|))) (-15 -2058 ($ (-1169))) (-15 -2131 ((-3 $ "failed") (-1169))) (-15 -1693 ((-316 |#3|) $)) (IF (|has| |#3| (-1034 (-563))) (PROGN (-15 -2058 ($ (-316 (-563)))) (-15 -2131 ((-3 $ "failed") (-316 (-563)))) (-15 -2058 ($ (-407 (-948 (-563))))) (-15 -2131 ((-3 $ "failed") (-407 (-948 (-563))))) (-15 -2058 ($ (-948 (-563)))) (-15 -2131 ((-3 $ "failed") (-948 (-563))))) |%noBranch|) (IF (|has| |#3| (-1034 (-379))) (PROGN (-15 -2058 ($ (-316 (-379)))) (-15 -2131 ((-3 $ "failed") (-316 (-379)))) (-15 -2058 ($ (-407 (-948 (-379))))) (-15 -2131 ((-3 $ "failed") (-407 (-948 (-379))))) (-15 -2058 ($ (-948 (-379)))) (-15 -2131 ((-3 $ "failed") (-948 (-379))))) |%noBranch|) (-15 -2509 ($ $)) (-15 -2186 ($ $)) (-15 -3368 ($ $)) (-15 -4371 ($ $)) (-15 -3097 ($ $)) (-15 -1597 ($ $)) (-15 -1608 ($ $)) (-15 -1619 ($ $)) (-15 -1667 ($ $)) (-15 -1680 ($ $)) (-15 -1695 ($ $)) (-15 -1748 ($ $)) (-15 -1759 ($ $)) (-15 -1771 ($ $)) (-15 -2180 ($)) (-15 -2606 ((-640 (-1169)) $)) (-15 -2189 ((-112))) (-15 -2189 ((-112) (-112))))) (-640 (-1169)) (-640 (-1169)) (-387)) (T -339))
-((-2058 (*1 *1 *2) (-12 (-5 *2 (-316 *5)) (-4 *5 (-387)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-316 *5)) (-4 *5 (-387)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 *2)) (-14 *4 (-640 *2)) (-4 *5 (-387)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 *2)) (-14 *4 (-640 *2)) (-4 *5 (-387)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-316 *5)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-316 (-563))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-563))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-316 (-563))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-563))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-407 (-948 (-563)))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-563))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-407 (-948 (-563)))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-563))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-948 (-563))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-563))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-948 (-563))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-563))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-316 (-379))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-379))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-316 (-379))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-379))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-407 (-948 (-379)))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-379))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-407 (-948 (-379)))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-379))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-948 (-379))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-379))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-948 (-379))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-379))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2509 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-2186 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-3368 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-4371 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-3097 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1597 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1608 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1619 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1667 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1680 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1695 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1748 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1759 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1771 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-2180 (*1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-2606 (*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-339 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-387)))) (-2189 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2189 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))))
-(-13 (-302) (-38 |#3|) (-1034 |#3|) (-896 (-1169)) (-10 -8 (-15 -2058 ($ (-316 |#3|))) (-15 -2131 ((-3 $ "failed") (-316 |#3|))) (-15 -2058 ($ (-1169))) (-15 -2131 ((-3 $ "failed") (-1169))) (-15 -1693 ((-316 |#3|) $)) (IF (|has| |#3| (-1034 (-563))) (PROGN (-15 -2058 ($ (-316 (-563)))) (-15 -2131 ((-3 $ "failed") (-316 (-563)))) (-15 -2058 ($ (-407 (-948 (-563))))) (-15 -2131 ((-3 $ "failed") (-407 (-948 (-563))))) (-15 -2058 ($ (-948 (-563)))) (-15 -2131 ((-3 $ "failed") (-948 (-563))))) |%noBranch|) (IF (|has| |#3| (-1034 (-379))) (PROGN (-15 -2058 ($ (-316 (-379)))) (-15 -2131 ((-3 $ "failed") (-316 (-379)))) (-15 -2058 ($ (-407 (-948 (-379))))) (-15 -2131 ((-3 $ "failed") (-407 (-948 (-379))))) (-15 -2058 ($ (-948 (-379)))) (-15 -2131 ((-3 $ "failed") (-948 (-379))))) |%noBranch|) (-15 -2509 ($ $)) (-15 -2186 ($ $)) (-15 -3368 ($ $)) (-15 -4371 ($ $)) (-15 -3097 ($ $)) (-15 -1597 ($ $)) (-15 -1608 ($ $)) (-15 -1619 ($ $)) (-15 -1667 ($ $)) (-15 -1680 ($ $)) (-15 -1695 ($ $)) (-15 -1748 ($ $)) (-15 -1759 ($ $)) (-15 -1771 ($ $)) (-15 -2180 ($)) (-15 -2606 ((-640 (-1169)) $)) (-15 -2189 ((-112))) (-15 -2189 ((-112) (-112)))))
-((-2240 ((|#8| (-1 |#5| |#1|) |#4|) 19)))
-(((-340 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2240 (|#8| (-1 |#5| |#1|) |#4|))) (-1212) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|) (-1212) (-1233 |#5|) (-1233 (-407 |#6|)) (-342 |#5| |#6| |#7|)) (T -340))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1212)) (-4 *8 (-1212)) (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6))) (-4 *9 (-1233 *8)) (-4 *2 (-342 *8 *9 *10)) (-5 *1 (-340 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-342 *5 *6 *7)) (-4 *10 (-1233 (-407 *9))))))
-(-10 -7 (-15 -2240 (|#8| (-1 |#5| |#1|) |#4|)))
-((-4067 (((-2 (|:| |num| (-1257 |#3|)) (|:| |den| |#3|)) $) 38)) (-3937 (($ (-1257 (-407 |#3|)) (-1257 $)) NIL) (($ (-1257 (-407 |#3|))) NIL) (($ (-1257 |#3|) |#3|) 160)) (-4364 (((-1257 $) (-1257 $)) 144)) (-2077 (((-640 (-640 |#2|))) 118)) (-3632 (((-112) |#2| |#2|) 73)) (-1300 (($ $) 138)) (-3273 (((-767)) 31)) (-3132 (((-1257 $) (-1257 $)) 197)) (-3370 (((-640 (-948 |#2|)) (-1169)) 110)) (-2532 (((-112) $) 157)) (-1294 (((-112) $) 25) (((-112) $ |#2|) 29) (((-112) $ |#3|) 201)) (-3140 (((-3 |#3| "failed")) 50)) (-2327 (((-767)) 169)) (-2309 ((|#2| $ |#2| |#2|) 131)) (-2621 (((-3 |#3| "failed")) 68)) (-4202 (($ $ (-1 (-407 |#3|) (-407 |#3|)) (-767)) NIL) (($ $ (-1 (-407 |#3|) (-407 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 205) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL) (($ $ (-767)) NIL) (($ $) NIL)) (-1962 (((-1257 $) (-1257 $)) 150)) (-2732 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 66)) (-1581 (((-112)) 33)))
-(((-341 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -2077 ((-640 (-640 |#2|)))) (-15 -3370 ((-640 (-948 |#2|)) (-1169))) (-15 -2732 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -3140 ((-3 |#3| "failed"))) (-15 -2621 ((-3 |#3| "failed"))) (-15 -2309 (|#2| |#1| |#2| |#2|)) (-15 -1300 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1294 ((-112) |#1| |#3|)) (-15 -1294 ((-112) |#1| |#2|)) (-15 -3937 (|#1| (-1257 |#3|) |#3|)) (-15 -4067 ((-2 (|:| |num| (-1257 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -4364 ((-1257 |#1|) (-1257 |#1|))) (-15 -3132 ((-1257 |#1|) (-1257 |#1|))) (-15 -1962 ((-1257 |#1|) (-1257 |#1|))) (-15 -1294 ((-112) |#1|)) (-15 -2532 ((-112) |#1|)) (-15 -3632 ((-112) |#2| |#2|)) (-15 -1581 ((-112))) (-15 -2327 ((-767))) (-15 -3273 ((-767))) (-15 -4202 (|#1| |#1| (-1 (-407 |#3|) (-407 |#3|)))) (-15 -4202 (|#1| |#1| (-1 (-407 |#3|) (-407 |#3|)) (-767))) (-15 -3937 (|#1| (-1257 (-407 |#3|)))) (-15 -3937 (|#1| (-1257 (-407 |#3|)) (-1257 |#1|)))) (-342 |#2| |#3| |#4|) (-1212) (-1233 |#2|) (-1233 (-407 |#3|))) (T -341))
-((-3273 (*1 *2) (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-5 *2 (-767)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *3 (-342 *4 *5 *6)))) (-2327 (*1 *2) (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-5 *2 (-767)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *3 (-342 *4 *5 *6)))) (-1581 (*1 *2) (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-5 *2 (-112)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *3 (-342 *4 *5 *6)))) (-3632 (*1 *2 *3 *3) (-12 (-4 *3 (-1212)) (-4 *5 (-1233 *3)) (-4 *6 (-1233 (-407 *5))) (-5 *2 (-112)) (-5 *1 (-341 *4 *3 *5 *6)) (-4 *4 (-342 *3 *5 *6)))) (-2621 (*1 *2) (|partial| -12 (-4 *4 (-1212)) (-4 *5 (-1233 (-407 *2))) (-4 *2 (-1233 *4)) (-5 *1 (-341 *3 *4 *2 *5)) (-4 *3 (-342 *4 *2 *5)))) (-3140 (*1 *2) (|partial| -12 (-4 *4 (-1212)) (-4 *5 (-1233 (-407 *2))) (-4 *2 (-1233 *4)) (-5 *1 (-341 *3 *4 *2 *5)) (-4 *3 (-342 *4 *2 *5)))) (-3370 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-4 *5 (-1212)) (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6))) (-5 *2 (-640 (-948 *5))) (-5 *1 (-341 *4 *5 *6 *7)) (-4 *4 (-342 *5 *6 *7)))) (-2077 (*1 *2) (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-5 *2 (-640 (-640 *4))) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *3 (-342 *4 *5 *6)))))
-(-10 -8 (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -2077 ((-640 (-640 |#2|)))) (-15 -3370 ((-640 (-948 |#2|)) (-1169))) (-15 -2732 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -3140 ((-3 |#3| "failed"))) (-15 -2621 ((-3 |#3| "failed"))) (-15 -2309 (|#2| |#1| |#2| |#2|)) (-15 -1300 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1294 ((-112) |#1| |#3|)) (-15 -1294 ((-112) |#1| |#2|)) (-15 -3937 (|#1| (-1257 |#3|) |#3|)) (-15 -4067 ((-2 (|:| |num| (-1257 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -4364 ((-1257 |#1|) (-1257 |#1|))) (-15 -3132 ((-1257 |#1|) (-1257 |#1|))) (-15 -1962 ((-1257 |#1|) (-1257 |#1|))) (-15 -1294 ((-112) |#1|)) (-15 -2532 ((-112) |#1|)) (-15 -3632 ((-112) |#2| |#2|)) (-15 -1581 ((-112))) (-15 -2327 ((-767))) (-15 -3273 ((-767))) (-15 -4202 (|#1| |#1| (-1 (-407 |#3|) (-407 |#3|)))) (-15 -4202 (|#1| |#1| (-1 (-407 |#3|) (-407 |#3|)) (-767))) (-15 -3937 (|#1| (-1257 (-407 |#3|)))) (-15 -3937 (|#1| (-1257 (-407 |#3|)) (-1257 |#1|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4067 (((-2 (|:| |num| (-1257 |#2|)) (|:| |den| |#2|)) $) 195)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 93 (|has| (-407 |#2|) (-363)))) (-4223 (($ $) 94 (|has| (-407 |#2|) (-363)))) (-3156 (((-112) $) 96 (|has| (-407 |#2|) (-363)))) (-3561 (((-684 (-407 |#2|)) (-1257 $)) 47) (((-684 (-407 |#2|))) 62)) (-1733 (((-407 |#2|) $) 53)) (-2752 (((-1181 (-917) (-767)) (-563)) 146 (|has| (-407 |#2|) (-349)))) (-1495 (((-3 $ "failed") $ $) 19)) (-4335 (($ $) 113 (|has| (-407 |#2|) (-363)))) (-3205 (((-418 $) $) 114 (|has| (-407 |#2|) (-363)))) (-1919 (((-112) $ $) 104 (|has| (-407 |#2|) (-363)))) (-3749 (((-767)) 87 (|has| (-407 |#2|) (-368)))) (-1504 (((-112)) 212)) (-2456 (((-112) |#1|) 211) (((-112) |#2|) 210)) (-4239 (($) 17 T CONST)) (-2131 (((-3 (-563) "failed") $) 169 (|has| (-407 |#2|) (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 167 (|has| (-407 |#2|) (-1034 (-407 (-563))))) (((-3 (-407 |#2|) "failed") $) 164)) (-2058 (((-563) $) 168 (|has| (-407 |#2|) (-1034 (-563)))) (((-407 (-563)) $) 166 (|has| (-407 |#2|) (-1034 (-407 (-563))))) (((-407 |#2|) $) 165)) (-3937 (($ (-1257 (-407 |#2|)) (-1257 $)) 49) (($ (-1257 (-407 |#2|))) 65) (($ (-1257 |#2|) |#2|) 194)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) 152 (|has| (-407 |#2|) (-349)))) (-3090 (($ $ $) 108 (|has| (-407 |#2|) (-363)))) (-3914 (((-684 (-407 |#2|)) $ (-1257 $)) 54) (((-684 (-407 |#2|)) $) 60)) (-2950 (((-684 (-563)) (-684 $)) 163 (|has| (-407 |#2|) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 162 (|has| (-407 |#2|) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-407 |#2|))) (|:| |vec| (-1257 (-407 |#2|)))) (-684 $) (-1257 $)) 161) (((-684 (-407 |#2|)) (-684 $)) 160)) (-4364 (((-1257 $) (-1257 $)) 200)) (-2444 (($ |#3|) 157) (((-3 $ "failed") (-407 |#3|)) 154 (|has| (-407 |#2|) (-363)))) (-3400 (((-3 $ "failed") $) 33)) (-2077 (((-640 (-640 |#1|))) 181 (|has| |#1| (-368)))) (-3632 (((-112) |#1| |#1|) 216)) (-2522 (((-917)) 55)) (-1691 (($) 90 (|has| (-407 |#2|) (-368)))) (-4077 (((-112)) 209)) (-1852 (((-112) |#1|) 208) (((-112) |#2|) 207)) (-3050 (($ $ $) 107 (|has| (-407 |#2|) (-363)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 102 (|has| (-407 |#2|) (-363)))) (-1300 (($ $) 187)) (-1571 (($) 148 (|has| (-407 |#2|) (-349)))) (-2366 (((-112) $) 149 (|has| (-407 |#2|) (-349)))) (-1637 (($ $ (-767)) 140 (|has| (-407 |#2|) (-349))) (($ $) 139 (|has| (-407 |#2|) (-349)))) (-2468 (((-112) $) 115 (|has| (-407 |#2|) (-363)))) (-3254 (((-917) $) 151 (|has| (-407 |#2|) (-349))) (((-829 (-917)) $) 137 (|has| (-407 |#2|) (-349)))) (-3827 (((-112) $) 31)) (-3273 (((-767)) 219)) (-3132 (((-1257 $) (-1257 $)) 201)) (-3793 (((-407 |#2|) $) 52)) (-3370 (((-640 (-948 |#1|)) (-1169)) 182 (|has| |#1| (-363)))) (-2408 (((-3 $ "failed") $) 141 (|has| (-407 |#2|) (-349)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 111 (|has| (-407 |#2|) (-363)))) (-3941 ((|#3| $) 45 (|has| (-407 |#2|) (-363)))) (-1476 (((-917) $) 89 (|has| (-407 |#2|) (-368)))) (-2433 ((|#3| $) 155)) (-3513 (($ (-640 $)) 100 (|has| (-407 |#2|) (-363))) (($ $ $) 99 (|has| (-407 |#2|) (-363)))) (-3573 (((-1151) $) 9)) (-2095 (((-684 (-407 |#2|))) 196)) (-3295 (((-684 (-407 |#2|))) 198)) (-2688 (($ $) 116 (|has| (-407 |#2|) (-363)))) (-2145 (($ (-1257 |#2|) |#2|) 192)) (-4218 (((-684 (-407 |#2|))) 197)) (-3500 (((-684 (-407 |#2|))) 199)) (-2914 (((-2 (|:| |num| (-684 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 191)) (-3447 (((-2 (|:| |num| (-1257 |#2|)) (|:| |den| |#2|)) $) 193)) (-2993 (((-1257 $)) 205)) (-3815 (((-1257 $)) 206)) (-2532 (((-112) $) 204)) (-1294 (((-112) $) 203) (((-112) $ |#1|) 190) (((-112) $ |#2|) 189)) (-2523 (($) 142 (|has| (-407 |#2|) (-349)) CONST)) (-2555 (($ (-917)) 88 (|has| (-407 |#2|) (-368)))) (-3140 (((-3 |#2| "failed")) 184)) (-1694 (((-1113) $) 10)) (-2327 (((-767)) 218)) (-4333 (($) 159)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 101 (|has| (-407 |#2|) (-363)))) (-3548 (($ (-640 $)) 98 (|has| (-407 |#2|) (-363))) (($ $ $) 97 (|has| (-407 |#2|) (-363)))) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) 145 (|has| (-407 |#2|) (-349)))) (-2174 (((-418 $) $) 112 (|has| (-407 |#2|) (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| (-407 |#2|) (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 109 (|has| (-407 |#2|) (-363)))) (-3008 (((-3 $ "failed") $ $) 92 (|has| (-407 |#2|) (-363)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 103 (|has| (-407 |#2|) (-363)))) (-2628 (((-767) $) 105 (|has| (-407 |#2|) (-363)))) (-2309 ((|#1| $ |#1| |#1|) 186)) (-2621 (((-3 |#2| "failed")) 185)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 106 (|has| (-407 |#2|) (-363)))) (-2315 (((-407 |#2|) (-1257 $)) 48) (((-407 |#2|)) 61)) (-1423 (((-767) $) 150 (|has| (-407 |#2|) (-349))) (((-3 (-767) "failed") $ $) 138 (|has| (-407 |#2|) (-349)))) (-4202 (($ $ (-1 (-407 |#2|) (-407 |#2|)) (-767)) 122 (|has| (-407 |#2|) (-363))) (($ $ (-1 (-407 |#2|) (-407 |#2|))) 121 (|has| (-407 |#2|) (-363))) (($ $ (-1 |#2| |#2|)) 188) (($ $ (-640 (-1169)) (-640 (-767))) 129 (-4032 (-2190 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2190 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-1169) (-767)) 130 (-4032 (-2190 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2190 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-640 (-1169))) 131 (-4032 (-2190 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2190 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-1169)) 132 (-4032 (-2190 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2190 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-767)) 134 (-4032 (-2190 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-233))) (-2190 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349)))) (($ $) 136 (-4032 (-2190 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-233))) (-2190 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349))))) (-3974 (((-684 (-407 |#2|)) (-1257 $) (-1 (-407 |#2|) (-407 |#2|))) 153 (|has| (-407 |#2|) (-363)))) (-3390 ((|#3|) 158)) (-4284 (($) 147 (|has| (-407 |#2|) (-349)))) (-1880 (((-1257 (-407 |#2|)) $ (-1257 $)) 51) (((-684 (-407 |#2|)) (-1257 $) (-1257 $)) 50) (((-1257 (-407 |#2|)) $) 67) (((-684 (-407 |#2|)) (-1257 $)) 66)) (-2220 (((-1257 (-407 |#2|)) $) 64) (($ (-1257 (-407 |#2|))) 63) ((|#3| $) 170) (($ |#3|) 156)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) 144 (|has| (-407 |#2|) (-349)))) (-1962 (((-1257 $) (-1257 $)) 202)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ (-407 |#2|)) 38) (($ (-407 (-563))) 86 (-4032 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-1034 (-407 (-563)))))) (($ $) 91 (|has| (-407 |#2|) (-363)))) (-2779 (($ $) 143 (|has| (-407 |#2|) (-349))) (((-3 $ "failed") $) 44 (|has| (-407 |#2|) (-145)))) (-3421 ((|#3| $) 46)) (-1675 (((-767)) 28)) (-4042 (((-112)) 215)) (-1528 (((-112) |#1|) 214) (((-112) |#2|) 213)) (-4315 (((-1257 $)) 68)) (-2126 (((-112) $ $) 95 (|has| (-407 |#2|) (-363)))) (-2732 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 183)) (-1581 (((-112)) 217)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ (-1 (-407 |#2|) (-407 |#2|)) (-767)) 124 (|has| (-407 |#2|) (-363))) (($ $ (-1 (-407 |#2|) (-407 |#2|))) 123 (|has| (-407 |#2|) (-363))) (($ $ (-640 (-1169)) (-640 (-767))) 125 (-4032 (-2190 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2190 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-1169) (-767)) 126 (-4032 (-2190 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2190 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-640 (-1169))) 127 (-4032 (-2190 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2190 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-1169)) 128 (-4032 (-2190 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2190 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-767)) 133 (-4032 (-2190 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-233))) (-2190 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349)))) (($ $) 135 (-4032 (-2190 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-233))) (-2190 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349))))) (-1718 (((-112) $ $) 6)) (-1837 (($ $ $) 120 (|has| (-407 |#2|) (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 117 (|has| (-407 |#2|) (-363)))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 |#2|)) 40) (($ (-407 |#2|) $) 39) (($ (-407 (-563)) $) 119 (|has| (-407 |#2|) (-363))) (($ $ (-407 (-563))) 118 (|has| (-407 |#2|) (-363)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2605 (((-640 (-1169)) $) NIL)) (-2432 (((-112)) 89) (((-112) (-112)) 90)) (-2058 (((-640 (-609 $)) $) NIL)) (-1770 (($ $) NIL)) (-1618 (($ $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-4135 (($ $ (-294 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-640 (-609 $)) (-640 $)) NIL)) (-2185 (($ $) NIL)) (-1747 (($ $) NIL)) (-1596 (($ $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-609 $) "failed") $) NIL) (((-3 |#3| "failed") $) NIL) (((-3 $ "failed") (-316 |#3|)) 69) (((-3 $ "failed") (-1169)) 95) (((-3 $ "failed") (-316 (-563))) 57 (|has| |#3| (-1034 (-563)))) (((-3 $ "failed") (-407 (-948 (-563)))) 63 (|has| |#3| (-1034 (-563)))) (((-3 $ "failed") (-948 (-563))) 58 (|has| |#3| (-1034 (-563)))) (((-3 $ "failed") (-316 (-379))) 87 (|has| |#3| (-1034 (-379)))) (((-3 $ "failed") (-407 (-948 (-379)))) 81 (|has| |#3| (-1034 (-379)))) (((-3 $ "failed") (-948 (-379))) 76 (|has| |#3| (-1034 (-379))))) (-2057 (((-609 $) $) NIL) ((|#3| $) NIL) (($ (-316 |#3|)) 70) (($ (-1169)) 96) (($ (-316 (-563))) 59 (|has| |#3| (-1034 (-563)))) (($ (-407 (-948 (-563)))) 64 (|has| |#3| (-1034 (-563)))) (($ (-948 (-563))) 60 (|has| |#3| (-1034 (-563)))) (($ (-316 (-379))) 88 (|has| |#3| (-1034 (-379)))) (($ (-407 (-948 (-379)))) 82 (|has| |#3| (-1034 (-379)))) (($ (-948 (-379))) 78 (|has| |#3| (-1034 (-379))))) (-3951 (((-3 $ "failed") $) NIL)) (-2179 (($) 10)) (-3228 (($ $) NIL) (($ (-640 $)) NIL)) (-2739 (((-640 (-114)) $) NIL)) (-2559 (((-114) (-114)) NIL)) (-3401 (((-112) $) NIL)) (-2959 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-2716 (((-1165 $) (-609 $)) NIL (|has| $ (-1045)))) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-2238 (($ (-1 $ $) (-609 $)) NIL)) (-2751 (((-3 (-609 $) "failed") $) NIL)) (-3101 (($ $) 92)) (-4372 (($ $) NIL)) (-3854 (((-1151) $) NIL)) (-2126 (((-640 (-609 $)) $) NIL)) (-2227 (($ (-114) $) 91) (($ (-114) (-640 $)) NIL)) (-2602 (((-112) $ (-114)) NIL) (((-112) $ (-1169)) NIL)) (-4238 (((-767) $) NIL)) (-1693 (((-1113) $) NIL)) (-2726 (((-112) $ $) NIL) (((-112) $ (-1169)) NIL)) (-3372 (($ $) NIL)) (-2969 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-1542 (($ $ (-609 $) $) NIL) (($ $ (-640 (-609 $)) (-640 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-1169) (-1 $ (-640 $))) NIL) (($ $ (-1169) (-1 $ $)) NIL) (($ $ (-640 (-114)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-114) (-1 $ (-640 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-2308 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-640 $)) NIL)) (-2761 (($ $) NIL) (($ $ $) NIL)) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL)) (-3402 (($ $) NIL (|has| $ (-1045)))) (-1758 (($ $) NIL)) (-1607 (($ $) NIL)) (-1692 (((-858) $) NIL) (($ (-609 $)) NIL) (($ |#3|) NIL) (($ (-563)) NIL) (((-316 |#3|) $) 94)) (-3914 (((-767)) NIL)) (-3083 (($ $) NIL) (($ (-640 $)) NIL)) (-2512 (((-112) (-114)) NIL)) (-1694 (($ $) NIL)) (-1666 (($ $) NIL)) (-1679 (($ $) NIL)) (-1462 (($ $) NIL)) (-2239 (($) 93 T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)) (-1825 (($ $ $) NIL) (($ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-767)) NIL) (($ $ (-917)) NIL)) (* (($ |#3| $) NIL) (($ $ |#3|) NIL) (($ $ $) NIL) (($ (-563) $) NIL) (($ (-767) $) NIL) (($ (-917) $) NIL)))
+(((-339 |#1| |#2| |#3|) (-13 (-302) (-38 |#3|) (-1034 |#3|) (-896 (-1169)) (-10 -8 (-15 -2057 ($ (-316 |#3|))) (-15 -2130 ((-3 $ "failed") (-316 |#3|))) (-15 -2057 ($ (-1169))) (-15 -2130 ((-3 $ "failed") (-1169))) (-15 -1692 ((-316 |#3|) $)) (IF (|has| |#3| (-1034 (-563))) (PROGN (-15 -2057 ($ (-316 (-563)))) (-15 -2130 ((-3 $ "failed") (-316 (-563)))) (-15 -2057 ($ (-407 (-948 (-563))))) (-15 -2130 ((-3 $ "failed") (-407 (-948 (-563))))) (-15 -2057 ($ (-948 (-563)))) (-15 -2130 ((-3 $ "failed") (-948 (-563))))) |%noBranch|) (IF (|has| |#3| (-1034 (-379))) (PROGN (-15 -2057 ($ (-316 (-379)))) (-15 -2130 ((-3 $ "failed") (-316 (-379)))) (-15 -2057 ($ (-407 (-948 (-379))))) (-15 -2130 ((-3 $ "failed") (-407 (-948 (-379))))) (-15 -2057 ($ (-948 (-379)))) (-15 -2130 ((-3 $ "failed") (-948 (-379))))) |%noBranch|) (-15 -1462 ($ $)) (-15 -2185 ($ $)) (-15 -3372 ($ $)) (-15 -4372 ($ $)) (-15 -3101 ($ $)) (-15 -1596 ($ $)) (-15 -1607 ($ $)) (-15 -1618 ($ $)) (-15 -1666 ($ $)) (-15 -1679 ($ $)) (-15 -1694 ($ $)) (-15 -1747 ($ $)) (-15 -1758 ($ $)) (-15 -1770 ($ $)) (-15 -2179 ($)) (-15 -2605 ((-640 (-1169)) $)) (-15 -2432 ((-112))) (-15 -2432 ((-112) (-112))))) (-640 (-1169)) (-640 (-1169)) (-387)) (T -339))
+((-2057 (*1 *1 *2) (-12 (-5 *2 (-316 *5)) (-4 *5 (-387)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-316 *5)) (-4 *5 (-387)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 *2)) (-14 *4 (-640 *2)) (-4 *5 (-387)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 *2)) (-14 *4 (-640 *2)) (-4 *5 (-387)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-316 *5)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-316 (-563))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-563))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-316 (-563))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-563))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-407 (-948 (-563)))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-563))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-407 (-948 (-563)))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-563))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-948 (-563))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-563))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-948 (-563))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-563))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-316 (-379))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-379))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-316 (-379))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-379))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-407 (-948 (-379)))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-379))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-407 (-948 (-379)))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-379))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-948 (-379))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-379))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-948 (-379))) (-5 *1 (-339 *3 *4 *5)) (-4 *5 (-1034 (-379))) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-1462 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-2185 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-3372 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-4372 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-3101 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1596 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1607 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1618 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1666 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1679 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1694 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1747 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1758 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-1770 (*1 *1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-2179 (*1 *1) (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169))) (-14 *3 (-640 (-1169))) (-4 *4 (-387)))) (-2605 (*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-339 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-387)))) (-2432 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))) (-2432 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-1169))) (-4 *5 (-387)))))
+(-13 (-302) (-38 |#3|) (-1034 |#3|) (-896 (-1169)) (-10 -8 (-15 -2057 ($ (-316 |#3|))) (-15 -2130 ((-3 $ "failed") (-316 |#3|))) (-15 -2057 ($ (-1169))) (-15 -2130 ((-3 $ "failed") (-1169))) (-15 -1692 ((-316 |#3|) $)) (IF (|has| |#3| (-1034 (-563))) (PROGN (-15 -2057 ($ (-316 (-563)))) (-15 -2130 ((-3 $ "failed") (-316 (-563)))) (-15 -2057 ($ (-407 (-948 (-563))))) (-15 -2130 ((-3 $ "failed") (-407 (-948 (-563))))) (-15 -2057 ($ (-948 (-563)))) (-15 -2130 ((-3 $ "failed") (-948 (-563))))) |%noBranch|) (IF (|has| |#3| (-1034 (-379))) (PROGN (-15 -2057 ($ (-316 (-379)))) (-15 -2130 ((-3 $ "failed") (-316 (-379)))) (-15 -2057 ($ (-407 (-948 (-379))))) (-15 -2130 ((-3 $ "failed") (-407 (-948 (-379))))) (-15 -2057 ($ (-948 (-379)))) (-15 -2130 ((-3 $ "failed") (-948 (-379))))) |%noBranch|) (-15 -1462 ($ $)) (-15 -2185 ($ $)) (-15 -3372 ($ $)) (-15 -4372 ($ $)) (-15 -3101 ($ $)) (-15 -1596 ($ $)) (-15 -1607 ($ $)) (-15 -1618 ($ $)) (-15 -1666 ($ $)) (-15 -1679 ($ $)) (-15 -1694 ($ $)) (-15 -1747 ($ $)) (-15 -1758 ($ $)) (-15 -1770 ($ $)) (-15 -2179 ($)) (-15 -2605 ((-640 (-1169)) $)) (-15 -2432 ((-112))) (-15 -2432 ((-112) (-112)))))
+((-2238 ((|#8| (-1 |#5| |#1|) |#4|) 19)))
+(((-340 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2238 (|#8| (-1 |#5| |#1|) |#4|))) (-1212) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|) (-1212) (-1233 |#5|) (-1233 (-407 |#6|)) (-342 |#5| |#6| |#7|)) (T -340))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1212)) (-4 *8 (-1212)) (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6))) (-4 *9 (-1233 *8)) (-4 *2 (-342 *8 *9 *10)) (-5 *1 (-340 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-342 *5 *6 *7)) (-4 *10 (-1233 (-407 *9))))))
+(-10 -7 (-15 -2238 (|#8| (-1 |#5| |#1|) |#4|)))
+((-2535 (((-2 (|:| |num| (-1257 |#3|)) (|:| |den| |#3|)) $) 37)) (-3458 (($ (-1257 (-407 |#3|)) (-1257 $)) NIL) (($ (-1257 (-407 |#3|))) NIL) (($ (-1257 |#3|) |#3|) 160)) (-1339 (((-1257 $) (-1257 $)) 144)) (-2443 (((-640 (-640 |#2|))) 117)) (-1465 (((-112) |#2| |#2|) 72)) (-4151 (($ $) 137)) (-1419 (((-767)) 31)) (-1349 (((-1257 $) (-1257 $)) 197)) (-2454 (((-640 (-948 |#2|)) (-1169)) 109)) (-1377 (((-112) $) 157)) (-1368 (((-112) $) 25) (((-112) $ |#2|) 29) (((-112) $ |#3|) 201)) (-2477 (((-3 |#3| "failed")) 49)) (-1486 (((-767)) 169)) (-2308 ((|#2| $ |#2| |#2|) 130)) (-2489 (((-3 |#3| "failed")) 67)) (-4203 (($ $ (-1 (-407 |#3|) (-407 |#3|)) (-767)) NIL) (($ $ (-1 (-407 |#3|) (-407 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 205) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL) (($ $ (-767)) NIL) (($ $) NIL)) (-1359 (((-1257 $) (-1257 $)) 150)) (-2465 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 65)) (-1475 (((-112)) 32)))
+(((-341 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -2443 ((-640 (-640 |#2|)))) (-15 -2454 ((-640 (-948 |#2|)) (-1169))) (-15 -2465 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -2477 ((-3 |#3| "failed"))) (-15 -2489 ((-3 |#3| "failed"))) (-15 -2308 (|#2| |#1| |#2| |#2|)) (-15 -4151 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1368 ((-112) |#1| |#3|)) (-15 -1368 ((-112) |#1| |#2|)) (-15 -3458 (|#1| (-1257 |#3|) |#3|)) (-15 -2535 ((-2 (|:| |num| (-1257 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -1339 ((-1257 |#1|) (-1257 |#1|))) (-15 -1349 ((-1257 |#1|) (-1257 |#1|))) (-15 -1359 ((-1257 |#1|) (-1257 |#1|))) (-15 -1368 ((-112) |#1|)) (-15 -1377 ((-112) |#1|)) (-15 -1465 ((-112) |#2| |#2|)) (-15 -1475 ((-112))) (-15 -1486 ((-767))) (-15 -1419 ((-767))) (-15 -4203 (|#1| |#1| (-1 (-407 |#3|) (-407 |#3|)))) (-15 -4203 (|#1| |#1| (-1 (-407 |#3|) (-407 |#3|)) (-767))) (-15 -3458 (|#1| (-1257 (-407 |#3|)))) (-15 -3458 (|#1| (-1257 (-407 |#3|)) (-1257 |#1|)))) (-342 |#2| |#3| |#4|) (-1212) (-1233 |#2|) (-1233 (-407 |#3|))) (T -341))
+((-1419 (*1 *2) (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-5 *2 (-767)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *3 (-342 *4 *5 *6)))) (-1486 (*1 *2) (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-5 *2 (-767)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *3 (-342 *4 *5 *6)))) (-1475 (*1 *2) (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-5 *2 (-112)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *3 (-342 *4 *5 *6)))) (-1465 (*1 *2 *3 *3) (-12 (-4 *3 (-1212)) (-4 *5 (-1233 *3)) (-4 *6 (-1233 (-407 *5))) (-5 *2 (-112)) (-5 *1 (-341 *4 *3 *5 *6)) (-4 *4 (-342 *3 *5 *6)))) (-2489 (*1 *2) (|partial| -12 (-4 *4 (-1212)) (-4 *5 (-1233 (-407 *2))) (-4 *2 (-1233 *4)) (-5 *1 (-341 *3 *4 *2 *5)) (-4 *3 (-342 *4 *2 *5)))) (-2477 (*1 *2) (|partial| -12 (-4 *4 (-1212)) (-4 *5 (-1233 (-407 *2))) (-4 *2 (-1233 *4)) (-5 *1 (-341 *3 *4 *2 *5)) (-4 *3 (-342 *4 *2 *5)))) (-2454 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-4 *5 (-1212)) (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6))) (-5 *2 (-640 (-948 *5))) (-5 *1 (-341 *4 *5 *6 *7)) (-4 *4 (-342 *5 *6 *7)))) (-2443 (*1 *2) (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-5 *2 (-640 (-640 *4))) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *3 (-342 *4 *5 *6)))))
+(-10 -8 (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -2443 ((-640 (-640 |#2|)))) (-15 -2454 ((-640 (-948 |#2|)) (-1169))) (-15 -2465 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -2477 ((-3 |#3| "failed"))) (-15 -2489 ((-3 |#3| "failed"))) (-15 -2308 (|#2| |#1| |#2| |#2|)) (-15 -4151 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1368 ((-112) |#1| |#3|)) (-15 -1368 ((-112) |#1| |#2|)) (-15 -3458 (|#1| (-1257 |#3|) |#3|)) (-15 -2535 ((-2 (|:| |num| (-1257 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -1339 ((-1257 |#1|) (-1257 |#1|))) (-15 -1349 ((-1257 |#1|) (-1257 |#1|))) (-15 -1359 ((-1257 |#1|) (-1257 |#1|))) (-15 -1368 ((-112) |#1|)) (-15 -1377 ((-112) |#1|)) (-15 -1465 ((-112) |#2| |#2|)) (-15 -1475 ((-112))) (-15 -1486 ((-767))) (-15 -1419 ((-767))) (-15 -4203 (|#1| |#1| (-1 (-407 |#3|) (-407 |#3|)))) (-15 -4203 (|#1| |#1| (-1 (-407 |#3|) (-407 |#3|)) (-767))) (-15 -3458 (|#1| (-1257 (-407 |#3|)))) (-15 -3458 (|#1| (-1257 (-407 |#3|)) (-1257 |#1|))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-2535 (((-2 (|:| |num| (-1257 |#2|)) (|:| |den| |#2|)) $) 195)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 93 (|has| (-407 |#2|) (-363)))) (-3231 (($ $) 94 (|has| (-407 |#2|) (-363)))) (-3211 (((-112) $) 96 (|has| (-407 |#2|) (-363)))) (-3340 (((-684 (-407 |#2|)) (-1257 $)) 47) (((-684 (-407 |#2|))) 62)) (-1731 (((-407 |#2|) $) 53)) (-1597 (((-1181 (-917) (-767)) (-563)) 146 (|has| (-407 |#2|) (-349)))) (-3905 (((-3 $ "failed") $ $) 19)) (-1798 (($ $) 113 (|has| (-407 |#2|) (-363)))) (-2802 (((-418 $) $) 114 (|has| (-407 |#2|) (-363)))) (-2003 (((-112) $ $) 104 (|has| (-407 |#2|) (-363)))) (-3750 (((-767)) 87 (|has| (-407 |#2|) (-368)))) (-1432 (((-112)) 212)) (-1421 (((-112) |#1|) 211) (((-112) |#2|) 210)) (-2569 (($) 17 T CONST)) (-2130 (((-3 (-563) "failed") $) 169 (|has| (-407 |#2|) (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 167 (|has| (-407 |#2|) (-1034 (-407 (-563))))) (((-3 (-407 |#2|) "failed") $) 164)) (-2057 (((-563) $) 168 (|has| (-407 |#2|) (-1034 (-563)))) (((-407 (-563)) $) 166 (|has| (-407 |#2|) (-1034 (-407 (-563))))) (((-407 |#2|) $) 165)) (-3458 (($ (-1257 (-407 |#2|)) (-1257 $)) 49) (($ (-1257 (-407 |#2|))) 65) (($ (-1257 |#2|) |#2|) 194)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) 152 (|has| (-407 |#2|) (-349)))) (-3094 (($ $ $) 108 (|has| (-407 |#2|) (-363)))) (-3330 (((-684 (-407 |#2|)) $ (-1257 $)) 54) (((-684 (-407 |#2|)) $) 60)) (-1476 (((-684 (-563)) (-684 $)) 163 (|has| (-407 |#2|) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 162 (|has| (-407 |#2|) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-407 |#2|))) (|:| |vec| (-1257 (-407 |#2|)))) (-684 $) (-1257 $)) 161) (((-684 (-407 |#2|)) (-684 $)) 160)) (-1339 (((-1257 $) (-1257 $)) 200)) (-2444 (($ |#3|) 157) (((-3 $ "failed") (-407 |#3|)) 154 (|has| (-407 |#2|) (-363)))) (-3951 (((-3 $ "failed") $) 33)) (-2443 (((-640 (-640 |#1|))) 181 (|has| |#1| (-368)))) (-1465 (((-112) |#1| |#1|) 216)) (-2521 (((-917)) 55)) (-1690 (($) 90 (|has| (-407 |#2|) (-368)))) (-1409 (((-112)) 209)) (-1398 (((-112) |#1|) 208) (((-112) |#2|) 207)) (-3054 (($ $ $) 107 (|has| (-407 |#2|) (-363)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 102 (|has| (-407 |#2|) (-363)))) (-4151 (($ $) 187)) (-4036 (($) 148 (|has| (-407 |#2|) (-349)))) (-1656 (((-112) $) 149 (|has| (-407 |#2|) (-349)))) (-3188 (($ $ (-767)) 140 (|has| (-407 |#2|) (-349))) (($ $) 139 (|has| (-407 |#2|) (-349)))) (-2560 (((-112) $) 115 (|has| (-407 |#2|) (-363)))) (-1775 (((-917) $) 151 (|has| (-407 |#2|) (-349))) (((-829 (-917)) $) 137 (|has| (-407 |#2|) (-349)))) (-3401 (((-112) $) 31)) (-1419 (((-767)) 219)) (-1349 (((-1257 $) (-1257 $)) 201)) (-3975 (((-407 |#2|) $) 52)) (-2454 (((-640 (-948 |#1|)) (-1169)) 182 (|has| |#1| (-363)))) (-1983 (((-3 $ "failed") $) 141 (|has| (-407 |#2|) (-349)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 111 (|has| (-407 |#2|) (-363)))) (-4035 ((|#3| $) 45 (|has| (-407 |#2|) (-363)))) (-3990 (((-917) $) 89 (|has| (-407 |#2|) (-368)))) (-2433 ((|#3| $) 155)) (-3517 (($ (-640 $)) 100 (|has| (-407 |#2|) (-363))) (($ $ $) 99 (|has| (-407 |#2|) (-363)))) (-3854 (((-1151) $) 9)) (-2546 (((-684 (-407 |#2|))) 196)) (-1319 (((-684 (-407 |#2|))) 198)) (-2687 (($ $) 116 (|has| (-407 |#2|) (-363)))) (-2510 (($ (-1257 |#2|) |#2|) 192)) (-1308 (((-684 (-407 |#2|))) 197)) (-1330 (((-684 (-407 |#2|))) 199)) (-2499 (((-2 (|:| |num| (-684 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 191)) (-2524 (((-2 (|:| |num| (-1257 |#2|)) (|:| |den| |#2|)) $) 193)) (-1387 (((-1257 $)) 205)) (-3608 (((-1257 $)) 206)) (-1377 (((-112) $) 204)) (-1368 (((-112) $) 203) (((-112) $ |#1|) 190) (((-112) $ |#2|) 189)) (-2522 (($) 142 (|has| (-407 |#2|) (-349)) CONST)) (-2552 (($ (-917)) 88 (|has| (-407 |#2|) (-368)))) (-2477 (((-3 |#2| "failed")) 184)) (-1693 (((-1113) $) 10)) (-1486 (((-767)) 218)) (-4334 (($) 159)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 101 (|has| (-407 |#2|) (-363)))) (-3551 (($ (-640 $)) 98 (|has| (-407 |#2|) (-363))) (($ $ $) 97 (|has| (-407 |#2|) (-363)))) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) 145 (|has| (-407 |#2|) (-349)))) (-2173 (((-418 $) $) 112 (|has| (-407 |#2|) (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| (-407 |#2|) (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 109 (|has| (-407 |#2|) (-363)))) (-3012 (((-3 $ "failed") $ $) 92 (|has| (-407 |#2|) (-363)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 103 (|has| (-407 |#2|) (-363)))) (-1993 (((-767) $) 105 (|has| (-407 |#2|) (-363)))) (-2308 ((|#1| $ |#1| |#1|) 186)) (-2489 (((-3 |#2| "failed")) 185)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 106 (|has| (-407 |#2|) (-363)))) (-1623 (((-407 |#2|) (-1257 $)) 48) (((-407 |#2|)) 61)) (-3196 (((-767) $) 150 (|has| (-407 |#2|) (-349))) (((-3 (-767) "failed") $ $) 138 (|has| (-407 |#2|) (-349)))) (-4203 (($ $ (-1 (-407 |#2|) (-407 |#2|)) (-767)) 122 (|has| (-407 |#2|) (-363))) (($ $ (-1 (-407 |#2|) (-407 |#2|))) 121 (|has| (-407 |#2|) (-363))) (($ $ (-1 |#2| |#2|)) 188) (($ $ (-640 (-1169)) (-640 (-767))) 129 (-4034 (-2188 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2188 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-1169) (-767)) 130 (-4034 (-2188 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2188 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-640 (-1169))) 131 (-4034 (-2188 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2188 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-1169)) 132 (-4034 (-2188 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2188 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-767)) 134 (-4034 (-2188 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-233))) (-2188 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349)))) (($ $) 136 (-4034 (-2188 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-233))) (-2188 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349))))) (-3388 (((-684 (-407 |#2|)) (-1257 $) (-1 (-407 |#2|) (-407 |#2|))) 153 (|has| (-407 |#2|) (-363)))) (-3402 ((|#3|) 158)) (-1586 (($) 147 (|has| (-407 |#2|) (-349)))) (-3759 (((-1257 (-407 |#2|)) $ (-1257 $)) 51) (((-684 (-407 |#2|)) (-1257 $) (-1257 $)) 50) (((-1257 (-407 |#2|)) $) 67) (((-684 (-407 |#2|)) (-1257 $)) 66)) (-2219 (((-1257 (-407 |#2|)) $) 64) (($ (-1257 (-407 |#2|))) 63) ((|#3| $) 170) (($ |#3|) 156)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) 144 (|has| (-407 |#2|) (-349)))) (-1359 (((-1257 $) (-1257 $)) 202)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ (-407 |#2|)) 38) (($ (-407 (-563))) 86 (-4034 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-1034 (-407 (-563)))))) (($ $) 91 (|has| (-407 |#2|) (-363)))) (-2047 (($ $) 143 (|has| (-407 |#2|) (-349))) (((-3 $ "failed") $) 44 (|has| (-407 |#2|) (-145)))) (-1892 ((|#3| $) 46)) (-3914 (((-767)) 28)) (-1452 (((-112)) 215)) (-1443 (((-112) |#1|) 214) (((-112) |#2|) 213)) (-4013 (((-1257 $)) 68)) (-3223 (((-112) $ $) 95 (|has| (-407 |#2|) (-363)))) (-2465 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 183)) (-1475 (((-112)) 217)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ (-1 (-407 |#2|) (-407 |#2|)) (-767)) 124 (|has| (-407 |#2|) (-363))) (($ $ (-1 (-407 |#2|) (-407 |#2|))) 123 (|has| (-407 |#2|) (-363))) (($ $ (-640 (-1169)) (-640 (-767))) 125 (-4034 (-2188 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2188 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-1169) (-767)) 126 (-4034 (-2188 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2188 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-640 (-1169))) 127 (-4034 (-2188 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2188 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-1169)) 128 (-4034 (-2188 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) (-2188 (|has| (-407 |#2|) (-896 (-1169))) (|has| (-407 |#2|) (-363))))) (($ $ (-767)) 133 (-4034 (-2188 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-233))) (-2188 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349)))) (($ $) 135 (-4034 (-2188 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-233))) (-2188 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349))))) (-1718 (((-112) $ $) 6)) (-1836 (($ $ $) 120 (|has| (-407 |#2|) (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 117 (|has| (-407 |#2|) (-363)))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 |#2|)) 40) (($ (-407 |#2|) $) 39) (($ (-407 (-563)) $) 119 (|has| (-407 |#2|) (-363))) (($ $ (-407 (-563))) 118 (|has| (-407 |#2|) (-363)))))
(((-342 |#1| |#2| |#3|) (-140) (-1212) (-1233 |t#1|) (-1233 (-407 |t#2|))) (T -342))
-((-3273 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-767)))) (-2327 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-767)))) (-1581 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-3632 (*1 *2 *3 *3) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-4042 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1528 (*1 *2 *3) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1528 (*1 *2 *3) (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112)))) (-1504 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-2456 (*1 *2 *3) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-2456 (*1 *2 *3) (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112)))) (-4077 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1852 (*1 *2 *3) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1852 (*1 *2 *3) (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112)))) (-3815 (*1 *2) (-12 (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)))) (-2993 (*1 *2) (-12 (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)))) (-2532 (*1 *2 *1) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1294 (*1 *2 *1) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1962 (*1 *2 *2) (-12 (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))))) (-3132 (*1 *2 *2) (-12 (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))))) (-4364 (*1 *2 *2) (-12 (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))))) (-3500 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))) (-3295 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))) (-4218 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))) (-2095 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))) (-4067 (*1 *2 *1) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-2 (|:| |num| (-1257 *4)) (|:| |den| *4))))) (-3937 (*1 *1 *2 *3) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1233 *4)) (-4 *4 (-1212)) (-4 *1 (-342 *4 *3 *5)) (-4 *5 (-1233 (-407 *3))))) (-3447 (*1 *2 *1) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-2 (|:| |num| (-1257 *4)) (|:| |den| *4))))) (-2145 (*1 *1 *2 *3) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1233 *4)) (-4 *4 (-1212)) (-4 *1 (-342 *4 *3 *5)) (-4 *5 (-1233 (-407 *3))))) (-2914 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-342 *4 *5 *6)) (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-5 *2 (-2 (|:| |num| (-684 *5)) (|:| |den| *5))))) (-1294 (*1 *2 *1 *3) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1294 (*1 *2 *1 *3) (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112)))) (-4202 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))))) (-1300 (*1 *1 *1) (-12 (-4 *1 (-342 *2 *3 *4)) (-4 *2 (-1212)) (-4 *3 (-1233 *2)) (-4 *4 (-1233 (-407 *3))))) (-2309 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-342 *2 *3 *4)) (-4 *2 (-1212)) (-4 *3 (-1233 *2)) (-4 *4 (-1233 (-407 *3))))) (-2621 (*1 *2) (|partial| -12 (-4 *1 (-342 *3 *2 *4)) (-4 *3 (-1212)) (-4 *4 (-1233 (-407 *2))) (-4 *2 (-1233 *3)))) (-3140 (*1 *2) (|partial| -12 (-4 *1 (-342 *3 *2 *4)) (-4 *3 (-1212)) (-4 *4 (-1233 (-407 *2))) (-4 *2 (-1233 *3)))) (-2732 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-1212)) (-4 *6 (-1233 (-407 *5))) (-5 *2 (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5) (|:| |gd| *5))) (-4 *1 (-342 *4 *5 *6)))) (-3370 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-4 *1 (-342 *4 *5 *6)) (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-4 *4 (-363)) (-5 *2 (-640 (-948 *4))))) (-2077 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-4 *3 (-368)) (-5 *2 (-640 (-640 *3))))))
-(-13 (-720 (-407 |t#2|) |t#3|) (-10 -8 (-15 -3273 ((-767))) (-15 -2327 ((-767))) (-15 -1581 ((-112))) (-15 -3632 ((-112) |t#1| |t#1|)) (-15 -4042 ((-112))) (-15 -1528 ((-112) |t#1|)) (-15 -1528 ((-112) |t#2|)) (-15 -1504 ((-112))) (-15 -2456 ((-112) |t#1|)) (-15 -2456 ((-112) |t#2|)) (-15 -4077 ((-112))) (-15 -1852 ((-112) |t#1|)) (-15 -1852 ((-112) |t#2|)) (-15 -3815 ((-1257 $))) (-15 -2993 ((-1257 $))) (-15 -2532 ((-112) $)) (-15 -1294 ((-112) $)) (-15 -1962 ((-1257 $) (-1257 $))) (-15 -3132 ((-1257 $) (-1257 $))) (-15 -4364 ((-1257 $) (-1257 $))) (-15 -3500 ((-684 (-407 |t#2|)))) (-15 -3295 ((-684 (-407 |t#2|)))) (-15 -4218 ((-684 (-407 |t#2|)))) (-15 -2095 ((-684 (-407 |t#2|)))) (-15 -4067 ((-2 (|:| |num| (-1257 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -3937 ($ (-1257 |t#2|) |t#2|)) (-15 -3447 ((-2 (|:| |num| (-1257 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -2145 ($ (-1257 |t#2|) |t#2|)) (-15 -2914 ((-2 (|:| |num| (-684 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -1294 ((-112) $ |t#1|)) (-15 -1294 ((-112) $ |t#2|)) (-15 -4202 ($ $ (-1 |t#2| |t#2|))) (-15 -1300 ($ $)) (-15 -2309 (|t#1| $ |t#1| |t#1|)) (-15 -2621 ((-3 |t#2| "failed"))) (-15 -3140 ((-3 |t#2| "failed"))) (-15 -2732 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-363)) (-15 -3370 ((-640 (-948 |t#1|)) (-1169))) |%noBranch|) (IF (|has| |t#1| (-368)) (-15 -2077 ((-640 (-640 |t#1|)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-38 #1=(-407 |#2|)) . T) ((-38 $) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-102) . T) ((-111 #0# #0#) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-131) . T) ((-145) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-145))) ((-147) |has| (-407 |#2|) (-147)) ((-613 #0#) -4032 (|has| (-407 |#2|) (-1034 (-407 (-563)))) (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-613 #1#) . T) ((-613 (-563)) . T) ((-613 $) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-610 (-858)) . T) ((-172) . T) ((-611 |#3|) . T) ((-231 #1#) |has| (-407 |#2|) (-363)) ((-233) -4032 (|has| (-407 |#2|) (-349)) (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363)))) ((-243) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-290) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-307) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-363) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-402) |has| (-407 |#2|) (-349)) ((-368) -4032 (|has| (-407 |#2|) (-368)) (|has| (-407 |#2|) (-349))) ((-349) |has| (-407 |#2|) (-349)) ((-370 #1# |#3|) . T) ((-409 #1# |#3|) . T) ((-377 #1#) . T) ((-411 #1#) . T) ((-452) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-555) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-643 #0#) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-643 #1#) . T) ((-643 $) . T) ((-636 #1#) . T) ((-636 (-563)) |has| (-407 |#2|) (-636 (-563))) ((-713 #0#) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-713 #1#) . T) ((-713 $) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-720 #1# |#3|) . T) ((-722) . T) ((-896 (-1169)) -12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) ((-916) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-1034 (-407 (-563))) |has| (-407 |#2|) (-1034 (-407 (-563)))) ((-1034 #1#) . T) ((-1034 (-563)) |has| (-407 |#2|) (-1034 (-563))) ((-1051 #0#) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-1051 #1#) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) |has| (-407 |#2|) (-349)) ((-1212) -4032 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2388 (((-112) $) NIL)) (-3259 (((-767)) NIL)) (-1733 (((-906 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-2752 (((-1181 (-917) (-767)) (-563)) NIL (|has| (-906 |#1|) (-368)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-3749 (((-767)) NIL (|has| (-906 |#1|) (-368)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-906 |#1|) "failed") $) NIL)) (-2058 (((-906 |#1|) $) NIL)) (-3937 (($ (-1257 (-906 |#1|))) NIL)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-906 |#1|) (-368)))) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) NIL (|has| (-906 |#1|) (-368)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-1571 (($) NIL (|has| (-906 |#1|) (-368)))) (-2366 (((-112) $) NIL (|has| (-906 |#1|) (-368)))) (-1637 (($ $ (-767)) NIL (-4032 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368)))) (($ $) NIL (-4032 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-2468 (((-112) $) NIL)) (-3254 (((-917) $) NIL (|has| (-906 |#1|) (-368))) (((-829 (-917)) $) NIL (-4032 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-3827 (((-112) $) NIL)) (-3723 (($) NIL (|has| (-906 |#1|) (-368)))) (-2890 (((-112) $) NIL (|has| (-906 |#1|) (-368)))) (-3793 (((-906 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-2408 (((-3 $ "failed") $) NIL (|has| (-906 |#1|) (-368)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3941 (((-1165 (-906 |#1|)) $) NIL) (((-1165 $) $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-1476 (((-917) $) NIL (|has| (-906 |#1|) (-368)))) (-2229 (((-1165 (-906 |#1|)) $) NIL (|has| (-906 |#1|) (-368)))) (-1631 (((-1165 (-906 |#1|)) $) NIL (|has| (-906 |#1|) (-368))) (((-3 (-1165 (-906 |#1|)) "failed") $ $) NIL (|has| (-906 |#1|) (-368)))) (-4166 (($ $ (-1165 (-906 |#1|))) NIL (|has| (-906 |#1|) (-368)))) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| (-906 |#1|) (-368)) CONST)) (-2555 (($ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-3013 (((-112) $) NIL)) (-1694 (((-1113) $) NIL)) (-1863 (((-954 (-1113))) NIL)) (-4333 (($) NIL (|has| (-906 |#1|) (-368)))) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) NIL (|has| (-906 |#1|) (-368)))) (-2174 (((-418 $) $) NIL)) (-1467 (((-829 (-917))) NIL) (((-917)) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-1423 (((-767) $) NIL (|has| (-906 |#1|) (-368))) (((-3 (-767) "failed") $ $) NIL (-4032 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-3533 (((-134)) NIL)) (-4202 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-4167 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3390 (((-1165 (-906 |#1|))) NIL)) (-4284 (($) NIL (|has| (-906 |#1|) (-368)))) (-1484 (($) NIL (|has| (-906 |#1|) (-368)))) (-1880 (((-1257 (-906 |#1|)) $) NIL) (((-684 (-906 |#1|)) (-1257 $)) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| (-906 |#1|) (-368)))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-906 |#1|)) NIL)) (-2779 (($ $) NIL (|has| (-906 |#1|) (-368))) (((-3 $ "failed") $) NIL (-4032 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-1675 (((-767)) NIL)) (-4315 (((-1257 $)) NIL) (((-1257 $) (-917)) NIL)) (-2126 (((-112) $ $) NIL)) (-3152 (((-112) $) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-2350 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-3209 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL) (($ $ (-906 |#1|)) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ (-906 |#1|)) NIL) (($ (-906 |#1|) $) NIL)))
-(((-343 |#1| |#2|) (-13 (-329 (-906 |#1|)) (-10 -7 (-15 -1863 ((-954 (-1113)))))) (-917) (-917)) (T -343))
-((-1863 (*1 *2) (-12 (-5 *2 (-954 (-1113))) (-5 *1 (-343 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917)))))
-(-13 (-329 (-906 |#1|)) (-10 -7 (-15 -1863 ((-954 (-1113))))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 43)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2388 (((-112) $) NIL)) (-3259 (((-767)) NIL)) (-1733 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-2752 (((-1181 (-917) (-767)) (-563)) 40 (|has| |#1| (-368)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-3749 (((-767)) NIL (|has| |#1| (-368)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) 114)) (-2058 ((|#1| $) 85)) (-3937 (($ (-1257 |#1|)) 103)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) 94 (|has| |#1| (-368)))) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) 97 (|has| |#1| (-368)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-1571 (($) 128 (|has| |#1| (-368)))) (-2366 (((-112) $) 47 (|has| |#1| (-368)))) (-1637 (($ $ (-767)) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2468 (((-112) $) NIL)) (-3254 (((-917) $) 44 (|has| |#1| (-368))) (((-829 (-917)) $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3827 (((-112) $) NIL)) (-3723 (($) 130 (|has| |#1| (-368)))) (-2890 (((-112) $) NIL (|has| |#1| (-368)))) (-3793 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-2408 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3941 (((-1165 |#1|) $) 89) (((-1165 $) $ (-917)) NIL (|has| |#1| (-368)))) (-1476 (((-917) $) 138 (|has| |#1| (-368)))) (-2229 (((-1165 |#1|) $) NIL (|has| |#1| (-368)))) (-1631 (((-1165 |#1|) $) NIL (|has| |#1| (-368))) (((-3 (-1165 |#1|) "failed") $ $) NIL (|has| |#1| (-368)))) (-4166 (($ $ (-1165 |#1|)) NIL (|has| |#1| (-368)))) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 145)) (-2523 (($) NIL (|has| |#1| (-368)) CONST)) (-2555 (($ (-917)) 70 (|has| |#1| (-368)))) (-3013 (((-112) $) 117)) (-1694 (((-1113) $) NIL)) (-1863 (((-954 (-1113))) 41)) (-4333 (($) 126 (|has| |#1| (-368)))) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) 92 (|has| |#1| (-368)))) (-2174 (((-418 $) $) NIL)) (-1467 (((-829 (-917))) 66) (((-917)) 67)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-1423 (((-767) $) 129 (|has| |#1| (-368))) (((-3 (-767) "failed") $ $) 124 (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3533 (((-134)) NIL)) (-4202 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-4167 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3390 (((-1165 |#1|)) 95)) (-4284 (($) 127 (|has| |#1| (-368)))) (-1484 (($) 135 (|has| |#1| (-368)))) (-1880 (((-1257 |#1|) $) 58) (((-684 |#1|) (-1257 $)) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| |#1| (-368)))) (-1693 (((-858) $) 141) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) 74)) (-2779 (($ $) NIL (|has| |#1| (-368))) (((-3 $ "failed") $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-1675 (((-767)) 137)) (-4315 (((-1257 $)) 116) (((-1257 $) (-917)) 72)) (-2126 (((-112) $ $) NIL)) (-3152 (((-112) $) NIL)) (-2241 (($) 48 T CONST)) (-2254 (($) 45 T CONST)) (-2350 (($ $) 80 (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3209 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-1718 (((-112) $ $) 46)) (-1837 (($ $ $) 143) (($ $ |#1|) 144)) (-1826 (($ $) 125) (($ $ $) NIL)) (-1814 (($ $ $) 60)) (** (($ $ (-917)) 147) (($ $ (-767)) 148) (($ $ (-563)) 146)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 76) (($ $ $) 75) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 142)))
-(((-344 |#1| |#2|) (-13 (-329 |#1|) (-10 -7 (-15 -1863 ((-954 (-1113)))))) (-349) (-1165 |#1|)) (T -344))
-((-1863 (*1 *2) (-12 (-5 *2 (-954 (-1113))) (-5 *1 (-344 *3 *4)) (-4 *3 (-349)) (-14 *4 (-1165 *3)))))
-(-13 (-329 |#1|) (-10 -7 (-15 -1863 ((-954 (-1113))))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2388 (((-112) $) NIL)) (-3259 (((-767)) NIL)) (-1733 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-2752 (((-1181 (-917) (-767)) (-563)) NIL (|has| |#1| (-368)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-3749 (((-767)) NIL (|has| |#1| (-368)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL)) (-2058 ((|#1| $) NIL)) (-3937 (($ (-1257 |#1|)) NIL)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-368)))) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) NIL (|has| |#1| (-368)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-1571 (($) NIL (|has| |#1| (-368)))) (-2366 (((-112) $) NIL (|has| |#1| (-368)))) (-1637 (($ $ (-767)) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2468 (((-112) $) NIL)) (-3254 (((-917) $) NIL (|has| |#1| (-368))) (((-829 (-917)) $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3827 (((-112) $) NIL)) (-3723 (($) NIL (|has| |#1| (-368)))) (-2890 (((-112) $) NIL (|has| |#1| (-368)))) (-3793 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-2408 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3941 (((-1165 |#1|) $) NIL) (((-1165 $) $ (-917)) NIL (|has| |#1| (-368)))) (-1476 (((-917) $) NIL (|has| |#1| (-368)))) (-2229 (((-1165 |#1|) $) NIL (|has| |#1| (-368)))) (-1631 (((-1165 |#1|) $) NIL (|has| |#1| (-368))) (((-3 (-1165 |#1|) "failed") $ $) NIL (|has| |#1| (-368)))) (-4166 (($ $ (-1165 |#1|)) NIL (|has| |#1| (-368)))) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| |#1| (-368)) CONST)) (-2555 (($ (-917)) NIL (|has| |#1| (-368)))) (-3013 (((-112) $) NIL)) (-1694 (((-1113) $) NIL)) (-1863 (((-954 (-1113))) NIL)) (-4333 (($) NIL (|has| |#1| (-368)))) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) NIL (|has| |#1| (-368)))) (-2174 (((-418 $) $) NIL)) (-1467 (((-829 (-917))) NIL) (((-917)) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-1423 (((-767) $) NIL (|has| |#1| (-368))) (((-3 (-767) "failed") $ $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3533 (((-134)) NIL)) (-4202 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-4167 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3390 (((-1165 |#1|)) NIL)) (-4284 (($) NIL (|has| |#1| (-368)))) (-1484 (($) NIL (|has| |#1| (-368)))) (-1880 (((-1257 |#1|) $) NIL) (((-684 |#1|) (-1257 $)) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| |#1| (-368)))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) NIL)) (-2779 (($ $) NIL (|has| |#1| (-368))) (((-3 $ "failed") $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-1675 (((-767)) NIL)) (-4315 (((-1257 $)) NIL) (((-1257 $) (-917)) NIL)) (-2126 (((-112) $ $) NIL)) (-3152 (((-112) $) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-2350 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3209 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-345 |#1| |#2|) (-13 (-329 |#1|) (-10 -7 (-15 -1863 ((-954 (-1113)))))) (-349) (-917)) (T -345))
-((-1863 (*1 *2) (-12 (-5 *2 (-954 (-1113))) (-5 *1 (-345 *3 *4)) (-4 *3 (-349)) (-14 *4 (-917)))))
-(-13 (-329 |#1|) (-10 -7 (-15 -1863 ((-954 (-1113))))))
-((-3355 (((-767) (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113)))))) 42)) (-2353 (((-954 (-1113)) (-1165 |#1|)) 85)) (-3765 (((-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))) (-1165 |#1|)) 78)) (-3041 (((-684 |#1|) (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113)))))) 86)) (-3852 (((-3 (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))) "failed") (-917)) 13)) (-3955 (((-3 (-1165 |#1|) (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113)))))) (-917)) 18)))
-(((-346 |#1|) (-10 -7 (-15 -2353 ((-954 (-1113)) (-1165 |#1|))) (-15 -3765 ((-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))) (-1165 |#1|))) (-15 -3041 ((-684 |#1|) (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))))) (-15 -3355 ((-767) (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))))) (-15 -3852 ((-3 (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))) "failed") (-917))) (-15 -3955 ((-3 (-1165 |#1|) (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113)))))) (-917)))) (-349)) (T -346))
-((-3955 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-3 (-1165 *4) (-1257 (-640 (-2 (|:| -2619 *4) (|:| -2555 (-1113))))))) (-5 *1 (-346 *4)) (-4 *4 (-349)))) (-3852 (*1 *2 *3) (|partial| -12 (-5 *3 (-917)) (-5 *2 (-1257 (-640 (-2 (|:| -2619 *4) (|:| -2555 (-1113)))))) (-5 *1 (-346 *4)) (-4 *4 (-349)))) (-3355 (*1 *2 *3) (-12 (-5 *3 (-1257 (-640 (-2 (|:| -2619 *4) (|:| -2555 (-1113)))))) (-4 *4 (-349)) (-5 *2 (-767)) (-5 *1 (-346 *4)))) (-3041 (*1 *2 *3) (-12 (-5 *3 (-1257 (-640 (-2 (|:| -2619 *4) (|:| -2555 (-1113)))))) (-4 *4 (-349)) (-5 *2 (-684 *4)) (-5 *1 (-346 *4)))) (-3765 (*1 *2 *3) (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-5 *2 (-1257 (-640 (-2 (|:| -2619 *4) (|:| -2555 (-1113)))))) (-5 *1 (-346 *4)))) (-2353 (*1 *2 *3) (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-5 *2 (-954 (-1113))) (-5 *1 (-346 *4)))))
-(-10 -7 (-15 -2353 ((-954 (-1113)) (-1165 |#1|))) (-15 -3765 ((-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))) (-1165 |#1|))) (-15 -3041 ((-684 |#1|) (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))))) (-15 -3355 ((-767) (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))))) (-15 -3852 ((-3 (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))) "failed") (-917))) (-15 -3955 ((-3 (-1165 |#1|) (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113)))))) (-917))))
-((-1693 ((|#1| |#3|) 86) ((|#3| |#1|) 69)))
-(((-347 |#1| |#2| |#3|) (-10 -7 (-15 -1693 (|#3| |#1|)) (-15 -1693 (|#1| |#3|))) (-329 |#2|) (-349) (-329 |#2|)) (T -347))
-((-1693 (*1 *2 *3) (-12 (-4 *4 (-349)) (-4 *2 (-329 *4)) (-5 *1 (-347 *2 *4 *3)) (-4 *3 (-329 *4)))) (-1693 (*1 *2 *3) (-12 (-4 *4 (-349)) (-4 *2 (-329 *4)) (-5 *1 (-347 *3 *4 *2)) (-4 *3 (-329 *4)))))
-(-10 -7 (-15 -1693 (|#3| |#1|)) (-15 -1693 (|#1| |#3|)))
-((-2366 (((-112) $) 50)) (-3254 (((-829 (-917)) $) 21) (((-917) $) 51)) (-2408 (((-3 $ "failed") $) 16)) (-2523 (($) 9)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 92)) (-1423 (((-3 (-767) "failed") $ $) 70) (((-767) $) 59)) (-4202 (($ $ (-767)) NIL) (($ $) 8)) (-4284 (($) 43)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) 34)) (-2779 (((-3 $ "failed") $) 38) (($ $) 37)))
-(((-348 |#1|) (-10 -8 (-15 -3254 ((-917) |#1|)) (-15 -1423 ((-767) |#1|)) (-15 -2366 ((-112) |#1|)) (-15 -4284 (|#1|)) (-15 -1377 ((-3 (-1257 |#1|) "failed") (-684 |#1|))) (-15 -2779 (|#1| |#1|)) (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -2523 (|#1|)) (-15 -2408 ((-3 |#1| "failed") |#1|)) (-15 -1423 ((-3 (-767) "failed") |#1| |#1|)) (-15 -3254 ((-829 (-917)) |#1|)) (-15 -2779 ((-3 |#1| "failed") |#1|)) (-15 -3385 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|)))) (-349)) (T -348))
-NIL
-(-10 -8 (-15 -3254 ((-917) |#1|)) (-15 -1423 ((-767) |#1|)) (-15 -2366 ((-112) |#1|)) (-15 -4284 (|#1|)) (-15 -1377 ((-3 (-1257 |#1|) "failed") (-684 |#1|))) (-15 -2779 (|#1| |#1|)) (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -2523 (|#1|)) (-15 -2408 ((-3 |#1| "failed") |#1|)) (-15 -1423 ((-3 (-767) "failed") |#1| |#1|)) (-15 -3254 ((-829 (-917)) |#1|)) (-15 -2779 ((-3 |#1| "failed") |#1|)) (-15 -3385 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-2752 (((-1181 (-917) (-767)) (-563)) 94)) (-1495 (((-3 $ "failed") $ $) 19)) (-4335 (($ $) 74)) (-3205 (((-418 $) $) 73)) (-1919 (((-112) $ $) 60)) (-3749 (((-767)) 104)) (-4239 (($) 17 T CONST)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) 88)) (-3090 (($ $ $) 56)) (-3400 (((-3 $ "failed") $) 33)) (-1691 (($) 107)) (-3050 (($ $ $) 57)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 52)) (-1571 (($) 92)) (-2366 (((-112) $) 91)) (-1637 (($ $) 80) (($ $ (-767)) 79)) (-2468 (((-112) $) 72)) (-3254 (((-829 (-917)) $) 82) (((-917) $) 89)) (-3827 (((-112) $) 31)) (-2408 (((-3 $ "failed") $) 103)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-1476 (((-917) $) 106)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-2688 (($ $) 71)) (-2523 (($) 102 T CONST)) (-2555 (($ (-917)) 105)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) 95)) (-2174 (((-418 $) $) 75)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3008 (((-3 $ "failed") $ $) 43)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-2628 (((-767) $) 59)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 58)) (-1423 (((-3 (-767) "failed") $ $) 81) (((-767) $) 90)) (-4202 (($ $ (-767)) 100) (($ $) 98)) (-4284 (($) 93)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) 96)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67)) (-2779 (((-3 $ "failed") $) 83) (($ $) 97)) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 40)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ (-767)) 101) (($ $) 99)) (-1718 (((-112) $ $) 6)) (-1837 (($ $ $) 66)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68)))
+((-1419 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-767)))) (-1486 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-767)))) (-1475 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1465 (*1 *2 *3 *3) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1452 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1443 (*1 *2 *3) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1443 (*1 *2 *3) (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112)))) (-1432 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1421 (*1 *2 *3) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1421 (*1 *2 *3) (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112)))) (-1409 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1398 (*1 *2 *3) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1398 (*1 *2 *3) (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112)))) (-3608 (*1 *2) (-12 (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)))) (-1387 (*1 *2) (-12 (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)))) (-1377 (*1 *2 *1) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1368 (*1 *2 *1) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1359 (*1 *2 *2) (-12 (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))))) (-1349 (*1 *2 *2) (-12 (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))))) (-1339 (*1 *2 *2) (-12 (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))))) (-1330 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))) (-1319 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))) (-1308 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))) (-2546 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))) (-2535 (*1 *2 *1) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-2 (|:| |num| (-1257 *4)) (|:| |den| *4))))) (-3458 (*1 *1 *2 *3) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1233 *4)) (-4 *4 (-1212)) (-4 *1 (-342 *4 *3 *5)) (-4 *5 (-1233 (-407 *3))))) (-2524 (*1 *2 *1) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-2 (|:| |num| (-1257 *4)) (|:| |den| *4))))) (-2510 (*1 *1 *2 *3) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1233 *4)) (-4 *4 (-1212)) (-4 *1 (-342 *4 *3 *5)) (-4 *5 (-1233 (-407 *3))))) (-2499 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-342 *4 *5 *6)) (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-5 *2 (-2 (|:| |num| (-684 *5)) (|:| |den| *5))))) (-1368 (*1 *2 *1 *3) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))) (-1368 (*1 *2 *1 *3) (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112)))) (-4203 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))))) (-4151 (*1 *1 *1) (-12 (-4 *1 (-342 *2 *3 *4)) (-4 *2 (-1212)) (-4 *3 (-1233 *2)) (-4 *4 (-1233 (-407 *3))))) (-2308 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-342 *2 *3 *4)) (-4 *2 (-1212)) (-4 *3 (-1233 *2)) (-4 *4 (-1233 (-407 *3))))) (-2489 (*1 *2) (|partial| -12 (-4 *1 (-342 *3 *2 *4)) (-4 *3 (-1212)) (-4 *4 (-1233 (-407 *2))) (-4 *2 (-1233 *3)))) (-2477 (*1 *2) (|partial| -12 (-4 *1 (-342 *3 *2 *4)) (-4 *3 (-1212)) (-4 *4 (-1233 (-407 *2))) (-4 *2 (-1233 *3)))) (-2465 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-1212)) (-4 *6 (-1233 (-407 *5))) (-5 *2 (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5) (|:| |gd| *5))) (-4 *1 (-342 *4 *5 *6)))) (-2454 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-4 *1 (-342 *4 *5 *6)) (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-4 *4 (-363)) (-5 *2 (-640 (-948 *4))))) (-2443 (*1 *2) (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))) (-4 *3 (-368)) (-5 *2 (-640 (-640 *3))))))
+(-13 (-720 (-407 |t#2|) |t#3|) (-10 -8 (-15 -1419 ((-767))) (-15 -1486 ((-767))) (-15 -1475 ((-112))) (-15 -1465 ((-112) |t#1| |t#1|)) (-15 -1452 ((-112))) (-15 -1443 ((-112) |t#1|)) (-15 -1443 ((-112) |t#2|)) (-15 -1432 ((-112))) (-15 -1421 ((-112) |t#1|)) (-15 -1421 ((-112) |t#2|)) (-15 -1409 ((-112))) (-15 -1398 ((-112) |t#1|)) (-15 -1398 ((-112) |t#2|)) (-15 -3608 ((-1257 $))) (-15 -1387 ((-1257 $))) (-15 -1377 ((-112) $)) (-15 -1368 ((-112) $)) (-15 -1359 ((-1257 $) (-1257 $))) (-15 -1349 ((-1257 $) (-1257 $))) (-15 -1339 ((-1257 $) (-1257 $))) (-15 -1330 ((-684 (-407 |t#2|)))) (-15 -1319 ((-684 (-407 |t#2|)))) (-15 -1308 ((-684 (-407 |t#2|)))) (-15 -2546 ((-684 (-407 |t#2|)))) (-15 -2535 ((-2 (|:| |num| (-1257 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -3458 ($ (-1257 |t#2|) |t#2|)) (-15 -2524 ((-2 (|:| |num| (-1257 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -2510 ($ (-1257 |t#2|) |t#2|)) (-15 -2499 ((-2 (|:| |num| (-684 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -1368 ((-112) $ |t#1|)) (-15 -1368 ((-112) $ |t#2|)) (-15 -4203 ($ $ (-1 |t#2| |t#2|))) (-15 -4151 ($ $)) (-15 -2308 (|t#1| $ |t#1| |t#1|)) (-15 -2489 ((-3 |t#2| "failed"))) (-15 -2477 ((-3 |t#2| "failed"))) (-15 -2465 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-363)) (-15 -2454 ((-640 (-948 |t#1|)) (-1169))) |%noBranch|) (IF (|has| |t#1| (-368)) (-15 -2443 ((-640 (-640 |t#1|)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-38 #1=(-407 |#2|)) . T) ((-38 $) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-102) . T) ((-111 #0# #0#) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-131) . T) ((-145) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-145))) ((-147) |has| (-407 |#2|) (-147)) ((-613 #0#) -4034 (|has| (-407 |#2|) (-1034 (-407 (-563)))) (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-613 #1#) . T) ((-613 (-563)) . T) ((-613 $) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-610 (-858)) . T) ((-172) . T) ((-611 |#3|) . T) ((-231 #1#) |has| (-407 |#2|) (-363)) ((-233) -4034 (|has| (-407 |#2|) (-349)) (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363)))) ((-243) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-290) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-307) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-363) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-402) |has| (-407 |#2|) (-349)) ((-368) -4034 (|has| (-407 |#2|) (-368)) (|has| (-407 |#2|) (-349))) ((-349) |has| (-407 |#2|) (-349)) ((-370 #1# |#3|) . T) ((-409 #1# |#3|) . T) ((-377 #1#) . T) ((-411 #1#) . T) ((-452) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-555) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-643 #0#) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-643 #1#) . T) ((-643 $) . T) ((-636 #1#) . T) ((-636 (-563)) |has| (-407 |#2|) (-636 (-563))) ((-713 #0#) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-713 #1#) . T) ((-713 $) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-720 #1# |#3|) . T) ((-722) . T) ((-896 (-1169)) -12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169)))) ((-916) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-1034 (-407 (-563))) |has| (-407 |#2|) (-1034 (-407 (-563)))) ((-1034 #1#) . T) ((-1034 (-563)) |has| (-407 |#2|) (-1034 (-563))) ((-1051 #0#) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))) ((-1051 #1#) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) |has| (-407 |#2|) (-349)) ((-1212) -4034 (|has| (-407 |#2|) (-349)) (|has| (-407 |#2|) (-363))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3761 (((-112) $) NIL)) (-3728 (((-767)) NIL)) (-1731 (((-906 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-1597 (((-1181 (-917) (-767)) (-563)) NIL (|has| (-906 |#1|) (-368)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-3750 (((-767)) NIL (|has| (-906 |#1|) (-368)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-906 |#1|) "failed") $) NIL)) (-2057 (((-906 |#1|) $) NIL)) (-3458 (($ (-1257 (-906 |#1|))) NIL)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-906 |#1|) (-368)))) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) NIL (|has| (-906 |#1|) (-368)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-4036 (($) NIL (|has| (-906 |#1|) (-368)))) (-1656 (((-112) $) NIL (|has| (-906 |#1|) (-368)))) (-3188 (($ $ (-767)) NIL (-4034 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368)))) (($ $) NIL (-4034 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-2560 (((-112) $) NIL)) (-1775 (((-917) $) NIL (|has| (-906 |#1|) (-368))) (((-829 (-917)) $) NIL (-4034 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-3401 (((-112) $) NIL)) (-4024 (($) NIL (|has| (-906 |#1|) (-368)))) (-4002 (((-112) $) NIL (|has| (-906 |#1|) (-368)))) (-3975 (((-906 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-1983 (((-3 $ "failed") $) NIL (|has| (-906 |#1|) (-368)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4035 (((-1165 (-906 |#1|)) $) NIL) (((-1165 $) $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-3990 (((-917) $) NIL (|has| (-906 |#1|) (-368)))) (-2196 (((-1165 (-906 |#1|)) $) NIL (|has| (-906 |#1|) (-368)))) (-2184 (((-1165 (-906 |#1|)) $) NIL (|has| (-906 |#1|) (-368))) (((-3 (-1165 (-906 |#1|)) "failed") $ $) NIL (|has| (-906 |#1|) (-368)))) (-2207 (($ $ (-1165 (-906 |#1|))) NIL (|has| (-906 |#1|) (-368)))) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| (-906 |#1|) (-368)) CONST)) (-2552 (($ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-3751 (((-112) $) NIL)) (-1693 (((-1113) $) NIL)) (-1498 (((-954 (-1113))) NIL)) (-4334 (($) NIL (|has| (-906 |#1|) (-368)))) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) NIL (|has| (-906 |#1|) (-368)))) (-2173 (((-418 $) $) NIL)) (-3740 (((-829 (-917))) NIL) (((-917)) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3196 (((-767) $) NIL (|has| (-906 |#1|) (-368))) (((-3 (-767) "failed") $ $) NIL (-4034 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-3526 (((-134)) NIL)) (-4203 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-3871 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3402 (((-1165 (-906 |#1|))) NIL)) (-1586 (($) NIL (|has| (-906 |#1|) (-368)))) (-2220 (($) NIL (|has| (-906 |#1|) (-368)))) (-3759 (((-1257 (-906 |#1|)) $) NIL) (((-684 (-906 |#1|)) (-1257 $)) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| (-906 |#1|) (-368)))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-906 |#1|)) NIL)) (-2047 (($ $) NIL (|has| (-906 |#1|) (-368))) (((-3 $ "failed") $) NIL (-4034 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-3914 (((-767)) NIL)) (-4013 (((-1257 $)) NIL) (((-1257 $) (-917)) NIL)) (-3223 (((-112) $ $) NIL)) (-3772 (((-112) $) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3715 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-3213 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL) (($ $ (-906 |#1|)) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ (-906 |#1|)) NIL) (($ (-906 |#1|) $) NIL)))
+(((-343 |#1| |#2|) (-13 (-329 (-906 |#1|)) (-10 -7 (-15 -1498 ((-954 (-1113)))))) (-917) (-917)) (T -343))
+((-1498 (*1 *2) (-12 (-5 *2 (-954 (-1113))) (-5 *1 (-343 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917)))))
+(-13 (-329 (-906 |#1|)) (-10 -7 (-15 -1498 ((-954 (-1113))))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 43)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3761 (((-112) $) NIL)) (-3728 (((-767)) NIL)) (-1731 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-1597 (((-1181 (-917) (-767)) (-563)) 40 (|has| |#1| (-368)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-3750 (((-767)) NIL (|has| |#1| (-368)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) 115)) (-2057 ((|#1| $) 86)) (-3458 (($ (-1257 |#1|)) 104)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) 95 (|has| |#1| (-368)))) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) 98 (|has| |#1| (-368)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-4036 (($) 129 (|has| |#1| (-368)))) (-1656 (((-112) $) 47 (|has| |#1| (-368)))) (-3188 (($ $ (-767)) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2560 (((-112) $) NIL)) (-1775 (((-917) $) 44 (|has| |#1| (-368))) (((-829 (-917)) $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3401 (((-112) $) 45)) (-4024 (($) 131 (|has| |#1| (-368)))) (-4002 (((-112) $) NIL (|has| |#1| (-368)))) (-3975 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-1983 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4035 (((-1165 |#1|) $) 90) (((-1165 $) $ (-917)) NIL (|has| |#1| (-368)))) (-3990 (((-917) $) 139 (|has| |#1| (-368)))) (-2196 (((-1165 |#1|) $) NIL (|has| |#1| (-368)))) (-2184 (((-1165 |#1|) $) NIL (|has| |#1| (-368))) (((-3 (-1165 |#1|) "failed") $ $) NIL (|has| |#1| (-368)))) (-2207 (($ $ (-1165 |#1|)) NIL (|has| |#1| (-368)))) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 146)) (-2522 (($) NIL (|has| |#1| (-368)) CONST)) (-2552 (($ (-917)) 70 (|has| |#1| (-368)))) (-3751 (((-112) $) 118)) (-1693 (((-1113) $) NIL)) (-1498 (((-954 (-1113))) 41)) (-4334 (($) 127 (|has| |#1| (-368)))) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) 93 (|has| |#1| (-368)))) (-2173 (((-418 $) $) NIL)) (-3740 (((-829 (-917))) 66) (((-917)) 67)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3196 (((-767) $) 130 (|has| |#1| (-368))) (((-3 (-767) "failed") $ $) 125 (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3526 (((-134)) NIL)) (-4203 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3871 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3402 (((-1165 |#1|)) 96)) (-1586 (($) 128 (|has| |#1| (-368)))) (-2220 (($) 136 (|has| |#1| (-368)))) (-3759 (((-1257 |#1|) $) 58) (((-684 |#1|) (-1257 $)) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| |#1| (-368)))) (-1692 (((-858) $) 142) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) 74)) (-2047 (($ $) NIL (|has| |#1| (-368))) (((-3 $ "failed") $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3914 (((-767)) 138)) (-4013 (((-1257 $)) 117) (((-1257 $) (-917)) 72)) (-3223 (((-112) $ $) NIL)) (-3772 (((-112) $) NIL)) (-2239 (($) 48 T CONST)) (-2253 (($) 77 T CONST)) (-3715 (($ $) 81 (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3213 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-1718 (((-112) $ $) 46)) (-1836 (($ $ $) 144) (($ $ |#1|) 145)) (-1825 (($ $) 126) (($ $ $) NIL)) (-1813 (($ $ $) 60)) (** (($ $ (-917)) 148) (($ $ (-767)) 149) (($ $ (-563)) 147)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 76) (($ $ $) 75) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 143)))
+(((-344 |#1| |#2|) (-13 (-329 |#1|) (-10 -7 (-15 -1498 ((-954 (-1113)))))) (-349) (-1165 |#1|)) (T -344))
+((-1498 (*1 *2) (-12 (-5 *2 (-954 (-1113))) (-5 *1 (-344 *3 *4)) (-4 *3 (-349)) (-14 *4 (-1165 *3)))))
+(-13 (-329 |#1|) (-10 -7 (-15 -1498 ((-954 (-1113))))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3761 (((-112) $) NIL)) (-3728 (((-767)) NIL)) (-1731 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-1597 (((-1181 (-917) (-767)) (-563)) NIL (|has| |#1| (-368)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-3750 (((-767)) NIL (|has| |#1| (-368)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL)) (-2057 ((|#1| $) NIL)) (-3458 (($ (-1257 |#1|)) NIL)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-368)))) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) NIL (|has| |#1| (-368)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-4036 (($) NIL (|has| |#1| (-368)))) (-1656 (((-112) $) NIL (|has| |#1| (-368)))) (-3188 (($ $ (-767)) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2560 (((-112) $) NIL)) (-1775 (((-917) $) NIL (|has| |#1| (-368))) (((-829 (-917)) $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3401 (((-112) $) NIL)) (-4024 (($) NIL (|has| |#1| (-368)))) (-4002 (((-112) $) NIL (|has| |#1| (-368)))) (-3975 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-1983 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4035 (((-1165 |#1|) $) NIL) (((-1165 $) $ (-917)) NIL (|has| |#1| (-368)))) (-3990 (((-917) $) NIL (|has| |#1| (-368)))) (-2196 (((-1165 |#1|) $) NIL (|has| |#1| (-368)))) (-2184 (((-1165 |#1|) $) NIL (|has| |#1| (-368))) (((-3 (-1165 |#1|) "failed") $ $) NIL (|has| |#1| (-368)))) (-2207 (($ $ (-1165 |#1|)) NIL (|has| |#1| (-368)))) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| |#1| (-368)) CONST)) (-2552 (($ (-917)) NIL (|has| |#1| (-368)))) (-3751 (((-112) $) NIL)) (-1693 (((-1113) $) NIL)) (-1498 (((-954 (-1113))) NIL)) (-4334 (($) NIL (|has| |#1| (-368)))) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) NIL (|has| |#1| (-368)))) (-2173 (((-418 $) $) NIL)) (-3740 (((-829 (-917))) NIL) (((-917)) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3196 (((-767) $) NIL (|has| |#1| (-368))) (((-3 (-767) "failed") $ $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3526 (((-134)) NIL)) (-4203 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3871 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3402 (((-1165 |#1|)) NIL)) (-1586 (($) NIL (|has| |#1| (-368)))) (-2220 (($) NIL (|has| |#1| (-368)))) (-3759 (((-1257 |#1|) $) NIL) (((-684 |#1|) (-1257 $)) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| |#1| (-368)))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) NIL)) (-2047 (($ $) NIL (|has| |#1| (-368))) (((-3 $ "failed") $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3914 (((-767)) NIL)) (-4013 (((-1257 $)) NIL) (((-1257 $) (-917)) NIL)) (-3223 (((-112) $ $) NIL)) (-3772 (((-112) $) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3715 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3213 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-345 |#1| |#2|) (-13 (-329 |#1|) (-10 -7 (-15 -1498 ((-954 (-1113)))))) (-349) (-917)) (T -345))
+((-1498 (*1 *2) (-12 (-5 *2 (-954 (-1113))) (-5 *1 (-345 *3 *4)) (-4 *3 (-349)) (-14 *4 (-917)))))
+(-13 (-329 |#1|) (-10 -7 (-15 -1498 ((-954 (-1113))))))
+((-1619 (((-767) (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113)))))) 42)) (-1509 (((-954 (-1113)) (-1165 |#1|)) 85)) (-1523 (((-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))) (-1165 |#1|)) 78)) (-1535 (((-684 |#1|) (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113)))))) 86)) (-1547 (((-3 (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))) "failed") (-917)) 13)) (-1561 (((-3 (-1165 |#1|) (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113)))))) (-917)) 18)))
+(((-346 |#1|) (-10 -7 (-15 -1509 ((-954 (-1113)) (-1165 |#1|))) (-15 -1523 ((-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))) (-1165 |#1|))) (-15 -1535 ((-684 |#1|) (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))))) (-15 -1619 ((-767) (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))))) (-15 -1547 ((-3 (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))) "failed") (-917))) (-15 -1561 ((-3 (-1165 |#1|) (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113)))))) (-917)))) (-349)) (T -346))
+((-1561 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-3 (-1165 *4) (-1257 (-640 (-2 (|:| -2618 *4) (|:| -2552 (-1113))))))) (-5 *1 (-346 *4)) (-4 *4 (-349)))) (-1547 (*1 *2 *3) (|partial| -12 (-5 *3 (-917)) (-5 *2 (-1257 (-640 (-2 (|:| -2618 *4) (|:| -2552 (-1113)))))) (-5 *1 (-346 *4)) (-4 *4 (-349)))) (-1619 (*1 *2 *3) (-12 (-5 *3 (-1257 (-640 (-2 (|:| -2618 *4) (|:| -2552 (-1113)))))) (-4 *4 (-349)) (-5 *2 (-767)) (-5 *1 (-346 *4)))) (-1535 (*1 *2 *3) (-12 (-5 *3 (-1257 (-640 (-2 (|:| -2618 *4) (|:| -2552 (-1113)))))) (-4 *4 (-349)) (-5 *2 (-684 *4)) (-5 *1 (-346 *4)))) (-1523 (*1 *2 *3) (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-5 *2 (-1257 (-640 (-2 (|:| -2618 *4) (|:| -2552 (-1113)))))) (-5 *1 (-346 *4)))) (-1509 (*1 *2 *3) (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-5 *2 (-954 (-1113))) (-5 *1 (-346 *4)))))
+(-10 -7 (-15 -1509 ((-954 (-1113)) (-1165 |#1|))) (-15 -1523 ((-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))) (-1165 |#1|))) (-15 -1535 ((-684 |#1|) (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))))) (-15 -1619 ((-767) (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))))) (-15 -1547 ((-3 (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))) "failed") (-917))) (-15 -1561 ((-3 (-1165 |#1|) (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113)))))) (-917))))
+((-1692 ((|#1| |#3|) 86) ((|#3| |#1|) 69)))
+(((-347 |#1| |#2| |#3|) (-10 -7 (-15 -1692 (|#3| |#1|)) (-15 -1692 (|#1| |#3|))) (-329 |#2|) (-349) (-329 |#2|)) (T -347))
+((-1692 (*1 *2 *3) (-12 (-4 *4 (-349)) (-4 *2 (-329 *4)) (-5 *1 (-347 *2 *4 *3)) (-4 *3 (-329 *4)))) (-1692 (*1 *2 *3) (-12 (-4 *4 (-349)) (-4 *2 (-329 *4)) (-5 *1 (-347 *3 *4 *2)) (-4 *3 (-329 *4)))))
+(-10 -7 (-15 -1692 (|#3| |#1|)) (-15 -1692 (|#1| |#3|)))
+((-1656 (((-112) $) 49)) (-1775 (((-829 (-917)) $) 21) (((-917) $) 51)) (-1983 (((-3 $ "failed") $) 16)) (-2522 (($) 9)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 92)) (-3196 (((-3 (-767) "failed") $ $) 70) (((-767) $) 59)) (-4203 (($ $ (-767)) NIL) (($ $) 8)) (-1586 (($) 43)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) 34)) (-2047 (((-3 $ "failed") $) 38) (($ $) 37)))
+(((-348 |#1|) (-10 -8 (-15 -1775 ((-917) |#1|)) (-15 -3196 ((-767) |#1|)) (-15 -1656 ((-112) |#1|)) (-15 -1586 (|#1|)) (-15 -2054 ((-3 (-1257 |#1|) "failed") (-684 |#1|))) (-15 -2047 (|#1| |#1|)) (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -2522 (|#1|)) (-15 -1983 ((-3 |#1| "failed") |#1|)) (-15 -3196 ((-3 (-767) "failed") |#1| |#1|)) (-15 -1775 ((-829 (-917)) |#1|)) (-15 -2047 ((-3 |#1| "failed") |#1|)) (-15 -2103 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|)))) (-349)) (T -348))
+NIL
+(-10 -8 (-15 -1775 ((-917) |#1|)) (-15 -3196 ((-767) |#1|)) (-15 -1656 ((-112) |#1|)) (-15 -1586 (|#1|)) (-15 -2054 ((-3 (-1257 |#1|) "failed") (-684 |#1|))) (-15 -2047 (|#1| |#1|)) (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -2522 (|#1|)) (-15 -1983 ((-3 |#1| "failed") |#1|)) (-15 -3196 ((-3 (-767) "failed") |#1| |#1|)) (-15 -1775 ((-829 (-917)) |#1|)) (-15 -2047 ((-3 |#1| "failed") |#1|)) (-15 -2103 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-1597 (((-1181 (-917) (-767)) (-563)) 94)) (-3905 (((-3 $ "failed") $ $) 19)) (-1798 (($ $) 74)) (-2802 (((-418 $) $) 73)) (-2003 (((-112) $ $) 60)) (-3750 (((-767)) 104)) (-2569 (($) 17 T CONST)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) 88)) (-3094 (($ $ $) 56)) (-3951 (((-3 $ "failed") $) 33)) (-1690 (($) 107)) (-3054 (($ $ $) 57)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 52)) (-4036 (($) 92)) (-1656 (((-112) $) 91)) (-3188 (($ $) 80) (($ $ (-767)) 79)) (-2560 (((-112) $) 72)) (-1775 (((-829 (-917)) $) 82) (((-917) $) 89)) (-3401 (((-112) $) 31)) (-1983 (((-3 $ "failed") $) 103)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3990 (((-917) $) 106)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-2687 (($ $) 71)) (-2522 (($) 102 T CONST)) (-2552 (($ (-917)) 105)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) 95)) (-2173 (((-418 $) $) 75)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3012 (((-3 $ "failed") $ $) 43)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-1993 (((-767) $) 59)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 58)) (-3196 (((-3 (-767) "failed") $ $) 81) (((-767) $) 90)) (-4203 (($ $ (-767)) 100) (($ $) 98)) (-1586 (($) 93)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) 96)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67)) (-2047 (((-3 $ "failed") $) 83) (($ $) 97)) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 40)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ (-767)) 101) (($ $) 99)) (-1718 (((-112) $ $) 6)) (-1836 (($ $ $) 66)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68)))
(((-349) (-140)) (T -349))
-((-2779 (*1 *1 *1) (-4 *1 (-349))) (-1377 (*1 *2 *3) (|partial| -12 (-5 *3 (-684 *1)) (-4 *1 (-349)) (-5 *2 (-1257 *1)))) (-2727 (*1 *2) (-12 (-4 *1 (-349)) (-5 *2 (-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))))) (-2752 (*1 *2 *3) (-12 (-4 *1 (-349)) (-5 *3 (-563)) (-5 *2 (-1181 (-917) (-767))))) (-4284 (*1 *1) (-4 *1 (-349))) (-1571 (*1 *1) (-4 *1 (-349))) (-2366 (*1 *2 *1) (-12 (-4 *1 (-349)) (-5 *2 (-112)))) (-1423 (*1 *2 *1) (-12 (-4 *1 (-349)) (-5 *2 (-767)))) (-3254 (*1 *2 *1) (-12 (-4 *1 (-349)) (-5 *2 (-917)))) (-3711 (*1 *2) (-12 (-4 *1 (-349)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
-(-13 (-402) (-368) (-1144) (-233) (-10 -8 (-15 -2779 ($ $)) (-15 -1377 ((-3 (-1257 $) "failed") (-684 $))) (-15 -2727 ((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563)))))) (-15 -2752 ((-1181 (-917) (-767)) (-563))) (-15 -4284 ($)) (-15 -1571 ($)) (-15 -2366 ((-112) $)) (-15 -1423 ((-767) $)) (-15 -3254 ((-917) $)) (-15 -3711 ((-3 "prime" "polynomial" "normal" "cyclic")))))
+((-2047 (*1 *1 *1) (-4 *1 (-349))) (-2054 (*1 *2 *3) (|partial| -12 (-5 *3 (-684 *1)) (-4 *1 (-349)) (-5 *2 (-1257 *1)))) (-1608 (*1 *2) (-12 (-4 *1 (-349)) (-5 *2 (-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))))) (-1597 (*1 *2 *3) (-12 (-4 *1 (-349)) (-5 *3 (-563)) (-5 *2 (-1181 (-917) (-767))))) (-1586 (*1 *1) (-4 *1 (-349))) (-4036 (*1 *1) (-4 *1 (-349))) (-1656 (*1 *2 *1) (-12 (-4 *1 (-349)) (-5 *2 (-112)))) (-3196 (*1 *2 *1) (-12 (-4 *1 (-349)) (-5 *2 (-767)))) (-1775 (*1 *2 *1) (-12 (-4 *1 (-349)) (-5 *2 (-917)))) (-1573 (*1 *2) (-12 (-4 *1 (-349)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+(-13 (-402) (-368) (-1144) (-233) (-10 -8 (-15 -2047 ($ $)) (-15 -2054 ((-3 (-1257 $) "failed") (-684 $))) (-15 -1608 ((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563)))))) (-15 -1597 ((-1181 (-917) (-767)) (-563))) (-15 -1586 ($)) (-15 -4036 ($)) (-15 -1656 ((-112) $)) (-15 -3196 ((-767) $)) (-15 -1775 ((-917) $)) (-15 -1573 ((-3 "prime" "polynomial" "normal" "cyclic")))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-131) . T) ((-145) . T) ((-613 #0#) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-233) . T) ((-243) . T) ((-290) . T) ((-307) . T) ((-363) . T) ((-402) . T) ((-368) . T) ((-452) . T) ((-555) . T) ((-643 #0#) . T) ((-643 $) . T) ((-713 #0#) . T) ((-713 $) . T) ((-722) . T) ((-916) . T) ((-1051 #0#) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) . T) ((-1212) . T))
-((-3435 (((-2 (|:| -4315 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) |#1|) 53)) (-3815 (((-2 (|:| -4315 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|)))) 51)))
-(((-350 |#1| |#2| |#3|) (-10 -7 (-15 -3815 ((-2 (|:| -4315 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))))) (-15 -3435 ((-2 (|:| -4315 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) |#1|))) (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $)))) (-1233 |#1|) (-409 |#1| |#2|)) (T -350))
-((-3435 (*1 *2 *3) (-12 (-4 *3 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $))))) (-4 *4 (-1233 *3)) (-5 *2 (-2 (|:| -4315 (-684 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-684 *3)))) (-5 *1 (-350 *3 *4 *5)) (-4 *5 (-409 *3 *4)))) (-3815 (*1 *2) (-12 (-4 *3 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $))))) (-4 *4 (-1233 *3)) (-5 *2 (-2 (|:| -4315 (-684 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-684 *3)))) (-5 *1 (-350 *3 *4 *5)) (-4 *5 (-409 *3 *4)))))
-(-10 -7 (-15 -3815 ((-2 (|:| -4315 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))))) (-15 -3435 ((-2 (|:| -4315 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) |#1|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2388 (((-112) $) NIL)) (-3259 (((-767)) NIL)) (-1733 (((-906 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-2752 (((-1181 (-917) (-767)) (-563)) NIL (|has| (-906 |#1|) (-368)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-3355 (((-767)) NIL)) (-1919 (((-112) $ $) NIL)) (-3749 (((-767)) NIL (|has| (-906 |#1|) (-368)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-906 |#1|) "failed") $) NIL)) (-2058 (((-906 |#1|) $) NIL)) (-3937 (($ (-1257 (-906 |#1|))) NIL)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-906 |#1|) (-368)))) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) NIL (|has| (-906 |#1|) (-368)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-1571 (($) NIL (|has| (-906 |#1|) (-368)))) (-2366 (((-112) $) NIL (|has| (-906 |#1|) (-368)))) (-1637 (($ $ (-767)) NIL (-4032 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368)))) (($ $) NIL (-4032 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-2468 (((-112) $) NIL)) (-3254 (((-917) $) NIL (|has| (-906 |#1|) (-368))) (((-829 (-917)) $) NIL (-4032 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-3827 (((-112) $) NIL)) (-3723 (($) NIL (|has| (-906 |#1|) (-368)))) (-2890 (((-112) $) NIL (|has| (-906 |#1|) (-368)))) (-3793 (((-906 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-2408 (((-3 $ "failed") $) NIL (|has| (-906 |#1|) (-368)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3941 (((-1165 (-906 |#1|)) $) NIL) (((-1165 $) $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-1476 (((-917) $) NIL (|has| (-906 |#1|) (-368)))) (-2229 (((-1165 (-906 |#1|)) $) NIL (|has| (-906 |#1|) (-368)))) (-1631 (((-1165 (-906 |#1|)) $) NIL (|has| (-906 |#1|) (-368))) (((-3 (-1165 (-906 |#1|)) "failed") $ $) NIL (|has| (-906 |#1|) (-368)))) (-4166 (($ $ (-1165 (-906 |#1|))) NIL (|has| (-906 |#1|) (-368)))) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| (-906 |#1|) (-368)) CONST)) (-2555 (($ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-3013 (((-112) $) NIL)) (-1694 (((-1113) $) NIL)) (-3522 (((-1257 (-640 (-2 (|:| -2619 (-906 |#1|)) (|:| -2555 (-1113)))))) NIL)) (-4048 (((-684 (-906 |#1|))) NIL)) (-4333 (($) NIL (|has| (-906 |#1|) (-368)))) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) NIL (|has| (-906 |#1|) (-368)))) (-2174 (((-418 $) $) NIL)) (-1467 (((-829 (-917))) NIL) (((-917)) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-1423 (((-767) $) NIL (|has| (-906 |#1|) (-368))) (((-3 (-767) "failed") $ $) NIL (-4032 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-3533 (((-134)) NIL)) (-4202 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-4167 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3390 (((-1165 (-906 |#1|))) NIL)) (-4284 (($) NIL (|has| (-906 |#1|) (-368)))) (-1484 (($) NIL (|has| (-906 |#1|) (-368)))) (-1880 (((-1257 (-906 |#1|)) $) NIL) (((-684 (-906 |#1|)) (-1257 $)) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| (-906 |#1|) (-368)))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-906 |#1|)) NIL)) (-2779 (($ $) NIL (|has| (-906 |#1|) (-368))) (((-3 $ "failed") $) NIL (-4032 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-1675 (((-767)) NIL)) (-4315 (((-1257 $)) NIL) (((-1257 $) (-917)) NIL)) (-2126 (((-112) $ $) NIL)) (-3152 (((-112) $) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-2350 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-3209 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL) (($ $ (-906 |#1|)) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ (-906 |#1|)) NIL) (($ (-906 |#1|) $) NIL)))
-(((-351 |#1| |#2|) (-13 (-329 (-906 |#1|)) (-10 -7 (-15 -3522 ((-1257 (-640 (-2 (|:| -2619 (-906 |#1|)) (|:| -2555 (-1113))))))) (-15 -4048 ((-684 (-906 |#1|)))) (-15 -3355 ((-767))))) (-917) (-917)) (T -351))
-((-3522 (*1 *2) (-12 (-5 *2 (-1257 (-640 (-2 (|:| -2619 (-906 *3)) (|:| -2555 (-1113)))))) (-5 *1 (-351 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917)))) (-4048 (*1 *2) (-12 (-5 *2 (-684 (-906 *3))) (-5 *1 (-351 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917)))) (-3355 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-351 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917)))))
-(-13 (-329 (-906 |#1|)) (-10 -7 (-15 -3522 ((-1257 (-640 (-2 (|:| -2619 (-906 |#1|)) (|:| -2555 (-1113))))))) (-15 -4048 ((-684 (-906 |#1|)))) (-15 -3355 ((-767)))))
-((-1677 (((-112) $ $) 61)) (-3411 (((-112) $) 74)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2388 (((-112) $) NIL)) (-3259 (((-767)) NIL)) (-1733 ((|#1| $) 92) (($ $ (-917)) 90 (|has| |#1| (-368)))) (-2752 (((-1181 (-917) (-767)) (-563)) 148 (|has| |#1| (-368)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-3355 (((-767)) 89)) (-1919 (((-112) $ $) NIL)) (-3749 (((-767)) 162 (|has| |#1| (-368)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) 112)) (-2058 ((|#1| $) 91)) (-3937 (($ (-1257 |#1|)) 58)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) 188 (|has| |#1| (-368)))) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) 158 (|has| |#1| (-368)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-1571 (($) 149 (|has| |#1| (-368)))) (-2366 (((-112) $) NIL (|has| |#1| (-368)))) (-1637 (($ $ (-767)) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2468 (((-112) $) NIL)) (-3254 (((-917) $) NIL (|has| |#1| (-368))) (((-829 (-917)) $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3827 (((-112) $) NIL)) (-3723 (($) 98 (|has| |#1| (-368)))) (-2890 (((-112) $) 175 (|has| |#1| (-368)))) (-3793 ((|#1| $) 94) (($ $ (-917)) 93 (|has| |#1| (-368)))) (-2408 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3941 (((-1165 |#1|) $) 189) (((-1165 $) $ (-917)) NIL (|has| |#1| (-368)))) (-1476 (((-917) $) 134 (|has| |#1| (-368)))) (-2229 (((-1165 |#1|) $) 73 (|has| |#1| (-368)))) (-1631 (((-1165 |#1|) $) 70 (|has| |#1| (-368))) (((-3 (-1165 |#1|) "failed") $ $) 82 (|has| |#1| (-368)))) (-4166 (($ $ (-1165 |#1|)) 69 (|has| |#1| (-368)))) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 192)) (-2523 (($) NIL (|has| |#1| (-368)) CONST)) (-2555 (($ (-917)) 137 (|has| |#1| (-368)))) (-3013 (((-112) $) 108)) (-1694 (((-1113) $) NIL)) (-3522 (((-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113)))))) 83)) (-4048 (((-684 |#1|)) 87)) (-4333 (($) 96 (|has| |#1| (-368)))) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) 150 (|has| |#1| (-368)))) (-2174 (((-418 $) $) NIL)) (-1467 (((-829 (-917))) NIL) (((-917)) 151)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-1423 (((-767) $) NIL (|has| |#1| (-368))) (((-3 (-767) "failed") $ $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3533 (((-134)) NIL)) (-4202 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-4167 (((-829 (-917)) $) NIL) (((-917) $) 62)) (-3390 (((-1165 |#1|)) 152)) (-4284 (($) 133 (|has| |#1| (-368)))) (-1484 (($) NIL (|has| |#1| (-368)))) (-1880 (((-1257 |#1|) $) 106) (((-684 |#1|) (-1257 $)) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| |#1| (-368)))) (-1693 (((-858) $) 124) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) 57)) (-2779 (($ $) NIL (|has| |#1| (-368))) (((-3 $ "failed") $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-1675 (((-767)) 156)) (-4315 (((-1257 $)) 172) (((-1257 $) (-917)) 101)) (-2126 (((-112) $ $) NIL)) (-3152 (((-112) $) NIL)) (-2241 (($) 117 T CONST)) (-2254 (($) 33 T CONST)) (-2350 (($ $) 107 (|has| |#1| (-368))) (($ $ (-767)) 99 (|has| |#1| (-368)))) (-3209 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-1718 (((-112) $ $) 183)) (-1837 (($ $ $) 104) (($ $ |#1|) 105)) (-1826 (($ $) 177) (($ $ $) 181)) (-1814 (($ $ $) 179)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) 138)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 186) (($ $ $) 142) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 103)))
-(((-352 |#1| |#2|) (-13 (-329 |#1|) (-10 -7 (-15 -3522 ((-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))))) (-15 -4048 ((-684 |#1|))) (-15 -3355 ((-767))))) (-349) (-3 (-1165 |#1|) (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))))) (T -352))
-((-3522 (*1 *2) (-12 (-5 *2 (-1257 (-640 (-2 (|:| -2619 *3) (|:| -2555 (-1113)))))) (-5 *1 (-352 *3 *4)) (-4 *3 (-349)) (-14 *4 (-3 (-1165 *3) *2)))) (-4048 (*1 *2) (-12 (-5 *2 (-684 *3)) (-5 *1 (-352 *3 *4)) (-4 *3 (-349)) (-14 *4 (-3 (-1165 *3) (-1257 (-640 (-2 (|:| -2619 *3) (|:| -2555 (-1113))))))))) (-3355 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-352 *3 *4)) (-4 *3 (-349)) (-14 *4 (-3 (-1165 *3) (-1257 (-640 (-2 (|:| -2619 *3) (|:| -2555 (-1113))))))))))
-(-13 (-329 |#1|) (-10 -7 (-15 -3522 ((-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))))) (-15 -4048 ((-684 |#1|))) (-15 -3355 ((-767)))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2388 (((-112) $) NIL)) (-3259 (((-767)) NIL)) (-1733 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-2752 (((-1181 (-917) (-767)) (-563)) NIL (|has| |#1| (-368)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-3355 (((-767)) NIL)) (-1919 (((-112) $ $) NIL)) (-3749 (((-767)) NIL (|has| |#1| (-368)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL)) (-2058 ((|#1| $) NIL)) (-3937 (($ (-1257 |#1|)) NIL)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-368)))) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) NIL (|has| |#1| (-368)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-1571 (($) NIL (|has| |#1| (-368)))) (-2366 (((-112) $) NIL (|has| |#1| (-368)))) (-1637 (($ $ (-767)) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2468 (((-112) $) NIL)) (-3254 (((-917) $) NIL (|has| |#1| (-368))) (((-829 (-917)) $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3827 (((-112) $) NIL)) (-3723 (($) NIL (|has| |#1| (-368)))) (-2890 (((-112) $) NIL (|has| |#1| (-368)))) (-3793 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-2408 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3941 (((-1165 |#1|) $) NIL) (((-1165 $) $ (-917)) NIL (|has| |#1| (-368)))) (-1476 (((-917) $) NIL (|has| |#1| (-368)))) (-2229 (((-1165 |#1|) $) NIL (|has| |#1| (-368)))) (-1631 (((-1165 |#1|) $) NIL (|has| |#1| (-368))) (((-3 (-1165 |#1|) "failed") $ $) NIL (|has| |#1| (-368)))) (-4166 (($ $ (-1165 |#1|)) NIL (|has| |#1| (-368)))) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| |#1| (-368)) CONST)) (-2555 (($ (-917)) NIL (|has| |#1| (-368)))) (-3013 (((-112) $) NIL)) (-1694 (((-1113) $) NIL)) (-3522 (((-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113)))))) NIL)) (-4048 (((-684 |#1|)) NIL)) (-4333 (($) NIL (|has| |#1| (-368)))) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) NIL (|has| |#1| (-368)))) (-2174 (((-418 $) $) NIL)) (-1467 (((-829 (-917))) NIL) (((-917)) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-1423 (((-767) $) NIL (|has| |#1| (-368))) (((-3 (-767) "failed") $ $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3533 (((-134)) NIL)) (-4202 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-4167 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3390 (((-1165 |#1|)) NIL)) (-4284 (($) NIL (|has| |#1| (-368)))) (-1484 (($) NIL (|has| |#1| (-368)))) (-1880 (((-1257 |#1|) $) NIL) (((-684 |#1|) (-1257 $)) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| |#1| (-368)))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) NIL)) (-2779 (($ $) NIL (|has| |#1| (-368))) (((-3 $ "failed") $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-1675 (((-767)) NIL)) (-4315 (((-1257 $)) NIL) (((-1257 $) (-917)) NIL)) (-2126 (((-112) $ $) NIL)) (-3152 (((-112) $) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-2350 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3209 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-353 |#1| |#2|) (-13 (-329 |#1|) (-10 -7 (-15 -3522 ((-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))))) (-15 -4048 ((-684 |#1|))) (-15 -3355 ((-767))))) (-349) (-917)) (T -353))
-((-3522 (*1 *2) (-12 (-5 *2 (-1257 (-640 (-2 (|:| -2619 *3) (|:| -2555 (-1113)))))) (-5 *1 (-353 *3 *4)) (-4 *3 (-349)) (-14 *4 (-917)))) (-4048 (*1 *2) (-12 (-5 *2 (-684 *3)) (-5 *1 (-353 *3 *4)) (-4 *3 (-349)) (-14 *4 (-917)))) (-3355 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-353 *3 *4)) (-4 *3 (-349)) (-14 *4 (-917)))))
-(-13 (-329 |#1|) (-10 -7 (-15 -3522 ((-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))))) (-15 -4048 ((-684 |#1|))) (-15 -3355 ((-767)))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2388 (((-112) $) NIL)) (-3259 (((-767)) NIL)) (-1733 (((-906 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-2752 (((-1181 (-917) (-767)) (-563)) NIL (|has| (-906 |#1|) (-368)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-3749 (((-767)) NIL (|has| (-906 |#1|) (-368)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-906 |#1|) "failed") $) NIL)) (-2058 (((-906 |#1|) $) NIL)) (-3937 (($ (-1257 (-906 |#1|))) NIL)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-906 |#1|) (-368)))) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) NIL (|has| (-906 |#1|) (-368)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-1571 (($) NIL (|has| (-906 |#1|) (-368)))) (-2366 (((-112) $) NIL (|has| (-906 |#1|) (-368)))) (-1637 (($ $ (-767)) NIL (-4032 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368)))) (($ $) NIL (-4032 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-2468 (((-112) $) NIL)) (-3254 (((-917) $) NIL (|has| (-906 |#1|) (-368))) (((-829 (-917)) $) NIL (-4032 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-3827 (((-112) $) NIL)) (-3723 (($) NIL (|has| (-906 |#1|) (-368)))) (-2890 (((-112) $) NIL (|has| (-906 |#1|) (-368)))) (-3793 (((-906 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-2408 (((-3 $ "failed") $) NIL (|has| (-906 |#1|) (-368)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3941 (((-1165 (-906 |#1|)) $) NIL) (((-1165 $) $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-1476 (((-917) $) NIL (|has| (-906 |#1|) (-368)))) (-2229 (((-1165 (-906 |#1|)) $) NIL (|has| (-906 |#1|) (-368)))) (-1631 (((-1165 (-906 |#1|)) $) NIL (|has| (-906 |#1|) (-368))) (((-3 (-1165 (-906 |#1|)) "failed") $ $) NIL (|has| (-906 |#1|) (-368)))) (-4166 (($ $ (-1165 (-906 |#1|))) NIL (|has| (-906 |#1|) (-368)))) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| (-906 |#1|) (-368)) CONST)) (-2555 (($ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-3013 (((-112) $) NIL)) (-1694 (((-1113) $) NIL)) (-4333 (($) NIL (|has| (-906 |#1|) (-368)))) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) NIL (|has| (-906 |#1|) (-368)))) (-2174 (((-418 $) $) NIL)) (-1467 (((-829 (-917))) NIL) (((-917)) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-1423 (((-767) $) NIL (|has| (-906 |#1|) (-368))) (((-3 (-767) "failed") $ $) NIL (-4032 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-3533 (((-134)) NIL)) (-4202 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-4167 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3390 (((-1165 (-906 |#1|))) NIL)) (-4284 (($) NIL (|has| (-906 |#1|) (-368)))) (-1484 (($) NIL (|has| (-906 |#1|) (-368)))) (-1880 (((-1257 (-906 |#1|)) $) NIL) (((-684 (-906 |#1|)) (-1257 $)) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| (-906 |#1|) (-368)))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-906 |#1|)) NIL)) (-2779 (($ $) NIL (|has| (-906 |#1|) (-368))) (((-3 $ "failed") $) NIL (-4032 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-1675 (((-767)) NIL)) (-4315 (((-1257 $)) NIL) (((-1257 $) (-917)) NIL)) (-2126 (((-112) $ $) NIL)) (-3152 (((-112) $) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-2350 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-3209 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL) (($ $ (-906 |#1|)) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ (-906 |#1|)) NIL) (($ (-906 |#1|) $) NIL)))
+((-3619 (((-2 (|:| -4013 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) |#1|) 53)) (-3608 (((-2 (|:| -4013 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|)))) 51)))
+(((-350 |#1| |#2| |#3|) (-10 -7 (-15 -3608 ((-2 (|:| -4013 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))))) (-15 -3619 ((-2 (|:| -4013 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) |#1|))) (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $)))) (-1233 |#1|) (-409 |#1| |#2|)) (T -350))
+((-3619 (*1 *2 *3) (-12 (-4 *3 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $))))) (-4 *4 (-1233 *3)) (-5 *2 (-2 (|:| -4013 (-684 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-684 *3)))) (-5 *1 (-350 *3 *4 *5)) (-4 *5 (-409 *3 *4)))) (-3608 (*1 *2) (-12 (-4 *3 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $))))) (-4 *4 (-1233 *3)) (-5 *2 (-2 (|:| -4013 (-684 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-684 *3)))) (-5 *1 (-350 *3 *4 *5)) (-4 *5 (-409 *3 *4)))))
+(-10 -7 (-15 -3608 ((-2 (|:| -4013 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))))) (-15 -3619 ((-2 (|:| -4013 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) |#1|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3761 (((-112) $) NIL)) (-3728 (((-767)) NIL)) (-1731 (((-906 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-1597 (((-1181 (-917) (-767)) (-563)) NIL (|has| (-906 |#1|) (-368)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-1619 (((-767)) NIL)) (-2003 (((-112) $ $) NIL)) (-3750 (((-767)) NIL (|has| (-906 |#1|) (-368)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-906 |#1|) "failed") $) NIL)) (-2057 (((-906 |#1|) $) NIL)) (-3458 (($ (-1257 (-906 |#1|))) NIL)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-906 |#1|) (-368)))) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) NIL (|has| (-906 |#1|) (-368)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-4036 (($) NIL (|has| (-906 |#1|) (-368)))) (-1656 (((-112) $) NIL (|has| (-906 |#1|) (-368)))) (-3188 (($ $ (-767)) NIL (-4034 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368)))) (($ $) NIL (-4034 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-2560 (((-112) $) NIL)) (-1775 (((-917) $) NIL (|has| (-906 |#1|) (-368))) (((-829 (-917)) $) NIL (-4034 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-3401 (((-112) $) NIL)) (-4024 (($) NIL (|has| (-906 |#1|) (-368)))) (-4002 (((-112) $) NIL (|has| (-906 |#1|) (-368)))) (-3975 (((-906 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-1983 (((-3 $ "failed") $) NIL (|has| (-906 |#1|) (-368)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4035 (((-1165 (-906 |#1|)) $) NIL) (((-1165 $) $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-3990 (((-917) $) NIL (|has| (-906 |#1|) (-368)))) (-2196 (((-1165 (-906 |#1|)) $) NIL (|has| (-906 |#1|) (-368)))) (-2184 (((-1165 (-906 |#1|)) $) NIL (|has| (-906 |#1|) (-368))) (((-3 (-1165 (-906 |#1|)) "failed") $ $) NIL (|has| (-906 |#1|) (-368)))) (-2207 (($ $ (-1165 (-906 |#1|))) NIL (|has| (-906 |#1|) (-368)))) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| (-906 |#1|) (-368)) CONST)) (-2552 (($ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-3751 (((-112) $) NIL)) (-1693 (((-1113) $) NIL)) (-1644 (((-1257 (-640 (-2 (|:| -2618 (-906 |#1|)) (|:| -2552 (-1113)))))) NIL)) (-1630 (((-684 (-906 |#1|))) NIL)) (-4334 (($) NIL (|has| (-906 |#1|) (-368)))) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) NIL (|has| (-906 |#1|) (-368)))) (-2173 (((-418 $) $) NIL)) (-3740 (((-829 (-917))) NIL) (((-917)) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3196 (((-767) $) NIL (|has| (-906 |#1|) (-368))) (((-3 (-767) "failed") $ $) NIL (-4034 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-3526 (((-134)) NIL)) (-4203 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-3871 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3402 (((-1165 (-906 |#1|))) NIL)) (-1586 (($) NIL (|has| (-906 |#1|) (-368)))) (-2220 (($) NIL (|has| (-906 |#1|) (-368)))) (-3759 (((-1257 (-906 |#1|)) $) NIL) (((-684 (-906 |#1|)) (-1257 $)) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| (-906 |#1|) (-368)))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-906 |#1|)) NIL)) (-2047 (($ $) NIL (|has| (-906 |#1|) (-368))) (((-3 $ "failed") $) NIL (-4034 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-3914 (((-767)) NIL)) (-4013 (((-1257 $)) NIL) (((-1257 $) (-917)) NIL)) (-3223 (((-112) $ $) NIL)) (-3772 (((-112) $) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3715 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-3213 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL) (($ $ (-906 |#1|)) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ (-906 |#1|)) NIL) (($ (-906 |#1|) $) NIL)))
+(((-351 |#1| |#2|) (-13 (-329 (-906 |#1|)) (-10 -7 (-15 -1644 ((-1257 (-640 (-2 (|:| -2618 (-906 |#1|)) (|:| -2552 (-1113))))))) (-15 -1630 ((-684 (-906 |#1|)))) (-15 -1619 ((-767))))) (-917) (-917)) (T -351))
+((-1644 (*1 *2) (-12 (-5 *2 (-1257 (-640 (-2 (|:| -2618 (-906 *3)) (|:| -2552 (-1113)))))) (-5 *1 (-351 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917)))) (-1630 (*1 *2) (-12 (-5 *2 (-684 (-906 *3))) (-5 *1 (-351 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917)))) (-1619 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-351 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917)))))
+(-13 (-329 (-906 |#1|)) (-10 -7 (-15 -1644 ((-1257 (-640 (-2 (|:| -2618 (-906 |#1|)) (|:| -2552 (-1113))))))) (-15 -1630 ((-684 (-906 |#1|)))) (-15 -1619 ((-767)))))
+((-1677 (((-112) $ $) 61)) (-3439 (((-112) $) 74)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3761 (((-112) $) NIL)) (-3728 (((-767)) NIL)) (-1731 ((|#1| $) 92) (($ $ (-917)) 90 (|has| |#1| (-368)))) (-1597 (((-1181 (-917) (-767)) (-563)) 148 (|has| |#1| (-368)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-1619 (((-767)) 89)) (-2003 (((-112) $ $) NIL)) (-3750 (((-767)) 162 (|has| |#1| (-368)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) 112)) (-2057 ((|#1| $) 91)) (-3458 (($ (-1257 |#1|)) 58)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) 188 (|has| |#1| (-368)))) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) 158 (|has| |#1| (-368)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-4036 (($) 149 (|has| |#1| (-368)))) (-1656 (((-112) $) NIL (|has| |#1| (-368)))) (-3188 (($ $ (-767)) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2560 (((-112) $) NIL)) (-1775 (((-917) $) NIL (|has| |#1| (-368))) (((-829 (-917)) $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3401 (((-112) $) NIL)) (-4024 (($) 98 (|has| |#1| (-368)))) (-4002 (((-112) $) 175 (|has| |#1| (-368)))) (-3975 ((|#1| $) 94) (($ $ (-917)) 93 (|has| |#1| (-368)))) (-1983 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4035 (((-1165 |#1|) $) 189) (((-1165 $) $ (-917)) NIL (|has| |#1| (-368)))) (-3990 (((-917) $) 134 (|has| |#1| (-368)))) (-2196 (((-1165 |#1|) $) 73 (|has| |#1| (-368)))) (-2184 (((-1165 |#1|) $) 70 (|has| |#1| (-368))) (((-3 (-1165 |#1|) "failed") $ $) 82 (|has| |#1| (-368)))) (-2207 (($ $ (-1165 |#1|)) 69 (|has| |#1| (-368)))) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 193)) (-2522 (($) NIL (|has| |#1| (-368)) CONST)) (-2552 (($ (-917)) 137 (|has| |#1| (-368)))) (-3751 (((-112) $) 108)) (-1693 (((-1113) $) NIL)) (-1644 (((-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113)))))) 83)) (-1630 (((-684 |#1|)) 87)) (-4334 (($) 96 (|has| |#1| (-368)))) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) 150 (|has| |#1| (-368)))) (-2173 (((-418 $) $) NIL)) (-3740 (((-829 (-917))) NIL) (((-917)) 151)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3196 (((-767) $) NIL (|has| |#1| (-368))) (((-3 (-767) "failed") $ $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3526 (((-134)) NIL)) (-4203 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3871 (((-829 (-917)) $) NIL) (((-917) $) 62)) (-3402 (((-1165 |#1|)) 152)) (-1586 (($) 133 (|has| |#1| (-368)))) (-2220 (($) NIL (|has| |#1| (-368)))) (-3759 (((-1257 |#1|) $) 106) (((-684 |#1|) (-1257 $)) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| |#1| (-368)))) (-1692 (((-858) $) 124) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) 57)) (-2047 (($ $) NIL (|has| |#1| (-368))) (((-3 $ "failed") $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3914 (((-767)) 156)) (-4013 (((-1257 $)) 172) (((-1257 $) (-917)) 101)) (-3223 (((-112) $ $) NIL)) (-3772 (((-112) $) NIL)) (-2239 (($) 117 T CONST)) (-2253 (($) 33 T CONST)) (-3715 (($ $) 107 (|has| |#1| (-368))) (($ $ (-767)) 99 (|has| |#1| (-368)))) (-3213 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-1718 (((-112) $ $) 183)) (-1836 (($ $ $) 104) (($ $ |#1|) 105)) (-1825 (($ $) 177) (($ $ $) 181)) (-1813 (($ $ $) 179)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) 138)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 186) (($ $ $) 142) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 103)))
+(((-352 |#1| |#2|) (-13 (-329 |#1|) (-10 -7 (-15 -1644 ((-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))))) (-15 -1630 ((-684 |#1|))) (-15 -1619 ((-767))))) (-349) (-3 (-1165 |#1|) (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))))) (T -352))
+((-1644 (*1 *2) (-12 (-5 *2 (-1257 (-640 (-2 (|:| -2618 *3) (|:| -2552 (-1113)))))) (-5 *1 (-352 *3 *4)) (-4 *3 (-349)) (-14 *4 (-3 (-1165 *3) *2)))) (-1630 (*1 *2) (-12 (-5 *2 (-684 *3)) (-5 *1 (-352 *3 *4)) (-4 *3 (-349)) (-14 *4 (-3 (-1165 *3) (-1257 (-640 (-2 (|:| -2618 *3) (|:| -2552 (-1113))))))))) (-1619 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-352 *3 *4)) (-4 *3 (-349)) (-14 *4 (-3 (-1165 *3) (-1257 (-640 (-2 (|:| -2618 *3) (|:| -2552 (-1113))))))))))
+(-13 (-329 |#1|) (-10 -7 (-15 -1644 ((-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))))) (-15 -1630 ((-684 |#1|))) (-15 -1619 ((-767)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3761 (((-112) $) NIL)) (-3728 (((-767)) NIL)) (-1731 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-1597 (((-1181 (-917) (-767)) (-563)) NIL (|has| |#1| (-368)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-1619 (((-767)) NIL)) (-2003 (((-112) $ $) NIL)) (-3750 (((-767)) NIL (|has| |#1| (-368)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL)) (-2057 ((|#1| $) NIL)) (-3458 (($ (-1257 |#1|)) NIL)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-368)))) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) NIL (|has| |#1| (-368)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-4036 (($) NIL (|has| |#1| (-368)))) (-1656 (((-112) $) NIL (|has| |#1| (-368)))) (-3188 (($ $ (-767)) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2560 (((-112) $) NIL)) (-1775 (((-917) $) NIL (|has| |#1| (-368))) (((-829 (-917)) $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3401 (((-112) $) NIL)) (-4024 (($) NIL (|has| |#1| (-368)))) (-4002 (((-112) $) NIL (|has| |#1| (-368)))) (-3975 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-1983 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4035 (((-1165 |#1|) $) NIL) (((-1165 $) $ (-917)) NIL (|has| |#1| (-368)))) (-3990 (((-917) $) NIL (|has| |#1| (-368)))) (-2196 (((-1165 |#1|) $) NIL (|has| |#1| (-368)))) (-2184 (((-1165 |#1|) $) NIL (|has| |#1| (-368))) (((-3 (-1165 |#1|) "failed") $ $) NIL (|has| |#1| (-368)))) (-2207 (($ $ (-1165 |#1|)) NIL (|has| |#1| (-368)))) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| |#1| (-368)) CONST)) (-2552 (($ (-917)) NIL (|has| |#1| (-368)))) (-3751 (((-112) $) NIL)) (-1693 (((-1113) $) NIL)) (-1644 (((-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113)))))) NIL)) (-1630 (((-684 |#1|)) NIL)) (-4334 (($) NIL (|has| |#1| (-368)))) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) NIL (|has| |#1| (-368)))) (-2173 (((-418 $) $) NIL)) (-3740 (((-829 (-917))) NIL) (((-917)) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3196 (((-767) $) NIL (|has| |#1| (-368))) (((-3 (-767) "failed") $ $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3526 (((-134)) NIL)) (-4203 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3871 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3402 (((-1165 |#1|)) NIL)) (-1586 (($) NIL (|has| |#1| (-368)))) (-2220 (($) NIL (|has| |#1| (-368)))) (-3759 (((-1257 |#1|) $) NIL) (((-684 |#1|) (-1257 $)) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| |#1| (-368)))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) NIL)) (-2047 (($ $) NIL (|has| |#1| (-368))) (((-3 $ "failed") $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3914 (((-767)) NIL)) (-4013 (((-1257 $)) NIL) (((-1257 $) (-917)) NIL)) (-3223 (((-112) $ $) NIL)) (-3772 (((-112) $) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3715 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3213 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-353 |#1| |#2|) (-13 (-329 |#1|) (-10 -7 (-15 -1644 ((-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))))) (-15 -1630 ((-684 |#1|))) (-15 -1619 ((-767))))) (-349) (-917)) (T -353))
+((-1644 (*1 *2) (-12 (-5 *2 (-1257 (-640 (-2 (|:| -2618 *3) (|:| -2552 (-1113)))))) (-5 *1 (-353 *3 *4)) (-4 *3 (-349)) (-14 *4 (-917)))) (-1630 (*1 *2) (-12 (-5 *2 (-684 *3)) (-5 *1 (-353 *3 *4)) (-4 *3 (-349)) (-14 *4 (-917)))) (-1619 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-353 *3 *4)) (-4 *3 (-349)) (-14 *4 (-917)))))
+(-13 (-329 |#1|) (-10 -7 (-15 -1644 ((-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))))) (-15 -1630 ((-684 |#1|))) (-15 -1619 ((-767)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3761 (((-112) $) NIL)) (-3728 (((-767)) NIL)) (-1731 (((-906 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-1597 (((-1181 (-917) (-767)) (-563)) NIL (|has| (-906 |#1|) (-368)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-3750 (((-767)) NIL (|has| (-906 |#1|) (-368)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-906 |#1|) "failed") $) NIL)) (-2057 (((-906 |#1|) $) NIL)) (-3458 (($ (-1257 (-906 |#1|))) NIL)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-906 |#1|) (-368)))) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) NIL (|has| (-906 |#1|) (-368)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-4036 (($) NIL (|has| (-906 |#1|) (-368)))) (-1656 (((-112) $) NIL (|has| (-906 |#1|) (-368)))) (-3188 (($ $ (-767)) NIL (-4034 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368)))) (($ $) NIL (-4034 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-2560 (((-112) $) NIL)) (-1775 (((-917) $) NIL (|has| (-906 |#1|) (-368))) (((-829 (-917)) $) NIL (-4034 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-3401 (((-112) $) NIL)) (-4024 (($) NIL (|has| (-906 |#1|) (-368)))) (-4002 (((-112) $) NIL (|has| (-906 |#1|) (-368)))) (-3975 (((-906 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-1983 (((-3 $ "failed") $) NIL (|has| (-906 |#1|) (-368)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4035 (((-1165 (-906 |#1|)) $) NIL) (((-1165 $) $ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-3990 (((-917) $) NIL (|has| (-906 |#1|) (-368)))) (-2196 (((-1165 (-906 |#1|)) $) NIL (|has| (-906 |#1|) (-368)))) (-2184 (((-1165 (-906 |#1|)) $) NIL (|has| (-906 |#1|) (-368))) (((-3 (-1165 (-906 |#1|)) "failed") $ $) NIL (|has| (-906 |#1|) (-368)))) (-2207 (($ $ (-1165 (-906 |#1|))) NIL (|has| (-906 |#1|) (-368)))) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| (-906 |#1|) (-368)) CONST)) (-2552 (($ (-917)) NIL (|has| (-906 |#1|) (-368)))) (-3751 (((-112) $) NIL)) (-1693 (((-1113) $) NIL)) (-4334 (($) NIL (|has| (-906 |#1|) (-368)))) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) NIL (|has| (-906 |#1|) (-368)))) (-2173 (((-418 $) $) NIL)) (-3740 (((-829 (-917))) NIL) (((-917)) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3196 (((-767) $) NIL (|has| (-906 |#1|) (-368))) (((-3 (-767) "failed") $ $) NIL (-4034 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-3526 (((-134)) NIL)) (-4203 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-3871 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3402 (((-1165 (-906 |#1|))) NIL)) (-1586 (($) NIL (|has| (-906 |#1|) (-368)))) (-2220 (($) NIL (|has| (-906 |#1|) (-368)))) (-3759 (((-1257 (-906 |#1|)) $) NIL) (((-684 (-906 |#1|)) (-1257 $)) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| (-906 |#1|) (-368)))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-906 |#1|)) NIL)) (-2047 (($ $) NIL (|has| (-906 |#1|) (-368))) (((-3 $ "failed") $) NIL (-4034 (|has| (-906 |#1|) (-145)) (|has| (-906 |#1|) (-368))))) (-3914 (((-767)) NIL)) (-4013 (((-1257 $)) NIL) (((-1257 $) (-917)) NIL)) (-3223 (((-112) $ $) NIL)) (-3772 (((-112) $) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3715 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-3213 (($ $) NIL (|has| (-906 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-906 |#1|) (-368)))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL) (($ $ (-906 |#1|)) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ (-906 |#1|)) NIL) (($ (-906 |#1|) $) NIL)))
(((-354 |#1| |#2|) (-329 (-906 |#1|)) (-917) (-917)) (T -354))
NIL
(-329 (-906 |#1|))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2388 (((-112) $) NIL)) (-3259 (((-767)) NIL)) (-1733 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-2752 (((-1181 (-917) (-767)) (-563)) 120 (|has| |#1| (-368)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-3749 (((-767)) 139 (|has| |#1| (-368)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) 93)) (-2058 ((|#1| $) 90)) (-3937 (($ (-1257 |#1|)) 85)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) 117 (|has| |#1| (-368)))) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) 82 (|has| |#1| (-368)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-1571 (($) 42 (|has| |#1| (-368)))) (-2366 (((-112) $) NIL (|has| |#1| (-368)))) (-1637 (($ $ (-767)) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2468 (((-112) $) NIL)) (-3254 (((-917) $) NIL (|has| |#1| (-368))) (((-829 (-917)) $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3827 (((-112) $) NIL)) (-3723 (($) 121 (|has| |#1| (-368)))) (-2890 (((-112) $) 74 (|has| |#1| (-368)))) (-3793 ((|#1| $) 39) (($ $ (-917)) 43 (|has| |#1| (-368)))) (-2408 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3941 (((-1165 |#1|) $) 65) (((-1165 $) $ (-917)) NIL (|has| |#1| (-368)))) (-1476 (((-917) $) 97 (|has| |#1| (-368)))) (-2229 (((-1165 |#1|) $) NIL (|has| |#1| (-368)))) (-1631 (((-1165 |#1|) $) NIL (|has| |#1| (-368))) (((-3 (-1165 |#1|) "failed") $ $) NIL (|has| |#1| (-368)))) (-4166 (($ $ (-1165 |#1|)) NIL (|has| |#1| (-368)))) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| |#1| (-368)) CONST)) (-2555 (($ (-917)) 95 (|has| |#1| (-368)))) (-3013 (((-112) $) 141)) (-1694 (((-1113) $) NIL)) (-4333 (($) 36 (|has| |#1| (-368)))) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) 115 (|has| |#1| (-368)))) (-2174 (((-418 $) $) NIL)) (-1467 (((-829 (-917))) NIL) (((-917)) 138)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-1423 (((-767) $) NIL (|has| |#1| (-368))) (((-3 (-767) "failed") $ $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3533 (((-134)) NIL)) (-4202 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-4167 (((-829 (-917)) $) NIL) (((-917) $) 59)) (-3390 (((-1165 |#1|)) 88)) (-4284 (($) 126 (|has| |#1| (-368)))) (-1484 (($) NIL (|has| |#1| (-368)))) (-1880 (((-1257 |#1|) $) 53) (((-684 |#1|) (-1257 $)) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| |#1| (-368)))) (-1693 (((-858) $) 137) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) 87)) (-2779 (($ $) NIL (|has| |#1| (-368))) (((-3 $ "failed") $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-1675 (((-767)) 143)) (-4315 (((-1257 $)) 109) (((-1257 $) (-917)) 49)) (-2126 (((-112) $ $) NIL)) (-3152 (((-112) $) NIL)) (-2241 (($) 111 T CONST)) (-2254 (($) 32 T CONST)) (-2350 (($ $) 68 (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3209 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-1718 (((-112) $ $) 107)) (-1837 (($ $ $) 99) (($ $ |#1|) 100)) (-1826 (($ $) 80) (($ $ $) 105)) (-1814 (($ $ $) 103)) (** (($ $ (-917)) NIL) (($ $ (-767)) 44) (($ $ (-563)) 129)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 78) (($ $ $) 56) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 76)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3761 (((-112) $) NIL)) (-3728 (((-767)) NIL)) (-1731 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-1597 (((-1181 (-917) (-767)) (-563)) 120 (|has| |#1| (-368)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-3750 (((-767)) 139 (|has| |#1| (-368)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) 93)) (-2057 ((|#1| $) 90)) (-3458 (($ (-1257 |#1|)) 85)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) 117 (|has| |#1| (-368)))) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) 82 (|has| |#1| (-368)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-4036 (($) 42 (|has| |#1| (-368)))) (-1656 (((-112) $) NIL (|has| |#1| (-368)))) (-3188 (($ $ (-767)) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2560 (((-112) $) NIL)) (-1775 (((-917) $) NIL (|has| |#1| (-368))) (((-829 (-917)) $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3401 (((-112) $) NIL)) (-4024 (($) 121 (|has| |#1| (-368)))) (-4002 (((-112) $) 74 (|has| |#1| (-368)))) (-3975 ((|#1| $) 39) (($ $ (-917)) 43 (|has| |#1| (-368)))) (-1983 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4035 (((-1165 |#1|) $) 65) (((-1165 $) $ (-917)) NIL (|has| |#1| (-368)))) (-3990 (((-917) $) 97 (|has| |#1| (-368)))) (-2196 (((-1165 |#1|) $) NIL (|has| |#1| (-368)))) (-2184 (((-1165 |#1|) $) NIL (|has| |#1| (-368))) (((-3 (-1165 |#1|) "failed") $ $) NIL (|has| |#1| (-368)))) (-2207 (($ $ (-1165 |#1|)) NIL (|has| |#1| (-368)))) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| |#1| (-368)) CONST)) (-2552 (($ (-917)) 95 (|has| |#1| (-368)))) (-3751 (((-112) $) 141)) (-1693 (((-1113) $) NIL)) (-4334 (($) 36 (|has| |#1| (-368)))) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) 115 (|has| |#1| (-368)))) (-2173 (((-418 $) $) NIL)) (-3740 (((-829 (-917))) NIL) (((-917)) 138)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3196 (((-767) $) NIL (|has| |#1| (-368))) (((-3 (-767) "failed") $ $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3526 (((-134)) NIL)) (-4203 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3871 (((-829 (-917)) $) NIL) (((-917) $) 59)) (-3402 (((-1165 |#1|)) 88)) (-1586 (($) 126 (|has| |#1| (-368)))) (-2220 (($) NIL (|has| |#1| (-368)))) (-3759 (((-1257 |#1|) $) 53) (((-684 |#1|) (-1257 $)) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| |#1| (-368)))) (-1692 (((-858) $) 137) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) 87)) (-2047 (($ $) NIL (|has| |#1| (-368))) (((-3 $ "failed") $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3914 (((-767)) 143)) (-4013 (((-1257 $)) 109) (((-1257 $) (-917)) 49)) (-3223 (((-112) $ $) NIL)) (-3772 (((-112) $) NIL)) (-2239 (($) 111 T CONST)) (-2253 (($) 32 T CONST)) (-3715 (($ $) 68 (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3213 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-1718 (((-112) $ $) 107)) (-1836 (($ $ $) 99) (($ $ |#1|) 100)) (-1825 (($ $) 80) (($ $ $) 105)) (-1813 (($ $ $) 103)) (** (($ $ (-917)) NIL) (($ $ (-767)) 44) (($ $ (-563)) 129)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 78) (($ $ $) 56) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 76)))
(((-355 |#1| |#2|) (-329 |#1|) (-349) (-1165 |#1|)) (T -355))
NIL
(-329 |#1|)
-((-4091 ((|#1| (-1165 |#2|)) 52)))
-(((-356 |#1| |#2|) (-10 -7 (-15 -4091 (|#1| (-1165 |#2|)))) (-13 (-402) (-10 -7 (-15 -1693 (|#1| |#2|)) (-15 -1476 ((-917) |#1|)) (-15 -4315 ((-1257 |#1|) (-917))) (-15 -2350 (|#1| |#1|)))) (-349)) (T -356))
-((-4091 (*1 *2 *3) (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-4 *2 (-13 (-402) (-10 -7 (-15 -1693 (*2 *4)) (-15 -1476 ((-917) *2)) (-15 -4315 ((-1257 *2) (-917))) (-15 -2350 (*2 *2))))) (-5 *1 (-356 *2 *4)))))
-(-10 -7 (-15 -4091 (|#1| (-1165 |#2|))))
-((-4046 (((-954 (-1165 |#1|)) (-1165 |#1|)) 36)) (-1691 (((-1165 |#1|) (-917) (-917)) 112) (((-1165 |#1|) (-917)) 111)) (-2366 (((-112) (-1165 |#1|)) 84)) (-4377 (((-917) (-917)) 71)) (-3660 (((-917) (-917)) 74)) (-4294 (((-917) (-917)) 69)) (-2890 (((-112) (-1165 |#1|)) 88)) (-4028 (((-3 (-1165 |#1|) "failed") (-1165 |#1|)) 100)) (-3113 (((-3 (-1165 |#1|) "failed") (-1165 |#1|)) 103)) (-1462 (((-3 (-1165 |#1|) "failed") (-1165 |#1|)) 102)) (-2197 (((-3 (-1165 |#1|) "failed") (-1165 |#1|)) 101)) (-3296 (((-3 (-1165 |#1|) "failed") (-1165 |#1|)) 97)) (-3666 (((-1165 |#1|) (-1165 |#1|)) 62)) (-3015 (((-1165 |#1|) (-917)) 106)) (-3120 (((-1165 |#1|) (-917)) 109)) (-3702 (((-1165 |#1|) (-917)) 108)) (-4380 (((-1165 |#1|) (-917)) 107)) (-4191 (((-1165 |#1|) (-917)) 104)))
-(((-357 |#1|) (-10 -7 (-15 -2366 ((-112) (-1165 |#1|))) (-15 -2890 ((-112) (-1165 |#1|))) (-15 -4294 ((-917) (-917))) (-15 -4377 ((-917) (-917))) (-15 -3660 ((-917) (-917))) (-15 -4191 ((-1165 |#1|) (-917))) (-15 -3015 ((-1165 |#1|) (-917))) (-15 -4380 ((-1165 |#1|) (-917))) (-15 -3702 ((-1165 |#1|) (-917))) (-15 -3120 ((-1165 |#1|) (-917))) (-15 -3296 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -4028 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -2197 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -1462 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -3113 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -1691 ((-1165 |#1|) (-917))) (-15 -1691 ((-1165 |#1|) (-917) (-917))) (-15 -3666 ((-1165 |#1|) (-1165 |#1|))) (-15 -4046 ((-954 (-1165 |#1|)) (-1165 |#1|)))) (-349)) (T -357))
-((-4046 (*1 *2 *3) (-12 (-4 *4 (-349)) (-5 *2 (-954 (-1165 *4))) (-5 *1 (-357 *4)) (-5 *3 (-1165 *4)))) (-3666 (*1 *2 *2) (-12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))) (-1691 (*1 *2 *3 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4)) (-4 *4 (-349)))) (-1691 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4)) (-4 *4 (-349)))) (-3113 (*1 *2 *2) (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))) (-1462 (*1 *2 *2) (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))) (-2197 (*1 *2 *2) (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))) (-4028 (*1 *2 *2) (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))) (-3296 (*1 *2 *2) (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))) (-3120 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4)) (-4 *4 (-349)))) (-3702 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4)) (-4 *4 (-349)))) (-4380 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4)) (-4 *4 (-349)))) (-3015 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4)) (-4 *4 (-349)))) (-4191 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4)) (-4 *4 (-349)))) (-3660 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-357 *3)) (-4 *3 (-349)))) (-4377 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-357 *3)) (-4 *3 (-349)))) (-4294 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-357 *3)) (-4 *3 (-349)))) (-2890 (*1 *2 *3) (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-5 *2 (-112)) (-5 *1 (-357 *4)))) (-2366 (*1 *2 *3) (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-5 *2 (-112)) (-5 *1 (-357 *4)))))
-(-10 -7 (-15 -2366 ((-112) (-1165 |#1|))) (-15 -2890 ((-112) (-1165 |#1|))) (-15 -4294 ((-917) (-917))) (-15 -4377 ((-917) (-917))) (-15 -3660 ((-917) (-917))) (-15 -4191 ((-1165 |#1|) (-917))) (-15 -3015 ((-1165 |#1|) (-917))) (-15 -4380 ((-1165 |#1|) (-917))) (-15 -3702 ((-1165 |#1|) (-917))) (-15 -3120 ((-1165 |#1|) (-917))) (-15 -3296 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -4028 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -2197 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -1462 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -3113 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -1691 ((-1165 |#1|) (-917))) (-15 -1691 ((-1165 |#1|) (-917) (-917))) (-15 -3666 ((-1165 |#1|) (-1165 |#1|))) (-15 -4046 ((-954 (-1165 |#1|)) (-1165 |#1|))))
-((-2748 (((-3 (-640 |#3|) "failed") (-640 |#3|) |#3|) 33)))
-(((-358 |#1| |#2| |#3|) (-10 -7 (-15 -2748 ((-3 (-640 |#3|) "failed") (-640 |#3|) |#3|))) (-349) (-1233 |#1|) (-1233 |#2|)) (T -358))
-((-2748 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-349)) (-5 *1 (-358 *4 *5 *3)))))
-(-10 -7 (-15 -2748 ((-3 (-640 |#3|) "failed") (-640 |#3|) |#3|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2388 (((-112) $) NIL)) (-3259 (((-767)) NIL)) (-1733 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-2752 (((-1181 (-917) (-767)) (-563)) NIL (|has| |#1| (-368)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-3749 (((-767)) NIL (|has| |#1| (-368)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL)) (-2058 ((|#1| $) NIL)) (-3937 (($ (-1257 |#1|)) NIL)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-368)))) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) NIL (|has| |#1| (-368)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-1571 (($) NIL (|has| |#1| (-368)))) (-2366 (((-112) $) NIL (|has| |#1| (-368)))) (-1637 (($ $ (-767)) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2468 (((-112) $) NIL)) (-3254 (((-917) $) NIL (|has| |#1| (-368))) (((-829 (-917)) $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3827 (((-112) $) NIL)) (-3723 (($) NIL (|has| |#1| (-368)))) (-2890 (((-112) $) NIL (|has| |#1| (-368)))) (-3793 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-2408 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3941 (((-1165 |#1|) $) NIL) (((-1165 $) $ (-917)) NIL (|has| |#1| (-368)))) (-1476 (((-917) $) NIL (|has| |#1| (-368)))) (-2229 (((-1165 |#1|) $) NIL (|has| |#1| (-368)))) (-1631 (((-1165 |#1|) $) NIL (|has| |#1| (-368))) (((-3 (-1165 |#1|) "failed") $ $) NIL (|has| |#1| (-368)))) (-4166 (($ $ (-1165 |#1|)) NIL (|has| |#1| (-368)))) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| |#1| (-368)) CONST)) (-2555 (($ (-917)) NIL (|has| |#1| (-368)))) (-3013 (((-112) $) NIL)) (-1694 (((-1113) $) NIL)) (-4333 (($) NIL (|has| |#1| (-368)))) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) NIL (|has| |#1| (-368)))) (-2174 (((-418 $) $) NIL)) (-1467 (((-829 (-917))) NIL) (((-917)) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-1423 (((-767) $) NIL (|has| |#1| (-368))) (((-3 (-767) "failed") $ $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3533 (((-134)) NIL)) (-4202 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-4167 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3390 (((-1165 |#1|)) NIL)) (-4284 (($) NIL (|has| |#1| (-368)))) (-1484 (($) NIL (|has| |#1| (-368)))) (-1880 (((-1257 |#1|) $) NIL) (((-684 |#1|) (-1257 $)) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| |#1| (-368)))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) NIL)) (-2779 (($ $) NIL (|has| |#1| (-368))) (((-3 $ "failed") $) NIL (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-1675 (((-767)) NIL)) (-4315 (((-1257 $)) NIL) (((-1257 $) (-917)) NIL)) (-2126 (((-112) $ $) NIL)) (-3152 (((-112) $) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-2350 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3209 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-1851 ((|#1| (-1165 |#2|)) 52)))
+(((-356 |#1| |#2|) (-10 -7 (-15 -1851 (|#1| (-1165 |#2|)))) (-13 (-402) (-10 -7 (-15 -1692 (|#1| |#2|)) (-15 -3990 ((-917) |#1|)) (-15 -4013 ((-1257 |#1|) (-917))) (-15 -3715 (|#1| |#1|)))) (-349)) (T -356))
+((-1851 (*1 *2 *3) (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-4 *2 (-13 (-402) (-10 -7 (-15 -1692 (*2 *4)) (-15 -3990 ((-917) *2)) (-15 -4013 ((-1257 *2) (-917))) (-15 -3715 (*2 *2))))) (-5 *1 (-356 *2 *4)))))
+(-10 -7 (-15 -1851 (|#1| (-1165 |#2|))))
+((-1840 (((-954 (-1165 |#1|)) (-1165 |#1|)) 36)) (-1690 (((-1165 |#1|) (-917) (-917)) 112) (((-1165 |#1|) (-917)) 111)) (-1656 (((-112) (-1165 |#1|)) 84)) (-1681 (((-917) (-917)) 71)) (-1696 (((-917) (-917)) 74)) (-1667 (((-917) (-917)) 69)) (-4002 (((-112) (-1165 |#1|)) 88)) (-1784 (((-3 (-1165 |#1|) "failed") (-1165 |#1|)) 100)) (-1817 (((-3 (-1165 |#1|) "failed") (-1165 |#1|)) 103)) (-1806 (((-3 (-1165 |#1|) "failed") (-1165 |#1|)) 102)) (-1795 (((-3 (-1165 |#1|) "failed") (-1165 |#1|)) 101)) (-1771 (((-3 (-1165 |#1|) "failed") (-1165 |#1|)) 97)) (-1829 (((-1165 |#1|) (-1165 |#1|)) 62)) (-1722 (((-1165 |#1|) (-917)) 106)) (-1759 (((-1165 |#1|) (-917)) 109)) (-1748 (((-1165 |#1|) (-917)) 108)) (-1736 (((-1165 |#1|) (-917)) 107)) (-1710 (((-1165 |#1|) (-917)) 104)))
+(((-357 |#1|) (-10 -7 (-15 -1656 ((-112) (-1165 |#1|))) (-15 -4002 ((-112) (-1165 |#1|))) (-15 -1667 ((-917) (-917))) (-15 -1681 ((-917) (-917))) (-15 -1696 ((-917) (-917))) (-15 -1710 ((-1165 |#1|) (-917))) (-15 -1722 ((-1165 |#1|) (-917))) (-15 -1736 ((-1165 |#1|) (-917))) (-15 -1748 ((-1165 |#1|) (-917))) (-15 -1759 ((-1165 |#1|) (-917))) (-15 -1771 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -1784 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -1795 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -1806 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -1817 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -1690 ((-1165 |#1|) (-917))) (-15 -1690 ((-1165 |#1|) (-917) (-917))) (-15 -1829 ((-1165 |#1|) (-1165 |#1|))) (-15 -1840 ((-954 (-1165 |#1|)) (-1165 |#1|)))) (-349)) (T -357))
+((-1840 (*1 *2 *3) (-12 (-4 *4 (-349)) (-5 *2 (-954 (-1165 *4))) (-5 *1 (-357 *4)) (-5 *3 (-1165 *4)))) (-1829 (*1 *2 *2) (-12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))) (-1690 (*1 *2 *3 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4)) (-4 *4 (-349)))) (-1690 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4)) (-4 *4 (-349)))) (-1817 (*1 *2 *2) (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))) (-1806 (*1 *2 *2) (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))) (-1795 (*1 *2 *2) (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))) (-1784 (*1 *2 *2) (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))) (-1771 (*1 *2 *2) (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))) (-1759 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4)) (-4 *4 (-349)))) (-1748 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4)) (-4 *4 (-349)))) (-1736 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4)) (-4 *4 (-349)))) (-1722 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4)) (-4 *4 (-349)))) (-1710 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4)) (-4 *4 (-349)))) (-1696 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-357 *3)) (-4 *3 (-349)))) (-1681 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-357 *3)) (-4 *3 (-349)))) (-1667 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-357 *3)) (-4 *3 (-349)))) (-4002 (*1 *2 *3) (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-5 *2 (-112)) (-5 *1 (-357 *4)))) (-1656 (*1 *2 *3) (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-5 *2 (-112)) (-5 *1 (-357 *4)))))
+(-10 -7 (-15 -1656 ((-112) (-1165 |#1|))) (-15 -4002 ((-112) (-1165 |#1|))) (-15 -1667 ((-917) (-917))) (-15 -1681 ((-917) (-917))) (-15 -1696 ((-917) (-917))) (-15 -1710 ((-1165 |#1|) (-917))) (-15 -1722 ((-1165 |#1|) (-917))) (-15 -1736 ((-1165 |#1|) (-917))) (-15 -1748 ((-1165 |#1|) (-917))) (-15 -1759 ((-1165 |#1|) (-917))) (-15 -1771 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -1784 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -1795 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -1806 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -1817 ((-3 (-1165 |#1|) "failed") (-1165 |#1|))) (-15 -1690 ((-1165 |#1|) (-917))) (-15 -1690 ((-1165 |#1|) (-917) (-917))) (-15 -1829 ((-1165 |#1|) (-1165 |#1|))) (-15 -1840 ((-954 (-1165 |#1|)) (-1165 |#1|))))
+((-2066 (((-3 (-640 |#3|) "failed") (-640 |#3|) |#3|) 33)))
+(((-358 |#1| |#2| |#3|) (-10 -7 (-15 -2066 ((-3 (-640 |#3|) "failed") (-640 |#3|) |#3|))) (-349) (-1233 |#1|) (-1233 |#2|)) (T -358))
+((-2066 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-349)) (-5 *1 (-358 *4 *5 *3)))))
+(-10 -7 (-15 -2066 ((-3 (-640 |#3|) "failed") (-640 |#3|) |#3|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3761 (((-112) $) NIL)) (-3728 (((-767)) NIL)) (-1731 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-1597 (((-1181 (-917) (-767)) (-563)) NIL (|has| |#1| (-368)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-3750 (((-767)) NIL (|has| |#1| (-368)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL)) (-2057 ((|#1| $) NIL)) (-3458 (($ (-1257 |#1|)) NIL)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-368)))) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) NIL (|has| |#1| (-368)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-4036 (($) NIL (|has| |#1| (-368)))) (-1656 (((-112) $) NIL (|has| |#1| (-368)))) (-3188 (($ $ (-767)) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2560 (((-112) $) NIL)) (-1775 (((-917) $) NIL (|has| |#1| (-368))) (((-829 (-917)) $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3401 (((-112) $) NIL)) (-4024 (($) NIL (|has| |#1| (-368)))) (-4002 (((-112) $) NIL (|has| |#1| (-368)))) (-3975 ((|#1| $) NIL) (($ $ (-917)) NIL (|has| |#1| (-368)))) (-1983 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4035 (((-1165 |#1|) $) NIL) (((-1165 $) $ (-917)) NIL (|has| |#1| (-368)))) (-3990 (((-917) $) NIL (|has| |#1| (-368)))) (-2196 (((-1165 |#1|) $) NIL (|has| |#1| (-368)))) (-2184 (((-1165 |#1|) $) NIL (|has| |#1| (-368))) (((-3 (-1165 |#1|) "failed") $ $) NIL (|has| |#1| (-368)))) (-2207 (($ $ (-1165 |#1|)) NIL (|has| |#1| (-368)))) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| |#1| (-368)) CONST)) (-2552 (($ (-917)) NIL (|has| |#1| (-368)))) (-3751 (((-112) $) NIL)) (-1693 (((-1113) $) NIL)) (-4334 (($) NIL (|has| |#1| (-368)))) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) NIL (|has| |#1| (-368)))) (-2173 (((-418 $) $) NIL)) (-3740 (((-829 (-917))) NIL) (((-917)) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3196 (((-767) $) NIL (|has| |#1| (-368))) (((-3 (-767) "failed") $ $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3526 (((-134)) NIL)) (-4203 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3871 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3402 (((-1165 |#1|)) NIL)) (-1586 (($) NIL (|has| |#1| (-368)))) (-2220 (($) NIL (|has| |#1| (-368)))) (-3759 (((-1257 |#1|) $) NIL) (((-684 |#1|) (-1257 $)) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| |#1| (-368)))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) NIL)) (-2047 (($ $) NIL (|has| |#1| (-368))) (((-3 $ "failed") $) NIL (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3914 (((-767)) NIL)) (-4013 (((-1257 $)) NIL) (((-1257 $) (-917)) NIL)) (-3223 (((-112) $ $) NIL)) (-3772 (((-112) $) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3715 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-3213 (($ $) NIL (|has| |#1| (-368))) (($ $ (-767)) NIL (|has| |#1| (-368)))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-359 |#1| |#2|) (-329 |#1|) (-349) (-917)) (T -359))
NIL
(-329 |#1|)
-((-3515 (((-112) (-640 (-948 |#1|))) 33)) (-4059 (((-640 (-948 |#1|)) (-640 (-948 |#1|))) 45)) (-3122 (((-3 (-640 (-948 |#1|)) "failed") (-640 (-948 |#1|))) 40)))
-(((-360 |#1| |#2|) (-10 -7 (-15 -3515 ((-112) (-640 (-948 |#1|)))) (-15 -3122 ((-3 (-640 (-948 |#1|)) "failed") (-640 (-948 |#1|)))) (-15 -4059 ((-640 (-948 |#1|)) (-640 (-948 |#1|))))) (-452) (-640 (-1169))) (T -360))
-((-4059 (*1 *2 *2) (-12 (-5 *2 (-640 (-948 *3))) (-4 *3 (-452)) (-5 *1 (-360 *3 *4)) (-14 *4 (-640 (-1169))))) (-3122 (*1 *2 *2) (|partial| -12 (-5 *2 (-640 (-948 *3))) (-4 *3 (-452)) (-5 *1 (-360 *3 *4)) (-14 *4 (-640 (-1169))))) (-3515 (*1 *2 *3) (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-452)) (-5 *2 (-112)) (-5 *1 (-360 *4 *5)) (-14 *5 (-640 (-1169))))))
-(-10 -7 (-15 -3515 ((-112) (-640 (-948 |#1|)))) (-15 -3122 ((-3 (-640 (-948 |#1|)) "failed") (-640 (-948 |#1|)))) (-15 -4059 ((-640 (-948 |#1|)) (-640 (-948 |#1|)))))
-((-1677 (((-112) $ $) NIL)) (-3749 (((-767) $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL)) (-2058 ((|#1| $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-3827 (((-112) $) 15)) (-2768 ((|#1| $ (-563)) NIL)) (-4208 (((-563) $ (-563)) NIL)) (-1633 (($ (-1 |#1| |#1|) $) 32)) (-2163 (($ (-1 (-563) (-563)) $) 24)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 26)) (-1694 (((-1113) $) NIL)) (-2760 (((-640 (-2 (|:| |gen| |#1|) (|:| -3368 (-563)))) $) 28)) (-4339 (($ $ $) NIL)) (-2146 (($ $ $) NIL)) (-1693 (((-858) $) 38) (($ |#1|) NIL)) (-2254 (($) 9 T CONST)) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL) (($ |#1| (-563)) 17)) (* (($ $ $) 43) (($ |#1| $) 21) (($ $ |#1|) 19)))
-(((-361 |#1|) (-13 (-473) (-1034 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-563))) (-15 -3749 ((-767) $)) (-15 -4208 ((-563) $ (-563))) (-15 -2768 (|#1| $ (-563))) (-15 -2163 ($ (-1 (-563) (-563)) $)) (-15 -1633 ($ (-1 |#1| |#1|) $)) (-15 -2760 ((-640 (-2 (|:| |gen| |#1|) (|:| -3368 (-563)))) $)))) (-1093)) (T -361))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1093)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1093)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-361 *2)) (-4 *2 (-1093)))) (-3749 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-361 *3)) (-4 *3 (-1093)))) (-4208 (*1 *2 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-361 *3)) (-4 *3 (-1093)))) (-2768 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-361 *2)) (-4 *2 (-1093)))) (-2163 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-563) (-563))) (-5 *1 (-361 *3)) (-4 *3 (-1093)))) (-1633 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-361 *3)))) (-2760 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3368 (-563))))) (-5 *1 (-361 *3)) (-4 *3 (-1093)))))
-(-13 (-473) (-1034 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-563))) (-15 -3749 ((-767) $)) (-15 -4208 ((-563) $ (-563))) (-15 -2768 (|#1| $ (-563))) (-15 -2163 ($ (-1 (-563) (-563)) $)) (-15 -1633 ($ (-1 |#1| |#1|) $)) (-15 -2760 ((-640 (-2 (|:| |gen| |#1|) (|:| -3368 (-563)))) $))))
-((-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 13)) (-4223 (($ $) 14)) (-3205 (((-418 $) $) 29)) (-2468 (((-112) $) 25)) (-2688 (($ $) 18)) (-3548 (($ $ $) 22) (($ (-640 $)) NIL)) (-2174 (((-418 $) $) 30)) (-3008 (((-3 $ "failed") $ $) 21)) (-2628 (((-767) $) 24)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 34)) (-2126 (((-112) $ $) 15)) (-1837 (($ $ $) 32)))
-(((-362 |#1|) (-10 -8 (-15 -1837 (|#1| |#1| |#1|)) (-15 -2688 (|#1| |#1|)) (-15 -2468 ((-112) |#1|)) (-15 -3205 ((-418 |#1|) |#1|)) (-15 -2174 ((-418 |#1|) |#1|)) (-15 -2452 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -2628 ((-767) |#1|)) (-15 -3548 (|#1| (-640 |#1|))) (-15 -3548 (|#1| |#1| |#1|)) (-15 -2126 ((-112) |#1| |#1|)) (-15 -4223 (|#1| |#1|)) (-15 -4372 ((-2 (|:| -1414 |#1|) (|:| -4394 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#1|))) (-363)) (T -362))
-NIL
-(-10 -8 (-15 -1837 (|#1| |#1| |#1|)) (-15 -2688 (|#1| |#1|)) (-15 -2468 ((-112) |#1|)) (-15 -3205 ((-418 |#1|) |#1|)) (-15 -2174 ((-418 |#1|) |#1|)) (-15 -2452 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -2628 ((-767) |#1|)) (-15 -3548 (|#1| (-640 |#1|))) (-15 -3548 (|#1| |#1| |#1|)) (-15 -2126 ((-112) |#1| |#1|)) (-15 -4223 (|#1| |#1|)) (-15 -4372 ((-2 (|:| -1414 |#1|) (|:| -4394 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-1495 (((-3 $ "failed") $ $) 19)) (-4335 (($ $) 74)) (-3205 (((-418 $) $) 73)) (-1919 (((-112) $ $) 60)) (-4239 (($) 17 T CONST)) (-3090 (($ $ $) 56)) (-3400 (((-3 $ "failed") $) 33)) (-3050 (($ $ $) 57)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 52)) (-2468 (((-112) $) 72)) (-3827 (((-112) $) 31)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-2688 (($ $) 71)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-2174 (((-418 $) $) 75)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3008 (((-3 $ "failed") $ $) 43)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-2628 (((-767) $) 59)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 58)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67)) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 40)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1837 (($ $ $) 66)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68)))
+((-2455 (((-112) (-640 (-948 |#1|))) 33)) (-2478 (((-640 (-948 |#1|)) (-640 (-948 |#1|))) 45)) (-2466 (((-3 (-640 (-948 |#1|)) "failed") (-640 (-948 |#1|))) 40)))
+(((-360 |#1| |#2|) (-10 -7 (-15 -2455 ((-112) (-640 (-948 |#1|)))) (-15 -2466 ((-3 (-640 (-948 |#1|)) "failed") (-640 (-948 |#1|)))) (-15 -2478 ((-640 (-948 |#1|)) (-640 (-948 |#1|))))) (-452) (-640 (-1169))) (T -360))
+((-2478 (*1 *2 *2) (-12 (-5 *2 (-640 (-948 *3))) (-4 *3 (-452)) (-5 *1 (-360 *3 *4)) (-14 *4 (-640 (-1169))))) (-2466 (*1 *2 *2) (|partial| -12 (-5 *2 (-640 (-948 *3))) (-4 *3 (-452)) (-5 *1 (-360 *3 *4)) (-14 *4 (-640 (-1169))))) (-2455 (*1 *2 *3) (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-452)) (-5 *2 (-112)) (-5 *1 (-360 *4 *5)) (-14 *5 (-640 (-1169))))))
+(-10 -7 (-15 -2455 ((-112) (-640 (-948 |#1|)))) (-15 -2466 ((-3 (-640 (-948 |#1|)) "failed") (-640 (-948 |#1|)))) (-15 -2478 ((-640 (-948 |#1|)) (-640 (-948 |#1|)))))
+((-1677 (((-112) $ $) NIL)) (-3750 (((-767) $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL)) (-2057 ((|#1| $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3401 (((-112) $) 15)) (-1347 ((|#1| $ (-563)) NIL)) (-1357 (((-563) $ (-563)) NIL)) (-1499 (($ (-1 |#1| |#1|) $) 32)) (-1510 (($ (-1 (-563) (-563)) $) 24)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 26)) (-1693 (((-1113) $) NIL)) (-1337 (((-640 (-2 (|:| |gen| |#1|) (|:| -3372 (-563)))) $) 28)) (-2150 (($ $ $) NIL)) (-1745 (($ $ $) NIL)) (-1692 (((-858) $) 38) (($ |#1|) NIL)) (-2253 (($) 9 T CONST)) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL) (($ |#1| (-563)) 17)) (* (($ $ $) 43) (($ |#1| $) 21) (($ $ |#1|) 19)))
+(((-361 |#1|) (-13 (-473) (-1034 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-563))) (-15 -3750 ((-767) $)) (-15 -1357 ((-563) $ (-563))) (-15 -1347 (|#1| $ (-563))) (-15 -1510 ($ (-1 (-563) (-563)) $)) (-15 -1499 ($ (-1 |#1| |#1|) $)) (-15 -1337 ((-640 (-2 (|:| |gen| |#1|) (|:| -3372 (-563)))) $)))) (-1093)) (T -361))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1093)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-361 *2)) (-4 *2 (-1093)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-361 *2)) (-4 *2 (-1093)))) (-3750 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-361 *3)) (-4 *3 (-1093)))) (-1357 (*1 *2 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-361 *3)) (-4 *3 (-1093)))) (-1347 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-361 *2)) (-4 *2 (-1093)))) (-1510 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-563) (-563))) (-5 *1 (-361 *3)) (-4 *3 (-1093)))) (-1499 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-361 *3)))) (-1337 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3372 (-563))))) (-5 *1 (-361 *3)) (-4 *3 (-1093)))))
+(-13 (-473) (-1034 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-563))) (-15 -3750 ((-767) $)) (-15 -1357 ((-563) $ (-563))) (-15 -1347 (|#1| $ (-563))) (-15 -1510 ($ (-1 (-563) (-563)) $)) (-15 -1499 ($ (-1 |#1| |#1|) $)) (-15 -1337 ((-640 (-2 (|:| |gen| |#1|) (|:| -3372 (-563)))) $))))
+((-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 13)) (-3231 (($ $) 14)) (-2802 (((-418 $) $) 29)) (-2560 (((-112) $) 25)) (-2687 (($ $) 18)) (-3551 (($ $ $) 22) (($ (-640 $)) NIL)) (-2173 (((-418 $) $) 30)) (-3012 (((-3 $ "failed") $ $) 21)) (-1993 (((-767) $) 24)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 34)) (-3223 (((-112) $ $) 15)) (-1836 (($ $ $) 32)))
+(((-362 |#1|) (-10 -8 (-15 -1836 (|#1| |#1| |#1|)) (-15 -2687 (|#1| |#1|)) (-15 -2560 ((-112) |#1|)) (-15 -2802 ((-418 |#1|) |#1|)) (-15 -2173 ((-418 |#1|) |#1|)) (-15 -3263 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -1993 ((-767) |#1|)) (-15 -3551 (|#1| (-640 |#1|))) (-15 -3551 (|#1| |#1| |#1|)) (-15 -3223 ((-112) |#1| |#1|)) (-15 -3231 (|#1| |#1|)) (-15 -3241 ((-2 (|:| -3245 |#1|) (|:| -4395 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#1|))) (-363)) (T -362))
+NIL
+(-10 -8 (-15 -1836 (|#1| |#1| |#1|)) (-15 -2687 (|#1| |#1|)) (-15 -2560 ((-112) |#1|)) (-15 -2802 ((-418 |#1|) |#1|)) (-15 -2173 ((-418 |#1|) |#1|)) (-15 -3263 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -1993 ((-767) |#1|)) (-15 -3551 (|#1| (-640 |#1|))) (-15 -3551 (|#1| |#1| |#1|)) (-15 -3223 ((-112) |#1| |#1|)) (-15 -3231 (|#1| |#1|)) (-15 -3241 ((-2 (|:| -3245 |#1|) (|:| -4395 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-3905 (((-3 $ "failed") $ $) 19)) (-1798 (($ $) 74)) (-2802 (((-418 $) $) 73)) (-2003 (((-112) $ $) 60)) (-2569 (($) 17 T CONST)) (-3094 (($ $ $) 56)) (-3951 (((-3 $ "failed") $) 33)) (-3054 (($ $ $) 57)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 52)) (-2560 (((-112) $) 72)) (-3401 (((-112) $) 31)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-2687 (($ $) 71)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-2173 (((-418 $) $) 75)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3012 (((-3 $ "failed") $ $) 43)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-1993 (((-767) $) 59)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 58)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67)) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 40)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1836 (($ $ $) 66)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68)))
(((-363) (-140)) (T -363))
-((-1837 (*1 *1 *1 *1) (-4 *1 (-363))))
-(-13 (-307) (-1212) (-243) (-10 -8 (-15 -1837 ($ $ $)) (-6 -4405) (-6 -4399)))
+((-1836 (*1 *1 *1 *1) (-4 *1 (-363))))
+(-13 (-307) (-1212) (-243) (-10 -8 (-15 -1836 ($ $ $)) (-6 -4406) (-6 -4400)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-131) . T) ((-613 #0#) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-243) . T) ((-290) . T) ((-307) . T) ((-452) . T) ((-555) . T) ((-643 #0#) . T) ((-643 $) . T) ((-713 #0#) . T) ((-713 $) . T) ((-722) . T) ((-916) . T) ((-1051 #0#) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1212) . T))
-((-1677 (((-112) $ $) 7)) (-2056 ((|#2| $ |#2|) 13)) (-3010 (($ $ (-1151)) 18)) (-3538 ((|#2| $) 14)) (-3405 (($ |#1|) 20) (($ |#1| (-1151)) 19)) (-3348 ((|#1| $) 16)) (-3573 (((-1151) $) 9)) (-2302 (((-1151) $) 15)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-3004 (($ $) 17)) (-1718 (((-112) $ $) 6)))
+((-1677 (((-112) $ $) 7)) (-1862 ((|#2| $ |#2|) 13)) (-1905 (($ $ (-1151)) 18)) (-1872 ((|#2| $) 14)) (-3409 (($ |#1|) 20) (($ |#1| (-1151)) 19)) (-3352 ((|#1| $) 16)) (-3854 (((-1151) $) 9)) (-1883 (((-1151) $) 15)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1895 (($ $) 17)) (-1718 (((-112) $ $) 6)))
(((-364 |#1| |#2|) (-140) (-1093) (-1093)) (T -364))
-((-3405 (*1 *1 *2) (-12 (-4 *1 (-364 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-3405 (*1 *1 *2 *3) (-12 (-5 *3 (-1151)) (-4 *1 (-364 *2 *4)) (-4 *2 (-1093)) (-4 *4 (-1093)))) (-3010 (*1 *1 *1 *2) (-12 (-5 *2 (-1151)) (-4 *1 (-364 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-3004 (*1 *1 *1) (-12 (-4 *1 (-364 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-3348 (*1 *2 *1) (-12 (-4 *1 (-364 *2 *3)) (-4 *3 (-1093)) (-4 *2 (-1093)))) (-2302 (*1 *2 *1) (-12 (-4 *1 (-364 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-5 *2 (-1151)))) (-3538 (*1 *2 *1) (-12 (-4 *1 (-364 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))) (-2056 (*1 *2 *1 *2) (-12 (-4 *1 (-364 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))))
-(-13 (-1093) (-10 -8 (-15 -3405 ($ |t#1|)) (-15 -3405 ($ |t#1| (-1151))) (-15 -3010 ($ $ (-1151))) (-15 -3004 ($ $)) (-15 -3348 (|t#1| $)) (-15 -2302 ((-1151) $)) (-15 -3538 (|t#2| $)) (-15 -2056 (|t#2| $ |t#2|))))
+((-3409 (*1 *1 *2) (-12 (-4 *1 (-364 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-3409 (*1 *1 *2 *3) (-12 (-5 *3 (-1151)) (-4 *1 (-364 *2 *4)) (-4 *2 (-1093)) (-4 *4 (-1093)))) (-1905 (*1 *1 *1 *2) (-12 (-5 *2 (-1151)) (-4 *1 (-364 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-1895 (*1 *1 *1) (-12 (-4 *1 (-364 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-3352 (*1 *2 *1) (-12 (-4 *1 (-364 *2 *3)) (-4 *3 (-1093)) (-4 *2 (-1093)))) (-1883 (*1 *2 *1) (-12 (-4 *1 (-364 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-5 *2 (-1151)))) (-1872 (*1 *2 *1) (-12 (-4 *1 (-364 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))) (-1862 (*1 *2 *1 *2) (-12 (-4 *1 (-364 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))))
+(-13 (-1093) (-10 -8 (-15 -3409 ($ |t#1|)) (-15 -3409 ($ |t#1| (-1151))) (-15 -1905 ($ $ (-1151))) (-15 -1895 ($ $)) (-15 -3352 (|t#1| $)) (-15 -1883 ((-1151) $)) (-15 -1872 (|t#2| $)) (-15 -1862 (|t#2| $ |t#2|))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-2056 ((|#1| $ |#1|) 30)) (-3010 (($ $ (-1151)) 22)) (-2594 (((-3 |#1| "failed") $) 29)) (-3538 ((|#1| $) 27)) (-3405 (($ (-388)) 21) (($ (-388) (-1151)) 20)) (-3348 (((-388) $) 24)) (-3573 (((-1151) $) NIL)) (-2302 (((-1151) $) 25)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 19)) (-3004 (($ $) 23)) (-1718 (((-112) $ $) 18)))
-(((-365 |#1|) (-13 (-364 (-388) |#1|) (-10 -8 (-15 -2594 ((-3 |#1| "failed") $)))) (-1093)) (T -365))
-((-2594 (*1 *2 *1) (|partial| -12 (-5 *1 (-365 *2)) (-4 *2 (-1093)))))
-(-13 (-364 (-388) |#1|) (-10 -8 (-15 -2594 ((-3 |#1| "failed") $))))
-((-3507 (((-1257 (-684 |#2|)) (-1257 $)) 61)) (-4220 (((-684 |#2|) (-1257 $)) 120)) (-2480 ((|#2| $) 32)) (-3043 (((-684 |#2|) $ (-1257 $)) 123)) (-4154 (((-3 $ "failed") $) 75)) (-3830 ((|#2| $) 35)) (-3763 (((-1165 |#2|) $) 83)) (-1824 ((|#2| (-1257 $)) 106)) (-2876 (((-1165 |#2|) $) 28)) (-2182 (((-112)) 100)) (-3937 (($ (-1257 |#2|) (-1257 $)) 113)) (-3400 (((-3 $ "failed") $) 79)) (-3901 (((-112)) 95)) (-3308 (((-112)) 90)) (-3104 (((-112)) 53)) (-2328 (((-684 |#2|) (-1257 $)) 118)) (-2842 ((|#2| $) 31)) (-1823 (((-684 |#2|) $ (-1257 $)) 122)) (-3856 (((-3 $ "failed") $) 73)) (-2199 ((|#2| $) 34)) (-2604 (((-1165 |#2|) $) 82)) (-4111 ((|#2| (-1257 $)) 104)) (-2665 (((-1165 |#2|) $) 26)) (-4012 (((-112)) 99)) (-2136 (((-112)) 92)) (-1789 (((-112)) 51)) (-2047 (((-112)) 87)) (-4084 (((-112)) 101)) (-1880 (((-1257 |#2|) $ (-1257 $)) NIL) (((-684 |#2|) (-1257 $) (-1257 $)) 111)) (-1936 (((-112)) 97)) (-2138 (((-640 (-1257 |#2|))) 86)) (-1402 (((-112)) 98)) (-2483 (((-112)) 96)) (-3777 (((-112)) 46)) (-2128 (((-112)) 102)))
-(((-366 |#1| |#2|) (-10 -8 (-15 -3763 ((-1165 |#2|) |#1|)) (-15 -2604 ((-1165 |#2|) |#1|)) (-15 -2138 ((-640 (-1257 |#2|)))) (-15 -4154 ((-3 |#1| "failed") |#1|)) (-15 -3856 ((-3 |#1| "failed") |#1|)) (-15 -3400 ((-3 |#1| "failed") |#1|)) (-15 -3308 ((-112))) (-15 -2136 ((-112))) (-15 -3901 ((-112))) (-15 -1789 ((-112))) (-15 -3104 ((-112))) (-15 -2047 ((-112))) (-15 -2128 ((-112))) (-15 -4084 ((-112))) (-15 -2182 ((-112))) (-15 -4012 ((-112))) (-15 -3777 ((-112))) (-15 -1402 ((-112))) (-15 -2483 ((-112))) (-15 -1936 ((-112))) (-15 -2876 ((-1165 |#2|) |#1|)) (-15 -2665 ((-1165 |#2|) |#1|)) (-15 -4220 ((-684 |#2|) (-1257 |#1|))) (-15 -2328 ((-684 |#2|) (-1257 |#1|))) (-15 -1824 (|#2| (-1257 |#1|))) (-15 -4111 (|#2| (-1257 |#1|))) (-15 -3937 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -1880 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3830 (|#2| |#1|)) (-15 -2199 (|#2| |#1|)) (-15 -2480 (|#2| |#1|)) (-15 -2842 (|#2| |#1|)) (-15 -3043 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -1823 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -3507 ((-1257 (-684 |#2|)) (-1257 |#1|)))) (-367 |#2|) (-172)) (T -366))
-((-1936 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-2483 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-1402 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3777 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-4012 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-2182 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-4084 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-2128 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-2047 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3104 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-1789 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3901 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-2136 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3308 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-2138 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-640 (-1257 *4))) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))))
-(-10 -8 (-15 -3763 ((-1165 |#2|) |#1|)) (-15 -2604 ((-1165 |#2|) |#1|)) (-15 -2138 ((-640 (-1257 |#2|)))) (-15 -4154 ((-3 |#1| "failed") |#1|)) (-15 -3856 ((-3 |#1| "failed") |#1|)) (-15 -3400 ((-3 |#1| "failed") |#1|)) (-15 -3308 ((-112))) (-15 -2136 ((-112))) (-15 -3901 ((-112))) (-15 -1789 ((-112))) (-15 -3104 ((-112))) (-15 -2047 ((-112))) (-15 -2128 ((-112))) (-15 -4084 ((-112))) (-15 -2182 ((-112))) (-15 -4012 ((-112))) (-15 -3777 ((-112))) (-15 -1402 ((-112))) (-15 -2483 ((-112))) (-15 -1936 ((-112))) (-15 -2876 ((-1165 |#2|) |#1|)) (-15 -2665 ((-1165 |#2|) |#1|)) (-15 -4220 ((-684 |#2|) (-1257 |#1|))) (-15 -2328 ((-684 |#2|) (-1257 |#1|))) (-15 -1824 (|#2| (-1257 |#1|))) (-15 -4111 (|#2| (-1257 |#1|))) (-15 -3937 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -1880 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3830 (|#2| |#1|)) (-15 -2199 (|#2| |#1|)) (-15 -2480 (|#2| |#1|)) (-15 -2842 (|#2| |#1|)) (-15 -3043 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -1823 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -3507 ((-1257 (-684 |#2|)) (-1257 |#1|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1414 (((-3 $ "failed")) 37 (|has| |#1| (-555)))) (-1495 (((-3 $ "failed") $ $) 19)) (-3507 (((-1257 (-684 |#1|)) (-1257 $)) 78)) (-1438 (((-1257 $)) 81)) (-4239 (($) 17 T CONST)) (-2133 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) 40 (|has| |#1| (-555)))) (-2435 (((-3 $ "failed")) 38 (|has| |#1| (-555)))) (-4220 (((-684 |#1|) (-1257 $)) 65)) (-2480 ((|#1| $) 74)) (-3043 (((-684 |#1|) $ (-1257 $)) 76)) (-4154 (((-3 $ "failed") $) 45 (|has| |#1| (-555)))) (-2300 (($ $ (-917)) 28)) (-3830 ((|#1| $) 72)) (-3763 (((-1165 |#1|) $) 42 (|has| |#1| (-555)))) (-1824 ((|#1| (-1257 $)) 67)) (-2876 (((-1165 |#1|) $) 63)) (-2182 (((-112)) 57)) (-3937 (($ (-1257 |#1|) (-1257 $)) 69)) (-3400 (((-3 $ "failed") $) 47 (|has| |#1| (-555)))) (-2522 (((-917)) 80)) (-2250 (((-112)) 54)) (-2287 (($ $ (-917)) 33)) (-3901 (((-112)) 50)) (-3308 (((-112)) 48)) (-3104 (((-112)) 52)) (-2284 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) 41 (|has| |#1| (-555)))) (-2508 (((-3 $ "failed")) 39 (|has| |#1| (-555)))) (-2328 (((-684 |#1|) (-1257 $)) 66)) (-2842 ((|#1| $) 75)) (-1823 (((-684 |#1|) $ (-1257 $)) 77)) (-3856 (((-3 $ "failed") $) 46 (|has| |#1| (-555)))) (-1494 (($ $ (-917)) 29)) (-2199 ((|#1| $) 73)) (-2604 (((-1165 |#1|) $) 43 (|has| |#1| (-555)))) (-4111 ((|#1| (-1257 $)) 68)) (-2665 (((-1165 |#1|) $) 64)) (-4012 (((-112)) 58)) (-3573 (((-1151) $) 9)) (-2136 (((-112)) 49)) (-1789 (((-112)) 51)) (-2047 (((-112)) 53)) (-1694 (((-1113) $) 10)) (-4084 (((-112)) 56)) (-1880 (((-1257 |#1|) $ (-1257 $)) 71) (((-684 |#1|) (-1257 $) (-1257 $)) 70)) (-4152 (((-640 (-948 |#1|)) (-1257 $)) 79)) (-2146 (($ $ $) 25)) (-1936 (((-112)) 62)) (-1693 (((-858) $) 11)) (-2138 (((-640 (-1257 |#1|))) 44 (|has| |#1| (-555)))) (-1361 (($ $ $ $) 26)) (-1402 (((-112)) 60)) (-3399 (($ $ $) 24)) (-2483 (((-112)) 61)) (-3777 (((-112)) 59)) (-2128 (((-112)) 55)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 30)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
+((-1677 (((-112) $ $) NIL)) (-1862 ((|#1| $ |#1|) 30)) (-1905 (($ $ (-1151)) 22)) (-2765 (((-3 |#1| "failed") $) 29)) (-1872 ((|#1| $) 27)) (-3409 (($ (-388)) 21) (($ (-388) (-1151)) 20)) (-3352 (((-388) $) 24)) (-3854 (((-1151) $) NIL)) (-1883 (((-1151) $) 25)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 19)) (-1895 (($ $) 23)) (-1718 (((-112) $ $) 18)))
+(((-365 |#1|) (-13 (-364 (-388) |#1|) (-10 -8 (-15 -2765 ((-3 |#1| "failed") $)))) (-1093)) (T -365))
+((-2765 (*1 *2 *1) (|partial| -12 (-5 *1 (-365 *2)) (-4 *2 (-1093)))))
+(-13 (-364 (-388) |#1|) (-10 -8 (-15 -2765 ((-3 |#1| "failed") $))))
+((-3749 (((-1257 (-684 |#2|)) (-1257 $)) 61)) (-3410 (((-684 |#2|) (-1257 $)) 120)) (-4017 ((|#2| $) 32)) (-3386 (((-684 |#2|) $ (-1257 $)) 123)) (-3342 (((-3 $ "failed") $) 75)) (-3995 ((|#2| $) 35)) (-1938 (((-1165 |#2|) $) 83)) (-3436 ((|#2| (-1257 $)) 106)) (-3973 (((-1165 |#2|) $) 28)) (-3912 (((-112)) 100)) (-3458 (($ (-1257 |#2|) (-1257 $)) 113)) (-3951 (((-3 $ "failed") $) 79)) (-3843 (((-112)) 95)) (-3825 (((-112)) 90)) (-3861 (((-112)) 53)) (-3422 (((-684 |#2|) (-1257 $)) 118)) (-4028 ((|#2| $) 31)) (-3398 (((-684 |#2|) $ (-1257 $)) 122)) (-3353 (((-3 $ "failed") $) 73)) (-4007 ((|#2| $) 34)) (-3801 (((-1165 |#2|) $) 82)) (-3447 ((|#2| (-1257 $)) 104)) (-3984 (((-1165 |#2|) $) 26)) (-3923 (((-112)) 99)) (-3832 (((-112)) 92)) (-3852 (((-112)) 51)) (-3868 (((-112)) 87)) (-3900 (((-112)) 101)) (-3759 (((-1257 |#2|) $ (-1257 $)) NIL) (((-684 |#2|) (-1257 $) (-1257 $)) 111)) (-3963 (((-112)) 97)) (-3813 (((-640 (-1257 |#2|))) 86)) (-3942 (((-112)) 98)) (-3952 (((-112)) 96)) (-3933 (((-112)) 46)) (-3891 (((-112)) 102)))
+(((-366 |#1| |#2|) (-10 -8 (-15 -1938 ((-1165 |#2|) |#1|)) (-15 -3801 ((-1165 |#2|) |#1|)) (-15 -3813 ((-640 (-1257 |#2|)))) (-15 -3342 ((-3 |#1| "failed") |#1|)) (-15 -3353 ((-3 |#1| "failed") |#1|)) (-15 -3951 ((-3 |#1| "failed") |#1|)) (-15 -3825 ((-112))) (-15 -3832 ((-112))) (-15 -3843 ((-112))) (-15 -3852 ((-112))) (-15 -3861 ((-112))) (-15 -3868 ((-112))) (-15 -3891 ((-112))) (-15 -3900 ((-112))) (-15 -3912 ((-112))) (-15 -3923 ((-112))) (-15 -3933 ((-112))) (-15 -3942 ((-112))) (-15 -3952 ((-112))) (-15 -3963 ((-112))) (-15 -3973 ((-1165 |#2|) |#1|)) (-15 -3984 ((-1165 |#2|) |#1|)) (-15 -3410 ((-684 |#2|) (-1257 |#1|))) (-15 -3422 ((-684 |#2|) (-1257 |#1|))) (-15 -3436 (|#2| (-1257 |#1|))) (-15 -3447 (|#2| (-1257 |#1|))) (-15 -3458 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -3759 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3995 (|#2| |#1|)) (-15 -4007 (|#2| |#1|)) (-15 -4017 (|#2| |#1|)) (-15 -4028 (|#2| |#1|)) (-15 -3386 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -3398 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -3749 ((-1257 (-684 |#2|)) (-1257 |#1|)))) (-367 |#2|) (-172)) (T -366))
+((-3963 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3952 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3942 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3933 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3923 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3912 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3900 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3891 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3868 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3861 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3852 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3843 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3832 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3825 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))) (-3813 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-640 (-1257 *4))) (-5 *1 (-366 *3 *4)) (-4 *3 (-367 *4)))))
+(-10 -8 (-15 -1938 ((-1165 |#2|) |#1|)) (-15 -3801 ((-1165 |#2|) |#1|)) (-15 -3813 ((-640 (-1257 |#2|)))) (-15 -3342 ((-3 |#1| "failed") |#1|)) (-15 -3353 ((-3 |#1| "failed") |#1|)) (-15 -3951 ((-3 |#1| "failed") |#1|)) (-15 -3825 ((-112))) (-15 -3832 ((-112))) (-15 -3843 ((-112))) (-15 -3852 ((-112))) (-15 -3861 ((-112))) (-15 -3868 ((-112))) (-15 -3891 ((-112))) (-15 -3900 ((-112))) (-15 -3912 ((-112))) (-15 -3923 ((-112))) (-15 -3933 ((-112))) (-15 -3942 ((-112))) (-15 -3952 ((-112))) (-15 -3963 ((-112))) (-15 -3973 ((-1165 |#2|) |#1|)) (-15 -3984 ((-1165 |#2|) |#1|)) (-15 -3410 ((-684 |#2|) (-1257 |#1|))) (-15 -3422 ((-684 |#2|) (-1257 |#1|))) (-15 -3436 (|#2| (-1257 |#1|))) (-15 -3447 (|#2| (-1257 |#1|))) (-15 -3458 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -3759 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3995 (|#2| |#1|)) (-15 -4007 (|#2| |#1|)) (-15 -4017 (|#2| |#1|)) (-15 -4028 (|#2| |#1|)) (-15 -3386 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -3398 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -3749 ((-1257 (-684 |#2|)) (-1257 |#1|))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3245 (((-3 $ "failed")) 37 (|has| |#1| (-555)))) (-3905 (((-3 $ "failed") $ $) 19)) (-3749 (((-1257 (-684 |#1|)) (-1257 $)) 78)) (-4039 (((-1257 $)) 81)) (-2569 (($) 17 T CONST)) (-2288 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) 40 (|has| |#1| (-555)))) (-1914 (((-3 $ "failed")) 38 (|has| |#1| (-555)))) (-3410 (((-684 |#1|) (-1257 $)) 65)) (-4017 ((|#1| $) 74)) (-3386 (((-684 |#1|) $ (-1257 $)) 76)) (-3342 (((-3 $ "failed") $) 45 (|has| |#1| (-555)))) (-3376 (($ $ (-917)) 28)) (-3995 ((|#1| $) 72)) (-1938 (((-1165 |#1|) $) 42 (|has| |#1| (-555)))) (-3436 ((|#1| (-1257 $)) 67)) (-3973 (((-1165 |#1|) $) 63)) (-3912 (((-112)) 57)) (-3458 (($ (-1257 |#1|) (-1257 $)) 69)) (-3951 (((-3 $ "failed") $) 47 (|has| |#1| (-555)))) (-2521 (((-917)) 80)) (-3879 (((-112)) 54)) (-3617 (($ $ (-917)) 33)) (-3843 (((-112)) 50)) (-3825 (((-112)) 48)) (-3861 (((-112)) 52)) (-2299 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) 41 (|has| |#1| (-555)))) (-1927 (((-3 $ "failed")) 39 (|has| |#1| (-555)))) (-3422 (((-684 |#1|) (-1257 $)) 66)) (-4028 ((|#1| $) 75)) (-3398 (((-684 |#1|) $ (-1257 $)) 77)) (-3353 (((-3 $ "failed") $) 46 (|has| |#1| (-555)))) (-3364 (($ $ (-917)) 29)) (-4007 ((|#1| $) 73)) (-3801 (((-1165 |#1|) $) 43 (|has| |#1| (-555)))) (-3447 ((|#1| (-1257 $)) 68)) (-3984 (((-1165 |#1|) $) 64)) (-3923 (((-112)) 58)) (-3854 (((-1151) $) 9)) (-3832 (((-112)) 49)) (-3852 (((-112)) 51)) (-3868 (((-112)) 53)) (-1693 (((-1113) $) 10)) (-3900 (((-112)) 56)) (-3759 (((-1257 |#1|) $ (-1257 $)) 71) (((-684 |#1|) (-1257 $) (-1257 $)) 70)) (-2122 (((-640 (-948 |#1|)) (-1257 $)) 79)) (-1745 (($ $ $) 25)) (-3963 (((-112)) 62)) (-1692 (((-858) $) 11)) (-3813 (((-640 (-1257 |#1|))) 44 (|has| |#1| (-555)))) (-1756 (($ $ $ $) 26)) (-3942 (((-112)) 60)) (-1729 (($ $ $) 24)) (-3952 (((-112)) 61)) (-3933 (((-112)) 59)) (-3891 (((-112)) 55)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 30)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
(((-367 |#1|) (-140) (-172)) (T -367))
-((-1438 (*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1257 *1)) (-4 *1 (-367 *3)))) (-2522 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-917)))) (-4152 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-640 (-948 *4))))) (-3507 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-1257 (-684 *4))))) (-1823 (*1 *2 *1 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-684 *4)))) (-3043 (*1 *2 *1 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-684 *4)))) (-2842 (*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))) (-2480 (*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))) (-2199 (*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))) (-3830 (*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))) (-1880 (*1 *2 *1 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-1257 *4)))) (-1880 (*1 *2 *3 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-684 *4)))) (-3937 (*1 *1 *2 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-1257 *1)) (-4 *4 (-172)) (-4 *1 (-367 *4)))) (-4111 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *2)) (-4 *2 (-172)))) (-1824 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *2)) (-4 *2 (-172)))) (-2328 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-684 *4)))) (-4220 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-684 *4)))) (-2665 (*1 *2 *1) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-1165 *3)))) (-2876 (*1 *2 *1) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-1165 *3)))) (-1936 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2483 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-1402 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3777 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-4012 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2182 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-4084 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2128 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2250 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2047 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3104 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-1789 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3901 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2136 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3308 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3400 (*1 *1 *1) (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-172)) (-4 *2 (-555)))) (-3856 (*1 *1 *1) (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-172)) (-4 *2 (-555)))) (-4154 (*1 *1 *1) (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-172)) (-4 *2 (-555)))) (-2138 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-4 *3 (-555)) (-5 *2 (-640 (-1257 *3))))) (-2604 (*1 *2 *1) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-4 *3 (-555)) (-5 *2 (-1165 *3)))) (-3763 (*1 *2 *1) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-4 *3 (-555)) (-5 *2 (-1165 *3)))) (-2284 (*1 *2) (|partial| -12 (-4 *3 (-555)) (-4 *3 (-172)) (-5 *2 (-2 (|:| |particular| *1) (|:| -4315 (-640 *1)))) (-4 *1 (-367 *3)))) (-2133 (*1 *2) (|partial| -12 (-4 *3 (-555)) (-4 *3 (-172)) (-5 *2 (-2 (|:| |particular| *1) (|:| -4315 (-640 *1)))) (-4 *1 (-367 *3)))) (-2508 (*1 *1) (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-555)) (-4 *2 (-172)))) (-2435 (*1 *1) (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-555)) (-4 *2 (-172)))) (-1414 (*1 *1) (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-555)) (-4 *2 (-172)))))
-(-13 (-740 |t#1|) (-10 -8 (-15 -1438 ((-1257 $))) (-15 -2522 ((-917))) (-15 -4152 ((-640 (-948 |t#1|)) (-1257 $))) (-15 -3507 ((-1257 (-684 |t#1|)) (-1257 $))) (-15 -1823 ((-684 |t#1|) $ (-1257 $))) (-15 -3043 ((-684 |t#1|) $ (-1257 $))) (-15 -2842 (|t#1| $)) (-15 -2480 (|t#1| $)) (-15 -2199 (|t#1| $)) (-15 -3830 (|t#1| $)) (-15 -1880 ((-1257 |t#1|) $ (-1257 $))) (-15 -1880 ((-684 |t#1|) (-1257 $) (-1257 $))) (-15 -3937 ($ (-1257 |t#1|) (-1257 $))) (-15 -4111 (|t#1| (-1257 $))) (-15 -1824 (|t#1| (-1257 $))) (-15 -2328 ((-684 |t#1|) (-1257 $))) (-15 -4220 ((-684 |t#1|) (-1257 $))) (-15 -2665 ((-1165 |t#1|) $)) (-15 -2876 ((-1165 |t#1|) $)) (-15 -1936 ((-112))) (-15 -2483 ((-112))) (-15 -1402 ((-112))) (-15 -3777 ((-112))) (-15 -4012 ((-112))) (-15 -2182 ((-112))) (-15 -4084 ((-112))) (-15 -2128 ((-112))) (-15 -2250 ((-112))) (-15 -2047 ((-112))) (-15 -3104 ((-112))) (-15 -1789 ((-112))) (-15 -3901 ((-112))) (-15 -2136 ((-112))) (-15 -3308 ((-112))) (IF (|has| |t#1| (-555)) (PROGN (-15 -3400 ((-3 $ "failed") $)) (-15 -3856 ((-3 $ "failed") $)) (-15 -4154 ((-3 $ "failed") $)) (-15 -2138 ((-640 (-1257 |t#1|)))) (-15 -2604 ((-1165 |t#1|) $)) (-15 -3763 ((-1165 |t#1|) $)) (-15 -2284 ((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed"))) (-15 -2133 ((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed"))) (-15 -2508 ((-3 $ "failed"))) (-15 -2435 ((-3 $ "failed"))) (-15 -1414 ((-3 $ "failed"))) (-6 -4404)) |%noBranch|)))
+((-4039 (*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1257 *1)) (-4 *1 (-367 *3)))) (-2521 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-917)))) (-2122 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-640 (-948 *4))))) (-3749 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-1257 (-684 *4))))) (-3398 (*1 *2 *1 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-684 *4)))) (-3386 (*1 *2 *1 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-684 *4)))) (-4028 (*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))) (-4017 (*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))) (-4007 (*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))) (-3995 (*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))) (-3759 (*1 *2 *1 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-1257 *4)))) (-3759 (*1 *2 *3 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-684 *4)))) (-3458 (*1 *1 *2 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-1257 *1)) (-4 *4 (-172)) (-4 *1 (-367 *4)))) (-3447 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *2)) (-4 *2 (-172)))) (-3436 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *2)) (-4 *2 (-172)))) (-3422 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-684 *4)))) (-3410 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172)) (-5 *2 (-684 *4)))) (-3984 (*1 *2 *1) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-1165 *3)))) (-3973 (*1 *2 *1) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-1165 *3)))) (-3963 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3952 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3942 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3933 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3923 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3912 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3900 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3891 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3879 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3868 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3861 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3852 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3843 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3832 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3825 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3951 (*1 *1 *1) (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-172)) (-4 *2 (-555)))) (-3353 (*1 *1 *1) (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-172)) (-4 *2 (-555)))) (-3342 (*1 *1 *1) (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-172)) (-4 *2 (-555)))) (-3813 (*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-4 *3 (-555)) (-5 *2 (-640 (-1257 *3))))) (-3801 (*1 *2 *1) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-4 *3 (-555)) (-5 *2 (-1165 *3)))) (-1938 (*1 *2 *1) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-4 *3 (-555)) (-5 *2 (-1165 *3)))) (-2299 (*1 *2) (|partial| -12 (-4 *3 (-555)) (-4 *3 (-172)) (-5 *2 (-2 (|:| |particular| *1) (|:| -4013 (-640 *1)))) (-4 *1 (-367 *3)))) (-2288 (*1 *2) (|partial| -12 (-4 *3 (-555)) (-4 *3 (-172)) (-5 *2 (-2 (|:| |particular| *1) (|:| -4013 (-640 *1)))) (-4 *1 (-367 *3)))) (-1927 (*1 *1) (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-555)) (-4 *2 (-172)))) (-1914 (*1 *1) (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-555)) (-4 *2 (-172)))) (-3245 (*1 *1) (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-555)) (-4 *2 (-172)))))
+(-13 (-740 |t#1|) (-10 -8 (-15 -4039 ((-1257 $))) (-15 -2521 ((-917))) (-15 -2122 ((-640 (-948 |t#1|)) (-1257 $))) (-15 -3749 ((-1257 (-684 |t#1|)) (-1257 $))) (-15 -3398 ((-684 |t#1|) $ (-1257 $))) (-15 -3386 ((-684 |t#1|) $ (-1257 $))) (-15 -4028 (|t#1| $)) (-15 -4017 (|t#1| $)) (-15 -4007 (|t#1| $)) (-15 -3995 (|t#1| $)) (-15 -3759 ((-1257 |t#1|) $ (-1257 $))) (-15 -3759 ((-684 |t#1|) (-1257 $) (-1257 $))) (-15 -3458 ($ (-1257 |t#1|) (-1257 $))) (-15 -3447 (|t#1| (-1257 $))) (-15 -3436 (|t#1| (-1257 $))) (-15 -3422 ((-684 |t#1|) (-1257 $))) (-15 -3410 ((-684 |t#1|) (-1257 $))) (-15 -3984 ((-1165 |t#1|) $)) (-15 -3973 ((-1165 |t#1|) $)) (-15 -3963 ((-112))) (-15 -3952 ((-112))) (-15 -3942 ((-112))) (-15 -3933 ((-112))) (-15 -3923 ((-112))) (-15 -3912 ((-112))) (-15 -3900 ((-112))) (-15 -3891 ((-112))) (-15 -3879 ((-112))) (-15 -3868 ((-112))) (-15 -3861 ((-112))) (-15 -3852 ((-112))) (-15 -3843 ((-112))) (-15 -3832 ((-112))) (-15 -3825 ((-112))) (IF (|has| |t#1| (-555)) (PROGN (-15 -3951 ((-3 $ "failed") $)) (-15 -3353 ((-3 $ "failed") $)) (-15 -3342 ((-3 $ "failed") $)) (-15 -3813 ((-640 (-1257 |t#1|)))) (-15 -3801 ((-1165 |t#1|) $)) (-15 -1938 ((-1165 |t#1|) $)) (-15 -2299 ((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed"))) (-15 -2288 ((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed"))) (-15 -1927 ((-3 $ "failed"))) (-15 -1914 ((-3 $ "failed"))) (-15 -3245 ((-3 $ "failed"))) (-6 -4405)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-610 (-858)) . T) ((-643 |#1|) . T) ((-713 |#1|) . T) ((-716) . T) ((-740 |#1|) . T) ((-757) . T) ((-1051 |#1|) . T) ((-1093) . T))
-((-1677 (((-112) $ $) 7)) (-3749 (((-767)) 16)) (-1691 (($) 13)) (-1476 (((-917) $) 14)) (-3573 (((-1151) $) 9)) (-2555 (($ (-917)) 15)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1718 (((-112) $ $) 6)))
+((-1677 (((-112) $ $) 7)) (-3750 (((-767)) 16)) (-1690 (($) 13)) (-3990 (((-917) $) 14)) (-3854 (((-1151) $) 9)) (-2552 (($ (-917)) 15)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1718 (((-112) $ $) 6)))
(((-368) (-140)) (T -368))
-((-3749 (*1 *2) (-12 (-4 *1 (-368)) (-5 *2 (-767)))) (-2555 (*1 *1 *2) (-12 (-5 *2 (-917)) (-4 *1 (-368)))) (-1476 (*1 *2 *1) (-12 (-4 *1 (-368)) (-5 *2 (-917)))) (-1691 (*1 *1) (-4 *1 (-368))))
-(-13 (-1093) (-10 -8 (-15 -3749 ((-767))) (-15 -2555 ($ (-917))) (-15 -1476 ((-917) $)) (-15 -1691 ($))))
+((-3750 (*1 *2) (-12 (-4 *1 (-368)) (-5 *2 (-767)))) (-2552 (*1 *1 *2) (-12 (-5 *2 (-917)) (-4 *1 (-368)))) (-3990 (*1 *2 *1) (-12 (-4 *1 (-368)) (-5 *2 (-917)))) (-1690 (*1 *1) (-4 *1 (-368))))
+(-13 (-1093) (-10 -8 (-15 -3750 ((-767))) (-15 -2552 ($ (-917))) (-15 -3990 ((-917) $)) (-15 -1690 ($))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-3561 (((-684 |#2|) (-1257 $)) 40)) (-3937 (($ (-1257 |#2|) (-1257 $)) 34)) (-3914 (((-684 |#2|) $ (-1257 $)) 42)) (-2315 ((|#2| (-1257 $)) 13)) (-1880 (((-1257 |#2|) $ (-1257 $)) NIL) (((-684 |#2|) (-1257 $) (-1257 $)) 25)))
-(((-369 |#1| |#2| |#3|) (-10 -8 (-15 -3561 ((-684 |#2|) (-1257 |#1|))) (-15 -2315 (|#2| (-1257 |#1|))) (-15 -3937 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -1880 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3914 ((-684 |#2|) |#1| (-1257 |#1|)))) (-370 |#2| |#3|) (-172) (-1233 |#2|)) (T -369))
+((-3340 (((-684 |#2|) (-1257 $)) 40)) (-3458 (($ (-1257 |#2|) (-1257 $)) 34)) (-3330 (((-684 |#2|) $ (-1257 $)) 42)) (-1623 ((|#2| (-1257 $)) 13)) (-3759 (((-1257 |#2|) $ (-1257 $)) NIL) (((-684 |#2|) (-1257 $) (-1257 $)) 25)))
+(((-369 |#1| |#2| |#3|) (-10 -8 (-15 -3340 ((-684 |#2|) (-1257 |#1|))) (-15 -1623 (|#2| (-1257 |#1|))) (-15 -3458 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -3759 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3330 ((-684 |#2|) |#1| (-1257 |#1|)))) (-370 |#2| |#3|) (-172) (-1233 |#2|)) (T -369))
NIL
-(-10 -8 (-15 -3561 ((-684 |#2|) (-1257 |#1|))) (-15 -2315 (|#2| (-1257 |#1|))) (-15 -3937 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -1880 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3914 ((-684 |#2|) |#1| (-1257 |#1|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-3561 (((-684 |#1|) (-1257 $)) 47)) (-1733 ((|#1| $) 53)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3937 (($ (-1257 |#1|) (-1257 $)) 49)) (-3914 (((-684 |#1|) $ (-1257 $)) 54)) (-3400 (((-3 $ "failed") $) 33)) (-2522 (((-917)) 55)) (-3827 (((-112) $) 31)) (-3793 ((|#1| $) 52)) (-3941 ((|#2| $) 45 (|has| |#1| (-363)))) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-2315 ((|#1| (-1257 $)) 48)) (-1880 (((-1257 |#1|) $ (-1257 $)) 51) (((-684 |#1|) (-1257 $) (-1257 $)) 50)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 38)) (-2779 (((-3 $ "failed") $) 44 (|has| |#1| (-145)))) (-3421 ((|#2| $) 46)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
+(-10 -8 (-15 -3340 ((-684 |#2|) (-1257 |#1|))) (-15 -1623 (|#2| (-1257 |#1|))) (-15 -3458 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -3759 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3330 ((-684 |#2|) |#1| (-1257 |#1|))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3340 (((-684 |#1|) (-1257 $)) 47)) (-1731 ((|#1| $) 53)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3458 (($ (-1257 |#1|) (-1257 $)) 49)) (-3330 (((-684 |#1|) $ (-1257 $)) 54)) (-3951 (((-3 $ "failed") $) 33)) (-2521 (((-917)) 55)) (-3401 (((-112) $) 31)) (-3975 ((|#1| $) 52)) (-4035 ((|#2| $) 45 (|has| |#1| (-363)))) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1623 ((|#1| (-1257 $)) 48)) (-3759 (((-1257 |#1|) $ (-1257 $)) 51) (((-684 |#1|) (-1257 $) (-1257 $)) 50)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 38)) (-2047 (((-3 $ "failed") $) 44 (|has| |#1| (-145)))) (-1892 ((|#2| $) 46)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-370 |#1| |#2|) (-140) (-172) (-1233 |t#1|)) (T -370))
-((-2522 (*1 *2) (-12 (-4 *1 (-370 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3)) (-5 *2 (-917)))) (-3914 (*1 *2 *1 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-684 *4)))) (-1733 (*1 *2 *1) (-12 (-4 *1 (-370 *2 *3)) (-4 *3 (-1233 *2)) (-4 *2 (-172)))) (-3793 (*1 *2 *1) (-12 (-4 *1 (-370 *2 *3)) (-4 *3 (-1233 *2)) (-4 *2 (-172)))) (-1880 (*1 *2 *1 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-1257 *4)))) (-1880 (*1 *2 *3 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-684 *4)))) (-3937 (*1 *1 *2 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-1257 *1)) (-4 *4 (-172)) (-4 *1 (-370 *4 *5)) (-4 *5 (-1233 *4)))) (-2315 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *2 *4)) (-4 *4 (-1233 *2)) (-4 *2 (-172)))) (-3561 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-684 *4)))) (-3421 (*1 *2 *1) (-12 (-4 *1 (-370 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1233 *3)))) (-3941 (*1 *2 *1) (-12 (-4 *1 (-370 *3 *2)) (-4 *3 (-172)) (-4 *3 (-363)) (-4 *2 (-1233 *3)))))
-(-13 (-38 |t#1|) (-10 -8 (-15 -2522 ((-917))) (-15 -3914 ((-684 |t#1|) $ (-1257 $))) (-15 -1733 (|t#1| $)) (-15 -3793 (|t#1| $)) (-15 -1880 ((-1257 |t#1|) $ (-1257 $))) (-15 -1880 ((-684 |t#1|) (-1257 $) (-1257 $))) (-15 -3937 ($ (-1257 |t#1|) (-1257 $))) (-15 -2315 (|t#1| (-1257 $))) (-15 -3561 ((-684 |t#1|) (-1257 $))) (-15 -3421 (|t#2| $)) (IF (|has| |t#1| (-363)) (-15 -3941 (|t#2| $)) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|)))
+((-2521 (*1 *2) (-12 (-4 *1 (-370 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3)) (-5 *2 (-917)))) (-3330 (*1 *2 *1 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-684 *4)))) (-1731 (*1 *2 *1) (-12 (-4 *1 (-370 *2 *3)) (-4 *3 (-1233 *2)) (-4 *2 (-172)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-370 *2 *3)) (-4 *3 (-1233 *2)) (-4 *2 (-172)))) (-3759 (*1 *2 *1 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-1257 *4)))) (-3759 (*1 *2 *3 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-684 *4)))) (-3458 (*1 *1 *2 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-1257 *1)) (-4 *4 (-172)) (-4 *1 (-370 *4 *5)) (-4 *5 (-1233 *4)))) (-1623 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *2 *4)) (-4 *4 (-1233 *2)) (-4 *2 (-172)))) (-3340 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-684 *4)))) (-1892 (*1 *2 *1) (-12 (-4 *1 (-370 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1233 *3)))) (-4035 (*1 *2 *1) (-12 (-4 *1 (-370 *3 *2)) (-4 *3 (-172)) (-4 *3 (-363)) (-4 *2 (-1233 *3)))))
+(-13 (-38 |t#1|) (-10 -8 (-15 -2521 ((-917))) (-15 -3330 ((-684 |t#1|) $ (-1257 $))) (-15 -1731 (|t#1| $)) (-15 -3975 (|t#1| $)) (-15 -3759 ((-1257 |t#1|) $ (-1257 $))) (-15 -3759 ((-684 |t#1|) (-1257 $) (-1257 $))) (-15 -3458 ($ (-1257 |t#1|) (-1257 $))) (-15 -1623 (|t#1| (-1257 $))) (-15 -3340 ((-684 |t#1|) (-1257 $))) (-15 -1892 (|t#2| $)) (IF (|has| |t#1| (-363)) (-15 -4035 (|t#2| $)) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-610 (-858)) . T) ((-643 |#1|) . T) ((-643 $) . T) ((-713 |#1|) . T) ((-722) . T) ((-1051 |#1|) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1567 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 23)) (-2444 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 15)) (-2240 ((|#4| (-1 |#3| |#1|) |#2|) 21)))
-(((-371 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2240 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2444 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1567 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1208) (-373 |#1|) (-1208) (-373 |#3|)) (T -371))
-((-1567 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1208)) (-4 *5 (-1208)) (-4 *2 (-373 *5)) (-5 *1 (-371 *6 *4 *5 *2)) (-4 *4 (-373 *6)))) (-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1208)) (-4 *2 (-1208)) (-5 *1 (-371 *5 *4 *2 *6)) (-4 *4 (-373 *5)) (-4 *6 (-373 *2)))) (-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-4 *2 (-373 *6)) (-5 *1 (-371 *5 *4 *6 *2)) (-4 *4 (-373 *5)))))
-(-10 -7 (-15 -2240 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2444 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1567 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-3523 (((-112) (-1 (-112) |#2| |#2|) $) NIL) (((-112) $) 18)) (-2770 (($ (-1 (-112) |#2| |#2|) $) NIL) (($ $) 28)) (-1642 (($ (-1 (-112) |#2| |#2|) $) 27) (($ $) 22)) (-4382 (($ $) 25)) (-4368 (((-563) (-1 (-112) |#2|) $) NIL) (((-563) |#2| $) 11) (((-563) |#2| $ (-563)) NIL)) (-3164 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
-(((-372 |#1| |#2|) (-10 -8 (-15 -2770 (|#1| |#1|)) (-15 -2770 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3523 ((-112) |#1|)) (-15 -1642 (|#1| |#1|)) (-15 -3164 (|#1| |#1| |#1|)) (-15 -4368 ((-563) |#2| |#1| (-563))) (-15 -4368 ((-563) |#2| |#1|)) (-15 -4368 ((-563) (-1 (-112) |#2|) |#1|)) (-15 -3523 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -1642 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4382 (|#1| |#1|)) (-15 -3164 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|))) (-373 |#2|) (-1208)) (T -372))
-NIL
-(-10 -8 (-15 -2770 (|#1| |#1|)) (-15 -2770 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3523 ((-112) |#1|)) (-15 -1642 (|#1| |#1|)) (-15 -3164 (|#1| |#1| |#1|)) (-15 -4368 ((-563) |#2| |#1| (-563))) (-15 -4368 ((-563) |#2| |#1|)) (-15 -4368 ((-563) (-1 (-112) |#2|) |#1|)) (-15 -3523 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -1642 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4382 (|#1| |#1|)) (-15 -3164 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-4378 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4408)))) (-3523 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-846)))) (-2770 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4408))) (($ $) 88 (-12 (|has| |#1| (-846)) (|has| $ (-6 -4408))))) (-1642 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-846)))) (-2759 (((-112) $ (-767)) 8)) (-1849 ((|#1| $ (-563) |#1|) 52 (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) 58 (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4407)))) (-4239 (($) 7 T CONST)) (-2907 (($ $) 90 (|has| $ (-6 -4408)))) (-4382 (($ $) 100)) (-3813 (($ $) 78 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ |#1| $) 77 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4407)))) (-4355 ((|#1| $ (-563) |#1|) 53 (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) 51)) (-4368 (((-563) (-1 (-112) |#1|) $) 97) (((-563) |#1| $) 96 (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) 95 (|has| |#1| (-1093)))) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-1566 (($ (-767) |#1|) 69)) (-2581 (((-112) $ (-767)) 9)) (-2411 (((-563) $) 43 (|has| (-563) (-846)))) (-3084 (($ $ $) 87 (|has| |#1| (-846)))) (-3164 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-846)))) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-3860 (((-563) $) 44 (|has| (-563) (-846)))) (-1777 (($ $ $) 86 (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-3396 (($ |#1| $ (-563)) 60) (($ $ $ (-563)) 59)) (-4318 (((-640 (-563)) $) 46)) (-3192 (((-112) (-563) $) 47)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3781 ((|#1| $) 42 (|has| (-563) (-846)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2358 (($ $ |#1|) 41 (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-2105 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) 48)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ (-563) |#1|) 50) ((|#1| $ (-563)) 49) (($ $ (-1224 (-563))) 63)) (-2963 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-3076 (($ $ $ (-563)) 91 (|has| $ (-6 -4408)))) (-1872 (($ $) 13)) (-2220 (((-536) $) 79 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 70)) (-2853 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) 84 (|has| |#1| (-846)))) (-1756 (((-112) $ $) 83 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-1768 (((-112) $ $) 85 (|has| |#1| (-846)))) (-1744 (((-112) $ $) 82 (|has| |#1| (-846)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-4132 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 23)) (-2444 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 15)) (-2238 ((|#4| (-1 |#3| |#1|) |#2|) 21)))
+(((-371 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2238 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2444 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -4132 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1208) (-373 |#1|) (-1208) (-373 |#3|)) (T -371))
+((-4132 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1208)) (-4 *5 (-1208)) (-4 *2 (-373 *5)) (-5 *1 (-371 *6 *4 *5 *2)) (-4 *4 (-373 *6)))) (-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1208)) (-4 *2 (-1208)) (-5 *1 (-371 *5 *4 *2 *6)) (-4 *4 (-373 *5)) (-4 *6 (-373 *2)))) (-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-4 *2 (-373 *6)) (-5 *1 (-371 *5 *4 *6 *2)) (-4 *4 (-373 *5)))))
+(-10 -7 (-15 -2238 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2444 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -4132 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-4073 (((-112) (-1 (-112) |#2| |#2|) $) NIL) (((-112) $) 18)) (-4052 (($ (-1 (-112) |#2| |#2|) $) NIL) (($ $) 28)) (-1640 (($ (-1 (-112) |#2| |#2|) $) 27) (($ $) 22)) (-4383 (($ $) 25)) (-4369 (((-563) (-1 (-112) |#2|) $) NIL) (((-563) |#2| $) 11) (((-563) |#2| $ (-563)) NIL)) (-4300 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
+(((-372 |#1| |#2|) (-10 -8 (-15 -4052 (|#1| |#1|)) (-15 -4052 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4073 ((-112) |#1|)) (-15 -1640 (|#1| |#1|)) (-15 -4300 (|#1| |#1| |#1|)) (-15 -4369 ((-563) |#2| |#1| (-563))) (-15 -4369 ((-563) |#2| |#1|)) (-15 -4369 ((-563) (-1 (-112) |#2|) |#1|)) (-15 -4073 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -1640 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4383 (|#1| |#1|)) (-15 -4300 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|))) (-373 |#2|) (-1208)) (T -372))
+NIL
+(-10 -8 (-15 -4052 (|#1| |#1|)) (-15 -4052 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4073 ((-112) |#1|)) (-15 -1640 (|#1| |#1|)) (-15 -4300 (|#1| |#1| |#1|)) (-15 -4369 ((-563) |#2| |#1| (-563))) (-15 -4369 ((-563) |#2| |#1|)) (-15 -4369 ((-563) (-1 (-112) |#2|) |#1|)) (-15 -4073 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -1640 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4383 (|#1| |#1|)) (-15 -4300 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2208 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4409)))) (-4073 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-846)))) (-4052 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4409))) (($ $) 88 (-12 (|has| |#1| (-846)) (|has| $ (-6 -4409))))) (-1640 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-846)))) (-3001 (((-112) $ (-767)) 8)) (-1849 ((|#1| $ (-563) |#1|) 52 (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) 58 (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4408)))) (-2569 (($) 7 T CONST)) (-1574 (($ $) 90 (|has| $ (-6 -4409)))) (-4383 (($ $) 100)) (-3814 (($ $) 78 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ |#1| $) 77 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4408)))) (-4356 ((|#1| $ (-563) |#1|) 53 (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) 51)) (-4369 (((-563) (-1 (-112) |#1|) $) 97) (((-563) |#1| $) 96 (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) 95 (|has| |#1| (-1093)))) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-1565 (($ (-767) |#1|) 69)) (-2514 (((-112) $ (-767)) 9)) (-2236 (((-563) $) 43 (|has| (-563) (-846)))) (-3088 (($ $ $) 87 (|has| |#1| (-846)))) (-4300 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-846)))) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-2251 (((-563) $) 44 (|has| (-563) (-846)))) (-1776 (($ $ $) 86 (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-3399 (($ |#1| $ (-563)) 60) (($ $ $ (-563)) 59)) (-2272 (((-640 (-563)) $) 46)) (-2282 (((-112) (-563) $) 47)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3782 ((|#1| $) 42 (|has| (-563) (-846)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2221 (($ $ |#1|) 41 (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) 48)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ (-563) |#1|) 50) ((|#1| $ (-563)) 49) (($ $ (-1224 (-563))) 63)) (-2967 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4062 (($ $ $ (-563)) 91 (|has| $ (-6 -4409)))) (-1870 (($ $) 13)) (-2219 (((-536) $) 79 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 70)) (-2857 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) 84 (|has| |#1| (-846)))) (-1754 (((-112) $ $) 83 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-1766 (((-112) $ $) 85 (|has| |#1| (-846)))) (-1743 (((-112) $ $) 82 (|has| |#1| (-846)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-373 |#1|) (-140) (-1208)) (T -373))
-((-3164 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-373 *3)) (-4 *3 (-1208)))) (-4382 (*1 *1 *1) (-12 (-4 *1 (-373 *2)) (-4 *2 (-1208)))) (-1642 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-373 *3)) (-4 *3 (-1208)))) (-3523 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-373 *4)) (-4 *4 (-1208)) (-5 *2 (-112)))) (-4368 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-373 *4)) (-4 *4 (-1208)) (-5 *2 (-563)))) (-4368 (*1 *2 *3 *1) (-12 (-4 *1 (-373 *3)) (-4 *3 (-1208)) (-4 *3 (-1093)) (-5 *2 (-563)))) (-4368 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-373 *3)) (-4 *3 (-1208)) (-4 *3 (-1093)))) (-3164 (*1 *1 *1 *1) (-12 (-4 *1 (-373 *2)) (-4 *2 (-1208)) (-4 *2 (-846)))) (-1642 (*1 *1 *1) (-12 (-4 *1 (-373 *2)) (-4 *2 (-1208)) (-4 *2 (-846)))) (-3523 (*1 *2 *1) (-12 (-4 *1 (-373 *3)) (-4 *3 (-1208)) (-4 *3 (-846)) (-5 *2 (-112)))) (-3076 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-563)) (|has| *1 (-6 -4408)) (-4 *1 (-373 *3)) (-4 *3 (-1208)))) (-2907 (*1 *1 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-373 *2)) (-4 *2 (-1208)))) (-2770 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4408)) (-4 *1 (-373 *3)) (-4 *3 (-1208)))) (-2770 (*1 *1 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-373 *2)) (-4 *2 (-1208)) (-4 *2 (-846)))))
-(-13 (-646 |t#1|) (-10 -8 (-6 -4407) (-15 -3164 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -4382 ($ $)) (-15 -1642 ($ (-1 (-112) |t#1| |t#1|) $)) (-15 -3523 ((-112) (-1 (-112) |t#1| |t#1|) $)) (-15 -4368 ((-563) (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1093)) (PROGN (-15 -4368 ((-563) |t#1| $)) (-15 -4368 ((-563) |t#1| $ (-563)))) |%noBranch|) (IF (|has| |t#1| (-846)) (PROGN (-6 (-846)) (-15 -3164 ($ $ $)) (-15 -1642 ($ $)) (-15 -3523 ((-112) $))) |%noBranch|) (IF (|has| $ (-6 -4408)) (PROGN (-15 -3076 ($ $ $ (-563))) (-15 -2907 ($ $)) (-15 -2770 ($ (-1 (-112) |t#1| |t#1|) $)) (IF (|has| |t#1| (-846)) (-15 -2770 ($ $)) |%noBranch|)) |%noBranch|)))
-(((-34) . T) ((-102) -4032 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-846)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-846) |has| |#1| (-846)) ((-1093) -4032 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-1208) . T))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-3993 (((-640 |#1|) $) 32)) (-2872 (($ $ (-767)) 33)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3181 (((-1281 |#1| |#2|) (-1281 |#1| |#2|) $) 36)) (-4337 (($ $) 34)) (-3439 (((-1281 |#1| |#2|) (-1281 |#1| |#2|) $) 37)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1540 (($ $ |#1| $) 31) (($ $ (-640 |#1|) (-640 $)) 30)) (-4167 (((-767) $) 38)) (-1707 (($ $ $) 29)) (-1693 (((-858) $) 11) (($ |#1|) 41) (((-1272 |#1| |#2|) $) 40) (((-1281 |#1| |#2|) $) 39)) (-2311 ((|#2| (-1281 |#1| |#2|) $) 42)) (-2241 (($) 18 T CONST)) (-3657 (($ (-667 |#1|)) 35)) (-1718 (((-112) $ $) 6)) (-1837 (($ $ |#2|) 28 (|has| |#2| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#2| $) 23) (($ $ |#2|) 26)))
+((-4300 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-373 *3)) (-4 *3 (-1208)))) (-4383 (*1 *1 *1) (-12 (-4 *1 (-373 *2)) (-4 *2 (-1208)))) (-1640 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-373 *3)) (-4 *3 (-1208)))) (-4073 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-373 *4)) (-4 *4 (-1208)) (-5 *2 (-112)))) (-4369 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-373 *4)) (-4 *4 (-1208)) (-5 *2 (-563)))) (-4369 (*1 *2 *3 *1) (-12 (-4 *1 (-373 *3)) (-4 *3 (-1208)) (-4 *3 (-1093)) (-5 *2 (-563)))) (-4369 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-373 *3)) (-4 *3 (-1208)) (-4 *3 (-1093)))) (-4300 (*1 *1 *1 *1) (-12 (-4 *1 (-373 *2)) (-4 *2 (-1208)) (-4 *2 (-846)))) (-1640 (*1 *1 *1) (-12 (-4 *1 (-373 *2)) (-4 *2 (-1208)) (-4 *2 (-846)))) (-4073 (*1 *2 *1) (-12 (-4 *1 (-373 *3)) (-4 *3 (-1208)) (-4 *3 (-846)) (-5 *2 (-112)))) (-4062 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-563)) (|has| *1 (-6 -4409)) (-4 *1 (-373 *3)) (-4 *3 (-1208)))) (-1574 (*1 *1 *1) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-373 *2)) (-4 *2 (-1208)))) (-4052 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4409)) (-4 *1 (-373 *3)) (-4 *3 (-1208)))) (-4052 (*1 *1 *1) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-373 *2)) (-4 *2 (-1208)) (-4 *2 (-846)))))
+(-13 (-646 |t#1|) (-10 -8 (-6 -4408) (-15 -4300 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -4383 ($ $)) (-15 -1640 ($ (-1 (-112) |t#1| |t#1|) $)) (-15 -4073 ((-112) (-1 (-112) |t#1| |t#1|) $)) (-15 -4369 ((-563) (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1093)) (PROGN (-15 -4369 ((-563) |t#1| $)) (-15 -4369 ((-563) |t#1| $ (-563)))) |%noBranch|) (IF (|has| |t#1| (-846)) (PROGN (-6 (-846)) (-15 -4300 ($ $ $)) (-15 -1640 ($ $)) (-15 -4073 ((-112) $))) |%noBranch|) (IF (|has| $ (-6 -4409)) (PROGN (-15 -4062 ($ $ $ (-563))) (-15 -1574 ($ $)) (-15 -4052 ($ (-1 (-112) |t#1| |t#1|) $)) (IF (|has| |t#1| (-846)) (-15 -4052 ($ $)) |%noBranch|)) |%noBranch|)))
+(((-34) . T) ((-102) -4034 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-846)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-846) |has| |#1| (-846)) ((-1093) -4034 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-1208) . T))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3994 (((-640 |#1|) $) 32)) (-3862 (($ $ (-767)) 33)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3817 (((-1281 |#1| |#2|) (-1281 |#1| |#2|) $) 36)) (-3794 (($ $) 34)) (-3828 (((-1281 |#1| |#2|) (-1281 |#1| |#2|) $) 37)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1542 (($ $ |#1| $) 31) (($ $ (-640 |#1|) (-640 $)) 30)) (-3871 (((-767) $) 38)) (-1706 (($ $ $) 29)) (-1692 (((-858) $) 11) (($ |#1|) 41) (((-1272 |#1| |#2|) $) 40) (((-1281 |#1| |#2|) $) 39)) (-2310 ((|#2| (-1281 |#1| |#2|) $) 42)) (-2239 (($) 18 T CONST)) (-4084 (($ (-667 |#1|)) 35)) (-1718 (((-112) $ $) 6)) (-1836 (($ $ |#2|) 28 (|has| |#2| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#2| $) 23) (($ $ |#2|) 26)))
(((-374 |#1| |#2|) (-140) (-846) (-172)) (T -374))
-((-2311 (*1 *2 *3 *1) (-12 (-5 *3 (-1281 *4 *2)) (-4 *1 (-374 *4 *2)) (-4 *4 (-846)) (-4 *2 (-172)))) (-1693 (*1 *1 *2) (-12 (-4 *1 (-374 *2 *3)) (-4 *2 (-846)) (-4 *3 (-172)))) (-1693 (*1 *2 *1) (-12 (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)) (-5 *2 (-1272 *3 *4)))) (-1693 (*1 *2 *1) (-12 (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)) (-5 *2 (-1281 *3 *4)))) (-4167 (*1 *2 *1) (-12 (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)) (-5 *2 (-767)))) (-3439 (*1 *2 *2 *1) (-12 (-5 *2 (-1281 *3 *4)) (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)))) (-3181 (*1 *2 *2 *1) (-12 (-5 *2 (-1281 *3 *4)) (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)))) (-3657 (*1 *1 *2) (-12 (-5 *2 (-667 *3)) (-4 *3 (-846)) (-4 *1 (-374 *3 *4)) (-4 *4 (-172)))) (-4337 (*1 *1 *1) (-12 (-4 *1 (-374 *2 *3)) (-4 *2 (-846)) (-4 *3 (-172)))) (-2872 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)))) (-3993 (*1 *2 *1) (-12 (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)) (-5 *2 (-640 *3)))) (-1540 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-374 *2 *3)) (-4 *2 (-846)) (-4 *3 (-172)))) (-1540 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *4)) (-5 *3 (-640 *1)) (-4 *1 (-374 *4 *5)) (-4 *4 (-846)) (-4 *5 (-172)))))
-(-13 (-631 |t#2|) (-10 -8 (-15 -2311 (|t#2| (-1281 |t#1| |t#2|) $)) (-15 -1693 ($ |t#1|)) (-15 -1693 ((-1272 |t#1| |t#2|) $)) (-15 -1693 ((-1281 |t#1| |t#2|) $)) (-15 -4167 ((-767) $)) (-15 -3439 ((-1281 |t#1| |t#2|) (-1281 |t#1| |t#2|) $)) (-15 -3181 ((-1281 |t#1| |t#2|) (-1281 |t#1| |t#2|) $)) (-15 -3657 ($ (-667 |t#1|))) (-15 -4337 ($ $)) (-15 -2872 ($ $ (-767))) (-15 -3993 ((-640 |t#1|) $)) (-15 -1540 ($ $ |t#1| $)) (-15 -1540 ($ $ (-640 |t#1|) (-640 $)))))
+((-2310 (*1 *2 *3 *1) (-12 (-5 *3 (-1281 *4 *2)) (-4 *1 (-374 *4 *2)) (-4 *4 (-846)) (-4 *2 (-172)))) (-1692 (*1 *1 *2) (-12 (-4 *1 (-374 *2 *3)) (-4 *2 (-846)) (-4 *3 (-172)))) (-1692 (*1 *2 *1) (-12 (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)) (-5 *2 (-1272 *3 *4)))) (-1692 (*1 *2 *1) (-12 (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)) (-5 *2 (-1281 *3 *4)))) (-3871 (*1 *2 *1) (-12 (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)) (-5 *2 (-767)))) (-3828 (*1 *2 *2 *1) (-12 (-5 *2 (-1281 *3 *4)) (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)))) (-3817 (*1 *2 *2 *1) (-12 (-5 *2 (-1281 *3 *4)) (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)))) (-4084 (*1 *1 *2) (-12 (-5 *2 (-667 *3)) (-4 *3 (-846)) (-4 *1 (-374 *3 *4)) (-4 *4 (-172)))) (-3794 (*1 *1 *1) (-12 (-4 *1 (-374 *2 *3)) (-4 *2 (-846)) (-4 *3 (-172)))) (-3862 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)))) (-3994 (*1 *2 *1) (-12 (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)) (-5 *2 (-640 *3)))) (-1542 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-374 *2 *3)) (-4 *2 (-846)) (-4 *3 (-172)))) (-1542 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *4)) (-5 *3 (-640 *1)) (-4 *1 (-374 *4 *5)) (-4 *4 (-846)) (-4 *5 (-172)))))
+(-13 (-631 |t#2|) (-10 -8 (-15 -2310 (|t#2| (-1281 |t#1| |t#2|) $)) (-15 -1692 ($ |t#1|)) (-15 -1692 ((-1272 |t#1| |t#2|) $)) (-15 -1692 ((-1281 |t#1| |t#2|) $)) (-15 -3871 ((-767) $)) (-15 -3828 ((-1281 |t#1| |t#2|) (-1281 |t#1| |t#2|) $)) (-15 -3817 ((-1281 |t#1| |t#2|) (-1281 |t#1| |t#2|) $)) (-15 -4084 ($ (-667 |t#1|))) (-15 -3794 ($ $)) (-15 -3862 ($ $ (-767))) (-15 -3994 ((-640 |t#1|) $)) (-15 -1542 ($ $ |t#1| $)) (-15 -1542 ($ $ (-640 |t#1|) (-640 $)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#2| |#2|) . T) ((-131) . T) ((-610 (-858)) . T) ((-643 |#2|) . T) ((-631 |#2|) . T) ((-713 |#2|) . T) ((-1051 |#2|) . T) ((-1093) . T))
-((-3346 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 23)) (-2083 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 13)) (-2004 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 22)))
-(((-375 |#1| |#2|) (-10 -7 (-15 -2083 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -2004 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3346 (|#2| (-1 (-112) |#1| |#1|) |#2|))) (-1208) (-13 (-373 |#1|) (-10 -7 (-6 -4408)))) (T -375))
-((-3346 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-375 *4 *2)) (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4408)))))) (-2004 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-375 *4 *2)) (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4408)))))) (-2083 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-375 *4 *2)) (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4408)))))))
-(-10 -7 (-15 -2083 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -2004 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3346 (|#2| (-1 (-112) |#1| |#1|) |#2|)))
-((-2950 (((-684 |#2|) (-684 $)) NIL) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 22) (((-684 (-563)) (-684 $)) 14)))
-(((-376 |#1| |#2|) (-10 -8 (-15 -2950 ((-684 (-563)) (-684 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-684 |#2|) (-684 |#1|)))) (-377 |#2|) (-1045)) (T -376))
-NIL
-(-10 -8 (-15 -2950 ((-684 (-563)) (-684 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-684 |#2|) (-684 |#1|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-2950 (((-684 |#1|) (-684 $)) 36) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 35) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 43 (|has| |#1| (-636 (-563)))) (((-684 (-563)) (-684 $)) 42 (|has| |#1| (-636 (-563))))) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ (-563)) 29)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-4118 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 23)) (-4095 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 13)) (-4107 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 22)))
+(((-375 |#1| |#2|) (-10 -7 (-15 -4095 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -4107 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -4118 (|#2| (-1 (-112) |#1| |#1|) |#2|))) (-1208) (-13 (-373 |#1|) (-10 -7 (-6 -4409)))) (T -375))
+((-4118 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-375 *4 *2)) (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4409)))))) (-4107 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-375 *4 *2)) (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4409)))))) (-4095 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-375 *4 *2)) (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4409)))))))
+(-10 -7 (-15 -4095 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -4107 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -4118 (|#2| (-1 (-112) |#1| |#1|) |#2|)))
+((-1476 (((-684 |#2|) (-684 $)) NIL) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 22) (((-684 (-563)) (-684 $)) 14)))
+(((-376 |#1| |#2|) (-10 -8 (-15 -1476 ((-684 (-563)) (-684 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-684 |#2|) (-684 |#1|)))) (-377 |#2|) (-1045)) (T -376))
+NIL
+(-10 -8 (-15 -1476 ((-684 (-563)) (-684 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-684 |#2|) (-684 |#1|))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-1476 (((-684 |#1|) (-684 $)) 36) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 35) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 43 (|has| |#1| (-636 (-563)))) (((-684 (-563)) (-684 $)) 42 (|has| |#1| (-636 (-563))))) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ (-563)) 29)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-377 |#1|) (-140) (-1045)) (T -377))
NIL
(-13 (-636 |t#1|) (-10 -7 (IF (|has| |t#1| (-636 (-563))) (-6 (-636 (-563))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-563)) . T) ((-610 (-858)) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-722) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1660 (((-640 (-294 (-948 (-169 |#1|)))) (-294 (-407 (-948 (-169 (-563))))) |#1|) 51) (((-640 (-294 (-948 (-169 |#1|)))) (-407 (-948 (-169 (-563)))) |#1|) 50) (((-640 (-640 (-294 (-948 (-169 |#1|))))) (-640 (-294 (-407 (-948 (-169 (-563)))))) |#1|) 47) (((-640 (-640 (-294 (-948 (-169 |#1|))))) (-640 (-407 (-948 (-169 (-563))))) |#1|) 41)) (-1602 (((-640 (-640 (-169 |#1|))) (-640 (-407 (-948 (-169 (-563))))) (-640 (-1169)) |#1|) 30) (((-640 (-169 |#1|)) (-407 (-948 (-169 (-563)))) |#1|) 18)))
-(((-378 |#1|) (-10 -7 (-15 -1660 ((-640 (-640 (-294 (-948 (-169 |#1|))))) (-640 (-407 (-948 (-169 (-563))))) |#1|)) (-15 -1660 ((-640 (-640 (-294 (-948 (-169 |#1|))))) (-640 (-294 (-407 (-948 (-169 (-563)))))) |#1|)) (-15 -1660 ((-640 (-294 (-948 (-169 |#1|)))) (-407 (-948 (-169 (-563)))) |#1|)) (-15 -1660 ((-640 (-294 (-948 (-169 |#1|)))) (-294 (-407 (-948 (-169 (-563))))) |#1|)) (-15 -1602 ((-640 (-169 |#1|)) (-407 (-948 (-169 (-563)))) |#1|)) (-15 -1602 ((-640 (-640 (-169 |#1|))) (-640 (-407 (-948 (-169 (-563))))) (-640 (-1169)) |#1|))) (-13 (-363) (-844))) (T -378))
-((-1602 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 (-407 (-948 (-169 (-563)))))) (-5 *4 (-640 (-1169))) (-5 *2 (-640 (-640 (-169 *5)))) (-5 *1 (-378 *5)) (-4 *5 (-13 (-363) (-844))))) (-1602 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 (-169 (-563))))) (-5 *2 (-640 (-169 *4))) (-5 *1 (-378 *4)) (-4 *4 (-13 (-363) (-844))))) (-1660 (*1 *2 *3 *4) (-12 (-5 *3 (-294 (-407 (-948 (-169 (-563)))))) (-5 *2 (-640 (-294 (-948 (-169 *4))))) (-5 *1 (-378 *4)) (-4 *4 (-13 (-363) (-844))))) (-1660 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 (-169 (-563))))) (-5 *2 (-640 (-294 (-948 (-169 *4))))) (-5 *1 (-378 *4)) (-4 *4 (-13 (-363) (-844))))) (-1660 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-294 (-407 (-948 (-169 (-563))))))) (-5 *2 (-640 (-640 (-294 (-948 (-169 *4)))))) (-5 *1 (-378 *4)) (-4 *4 (-13 (-363) (-844))))) (-1660 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-407 (-948 (-169 (-563)))))) (-5 *2 (-640 (-640 (-294 (-948 (-169 *4)))))) (-5 *1 (-378 *4)) (-4 *4 (-13 (-363) (-844))))))
-(-10 -7 (-15 -1660 ((-640 (-640 (-294 (-948 (-169 |#1|))))) (-640 (-407 (-948 (-169 (-563))))) |#1|)) (-15 -1660 ((-640 (-640 (-294 (-948 (-169 |#1|))))) (-640 (-294 (-407 (-948 (-169 (-563)))))) |#1|)) (-15 -1660 ((-640 (-294 (-948 (-169 |#1|)))) (-407 (-948 (-169 (-563)))) |#1|)) (-15 -1660 ((-640 (-294 (-948 (-169 |#1|)))) (-294 (-407 (-948 (-169 (-563))))) |#1|)) (-15 -1602 ((-640 (-169 |#1|)) (-407 (-948 (-169 (-563)))) |#1|)) (-15 -1602 ((-640 (-640 (-169 |#1|))) (-640 (-407 (-948 (-169 (-563))))) (-640 (-1169)) |#1|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 33)) (-3401 (((-563) $) 55)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2421 (($ $) 110)) (-1771 (($ $) 82)) (-1619 (($ $) 71)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-2186 (($ $) 44)) (-1919 (((-112) $ $) NIL)) (-1748 (($ $) 80)) (-1597 (($ $) 69)) (-1857 (((-563) $) 64)) (-3458 (($ $ (-563)) 62)) (-1794 (($ $) NIL)) (-1643 (($ $) NIL)) (-4239 (($) NIL T CONST)) (-3796 (($ $) 112)) (-2131 (((-3 (-563) "failed") $) 188) (((-3 (-407 (-563)) "failed") $) 184)) (-2058 (((-563) $) 186) (((-407 (-563)) $) 182)) (-3090 (($ $ $) NIL)) (-3558 (((-563) $ $) 102)) (-3400 (((-3 $ "failed") $) 114)) (-3503 (((-407 (-563)) $ (-767)) 189) (((-407 (-563)) $ (-767) (-767)) 181)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3102 (((-917)) 73) (((-917) (-917)) 98 (|has| $ (-6 -4398)))) (-3101 (((-112) $) 106)) (-2180 (($) 40)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL)) (-4174 (((-1262) (-767)) 152)) (-1551 (((-1262)) 157) (((-1262) (-767)) 158)) (-2611 (((-1262)) 159) (((-1262) (-767)) 160)) (-1893 (((-1262)) 155) (((-1262) (-767)) 156)) (-3254 (((-563) $) 58)) (-3827 (((-112) $) 104)) (-1645 (($ $ (-563)) NIL)) (-2441 (($ $) 48)) (-3793 (($ $) NIL)) (-1419 (((-112) $) 35)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3084 (($ $ $) NIL) (($) NIL (-12 (-2176 (|has| $ (-6 -4390))) (-2176 (|has| $ (-6 -4398)))))) (-1777 (($ $ $) NIL) (($) 99 (-12 (-2176 (|has| $ (-6 -4390))) (-2176 (|has| $ (-6 -4398)))))) (-4050 (((-563) $) 17)) (-2165 (($) 87) (($ $) 92)) (-3097 (($) 91) (($ $) 93)) (-4371 (($ $) 83)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 116)) (-3324 (((-917) (-563)) 43 (|has| $ (-6 -4398)))) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-4215 (($ $) 53)) (-1583 (($ $) 109)) (-4340 (($ (-563) (-563)) 107) (($ (-563) (-563) (-917)) 108)) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1654 (((-563) $) 19)) (-3480 (($) 94)) (-3368 (($ $) 79)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-4113 (((-917)) 100) (((-917) (-917)) 101 (|has| $ (-6 -4398)))) (-4202 (($ $ (-767)) NIL) (($ $) 115)) (-3814 (((-917) (-563)) 47 (|has| $ (-6 -4398)))) (-1806 (($ $) NIL)) (-1656 (($ $) NIL)) (-1784 (($ $) NIL)) (-1630 (($ $) NIL)) (-1759 (($ $) 81)) (-1608 (($ $) 70)) (-2220 (((-379) $) 174) (((-225) $) 176) (((-888 (-379)) $) NIL) (((-1151) $) 162) (((-536) $) 172) (($ (-225)) 180)) (-1693 (((-858) $) 164) (($ (-563)) 185) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-563)) 185) (($ (-407 (-563))) NIL) (((-225) $) 177)) (-1675 (((-767)) NIL)) (-4194 (($ $) 111)) (-1734 (((-917)) 54) (((-917) (-917)) 66 (|has| $ (-6 -4398)))) (-4211 (((-917)) 103)) (-1840 (($ $) 86)) (-1695 (($ $) 46) (($ $ $) 52)) (-2126 (((-112) $ $) NIL)) (-1817 (($ $) 84)) (-1667 (($ $) 37)) (-1862 (($ $) NIL)) (-1722 (($ $) NIL)) (-1311 (($ $) NIL)) (-1735 (($ $) NIL)) (-1851 (($ $) NIL)) (-1710 (($ $) NIL)) (-1829 (($ $) 85)) (-1680 (($ $) 49)) (-2509 (($ $) 51)) (-2241 (($) 34 T CONST)) (-2254 (($) 38 T CONST)) (-3741 (((-1151) $) 27) (((-1151) $ (-112)) 29) (((-1262) (-818) $) 30) (((-1262) (-818) $ (-112)) 31)) (-3209 (($ $ (-767)) NIL) (($ $) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 39)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 42)) (-1837 (($ $ $) 45) (($ $ (-563)) 41)) (-1826 (($ $) 36) (($ $ $) 50)) (-1814 (($ $ $) 61)) (** (($ $ (-917)) 67) (($ $ (-767)) NIL) (($ $ (-563)) 88) (($ $ (-407 (-563))) 125) (($ $ $) 117)) (* (($ (-917) $) 65) (($ (-767) $) NIL) (($ (-563) $) 68) (($ $ $) 60) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
-(((-379) (-13 (-404) (-233) (-611 (-1151)) (-824) (-610 (-225)) (-1193) (-611 (-536)) (-615 (-225)) (-10 -8 (-15 -1837 ($ $ (-563))) (-15 ** ($ $ $)) (-15 -2441 ($ $)) (-15 -3558 ((-563) $ $)) (-15 -3458 ($ $ (-563))) (-15 -3503 ((-407 (-563)) $ (-767))) (-15 -3503 ((-407 (-563)) $ (-767) (-767))) (-15 -2165 ($)) (-15 -3097 ($)) (-15 -3480 ($)) (-15 -1695 ($ $ $)) (-15 -2165 ($ $)) (-15 -3097 ($ $)) (-15 -2611 ((-1262))) (-15 -2611 ((-1262) (-767))) (-15 -1893 ((-1262))) (-15 -1893 ((-1262) (-767))) (-15 -1551 ((-1262))) (-15 -1551 ((-1262) (-767))) (-15 -4174 ((-1262) (-767))) (-6 -4398) (-6 -4390)))) (T -379))
-((** (*1 *1 *1 *1) (-5 *1 (-379))) (-1837 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-379)))) (-2441 (*1 *1 *1) (-5 *1 (-379))) (-3558 (*1 *2 *1 *1) (-12 (-5 *2 (-563)) (-5 *1 (-379)))) (-3458 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-379)))) (-3503 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-379)))) (-3503 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-379)))) (-2165 (*1 *1) (-5 *1 (-379))) (-3097 (*1 *1) (-5 *1 (-379))) (-3480 (*1 *1) (-5 *1 (-379))) (-1695 (*1 *1 *1 *1) (-5 *1 (-379))) (-2165 (*1 *1 *1) (-5 *1 (-379))) (-3097 (*1 *1 *1) (-5 *1 (-379))) (-2611 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-379)))) (-2611 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379)))) (-1893 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-379)))) (-1893 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379)))) (-1551 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-379)))) (-1551 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379)))) (-4174 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379)))))
-(-13 (-404) (-233) (-611 (-1151)) (-824) (-610 (-225)) (-1193) (-611 (-536)) (-615 (-225)) (-10 -8 (-15 -1837 ($ $ (-563))) (-15 ** ($ $ $)) (-15 -2441 ($ $)) (-15 -3558 ((-563) $ $)) (-15 -3458 ($ $ (-563))) (-15 -3503 ((-407 (-563)) $ (-767))) (-15 -3503 ((-407 (-563)) $ (-767) (-767))) (-15 -2165 ($)) (-15 -3097 ($)) (-15 -3480 ($)) (-15 -1695 ($ $ $)) (-15 -2165 ($ $)) (-15 -3097 ($ $)) (-15 -2611 ((-1262))) (-15 -2611 ((-1262) (-767))) (-15 -1893 ((-1262))) (-15 -1893 ((-1262) (-767))) (-15 -1551 ((-1262))) (-15 -1551 ((-1262) (-767))) (-15 -4174 ((-1262) (-767))) (-6 -4398) (-6 -4390)))
-((-1793 (((-640 (-294 (-948 |#1|))) (-294 (-407 (-948 (-563)))) |#1|) 46) (((-640 (-294 (-948 |#1|))) (-407 (-948 (-563))) |#1|) 45) (((-640 (-640 (-294 (-948 |#1|)))) (-640 (-294 (-407 (-948 (-563))))) |#1|) 42) (((-640 (-640 (-294 (-948 |#1|)))) (-640 (-407 (-948 (-563)))) |#1|) 36)) (-2724 (((-640 |#1|) (-407 (-948 (-563))) |#1|) 20) (((-640 (-640 |#1|)) (-640 (-407 (-948 (-563)))) (-640 (-1169)) |#1|) 30)))
-(((-380 |#1|) (-10 -7 (-15 -1793 ((-640 (-640 (-294 (-948 |#1|)))) (-640 (-407 (-948 (-563)))) |#1|)) (-15 -1793 ((-640 (-640 (-294 (-948 |#1|)))) (-640 (-294 (-407 (-948 (-563))))) |#1|)) (-15 -1793 ((-640 (-294 (-948 |#1|))) (-407 (-948 (-563))) |#1|)) (-15 -1793 ((-640 (-294 (-948 |#1|))) (-294 (-407 (-948 (-563)))) |#1|)) (-15 -2724 ((-640 (-640 |#1|)) (-640 (-407 (-948 (-563)))) (-640 (-1169)) |#1|)) (-15 -2724 ((-640 |#1|) (-407 (-948 (-563))) |#1|))) (-13 (-844) (-363))) (T -380))
-((-2724 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 (-563)))) (-5 *2 (-640 *4)) (-5 *1 (-380 *4)) (-4 *4 (-13 (-844) (-363))))) (-2724 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 (-407 (-948 (-563))))) (-5 *4 (-640 (-1169))) (-5 *2 (-640 (-640 *5))) (-5 *1 (-380 *5)) (-4 *5 (-13 (-844) (-363))))) (-1793 (*1 *2 *3 *4) (-12 (-5 *3 (-294 (-407 (-948 (-563))))) (-5 *2 (-640 (-294 (-948 *4)))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-844) (-363))))) (-1793 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 (-563)))) (-5 *2 (-640 (-294 (-948 *4)))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-844) (-363))))) (-1793 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-294 (-407 (-948 (-563)))))) (-5 *2 (-640 (-640 (-294 (-948 *4))))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-844) (-363))))) (-1793 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-407 (-948 (-563))))) (-5 *2 (-640 (-640 (-294 (-948 *4))))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-844) (-363))))))
-(-10 -7 (-15 -1793 ((-640 (-640 (-294 (-948 |#1|)))) (-640 (-407 (-948 (-563)))) |#1|)) (-15 -1793 ((-640 (-640 (-294 (-948 |#1|)))) (-640 (-294 (-407 (-948 (-563))))) |#1|)) (-15 -1793 ((-640 (-294 (-948 |#1|))) (-407 (-948 (-563))) |#1|)) (-15 -1793 ((-640 (-294 (-948 |#1|))) (-294 (-407 (-948 (-563)))) |#1|)) (-15 -2724 ((-640 (-640 |#1|)) (-640 (-407 (-948 (-563)))) (-640 (-1169)) |#1|)) (-15 -2724 ((-640 |#1|) (-407 (-948 (-563))) |#1|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#2| "failed") $) 26)) (-2058 ((|#2| $) 28)) (-2751 (($ $) NIL)) (-4096 (((-767) $) 10)) (-1368 (((-640 $) $) 20)) (-3920 (((-112) $) NIL)) (-4222 (($ |#2| |#1|) 18)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-3115 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 14)) (-2716 ((|#2| $) 15)) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 44) (($ |#2|) 27)) (-1337 (((-640 |#1|) $) 17)) (-4319 ((|#1| $ |#2|) 46)) (-2241 (($) 29 T CONST)) (-1531 (((-640 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 13)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ |#1| $) 32) (($ $ |#1|) 33) (($ |#1| |#2|) 34) (($ |#2| |#1|) 35)))
+((-4214 (((-640 (-294 (-948 (-169 |#1|)))) (-294 (-407 (-948 (-169 (-563))))) |#1|) 51) (((-640 (-294 (-948 (-169 |#1|)))) (-407 (-948 (-169 (-563)))) |#1|) 50) (((-640 (-640 (-294 (-948 (-169 |#1|))))) (-640 (-294 (-407 (-948 (-169 (-563)))))) |#1|) 47) (((-640 (-640 (-294 (-948 (-169 |#1|))))) (-640 (-407 (-948 (-169 (-563))))) |#1|) 41)) (-4224 (((-640 (-640 (-169 |#1|))) (-640 (-407 (-948 (-169 (-563))))) (-640 (-1169)) |#1|) 30) (((-640 (-169 |#1|)) (-407 (-948 (-169 (-563)))) |#1|) 18)))
+(((-378 |#1|) (-10 -7 (-15 -4214 ((-640 (-640 (-294 (-948 (-169 |#1|))))) (-640 (-407 (-948 (-169 (-563))))) |#1|)) (-15 -4214 ((-640 (-640 (-294 (-948 (-169 |#1|))))) (-640 (-294 (-407 (-948 (-169 (-563)))))) |#1|)) (-15 -4214 ((-640 (-294 (-948 (-169 |#1|)))) (-407 (-948 (-169 (-563)))) |#1|)) (-15 -4214 ((-640 (-294 (-948 (-169 |#1|)))) (-294 (-407 (-948 (-169 (-563))))) |#1|)) (-15 -4224 ((-640 (-169 |#1|)) (-407 (-948 (-169 (-563)))) |#1|)) (-15 -4224 ((-640 (-640 (-169 |#1|))) (-640 (-407 (-948 (-169 (-563))))) (-640 (-1169)) |#1|))) (-13 (-363) (-844))) (T -378))
+((-4224 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 (-407 (-948 (-169 (-563)))))) (-5 *4 (-640 (-1169))) (-5 *2 (-640 (-640 (-169 *5)))) (-5 *1 (-378 *5)) (-4 *5 (-13 (-363) (-844))))) (-4224 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 (-169 (-563))))) (-5 *2 (-640 (-169 *4))) (-5 *1 (-378 *4)) (-4 *4 (-13 (-363) (-844))))) (-4214 (*1 *2 *3 *4) (-12 (-5 *3 (-294 (-407 (-948 (-169 (-563)))))) (-5 *2 (-640 (-294 (-948 (-169 *4))))) (-5 *1 (-378 *4)) (-4 *4 (-13 (-363) (-844))))) (-4214 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 (-169 (-563))))) (-5 *2 (-640 (-294 (-948 (-169 *4))))) (-5 *1 (-378 *4)) (-4 *4 (-13 (-363) (-844))))) (-4214 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-294 (-407 (-948 (-169 (-563))))))) (-5 *2 (-640 (-640 (-294 (-948 (-169 *4)))))) (-5 *1 (-378 *4)) (-4 *4 (-13 (-363) (-844))))) (-4214 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-407 (-948 (-169 (-563)))))) (-5 *2 (-640 (-640 (-294 (-948 (-169 *4)))))) (-5 *1 (-378 *4)) (-4 *4 (-13 (-363) (-844))))))
+(-10 -7 (-15 -4214 ((-640 (-640 (-294 (-948 (-169 |#1|))))) (-640 (-407 (-948 (-169 (-563))))) |#1|)) (-15 -4214 ((-640 (-640 (-294 (-948 (-169 |#1|))))) (-640 (-294 (-407 (-948 (-169 (-563)))))) |#1|)) (-15 -4214 ((-640 (-294 (-948 (-169 |#1|)))) (-407 (-948 (-169 (-563)))) |#1|)) (-15 -4214 ((-640 (-294 (-948 (-169 |#1|)))) (-294 (-407 (-948 (-169 (-563))))) |#1|)) (-15 -4224 ((-640 (-169 |#1|)) (-407 (-948 (-169 (-563)))) |#1|)) (-15 -4224 ((-640 (-640 (-169 |#1|))) (-640 (-407 (-948 (-169 (-563))))) (-640 (-1169)) |#1|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 33)) (-3944 (((-563) $) 56)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-1763 (($ $) 110)) (-1770 (($ $) 83)) (-1618 (($ $) 72)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2185 (($ $) 44)) (-2003 (((-112) $ $) NIL)) (-1747 (($ $) 81)) (-1596 (($ $) 70)) (-2807 (((-563) $) 65)) (-3462 (($ $ (-563)) 63)) (-1793 (($ $) NIL)) (-1642 (($ $) NIL)) (-2569 (($) NIL T CONST)) (-3925 (($ $) 112)) (-2130 (((-3 (-563) "failed") $) 188) (((-3 (-407 (-563)) "failed") $) 184)) (-2057 (((-563) $) 186) (((-407 (-563)) $) 182)) (-3094 (($ $ $) NIL)) (-4204 (((-563) $ $) 103)) (-3951 (((-3 $ "failed") $) 114)) (-4193 (((-407 (-563)) $ (-767)) 189) (((-407 (-563)) $ (-767) (-767)) 181)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-3107 (((-917)) 74) (((-917) (-917)) 99 (|has| $ (-6 -4399)))) (-3414 (((-112) $) 106)) (-2179 (($) 39)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL)) (-4128 (((-1262) (-767)) 152)) (-4141 (((-1262)) 157) (((-1262) (-767)) 158)) (-4162 (((-1262)) 159) (((-1262) (-767)) 160)) (-4152 (((-1262)) 155) (((-1262) (-767)) 156)) (-1775 (((-563) $) 59)) (-3401 (((-112) $) 38)) (-2172 (($ $ (-563)) NIL)) (-1826 (($ $) 48)) (-3975 (($ $) NIL)) (-3426 (((-112) $) 35)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3088 (($ $ $) NIL) (($) NIL (-12 (-2174 (|has| $ (-6 -4391))) (-2174 (|has| $ (-6 -4399)))))) (-1776 (($ $ $) NIL) (($) 100 (-12 (-2174 (|has| $ (-6 -4391))) (-2174 (|has| $ (-6 -4399)))))) (-4051 (((-563) $) 17)) (-4181 (($) 88) (($ $) 93)) (-3101 (($) 92) (($ $) 94)) (-4372 (($ $) 84)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 116)) (-3217 (((-917) (-563)) 43 (|has| $ (-6 -4399)))) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3935 (($ $) 54)) (-3954 (($ $) 109)) (-4341 (($ (-563) (-563)) 107) (($ (-563) (-563) (-917)) 108)) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3311 (((-563) $) 19)) (-4171 (($) 95)) (-3372 (($ $) 80)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3605 (((-917)) 101) (((-917) (-917)) 102 (|has| $ (-6 -4399)))) (-4203 (($ $ (-767)) NIL) (($ $) 115)) (-3206 (((-917) (-563)) 47 (|has| $ (-6 -4399)))) (-1805 (($ $) NIL)) (-1655 (($ $) NIL)) (-1783 (($ $) NIL)) (-1629 (($ $) NIL)) (-1758 (($ $) 82)) (-1607 (($ $) 71)) (-2219 (((-379) $) 174) (((-225) $) 176) (((-888 (-379)) $) NIL) (((-1151) $) 162) (((-536) $) 172) (($ (-225)) 180)) (-1692 (((-858) $) 164) (($ (-563)) 185) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-563)) 185) (($ (-407 (-563))) NIL) (((-225) $) 177)) (-3914 (((-767)) NIL)) (-3965 (($ $) 111)) (-3227 (((-917)) 55) (((-917) (-917)) 67 (|has| $ (-6 -4399)))) (-4212 (((-917)) 104)) (-1839 (($ $) 87)) (-1694 (($ $) 46) (($ $ $) 53)) (-3223 (((-112) $ $) NIL)) (-1816 (($ $) 85)) (-1666 (($ $) 37)) (-1861 (($ $) NIL)) (-1721 (($ $) NIL)) (-1311 (($ $) NIL)) (-1734 (($ $) NIL)) (-1850 (($ $) NIL)) (-1709 (($ $) NIL)) (-1828 (($ $) 86)) (-1679 (($ $) 49)) (-1462 (($ $) 52)) (-2239 (($) 34 T CONST)) (-2253 (($) 41 T CONST)) (-2742 (((-1151) $) 27) (((-1151) $ (-112)) 29) (((-1262) (-818) $) 30) (((-1262) (-818) $ (-112)) 31)) (-3213 (($ $ (-767)) NIL) (($ $) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 51)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 42)) (-1836 (($ $ $) 45) (($ $ (-563)) 40)) (-1825 (($ $) 36) (($ $ $) 50)) (-1813 (($ $ $) 62)) (** (($ $ (-917)) 68) (($ $ (-767)) NIL) (($ $ (-563)) 89) (($ $ (-407 (-563))) 125) (($ $ $) 117)) (* (($ (-917) $) 66) (($ (-767) $) NIL) (($ (-563) $) 69) (($ $ $) 61) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
+(((-379) (-13 (-404) (-233) (-611 (-1151)) (-824) (-610 (-225)) (-1193) (-611 (-536)) (-615 (-225)) (-10 -8 (-15 -1836 ($ $ (-563))) (-15 ** ($ $ $)) (-15 -1826 ($ $)) (-15 -4204 ((-563) $ $)) (-15 -3462 ($ $ (-563))) (-15 -4193 ((-407 (-563)) $ (-767))) (-15 -4193 ((-407 (-563)) $ (-767) (-767))) (-15 -4181 ($)) (-15 -3101 ($)) (-15 -4171 ($)) (-15 -1694 ($ $ $)) (-15 -4181 ($ $)) (-15 -3101 ($ $)) (-15 -4162 ((-1262))) (-15 -4162 ((-1262) (-767))) (-15 -4152 ((-1262))) (-15 -4152 ((-1262) (-767))) (-15 -4141 ((-1262))) (-15 -4141 ((-1262) (-767))) (-15 -4128 ((-1262) (-767))) (-6 -4399) (-6 -4391)))) (T -379))
+((** (*1 *1 *1 *1) (-5 *1 (-379))) (-1836 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-379)))) (-1826 (*1 *1 *1) (-5 *1 (-379))) (-4204 (*1 *2 *1 *1) (-12 (-5 *2 (-563)) (-5 *1 (-379)))) (-3462 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-379)))) (-4193 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-379)))) (-4193 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-379)))) (-4181 (*1 *1) (-5 *1 (-379))) (-3101 (*1 *1) (-5 *1 (-379))) (-4171 (*1 *1) (-5 *1 (-379))) (-1694 (*1 *1 *1 *1) (-5 *1 (-379))) (-4181 (*1 *1 *1) (-5 *1 (-379))) (-3101 (*1 *1 *1) (-5 *1 (-379))) (-4162 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-379)))) (-4162 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379)))) (-4152 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-379)))) (-4152 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379)))) (-4141 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-379)))) (-4141 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379)))) (-4128 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379)))))
+(-13 (-404) (-233) (-611 (-1151)) (-824) (-610 (-225)) (-1193) (-611 (-536)) (-615 (-225)) (-10 -8 (-15 -1836 ($ $ (-563))) (-15 ** ($ $ $)) (-15 -1826 ($ $)) (-15 -4204 ((-563) $ $)) (-15 -3462 ($ $ (-563))) (-15 -4193 ((-407 (-563)) $ (-767))) (-15 -4193 ((-407 (-563)) $ (-767) (-767))) (-15 -4181 ($)) (-15 -3101 ($)) (-15 -4171 ($)) (-15 -1694 ($ $ $)) (-15 -4181 ($ $)) (-15 -3101 ($ $)) (-15 -4162 ((-1262))) (-15 -4162 ((-1262) (-767))) (-15 -4152 ((-1262))) (-15 -4152 ((-1262) (-767))) (-15 -4141 ((-1262))) (-15 -4141 ((-1262) (-767))) (-15 -4128 ((-1262) (-767))) (-6 -4399) (-6 -4391)))
+((-3510 (((-640 (-294 (-948 |#1|))) (-294 (-407 (-948 (-563)))) |#1|) 46) (((-640 (-294 (-948 |#1|))) (-407 (-948 (-563))) |#1|) 45) (((-640 (-640 (-294 (-948 |#1|)))) (-640 (-294 (-407 (-948 (-563))))) |#1|) 42) (((-640 (-640 (-294 (-948 |#1|)))) (-640 (-407 (-948 (-563)))) |#1|) 36)) (-4233 (((-640 |#1|) (-407 (-948 (-563))) |#1|) 20) (((-640 (-640 |#1|)) (-640 (-407 (-948 (-563)))) (-640 (-1169)) |#1|) 30)))
+(((-380 |#1|) (-10 -7 (-15 -3510 ((-640 (-640 (-294 (-948 |#1|)))) (-640 (-407 (-948 (-563)))) |#1|)) (-15 -3510 ((-640 (-640 (-294 (-948 |#1|)))) (-640 (-294 (-407 (-948 (-563))))) |#1|)) (-15 -3510 ((-640 (-294 (-948 |#1|))) (-407 (-948 (-563))) |#1|)) (-15 -3510 ((-640 (-294 (-948 |#1|))) (-294 (-407 (-948 (-563)))) |#1|)) (-15 -4233 ((-640 (-640 |#1|)) (-640 (-407 (-948 (-563)))) (-640 (-1169)) |#1|)) (-15 -4233 ((-640 |#1|) (-407 (-948 (-563))) |#1|))) (-13 (-844) (-363))) (T -380))
+((-4233 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 (-563)))) (-5 *2 (-640 *4)) (-5 *1 (-380 *4)) (-4 *4 (-13 (-844) (-363))))) (-4233 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 (-407 (-948 (-563))))) (-5 *4 (-640 (-1169))) (-5 *2 (-640 (-640 *5))) (-5 *1 (-380 *5)) (-4 *5 (-13 (-844) (-363))))) (-3510 (*1 *2 *3 *4) (-12 (-5 *3 (-294 (-407 (-948 (-563))))) (-5 *2 (-640 (-294 (-948 *4)))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-844) (-363))))) (-3510 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 (-563)))) (-5 *2 (-640 (-294 (-948 *4)))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-844) (-363))))) (-3510 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-294 (-407 (-948 (-563)))))) (-5 *2 (-640 (-640 (-294 (-948 *4))))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-844) (-363))))) (-3510 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-407 (-948 (-563))))) (-5 *2 (-640 (-640 (-294 (-948 *4))))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-844) (-363))))))
+(-10 -7 (-15 -3510 ((-640 (-640 (-294 (-948 |#1|)))) (-640 (-407 (-948 (-563)))) |#1|)) (-15 -3510 ((-640 (-640 (-294 (-948 |#1|)))) (-640 (-294 (-407 (-948 (-563))))) |#1|)) (-15 -3510 ((-640 (-294 (-948 |#1|))) (-407 (-948 (-563))) |#1|)) (-15 -3510 ((-640 (-294 (-948 |#1|))) (-294 (-407 (-948 (-563)))) |#1|)) (-15 -4233 ((-640 (-640 |#1|)) (-640 (-407 (-948 (-563)))) (-640 (-1169)) |#1|)) (-15 -4233 ((-640 |#1|) (-407 (-948 (-563))) |#1|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#2| "failed") $) 26)) (-2057 ((|#2| $) 28)) (-2750 (($ $) NIL)) (-3481 (((-767) $) 10)) (-3919 (((-640 $) $) 20)) (-3805 (((-112) $) NIL)) (-4223 (($ |#2| |#1|) 18)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-4243 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 14)) (-2715 ((|#2| $) 15)) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 44) (($ |#2|) 27)) (-3955 (((-640 |#1|) $) 17)) (-3244 ((|#1| $ |#2|) 46)) (-2239 (($) 29 T CONST)) (-2891 (((-640 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 13)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ |#1| $) 32) (($ $ |#1|) 33) (($ |#1| |#2|) 34) (($ |#2| |#1|) 35)))
(((-381 |#1| |#2|) (-13 (-382 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|)))) (-1045) (-846)) (T -381))
((* (*1 *1 *2 *3) (-12 (-5 *1 (-381 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-846)))))
(-13 (-382 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-2131 (((-3 |#2| "failed") $) 44)) (-2058 ((|#2| $) 45)) (-2751 (($ $) 30)) (-4096 (((-767) $) 34)) (-1368 (((-640 $) $) 35)) (-3920 (((-112) $) 38)) (-4222 (($ |#2| |#1|) 39)) (-2240 (($ (-1 |#1| |#1|) $) 40)) (-3115 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 31)) (-2716 ((|#2| $) 33)) (-2726 ((|#1| $) 32)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ |#2|) 43)) (-1337 (((-640 |#1|) $) 36)) (-4319 ((|#1| $ |#2|) 41)) (-2241 (($) 18 T CONST)) (-1531 (((-640 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 37)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26) (($ |#1| |#2|) 42)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-2130 (((-3 |#2| "failed") $) 44)) (-2057 ((|#2| $) 45)) (-2750 (($ $) 30)) (-3481 (((-767) $) 34)) (-3919 (((-640 $) $) 35)) (-3805 (((-112) $) 38)) (-4223 (($ |#2| |#1|) 39)) (-2238 (($ (-1 |#1| |#1|) $) 40)) (-4243 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 31)) (-2715 ((|#2| $) 33)) (-2725 ((|#1| $) 32)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ |#2|) 43)) (-3955 (((-640 |#1|) $) 36)) (-3244 ((|#1| $ |#2|) 41)) (-2239 (($) 18 T CONST)) (-2891 (((-640 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 37)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26) (($ |#1| |#2|) 42)))
(((-382 |#1| |#2|) (-140) (-1045) (-1093)) (T -382))
-((* (*1 *1 *2 *3) (-12 (-4 *1 (-382 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-1093)))) (-4319 (*1 *2 *1 *3) (-12 (-4 *1 (-382 *2 *3)) (-4 *3 (-1093)) (-4 *2 (-1045)))) (-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093)))) (-4222 (*1 *1 *2 *3) (-12 (-4 *1 (-382 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1093)))) (-3920 (*1 *2 *1) (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093)) (-5 *2 (-112)))) (-1531 (*1 *2 *1) (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093)) (-5 *2 (-640 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-1337 (*1 *2 *1) (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093)) (-5 *2 (-640 *3)))) (-1368 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-1093)) (-5 *2 (-640 *1)) (-4 *1 (-382 *3 *4)))) (-4096 (*1 *2 *1) (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093)) (-5 *2 (-767)))) (-2716 (*1 *2 *1) (-12 (-4 *1 (-382 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1093)))) (-2726 (*1 *2 *1) (-12 (-4 *1 (-382 *2 *3)) (-4 *3 (-1093)) (-4 *2 (-1045)))) (-3115 (*1 *2 *1) (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-2751 (*1 *1 *1) (-12 (-4 *1 (-382 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-1093)))))
-(-13 (-111 |t#1| |t#1|) (-1034 |t#2|) (-10 -8 (-15 * ($ |t#1| |t#2|)) (-15 -4319 (|t#1| $ |t#2|)) (-15 -2240 ($ (-1 |t#1| |t#1|) $)) (-15 -4222 ($ |t#2| |t#1|)) (-15 -3920 ((-112) $)) (-15 -1531 ((-640 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -1337 ((-640 |t#1|) $)) (-15 -1368 ((-640 $) $)) (-15 -4096 ((-767) $)) (-15 -2716 (|t#2| $)) (-15 -2726 (|t#1| $)) (-15 -3115 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -2751 ($ $)) (IF (|has| |t#1| (-172)) (-6 (-713 |t#1|)) |%noBranch|)))
+((* (*1 *1 *2 *3) (-12 (-4 *1 (-382 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-1093)))) (-3244 (*1 *2 *1 *3) (-12 (-4 *1 (-382 *2 *3)) (-4 *3 (-1093)) (-4 *2 (-1045)))) (-2238 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093)))) (-4223 (*1 *1 *2 *3) (-12 (-4 *1 (-382 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1093)))) (-3805 (*1 *2 *1) (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093)) (-5 *2 (-112)))) (-2891 (*1 *2 *1) (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093)) (-5 *2 (-640 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-3955 (*1 *2 *1) (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093)) (-5 *2 (-640 *3)))) (-3919 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-1093)) (-5 *2 (-640 *1)) (-4 *1 (-382 *3 *4)))) (-3481 (*1 *2 *1) (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093)) (-5 *2 (-767)))) (-2715 (*1 *2 *1) (-12 (-4 *1 (-382 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1093)))) (-2725 (*1 *2 *1) (-12 (-4 *1 (-382 *2 *3)) (-4 *3 (-1093)) (-4 *2 (-1045)))) (-4243 (*1 *2 *1) (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-2750 (*1 *1 *1) (-12 (-4 *1 (-382 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-1093)))))
+(-13 (-111 |t#1| |t#1|) (-1034 |t#2|) (-10 -8 (-15 * ($ |t#1| |t#2|)) (-15 -3244 (|t#1| $ |t#2|)) (-15 -2238 ($ (-1 |t#1| |t#1|) $)) (-15 -4223 ($ |t#2| |t#1|)) (-15 -3805 ((-112) $)) (-15 -2891 ((-640 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -3955 ((-640 |t#1|) $)) (-15 -3919 ((-640 $) $)) (-15 -3481 ((-767) $)) (-15 -2715 (|t#2| $)) (-15 -2725 (|t#1| $)) (-15 -4243 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -2750 ($ $)) (IF (|has| |t#1| (-172)) (-6 (-713 |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-613 |#2|) . T) ((-610 (-858)) . T) ((-643 |#1|) . T) ((-713 |#1|) |has| |#1| (-172)) ((-1034 |#2|) . T) ((-1051 |#1|) . T) ((-1093) . T))
-((-2615 (((-1262) $) 7)) (-1693 (((-858) $) 8) (($ (-684 (-694))) 14) (($ (-640 (-330))) 13) (($ (-330)) 12) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 11)))
+((-2615 (((-1262) $) 7)) (-1692 (((-858) $) 8) (($ (-684 (-694))) 14) (($ (-640 (-330))) 13) (($ (-330)) 12) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 11)))
(((-383) (-140)) (T -383))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-684 (-694))) (-4 *1 (-383)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-4 *1 (-383)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-330)) (-4 *1 (-383)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) (-4 *1 (-383)))))
-(-13 (-395) (-10 -8 (-15 -1693 ($ (-684 (-694)))) (-15 -1693 ($ (-640 (-330)))) (-15 -1693 ($ (-330))) (-15 -1693 ($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))))))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-684 (-694))) (-4 *1 (-383)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-4 *1 (-383)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-330)) (-4 *1 (-383)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) (-4 *1 (-383)))))
+(-13 (-395) (-10 -8 (-15 -1692 ($ (-684 (-694)))) (-15 -1692 ($ (-640 (-330)))) (-15 -1692 ($ (-330))) (-15 -1692 ($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))))))
(((-610 (-858)) . T) ((-395) . T) ((-1208) . T))
-((-2131 (((-3 $ "failed") (-684 (-316 (-379)))) 21) (((-3 $ "failed") (-684 (-316 (-563)))) 19) (((-3 $ "failed") (-684 (-948 (-379)))) 17) (((-3 $ "failed") (-684 (-948 (-563)))) 15) (((-3 $ "failed") (-684 (-407 (-948 (-379))))) 13) (((-3 $ "failed") (-684 (-407 (-948 (-563))))) 11)) (-2058 (($ (-684 (-316 (-379)))) 22) (($ (-684 (-316 (-563)))) 20) (($ (-684 (-948 (-379)))) 18) (($ (-684 (-948 (-563)))) 16) (($ (-684 (-407 (-948 (-379))))) 14) (($ (-684 (-407 (-948 (-563))))) 12)) (-2615 (((-1262) $) 7)) (-1693 (((-858) $) 8) (($ (-640 (-330))) 25) (($ (-330)) 24) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 23)))
+((-2130 (((-3 $ "failed") (-684 (-316 (-379)))) 21) (((-3 $ "failed") (-684 (-316 (-563)))) 19) (((-3 $ "failed") (-684 (-948 (-379)))) 17) (((-3 $ "failed") (-684 (-948 (-563)))) 15) (((-3 $ "failed") (-684 (-407 (-948 (-379))))) 13) (((-3 $ "failed") (-684 (-407 (-948 (-563))))) 11)) (-2057 (($ (-684 (-316 (-379)))) 22) (($ (-684 (-316 (-563)))) 20) (($ (-684 (-948 (-379)))) 18) (($ (-684 (-948 (-563)))) 16) (($ (-684 (-407 (-948 (-379))))) 14) (($ (-684 (-407 (-948 (-563))))) 12)) (-2615 (((-1262) $) 7)) (-1692 (((-858) $) 8) (($ (-640 (-330))) 25) (($ (-330)) 24) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 23)))
(((-384) (-140)) (T -384))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-4 *1 (-384)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-330)) (-4 *1 (-384)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) (-4 *1 (-384)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-684 (-316 (-379)))) (-4 *1 (-384)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-684 (-316 (-379)))) (-4 *1 (-384)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-684 (-316 (-563)))) (-4 *1 (-384)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-684 (-316 (-563)))) (-4 *1 (-384)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-684 (-948 (-379)))) (-4 *1 (-384)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-684 (-948 (-379)))) (-4 *1 (-384)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-684 (-948 (-563)))) (-4 *1 (-384)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-684 (-948 (-563)))) (-4 *1 (-384)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-684 (-407 (-948 (-379))))) (-4 *1 (-384)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-684 (-407 (-948 (-379))))) (-4 *1 (-384)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-684 (-407 (-948 (-563))))) (-4 *1 (-384)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-684 (-407 (-948 (-563))))) (-4 *1 (-384)))))
-(-13 (-395) (-10 -8 (-15 -1693 ($ (-640 (-330)))) (-15 -1693 ($ (-330))) (-15 -1693 ($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330)))))) (-15 -2058 ($ (-684 (-316 (-379))))) (-15 -2131 ((-3 $ "failed") (-684 (-316 (-379))))) (-15 -2058 ($ (-684 (-316 (-563))))) (-15 -2131 ((-3 $ "failed") (-684 (-316 (-563))))) (-15 -2058 ($ (-684 (-948 (-379))))) (-15 -2131 ((-3 $ "failed") (-684 (-948 (-379))))) (-15 -2058 ($ (-684 (-948 (-563))))) (-15 -2131 ((-3 $ "failed") (-684 (-948 (-563))))) (-15 -2058 ($ (-684 (-407 (-948 (-379)))))) (-15 -2131 ((-3 $ "failed") (-684 (-407 (-948 (-379)))))) (-15 -2058 ($ (-684 (-407 (-948 (-563)))))) (-15 -2131 ((-3 $ "failed") (-684 (-407 (-948 (-563))))))))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-4 *1 (-384)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-330)) (-4 *1 (-384)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) (-4 *1 (-384)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-684 (-316 (-379)))) (-4 *1 (-384)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-684 (-316 (-379)))) (-4 *1 (-384)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-684 (-316 (-563)))) (-4 *1 (-384)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-684 (-316 (-563)))) (-4 *1 (-384)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-684 (-948 (-379)))) (-4 *1 (-384)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-684 (-948 (-379)))) (-4 *1 (-384)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-684 (-948 (-563)))) (-4 *1 (-384)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-684 (-948 (-563)))) (-4 *1 (-384)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-684 (-407 (-948 (-379))))) (-4 *1 (-384)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-684 (-407 (-948 (-379))))) (-4 *1 (-384)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-684 (-407 (-948 (-563))))) (-4 *1 (-384)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-684 (-407 (-948 (-563))))) (-4 *1 (-384)))))
+(-13 (-395) (-10 -8 (-15 -1692 ($ (-640 (-330)))) (-15 -1692 ($ (-330))) (-15 -1692 ($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330)))))) (-15 -2057 ($ (-684 (-316 (-379))))) (-15 -2130 ((-3 $ "failed") (-684 (-316 (-379))))) (-15 -2057 ($ (-684 (-316 (-563))))) (-15 -2130 ((-3 $ "failed") (-684 (-316 (-563))))) (-15 -2057 ($ (-684 (-948 (-379))))) (-15 -2130 ((-3 $ "failed") (-684 (-948 (-379))))) (-15 -2057 ($ (-684 (-948 (-563))))) (-15 -2130 ((-3 $ "failed") (-684 (-948 (-563))))) (-15 -2057 ($ (-684 (-407 (-948 (-379)))))) (-15 -2130 ((-3 $ "failed") (-684 (-407 (-948 (-379)))))) (-15 -2057 ($ (-684 (-407 (-948 (-563)))))) (-15 -2130 ((-3 $ "failed") (-684 (-407 (-948 (-563))))))))
(((-610 (-858)) . T) ((-395) . T) ((-1208) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2751 (($ $) NIL)) (-2588 (($ |#1| |#2|) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-3395 ((|#2| $) NIL)) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 28)) (-2241 (($) 12 T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ |#1| $) 16) (($ $ |#1|) 19)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2750 (($ $) NIL)) (-2587 (($ |#1| |#2|) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-1867 ((|#2| $) NIL)) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 29)) (-2239 (($) 12 T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ |#1| $) 15) (($ $ |#1|) 18)))
(((-385 |#1| |#2|) (-13 (-111 |#1| |#1|) (-509 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-172)) (-6 (-713 |#1|)) |%noBranch|))) (-1045) (-846)) (T -385))
NIL
(-13 (-111 |#1| |#1|) (-509 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-172)) (-6 (-713 |#1|)) |%noBranch|)))
-((-1677 (((-112) $ $) NIL)) (-3749 (((-767) $) 58)) (-4239 (($) NIL T CONST)) (-3181 (((-3 $ "failed") $ $) 60)) (-2131 (((-3 |#1| "failed") $) NIL)) (-2058 ((|#1| $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-2884 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 52)) (-3827 (((-112) $) 15)) (-2768 ((|#1| $ (-563)) NIL)) (-4208 (((-767) $ (-563)) NIL)) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-1633 (($ (-1 |#1| |#1|) $) 38)) (-2163 (($ (-1 (-767) (-767)) $) 35)) (-3439 (((-3 $ "failed") $ $) 49)) (-3573 (((-1151) $) NIL)) (-3744 (($ $ $) 26)) (-3916 (($ $ $) 24)) (-1694 (((-1113) $) NIL)) (-2760 (((-640 (-2 (|:| |gen| |#1|) (|:| -3368 (-767)))) $) 32)) (-2452 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 55)) (-1693 (((-858) $) 22) (($ |#1|) NIL)) (-2254 (($) 9 T CONST)) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) 41)) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) 62 (|has| |#1| (-846)))) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ |#1| (-767)) 40)) (* (($ $ $) 47) (($ |#1| $) 30) (($ $ |#1|) 28)))
-(((-386 |#1|) (-13 (-722) (-1034 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-767))) (-15 -3916 ($ $ $)) (-15 -3744 ($ $ $)) (-15 -3439 ((-3 $ "failed") $ $)) (-15 -3181 ((-3 $ "failed") $ $)) (-15 -2452 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2884 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3749 ((-767) $)) (-15 -2760 ((-640 (-2 (|:| |gen| |#1|) (|:| -3368 (-767)))) $)) (-15 -4208 ((-767) $ (-563))) (-15 -2768 (|#1| $ (-563))) (-15 -2163 ($ (-1 (-767) (-767)) $)) (-15 -1633 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-846)) (-6 (-846)) |%noBranch|))) (-1093)) (T -386))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-767)) (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (-3916 (*1 *1 *1 *1) (-12 (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (-3744 (*1 *1 *1 *1) (-12 (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (-3439 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (-3181 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (-2452 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-386 *3)) (|:| |rm| (-386 *3)))) (-5 *1 (-386 *3)) (-4 *3 (-1093)))) (-2884 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-386 *3)) (|:| |mm| (-386 *3)) (|:| |rm| (-386 *3)))) (-5 *1 (-386 *3)) (-4 *3 (-1093)))) (-3749 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-386 *3)) (-4 *3 (-1093)))) (-2760 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3368 (-767))))) (-5 *1 (-386 *3)) (-4 *3 (-1093)))) (-4208 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-767)) (-5 *1 (-386 *4)) (-4 *4 (-1093)))) (-2768 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (-2163 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-767) (-767))) (-5 *1 (-386 *3)) (-4 *3 (-1093)))) (-1633 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-386 *3)))))
-(-13 (-722) (-1034 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-767))) (-15 -3916 ($ $ $)) (-15 -3744 ($ $ $)) (-15 -3439 ((-3 $ "failed") $ $)) (-15 -3181 ((-3 $ "failed") $ $)) (-15 -2452 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2884 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3749 ((-767) $)) (-15 -2760 ((-640 (-2 (|:| |gen| |#1|) (|:| -3368 (-767)))) $)) (-15 -4208 ((-767) $ (-563))) (-15 -2768 (|#1| $ (-563))) (-15 -2163 ($ (-1 (-767) (-767)) $)) (-15 -1633 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-846)) (-6 (-846)) |%noBranch|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-2131 (((-3 (-563) "failed") $) 48)) (-2058 (((-563) $) 49)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3084 (($ $ $) 55)) (-1777 (($ $ $) 54)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3008 (((-3 $ "failed") $ $) 43)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-563)) 47)) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 40)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1778 (((-112) $ $) 52)) (-1756 (((-112) $ $) 51)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 53)) (-1744 (((-112) $ $) 50)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-1677 (((-112) $ $) NIL)) (-3750 (((-767) $) 57)) (-2569 (($) NIL T CONST)) (-3817 (((-3 $ "failed") $ $) 59)) (-2130 (((-3 |#1| "failed") $) NIL)) (-2057 ((|#1| $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1366 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 51)) (-3401 (((-112) $) 15)) (-1347 ((|#1| $ (-563)) NIL)) (-1357 (((-767) $ (-563)) NIL)) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-1499 (($ (-1 |#1| |#1|) $) 38)) (-1510 (($ (-1 (-767) (-767)) $) 35)) (-3828 (((-3 $ "failed") $ $) 48)) (-3854 (((-1151) $) NIL)) (-1375 (($ $ $) 26)) (-1385 (($ $ $) 24)) (-1693 (((-1113) $) NIL)) (-1337 (((-640 (-2 (|:| |gen| |#1|) (|:| -3372 (-767)))) $) 32)) (-3263 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 54)) (-1692 (((-858) $) 22) (($ |#1|) NIL)) (-2253 (($) 9 T CONST)) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) 61 (|has| |#1| (-846)))) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ |#1| (-767)) 40)) (* (($ $ $) 46) (($ |#1| $) 30) (($ $ |#1|) 28)))
+(((-386 |#1|) (-13 (-722) (-1034 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-767))) (-15 -1385 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -3828 ((-3 $ "failed") $ $)) (-15 -3817 ((-3 $ "failed") $ $)) (-15 -3263 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1366 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3750 ((-767) $)) (-15 -1337 ((-640 (-2 (|:| |gen| |#1|) (|:| -3372 (-767)))) $)) (-15 -1357 ((-767) $ (-563))) (-15 -1347 (|#1| $ (-563))) (-15 -1510 ($ (-1 (-767) (-767)) $)) (-15 -1499 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-846)) (-6 (-846)) |%noBranch|))) (-1093)) (T -386))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-767)) (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (-1385 (*1 *1 *1 *1) (-12 (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (-1375 (*1 *1 *1 *1) (-12 (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (-3828 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (-3817 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (-3263 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-386 *3)) (|:| |rm| (-386 *3)))) (-5 *1 (-386 *3)) (-4 *3 (-1093)))) (-1366 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-386 *3)) (|:| |mm| (-386 *3)) (|:| |rm| (-386 *3)))) (-5 *1 (-386 *3)) (-4 *3 (-1093)))) (-3750 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-386 *3)) (-4 *3 (-1093)))) (-1337 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3372 (-767))))) (-5 *1 (-386 *3)) (-4 *3 (-1093)))) (-1357 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-767)) (-5 *1 (-386 *4)) (-4 *4 (-1093)))) (-1347 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-386 *2)) (-4 *2 (-1093)))) (-1510 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-767) (-767))) (-5 *1 (-386 *3)) (-4 *3 (-1093)))) (-1499 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-386 *3)))))
+(-13 (-722) (-1034 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-767))) (-15 -1385 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -3828 ((-3 $ "failed") $ $)) (-15 -3817 ((-3 $ "failed") $ $)) (-15 -3263 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1366 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3750 ((-767) $)) (-15 -1337 ((-640 (-2 (|:| |gen| |#1|) (|:| -3372 (-767)))) $)) (-15 -1357 ((-767) $ (-563))) (-15 -1347 (|#1| $ (-563))) (-15 -1510 ($ (-1 (-767) (-767)) $)) (-15 -1499 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-846)) (-6 (-846)) |%noBranch|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-2130 (((-3 (-563) "failed") $) 48)) (-2057 (((-563) $) 49)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3088 (($ $ $) 55)) (-1776 (($ $ $) 54)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-3012 (((-3 $ "failed") $ $) 43)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-563)) 47)) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 40)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1779 (((-112) $ $) 52)) (-1754 (((-112) $ $) 51)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 53)) (-1743 (((-112) $ $) 50)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-387) (-140)) (T -387))
NIL
(-13 (-555) (-846) (-1034 (-563)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-290) . T) ((-555) . T) ((-643 $) . T) ((-713 $) . T) ((-722) . T) ((-846) . T) ((-1034 (-563)) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-2838 (((-112) $) 20)) (-2319 (((-112) $) 19)) (-1566 (($ (-1151) (-1151) (-1151)) 21)) (-3348 (((-1151) $) 16)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2404 (($ (-1151) (-1151) (-1151)) 14)) (-1604 (((-1151) $) 17)) (-3811 (((-112) $) 18)) (-2091 (((-1151) $) 15)) (-1693 (((-858) $) 12) (($ (-1151)) 13) (((-1151) $) 9)) (-1718 (((-112) $ $) 7)))
+((-1677 (((-112) $ $) NIL)) (-4256 (((-112) $) 20)) (-4269 (((-112) $) 19)) (-1565 (($ (-1151) (-1151) (-1151)) 21)) (-3352 (((-1151) $) 16)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2404 (($ (-1151) (-1151) (-1151)) 14)) (-4291 (((-1151) $) 17)) (-4280 (((-112) $) 18)) (-2091 (((-1151) $) 15)) (-1692 (((-858) $) 12) (($ (-1151)) 13) (((-1151) $) 9)) (-1718 (((-112) $ $) 7)))
(((-388) (-389)) (T -388))
NIL
(-389)
-((-1677 (((-112) $ $) 7)) (-2838 (((-112) $) 16)) (-2319 (((-112) $) 17)) (-1566 (($ (-1151) (-1151) (-1151)) 15)) (-3348 (((-1151) $) 20)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-2404 (($ (-1151) (-1151) (-1151)) 22)) (-1604 (((-1151) $) 19)) (-3811 (((-112) $) 18)) (-2091 (((-1151) $) 21)) (-1693 (((-858) $) 11) (($ (-1151)) 24) (((-1151) $) 23)) (-1718 (((-112) $ $) 6)))
+((-1677 (((-112) $ $) 7)) (-4256 (((-112) $) 16)) (-4269 (((-112) $) 17)) (-1565 (($ (-1151) (-1151) (-1151)) 15)) (-3352 (((-1151) $) 20)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-2404 (($ (-1151) (-1151) (-1151)) 22)) (-4291 (((-1151) $) 19)) (-4280 (((-112) $) 18)) (-2091 (((-1151) $) 21)) (-1692 (((-858) $) 11) (($ (-1151)) 24) (((-1151) $) 23)) (-1718 (((-112) $ $) 6)))
(((-389) (-140)) (T -389))
-((-2404 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1151)) (-4 *1 (-389)))) (-2091 (*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-1151)))) (-3348 (*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-1151)))) (-1604 (*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-1151)))) (-3811 (*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-112)))) (-2838 (*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-112)))) (-1566 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1151)) (-4 *1 (-389)))))
-(-13 (-1093) (-490 (-1151)) (-10 -8 (-15 -2404 ($ (-1151) (-1151) (-1151))) (-15 -2091 ((-1151) $)) (-15 -3348 ((-1151) $)) (-15 -1604 ((-1151) $)) (-15 -3811 ((-112) $)) (-15 -2319 ((-112) $)) (-15 -2838 ((-112) $)) (-15 -1566 ($ (-1151) (-1151) (-1151)))))
+((-2404 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1151)) (-4 *1 (-389)))) (-2091 (*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-1151)))) (-3352 (*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-1151)))) (-4291 (*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-1151)))) (-4280 (*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-112)))) (-4269 (*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-112)))) (-4256 (*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-112)))) (-1565 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1151)) (-4 *1 (-389)))))
+(-13 (-1093) (-490 (-1151)) (-10 -8 (-15 -2404 ($ (-1151) (-1151) (-1151))) (-15 -2091 ((-1151) $)) (-15 -3352 ((-1151) $)) (-15 -4291 ((-1151) $)) (-15 -4280 ((-112) $)) (-15 -4269 ((-112) $)) (-15 -4256 ((-112) $)) (-15 -1565 ($ (-1151) (-1151) (-1151)))))
(((-102) . T) ((-613 #0=(-1151)) . T) ((-610 (-858)) . T) ((-610 #0#) . T) ((-490 #0#) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2904 (((-858) $) 50)) (-4239 (($) NIL T CONST)) (-2300 (($ $ (-917)) NIL)) (-2287 (($ $ (-917)) NIL)) (-1494 (($ $ (-917)) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-4333 (($ (-767)) 26)) (-3533 (((-767)) 17)) (-2781 (((-858) $) 52)) (-2146 (($ $ $) NIL)) (-1693 (((-858) $) NIL)) (-1361 (($ $ $ $) NIL)) (-3399 (($ $ $) NIL)) (-2241 (($) 20 T CONST)) (-1718 (((-112) $ $) 28)) (-1826 (($ $) 34) (($ $ $) 36)) (-1814 (($ $ $) 37)) (** (($ $ (-917)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 38) (($ $ |#3|) NIL) (($ |#3| $) 33)))
-(((-390 |#1| |#2| |#3|) (-13 (-740 |#3|) (-10 -8 (-15 -3533 ((-767))) (-15 -2781 ((-858) $)) (-15 -2904 ((-858) $)) (-15 -4333 ($ (-767))))) (-767) (-767) (-172)) (T -390))
-((-3533 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-390 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-172)))) (-2781 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-390 *3 *4 *5)) (-14 *3 (-767)) (-14 *4 (-767)) (-4 *5 (-172)))) (-2904 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-390 *3 *4 *5)) (-14 *3 (-767)) (-14 *4 (-767)) (-4 *5 (-172)))) (-4333 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-390 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-172)))))
-(-13 (-740 |#3|) (-10 -8 (-15 -3533 ((-767))) (-15 -2781 ((-858) $)) (-15 -2904 ((-858) $)) (-15 -4333 ($ (-767)))))
-((-1845 (((-1151)) 10)) (-3167 (((-1140 (-1151))) 28)) (-1308 (((-1262) (-1151)) 25) (((-1262) (-388)) 24)) (-1319 (((-1262)) 26)) (-1446 (((-1140 (-1151))) 27)))
-(((-391) (-10 -7 (-15 -1446 ((-1140 (-1151)))) (-15 -3167 ((-1140 (-1151)))) (-15 -1319 ((-1262))) (-15 -1308 ((-1262) (-388))) (-15 -1308 ((-1262) (-1151))) (-15 -1845 ((-1151))))) (T -391))
-((-1845 (*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-391)))) (-1308 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-391)))) (-1308 (*1 *2 *3) (-12 (-5 *3 (-388)) (-5 *2 (-1262)) (-5 *1 (-391)))) (-1319 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-391)))) (-3167 (*1 *2) (-12 (-5 *2 (-1140 (-1151))) (-5 *1 (-391)))) (-1446 (*1 *2) (-12 (-5 *2 (-1140 (-1151))) (-5 *1 (-391)))))
-(-10 -7 (-15 -1446 ((-1140 (-1151)))) (-15 -3167 ((-1140 (-1151)))) (-15 -1319 ((-1262))) (-15 -1308 ((-1262) (-388))) (-15 -1308 ((-1262) (-1151))) (-15 -1845 ((-1151))))
-((-3254 (((-767) (-336 |#1| |#2| |#3| |#4|)) 16)))
-(((-392 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3254 ((-767) (-336 |#1| |#2| |#3| |#4|)))) (-13 (-368) (-363)) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|)) (T -392))
-((-3254 (*1 *2 *3) (-12 (-5 *3 (-336 *4 *5 *6 *7)) (-4 *4 (-13 (-368) (-363))) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-4 *7 (-342 *4 *5 *6)) (-5 *2 (-767)) (-5 *1 (-392 *4 *5 *6 *7)))))
-(-10 -7 (-15 -3254 ((-767) (-336 |#1| |#2| |#3| |#4|))))
-((-1693 (((-394) |#1|) 11)))
-(((-393 |#1|) (-10 -7 (-15 -1693 ((-394) |#1|))) (-1093)) (T -393))
-((-1693 (*1 *2 *3) (-12 (-5 *2 (-394)) (-5 *1 (-393 *3)) (-4 *3 (-1093)))))
-(-10 -7 (-15 -1693 ((-394) |#1|)))
-((-1677 (((-112) $ $) NIL)) (-2391 (((-640 (-1151)) $ (-640 (-1151))) 38)) (-3868 (((-640 (-1151)) $ (-640 (-1151))) 39)) (-2573 (((-640 (-1151)) $ (-640 (-1151))) 40)) (-2737 (((-640 (-1151)) $) 35)) (-1566 (($) 23)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2338 (((-640 (-1151)) $) 36)) (-3789 (((-640 (-1151)) $) 37)) (-1463 (((-1262) $ (-563)) 33) (((-1262) $) 34)) (-2220 (($ (-858) (-563)) 30)) (-1693 (((-858) $) 42) (($ (-858)) 25)) (-1718 (((-112) $ $) NIL)))
-(((-394) (-13 (-1093) (-613 (-858)) (-10 -8 (-15 -2220 ($ (-858) (-563))) (-15 -1463 ((-1262) $ (-563))) (-15 -1463 ((-1262) $)) (-15 -3789 ((-640 (-1151)) $)) (-15 -2338 ((-640 (-1151)) $)) (-15 -1566 ($)) (-15 -2737 ((-640 (-1151)) $)) (-15 -2573 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -3868 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -2391 ((-640 (-1151)) $ (-640 (-1151))))))) (T -394))
-((-2220 (*1 *1 *2 *3) (-12 (-5 *2 (-858)) (-5 *3 (-563)) (-5 *1 (-394)))) (-1463 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-394)))) (-1463 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-394)))) (-3789 (*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))) (-2338 (*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))) (-1566 (*1 *1) (-5 *1 (-394))) (-2737 (*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))) (-2573 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))) (-3868 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))) (-2391 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))))
-(-13 (-1093) (-613 (-858)) (-10 -8 (-15 -2220 ($ (-858) (-563))) (-15 -1463 ((-1262) $ (-563))) (-15 -1463 ((-1262) $)) (-15 -3789 ((-640 (-1151)) $)) (-15 -2338 ((-640 (-1151)) $)) (-15 -1566 ($)) (-15 -2737 ((-640 (-1151)) $)) (-15 -2573 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -3868 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -2391 ((-640 (-1151)) $ (-640 (-1151))))))
-((-2615 (((-1262) $) 7)) (-1693 (((-858) $) 8)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-4302 (((-858) $) 50)) (-2569 (($) NIL T CONST)) (-3376 (($ $ (-917)) NIL)) (-3617 (($ $ (-917)) NIL)) (-3364 (($ $ (-917)) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-4334 (($ (-767)) 26)) (-3526 (((-767)) 17)) (-4312 (((-858) $) 52)) (-1745 (($ $ $) NIL)) (-1692 (((-858) $) NIL)) (-1756 (($ $ $ $) NIL)) (-1729 (($ $ $) NIL)) (-2239 (($) 20 T CONST)) (-1718 (((-112) $ $) 28)) (-1825 (($ $) 34) (($ $ $) 36)) (-1813 (($ $ $) 37)) (** (($ $ (-917)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 38) (($ $ |#3|) NIL) (($ |#3| $) 33)))
+(((-390 |#1| |#2| |#3|) (-13 (-740 |#3|) (-10 -8 (-15 -3526 ((-767))) (-15 -4312 ((-858) $)) (-15 -4302 ((-858) $)) (-15 -4334 ($ (-767))))) (-767) (-767) (-172)) (T -390))
+((-3526 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-390 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-172)))) (-4312 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-390 *3 *4 *5)) (-14 *3 (-767)) (-14 *4 (-767)) (-4 *5 (-172)))) (-4302 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-390 *3 *4 *5)) (-14 *3 (-767)) (-14 *4 (-767)) (-4 *5 (-172)))) (-4334 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-390 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-172)))))
+(-13 (-740 |#3|) (-10 -8 (-15 -3526 ((-767))) (-15 -4312 ((-858) $)) (-15 -4302 ((-858) $)) (-15 -4334 ($ (-767)))))
+((-4346 (((-1151)) 10)) (-4335 (((-1140 (-1151))) 28)) (-1309 (((-1262) (-1151)) 25) (((-1262) (-388)) 24)) (-1320 (((-1262)) 26)) (-4323 (((-1140 (-1151))) 27)))
+(((-391) (-10 -7 (-15 -4323 ((-1140 (-1151)))) (-15 -4335 ((-1140 (-1151)))) (-15 -1320 ((-1262))) (-15 -1309 ((-1262) (-388))) (-15 -1309 ((-1262) (-1151))) (-15 -4346 ((-1151))))) (T -391))
+((-4346 (*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-391)))) (-1309 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-391)))) (-1309 (*1 *2 *3) (-12 (-5 *3 (-388)) (-5 *2 (-1262)) (-5 *1 (-391)))) (-1320 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-391)))) (-4335 (*1 *2) (-12 (-5 *2 (-1140 (-1151))) (-5 *1 (-391)))) (-4323 (*1 *2) (-12 (-5 *2 (-1140 (-1151))) (-5 *1 (-391)))))
+(-10 -7 (-15 -4323 ((-1140 (-1151)))) (-15 -4335 ((-1140 (-1151)))) (-15 -1320 ((-1262))) (-15 -1309 ((-1262) (-388))) (-15 -1309 ((-1262) (-1151))) (-15 -4346 ((-1151))))
+((-1775 (((-767) (-336 |#1| |#2| |#3| |#4|)) 16)))
+(((-392 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1775 ((-767) (-336 |#1| |#2| |#3| |#4|)))) (-13 (-368) (-363)) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|)) (T -392))
+((-1775 (*1 *2 *3) (-12 (-5 *3 (-336 *4 *5 *6 *7)) (-4 *4 (-13 (-368) (-363))) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-4 *7 (-342 *4 *5 *6)) (-5 *2 (-767)) (-5 *1 (-392 *4 *5 *6 *7)))))
+(-10 -7 (-15 -1775 ((-767) (-336 |#1| |#2| |#3| |#4|))))
+((-1692 (((-394) |#1|) 11)))
+(((-393 |#1|) (-10 -7 (-15 -1692 ((-394) |#1|))) (-1093)) (T -393))
+((-1692 (*1 *2 *3) (-12 (-5 *2 (-394)) (-5 *1 (-393 *3)) (-4 *3 (-1093)))))
+(-10 -7 (-15 -1692 ((-394) |#1|)))
+((-1677 (((-112) $ $) NIL)) (-2700 (((-640 (-1151)) $ (-640 (-1151))) 38)) (-4357 (((-640 (-1151)) $ (-640 (-1151))) 39)) (-2720 (((-640 (-1151)) $ (-640 (-1151))) 40)) (-2731 (((-640 (-1151)) $) 35)) (-1565 (($) 23)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2337 (((-640 (-1151)) $) 36)) (-2743 (((-640 (-1151)) $) 37)) (-1463 (((-1262) $ (-563)) 33) (((-1262) $) 34)) (-2219 (($ (-858) (-563)) 30)) (-1692 (((-858) $) 42) (($ (-858)) 25)) (-1718 (((-112) $ $) NIL)))
+(((-394) (-13 (-1093) (-613 (-858)) (-10 -8 (-15 -2219 ($ (-858) (-563))) (-15 -1463 ((-1262) $ (-563))) (-15 -1463 ((-1262) $)) (-15 -2743 ((-640 (-1151)) $)) (-15 -2337 ((-640 (-1151)) $)) (-15 -1565 ($)) (-15 -2731 ((-640 (-1151)) $)) (-15 -2720 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -4357 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -2700 ((-640 (-1151)) $ (-640 (-1151))))))) (T -394))
+((-2219 (*1 *1 *2 *3) (-12 (-5 *2 (-858)) (-5 *3 (-563)) (-5 *1 (-394)))) (-1463 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-394)))) (-1463 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-394)))) (-2743 (*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))) (-2337 (*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))) (-1565 (*1 *1) (-5 *1 (-394))) (-2731 (*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))) (-2720 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))) (-4357 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))) (-2700 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))))
+(-13 (-1093) (-613 (-858)) (-10 -8 (-15 -2219 ($ (-858) (-563))) (-15 -1463 ((-1262) $ (-563))) (-15 -1463 ((-1262) $)) (-15 -2743 ((-640 (-1151)) $)) (-15 -2337 ((-640 (-1151)) $)) (-15 -1565 ($)) (-15 -2731 ((-640 (-1151)) $)) (-15 -2720 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -4357 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -2700 ((-640 (-1151)) $ (-640 (-1151))))))
+((-2615 (((-1262) $) 7)) (-1692 (((-858) $) 8)))
(((-395) (-140)) (T -395))
((-2615 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1262)))))
(-13 (-1208) (-610 (-858)) (-10 -8 (-15 -2615 ((-1262) $))))
(((-610 (-858)) . T) ((-1208) . T))
-((-2131 (((-3 $ "failed") (-316 (-379))) 21) (((-3 $ "failed") (-316 (-563))) 19) (((-3 $ "failed") (-948 (-379))) 17) (((-3 $ "failed") (-948 (-563))) 15) (((-3 $ "failed") (-407 (-948 (-379)))) 13) (((-3 $ "failed") (-407 (-948 (-563)))) 11)) (-2058 (($ (-316 (-379))) 22) (($ (-316 (-563))) 20) (($ (-948 (-379))) 18) (($ (-948 (-563))) 16) (($ (-407 (-948 (-379)))) 14) (($ (-407 (-948 (-563)))) 12)) (-2615 (((-1262) $) 7)) (-1693 (((-858) $) 8) (($ (-640 (-330))) 25) (($ (-330)) 24) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 23)))
+((-2130 (((-3 $ "failed") (-316 (-379))) 21) (((-3 $ "failed") (-316 (-563))) 19) (((-3 $ "failed") (-948 (-379))) 17) (((-3 $ "failed") (-948 (-563))) 15) (((-3 $ "failed") (-407 (-948 (-379)))) 13) (((-3 $ "failed") (-407 (-948 (-563)))) 11)) (-2057 (($ (-316 (-379))) 22) (($ (-316 (-563))) 20) (($ (-948 (-379))) 18) (($ (-948 (-563))) 16) (($ (-407 (-948 (-379)))) 14) (($ (-407 (-948 (-563)))) 12)) (-2615 (((-1262) $) 7)) (-1692 (((-858) $) 8) (($ (-640 (-330))) 25) (($ (-330)) 24) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 23)))
(((-396) (-140)) (T -396))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-4 *1 (-396)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-330)) (-4 *1 (-396)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) (-4 *1 (-396)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-316 (-379))) (-4 *1 (-396)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-316 (-379))) (-4 *1 (-396)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-316 (-563))) (-4 *1 (-396)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-316 (-563))) (-4 *1 (-396)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-948 (-379))) (-4 *1 (-396)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-948 (-379))) (-4 *1 (-396)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-948 (-563))) (-4 *1 (-396)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-948 (-563))) (-4 *1 (-396)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-407 (-948 (-379)))) (-4 *1 (-396)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-407 (-948 (-379)))) (-4 *1 (-396)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-407 (-948 (-563)))) (-4 *1 (-396)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-407 (-948 (-563)))) (-4 *1 (-396)))))
-(-13 (-395) (-10 -8 (-15 -1693 ($ (-640 (-330)))) (-15 -1693 ($ (-330))) (-15 -1693 ($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330)))))) (-15 -2058 ($ (-316 (-379)))) (-15 -2131 ((-3 $ "failed") (-316 (-379)))) (-15 -2058 ($ (-316 (-563)))) (-15 -2131 ((-3 $ "failed") (-316 (-563)))) (-15 -2058 ($ (-948 (-379)))) (-15 -2131 ((-3 $ "failed") (-948 (-379)))) (-15 -2058 ($ (-948 (-563)))) (-15 -2131 ((-3 $ "failed") (-948 (-563)))) (-15 -2058 ($ (-407 (-948 (-379))))) (-15 -2131 ((-3 $ "failed") (-407 (-948 (-379))))) (-15 -2058 ($ (-407 (-948 (-563))))) (-15 -2131 ((-3 $ "failed") (-407 (-948 (-563)))))))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-4 *1 (-396)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-330)) (-4 *1 (-396)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) (-4 *1 (-396)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-316 (-379))) (-4 *1 (-396)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-316 (-379))) (-4 *1 (-396)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-316 (-563))) (-4 *1 (-396)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-316 (-563))) (-4 *1 (-396)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-948 (-379))) (-4 *1 (-396)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-948 (-379))) (-4 *1 (-396)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-948 (-563))) (-4 *1 (-396)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-948 (-563))) (-4 *1 (-396)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-407 (-948 (-379)))) (-4 *1 (-396)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-407 (-948 (-379)))) (-4 *1 (-396)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-407 (-948 (-563)))) (-4 *1 (-396)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-407 (-948 (-563)))) (-4 *1 (-396)))))
+(-13 (-395) (-10 -8 (-15 -1692 ($ (-640 (-330)))) (-15 -1692 ($ (-330))) (-15 -1692 ($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330)))))) (-15 -2057 ($ (-316 (-379)))) (-15 -2130 ((-3 $ "failed") (-316 (-379)))) (-15 -2057 ($ (-316 (-563)))) (-15 -2130 ((-3 $ "failed") (-316 (-563)))) (-15 -2057 ($ (-948 (-379)))) (-15 -2130 ((-3 $ "failed") (-948 (-379)))) (-15 -2057 ($ (-948 (-563)))) (-15 -2130 ((-3 $ "failed") (-948 (-563)))) (-15 -2057 ($ (-407 (-948 (-379))))) (-15 -2130 ((-3 $ "failed") (-407 (-948 (-379))))) (-15 -2057 ($ (-407 (-948 (-563))))) (-15 -2130 ((-3 $ "failed") (-407 (-948 (-563)))))))
(((-610 (-858)) . T) ((-395) . T) ((-1208) . T))
-((-2746 (((-640 (-1151)) (-640 (-1151))) 9)) (-2615 (((-1262) (-388)) 27)) (-3586 (((-1097) (-1169) (-640 (-1169)) (-1172) (-640 (-1169))) 60) (((-1097) (-1169) (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169)))) (-640 (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169))))) (-640 (-1169)) (-1169)) 35) (((-1097) (-1169) (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169)))) (-640 (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169))))) (-640 (-1169))) 34)))
-(((-397) (-10 -7 (-15 -3586 ((-1097) (-1169) (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169)))) (-640 (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169))))) (-640 (-1169)))) (-15 -3586 ((-1097) (-1169) (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169)))) (-640 (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169))))) (-640 (-1169)) (-1169))) (-15 -3586 ((-1097) (-1169) (-640 (-1169)) (-1172) (-640 (-1169)))) (-15 -2615 ((-1262) (-388))) (-15 -2746 ((-640 (-1151)) (-640 (-1151)))))) (T -397))
-((-2746 (*1 *2 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-397)))) (-2615 (*1 *2 *3) (-12 (-5 *3 (-388)) (-5 *2 (-1262)) (-5 *1 (-397)))) (-3586 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-640 (-1169))) (-5 *5 (-1172)) (-5 *3 (-1169)) (-5 *2 (-1097)) (-5 *1 (-397)))) (-3586 (*1 *2 *3 *4 *5 *6 *3) (-12 (-5 *5 (-640 (-640 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-640 (-3 (|:| |array| (-640 *3)) (|:| |scalar| (-1169))))) (-5 *6 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1097)) (-5 *1 (-397)))) (-3586 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-640 (-640 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-640 (-3 (|:| |array| (-640 *3)) (|:| |scalar| (-1169))))) (-5 *6 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1097)) (-5 *1 (-397)))))
-(-10 -7 (-15 -3586 ((-1097) (-1169) (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169)))) (-640 (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169))))) (-640 (-1169)))) (-15 -3586 ((-1097) (-1169) (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169)))) (-640 (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169))))) (-640 (-1169)) (-1169))) (-15 -3586 ((-1097) (-1169) (-640 (-1169)) (-1172) (-640 (-1169)))) (-15 -2615 ((-1262) (-388))) (-15 -2746 ((-640 (-1151)) (-640 (-1151)))))
-((-2615 (((-1262) $) 36)) (-1693 (((-858) $) 96) (($ (-330)) 98) (($ (-640 (-330))) 97) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 95) (($ (-316 (-696))) 52) (($ (-316 (-694))) 71) (($ (-316 (-689))) 84) (($ (-294 (-316 (-696)))) 66) (($ (-294 (-316 (-694)))) 79) (($ (-294 (-316 (-689)))) 92) (($ (-316 (-563))) 103) (($ (-316 (-379))) 116) (($ (-316 (-169 (-379)))) 129) (($ (-294 (-316 (-563)))) 111) (($ (-294 (-316 (-379)))) 124) (($ (-294 (-316 (-169 (-379))))) 137)))
-(((-398 |#1| |#2| |#3| |#4|) (-13 (-395) (-10 -8 (-15 -1693 ($ (-330))) (-15 -1693 ($ (-640 (-330)))) (-15 -1693 ($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330)))))) (-15 -1693 ($ (-316 (-696)))) (-15 -1693 ($ (-316 (-694)))) (-15 -1693 ($ (-316 (-689)))) (-15 -1693 ($ (-294 (-316 (-696))))) (-15 -1693 ($ (-294 (-316 (-694))))) (-15 -1693 ($ (-294 (-316 (-689))))) (-15 -1693 ($ (-316 (-563)))) (-15 -1693 ($ (-316 (-379)))) (-15 -1693 ($ (-316 (-169 (-379))))) (-15 -1693 ($ (-294 (-316 (-563))))) (-15 -1693 ($ (-294 (-316 (-379))))) (-15 -1693 ($ (-294 (-316 (-169 (-379)))))))) (-1169) (-3 (|:| |fst| (-434)) (|:| -3784 "void")) (-640 (-1169)) (-1173)) (T -398))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-330)) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-316 (-696))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-316 (-694))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-316 (-689))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-294 (-316 (-696)))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-294 (-316 (-694)))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-294 (-316 (-689)))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-316 (-563))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-316 (-379))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-316 (-169 (-379)))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-294 (-316 (-563)))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-294 (-316 (-379)))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-294 (-316 (-169 (-379))))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))))
-(-13 (-395) (-10 -8 (-15 -1693 ($ (-330))) (-15 -1693 ($ (-640 (-330)))) (-15 -1693 ($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330)))))) (-15 -1693 ($ (-316 (-696)))) (-15 -1693 ($ (-316 (-694)))) (-15 -1693 ($ (-316 (-689)))) (-15 -1693 ($ (-294 (-316 (-696))))) (-15 -1693 ($ (-294 (-316 (-694))))) (-15 -1693 ($ (-294 (-316 (-689))))) (-15 -1693 ($ (-316 (-563)))) (-15 -1693 ($ (-316 (-379)))) (-15 -1693 ($ (-316 (-169 (-379))))) (-15 -1693 ($ (-294 (-316 (-563))))) (-15 -1693 ($ (-294 (-316 (-379))))) (-15 -1693 ($ (-294 (-316 (-169 (-379))))))))
-((-1677 (((-112) $ $) NIL)) (-3773 ((|#2| $) 36)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2709 (($ (-407 |#2|)) 85)) (-3893 (((-640 (-2 (|:| -1654 (-767)) (|:| -3408 |#2|) (|:| |num| |#2|))) $) 37)) (-4202 (($ $) 32) (($ $ (-767)) 34)) (-2220 (((-407 |#2|) $) 46)) (-1707 (($ (-640 (-2 (|:| -1654 (-767)) (|:| -3408 |#2|) (|:| |num| |#2|)))) 31)) (-1693 (((-858) $) 120)) (-3209 (($ $) 33) (($ $ (-767)) 35)) (-1718 (((-112) $ $) NIL)) (-1814 (($ |#2| $) 39)))
-(((-399 |#1| |#2|) (-13 (-1093) (-611 (-407 |#2|)) (-10 -8 (-15 -1814 ($ |#2| $)) (-15 -2709 ($ (-407 |#2|))) (-15 -3773 (|#2| $)) (-15 -3893 ((-640 (-2 (|:| -1654 (-767)) (|:| -3408 |#2|) (|:| |num| |#2|))) $)) (-15 -1707 ($ (-640 (-2 (|:| -1654 (-767)) (|:| -3408 |#2|) (|:| |num| |#2|))))) (-15 -4202 ($ $)) (-15 -3209 ($ $)) (-15 -4202 ($ $ (-767))) (-15 -3209 ($ $ (-767))))) (-13 (-363) (-147)) (-1233 |#1|)) (T -399))
-((-1814 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-363) (-147))) (-5 *1 (-399 *3 *2)) (-4 *2 (-1233 *3)))) (-2709 (*1 *1 *2) (-12 (-5 *2 (-407 *4)) (-4 *4 (-1233 *3)) (-4 *3 (-13 (-363) (-147))) (-5 *1 (-399 *3 *4)))) (-3773 (*1 *2 *1) (-12 (-4 *2 (-1233 *3)) (-5 *1 (-399 *3 *2)) (-4 *3 (-13 (-363) (-147))))) (-3893 (*1 *2 *1) (-12 (-4 *3 (-13 (-363) (-147))) (-5 *2 (-640 (-2 (|:| -1654 (-767)) (|:| -3408 *4) (|:| |num| *4)))) (-5 *1 (-399 *3 *4)) (-4 *4 (-1233 *3)))) (-1707 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| -1654 (-767)) (|:| -3408 *4) (|:| |num| *4)))) (-4 *4 (-1233 *3)) (-4 *3 (-13 (-363) (-147))) (-5 *1 (-399 *3 *4)))) (-4202 (*1 *1 *1) (-12 (-4 *2 (-13 (-363) (-147))) (-5 *1 (-399 *2 *3)) (-4 *3 (-1233 *2)))) (-3209 (*1 *1 *1) (-12 (-4 *2 (-13 (-363) (-147))) (-5 *1 (-399 *2 *3)) (-4 *3 (-1233 *2)))) (-4202 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *3 (-13 (-363) (-147))) (-5 *1 (-399 *3 *4)) (-4 *4 (-1233 *3)))) (-3209 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *3 (-13 (-363) (-147))) (-5 *1 (-399 *3 *4)) (-4 *4 (-1233 *3)))))
-(-13 (-1093) (-611 (-407 |#2|)) (-10 -8 (-15 -1814 ($ |#2| $)) (-15 -2709 ($ (-407 |#2|))) (-15 -3773 (|#2| $)) (-15 -3893 ((-640 (-2 (|:| -1654 (-767)) (|:| -3408 |#2|) (|:| |num| |#2|))) $)) (-15 -1707 ($ (-640 (-2 (|:| -1654 (-767)) (|:| -3408 |#2|) (|:| |num| |#2|))))) (-15 -4202 ($ $)) (-15 -3209 ($ $)) (-15 -4202 ($ $ (-767))) (-15 -3209 ($ $ (-767)))))
-((-1677 (((-112) $ $) 9 (-4032 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))))) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 15 (|has| |#1| (-882 (-379)))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 14 (|has| |#1| (-882 (-563))))) (-3573 (((-1151) $) 13 (-4032 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))))) (-1694 (((-1113) $) 12 (-4032 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))))) (-1693 (((-858) $) 11 (-4032 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))))) (-1718 (((-112) $ $) 10 (-4032 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))))))
+((-4377 (((-640 (-1151)) (-640 (-1151))) 9)) (-2615 (((-1262) (-388)) 27)) (-4365 (((-1097) (-1169) (-640 (-1169)) (-1172) (-640 (-1169))) 60) (((-1097) (-1169) (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169)))) (-640 (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169))))) (-640 (-1169)) (-1169)) 35) (((-1097) (-1169) (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169)))) (-640 (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169))))) (-640 (-1169))) 34)))
+(((-397) (-10 -7 (-15 -4365 ((-1097) (-1169) (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169)))) (-640 (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169))))) (-640 (-1169)))) (-15 -4365 ((-1097) (-1169) (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169)))) (-640 (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169))))) (-640 (-1169)) (-1169))) (-15 -4365 ((-1097) (-1169) (-640 (-1169)) (-1172) (-640 (-1169)))) (-15 -2615 ((-1262) (-388))) (-15 -4377 ((-640 (-1151)) (-640 (-1151)))))) (T -397))
+((-4377 (*1 *2 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-397)))) (-2615 (*1 *2 *3) (-12 (-5 *3 (-388)) (-5 *2 (-1262)) (-5 *1 (-397)))) (-4365 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-640 (-1169))) (-5 *5 (-1172)) (-5 *3 (-1169)) (-5 *2 (-1097)) (-5 *1 (-397)))) (-4365 (*1 *2 *3 *4 *5 *6 *3) (-12 (-5 *5 (-640 (-640 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-640 (-3 (|:| |array| (-640 *3)) (|:| |scalar| (-1169))))) (-5 *6 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1097)) (-5 *1 (-397)))) (-4365 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-640 (-640 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-640 (-3 (|:| |array| (-640 *3)) (|:| |scalar| (-1169))))) (-5 *6 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1097)) (-5 *1 (-397)))))
+(-10 -7 (-15 -4365 ((-1097) (-1169) (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169)))) (-640 (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169))))) (-640 (-1169)))) (-15 -4365 ((-1097) (-1169) (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169)))) (-640 (-640 (-3 (|:| |array| (-640 (-1169))) (|:| |scalar| (-1169))))) (-640 (-1169)) (-1169))) (-15 -4365 ((-1097) (-1169) (-640 (-1169)) (-1172) (-640 (-1169)))) (-15 -2615 ((-1262) (-388))) (-15 -4377 ((-640 (-1151)) (-640 (-1151)))))
+((-2615 (((-1262) $) 36)) (-1692 (((-858) $) 96) (($ (-330)) 98) (($ (-640 (-330))) 97) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 95) (($ (-316 (-696))) 52) (($ (-316 (-694))) 71) (($ (-316 (-689))) 84) (($ (-294 (-316 (-696)))) 66) (($ (-294 (-316 (-694)))) 79) (($ (-294 (-316 (-689)))) 92) (($ (-316 (-563))) 103) (($ (-316 (-379))) 116) (($ (-316 (-169 (-379)))) 129) (($ (-294 (-316 (-563)))) 111) (($ (-294 (-316 (-379)))) 124) (($ (-294 (-316 (-169 (-379))))) 137)))
+(((-398 |#1| |#2| |#3| |#4|) (-13 (-395) (-10 -8 (-15 -1692 ($ (-330))) (-15 -1692 ($ (-640 (-330)))) (-15 -1692 ($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330)))))) (-15 -1692 ($ (-316 (-696)))) (-15 -1692 ($ (-316 (-694)))) (-15 -1692 ($ (-316 (-689)))) (-15 -1692 ($ (-294 (-316 (-696))))) (-15 -1692 ($ (-294 (-316 (-694))))) (-15 -1692 ($ (-294 (-316 (-689))))) (-15 -1692 ($ (-316 (-563)))) (-15 -1692 ($ (-316 (-379)))) (-15 -1692 ($ (-316 (-169 (-379))))) (-15 -1692 ($ (-294 (-316 (-563))))) (-15 -1692 ($ (-294 (-316 (-379))))) (-15 -1692 ($ (-294 (-316 (-169 (-379)))))))) (-1169) (-3 (|:| |fst| (-434)) (|:| -3785 "void")) (-640 (-1169)) (-1173)) (T -398))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-330)) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-316 (-696))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-316 (-694))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-316 (-689))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-294 (-316 (-696)))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-294 (-316 (-694)))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-294 (-316 (-689)))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-316 (-563))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-316 (-379))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-316 (-169 (-379)))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-294 (-316 (-563)))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-294 (-316 (-379)))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-294 (-316 (-169 (-379))))) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-14 *5 (-640 (-1169))) (-14 *6 (-1173)))))
+(-13 (-395) (-10 -8 (-15 -1692 ($ (-330))) (-15 -1692 ($ (-640 (-330)))) (-15 -1692 ($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330)))))) (-15 -1692 ($ (-316 (-696)))) (-15 -1692 ($ (-316 (-694)))) (-15 -1692 ($ (-316 (-689)))) (-15 -1692 ($ (-294 (-316 (-696))))) (-15 -1692 ($ (-294 (-316 (-694))))) (-15 -1692 ($ (-294 (-316 (-689))))) (-15 -1692 ($ (-316 (-563)))) (-15 -1692 ($ (-316 (-379)))) (-15 -1692 ($ (-316 (-169 (-379))))) (-15 -1692 ($ (-294 (-316 (-563))))) (-15 -1692 ($ (-294 (-316 (-379))))) (-15 -1692 ($ (-294 (-316 (-169 (-379))))))))
+((-1677 (((-112) $ $) NIL)) (-3169 ((|#2| $) 36)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3179 (($ (-407 |#2|)) 85)) (-4388 (((-640 (-2 (|:| -3311 (-767)) (|:| -3412 |#2|) (|:| |num| |#2|))) $) 37)) (-4203 (($ $) 32) (($ $ (-767)) 34)) (-2219 (((-407 |#2|) $) 46)) (-1706 (($ (-640 (-2 (|:| -3311 (-767)) (|:| -3412 |#2|) (|:| |num| |#2|)))) 31)) (-1692 (((-858) $) 120)) (-3213 (($ $) 33) (($ $ (-767)) 35)) (-1718 (((-112) $ $) NIL)) (-1813 (($ |#2| $) 39)))
+(((-399 |#1| |#2|) (-13 (-1093) (-611 (-407 |#2|)) (-10 -8 (-15 -1813 ($ |#2| $)) (-15 -3179 ($ (-407 |#2|))) (-15 -3169 (|#2| $)) (-15 -4388 ((-640 (-2 (|:| -3311 (-767)) (|:| -3412 |#2|) (|:| |num| |#2|))) $)) (-15 -1706 ($ (-640 (-2 (|:| -3311 (-767)) (|:| -3412 |#2|) (|:| |num| |#2|))))) (-15 -4203 ($ $)) (-15 -3213 ($ $)) (-15 -4203 ($ $ (-767))) (-15 -3213 ($ $ (-767))))) (-13 (-363) (-147)) (-1233 |#1|)) (T -399))
+((-1813 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-363) (-147))) (-5 *1 (-399 *3 *2)) (-4 *2 (-1233 *3)))) (-3179 (*1 *1 *2) (-12 (-5 *2 (-407 *4)) (-4 *4 (-1233 *3)) (-4 *3 (-13 (-363) (-147))) (-5 *1 (-399 *3 *4)))) (-3169 (*1 *2 *1) (-12 (-4 *2 (-1233 *3)) (-5 *1 (-399 *3 *2)) (-4 *3 (-13 (-363) (-147))))) (-4388 (*1 *2 *1) (-12 (-4 *3 (-13 (-363) (-147))) (-5 *2 (-640 (-2 (|:| -3311 (-767)) (|:| -3412 *4) (|:| |num| *4)))) (-5 *1 (-399 *3 *4)) (-4 *4 (-1233 *3)))) (-1706 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| -3311 (-767)) (|:| -3412 *4) (|:| |num| *4)))) (-4 *4 (-1233 *3)) (-4 *3 (-13 (-363) (-147))) (-5 *1 (-399 *3 *4)))) (-4203 (*1 *1 *1) (-12 (-4 *2 (-13 (-363) (-147))) (-5 *1 (-399 *2 *3)) (-4 *3 (-1233 *2)))) (-3213 (*1 *1 *1) (-12 (-4 *2 (-13 (-363) (-147))) (-5 *1 (-399 *2 *3)) (-4 *3 (-1233 *2)))) (-4203 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *3 (-13 (-363) (-147))) (-5 *1 (-399 *3 *4)) (-4 *4 (-1233 *3)))) (-3213 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *3 (-13 (-363) (-147))) (-5 *1 (-399 *3 *4)) (-4 *4 (-1233 *3)))))
+(-13 (-1093) (-611 (-407 |#2|)) (-10 -8 (-15 -1813 ($ |#2| $)) (-15 -3179 ($ (-407 |#2|))) (-15 -3169 (|#2| $)) (-15 -4388 ((-640 (-2 (|:| -3311 (-767)) (|:| -3412 |#2|) (|:| |num| |#2|))) $)) (-15 -1706 ($ (-640 (-2 (|:| -3311 (-767)) (|:| -3412 |#2|) (|:| |num| |#2|))))) (-15 -4203 ($ $)) (-15 -3213 ($ $)) (-15 -4203 ($ $ (-767))) (-15 -3213 ($ $ (-767)))))
+((-1677 (((-112) $ $) 9 (-4034 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))))) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 15 (|has| |#1| (-882 (-379)))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 14 (|has| |#1| (-882 (-563))))) (-3854 (((-1151) $) 13 (-4034 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))))) (-1693 (((-1113) $) 12 (-4034 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))))) (-1692 (((-858) $) 11 (-4034 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))))) (-1718 (((-112) $ $) 10 (-4034 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))))))
(((-400 |#1|) (-140) (-1208)) (T -400))
NIL
(-13 (-1208) (-10 -7 (IF (|has| |t#1| (-882 (-563))) (-6 (-882 (-563))) |%noBranch|) (IF (|has| |t#1| (-882 (-379))) (-6 (-882 (-379))) |%noBranch|)))
-(((-102) -4032 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))) ((-610 (-858)) -4032 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))) ((-882 (-379)) |has| |#1| (-882 (-379))) ((-882 (-563)) |has| |#1| (-882 (-563))) ((-1093) -4032 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))) ((-1208) . T))
-((-1637 (($ $) 10) (($ $ (-767)) 11)))
-(((-401 |#1|) (-10 -8 (-15 -1637 (|#1| |#1| (-767))) (-15 -1637 (|#1| |#1|))) (-402)) (T -401))
+(((-102) -4034 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))) ((-610 (-858)) -4034 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))) ((-882 (-379)) |has| |#1| (-882 (-379))) ((-882 (-563)) |has| |#1| (-882 (-563))) ((-1093) -4034 (|has| |#1| (-882 (-563))) (|has| |#1| (-882 (-379)))) ((-1208) . T))
+((-3188 (($ $) 10) (($ $ (-767)) 11)))
+(((-401 |#1|) (-10 -8 (-15 -3188 (|#1| |#1| (-767))) (-15 -3188 (|#1| |#1|))) (-402)) (T -401))
NIL
-(-10 -8 (-15 -1637 (|#1| |#1| (-767))) (-15 -1637 (|#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-1495 (((-3 $ "failed") $ $) 19)) (-4335 (($ $) 74)) (-3205 (((-418 $) $) 73)) (-1919 (((-112) $ $) 60)) (-4239 (($) 17 T CONST)) (-3090 (($ $ $) 56)) (-3400 (((-3 $ "failed") $) 33)) (-3050 (($ $ $) 57)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 52)) (-1637 (($ $) 80) (($ $ (-767)) 79)) (-2468 (((-112) $) 72)) (-3254 (((-829 (-917)) $) 82)) (-3827 (((-112) $) 31)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-2688 (($ $) 71)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-2174 (((-418 $) $) 75)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3008 (((-3 $ "failed") $ $) 43)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-2628 (((-767) $) 59)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 58)) (-1423 (((-3 (-767) "failed") $ $) 81)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67)) (-2779 (((-3 $ "failed") $) 83)) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 40)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1837 (($ $ $) 66)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68)))
+(-10 -8 (-15 -3188 (|#1| |#1| (-767))) (-15 -3188 (|#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-3905 (((-3 $ "failed") $ $) 19)) (-1798 (($ $) 74)) (-2802 (((-418 $) $) 73)) (-2003 (((-112) $ $) 60)) (-2569 (($) 17 T CONST)) (-3094 (($ $ $) 56)) (-3951 (((-3 $ "failed") $) 33)) (-3054 (($ $ $) 57)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 52)) (-3188 (($ $) 80) (($ $ (-767)) 79)) (-2560 (((-112) $) 72)) (-1775 (((-829 (-917)) $) 82)) (-3401 (((-112) $) 31)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-2687 (($ $) 71)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-2173 (((-418 $) $) 75)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3012 (((-3 $ "failed") $ $) 43)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-1993 (((-767) $) 59)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 58)) (-3196 (((-3 (-767) "failed") $ $) 81)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67)) (-2047 (((-3 $ "failed") $) 83)) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 40)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1836 (($ $ $) 66)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68)))
(((-402) (-140)) (T -402))
-((-3254 (*1 *2 *1) (-12 (-4 *1 (-402)) (-5 *2 (-829 (-917))))) (-1423 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-402)) (-5 *2 (-767)))) (-1637 (*1 *1 *1) (-4 *1 (-402))) (-1637 (*1 *1 *1 *2) (-12 (-4 *1 (-402)) (-5 *2 (-767)))))
-(-13 (-363) (-145) (-10 -8 (-15 -3254 ((-829 (-917)) $)) (-15 -1423 ((-3 (-767) "failed") $ $)) (-15 -1637 ($ $)) (-15 -1637 ($ $ (-767)))))
+((-1775 (*1 *2 *1) (-12 (-4 *1 (-402)) (-5 *2 (-829 (-917))))) (-3196 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-402)) (-5 *2 (-767)))) (-3188 (*1 *1 *1) (-4 *1 (-402))) (-3188 (*1 *1 *1 *2) (-12 (-4 *1 (-402)) (-5 *2 (-767)))))
+(-13 (-363) (-145) (-10 -8 (-15 -1775 ((-829 (-917)) $)) (-15 -3196 ((-3 (-767) "failed") $ $)) (-15 -3188 ($ $)) (-15 -3188 ($ $ (-767)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-131) . T) ((-145) . T) ((-613 #0#) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-243) . T) ((-290) . T) ((-307) . T) ((-363) . T) ((-452) . T) ((-555) . T) ((-643 #0#) . T) ((-643 $) . T) ((-713 #0#) . T) ((-713 $) . T) ((-722) . T) ((-916) . T) ((-1051 #0#) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1212) . T))
-((-4340 (($ (-563) (-563)) 11) (($ (-563) (-563) (-917)) NIL)) (-4113 (((-917)) 16) (((-917) (-917)) NIL)))
-(((-403 |#1|) (-10 -8 (-15 -4113 ((-917) (-917))) (-15 -4113 ((-917))) (-15 -4340 (|#1| (-563) (-563) (-917))) (-15 -4340 (|#1| (-563) (-563)))) (-404)) (T -403))
-((-4113 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-403 *3)) (-4 *3 (-404)))) (-4113 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-403 *3)) (-4 *3 (-404)))))
-(-10 -8 (-15 -4113 ((-917) (-917))) (-15 -4113 ((-917))) (-15 -4340 (|#1| (-563) (-563) (-917))) (-15 -4340 (|#1| (-563) (-563))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-3401 (((-563) $) 90)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-2421 (($ $) 88)) (-1495 (((-3 $ "failed") $ $) 19)) (-4335 (($ $) 74)) (-3205 (((-418 $) $) 73)) (-2186 (($ $) 98)) (-1919 (((-112) $ $) 60)) (-1857 (((-563) $) 115)) (-4239 (($) 17 T CONST)) (-3796 (($ $) 87)) (-2131 (((-3 (-563) "failed") $) 103) (((-3 (-407 (-563)) "failed") $) 100)) (-2058 (((-563) $) 104) (((-407 (-563)) $) 101)) (-3090 (($ $ $) 56)) (-3400 (((-3 $ "failed") $) 33)) (-3050 (($ $ $) 57)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 52)) (-2468 (((-112) $) 72)) (-3102 (((-917)) 131) (((-917) (-917)) 128 (|has| $ (-6 -4398)))) (-3101 (((-112) $) 113)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 94)) (-3254 (((-563) $) 137)) (-3827 (((-112) $) 31)) (-1645 (($ $ (-563)) 97)) (-3793 (($ $) 93)) (-1419 (((-112) $) 114)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3084 (($ $ $) 112) (($) 125 (-12 (-2176 (|has| $ (-6 -4398))) (-2176 (|has| $ (-6 -4390)))))) (-1777 (($ $ $) 111) (($) 124 (-12 (-2176 (|has| $ (-6 -4398))) (-2176 (|has| $ (-6 -4390)))))) (-4050 (((-563) $) 134)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-2688 (($ $) 71)) (-3324 (((-917) (-563)) 127 (|has| $ (-6 -4398)))) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-4215 (($ $) 89)) (-1583 (($ $) 91)) (-4340 (($ (-563) (-563)) 139) (($ (-563) (-563) (-917)) 138)) (-2174 (((-418 $) $) 75)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3008 (((-3 $ "failed") $ $) 43)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-1654 (((-563) $) 135)) (-2628 (((-767) $) 59)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 58)) (-4113 (((-917)) 132) (((-917) (-917)) 129 (|has| $ (-6 -4398)))) (-3814 (((-917) (-563)) 126 (|has| $ (-6 -4398)))) (-2220 (((-379) $) 106) (((-225) $) 105) (((-888 (-379)) $) 95)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67) (($ (-563)) 102) (($ (-407 (-563))) 99)) (-1675 (((-767)) 28)) (-4194 (($ $) 92)) (-1734 (((-917)) 133) (((-917) (-917)) 130 (|has| $ (-6 -4398)))) (-4211 (((-917)) 136)) (-2126 (((-112) $ $) 40)) (-2509 (($ $) 116)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1778 (((-112) $ $) 109)) (-1756 (((-112) $ $) 108)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 110)) (-1744 (((-112) $ $) 107)) (-1837 (($ $ $) 66)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70) (($ $ (-407 (-563))) 96)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68)))
+((-4341 (($ (-563) (-563)) 11) (($ (-563) (-563) (-917)) NIL)) (-3605 (((-917)) 16) (((-917) (-917)) NIL)))
+(((-403 |#1|) (-10 -8 (-15 -3605 ((-917) (-917))) (-15 -3605 ((-917))) (-15 -4341 (|#1| (-563) (-563) (-917))) (-15 -4341 (|#1| (-563) (-563)))) (-404)) (T -403))
+((-3605 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-403 *3)) (-4 *3 (-404)))) (-3605 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-403 *3)) (-4 *3 (-404)))))
+(-10 -8 (-15 -3605 ((-917) (-917))) (-15 -3605 ((-917))) (-15 -4341 (|#1| (-563) (-563) (-917))) (-15 -4341 (|#1| (-563) (-563))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3944 (((-563) $) 90)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-1763 (($ $) 88)) (-3905 (((-3 $ "failed") $ $) 19)) (-1798 (($ $) 74)) (-2802 (((-418 $) $) 73)) (-2185 (($ $) 98)) (-2003 (((-112) $ $) 60)) (-2807 (((-563) $) 115)) (-2569 (($) 17 T CONST)) (-3925 (($ $) 87)) (-2130 (((-3 (-563) "failed") $) 103) (((-3 (-407 (-563)) "failed") $) 100)) (-2057 (((-563) $) 104) (((-407 (-563)) $) 101)) (-3094 (($ $ $) 56)) (-3951 (((-3 $ "failed") $) 33)) (-3054 (($ $ $) 57)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 52)) (-2560 (((-112) $) 72)) (-3107 (((-917)) 131) (((-917) (-917)) 128 (|has| $ (-6 -4399)))) (-3414 (((-112) $) 113)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 94)) (-1775 (((-563) $) 137)) (-3401 (((-112) $) 31)) (-2172 (($ $ (-563)) 97)) (-3975 (($ $) 93)) (-3426 (((-112) $) 114)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3088 (($ $ $) 112) (($) 125 (-12 (-2174 (|has| $ (-6 -4399))) (-2174 (|has| $ (-6 -4391)))))) (-1776 (($ $ $) 111) (($) 124 (-12 (-2174 (|has| $ (-6 -4399))) (-2174 (|has| $ (-6 -4391)))))) (-4051 (((-563) $) 134)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-2687 (($ $) 71)) (-3217 (((-917) (-563)) 127 (|has| $ (-6 -4399)))) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-3935 (($ $) 89)) (-3954 (($ $) 91)) (-4341 (($ (-563) (-563)) 139) (($ (-563) (-563) (-917)) 138)) (-2173 (((-418 $) $) 75)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3012 (((-3 $ "failed") $ $) 43)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-3311 (((-563) $) 135)) (-1993 (((-767) $) 59)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 58)) (-3605 (((-917)) 132) (((-917) (-917)) 129 (|has| $ (-6 -4399)))) (-3206 (((-917) (-563)) 126 (|has| $ (-6 -4399)))) (-2219 (((-379) $) 106) (((-225) $) 105) (((-888 (-379)) $) 95)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67) (($ (-563)) 102) (($ (-407 (-563))) 99)) (-3914 (((-767)) 28)) (-3965 (($ $) 92)) (-3227 (((-917)) 133) (((-917) (-917)) 130 (|has| $ (-6 -4399)))) (-4212 (((-917)) 136)) (-3223 (((-112) $ $) 40)) (-1462 (($ $) 116)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1779 (((-112) $ $) 109)) (-1754 (((-112) $ $) 108)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 110)) (-1743 (((-112) $ $) 107)) (-1836 (($ $ $) 66)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70) (($ $ (-407 (-563))) 96)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68)))
(((-404) (-140)) (T -404))
-((-4340 (*1 *1 *2 *2) (-12 (-5 *2 (-563)) (-4 *1 (-404)))) (-4340 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-563)) (-5 *3 (-917)) (-4 *1 (-404)))) (-3254 (*1 *2 *1) (-12 (-4 *1 (-404)) (-5 *2 (-563)))) (-4211 (*1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-917)))) (-1654 (*1 *2 *1) (-12 (-4 *1 (-404)) (-5 *2 (-563)))) (-4050 (*1 *2 *1) (-12 (-4 *1 (-404)) (-5 *2 (-563)))) (-1734 (*1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-917)))) (-4113 (*1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-917)))) (-3102 (*1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-917)))) (-1734 (*1 *2 *2) (-12 (-5 *2 (-917)) (|has| *1 (-6 -4398)) (-4 *1 (-404)))) (-4113 (*1 *2 *2) (-12 (-5 *2 (-917)) (|has| *1 (-6 -4398)) (-4 *1 (-404)))) (-3102 (*1 *2 *2) (-12 (-5 *2 (-917)) (|has| *1 (-6 -4398)) (-4 *1 (-404)))) (-3324 (*1 *2 *3) (-12 (-5 *3 (-563)) (|has| *1 (-6 -4398)) (-4 *1 (-404)) (-5 *2 (-917)))) (-3814 (*1 *2 *3) (-12 (-5 *3 (-563)) (|has| *1 (-6 -4398)) (-4 *1 (-404)) (-5 *2 (-917)))) (-3084 (*1 *1) (-12 (-4 *1 (-404)) (-2176 (|has| *1 (-6 -4398))) (-2176 (|has| *1 (-6 -4390))))) (-1777 (*1 *1) (-12 (-4 *1 (-404)) (-2176 (|has| *1 (-6 -4398))) (-2176 (|has| *1 (-6 -4390))))))
-(-13 (-1054) (-10 -8 (-6 -1403) (-15 -4340 ($ (-563) (-563))) (-15 -4340 ($ (-563) (-563) (-917))) (-15 -3254 ((-563) $)) (-15 -4211 ((-917))) (-15 -1654 ((-563) $)) (-15 -4050 ((-563) $)) (-15 -1734 ((-917))) (-15 -4113 ((-917))) (-15 -3102 ((-917))) (IF (|has| $ (-6 -4398)) (PROGN (-15 -1734 ((-917) (-917))) (-15 -4113 ((-917) (-917))) (-15 -3102 ((-917) (-917))) (-15 -3324 ((-917) (-563))) (-15 -3814 ((-917) (-563)))) |%noBranch|) (IF (|has| $ (-6 -4390)) |%noBranch| (IF (|has| $ (-6 -4398)) |%noBranch| (PROGN (-15 -3084 ($)) (-15 -1777 ($)))))))
+((-4341 (*1 *1 *2 *2) (-12 (-5 *2 (-563)) (-4 *1 (-404)))) (-4341 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-563)) (-5 *3 (-917)) (-4 *1 (-404)))) (-1775 (*1 *2 *1) (-12 (-4 *1 (-404)) (-5 *2 (-563)))) (-4212 (*1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-917)))) (-3311 (*1 *2 *1) (-12 (-4 *1 (-404)) (-5 *2 (-563)))) (-4051 (*1 *2 *1) (-12 (-4 *1 (-404)) (-5 *2 (-563)))) (-3227 (*1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-917)))) (-3605 (*1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-917)))) (-3107 (*1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-917)))) (-3227 (*1 *2 *2) (-12 (-5 *2 (-917)) (|has| *1 (-6 -4399)) (-4 *1 (-404)))) (-3605 (*1 *2 *2) (-12 (-5 *2 (-917)) (|has| *1 (-6 -4399)) (-4 *1 (-404)))) (-3107 (*1 *2 *2) (-12 (-5 *2 (-917)) (|has| *1 (-6 -4399)) (-4 *1 (-404)))) (-3217 (*1 *2 *3) (-12 (-5 *3 (-563)) (|has| *1 (-6 -4399)) (-4 *1 (-404)) (-5 *2 (-917)))) (-3206 (*1 *2 *3) (-12 (-5 *3 (-563)) (|has| *1 (-6 -4399)) (-4 *1 (-404)) (-5 *2 (-917)))) (-3088 (*1 *1) (-12 (-4 *1 (-404)) (-2174 (|has| *1 (-6 -4399))) (-2174 (|has| *1 (-6 -4391))))) (-1776 (*1 *1) (-12 (-4 *1 (-404)) (-2174 (|has| *1 (-6 -4399))) (-2174 (|has| *1 (-6 -4391))))))
+(-13 (-1054) (-10 -8 (-6 -1402) (-15 -4341 ($ (-563) (-563))) (-15 -4341 ($ (-563) (-563) (-917))) (-15 -1775 ((-563) $)) (-15 -4212 ((-917))) (-15 -3311 ((-563) $)) (-15 -4051 ((-563) $)) (-15 -3227 ((-917))) (-15 -3605 ((-917))) (-15 -3107 ((-917))) (IF (|has| $ (-6 -4399)) (PROGN (-15 -3227 ((-917) (-917))) (-15 -3605 ((-917) (-917))) (-15 -3107 ((-917) (-917))) (-15 -3217 ((-917) (-563))) (-15 -3206 ((-917) (-563)))) |%noBranch|) (IF (|has| $ (-6 -4391)) |%noBranch| (IF (|has| $ (-6 -4399)) |%noBranch| (PROGN (-15 -3088 ($)) (-15 -1776 ($)))))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-131) . T) ((-147) . T) ((-613 #0#) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-611 (-225)) . T) ((-611 (-379)) . T) ((-611 (-888 (-379))) . T) ((-243) . T) ((-290) . T) ((-307) . T) ((-363) . T) ((-452) . T) ((-555) . T) ((-643 #0#) . T) ((-643 $) . T) ((-713 #0#) . T) ((-713 $) . T) ((-722) . T) ((-787) . T) ((-788) . T) ((-790) . T) ((-791) . T) ((-844) . T) ((-846) . T) ((-882 (-379)) . T) ((-916) . T) ((-998) . T) ((-1018) . T) ((-1054) . T) ((-1034 (-407 (-563))) . T) ((-1034 (-563)) . T) ((-1051 #0#) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1212) . T))
-((-2240 (((-418 |#2|) (-1 |#2| |#1|) (-418 |#1|)) 20)))
-(((-405 |#1| |#2|) (-10 -7 (-15 -2240 ((-418 |#2|) (-1 |#2| |#1|) (-418 |#1|)))) (-555) (-555)) (T -405))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-418 *5)) (-4 *5 (-555)) (-4 *6 (-555)) (-5 *2 (-418 *6)) (-5 *1 (-405 *5 *6)))))
-(-10 -7 (-15 -2240 ((-418 |#2|) (-1 |#2| |#1|) (-418 |#1|))))
-((-2240 (((-407 |#2|) (-1 |#2| |#1|) (-407 |#1|)) 13)))
-(((-406 |#1| |#2|) (-10 -7 (-15 -2240 ((-407 |#2|) (-1 |#2| |#1|) (-407 |#1|)))) (-555) (-555)) (T -406))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-407 *5)) (-4 *5 (-555)) (-4 *6 (-555)) (-5 *2 (-407 *6)) (-5 *1 (-406 *5 *6)))))
-(-10 -7 (-15 -2240 ((-407 |#2|) (-1 |#2| |#1|) (-407 |#1|))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 13)) (-3401 ((|#1| $) 21 (|has| |#1| (-307)))) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-1919 (((-112) $ $) NIL)) (-1857 (((-563) $) NIL (|has| |#1| (-816)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) 17) (((-3 (-1169) "failed") $) NIL (|has| |#1| (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) 70 (|has| |#1| (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563))))) (-2058 ((|#1| $) 15) (((-1169) $) NIL (|has| |#1| (-1034 (-1169)))) (((-407 (-563)) $) 67 (|has| |#1| (-1034 (-563)))) (((-563) $) NIL (|has| |#1| (-1034 (-563))))) (-3090 (($ $ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) 50)) (-1691 (($) NIL (|has| |#1| (-545)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3101 (((-112) $) NIL (|has| |#1| (-816)))) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| |#1| (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| |#1| (-882 (-379))))) (-3827 (((-112) $) 64)) (-2711 (($ $) NIL)) (-2143 ((|#1| $) 71)) (-2408 (((-3 $ "failed") $) NIL (|has| |#1| (-1144)))) (-1419 (((-112) $) NIL (|has| |#1| (-816)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| |#1| (-1144)) CONST)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 97)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-4215 (($ $) NIL (|has| |#1| (-307)))) (-1583 ((|#1| $) 28 (|has| |#1| (-545)))) (-1876 (((-418 (-1165 $)) (-1165 $)) 135 (|has| |#1| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) 131 (|has| |#1| (-905)))) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1540 (($ $ (-640 |#1|) (-640 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) NIL (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-514 (-1169) |#1|)))) (-2628 (((-767) $) NIL)) (-2309 (($ $ |#1|) NIL (|has| |#1| (-286 |#1| |#1|)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-4202 (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) 63)) (-1801 (($ $) NIL)) (-2154 ((|#1| $) 73)) (-2220 (((-888 (-563)) $) NIL (|has| |#1| (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| |#1| (-611 (-888 (-379))))) (((-536) $) NIL (|has| |#1| (-611 (-536)))) (((-379) $) NIL (|has| |#1| (-1018))) (((-225) $) NIL (|has| |#1| (-1018)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) 115 (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) 10) (($ (-1169)) NIL (|has| |#1| (-1034 (-1169))))) (-2779 (((-3 $ "failed") $) 99 (-4032 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-1675 (((-767)) 100)) (-4194 ((|#1| $) 26 (|has| |#1| (-545)))) (-2126 (((-112) $ $) NIL)) (-2509 (($ $) NIL (|has| |#1| (-816)))) (-2241 (($) 22 T CONST)) (-2254 (($) 8 T CONST)) (-3741 (((-1151) $) 43 (-12 (|has| |#1| (-545)) (|has| |#1| (-824)))) (((-1151) $ (-112)) 44 (-12 (|has| |#1| (-545)) (|has| |#1| (-824)))) (((-1262) (-818) $) 45 (-12 (|has| |#1| (-545)) (|has| |#1| (-824)))) (((-1262) (-818) $ (-112)) 46 (-12 (|has| |#1| (-545)) (|has| |#1| (-824))))) (-3209 (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) 56)) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) 24 (|has| |#1| (-846)))) (-1837 (($ $ $) 126) (($ |#1| |#1|) 52)) (-1826 (($ $) 25) (($ $ $) 55)) (-1814 (($ $ $) 53)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) 125)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 60) (($ $ $) 57) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ |#1| $) 61) (($ $ |#1|) 85)))
-(((-407 |#1|) (-13 (-988 |#1|) (-10 -7 (IF (|has| |#1| (-545)) (IF (|has| |#1| (-824)) (-6 (-824)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4394)) (IF (|has| |#1| (-452)) (IF (|has| |#1| (-6 -4405)) (-6 -4394) |%noBranch|) |%noBranch|) |%noBranch|))) (-555)) (T -407))
-NIL
-(-13 (-988 |#1|) (-10 -7 (IF (|has| |#1| (-545)) (IF (|has| |#1| (-824)) (-6 (-824)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4394)) (IF (|has| |#1| (-452)) (IF (|has| |#1| (-6 -4405)) (-6 -4394) |%noBranch|) |%noBranch|) |%noBranch|)))
-((-3561 (((-684 |#2|) (-1257 $)) NIL) (((-684 |#2|)) 18)) (-3937 (($ (-1257 |#2|) (-1257 $)) NIL) (($ (-1257 |#2|)) 24)) (-3914 (((-684 |#2|) $ (-1257 $)) NIL) (((-684 |#2|) $) 38)) (-3941 ((|#3| $) 60)) (-2315 ((|#2| (-1257 $)) NIL) ((|#2|) 20)) (-1880 (((-1257 |#2|) $ (-1257 $)) NIL) (((-684 |#2|) (-1257 $) (-1257 $)) NIL) (((-1257 |#2|) $) 22) (((-684 |#2|) (-1257 $)) 36)) (-2220 (((-1257 |#2|) $) 11) (($ (-1257 |#2|)) 13)) (-3421 ((|#3| $) 52)))
-(((-408 |#1| |#2| |#3|) (-10 -8 (-15 -3914 ((-684 |#2|) |#1|)) (-15 -2315 (|#2|)) (-15 -3561 ((-684 |#2|))) (-15 -2220 (|#1| (-1257 |#2|))) (-15 -2220 ((-1257 |#2|) |#1|)) (-15 -3937 (|#1| (-1257 |#2|))) (-15 -1880 ((-684 |#2|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1|)) (-15 -3941 (|#3| |#1|)) (-15 -3421 (|#3| |#1|)) (-15 -3561 ((-684 |#2|) (-1257 |#1|))) (-15 -2315 (|#2| (-1257 |#1|))) (-15 -3937 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -1880 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3914 ((-684 |#2|) |#1| (-1257 |#1|)))) (-409 |#2| |#3|) (-172) (-1233 |#2|)) (T -408))
-((-3561 (*1 *2) (-12 (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-684 *4)) (-5 *1 (-408 *3 *4 *5)) (-4 *3 (-409 *4 *5)))) (-2315 (*1 *2) (-12 (-4 *4 (-1233 *2)) (-4 *2 (-172)) (-5 *1 (-408 *3 *2 *4)) (-4 *3 (-409 *2 *4)))))
-(-10 -8 (-15 -3914 ((-684 |#2|) |#1|)) (-15 -2315 (|#2|)) (-15 -3561 ((-684 |#2|))) (-15 -2220 (|#1| (-1257 |#2|))) (-15 -2220 ((-1257 |#2|) |#1|)) (-15 -3937 (|#1| (-1257 |#2|))) (-15 -1880 ((-684 |#2|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1|)) (-15 -3941 (|#3| |#1|)) (-15 -3421 (|#3| |#1|)) (-15 -3561 ((-684 |#2|) (-1257 |#1|))) (-15 -2315 (|#2| (-1257 |#1|))) (-15 -3937 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -1880 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3914 ((-684 |#2|) |#1| (-1257 |#1|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-3561 (((-684 |#1|) (-1257 $)) 47) (((-684 |#1|)) 62)) (-1733 ((|#1| $) 53)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3937 (($ (-1257 |#1|) (-1257 $)) 49) (($ (-1257 |#1|)) 65)) (-3914 (((-684 |#1|) $ (-1257 $)) 54) (((-684 |#1|) $) 60)) (-3400 (((-3 $ "failed") $) 33)) (-2522 (((-917)) 55)) (-3827 (((-112) $) 31)) (-3793 ((|#1| $) 52)) (-3941 ((|#2| $) 45 (|has| |#1| (-363)))) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-2315 ((|#1| (-1257 $)) 48) ((|#1|) 61)) (-1880 (((-1257 |#1|) $ (-1257 $)) 51) (((-684 |#1|) (-1257 $) (-1257 $)) 50) (((-1257 |#1|) $) 67) (((-684 |#1|) (-1257 $)) 66)) (-2220 (((-1257 |#1|) $) 64) (($ (-1257 |#1|)) 63)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 38)) (-2779 (((-3 $ "failed") $) 44 (|has| |#1| (-145)))) (-3421 ((|#2| $) 46)) (-1675 (((-767)) 28)) (-4315 (((-1257 $)) 68)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-2238 (((-418 |#2|) (-1 |#2| |#1|) (-418 |#1|)) 20)))
+(((-405 |#1| |#2|) (-10 -7 (-15 -2238 ((-418 |#2|) (-1 |#2| |#1|) (-418 |#1|)))) (-555) (-555)) (T -405))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-418 *5)) (-4 *5 (-555)) (-4 *6 (-555)) (-5 *2 (-418 *6)) (-5 *1 (-405 *5 *6)))))
+(-10 -7 (-15 -2238 ((-418 |#2|) (-1 |#2| |#1|) (-418 |#1|))))
+((-2238 (((-407 |#2|) (-1 |#2| |#1|) (-407 |#1|)) 13)))
+(((-406 |#1| |#2|) (-10 -7 (-15 -2238 ((-407 |#2|) (-1 |#2| |#1|) (-407 |#1|)))) (-555) (-555)) (T -406))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-407 *5)) (-4 *5 (-555)) (-4 *6 (-555)) (-5 *2 (-407 *6)) (-5 *1 (-406 *5 *6)))))
+(-10 -7 (-15 -2238 ((-407 |#2|) (-1 |#2| |#1|) (-407 |#1|))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 13)) (-3944 ((|#1| $) 21 (|has| |#1| (-307)))) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2003 (((-112) $ $) NIL)) (-2807 (((-563) $) NIL (|has| |#1| (-816)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) 17) (((-3 (-1169) "failed") $) NIL (|has| |#1| (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) 71 (|has| |#1| (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563))))) (-2057 ((|#1| $) 15) (((-1169) $) NIL (|has| |#1| (-1034 (-1169)))) (((-407 (-563)) $) 68 (|has| |#1| (-1034 (-563)))) (((-563) $) NIL (|has| |#1| (-1034 (-563))))) (-3094 (($ $ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) 50)) (-1690 (($) NIL (|has| |#1| (-545)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-3414 (((-112) $) NIL (|has| |#1| (-816)))) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| |#1| (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| |#1| (-882 (-379))))) (-3401 (((-112) $) 56)) (-2043 (($ $) NIL)) (-2143 ((|#1| $) 72)) (-1983 (((-3 $ "failed") $) NIL (|has| |#1| (-1144)))) (-3426 (((-112) $) NIL (|has| |#1| (-816)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| |#1| (-1144)) CONST)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 98)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3935 (($ $) NIL (|has| |#1| (-307)))) (-3954 ((|#1| $) 28 (|has| |#1| (-545)))) (-2075 (((-418 (-1165 $)) (-1165 $)) 136 (|has| |#1| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) 132 (|has| |#1| (-905)))) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1542 (($ $ (-640 |#1|) (-640 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) NIL (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-514 (-1169) |#1|)))) (-1993 (((-767) $) NIL)) (-2308 (($ $ |#1|) NIL (|has| |#1| (-286 |#1| |#1|)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-4203 (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) 63)) (-2033 (($ $) NIL)) (-2153 ((|#1| $) 74)) (-2219 (((-888 (-563)) $) NIL (|has| |#1| (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| |#1| (-611 (-888 (-379))))) (((-536) $) NIL (|has| |#1| (-611 (-536)))) (((-379) $) NIL (|has| |#1| (-1018))) (((-225) $) NIL (|has| |#1| (-1018)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) 116 (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) 10) (($ (-1169)) NIL (|has| |#1| (-1034 (-1169))))) (-2047 (((-3 $ "failed") $) 100 (-4034 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-3914 (((-767)) 101)) (-3965 ((|#1| $) 26 (|has| |#1| (-545)))) (-3223 (((-112) $ $) NIL)) (-1462 (($ $) NIL (|has| |#1| (-816)))) (-2239 (($) 22 T CONST)) (-2253 (($) 8 T CONST)) (-2742 (((-1151) $) 43 (-12 (|has| |#1| (-545)) (|has| |#1| (-824)))) (((-1151) $ (-112)) 44 (-12 (|has| |#1| (-545)) (|has| |#1| (-824)))) (((-1262) (-818) $) 45 (-12 (|has| |#1| (-545)) (|has| |#1| (-824)))) (((-1262) (-818) $ (-112)) 46 (-12 (|has| |#1| (-545)) (|has| |#1| (-824))))) (-3213 (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) 65)) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) 24 (|has| |#1| (-846)))) (-1836 (($ $ $) 127) (($ |#1| |#1|) 52)) (-1825 (($ $) 25) (($ $ $) 55)) (-1813 (($ $ $) 53)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) 126)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 60) (($ $ $) 57) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ |#1| $) 61) (($ $ |#1|) 86)))
+(((-407 |#1|) (-13 (-988 |#1|) (-10 -7 (IF (|has| |#1| (-545)) (IF (|has| |#1| (-824)) (-6 (-824)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4395)) (IF (|has| |#1| (-452)) (IF (|has| |#1| (-6 -4406)) (-6 -4395) |%noBranch|) |%noBranch|) |%noBranch|))) (-555)) (T -407))
+NIL
+(-13 (-988 |#1|) (-10 -7 (IF (|has| |#1| (-545)) (IF (|has| |#1| (-824)) (-6 (-824)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4395)) (IF (|has| |#1| (-452)) (IF (|has| |#1| (-6 -4406)) (-6 -4395) |%noBranch|) |%noBranch|) |%noBranch|)))
+((-3340 (((-684 |#2|) (-1257 $)) NIL) (((-684 |#2|)) 18)) (-3458 (($ (-1257 |#2|) (-1257 $)) NIL) (($ (-1257 |#2|)) 24)) (-3330 (((-684 |#2|) $ (-1257 $)) NIL) (((-684 |#2|) $) 38)) (-4035 ((|#3| $) 60)) (-1623 ((|#2| (-1257 $)) NIL) ((|#2|) 20)) (-3759 (((-1257 |#2|) $ (-1257 $)) NIL) (((-684 |#2|) (-1257 $) (-1257 $)) NIL) (((-1257 |#2|) $) 22) (((-684 |#2|) (-1257 $)) 36)) (-2219 (((-1257 |#2|) $) 11) (($ (-1257 |#2|)) 13)) (-1892 ((|#3| $) 52)))
+(((-408 |#1| |#2| |#3|) (-10 -8 (-15 -3330 ((-684 |#2|) |#1|)) (-15 -1623 (|#2|)) (-15 -3340 ((-684 |#2|))) (-15 -2219 (|#1| (-1257 |#2|))) (-15 -2219 ((-1257 |#2|) |#1|)) (-15 -3458 (|#1| (-1257 |#2|))) (-15 -3759 ((-684 |#2|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1|)) (-15 -4035 (|#3| |#1|)) (-15 -1892 (|#3| |#1|)) (-15 -3340 ((-684 |#2|) (-1257 |#1|))) (-15 -1623 (|#2| (-1257 |#1|))) (-15 -3458 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -3759 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3330 ((-684 |#2|) |#1| (-1257 |#1|)))) (-409 |#2| |#3|) (-172) (-1233 |#2|)) (T -408))
+((-3340 (*1 *2) (-12 (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-684 *4)) (-5 *1 (-408 *3 *4 *5)) (-4 *3 (-409 *4 *5)))) (-1623 (*1 *2) (-12 (-4 *4 (-1233 *2)) (-4 *2 (-172)) (-5 *1 (-408 *3 *2 *4)) (-4 *3 (-409 *2 *4)))))
+(-10 -8 (-15 -3330 ((-684 |#2|) |#1|)) (-15 -1623 (|#2|)) (-15 -3340 ((-684 |#2|))) (-15 -2219 (|#1| (-1257 |#2|))) (-15 -2219 ((-1257 |#2|) |#1|)) (-15 -3458 (|#1| (-1257 |#2|))) (-15 -3759 ((-684 |#2|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1|)) (-15 -4035 (|#3| |#1|)) (-15 -1892 (|#3| |#1|)) (-15 -3340 ((-684 |#2|) (-1257 |#1|))) (-15 -1623 (|#2| (-1257 |#1|))) (-15 -3458 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -3759 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3330 ((-684 |#2|) |#1| (-1257 |#1|))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3340 (((-684 |#1|) (-1257 $)) 47) (((-684 |#1|)) 62)) (-1731 ((|#1| $) 53)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3458 (($ (-1257 |#1|) (-1257 $)) 49) (($ (-1257 |#1|)) 65)) (-3330 (((-684 |#1|) $ (-1257 $)) 54) (((-684 |#1|) $) 60)) (-3951 (((-3 $ "failed") $) 33)) (-2521 (((-917)) 55)) (-3401 (((-112) $) 31)) (-3975 ((|#1| $) 52)) (-4035 ((|#2| $) 45 (|has| |#1| (-363)))) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1623 ((|#1| (-1257 $)) 48) ((|#1|) 61)) (-3759 (((-1257 |#1|) $ (-1257 $)) 51) (((-684 |#1|) (-1257 $) (-1257 $)) 50) (((-1257 |#1|) $) 67) (((-684 |#1|) (-1257 $)) 66)) (-2219 (((-1257 |#1|) $) 64) (($ (-1257 |#1|)) 63)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 38)) (-2047 (((-3 $ "failed") $) 44 (|has| |#1| (-145)))) (-1892 ((|#2| $) 46)) (-3914 (((-767)) 28)) (-4013 (((-1257 $)) 68)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-409 |#1| |#2|) (-140) (-172) (-1233 |t#1|)) (T -409))
-((-4315 (*1 *2) (-12 (-4 *3 (-172)) (-4 *4 (-1233 *3)) (-5 *2 (-1257 *1)) (-4 *1 (-409 *3 *4)))) (-1880 (*1 *2 *1) (-12 (-4 *1 (-409 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3)) (-5 *2 (-1257 *3)))) (-1880 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-409 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-684 *4)))) (-3937 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-172)) (-4 *1 (-409 *3 *4)) (-4 *4 (-1233 *3)))) (-2220 (*1 *2 *1) (-12 (-4 *1 (-409 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3)) (-5 *2 (-1257 *3)))) (-2220 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-172)) (-4 *1 (-409 *3 *4)) (-4 *4 (-1233 *3)))) (-3561 (*1 *2) (-12 (-4 *1 (-409 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3)) (-5 *2 (-684 *3)))) (-2315 (*1 *2) (-12 (-4 *1 (-409 *2 *3)) (-4 *3 (-1233 *2)) (-4 *2 (-172)))) (-3914 (*1 *2 *1) (-12 (-4 *1 (-409 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3)) (-5 *2 (-684 *3)))))
-(-13 (-370 |t#1| |t#2|) (-10 -8 (-15 -4315 ((-1257 $))) (-15 -1880 ((-1257 |t#1|) $)) (-15 -1880 ((-684 |t#1|) (-1257 $))) (-15 -3937 ($ (-1257 |t#1|))) (-15 -2220 ((-1257 |t#1|) $)) (-15 -2220 ($ (-1257 |t#1|))) (-15 -3561 ((-684 |t#1|))) (-15 -2315 (|t#1|)) (-15 -3914 ((-684 |t#1|) $))))
+((-4013 (*1 *2) (-12 (-4 *3 (-172)) (-4 *4 (-1233 *3)) (-5 *2 (-1257 *1)) (-4 *1 (-409 *3 *4)))) (-3759 (*1 *2 *1) (-12 (-4 *1 (-409 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3)) (-5 *2 (-1257 *3)))) (-3759 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-409 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-684 *4)))) (-3458 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-172)) (-4 *1 (-409 *3 *4)) (-4 *4 (-1233 *3)))) (-2219 (*1 *2 *1) (-12 (-4 *1 (-409 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3)) (-5 *2 (-1257 *3)))) (-2219 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-172)) (-4 *1 (-409 *3 *4)) (-4 *4 (-1233 *3)))) (-3340 (*1 *2) (-12 (-4 *1 (-409 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3)) (-5 *2 (-684 *3)))) (-1623 (*1 *2) (-12 (-4 *1 (-409 *2 *3)) (-4 *3 (-1233 *2)) (-4 *2 (-172)))) (-3330 (*1 *2 *1) (-12 (-4 *1 (-409 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3)) (-5 *2 (-684 *3)))))
+(-13 (-370 |t#1| |t#2|) (-10 -8 (-15 -4013 ((-1257 $))) (-15 -3759 ((-1257 |t#1|) $)) (-15 -3759 ((-684 |t#1|) (-1257 $))) (-15 -3458 ($ (-1257 |t#1|))) (-15 -2219 ((-1257 |t#1|) $)) (-15 -2219 ($ (-1257 |t#1|))) (-15 -3340 ((-684 |t#1|))) (-15 -1623 (|t#1|)) (-15 -3330 ((-684 |t#1|) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-610 (-858)) . T) ((-370 |#1| |#2|) . T) ((-643 |#1|) . T) ((-643 $) . T) ((-713 |#1|) . T) ((-722) . T) ((-1051 |#1|) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-2131 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) 27) (((-3 (-563) "failed") $) 19)) (-2058 ((|#2| $) NIL) (((-407 (-563)) $) 24) (((-563) $) 14)) (-1693 (($ |#2|) NIL) (($ (-407 (-563))) 22) (($ (-563)) 11)))
-(((-410 |#1| |#2|) (-10 -8 (-15 -1693 (|#1| (-563))) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -1693 (|#1| |#2|))) (-411 |#2|) (-1208)) (T -410))
+((-2130 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) 27) (((-3 (-563) "failed") $) 19)) (-2057 ((|#2| $) NIL) (((-407 (-563)) $) 24) (((-563) $) 14)) (-1692 (($ |#2|) NIL) (($ (-407 (-563))) 22) (($ (-563)) 11)))
+(((-410 |#1| |#2|) (-10 -8 (-15 -1692 (|#1| (-563))) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -1692 (|#1| |#2|))) (-411 |#2|) (-1208)) (T -410))
NIL
-(-10 -8 (-15 -1693 (|#1| (-563))) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -1693 (|#1| |#2|)))
-((-2131 (((-3 |#1| "failed") $) 9) (((-3 (-407 (-563)) "failed") $) 16 (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) 13 (|has| |#1| (-1034 (-563))))) (-2058 ((|#1| $) 8) (((-407 (-563)) $) 17 (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) 14 (|has| |#1| (-1034 (-563))))) (-1693 (($ |#1|) 6) (($ (-407 (-563))) 15 (|has| |#1| (-1034 (-407 (-563))))) (($ (-563)) 12 (|has| |#1| (-1034 (-563))))))
+(-10 -8 (-15 -1692 (|#1| (-563))) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -1692 (|#1| |#2|)))
+((-2130 (((-3 |#1| "failed") $) 9) (((-3 (-407 (-563)) "failed") $) 16 (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) 13 (|has| |#1| (-1034 (-563))))) (-2057 ((|#1| $) 8) (((-407 (-563)) $) 17 (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) 14 (|has| |#1| (-1034 (-563))))) (-1692 (($ |#1|) 6) (($ (-407 (-563))) 15 (|has| |#1| (-1034 (-407 (-563))))) (($ (-563)) 12 (|has| |#1| (-1034 (-563))))))
(((-411 |#1|) (-140) (-1208)) (T -411))
NIL
(-13 (-1034 |t#1|) (-10 -7 (IF (|has| |t#1| (-1034 (-563))) (-6 (-1034 (-563))) |%noBranch|) (IF (|has| |t#1| (-1034 (-407 (-563)))) (-6 (-1034 (-407 (-563)))) |%noBranch|)))
(((-613 #0=(-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-613 #1=(-563)) |has| |#1| (-1034 (-563))) ((-613 |#1|) . T) ((-1034 #0#) |has| |#1| (-1034 (-407 (-563)))) ((-1034 #1#) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T))
-((-2240 (((-413 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-413 |#1| |#2| |#3| |#4|)) 33)))
-(((-412 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2240 ((-413 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-413 |#1| |#2| |#3| |#4|)))) (-307) (-988 |#1|) (-1233 |#2|) (-13 (-409 |#2| |#3|) (-1034 |#2|)) (-307) (-988 |#5|) (-1233 |#6|) (-13 (-409 |#6| |#7|) (-1034 |#6|))) (T -412))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-413 *5 *6 *7 *8)) (-4 *5 (-307)) (-4 *6 (-988 *5)) (-4 *7 (-1233 *6)) (-4 *8 (-13 (-409 *6 *7) (-1034 *6))) (-4 *9 (-307)) (-4 *10 (-988 *9)) (-4 *11 (-1233 *10)) (-5 *2 (-413 *9 *10 *11 *12)) (-5 *1 (-412 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-13 (-409 *10 *11) (-1034 *10))))))
-(-10 -7 (-15 -2240 ((-413 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-413 |#1| |#2| |#3| |#4|))))
-((-1677 (((-112) $ $) NIL)) (-4239 (($) NIL T CONST)) (-3400 (((-3 $ "failed") $) NIL)) (-2230 ((|#4| (-767) (-1257 |#4|)) 56)) (-3827 (((-112) $) NIL)) (-2143 (((-1257 |#4|) $) 17)) (-3793 ((|#2| $) 54)) (-4007 (($ $) 139)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 100)) (-1776 (($ (-1257 |#4|)) 99)) (-1694 (((-1113) $) NIL)) (-2154 ((|#1| $) 18)) (-4339 (($ $ $) NIL)) (-2146 (($ $ $) NIL)) (-1693 (((-858) $) 134)) (-4315 (((-1257 |#4|) $) 129)) (-2254 (($) 11 T CONST)) (-1718 (((-112) $ $) 40)) (-1837 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) 122)) (* (($ $ $) 121)))
-(((-413 |#1| |#2| |#3| |#4|) (-13 (-473) (-10 -8 (-15 -1776 ($ (-1257 |#4|))) (-15 -4315 ((-1257 |#4|) $)) (-15 -3793 (|#2| $)) (-15 -2143 ((-1257 |#4|) $)) (-15 -2154 (|#1| $)) (-15 -4007 ($ $)) (-15 -2230 (|#4| (-767) (-1257 |#4|))))) (-307) (-988 |#1|) (-1233 |#2|) (-13 (-409 |#2| |#3|) (-1034 |#2|))) (T -413))
-((-1776 (*1 *1 *2) (-12 (-5 *2 (-1257 *6)) (-4 *6 (-13 (-409 *4 *5) (-1034 *4))) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-4 *3 (-307)) (-5 *1 (-413 *3 *4 *5 *6)))) (-4315 (*1 *2 *1) (-12 (-4 *3 (-307)) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-5 *2 (-1257 *6)) (-5 *1 (-413 *3 *4 *5 *6)) (-4 *6 (-13 (-409 *4 *5) (-1034 *4))))) (-3793 (*1 *2 *1) (-12 (-4 *4 (-1233 *2)) (-4 *2 (-988 *3)) (-5 *1 (-413 *3 *2 *4 *5)) (-4 *3 (-307)) (-4 *5 (-13 (-409 *2 *4) (-1034 *2))))) (-2143 (*1 *2 *1) (-12 (-4 *3 (-307)) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-5 *2 (-1257 *6)) (-5 *1 (-413 *3 *4 *5 *6)) (-4 *6 (-13 (-409 *4 *5) (-1034 *4))))) (-2154 (*1 *2 *1) (-12 (-4 *3 (-988 *2)) (-4 *4 (-1233 *3)) (-4 *2 (-307)) (-5 *1 (-413 *2 *3 *4 *5)) (-4 *5 (-13 (-409 *3 *4) (-1034 *3))))) (-4007 (*1 *1 *1) (-12 (-4 *2 (-307)) (-4 *3 (-988 *2)) (-4 *4 (-1233 *3)) (-5 *1 (-413 *2 *3 *4 *5)) (-4 *5 (-13 (-409 *3 *4) (-1034 *3))))) (-2230 (*1 *2 *3 *4) (-12 (-5 *3 (-767)) (-5 *4 (-1257 *2)) (-4 *5 (-307)) (-4 *6 (-988 *5)) (-4 *2 (-13 (-409 *6 *7) (-1034 *6))) (-5 *1 (-413 *5 *6 *7 *2)) (-4 *7 (-1233 *6)))))
-(-13 (-473) (-10 -8 (-15 -1776 ($ (-1257 |#4|))) (-15 -4315 ((-1257 |#4|) $)) (-15 -3793 (|#2| $)) (-15 -2143 ((-1257 |#4|) $)) (-15 -2154 (|#1| $)) (-15 -4007 ($ $)) (-15 -2230 (|#4| (-767) (-1257 |#4|)))))
-((-1677 (((-112) $ $) NIL)) (-4239 (($) NIL T CONST)) (-3400 (((-3 $ "failed") $) NIL)) (-3827 (((-112) $) NIL)) (-3793 ((|#2| $) 61)) (-3310 (($ (-1257 |#4|)) 25) (($ (-413 |#1| |#2| |#3| |#4|)) 76 (|has| |#4| (-1034 |#2|)))) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 34)) (-4315 (((-1257 |#4|) $) 26)) (-2254 (($) 23 T CONST)) (-1718 (((-112) $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ $ $) 72)))
-(((-414 |#1| |#2| |#3| |#4| |#5|) (-13 (-722) (-10 -8 (-15 -4315 ((-1257 |#4|) $)) (-15 -3793 (|#2| $)) (-15 -3310 ($ (-1257 |#4|))) (IF (|has| |#4| (-1034 |#2|)) (-15 -3310 ($ (-413 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-307) (-988 |#1|) (-1233 |#2|) (-409 |#2| |#3|) (-1257 |#4|)) (T -414))
-((-4315 (*1 *2 *1) (-12 (-4 *3 (-307)) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-5 *2 (-1257 *6)) (-5 *1 (-414 *3 *4 *5 *6 *7)) (-4 *6 (-409 *4 *5)) (-14 *7 *2))) (-3793 (*1 *2 *1) (-12 (-4 *4 (-1233 *2)) (-4 *2 (-988 *3)) (-5 *1 (-414 *3 *2 *4 *5 *6)) (-4 *3 (-307)) (-4 *5 (-409 *2 *4)) (-14 *6 (-1257 *5)))) (-3310 (*1 *1 *2) (-12 (-5 *2 (-1257 *6)) (-4 *6 (-409 *4 *5)) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-4 *3 (-307)) (-5 *1 (-414 *3 *4 *5 *6 *7)) (-14 *7 *2))) (-3310 (*1 *1 *2) (-12 (-5 *2 (-413 *3 *4 *5 *6)) (-4 *6 (-1034 *4)) (-4 *3 (-307)) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-4 *6 (-409 *4 *5)) (-14 *7 (-1257 *6)) (-5 *1 (-414 *3 *4 *5 *6 *7)))))
-(-13 (-722) (-10 -8 (-15 -4315 ((-1257 |#4|) $)) (-15 -3793 (|#2| $)) (-15 -3310 ($ (-1257 |#4|))) (IF (|has| |#4| (-1034 |#2|)) (-15 -3310 ($ (-413 |#1| |#2| |#3| |#4|))) |%noBranch|)))
-((-2240 ((|#3| (-1 |#4| |#2|) |#1|) 26)))
-(((-415 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2240 (|#3| (-1 |#4| |#2|) |#1|))) (-417 |#2|) (-172) (-417 |#4|) (-172)) (T -415))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-4 *2 (-417 *6)) (-5 *1 (-415 *4 *5 *2 *6)) (-4 *4 (-417 *5)))))
-(-10 -7 (-15 -2240 (|#3| (-1 |#4| |#2|) |#1|)))
-((-1414 (((-3 $ "failed")) 86)) (-3507 (((-1257 (-684 |#2|)) (-1257 $)) NIL) (((-1257 (-684 |#2|))) 91)) (-2133 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) 85)) (-2435 (((-3 $ "failed")) 84)) (-4220 (((-684 |#2|) (-1257 $)) NIL) (((-684 |#2|)) 102)) (-3043 (((-684 |#2|) $ (-1257 $)) NIL) (((-684 |#2|) $) 110)) (-3451 (((-1165 (-948 |#2|))) 55)) (-1824 ((|#2| (-1257 $)) NIL) ((|#2|) 106)) (-3937 (($ (-1257 |#2|) (-1257 $)) NIL) (($ (-1257 |#2|)) 112)) (-2284 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) 83)) (-2508 (((-3 $ "failed")) 75)) (-2328 (((-684 |#2|) (-1257 $)) NIL) (((-684 |#2|)) 100)) (-1823 (((-684 |#2|) $ (-1257 $)) NIL) (((-684 |#2|) $) 108)) (-3594 (((-1165 (-948 |#2|))) 54)) (-4111 ((|#2| (-1257 $)) NIL) ((|#2|) 104)) (-1880 (((-1257 |#2|) $ (-1257 $)) NIL) (((-684 |#2|) (-1257 $) (-1257 $)) NIL) (((-1257 |#2|) $) 111) (((-684 |#2|) (-1257 $)) 118)) (-2220 (((-1257 |#2|) $) 96) (($ (-1257 |#2|)) 98)) (-4152 (((-640 (-948 |#2|)) (-1257 $)) NIL) (((-640 (-948 |#2|))) 94)) (-3726 (($ (-684 |#2|) $) 90)))
-(((-416 |#1| |#2|) (-10 -8 (-15 -3726 (|#1| (-684 |#2|) |#1|)) (-15 -3451 ((-1165 (-948 |#2|)))) (-15 -3594 ((-1165 (-948 |#2|)))) (-15 -3043 ((-684 |#2|) |#1|)) (-15 -1823 ((-684 |#2|) |#1|)) (-15 -4220 ((-684 |#2|))) (-15 -2328 ((-684 |#2|))) (-15 -1824 (|#2|)) (-15 -4111 (|#2|)) (-15 -2220 (|#1| (-1257 |#2|))) (-15 -2220 ((-1257 |#2|) |#1|)) (-15 -3937 (|#1| (-1257 |#2|))) (-15 -4152 ((-640 (-948 |#2|)))) (-15 -3507 ((-1257 (-684 |#2|)))) (-15 -1880 ((-684 |#2|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1|)) (-15 -1414 ((-3 |#1| "failed"))) (-15 -2435 ((-3 |#1| "failed"))) (-15 -2508 ((-3 |#1| "failed"))) (-15 -2133 ((-3 (-2 (|:| |particular| |#1|) (|:| -4315 (-640 |#1|))) "failed"))) (-15 -2284 ((-3 (-2 (|:| |particular| |#1|) (|:| -4315 (-640 |#1|))) "failed"))) (-15 -4220 ((-684 |#2|) (-1257 |#1|))) (-15 -2328 ((-684 |#2|) (-1257 |#1|))) (-15 -1824 (|#2| (-1257 |#1|))) (-15 -4111 (|#2| (-1257 |#1|))) (-15 -3937 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -1880 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3043 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -1823 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -3507 ((-1257 (-684 |#2|)) (-1257 |#1|))) (-15 -4152 ((-640 (-948 |#2|)) (-1257 |#1|)))) (-417 |#2|) (-172)) (T -416))
-((-3507 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1257 (-684 *4))) (-5 *1 (-416 *3 *4)) (-4 *3 (-417 *4)))) (-4152 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-640 (-948 *4))) (-5 *1 (-416 *3 *4)) (-4 *3 (-417 *4)))) (-4111 (*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-416 *3 *2)) (-4 *3 (-417 *2)))) (-1824 (*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-416 *3 *2)) (-4 *3 (-417 *2)))) (-2328 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-684 *4)) (-5 *1 (-416 *3 *4)) (-4 *3 (-417 *4)))) (-4220 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-684 *4)) (-5 *1 (-416 *3 *4)) (-4 *3 (-417 *4)))) (-3594 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1165 (-948 *4))) (-5 *1 (-416 *3 *4)) (-4 *3 (-417 *4)))) (-3451 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1165 (-948 *4))) (-5 *1 (-416 *3 *4)) (-4 *3 (-417 *4)))))
-(-10 -8 (-15 -3726 (|#1| (-684 |#2|) |#1|)) (-15 -3451 ((-1165 (-948 |#2|)))) (-15 -3594 ((-1165 (-948 |#2|)))) (-15 -3043 ((-684 |#2|) |#1|)) (-15 -1823 ((-684 |#2|) |#1|)) (-15 -4220 ((-684 |#2|))) (-15 -2328 ((-684 |#2|))) (-15 -1824 (|#2|)) (-15 -4111 (|#2|)) (-15 -2220 (|#1| (-1257 |#2|))) (-15 -2220 ((-1257 |#2|) |#1|)) (-15 -3937 (|#1| (-1257 |#2|))) (-15 -4152 ((-640 (-948 |#2|)))) (-15 -3507 ((-1257 (-684 |#2|)))) (-15 -1880 ((-684 |#2|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1|)) (-15 -1414 ((-3 |#1| "failed"))) (-15 -2435 ((-3 |#1| "failed"))) (-15 -2508 ((-3 |#1| "failed"))) (-15 -2133 ((-3 (-2 (|:| |particular| |#1|) (|:| -4315 (-640 |#1|))) "failed"))) (-15 -2284 ((-3 (-2 (|:| |particular| |#1|) (|:| -4315 (-640 |#1|))) "failed"))) (-15 -4220 ((-684 |#2|) (-1257 |#1|))) (-15 -2328 ((-684 |#2|) (-1257 |#1|))) (-15 -1824 (|#2| (-1257 |#1|))) (-15 -4111 (|#2| (-1257 |#1|))) (-15 -3937 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -1880 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -1880 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3043 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -1823 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -3507 ((-1257 (-684 |#2|)) (-1257 |#1|))) (-15 -4152 ((-640 (-948 |#2|)) (-1257 |#1|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1414 (((-3 $ "failed")) 37 (|has| |#1| (-555)))) (-1495 (((-3 $ "failed") $ $) 19)) (-3507 (((-1257 (-684 |#1|)) (-1257 $)) 78) (((-1257 (-684 |#1|))) 100)) (-1438 (((-1257 $)) 81)) (-4239 (($) 17 T CONST)) (-2133 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) 40 (|has| |#1| (-555)))) (-2435 (((-3 $ "failed")) 38 (|has| |#1| (-555)))) (-4220 (((-684 |#1|) (-1257 $)) 65) (((-684 |#1|)) 92)) (-2480 ((|#1| $) 74)) (-3043 (((-684 |#1|) $ (-1257 $)) 76) (((-684 |#1|) $) 90)) (-4154 (((-3 $ "failed") $) 45 (|has| |#1| (-555)))) (-3451 (((-1165 (-948 |#1|))) 88 (|has| |#1| (-363)))) (-2300 (($ $ (-917)) 28)) (-3830 ((|#1| $) 72)) (-3763 (((-1165 |#1|) $) 42 (|has| |#1| (-555)))) (-1824 ((|#1| (-1257 $)) 67) ((|#1|) 94)) (-2876 (((-1165 |#1|) $) 63)) (-2182 (((-112)) 57)) (-3937 (($ (-1257 |#1|) (-1257 $)) 69) (($ (-1257 |#1|)) 98)) (-3400 (((-3 $ "failed") $) 47 (|has| |#1| (-555)))) (-2522 (((-917)) 80)) (-2250 (((-112)) 54)) (-2287 (($ $ (-917)) 33)) (-3901 (((-112)) 50)) (-3308 (((-112)) 48)) (-3104 (((-112)) 52)) (-2284 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) 41 (|has| |#1| (-555)))) (-2508 (((-3 $ "failed")) 39 (|has| |#1| (-555)))) (-2328 (((-684 |#1|) (-1257 $)) 66) (((-684 |#1|)) 93)) (-2842 ((|#1| $) 75)) (-1823 (((-684 |#1|) $ (-1257 $)) 77) (((-684 |#1|) $) 91)) (-3856 (((-3 $ "failed") $) 46 (|has| |#1| (-555)))) (-3594 (((-1165 (-948 |#1|))) 89 (|has| |#1| (-363)))) (-1494 (($ $ (-917)) 29)) (-2199 ((|#1| $) 73)) (-2604 (((-1165 |#1|) $) 43 (|has| |#1| (-555)))) (-4111 ((|#1| (-1257 $)) 68) ((|#1|) 95)) (-2665 (((-1165 |#1|) $) 64)) (-4012 (((-112)) 58)) (-3573 (((-1151) $) 9)) (-2136 (((-112)) 49)) (-1789 (((-112)) 51)) (-2047 (((-112)) 53)) (-1694 (((-1113) $) 10)) (-4084 (((-112)) 56)) (-2309 ((|#1| $ (-563)) 101)) (-1880 (((-1257 |#1|) $ (-1257 $)) 71) (((-684 |#1|) (-1257 $) (-1257 $)) 70) (((-1257 |#1|) $) 103) (((-684 |#1|) (-1257 $)) 102)) (-2220 (((-1257 |#1|) $) 97) (($ (-1257 |#1|)) 96)) (-4152 (((-640 (-948 |#1|)) (-1257 $)) 79) (((-640 (-948 |#1|))) 99)) (-2146 (($ $ $) 25)) (-1936 (((-112)) 62)) (-1693 (((-858) $) 11)) (-4315 (((-1257 $)) 104)) (-2138 (((-640 (-1257 |#1|))) 44 (|has| |#1| (-555)))) (-1361 (($ $ $ $) 26)) (-1402 (((-112)) 60)) (-3726 (($ (-684 |#1|) $) 87)) (-3399 (($ $ $) 24)) (-2483 (((-112)) 61)) (-3777 (((-112)) 59)) (-2128 (((-112)) 55)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 30)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
+((-2238 (((-413 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-413 |#1| |#2| |#3| |#4|)) 33)))
+(((-412 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2238 ((-413 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-413 |#1| |#2| |#3| |#4|)))) (-307) (-988 |#1|) (-1233 |#2|) (-13 (-409 |#2| |#3|) (-1034 |#2|)) (-307) (-988 |#5|) (-1233 |#6|) (-13 (-409 |#6| |#7|) (-1034 |#6|))) (T -412))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-413 *5 *6 *7 *8)) (-4 *5 (-307)) (-4 *6 (-988 *5)) (-4 *7 (-1233 *6)) (-4 *8 (-13 (-409 *6 *7) (-1034 *6))) (-4 *9 (-307)) (-4 *10 (-988 *9)) (-4 *11 (-1233 *10)) (-5 *2 (-413 *9 *10 *11 *12)) (-5 *1 (-412 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-13 (-409 *10 *11) (-1034 *10))))))
+(-10 -7 (-15 -2238 ((-413 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-413 |#1| |#2| |#3| |#4|))))
+((-1677 (((-112) $ $) NIL)) (-2569 (($) NIL T CONST)) (-3951 (((-3 $ "failed") $) NIL)) (-3350 ((|#4| (-767) (-1257 |#4|)) 56)) (-3401 (((-112) $) NIL)) (-2143 (((-1257 |#4|) $) 17)) (-3975 ((|#2| $) 54)) (-3361 (($ $) 140)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 100)) (-1716 (($ (-1257 |#4|)) 99)) (-1693 (((-1113) $) NIL)) (-2153 ((|#1| $) 18)) (-2150 (($ $ $) NIL)) (-1745 (($ $ $) NIL)) (-1692 (((-858) $) 135)) (-4013 (((-1257 |#4|) $) 129)) (-2253 (($) 11 T CONST)) (-1718 (((-112) $ $) 40)) (-1836 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) 122)) (* (($ $ $) 121)))
+(((-413 |#1| |#2| |#3| |#4|) (-13 (-473) (-10 -8 (-15 -1716 ($ (-1257 |#4|))) (-15 -4013 ((-1257 |#4|) $)) (-15 -3975 (|#2| $)) (-15 -2143 ((-1257 |#4|) $)) (-15 -2153 (|#1| $)) (-15 -3361 ($ $)) (-15 -3350 (|#4| (-767) (-1257 |#4|))))) (-307) (-988 |#1|) (-1233 |#2|) (-13 (-409 |#2| |#3|) (-1034 |#2|))) (T -413))
+((-1716 (*1 *1 *2) (-12 (-5 *2 (-1257 *6)) (-4 *6 (-13 (-409 *4 *5) (-1034 *4))) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-4 *3 (-307)) (-5 *1 (-413 *3 *4 *5 *6)))) (-4013 (*1 *2 *1) (-12 (-4 *3 (-307)) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-5 *2 (-1257 *6)) (-5 *1 (-413 *3 *4 *5 *6)) (-4 *6 (-13 (-409 *4 *5) (-1034 *4))))) (-3975 (*1 *2 *1) (-12 (-4 *4 (-1233 *2)) (-4 *2 (-988 *3)) (-5 *1 (-413 *3 *2 *4 *5)) (-4 *3 (-307)) (-4 *5 (-13 (-409 *2 *4) (-1034 *2))))) (-2143 (*1 *2 *1) (-12 (-4 *3 (-307)) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-5 *2 (-1257 *6)) (-5 *1 (-413 *3 *4 *5 *6)) (-4 *6 (-13 (-409 *4 *5) (-1034 *4))))) (-2153 (*1 *2 *1) (-12 (-4 *3 (-988 *2)) (-4 *4 (-1233 *3)) (-4 *2 (-307)) (-5 *1 (-413 *2 *3 *4 *5)) (-4 *5 (-13 (-409 *3 *4) (-1034 *3))))) (-3361 (*1 *1 *1) (-12 (-4 *2 (-307)) (-4 *3 (-988 *2)) (-4 *4 (-1233 *3)) (-5 *1 (-413 *2 *3 *4 *5)) (-4 *5 (-13 (-409 *3 *4) (-1034 *3))))) (-3350 (*1 *2 *3 *4) (-12 (-5 *3 (-767)) (-5 *4 (-1257 *2)) (-4 *5 (-307)) (-4 *6 (-988 *5)) (-4 *2 (-13 (-409 *6 *7) (-1034 *6))) (-5 *1 (-413 *5 *6 *7 *2)) (-4 *7 (-1233 *6)))))
+(-13 (-473) (-10 -8 (-15 -1716 ($ (-1257 |#4|))) (-15 -4013 ((-1257 |#4|) $)) (-15 -3975 (|#2| $)) (-15 -2143 ((-1257 |#4|) $)) (-15 -2153 (|#1| $)) (-15 -3361 ($ $)) (-15 -3350 (|#4| (-767) (-1257 |#4|)))))
+((-1677 (((-112) $ $) NIL)) (-2569 (($) NIL T CONST)) (-3951 (((-3 $ "failed") $) NIL)) (-3401 (((-112) $) NIL)) (-3975 ((|#2| $) 61)) (-3374 (($ (-1257 |#4|)) 25) (($ (-413 |#1| |#2| |#3| |#4|)) 76 (|has| |#4| (-1034 |#2|)))) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 34)) (-4013 (((-1257 |#4|) $) 26)) (-2253 (($) 23 T CONST)) (-1718 (((-112) $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ $ $) 72)))
+(((-414 |#1| |#2| |#3| |#4| |#5|) (-13 (-722) (-10 -8 (-15 -4013 ((-1257 |#4|) $)) (-15 -3975 (|#2| $)) (-15 -3374 ($ (-1257 |#4|))) (IF (|has| |#4| (-1034 |#2|)) (-15 -3374 ($ (-413 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-307) (-988 |#1|) (-1233 |#2|) (-409 |#2| |#3|) (-1257 |#4|)) (T -414))
+((-4013 (*1 *2 *1) (-12 (-4 *3 (-307)) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-5 *2 (-1257 *6)) (-5 *1 (-414 *3 *4 *5 *6 *7)) (-4 *6 (-409 *4 *5)) (-14 *7 *2))) (-3975 (*1 *2 *1) (-12 (-4 *4 (-1233 *2)) (-4 *2 (-988 *3)) (-5 *1 (-414 *3 *2 *4 *5 *6)) (-4 *3 (-307)) (-4 *5 (-409 *2 *4)) (-14 *6 (-1257 *5)))) (-3374 (*1 *1 *2) (-12 (-5 *2 (-1257 *6)) (-4 *6 (-409 *4 *5)) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-4 *3 (-307)) (-5 *1 (-414 *3 *4 *5 *6 *7)) (-14 *7 *2))) (-3374 (*1 *1 *2) (-12 (-5 *2 (-413 *3 *4 *5 *6)) (-4 *6 (-1034 *4)) (-4 *3 (-307)) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-4 *6 (-409 *4 *5)) (-14 *7 (-1257 *6)) (-5 *1 (-414 *3 *4 *5 *6 *7)))))
+(-13 (-722) (-10 -8 (-15 -4013 ((-1257 |#4|) $)) (-15 -3975 (|#2| $)) (-15 -3374 ($ (-1257 |#4|))) (IF (|has| |#4| (-1034 |#2|)) (-15 -3374 ($ (-413 |#1| |#2| |#3| |#4|))) |%noBranch|)))
+((-2238 ((|#3| (-1 |#4| |#2|) |#1|) 26)))
+(((-415 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2238 (|#3| (-1 |#4| |#2|) |#1|))) (-417 |#2|) (-172) (-417 |#4|) (-172)) (T -415))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-4 *2 (-417 *6)) (-5 *1 (-415 *4 *5 *2 *6)) (-4 *4 (-417 *5)))))
+(-10 -7 (-15 -2238 (|#3| (-1 |#4| |#2|) |#1|)))
+((-3245 (((-3 $ "failed")) 86)) (-3749 (((-1257 (-684 |#2|)) (-1257 $)) NIL) (((-1257 (-684 |#2|))) 91)) (-2288 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) 85)) (-1914 (((-3 $ "failed")) 84)) (-3410 (((-684 |#2|) (-1257 $)) NIL) (((-684 |#2|)) 102)) (-3386 (((-684 |#2|) $ (-1257 $)) NIL) (((-684 |#2|) $) 110)) (-2214 (((-1165 (-948 |#2|))) 55)) (-3436 ((|#2| (-1257 $)) NIL) ((|#2|) 106)) (-3458 (($ (-1257 |#2|) (-1257 $)) NIL) (($ (-1257 |#2|)) 112)) (-2299 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) 83)) (-1927 (((-3 $ "failed")) 75)) (-3422 (((-684 |#2|) (-1257 $)) NIL) (((-684 |#2|)) 100)) (-3398 (((-684 |#2|) $ (-1257 $)) NIL) (((-684 |#2|) $) 108)) (-2267 (((-1165 (-948 |#2|))) 54)) (-3447 ((|#2| (-1257 $)) NIL) ((|#2|) 104)) (-3759 (((-1257 |#2|) $ (-1257 $)) NIL) (((-684 |#2|) (-1257 $) (-1257 $)) NIL) (((-1257 |#2|) $) 111) (((-684 |#2|) (-1257 $)) 118)) (-2219 (((-1257 |#2|) $) 96) (($ (-1257 |#2|)) 98)) (-2122 (((-640 (-948 |#2|)) (-1257 $)) NIL) (((-640 (-948 |#2|))) 94)) (-3727 (($ (-684 |#2|) $) 90)))
+(((-416 |#1| |#2|) (-10 -8 (-15 -3727 (|#1| (-684 |#2|) |#1|)) (-15 -2214 ((-1165 (-948 |#2|)))) (-15 -2267 ((-1165 (-948 |#2|)))) (-15 -3386 ((-684 |#2|) |#1|)) (-15 -3398 ((-684 |#2|) |#1|)) (-15 -3410 ((-684 |#2|))) (-15 -3422 ((-684 |#2|))) (-15 -3436 (|#2|)) (-15 -3447 (|#2|)) (-15 -2219 (|#1| (-1257 |#2|))) (-15 -2219 ((-1257 |#2|) |#1|)) (-15 -3458 (|#1| (-1257 |#2|))) (-15 -2122 ((-640 (-948 |#2|)))) (-15 -3749 ((-1257 (-684 |#2|)))) (-15 -3759 ((-684 |#2|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1|)) (-15 -3245 ((-3 |#1| "failed"))) (-15 -1914 ((-3 |#1| "failed"))) (-15 -1927 ((-3 |#1| "failed"))) (-15 -2288 ((-3 (-2 (|:| |particular| |#1|) (|:| -4013 (-640 |#1|))) "failed"))) (-15 -2299 ((-3 (-2 (|:| |particular| |#1|) (|:| -4013 (-640 |#1|))) "failed"))) (-15 -3410 ((-684 |#2|) (-1257 |#1|))) (-15 -3422 ((-684 |#2|) (-1257 |#1|))) (-15 -3436 (|#2| (-1257 |#1|))) (-15 -3447 (|#2| (-1257 |#1|))) (-15 -3458 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -3759 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3386 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -3398 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -3749 ((-1257 (-684 |#2|)) (-1257 |#1|))) (-15 -2122 ((-640 (-948 |#2|)) (-1257 |#1|)))) (-417 |#2|) (-172)) (T -416))
+((-3749 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1257 (-684 *4))) (-5 *1 (-416 *3 *4)) (-4 *3 (-417 *4)))) (-2122 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-640 (-948 *4))) (-5 *1 (-416 *3 *4)) (-4 *3 (-417 *4)))) (-3447 (*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-416 *3 *2)) (-4 *3 (-417 *2)))) (-3436 (*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-416 *3 *2)) (-4 *3 (-417 *2)))) (-3422 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-684 *4)) (-5 *1 (-416 *3 *4)) (-4 *3 (-417 *4)))) (-3410 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-684 *4)) (-5 *1 (-416 *3 *4)) (-4 *3 (-417 *4)))) (-2267 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1165 (-948 *4))) (-5 *1 (-416 *3 *4)) (-4 *3 (-417 *4)))) (-2214 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1165 (-948 *4))) (-5 *1 (-416 *3 *4)) (-4 *3 (-417 *4)))))
+(-10 -8 (-15 -3727 (|#1| (-684 |#2|) |#1|)) (-15 -2214 ((-1165 (-948 |#2|)))) (-15 -2267 ((-1165 (-948 |#2|)))) (-15 -3386 ((-684 |#2|) |#1|)) (-15 -3398 ((-684 |#2|) |#1|)) (-15 -3410 ((-684 |#2|))) (-15 -3422 ((-684 |#2|))) (-15 -3436 (|#2|)) (-15 -3447 (|#2|)) (-15 -2219 (|#1| (-1257 |#2|))) (-15 -2219 ((-1257 |#2|) |#1|)) (-15 -3458 (|#1| (-1257 |#2|))) (-15 -2122 ((-640 (-948 |#2|)))) (-15 -3749 ((-1257 (-684 |#2|)))) (-15 -3759 ((-684 |#2|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1|)) (-15 -3245 ((-3 |#1| "failed"))) (-15 -1914 ((-3 |#1| "failed"))) (-15 -1927 ((-3 |#1| "failed"))) (-15 -2288 ((-3 (-2 (|:| |particular| |#1|) (|:| -4013 (-640 |#1|))) "failed"))) (-15 -2299 ((-3 (-2 (|:| |particular| |#1|) (|:| -4013 (-640 |#1|))) "failed"))) (-15 -3410 ((-684 |#2|) (-1257 |#1|))) (-15 -3422 ((-684 |#2|) (-1257 |#1|))) (-15 -3436 (|#2| (-1257 |#1|))) (-15 -3447 (|#2| (-1257 |#1|))) (-15 -3458 (|#1| (-1257 |#2|) (-1257 |#1|))) (-15 -3759 ((-684 |#2|) (-1257 |#1|) (-1257 |#1|))) (-15 -3759 ((-1257 |#2|) |#1| (-1257 |#1|))) (-15 -3386 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -3398 ((-684 |#2|) |#1| (-1257 |#1|))) (-15 -3749 ((-1257 (-684 |#2|)) (-1257 |#1|))) (-15 -2122 ((-640 (-948 |#2|)) (-1257 |#1|))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3245 (((-3 $ "failed")) 37 (|has| |#1| (-555)))) (-3905 (((-3 $ "failed") $ $) 19)) (-3749 (((-1257 (-684 |#1|)) (-1257 $)) 78) (((-1257 (-684 |#1|))) 100)) (-4039 (((-1257 $)) 81)) (-2569 (($) 17 T CONST)) (-2288 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) 40 (|has| |#1| (-555)))) (-1914 (((-3 $ "failed")) 38 (|has| |#1| (-555)))) (-3410 (((-684 |#1|) (-1257 $)) 65) (((-684 |#1|)) 92)) (-4017 ((|#1| $) 74)) (-3386 (((-684 |#1|) $ (-1257 $)) 76) (((-684 |#1|) $) 90)) (-3342 (((-3 $ "failed") $) 45 (|has| |#1| (-555)))) (-2214 (((-1165 (-948 |#1|))) 88 (|has| |#1| (-363)))) (-3376 (($ $ (-917)) 28)) (-3995 ((|#1| $) 72)) (-1938 (((-1165 |#1|) $) 42 (|has| |#1| (-555)))) (-3436 ((|#1| (-1257 $)) 67) ((|#1|) 94)) (-3973 (((-1165 |#1|) $) 63)) (-3912 (((-112)) 57)) (-3458 (($ (-1257 |#1|) (-1257 $)) 69) (($ (-1257 |#1|)) 98)) (-3951 (((-3 $ "failed") $) 47 (|has| |#1| (-555)))) (-2521 (((-917)) 80)) (-3879 (((-112)) 54)) (-3617 (($ $ (-917)) 33)) (-3843 (((-112)) 50)) (-3825 (((-112)) 48)) (-3861 (((-112)) 52)) (-2299 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) 41 (|has| |#1| (-555)))) (-1927 (((-3 $ "failed")) 39 (|has| |#1| (-555)))) (-3422 (((-684 |#1|) (-1257 $)) 66) (((-684 |#1|)) 93)) (-4028 ((|#1| $) 75)) (-3398 (((-684 |#1|) $ (-1257 $)) 77) (((-684 |#1|) $) 91)) (-3353 (((-3 $ "failed") $) 46 (|has| |#1| (-555)))) (-2267 (((-1165 (-948 |#1|))) 89 (|has| |#1| (-363)))) (-3364 (($ $ (-917)) 29)) (-4007 ((|#1| $) 73)) (-3801 (((-1165 |#1|) $) 43 (|has| |#1| (-555)))) (-3447 ((|#1| (-1257 $)) 68) ((|#1|) 95)) (-3984 (((-1165 |#1|) $) 64)) (-3923 (((-112)) 58)) (-3854 (((-1151) $) 9)) (-3832 (((-112)) 49)) (-3852 (((-112)) 51)) (-3868 (((-112)) 53)) (-1693 (((-1113) $) 10)) (-3900 (((-112)) 56)) (-2308 ((|#1| $ (-563)) 101)) (-3759 (((-1257 |#1|) $ (-1257 $)) 71) (((-684 |#1|) (-1257 $) (-1257 $)) 70) (((-1257 |#1|) $) 103) (((-684 |#1|) (-1257 $)) 102)) (-2219 (((-1257 |#1|) $) 97) (($ (-1257 |#1|)) 96)) (-2122 (((-640 (-948 |#1|)) (-1257 $)) 79) (((-640 (-948 |#1|))) 99)) (-1745 (($ $ $) 25)) (-3963 (((-112)) 62)) (-1692 (((-858) $) 11)) (-4013 (((-1257 $)) 104)) (-3813 (((-640 (-1257 |#1|))) 44 (|has| |#1| (-555)))) (-1756 (($ $ $ $) 26)) (-3942 (((-112)) 60)) (-3727 (($ (-684 |#1|) $) 87)) (-1729 (($ $ $) 24)) (-3952 (((-112)) 61)) (-3933 (((-112)) 59)) (-3891 (((-112)) 55)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 30)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
(((-417 |#1|) (-140) (-172)) (T -417))
-((-4315 (*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1257 *1)) (-4 *1 (-417 *3)))) (-1880 (*1 *2 *1) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-1257 *3)))) (-1880 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-417 *4)) (-4 *4 (-172)) (-5 *2 (-684 *4)))) (-2309 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-417 *2)) (-4 *2 (-172)))) (-3507 (*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-1257 (-684 *3))))) (-4152 (*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-640 (-948 *3))))) (-3937 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-172)) (-4 *1 (-417 *3)))) (-2220 (*1 *2 *1) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-1257 *3)))) (-2220 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-172)) (-4 *1 (-417 *3)))) (-4111 (*1 *2) (-12 (-4 *1 (-417 *2)) (-4 *2 (-172)))) (-1824 (*1 *2) (-12 (-4 *1 (-417 *2)) (-4 *2 (-172)))) (-2328 (*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))) (-4220 (*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))) (-1823 (*1 *2 *1) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))) (-3043 (*1 *2 *1) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))) (-3594 (*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-4 *3 (-363)) (-5 *2 (-1165 (-948 *3))))) (-3451 (*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-4 *3 (-363)) (-5 *2 (-1165 (-948 *3))))) (-3726 (*1 *1 *2 *1) (-12 (-5 *2 (-684 *3)) (-4 *1 (-417 *3)) (-4 *3 (-172)))))
-(-13 (-367 |t#1|) (-10 -8 (-15 -4315 ((-1257 $))) (-15 -1880 ((-1257 |t#1|) $)) (-15 -1880 ((-684 |t#1|) (-1257 $))) (-15 -2309 (|t#1| $ (-563))) (-15 -3507 ((-1257 (-684 |t#1|)))) (-15 -4152 ((-640 (-948 |t#1|)))) (-15 -3937 ($ (-1257 |t#1|))) (-15 -2220 ((-1257 |t#1|) $)) (-15 -2220 ($ (-1257 |t#1|))) (-15 -4111 (|t#1|)) (-15 -1824 (|t#1|)) (-15 -2328 ((-684 |t#1|))) (-15 -4220 ((-684 |t#1|))) (-15 -1823 ((-684 |t#1|) $)) (-15 -3043 ((-684 |t#1|) $)) (IF (|has| |t#1| (-363)) (PROGN (-15 -3594 ((-1165 (-948 |t#1|)))) (-15 -3451 ((-1165 (-948 |t#1|))))) |%noBranch|) (-15 -3726 ($ (-684 |t#1|) $))))
+((-4013 (*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1257 *1)) (-4 *1 (-417 *3)))) (-3759 (*1 *2 *1) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-1257 *3)))) (-3759 (*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-417 *4)) (-4 *4 (-172)) (-5 *2 (-684 *4)))) (-2308 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-417 *2)) (-4 *2 (-172)))) (-3749 (*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-1257 (-684 *3))))) (-2122 (*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-640 (-948 *3))))) (-3458 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-172)) (-4 *1 (-417 *3)))) (-2219 (*1 *2 *1) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-1257 *3)))) (-2219 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-172)) (-4 *1 (-417 *3)))) (-3447 (*1 *2) (-12 (-4 *1 (-417 *2)) (-4 *2 (-172)))) (-3436 (*1 *2) (-12 (-4 *1 (-417 *2)) (-4 *2 (-172)))) (-3422 (*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))) (-3410 (*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))) (-3398 (*1 *2 *1) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))) (-3386 (*1 *2 *1) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))) (-2267 (*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-4 *3 (-363)) (-5 *2 (-1165 (-948 *3))))) (-2214 (*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-4 *3 (-363)) (-5 *2 (-1165 (-948 *3))))) (-3727 (*1 *1 *2 *1) (-12 (-5 *2 (-684 *3)) (-4 *1 (-417 *3)) (-4 *3 (-172)))))
+(-13 (-367 |t#1|) (-10 -8 (-15 -4013 ((-1257 $))) (-15 -3759 ((-1257 |t#1|) $)) (-15 -3759 ((-684 |t#1|) (-1257 $))) (-15 -2308 (|t#1| $ (-563))) (-15 -3749 ((-1257 (-684 |t#1|)))) (-15 -2122 ((-640 (-948 |t#1|)))) (-15 -3458 ($ (-1257 |t#1|))) (-15 -2219 ((-1257 |t#1|) $)) (-15 -2219 ($ (-1257 |t#1|))) (-15 -3447 (|t#1|)) (-15 -3436 (|t#1|)) (-15 -3422 ((-684 |t#1|))) (-15 -3410 ((-684 |t#1|))) (-15 -3398 ((-684 |t#1|) $)) (-15 -3386 ((-684 |t#1|) $)) (IF (|has| |t#1| (-363)) (PROGN (-15 -2267 ((-1165 (-948 |t#1|)))) (-15 -2214 ((-1165 (-948 |t#1|))))) |%noBranch|) (-15 -3727 ($ (-684 |t#1|) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-610 (-858)) . T) ((-367 |#1|) . T) ((-643 |#1|) . T) ((-713 |#1|) . T) ((-716) . T) ((-740 |#1|) . T) ((-757) . T) ((-1051 |#1|) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 44)) (-1838 (($ $) 59)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 147)) (-4223 (($ $) NIL)) (-3156 (((-112) $) 38)) (-1414 ((|#1| $) 13)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL (|has| |#1| (-1212)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-1212)))) (-1340 (($ |#1| (-563)) 34)) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 117)) (-2058 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 57)) (-3400 (((-3 $ "failed") $) 132)) (-3909 (((-3 (-407 (-563)) "failed") $) 65 (|has| |#1| (-545)))) (-2239 (((-112) $) 61 (|has| |#1| (-545)))) (-2651 (((-407 (-563)) $) 72 (|has| |#1| (-545)))) (-4349 (($ |#1| (-563)) 36)) (-2468 (((-112) $) 153 (|has| |#1| (-1212)))) (-3827 (((-112) $) 45)) (-2718 (((-767) $) 40)) (-2678 (((-3 "nil" "sqfr" "irred" "prime") $ (-563)) 138)) (-2768 ((|#1| $ (-563)) 137)) (-1299 (((-563) $ (-563)) 136)) (-1900 (($ |#1| (-563)) 33)) (-2240 (($ (-1 |#1| |#1|) $) 144)) (-4157 (($ |#1| (-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-563))))) 60)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3573 (((-1151) $) NIL)) (-2428 (($ |#1| (-563)) 35)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) 148 (|has| |#1| (-452)))) (-3581 (($ |#1| (-563) (-3 "nil" "sqfr" "irred" "prime")) 32)) (-2760 (((-640 (-2 (|:| -2174 |#1|) (|:| -1654 (-563)))) $) 56)) (-2912 (((-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-563)))) $) 12)) (-2174 (((-418 $) $) NIL (|has| |#1| (-1212)))) (-3008 (((-3 $ "failed") $ $) 139)) (-1654 (((-563) $) 133)) (-2213 ((|#1| $) 58)) (-1540 (($ $ (-640 |#1|) (-640 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) 81 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) 87 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) $) NIL (|has| |#1| (-514 (-1169) $))) (($ $ (-640 (-1169)) (-640 $)) 88 (|has| |#1| (-514 (-1169) $))) (($ $ (-640 (-294 $))) 84 (|has| |#1| (-309 $))) (($ $ (-294 $)) NIL (|has| |#1| (-309 $))) (($ $ $ $) NIL (|has| |#1| (-309 $))) (($ $ (-640 $) (-640 $)) NIL (|has| |#1| (-309 $)))) (-2309 (($ $ |#1|) 73 (|has| |#1| (-286 |#1| |#1|))) (($ $ $) 74 (|has| |#1| (-286 $ $)))) (-4202 (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) 143)) (-2220 (((-536) $) 30 (|has| |#1| (-611 (-536)))) (((-379) $) 94 (|has| |#1| (-1018))) (((-225) $) 97 (|has| |#1| (-1018)))) (-1693 (((-858) $) 115) (($ (-563)) 48) (($ $) NIL) (($ |#1|) 47) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563)))))) (-1675 (((-767)) 50)) (-2126 (((-112) $ $) NIL)) (-2241 (($) 42 T CONST)) (-2254 (($) 41 T CONST)) (-3209 (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1718 (((-112) $ $) 98)) (-1826 (($ $) 129) (($ $ $) NIL)) (-1814 (($ $ $) 141)) (** (($ $ (-917)) NIL) (($ $ (-767)) 104)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 52) (($ $ $) 51) (($ |#1| $) 53) (($ $ |#1|) NIL)))
-(((-418 |#1|) (-13 (-555) (-231 |#1|) (-38 |#1|) (-338 |#1|) (-411 |#1|) (-10 -8 (-15 -2213 (|#1| $)) (-15 -1654 ((-563) $)) (-15 -4157 ($ |#1| (-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-563)))))) (-15 -2912 ((-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-563)))) $)) (-15 -1900 ($ |#1| (-563))) (-15 -2760 ((-640 (-2 (|:| -2174 |#1|) (|:| -1654 (-563)))) $)) (-15 -2428 ($ |#1| (-563))) (-15 -1299 ((-563) $ (-563))) (-15 -2768 (|#1| $ (-563))) (-15 -2678 ((-3 "nil" "sqfr" "irred" "prime") $ (-563))) (-15 -2718 ((-767) $)) (-15 -4349 ($ |#1| (-563))) (-15 -1340 ($ |#1| (-563))) (-15 -3581 ($ |#1| (-563) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -1414 (|#1| $)) (-15 -1838 ($ $)) (-15 -2240 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-452)) (-6 (-452)) |%noBranch|) (IF (|has| |#1| (-1018)) (-6 (-1018)) |%noBranch|) (IF (|has| |#1| (-1212)) (-6 (-1212)) |%noBranch|) (IF (|has| |#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |#1| (-545)) (PROGN (-15 -2239 ((-112) $)) (-15 -2651 ((-407 (-563)) $)) (-15 -3909 ((-3 (-407 (-563)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-286 $ $)) (-6 (-286 $ $)) |%noBranch|) (IF (|has| |#1| (-309 $)) (-6 (-309 $)) |%noBranch|) (IF (|has| |#1| (-514 (-1169) $)) (-6 (-514 (-1169) $)) |%noBranch|))) (-555)) (T -418))
-((-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-555)) (-5 *1 (-418 *3)))) (-2213 (*1 *2 *1) (-12 (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-1654 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-418 *3)) (-4 *3 (-555)))) (-4157 (*1 *1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2) (|:| |xpnt| (-563))))) (-4 *2 (-555)) (-5 *1 (-418 *2)))) (-2912 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3) (|:| |xpnt| (-563))))) (-5 *1 (-418 *3)) (-4 *3 (-555)))) (-1900 (*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-2760 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| -2174 *3) (|:| -1654 (-563))))) (-5 *1 (-418 *3)) (-4 *3 (-555)))) (-2428 (*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-1299 (*1 *2 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-418 *3)) (-4 *3 (-555)))) (-2768 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-2678 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-418 *4)) (-4 *4 (-555)))) (-2718 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-418 *3)) (-4 *3 (-555)))) (-4349 (*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-1340 (*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-3581 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-563)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-1414 (*1 *2 *1) (-12 (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-1838 (*1 *1 *1) (-12 (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-2239 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-418 *3)) (-4 *3 (-545)) (-4 *3 (-555)))) (-2651 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-418 *3)) (-4 *3 (-545)) (-4 *3 (-555)))) (-3909 (*1 *2 *1) (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-418 *3)) (-4 *3 (-545)) (-4 *3 (-555)))))
-(-13 (-555) (-231 |#1|) (-38 |#1|) (-338 |#1|) (-411 |#1|) (-10 -8 (-15 -2213 (|#1| $)) (-15 -1654 ((-563) $)) (-15 -4157 ($ |#1| (-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-563)))))) (-15 -2912 ((-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-563)))) $)) (-15 -1900 ($ |#1| (-563))) (-15 -2760 ((-640 (-2 (|:| -2174 |#1|) (|:| -1654 (-563)))) $)) (-15 -2428 ($ |#1| (-563))) (-15 -1299 ((-563) $ (-563))) (-15 -2768 (|#1| $ (-563))) (-15 -2678 ((-3 "nil" "sqfr" "irred" "prime") $ (-563))) (-15 -2718 ((-767) $)) (-15 -4349 ($ |#1| (-563))) (-15 -1340 ($ |#1| (-563))) (-15 -3581 ($ |#1| (-563) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -1414 (|#1| $)) (-15 -1838 ($ $)) (-15 -2240 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-452)) (-6 (-452)) |%noBranch|) (IF (|has| |#1| (-1018)) (-6 (-1018)) |%noBranch|) (IF (|has| |#1| (-1212)) (-6 (-1212)) |%noBranch|) (IF (|has| |#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |#1| (-545)) (PROGN (-15 -2239 ((-112) $)) (-15 -2651 ((-407 (-563)) $)) (-15 -3909 ((-3 (-407 (-563)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-286 $ $)) (-6 (-286 $ $)) |%noBranch|) (IF (|has| |#1| (-309 $)) (-6 (-309 $)) |%noBranch|) (IF (|has| |#1| (-514 (-1169) $)) (-6 (-514 (-1169) $)) |%noBranch|)))
-((-1441 (((-418 |#1|) (-418 |#1|) (-1 (-418 |#1|) |#1|)) 21)) (-3072 (((-418 |#1|) (-418 |#1|) (-418 |#1|)) 16)))
-(((-419 |#1|) (-10 -7 (-15 -1441 ((-418 |#1|) (-418 |#1|) (-1 (-418 |#1|) |#1|))) (-15 -3072 ((-418 |#1|) (-418 |#1|) (-418 |#1|)))) (-555)) (T -419))
-((-3072 (*1 *2 *2 *2) (-12 (-5 *2 (-418 *3)) (-4 *3 (-555)) (-5 *1 (-419 *3)))) (-1441 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-418 *4) *4)) (-4 *4 (-555)) (-5 *2 (-418 *4)) (-5 *1 (-419 *4)))))
-(-10 -7 (-15 -1441 ((-418 |#1|) (-418 |#1|) (-1 (-418 |#1|) |#1|))) (-15 -3072 ((-418 |#1|) (-418 |#1|) (-418 |#1|))))
-((-2794 ((|#2| |#2|) 165)) (-3099 (((-3 (|:| |%expansion| (-313 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112)) 57)))
-(((-420 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3099 ((-3 (|:| |%expansion| (-313 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112))) (-15 -2794 (|#2| |#2|))) (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|)) (-1169) |#2|) (T -420))
-((-2794 (*1 *2 *2) (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-420 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1193) (-430 *3))) (-14 *4 (-1169)) (-14 *5 *2))) (-3099 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (|:| |%expansion| (-313 *5 *3 *6 *7)) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151)))))) (-5 *1 (-420 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1193) (-430 *5))) (-14 *6 (-1169)) (-14 *7 *3))))
-(-10 -7 (-15 -3099 ((-3 (|:| |%expansion| (-313 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112))) (-15 -2794 (|#2| |#2|)))
-((-2240 ((|#4| (-1 |#3| |#1|) |#2|) 11)))
-(((-421 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2240 (|#4| (-1 |#3| |#1|) |#2|))) (-13 (-1045) (-846)) (-430 |#1|) (-13 (-1045) (-846)) (-430 |#3|)) (T -421))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-13 (-1045) (-846))) (-4 *6 (-13 (-1045) (-846))) (-4 *2 (-430 *6)) (-5 *1 (-421 *5 *4 *6 *2)) (-4 *4 (-430 *5)))))
-(-10 -7 (-15 -2240 (|#4| (-1 |#3| |#1|) |#2|)))
-((-2794 ((|#2| |#2|) 89)) (-3476 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112) (-1151)) 48)) (-4232 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112) (-1151)) 153)))
-(((-422 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3476 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112) (-1151))) (-15 -4232 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112) (-1151))) (-15 -2794 (|#2| |#2|))) (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|) (-10 -8 (-15 -1693 ($ |#3|)))) (-844) (-13 (-1235 |#2| |#3|) (-363) (-1193) (-10 -8 (-15 -4202 ($ $)) (-15 -3698 ($ $)))) (-979 |#4|) (-1169)) (T -422))
-((-2794 (*1 *2 *2) (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-4 *2 (-13 (-27) (-1193) (-430 *3) (-10 -8 (-15 -1693 ($ *4))))) (-4 *4 (-844)) (-4 *5 (-13 (-1235 *2 *4) (-363) (-1193) (-10 -8 (-15 -4202 ($ $)) (-15 -3698 ($ $))))) (-5 *1 (-422 *3 *2 *4 *5 *6 *7)) (-4 *6 (-979 *5)) (-14 *7 (-1169)))) (-4232 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-4 *3 (-13 (-27) (-1193) (-430 *6) (-10 -8 (-15 -1693 ($ *7))))) (-4 *7 (-844)) (-4 *8 (-13 (-1235 *3 *7) (-363) (-1193) (-10 -8 (-15 -4202 ($ $)) (-15 -3698 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151)))))) (-5 *1 (-422 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1151)) (-4 *9 (-979 *8)) (-14 *10 (-1169)))) (-3476 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-4 *3 (-13 (-27) (-1193) (-430 *6) (-10 -8 (-15 -1693 ($ *7))))) (-4 *7 (-844)) (-4 *8 (-13 (-1235 *3 *7) (-363) (-1193) (-10 -8 (-15 -4202 ($ $)) (-15 -3698 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151)))))) (-5 *1 (-422 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1151)) (-4 *9 (-979 *8)) (-14 *10 (-1169)))))
-(-10 -7 (-15 -3476 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112) (-1151))) (-15 -4232 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112) (-1151))) (-15 -2794 (|#2| |#2|)))
-((-1567 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-2444 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-2240 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
-(((-423 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2240 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2444 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1567 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1093) (-425 |#1|) (-1093) (-425 |#3|)) (T -423))
-((-1567 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1093)) (-4 *5 (-1093)) (-4 *2 (-425 *5)) (-5 *1 (-423 *6 *4 *5 *2)) (-4 *4 (-425 *6)))) (-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1093)) (-4 *2 (-1093)) (-5 *1 (-423 *5 *4 *2 *6)) (-4 *4 (-425 *5)) (-4 *6 (-425 *2)))) (-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-425 *6)) (-5 *1 (-423 *5 *4 *6 *2)) (-4 *4 (-425 *5)))))
-(-10 -7 (-15 -2240 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2444 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1567 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-2941 (($) 44)) (-2583 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 40)) (-4314 (($ $ $) 39)) (-4149 (((-112) $ $) 28)) (-3749 (((-767)) 47)) (-1584 (($ (-640 |#2|)) 20) (($) NIL)) (-1691 (($) 53)) (-2539 (((-112) $ $) 13)) (-3084 ((|#2| $) 61)) (-1777 ((|#2| $) 59)) (-1476 (((-917) $) 55)) (-2550 (($ $ $) 35)) (-2555 (($ (-917)) 50)) (-1629 (($ $ |#2|) NIL) (($ $ $) 38)) (-1709 (((-767) (-1 (-112) |#2|) $) NIL) (((-767) |#2| $) 26)) (-1707 (($ (-640 |#2|)) 24)) (-3085 (($ $) 46)) (-1693 (((-858) $) 33)) (-1663 (((-767) $) 21)) (-2534 (($ (-640 |#2|)) 19) (($) NIL)) (-1718 (((-112) $ $) 16)))
-(((-424 |#1| |#2|) (-10 -8 (-15 -3749 ((-767))) (-15 -2555 (|#1| (-917))) (-15 -1476 ((-917) |#1|)) (-15 -1691 (|#1|)) (-15 -3084 (|#2| |#1|)) (-15 -1777 (|#2| |#1|)) (-15 -2941 (|#1|)) (-15 -3085 (|#1| |#1|)) (-15 -1663 ((-767) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -1693 ((-858) |#1|)) (-15 -2539 ((-112) |#1| |#1|)) (-15 -2534 (|#1|)) (-15 -2534 (|#1| (-640 |#2|))) (-15 -1584 (|#1|)) (-15 -1584 (|#1| (-640 |#2|))) (-15 -2550 (|#1| |#1| |#1|)) (-15 -1629 (|#1| |#1| |#1|)) (-15 -1629 (|#1| |#1| |#2|)) (-15 -4314 (|#1| |#1| |#1|)) (-15 -4149 ((-112) |#1| |#1|)) (-15 -2583 (|#1| |#1| |#1|)) (-15 -2583 (|#1| |#1| |#2|)) (-15 -2583 (|#1| |#2| |#1|)) (-15 -1707 (|#1| (-640 |#2|))) (-15 -1709 ((-767) |#2| |#1|)) (-15 -1709 ((-767) (-1 (-112) |#2|) |#1|))) (-425 |#2|) (-1093)) (T -424))
-((-3749 (*1 *2) (-12 (-4 *4 (-1093)) (-5 *2 (-767)) (-5 *1 (-424 *3 *4)) (-4 *3 (-425 *4)))))
-(-10 -8 (-15 -3749 ((-767))) (-15 -2555 (|#1| (-917))) (-15 -1476 ((-917) |#1|)) (-15 -1691 (|#1|)) (-15 -3084 (|#2| |#1|)) (-15 -1777 (|#2| |#1|)) (-15 -2941 (|#1|)) (-15 -3085 (|#1| |#1|)) (-15 -1663 ((-767) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -1693 ((-858) |#1|)) (-15 -2539 ((-112) |#1| |#1|)) (-15 -2534 (|#1|)) (-15 -2534 (|#1| (-640 |#2|))) (-15 -1584 (|#1|)) (-15 -1584 (|#1| (-640 |#2|))) (-15 -2550 (|#1| |#1| |#1|)) (-15 -1629 (|#1| |#1| |#1|)) (-15 -1629 (|#1| |#1| |#2|)) (-15 -4314 (|#1| |#1| |#1|)) (-15 -4149 ((-112) |#1| |#1|)) (-15 -2583 (|#1| |#1| |#1|)) (-15 -2583 (|#1| |#1| |#2|)) (-15 -2583 (|#1| |#2| |#1|)) (-15 -1707 (|#1| (-640 |#2|))) (-15 -1709 ((-767) |#2| |#1|)) (-15 -1709 ((-767) (-1 (-112) |#2|) |#1|)))
-((-1677 (((-112) $ $) 19)) (-2941 (($) 67 (|has| |#1| (-368)))) (-2583 (($ |#1| $) 82) (($ $ |#1|) 81) (($ $ $) 80)) (-4314 (($ $ $) 78)) (-4149 (((-112) $ $) 79)) (-2759 (((-112) $ (-767)) 8)) (-3749 (((-767)) 61 (|has| |#1| (-368)))) (-1584 (($ (-640 |#1|)) 74) (($) 73)) (-2812 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4407)))) (-4239 (($) 7 T CONST)) (-3813 (($ $) 58 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-2705 (($ |#1| $) 47 (|has| $ (-6 -4407))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4407)))) (-1459 (($ |#1| $) 57 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4407)))) (-1691 (($) 64 (|has| |#1| (-368)))) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2539 (((-112) $ $) 70)) (-2581 (((-112) $ (-767)) 9)) (-3084 ((|#1| $) 65 (|has| |#1| (-846)))) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1777 ((|#1| $) 66 (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-1476 (((-917) $) 63 (|has| |#1| (-368)))) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22)) (-2550 (($ $ $) 75)) (-2964 ((|#1| $) 39)) (-1812 (($ |#1| $) 40)) (-2555 (($ (-917)) 62 (|has| |#1| (-368)))) (-1694 (((-1113) $) 21)) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3755 ((|#1| $) 41)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-1629 (($ $ |#1|) 77) (($ $ $) 76)) (-3890 (($) 49) (($ (-640 |#1|)) 48)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-2220 (((-536) $) 59 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 50)) (-3085 (($ $) 68 (|has| |#1| (-368)))) (-1693 (((-858) $) 18)) (-1663 (((-767) $) 69)) (-2534 (($ (-640 |#1|)) 72) (($) 71)) (-2233 (($ (-640 |#1|)) 42)) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20)) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 45)) (-3236 (($ $) 60)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 148)) (-3231 (($ $) NIL)) (-3211 (((-112) $) 38)) (-3245 ((|#1| $) 13)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL (|has| |#1| (-1212)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-1212)))) (-3264 (($ |#1| (-563)) 34)) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 117)) (-2057 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 58)) (-3951 (((-3 $ "failed") $) 133)) (-2327 (((-3 (-407 (-563)) "failed") $) 66 (|has| |#1| (-545)))) (-2317 (((-112) $) 62 (|has| |#1| (-545)))) (-2306 (((-407 (-563)) $) 73 (|has| |#1| (-545)))) (-3274 (($ |#1| (-563)) 36)) (-2560 (((-112) $) 154 (|has| |#1| (-1212)))) (-3401 (((-112) $) 46)) (-2721 (((-767) $) 40)) (-3283 (((-3 "nil" "sqfr" "irred" "prime") $ (-563)) 139)) (-1347 ((|#1| $ (-563)) 138)) (-3294 (((-563) $ (-563)) 137)) (-3320 (($ |#1| (-563)) 33)) (-2238 (($ (-1 |#1| |#1|) $) 145)) (-2691 (($ |#1| (-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-563))))) 61)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3854 (((-1151) $) NIL)) (-3309 (($ |#1| (-563)) 35)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) 149 (|has| |#1| (-452)))) (-3257 (($ |#1| (-563) (-3 "nil" "sqfr" "irred" "prime")) 32)) (-1337 (((-640 (-2 (|:| -2173 |#1|) (|:| -3311 (-563)))) $) 57)) (-1504 (((-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-563)))) $) 12)) (-2173 (((-418 $) $) NIL (|has| |#1| (-1212)))) (-3012 (((-3 $ "failed") $ $) 140)) (-3311 (((-563) $) 134)) (-2212 ((|#1| $) 59)) (-1542 (($ $ (-640 |#1|) (-640 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) 82 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) 88 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) $) NIL (|has| |#1| (-514 (-1169) $))) (($ $ (-640 (-1169)) (-640 $)) 89 (|has| |#1| (-514 (-1169) $))) (($ $ (-640 (-294 $))) 85 (|has| |#1| (-309 $))) (($ $ (-294 $)) NIL (|has| |#1| (-309 $))) (($ $ $ $) NIL (|has| |#1| (-309 $))) (($ $ (-640 $) (-640 $)) NIL (|has| |#1| (-309 $)))) (-2308 (($ $ |#1|) 74 (|has| |#1| (-286 |#1| |#1|))) (($ $ $) 75 (|has| |#1| (-286 $ $)))) (-4203 (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) 144)) (-2219 (((-536) $) 30 (|has| |#1| (-611 (-536)))) (((-379) $) 95 (|has| |#1| (-1018))) (((-225) $) 98 (|has| |#1| (-1018)))) (-1692 (((-858) $) 115) (($ (-563)) 49) (($ $) NIL) (($ |#1|) 48) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563)))))) (-3914 (((-767)) 51)) (-3223 (((-112) $ $) NIL)) (-2239 (($) 42 T CONST)) (-2253 (($) 41 T CONST)) (-3213 (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1718 (((-112) $ $) 128)) (-1825 (($ $) 130) (($ $ $) NIL)) (-1813 (($ $ $) 142)) (** (($ $ (-917)) NIL) (($ $ (-767)) 104)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 53) (($ $ $) 52) (($ |#1| $) 54) (($ $ |#1|) NIL)))
+(((-418 |#1|) (-13 (-555) (-231 |#1|) (-38 |#1|) (-338 |#1|) (-411 |#1|) (-10 -8 (-15 -2212 (|#1| $)) (-15 -3311 ((-563) $)) (-15 -2691 ($ |#1| (-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-563)))))) (-15 -1504 ((-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-563)))) $)) (-15 -3320 ($ |#1| (-563))) (-15 -1337 ((-640 (-2 (|:| -2173 |#1|) (|:| -3311 (-563)))) $)) (-15 -3309 ($ |#1| (-563))) (-15 -3294 ((-563) $ (-563))) (-15 -1347 (|#1| $ (-563))) (-15 -3283 ((-3 "nil" "sqfr" "irred" "prime") $ (-563))) (-15 -2721 ((-767) $)) (-15 -3274 ($ |#1| (-563))) (-15 -3264 ($ |#1| (-563))) (-15 -3257 ($ |#1| (-563) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -3245 (|#1| $)) (-15 -3236 ($ $)) (-15 -2238 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-452)) (-6 (-452)) |%noBranch|) (IF (|has| |#1| (-1018)) (-6 (-1018)) |%noBranch|) (IF (|has| |#1| (-1212)) (-6 (-1212)) |%noBranch|) (IF (|has| |#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |#1| (-545)) (PROGN (-15 -2317 ((-112) $)) (-15 -2306 ((-407 (-563)) $)) (-15 -2327 ((-3 (-407 (-563)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-286 $ $)) (-6 (-286 $ $)) |%noBranch|) (IF (|has| |#1| (-309 $)) (-6 (-309 $)) |%noBranch|) (IF (|has| |#1| (-514 (-1169) $)) (-6 (-514 (-1169) $)) |%noBranch|))) (-555)) (T -418))
+((-2238 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-555)) (-5 *1 (-418 *3)))) (-2212 (*1 *2 *1) (-12 (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-3311 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-418 *3)) (-4 *3 (-555)))) (-2691 (*1 *1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2) (|:| |xpnt| (-563))))) (-4 *2 (-555)) (-5 *1 (-418 *2)))) (-1504 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3) (|:| |xpnt| (-563))))) (-5 *1 (-418 *3)) (-4 *3 (-555)))) (-3320 (*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-1337 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| -2173 *3) (|:| -3311 (-563))))) (-5 *1 (-418 *3)) (-4 *3 (-555)))) (-3309 (*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-3294 (*1 *2 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-418 *3)) (-4 *3 (-555)))) (-1347 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-3283 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-418 *4)) (-4 *4 (-555)))) (-2721 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-418 *3)) (-4 *3 (-555)))) (-3274 (*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-3264 (*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-3257 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-563)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-3245 (*1 *2 *1) (-12 (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-3236 (*1 *1 *1) (-12 (-5 *1 (-418 *2)) (-4 *2 (-555)))) (-2317 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-418 *3)) (-4 *3 (-545)) (-4 *3 (-555)))) (-2306 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-418 *3)) (-4 *3 (-545)) (-4 *3 (-555)))) (-2327 (*1 *2 *1) (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-418 *3)) (-4 *3 (-545)) (-4 *3 (-555)))))
+(-13 (-555) (-231 |#1|) (-38 |#1|) (-338 |#1|) (-411 |#1|) (-10 -8 (-15 -2212 (|#1| $)) (-15 -3311 ((-563) $)) (-15 -2691 ($ |#1| (-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-563)))))) (-15 -1504 ((-640 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-563)))) $)) (-15 -3320 ($ |#1| (-563))) (-15 -1337 ((-640 (-2 (|:| -2173 |#1|) (|:| -3311 (-563)))) $)) (-15 -3309 ($ |#1| (-563))) (-15 -3294 ((-563) $ (-563))) (-15 -1347 (|#1| $ (-563))) (-15 -3283 ((-3 "nil" "sqfr" "irred" "prime") $ (-563))) (-15 -2721 ((-767) $)) (-15 -3274 ($ |#1| (-563))) (-15 -3264 ($ |#1| (-563))) (-15 -3257 ($ |#1| (-563) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -3245 (|#1| $)) (-15 -3236 ($ $)) (-15 -2238 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-452)) (-6 (-452)) |%noBranch|) (IF (|has| |#1| (-1018)) (-6 (-1018)) |%noBranch|) (IF (|has| |#1| (-1212)) (-6 (-1212)) |%noBranch|) (IF (|has| |#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |#1| (-545)) (PROGN (-15 -2317 ((-112) $)) (-15 -2306 ((-407 (-563)) $)) (-15 -2327 ((-3 (-407 (-563)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-286 $ $)) (-6 (-286 $ $)) |%noBranch|) (IF (|has| |#1| (-309 $)) (-6 (-309 $)) |%noBranch|) (IF (|has| |#1| (-514 (-1169) $)) (-6 (-514 (-1169) $)) |%noBranch|)))
+((-3998 (((-418 |#1|) (-418 |#1|) (-1 (-418 |#1|) |#1|)) 21)) (-3469 (((-418 |#1|) (-418 |#1|) (-418 |#1|)) 16)))
+(((-419 |#1|) (-10 -7 (-15 -3998 ((-418 |#1|) (-418 |#1|) (-1 (-418 |#1|) |#1|))) (-15 -3469 ((-418 |#1|) (-418 |#1|) (-418 |#1|)))) (-555)) (T -419))
+((-3469 (*1 *2 *2 *2) (-12 (-5 *2 (-418 *3)) (-4 *3 (-555)) (-5 *1 (-419 *3)))) (-3998 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-418 *4) *4)) (-4 *4 (-555)) (-5 *2 (-418 *4)) (-5 *1 (-419 *4)))))
+(-10 -7 (-15 -3998 ((-418 |#1|) (-418 |#1|) (-1 (-418 |#1|) |#1|))) (-15 -3469 ((-418 |#1|) (-418 |#1|) (-418 |#1|))))
+((-3522 ((|#2| |#2|) 165)) (-3489 (((-3 (|:| |%expansion| (-313 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112)) 57)))
+(((-420 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3489 ((-3 (|:| |%expansion| (-313 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112))) (-15 -3522 (|#2| |#2|))) (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|)) (-1169) |#2|) (T -420))
+((-3522 (*1 *2 *2) (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-420 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1193) (-430 *3))) (-14 *4 (-1169)) (-14 *5 *2))) (-3489 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (|:| |%expansion| (-313 *5 *3 *6 *7)) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151)))))) (-5 *1 (-420 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1193) (-430 *5))) (-14 *6 (-1169)) (-14 *7 *3))))
+(-10 -7 (-15 -3489 ((-3 (|:| |%expansion| (-313 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112))) (-15 -3522 (|#2| |#2|)))
+((-2238 ((|#4| (-1 |#3| |#1|) |#2|) 11)))
+(((-421 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2238 (|#4| (-1 |#3| |#1|) |#2|))) (-13 (-1045) (-846)) (-430 |#1|) (-13 (-1045) (-846)) (-430 |#3|)) (T -421))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-13 (-1045) (-846))) (-4 *6 (-13 (-1045) (-846))) (-4 *2 (-430 *6)) (-5 *1 (-421 *5 *4 *6 *2)) (-4 *4 (-430 *5)))))
+(-10 -7 (-15 -2238 (|#4| (-1 |#3| |#1|) |#2|)))
+((-3522 ((|#2| |#2|) 89)) (-3500 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112) (-1151)) 48)) (-3511 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112) (-1151)) 153)))
+(((-422 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3500 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112) (-1151))) (-15 -3511 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112) (-1151))) (-15 -3522 (|#2| |#2|))) (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|) (-10 -8 (-15 -1692 ($ |#3|)))) (-844) (-13 (-1235 |#2| |#3|) (-363) (-1193) (-10 -8 (-15 -4203 ($ $)) (-15 -2062 ($ $)))) (-979 |#4|) (-1169)) (T -422))
+((-3522 (*1 *2 *2) (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-4 *2 (-13 (-27) (-1193) (-430 *3) (-10 -8 (-15 -1692 ($ *4))))) (-4 *4 (-844)) (-4 *5 (-13 (-1235 *2 *4) (-363) (-1193) (-10 -8 (-15 -4203 ($ $)) (-15 -2062 ($ $))))) (-5 *1 (-422 *3 *2 *4 *5 *6 *7)) (-4 *6 (-979 *5)) (-14 *7 (-1169)))) (-3511 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-4 *3 (-13 (-27) (-1193) (-430 *6) (-10 -8 (-15 -1692 ($ *7))))) (-4 *7 (-844)) (-4 *8 (-13 (-1235 *3 *7) (-363) (-1193) (-10 -8 (-15 -4203 ($ $)) (-15 -2062 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151)))))) (-5 *1 (-422 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1151)) (-4 *9 (-979 *8)) (-14 *10 (-1169)))) (-3500 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-4 *3 (-13 (-27) (-1193) (-430 *6) (-10 -8 (-15 -1692 ($ *7))))) (-4 *7 (-844)) (-4 *8 (-13 (-1235 *3 *7) (-363) (-1193) (-10 -8 (-15 -4203 ($ $)) (-15 -2062 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151)))))) (-5 *1 (-422 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1151)) (-4 *9 (-979 *8)) (-14 *10 (-1169)))))
+(-10 -7 (-15 -3500 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112) (-1151))) (-15 -3511 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))) |#2| (-112) (-1151))) (-15 -3522 (|#2| |#2|)))
+((-4132 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-2444 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-2238 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
+(((-423 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2238 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2444 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -4132 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1093) (-425 |#1|) (-1093) (-425 |#3|)) (T -423))
+((-4132 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1093)) (-4 *5 (-1093)) (-4 *2 (-425 *5)) (-5 *1 (-423 *6 *4 *5 *2)) (-4 *4 (-425 *6)))) (-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1093)) (-4 *2 (-1093)) (-5 *1 (-423 *5 *4 *2 *6)) (-4 *4 (-425 *5)) (-4 *6 (-425 *2)))) (-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-425 *6)) (-5 *1 (-423 *5 *4 *6 *2)) (-4 *4 (-425 *5)))))
+(-10 -7 (-15 -2238 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2444 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -4132 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-3533 (($) 44)) (-2582 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 40)) (-3816 (($ $ $) 39)) (-3804 (((-112) $ $) 28)) (-3750 (((-767)) 47)) (-1582 (($ (-640 |#2|)) 20) (($) NIL)) (-1690 (($) 53)) (-3845 (((-112) $ $) 13)) (-3088 ((|#2| $) 61)) (-1776 ((|#2| $) 59)) (-3990 (((-917) $) 55)) (-3834 (($ $ $) 35)) (-2552 (($ (-917)) 50)) (-3827 (($ $ |#2|) NIL) (($ $ $) 38)) (-1708 (((-767) (-1 (-112) |#2|) $) NIL) (((-767) |#2| $) 26)) (-1706 (($ (-640 |#2|)) 24)) (-3545 (($ $) 46)) (-1692 (((-858) $) 33)) (-3556 (((-767) $) 21)) (-2533 (($ (-640 |#2|)) 19) (($) NIL)) (-1718 (((-112) $ $) 16)))
+(((-424 |#1| |#2|) (-10 -8 (-15 -3750 ((-767))) (-15 -2552 (|#1| (-917))) (-15 -3990 ((-917) |#1|)) (-15 -1690 (|#1|)) (-15 -3088 (|#2| |#1|)) (-15 -1776 (|#2| |#1|)) (-15 -3533 (|#1|)) (-15 -3545 (|#1| |#1|)) (-15 -3556 ((-767) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -1692 ((-858) |#1|)) (-15 -3845 ((-112) |#1| |#1|)) (-15 -2533 (|#1|)) (-15 -2533 (|#1| (-640 |#2|))) (-15 -1582 (|#1|)) (-15 -1582 (|#1| (-640 |#2|))) (-15 -3834 (|#1| |#1| |#1|)) (-15 -3827 (|#1| |#1| |#1|)) (-15 -3827 (|#1| |#1| |#2|)) (-15 -3816 (|#1| |#1| |#1|)) (-15 -3804 ((-112) |#1| |#1|)) (-15 -2582 (|#1| |#1| |#1|)) (-15 -2582 (|#1| |#1| |#2|)) (-15 -2582 (|#1| |#2| |#1|)) (-15 -1706 (|#1| (-640 |#2|))) (-15 -1708 ((-767) |#2| |#1|)) (-15 -1708 ((-767) (-1 (-112) |#2|) |#1|))) (-425 |#2|) (-1093)) (T -424))
+((-3750 (*1 *2) (-12 (-4 *4 (-1093)) (-5 *2 (-767)) (-5 *1 (-424 *3 *4)) (-4 *3 (-425 *4)))))
+(-10 -8 (-15 -3750 ((-767))) (-15 -2552 (|#1| (-917))) (-15 -3990 ((-917) |#1|)) (-15 -1690 (|#1|)) (-15 -3088 (|#2| |#1|)) (-15 -1776 (|#2| |#1|)) (-15 -3533 (|#1|)) (-15 -3545 (|#1| |#1|)) (-15 -3556 ((-767) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -1692 ((-858) |#1|)) (-15 -3845 ((-112) |#1| |#1|)) (-15 -2533 (|#1|)) (-15 -2533 (|#1| (-640 |#2|))) (-15 -1582 (|#1|)) (-15 -1582 (|#1| (-640 |#2|))) (-15 -3834 (|#1| |#1| |#1|)) (-15 -3827 (|#1| |#1| |#1|)) (-15 -3827 (|#1| |#1| |#2|)) (-15 -3816 (|#1| |#1| |#1|)) (-15 -3804 ((-112) |#1| |#1|)) (-15 -2582 (|#1| |#1| |#1|)) (-15 -2582 (|#1| |#1| |#2|)) (-15 -2582 (|#1| |#2| |#1|)) (-15 -1706 (|#1| (-640 |#2|))) (-15 -1708 ((-767) |#2| |#1|)) (-15 -1708 ((-767) (-1 (-112) |#2|) |#1|)))
+((-1677 (((-112) $ $) 19)) (-3533 (($) 67 (|has| |#1| (-368)))) (-2582 (($ |#1| $) 82) (($ $ |#1|) 81) (($ $ $) 80)) (-3816 (($ $ $) 78)) (-3804 (((-112) $ $) 79)) (-3001 (((-112) $ (-767)) 8)) (-3750 (((-767)) 61 (|has| |#1| (-368)))) (-1582 (($ (-640 |#1|)) 74) (($) 73)) (-3678 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4408)))) (-2569 (($) 7 T CONST)) (-3814 (($ $) 58 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1691 (($ |#1| $) 47 (|has| $ (-6 -4408))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4408)))) (-1459 (($ |#1| $) 57 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4408)))) (-1690 (($) 64 (|has| |#1| (-368)))) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-3845 (((-112) $ $) 70)) (-2514 (((-112) $ (-767)) 9)) (-3088 ((|#1| $) 65 (|has| |#1| (-846)))) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1776 ((|#1| $) 66 (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-3990 (((-917) $) 63 (|has| |#1| (-368)))) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22)) (-3834 (($ $ $) 75)) (-2627 ((|#1| $) 39)) (-3867 (($ |#1| $) 40)) (-2552 (($ (-917)) 62 (|has| |#1| (-368)))) (-1693 (((-1113) $) 21)) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-2808 ((|#1| $) 41)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-3827 (($ $ |#1|) 77) (($ $ $) 76)) (-3863 (($) 49) (($ (-640 |#1|)) 48)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-2219 (((-536) $) 59 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 50)) (-3545 (($ $) 68 (|has| |#1| (-368)))) (-1692 (((-858) $) 18)) (-3556 (((-767) $) 69)) (-2533 (($ (-640 |#1|)) 72) (($) 71)) (-2820 (($ (-640 |#1|)) 42)) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20)) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-425 |#1|) (-140) (-1093)) (T -425))
-((-1663 (*1 *2 *1) (-12 (-4 *1 (-425 *3)) (-4 *3 (-1093)) (-5 *2 (-767)))) (-3085 (*1 *1 *1) (-12 (-4 *1 (-425 *2)) (-4 *2 (-1093)) (-4 *2 (-368)))) (-2941 (*1 *1) (-12 (-4 *1 (-425 *2)) (-4 *2 (-368)) (-4 *2 (-1093)))) (-1777 (*1 *2 *1) (-12 (-4 *1 (-425 *2)) (-4 *2 (-1093)) (-4 *2 (-846)))) (-3084 (*1 *2 *1) (-12 (-4 *1 (-425 *2)) (-4 *2 (-1093)) (-4 *2 (-846)))))
-(-13 (-229 |t#1|) (-1091 |t#1|) (-10 -8 (-6 -4407) (-15 -1663 ((-767) $)) (IF (|has| |t#1| (-368)) (PROGN (-6 (-368)) (-15 -3085 ($ $)) (-15 -2941 ($))) |%noBranch|) (IF (|has| |t#1| (-846)) (PROGN (-15 -1777 (|t#1| $)) (-15 -3084 (|t#1| $))) |%noBranch|)))
+((-3556 (*1 *2 *1) (-12 (-4 *1 (-425 *3)) (-4 *3 (-1093)) (-5 *2 (-767)))) (-3545 (*1 *1 *1) (-12 (-4 *1 (-425 *2)) (-4 *2 (-1093)) (-4 *2 (-368)))) (-3533 (*1 *1) (-12 (-4 *1 (-425 *2)) (-4 *2 (-368)) (-4 *2 (-1093)))) (-1776 (*1 *2 *1) (-12 (-4 *1 (-425 *2)) (-4 *2 (-1093)) (-4 *2 (-846)))) (-3088 (*1 *2 *1) (-12 (-4 *1 (-425 *2)) (-4 *2 (-1093)) (-4 *2 (-846)))))
+(-13 (-229 |t#1|) (-1091 |t#1|) (-10 -8 (-6 -4408) (-15 -3556 ((-767) $)) (IF (|has| |t#1| (-368)) (PROGN (-6 (-368)) (-15 -3545 ($ $)) (-15 -3533 ($))) |%noBranch|) (IF (|has| |t#1| (-846)) (PROGN (-15 -1776 (|t#1| $)) (-15 -3088 (|t#1| $))) |%noBranch|)))
(((-34) . T) ((-107 |#1|) . T) ((-102) . T) ((-610 (-858)) . T) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-229 |#1|) . T) ((-235 |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-368) |has| |#1| (-368)) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1091 |#1|) . T) ((-1093) . T) ((-1208) . T))
-((-1373 (((-584 |#2|) |#2| (-1169)) 35)) (-3216 (((-584 |#2|) |#2| (-1169)) 20)) (-2998 ((|#2| |#2| (-1169)) 25)))
-(((-426 |#1| |#2|) (-10 -7 (-15 -3216 ((-584 |#2|) |#2| (-1169))) (-15 -1373 ((-584 |#2|) |#2| (-1169))) (-15 -2998 (|#2| |#2| (-1169)))) (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-29 |#1|))) (T -426))
-((-2998 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-426 *4 *2)) (-4 *2 (-13 (-1193) (-29 *4))))) (-1373 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-584 *3)) (-5 *1 (-426 *5 *3)) (-4 *3 (-13 (-1193) (-29 *5))))) (-3216 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-584 *3)) (-5 *1 (-426 *5 *3)) (-4 *3 (-13 (-1193) (-29 *5))))))
-(-10 -7 (-15 -3216 ((-584 |#2|) |#2| (-1169))) (-15 -1373 ((-584 |#2|) |#2| (-1169))) (-15 -2998 (|#2| |#2| (-1169))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-3400 (((-3 $ "failed") $) NIL)) (-3827 (((-112) $) NIL)) (-2584 (($ |#2| |#1|) 35)) (-1664 (($ |#2| |#1|) 33)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-331 |#2|)) 25)) (-1675 (((-767)) NIL)) (-2241 (($) 10 T CONST)) (-2254 (($) 16 T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) 34)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 36) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-427 |#1| |#2|) (-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4394)) (IF (|has| |#1| (-6 -4394)) (-6 -4394) |%noBranch|) |%noBranch|) (-15 -1693 ($ |#1|)) (-15 -1693 ($ (-331 |#2|))) (-15 -2584 ($ |#2| |#1|)) (-15 -1664 ($ |#2| |#1|)))) (-13 (-172) (-38 (-407 (-563)))) (-13 (-846) (-21))) (T -427))
-((-1693 (*1 *1 *2) (-12 (-5 *1 (-427 *2 *3)) (-4 *2 (-13 (-172) (-38 (-407 (-563))))) (-4 *3 (-13 (-846) (-21))))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-331 *4)) (-4 *4 (-13 (-846) (-21))) (-5 *1 (-427 *3 *4)) (-4 *3 (-13 (-172) (-38 (-407 (-563))))))) (-2584 (*1 *1 *2 *3) (-12 (-5 *1 (-427 *3 *2)) (-4 *3 (-13 (-172) (-38 (-407 (-563))))) (-4 *2 (-13 (-846) (-21))))) (-1664 (*1 *1 *2 *3) (-12 (-5 *1 (-427 *3 *2)) (-4 *3 (-13 (-172) (-38 (-407 (-563))))) (-4 *2 (-13 (-846) (-21))))))
-(-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4394)) (IF (|has| |#1| (-6 -4394)) (-6 -4394) |%noBranch|) |%noBranch|) (-15 -1693 ($ |#1|)) (-15 -1693 ($ (-331 |#2|))) (-15 -2584 ($ |#2| |#1|)) (-15 -1664 ($ |#2| |#1|))))
-((-3698 (((-3 |#2| (-640 |#2|)) |#2| (-1169)) 108)))
-(((-428 |#1| |#2|) (-10 -7 (-15 -3698 ((-3 |#2| (-640 |#2|)) |#2| (-1169)))) (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-955) (-29 |#1|))) (T -428))
-((-3698 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 *3 (-640 *3))) (-5 *1 (-428 *5 *3)) (-4 *3 (-13 (-1193) (-955) (-29 *5))))))
-(-10 -7 (-15 -3698 ((-3 |#2| (-640 |#2|)) |#2| (-1169))))
-((-2606 (((-640 (-1169)) $) 72)) (-2139 (((-407 (-1165 $)) $ (-609 $)) 273)) (-4132 (($ $ (-294 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-640 (-609 $)) (-640 $)) 237)) (-2131 (((-3 (-609 $) "failed") $) NIL) (((-3 (-1169) "failed") $) 75) (((-3 (-563) "failed") $) NIL) (((-3 |#2| "failed") $) 233) (((-3 (-407 (-948 |#2|)) "failed") $) 324) (((-3 (-948 |#2|) "failed") $) 235) (((-3 (-407 (-563)) "failed") $) NIL)) (-2058 (((-609 $) $) NIL) (((-1169) $) 30) (((-563) $) NIL) ((|#2| $) 231) (((-407 (-948 |#2|)) $) 305) (((-948 |#2|) $) 232) (((-407 (-563)) $) NIL)) (-2361 (((-114) (-114)) 47)) (-2711 (($ $) 87)) (-2875 (((-3 (-609 $) "failed") $) 228)) (-2127 (((-640 (-609 $)) $) 229)) (-3733 (((-3 (-640 $) "failed") $) 247)) (-1848 (((-3 (-2 (|:| |val| $) (|:| -1654 (-563))) "failed") $) 254)) (-2919 (((-3 (-640 $) "failed") $) 245)) (-4298 (((-3 (-2 (|:| -2311 (-563)) (|:| |var| (-609 $))) "failed") $) 264)) (-4086 (((-3 (-2 (|:| |var| (-609 $)) (|:| -1654 (-563))) "failed") $) 251) (((-3 (-2 (|:| |var| (-609 $)) (|:| -1654 (-563))) "failed") $ (-114)) 217) (((-3 (-2 (|:| |var| (-609 $)) (|:| -1654 (-563))) "failed") $ (-1169)) 219)) (-2696 (((-112) $) 19)) (-2706 ((|#2| $) 21)) (-1540 (($ $ (-609 $) $) NIL) (($ $ (-640 (-609 $)) (-640 $)) 236) (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) 96) (($ $ (-1169) (-1 $ (-640 $))) NIL) (($ $ (-1169) (-1 $ $)) NIL) (($ $ (-640 (-114)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-114) (-1 $ (-640 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1169)) 57) (($ $ (-640 (-1169))) 240) (($ $) 241) (($ $ (-114) $ (-1169)) 60) (($ $ (-640 (-114)) (-640 $) (-1169)) 67) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ $))) 107) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ (-640 $)))) 242) (($ $ (-1169) (-767) (-1 $ (-640 $))) 94) (($ $ (-1169) (-767) (-1 $ $)) 93)) (-2309 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-640 $)) 106)) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) 238)) (-1801 (($ $) 284)) (-2220 (((-888 (-563)) $) 257) (((-888 (-379)) $) 261) (($ (-418 $)) 320) (((-536) $) NIL)) (-1693 (((-858) $) 239) (($ (-609 $)) 84) (($ (-1169)) 26) (($ |#2|) NIL) (($ (-1118 |#2| (-609 $))) NIL) (($ (-407 |#2|)) 289) (($ (-948 (-407 |#2|))) 329) (($ (-407 (-948 (-407 |#2|)))) 301) (($ (-407 (-948 |#2|))) 295) (($ $) NIL) (($ (-948 |#2|)) 185) (($ (-407 (-563))) 334) (($ (-563)) NIL)) (-1675 (((-767)) 79)) (-3734 (((-112) (-114)) 41)) (-1895 (($ (-1169) $) 33) (($ (-1169) $ $) 34) (($ (-1169) $ $ $) 35) (($ (-1169) $ $ $ $) 36) (($ (-1169) (-640 $)) 39)) (* (($ (-407 (-563)) $) NIL) (($ $ (-407 (-563))) NIL) (($ |#2| $) 266) (($ $ |#2|) NIL) (($ $ $) NIL) (($ (-563) $) NIL) (($ (-767) $) NIL) (($ (-917) $) NIL)))
-(((-429 |#1| |#2|) (-10 -8 (-15 * (|#1| (-917) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1693 (|#1| (-563))) (-15 -1675 ((-767))) (-15 -1693 (|#1| (-407 (-563)))) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -1693 (|#1| (-948 |#2|))) (-15 -2131 ((-3 (-948 |#2|) "failed") |#1|)) (-15 -2058 ((-948 |#2|) |#1|)) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -1693 (|#1| |#1|)) (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -1693 (|#1| (-407 (-948 |#2|)))) (-15 -2131 ((-3 (-407 (-948 |#2|)) "failed") |#1|)) (-15 -2058 ((-407 (-948 |#2|)) |#1|)) (-15 -2139 ((-407 (-1165 |#1|)) |#1| (-609 |#1|))) (-15 -1693 (|#1| (-407 (-948 (-407 |#2|))))) (-15 -1693 (|#1| (-948 (-407 |#2|)))) (-15 -1693 (|#1| (-407 |#2|))) (-15 -1801 (|#1| |#1|)) (-15 -2220 (|#1| (-418 |#1|))) (-15 -1540 (|#1| |#1| (-1169) (-767) (-1 |#1| |#1|))) (-15 -1540 (|#1| |#1| (-1169) (-767) (-1 |#1| (-640 |#1|)))) (-15 -1540 (|#1| |#1| (-640 (-1169)) (-640 (-767)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1540 (|#1| |#1| (-640 (-1169)) (-640 (-767)) (-640 (-1 |#1| |#1|)))) (-15 -1848 ((-3 (-2 (|:| |val| |#1|) (|:| -1654 (-563))) "failed") |#1|)) (-15 -4086 ((-3 (-2 (|:| |var| (-609 |#1|)) (|:| -1654 (-563))) "failed") |#1| (-1169))) (-15 -4086 ((-3 (-2 (|:| |var| (-609 |#1|)) (|:| -1654 (-563))) "failed") |#1| (-114))) (-15 -2711 (|#1| |#1|)) (-15 -1693 (|#1| (-1118 |#2| (-609 |#1|)))) (-15 -4298 ((-3 (-2 (|:| -2311 (-563)) (|:| |var| (-609 |#1|))) "failed") |#1|)) (-15 -2919 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -4086 ((-3 (-2 (|:| |var| (-609 |#1|)) (|:| -1654 (-563))) "failed") |#1|)) (-15 -3733 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -1540 (|#1| |#1| (-640 (-114)) (-640 |#1|) (-1169))) (-15 -1540 (|#1| |#1| (-114) |#1| (-1169))) (-15 -1540 (|#1| |#1|)) (-15 -1540 (|#1| |#1| (-640 (-1169)))) (-15 -1540 (|#1| |#1| (-1169))) (-15 -1895 (|#1| (-1169) (-640 |#1|))) (-15 -1895 (|#1| (-1169) |#1| |#1| |#1| |#1|)) (-15 -1895 (|#1| (-1169) |#1| |#1| |#1|)) (-15 -1895 (|#1| (-1169) |#1| |#1|)) (-15 -1895 (|#1| (-1169) |#1|)) (-15 -2606 ((-640 (-1169)) |#1|)) (-15 -2706 (|#2| |#1|)) (-15 -2696 ((-112) |#1|)) (-15 -1693 (|#1| |#2|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2220 ((-888 (-379)) |#1|)) (-15 -2220 ((-888 (-563)) |#1|)) (-15 -1693 (|#1| (-1169))) (-15 -2131 ((-3 (-1169) "failed") |#1|)) (-15 -2058 ((-1169) |#1|)) (-15 -1540 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1540 (|#1| |#1| (-114) (-1 |#1| (-640 |#1|)))) (-15 -1540 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1540 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| |#1|)))) (-15 -1540 (|#1| |#1| (-1169) (-1 |#1| |#1|))) (-15 -1540 (|#1| |#1| (-1169) (-1 |#1| (-640 |#1|)))) (-15 -1540 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1540 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| |#1|)))) (-15 -3734 ((-112) (-114))) (-15 -2361 ((-114) (-114))) (-15 -2127 ((-640 (-609 |#1|)) |#1|)) (-15 -2875 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -4132 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -4132 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -4132 (|#1| |#1| (-294 |#1|))) (-15 -2309 (|#1| (-114) (-640 |#1|))) (-15 -2309 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2309 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2309 (|#1| (-114) |#1| |#1|)) (-15 -2309 (|#1| (-114) |#1|)) (-15 -1540 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#1| |#1|)) (-15 -1540 (|#1| |#1| (-294 |#1|))) (-15 -1540 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -1540 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -1540 (|#1| |#1| (-609 |#1|) |#1|)) (-15 -1693 (|#1| (-609 |#1|))) (-15 -2131 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -2058 ((-609 |#1|) |#1|)) (-15 -1693 ((-858) |#1|))) (-430 |#2|) (-846)) (T -429))
-((-2361 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *4 (-846)) (-5 *1 (-429 *3 *4)) (-4 *3 (-430 *4)))) (-3734 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-429 *4 *5)) (-4 *4 (-430 *5)))) (-1675 (*1 *2) (-12 (-4 *4 (-846)) (-5 *2 (-767)) (-5 *1 (-429 *3 *4)) (-4 *3 (-430 *4)))))
-(-10 -8 (-15 * (|#1| (-917) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1693 (|#1| (-563))) (-15 -1675 ((-767))) (-15 -1693 (|#1| (-407 (-563)))) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -1693 (|#1| (-948 |#2|))) (-15 -2131 ((-3 (-948 |#2|) "failed") |#1|)) (-15 -2058 ((-948 |#2|) |#1|)) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -1693 (|#1| |#1|)) (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -1693 (|#1| (-407 (-948 |#2|)))) (-15 -2131 ((-3 (-407 (-948 |#2|)) "failed") |#1|)) (-15 -2058 ((-407 (-948 |#2|)) |#1|)) (-15 -2139 ((-407 (-1165 |#1|)) |#1| (-609 |#1|))) (-15 -1693 (|#1| (-407 (-948 (-407 |#2|))))) (-15 -1693 (|#1| (-948 (-407 |#2|)))) (-15 -1693 (|#1| (-407 |#2|))) (-15 -1801 (|#1| |#1|)) (-15 -2220 (|#1| (-418 |#1|))) (-15 -1540 (|#1| |#1| (-1169) (-767) (-1 |#1| |#1|))) (-15 -1540 (|#1| |#1| (-1169) (-767) (-1 |#1| (-640 |#1|)))) (-15 -1540 (|#1| |#1| (-640 (-1169)) (-640 (-767)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1540 (|#1| |#1| (-640 (-1169)) (-640 (-767)) (-640 (-1 |#1| |#1|)))) (-15 -1848 ((-3 (-2 (|:| |val| |#1|) (|:| -1654 (-563))) "failed") |#1|)) (-15 -4086 ((-3 (-2 (|:| |var| (-609 |#1|)) (|:| -1654 (-563))) "failed") |#1| (-1169))) (-15 -4086 ((-3 (-2 (|:| |var| (-609 |#1|)) (|:| -1654 (-563))) "failed") |#1| (-114))) (-15 -2711 (|#1| |#1|)) (-15 -1693 (|#1| (-1118 |#2| (-609 |#1|)))) (-15 -4298 ((-3 (-2 (|:| -2311 (-563)) (|:| |var| (-609 |#1|))) "failed") |#1|)) (-15 -2919 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -4086 ((-3 (-2 (|:| |var| (-609 |#1|)) (|:| -1654 (-563))) "failed") |#1|)) (-15 -3733 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -1540 (|#1| |#1| (-640 (-114)) (-640 |#1|) (-1169))) (-15 -1540 (|#1| |#1| (-114) |#1| (-1169))) (-15 -1540 (|#1| |#1|)) (-15 -1540 (|#1| |#1| (-640 (-1169)))) (-15 -1540 (|#1| |#1| (-1169))) (-15 -1895 (|#1| (-1169) (-640 |#1|))) (-15 -1895 (|#1| (-1169) |#1| |#1| |#1| |#1|)) (-15 -1895 (|#1| (-1169) |#1| |#1| |#1|)) (-15 -1895 (|#1| (-1169) |#1| |#1|)) (-15 -1895 (|#1| (-1169) |#1|)) (-15 -2606 ((-640 (-1169)) |#1|)) (-15 -2706 (|#2| |#1|)) (-15 -2696 ((-112) |#1|)) (-15 -1693 (|#1| |#2|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2220 ((-888 (-379)) |#1|)) (-15 -2220 ((-888 (-563)) |#1|)) (-15 -1693 (|#1| (-1169))) (-15 -2131 ((-3 (-1169) "failed") |#1|)) (-15 -2058 ((-1169) |#1|)) (-15 -1540 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1540 (|#1| |#1| (-114) (-1 |#1| (-640 |#1|)))) (-15 -1540 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1540 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| |#1|)))) (-15 -1540 (|#1| |#1| (-1169) (-1 |#1| |#1|))) (-15 -1540 (|#1| |#1| (-1169) (-1 |#1| (-640 |#1|)))) (-15 -1540 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1540 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| |#1|)))) (-15 -3734 ((-112) (-114))) (-15 -2361 ((-114) (-114))) (-15 -2127 ((-640 (-609 |#1|)) |#1|)) (-15 -2875 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -4132 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -4132 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -4132 (|#1| |#1| (-294 |#1|))) (-15 -2309 (|#1| (-114) (-640 |#1|))) (-15 -2309 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2309 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2309 (|#1| (-114) |#1| |#1|)) (-15 -2309 (|#1| (-114) |#1|)) (-15 -1540 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#1| |#1|)) (-15 -1540 (|#1| |#1| (-294 |#1|))) (-15 -1540 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -1540 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -1540 (|#1| |#1| (-609 |#1|) |#1|)) (-15 -1693 (|#1| (-609 |#1|))) (-15 -2131 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -2058 ((-609 |#1|) |#1|)) (-15 -1693 ((-858) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 114 (|has| |#1| (-25)))) (-2606 (((-640 (-1169)) $) 201)) (-2139 (((-407 (-1165 $)) $ (-609 $)) 169 (|has| |#1| (-555)))) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 141 (|has| |#1| (-555)))) (-4223 (($ $) 142 (|has| |#1| (-555)))) (-3156 (((-112) $) 144 (|has| |#1| (-555)))) (-2059 (((-640 (-609 $)) $) 44)) (-1495 (((-3 $ "failed") $ $) 116 (|has| |#1| (-21)))) (-4132 (($ $ (-294 $)) 56) (($ $ (-640 (-294 $))) 55) (($ $ (-640 (-609 $)) (-640 $)) 54)) (-4335 (($ $) 161 (|has| |#1| (-555)))) (-3205 (((-418 $) $) 162 (|has| |#1| (-555)))) (-1919 (((-112) $ $) 152 (|has| |#1| (-555)))) (-4239 (($) 102 (-4032 (|has| |#1| (-1105)) (|has| |#1| (-25))) CONST)) (-2131 (((-3 (-609 $) "failed") $) 69) (((-3 (-1169) "failed") $) 214) (((-3 (-563) "failed") $) 208 (|has| |#1| (-1034 (-563)))) (((-3 |#1| "failed") $) 205) (((-3 (-407 (-948 |#1|)) "failed") $) 167 (|has| |#1| (-555))) (((-3 (-948 |#1|) "failed") $) 121 (|has| |#1| (-1045))) (((-3 (-407 (-563)) "failed") $) 96 (-4032 (-12 (|has| |#1| (-1034 (-563))) (|has| |#1| (-555))) (|has| |#1| (-1034 (-407 (-563))))))) (-2058 (((-609 $) $) 70) (((-1169) $) 215) (((-563) $) 207 (|has| |#1| (-1034 (-563)))) ((|#1| $) 206) (((-407 (-948 |#1|)) $) 168 (|has| |#1| (-555))) (((-948 |#1|) $) 122 (|has| |#1| (-1045))) (((-407 (-563)) $) 97 (-4032 (-12 (|has| |#1| (-1034 (-563))) (|has| |#1| (-555))) (|has| |#1| (-1034 (-407 (-563))))))) (-3090 (($ $ $) 156 (|has| |#1| (-555)))) (-2950 (((-684 (-563)) (-684 $)) 135 (-2190 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 134 (-2190 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 133 (|has| |#1| (-1045))) (((-684 |#1|) (-684 $)) 132 (|has| |#1| (-1045)))) (-3400 (((-3 $ "failed") $) 104 (|has| |#1| (-1105)))) (-3050 (($ $ $) 155 (|has| |#1| (-555)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 150 (|has| |#1| (-555)))) (-2468 (((-112) $) 163 (|has| |#1| (-555)))) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 210 (|has| |#1| (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 209 (|has| |#1| (-882 (-379))))) (-3968 (($ $) 51) (($ (-640 $)) 50)) (-3804 (((-640 (-114)) $) 43)) (-2361 (((-114) (-114)) 42)) (-3827 (((-112) $) 103 (|has| |#1| (-1105)))) (-3131 (((-112) $) 22 (|has| $ (-1034 (-563))))) (-2711 (($ $) 184 (|has| |#1| (-1045)))) (-2143 (((-1118 |#1| (-609 $)) $) 185 (|has| |#1| (-1045)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 159 (|has| |#1| (-555)))) (-3180 (((-1165 $) (-609 $)) 25 (|has| $ (-1045)))) (-3084 (($ $ $) 13)) (-1777 (($ $ $) 14)) (-2240 (($ (-1 $ $) (-609 $)) 36)) (-2875 (((-3 (-609 $) "failed") $) 46)) (-3513 (($ (-640 $)) 148 (|has| |#1| (-555))) (($ $ $) 147 (|has| |#1| (-555)))) (-3573 (((-1151) $) 9)) (-2127 (((-640 (-609 $)) $) 45)) (-2227 (($ (-114) $) 38) (($ (-114) (-640 $)) 37)) (-3733 (((-3 (-640 $) "failed") $) 190 (|has| |#1| (-1105)))) (-1848 (((-3 (-2 (|:| |val| $) (|:| -1654 (-563))) "failed") $) 181 (|has| |#1| (-1045)))) (-2919 (((-3 (-640 $) "failed") $) 188 (|has| |#1| (-25)))) (-4298 (((-3 (-2 (|:| -2311 (-563)) (|:| |var| (-609 $))) "failed") $) 187 (|has| |#1| (-25)))) (-4086 (((-3 (-2 (|:| |var| (-609 $)) (|:| -1654 (-563))) "failed") $) 189 (|has| |#1| (-1105))) (((-3 (-2 (|:| |var| (-609 $)) (|:| -1654 (-563))) "failed") $ (-114)) 183 (|has| |#1| (-1045))) (((-3 (-2 (|:| |var| (-609 $)) (|:| -1654 (-563))) "failed") $ (-1169)) 182 (|has| |#1| (-1045)))) (-2799 (((-112) $ (-114)) 40) (((-112) $ (-1169)) 39)) (-2688 (($ $) 106 (-4032 (|has| |#1| (-473)) (|has| |#1| (-555))))) (-4236 (((-767) $) 47)) (-1694 (((-1113) $) 10)) (-2696 (((-112) $) 203)) (-2706 ((|#1| $) 202)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 149 (|has| |#1| (-555)))) (-3548 (($ (-640 $)) 146 (|has| |#1| (-555))) (($ $ $) 145 (|has| |#1| (-555)))) (-1372 (((-112) $ $) 35) (((-112) $ (-1169)) 34)) (-2174 (((-418 $) $) 160 (|has| |#1| (-555)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 158 (|has| |#1| (-555))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 157 (|has| |#1| (-555)))) (-3008 (((-3 $ "failed") $ $) 140 (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 151 (|has| |#1| (-555)))) (-2359 (((-112) $) 23 (|has| $ (-1034 (-563))))) (-1540 (($ $ (-609 $) $) 67) (($ $ (-640 (-609 $)) (-640 $)) 66) (($ $ (-640 (-294 $))) 65) (($ $ (-294 $)) 64) (($ $ $ $) 63) (($ $ (-640 $) (-640 $)) 62) (($ $ (-640 (-1169)) (-640 (-1 $ $))) 33) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) 32) (($ $ (-1169) (-1 $ (-640 $))) 31) (($ $ (-1169) (-1 $ $)) 30) (($ $ (-640 (-114)) (-640 (-1 $ $))) 29) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) 28) (($ $ (-114) (-1 $ (-640 $))) 27) (($ $ (-114) (-1 $ $)) 26) (($ $ (-1169)) 195 (|has| |#1| (-611 (-536)))) (($ $ (-640 (-1169))) 194 (|has| |#1| (-611 (-536)))) (($ $) 193 (|has| |#1| (-611 (-536)))) (($ $ (-114) $ (-1169)) 192 (|has| |#1| (-611 (-536)))) (($ $ (-640 (-114)) (-640 $) (-1169)) 191 (|has| |#1| (-611 (-536)))) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ $))) 180 (|has| |#1| (-1045))) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ (-640 $)))) 179 (|has| |#1| (-1045))) (($ $ (-1169) (-767) (-1 $ (-640 $))) 178 (|has| |#1| (-1045))) (($ $ (-1169) (-767) (-1 $ $)) 177 (|has| |#1| (-1045)))) (-2628 (((-767) $) 153 (|has| |#1| (-555)))) (-2309 (($ (-114) $) 61) (($ (-114) $ $) 60) (($ (-114) $ $ $) 59) (($ (-114) $ $ $ $) 58) (($ (-114) (-640 $)) 57)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 154 (|has| |#1| (-555)))) (-3071 (($ $) 49) (($ $ $) 48)) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) 126 (|has| |#1| (-1045))) (($ $ (-1169) (-767)) 125 (|has| |#1| (-1045))) (($ $ (-640 (-1169))) 124 (|has| |#1| (-1045))) (($ $ (-1169)) 123 (|has| |#1| (-1045)))) (-1801 (($ $) 174 (|has| |#1| (-555)))) (-2154 (((-1118 |#1| (-609 $)) $) 175 (|has| |#1| (-555)))) (-3390 (($ $) 24 (|has| $ (-1045)))) (-2220 (((-888 (-563)) $) 212 (|has| |#1| (-611 (-888 (-563))))) (((-888 (-379)) $) 211 (|has| |#1| (-611 (-888 (-379))))) (($ (-418 $)) 176 (|has| |#1| (-555))) (((-536) $) 98 (|has| |#1| (-611 (-536))))) (-4339 (($ $ $) 109 (|has| |#1| (-473)))) (-2146 (($ $ $) 110 (|has| |#1| (-473)))) (-1693 (((-858) $) 11) (($ (-609 $)) 68) (($ (-1169)) 213) (($ |#1|) 204) (($ (-1118 |#1| (-609 $))) 186 (|has| |#1| (-1045))) (($ (-407 |#1|)) 172 (|has| |#1| (-555))) (($ (-948 (-407 |#1|))) 171 (|has| |#1| (-555))) (($ (-407 (-948 (-407 |#1|)))) 170 (|has| |#1| (-555))) (($ (-407 (-948 |#1|))) 166 (|has| |#1| (-555))) (($ $) 139 (|has| |#1| (-555))) (($ (-948 |#1|)) 120 (|has| |#1| (-1045))) (($ (-407 (-563))) 95 (-4032 (|has| |#1| (-555)) (-12 (|has| |#1| (-1034 (-563))) (|has| |#1| (-555))) (|has| |#1| (-1034 (-407 (-563)))))) (($ (-563)) 94 (-4032 (|has| |#1| (-1045)) (|has| |#1| (-1034 (-563)))))) (-2779 (((-3 $ "failed") $) 136 (|has| |#1| (-145)))) (-1675 (((-767)) 131 (|has| |#1| (-1045)))) (-3079 (($ $) 53) (($ (-640 $)) 52)) (-3734 (((-112) (-114)) 41)) (-2126 (((-112) $ $) 143 (|has| |#1| (-555)))) (-1895 (($ (-1169) $) 200) (($ (-1169) $ $) 199) (($ (-1169) $ $ $) 198) (($ (-1169) $ $ $ $) 197) (($ (-1169) (-640 $)) 196)) (-2241 (($) 113 (|has| |#1| (-25)) CONST)) (-2254 (($) 101 (|has| |#1| (-1105)) CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) 130 (|has| |#1| (-1045))) (($ $ (-1169) (-767)) 129 (|has| |#1| (-1045))) (($ $ (-640 (-1169))) 128 (|has| |#1| (-1045))) (($ $ (-1169)) 127 (|has| |#1| (-1045)))) (-1778 (((-112) $ $) 16)) (-1756 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 15)) (-1744 (((-112) $ $) 18)) (-1837 (($ (-1118 |#1| (-609 $)) (-1118 |#1| (-609 $))) 173 (|has| |#1| (-555))) (($ $ $) 107 (-4032 (|has| |#1| (-473)) (|has| |#1| (-555))))) (-1826 (($ $ $) 118 (|has| |#1| (-21))) (($ $) 117 (|has| |#1| (-21)))) (-1814 (($ $ $) 111 (|has| |#1| (-25)))) (** (($ $ (-563)) 108 (-4032 (|has| |#1| (-473)) (|has| |#1| (-555)))) (($ $ (-767)) 105 (|has| |#1| (-1105))) (($ $ (-917)) 100 (|has| |#1| (-1105)))) (* (($ (-407 (-563)) $) 165 (|has| |#1| (-555))) (($ $ (-407 (-563))) 164 (|has| |#1| (-555))) (($ |#1| $) 138 (|has| |#1| (-172))) (($ $ |#1|) 137 (|has| |#1| (-172))) (($ (-563) $) 119 (|has| |#1| (-21))) (($ (-767) $) 115 (|has| |#1| (-25))) (($ (-917) $) 112 (|has| |#1| (-25))) (($ $ $) 99 (|has| |#1| (-1105)))))
+((-3571 (((-584 |#2|) |#2| (-1169)) 35)) (-3679 (((-584 |#2|) |#2| (-1169)) 20)) (-2933 ((|#2| |#2| (-1169)) 25)))
+(((-426 |#1| |#2|) (-10 -7 (-15 -3679 ((-584 |#2|) |#2| (-1169))) (-15 -3571 ((-584 |#2|) |#2| (-1169))) (-15 -2933 (|#2| |#2| (-1169)))) (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-29 |#1|))) (T -426))
+((-2933 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-426 *4 *2)) (-4 *2 (-13 (-1193) (-29 *4))))) (-3571 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-584 *3)) (-5 *1 (-426 *5 *3)) (-4 *3 (-13 (-1193) (-29 *5))))) (-3679 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-584 *3)) (-5 *1 (-426 *5 *3)) (-4 *3 (-13 (-1193) (-29 *5))))))
+(-10 -7 (-15 -3679 ((-584 |#2|) |#2| (-1169))) (-15 -3571 ((-584 |#2|) |#2| (-1169))) (-15 -2933 (|#2| |#2| (-1169))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-3951 (((-3 $ "failed") $) NIL)) (-3401 (((-112) $) NIL)) (-3592 (($ |#2| |#1|) 35)) (-3582 (($ |#2| |#1|) 33)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-331 |#2|)) 25)) (-3914 (((-767)) NIL)) (-2239 (($) 10 T CONST)) (-2253 (($) 16 T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) 34)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 36) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-427 |#1| |#2|) (-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4395)) (IF (|has| |#1| (-6 -4395)) (-6 -4395) |%noBranch|) |%noBranch|) (-15 -1692 ($ |#1|)) (-15 -1692 ($ (-331 |#2|))) (-15 -3592 ($ |#2| |#1|)) (-15 -3582 ($ |#2| |#1|)))) (-13 (-172) (-38 (-407 (-563)))) (-13 (-846) (-21))) (T -427))
+((-1692 (*1 *1 *2) (-12 (-5 *1 (-427 *2 *3)) (-4 *2 (-13 (-172) (-38 (-407 (-563))))) (-4 *3 (-13 (-846) (-21))))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-331 *4)) (-4 *4 (-13 (-846) (-21))) (-5 *1 (-427 *3 *4)) (-4 *3 (-13 (-172) (-38 (-407 (-563))))))) (-3592 (*1 *1 *2 *3) (-12 (-5 *1 (-427 *3 *2)) (-4 *3 (-13 (-172) (-38 (-407 (-563))))) (-4 *2 (-13 (-846) (-21))))) (-3582 (*1 *1 *2 *3) (-12 (-5 *1 (-427 *3 *2)) (-4 *3 (-13 (-172) (-38 (-407 (-563))))) (-4 *2 (-13 (-846) (-21))))))
+(-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4395)) (IF (|has| |#1| (-6 -4395)) (-6 -4395) |%noBranch|) |%noBranch|) (-15 -1692 ($ |#1|)) (-15 -1692 ($ (-331 |#2|))) (-15 -3592 ($ |#2| |#1|)) (-15 -3582 ($ |#2| |#1|))))
+((-2062 (((-3 |#2| (-640 |#2|)) |#2| (-1169)) 108)))
+(((-428 |#1| |#2|) (-10 -7 (-15 -2062 ((-3 |#2| (-640 |#2|)) |#2| (-1169)))) (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-955) (-29 |#1|))) (T -428))
+((-2062 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 *3 (-640 *3))) (-5 *1 (-428 *5 *3)) (-4 *3 (-13 (-1193) (-955) (-29 *5))))))
+(-10 -7 (-15 -2062 ((-3 |#2| (-640 |#2|)) |#2| (-1169))))
+((-2605 (((-640 (-1169)) $) 72)) (-2138 (((-407 (-1165 $)) $ (-609 $)) 273)) (-4135 (($ $ (-294 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-640 (-609 $)) (-640 $)) 237)) (-2130 (((-3 (-609 $) "failed") $) NIL) (((-3 (-1169) "failed") $) 75) (((-3 (-563) "failed") $) NIL) (((-3 |#2| "failed") $) 233) (((-3 (-407 (-948 |#2|)) "failed") $) 323) (((-3 (-948 |#2|) "failed") $) 235) (((-3 (-407 (-563)) "failed") $) NIL)) (-2057 (((-609 $) $) NIL) (((-1169) $) 30) (((-563) $) NIL) ((|#2| $) 231) (((-407 (-948 |#2|)) $) 305) (((-948 |#2|) $) 232) (((-407 (-563)) $) NIL)) (-2559 (((-114) (-114)) 47)) (-2043 (($ $) 87)) (-2751 (((-3 (-609 $) "failed") $) 228)) (-2126 (((-640 (-609 $)) $) 229)) (-3939 (((-3 (-640 $) "failed") $) 247)) (-3959 (((-3 (-2 (|:| |val| $) (|:| -3311 (-563))) "failed") $) 254)) (-3930 (((-3 (-640 $) "failed") $) 245)) (-3479 (((-3 (-2 (|:| -2310 (-563)) (|:| |var| (-609 $))) "failed") $) 264)) (-3949 (((-3 (-2 (|:| |var| (-609 $)) (|:| -3311 (-563))) "failed") $) 251) (((-3 (-2 (|:| |var| (-609 $)) (|:| -3311 (-563))) "failed") $ (-114)) 217) (((-3 (-2 (|:| |var| (-609 $)) (|:| -3311 (-563))) "failed") $ (-1169)) 219)) (-2695 (((-112) $) 19)) (-2705 ((|#2| $) 21)) (-1542 (($ $ (-609 $) $) NIL) (($ $ (-640 (-609 $)) (-640 $)) 236) (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) 96) (($ $ (-1169) (-1 $ (-640 $))) NIL) (($ $ (-1169) (-1 $ $)) NIL) (($ $ (-640 (-114)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-114) (-1 $ (-640 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1169)) 57) (($ $ (-640 (-1169))) 240) (($ $) 241) (($ $ (-114) $ (-1169)) 60) (($ $ (-640 (-114)) (-640 $) (-1169)) 67) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ $))) 107) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ (-640 $)))) 242) (($ $ (-1169) (-767) (-1 $ (-640 $))) 94) (($ $ (-1169) (-767) (-1 $ $)) 93)) (-2308 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-640 $)) 106)) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) 238)) (-2033 (($ $) 284)) (-2219 (((-888 (-563)) $) 257) (((-888 (-379)) $) 261) (($ (-418 $)) 319) (((-536) $) NIL)) (-1692 (((-858) $) 239) (($ (-609 $)) 84) (($ (-1169)) 26) (($ |#2|) NIL) (($ (-1118 |#2| (-609 $))) NIL) (($ (-407 |#2|)) 289) (($ (-948 (-407 |#2|))) 328) (($ (-407 (-948 (-407 |#2|)))) 301) (($ (-407 (-948 |#2|))) 295) (($ $) NIL) (($ (-948 |#2|)) 185) (($ (-407 (-563))) 333) (($ (-563)) NIL)) (-3914 (((-767)) 79)) (-2512 (((-112) (-114)) 41)) (-1894 (($ (-1169) $) 33) (($ (-1169) $ $) 34) (($ (-1169) $ $ $) 35) (($ (-1169) $ $ $ $) 36) (($ (-1169) (-640 $)) 39)) (* (($ (-407 (-563)) $) NIL) (($ $ (-407 (-563))) NIL) (($ |#2| $) 266) (($ $ |#2|) NIL) (($ $ $) NIL) (($ (-563) $) NIL) (($ (-767) $) NIL) (($ (-917) $) NIL)))
+(((-429 |#1| |#2|) (-10 -8 (-15 * (|#1| (-917) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1692 (|#1| (-563))) (-15 -3914 ((-767))) (-15 -1692 (|#1| (-407 (-563)))) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -1692 (|#1| (-948 |#2|))) (-15 -2130 ((-3 (-948 |#2|) "failed") |#1|)) (-15 -2057 ((-948 |#2|) |#1|)) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -1692 (|#1| |#1|)) (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -1692 (|#1| (-407 (-948 |#2|)))) (-15 -2130 ((-3 (-407 (-948 |#2|)) "failed") |#1|)) (-15 -2057 ((-407 (-948 |#2|)) |#1|)) (-15 -2138 ((-407 (-1165 |#1|)) |#1| (-609 |#1|))) (-15 -1692 (|#1| (-407 (-948 (-407 |#2|))))) (-15 -1692 (|#1| (-948 (-407 |#2|)))) (-15 -1692 (|#1| (-407 |#2|))) (-15 -2033 (|#1| |#1|)) (-15 -2219 (|#1| (-418 |#1|))) (-15 -1542 (|#1| |#1| (-1169) (-767) (-1 |#1| |#1|))) (-15 -1542 (|#1| |#1| (-1169) (-767) (-1 |#1| (-640 |#1|)))) (-15 -1542 (|#1| |#1| (-640 (-1169)) (-640 (-767)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1542 (|#1| |#1| (-640 (-1169)) (-640 (-767)) (-640 (-1 |#1| |#1|)))) (-15 -3959 ((-3 (-2 (|:| |val| |#1|) (|:| -3311 (-563))) "failed") |#1|)) (-15 -3949 ((-3 (-2 (|:| |var| (-609 |#1|)) (|:| -3311 (-563))) "failed") |#1| (-1169))) (-15 -3949 ((-3 (-2 (|:| |var| (-609 |#1|)) (|:| -3311 (-563))) "failed") |#1| (-114))) (-15 -2043 (|#1| |#1|)) (-15 -1692 (|#1| (-1118 |#2| (-609 |#1|)))) (-15 -3479 ((-3 (-2 (|:| -2310 (-563)) (|:| |var| (-609 |#1|))) "failed") |#1|)) (-15 -3930 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -3949 ((-3 (-2 (|:| |var| (-609 |#1|)) (|:| -3311 (-563))) "failed") |#1|)) (-15 -3939 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -1542 (|#1| |#1| (-640 (-114)) (-640 |#1|) (-1169))) (-15 -1542 (|#1| |#1| (-114) |#1| (-1169))) (-15 -1542 (|#1| |#1|)) (-15 -1542 (|#1| |#1| (-640 (-1169)))) (-15 -1542 (|#1| |#1| (-1169))) (-15 -1894 (|#1| (-1169) (-640 |#1|))) (-15 -1894 (|#1| (-1169) |#1| |#1| |#1| |#1|)) (-15 -1894 (|#1| (-1169) |#1| |#1| |#1|)) (-15 -1894 (|#1| (-1169) |#1| |#1|)) (-15 -1894 (|#1| (-1169) |#1|)) (-15 -2605 ((-640 (-1169)) |#1|)) (-15 -2705 (|#2| |#1|)) (-15 -2695 ((-112) |#1|)) (-15 -1692 (|#1| |#2|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2219 ((-888 (-379)) |#1|)) (-15 -2219 ((-888 (-563)) |#1|)) (-15 -1692 (|#1| (-1169))) (-15 -2130 ((-3 (-1169) "failed") |#1|)) (-15 -2057 ((-1169) |#1|)) (-15 -1542 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1542 (|#1| |#1| (-114) (-1 |#1| (-640 |#1|)))) (-15 -1542 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1542 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| |#1|)))) (-15 -1542 (|#1| |#1| (-1169) (-1 |#1| |#1|))) (-15 -1542 (|#1| |#1| (-1169) (-1 |#1| (-640 |#1|)))) (-15 -1542 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1542 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| |#1|)))) (-15 -2512 ((-112) (-114))) (-15 -2559 ((-114) (-114))) (-15 -2126 ((-640 (-609 |#1|)) |#1|)) (-15 -2751 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -4135 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -4135 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -4135 (|#1| |#1| (-294 |#1|))) (-15 -2308 (|#1| (-114) (-640 |#1|))) (-15 -2308 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2308 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2308 (|#1| (-114) |#1| |#1|)) (-15 -2308 (|#1| (-114) |#1|)) (-15 -1542 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#1| |#1|)) (-15 -1542 (|#1| |#1| (-294 |#1|))) (-15 -1542 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -1542 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -1542 (|#1| |#1| (-609 |#1|) |#1|)) (-15 -1692 (|#1| (-609 |#1|))) (-15 -2130 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -2057 ((-609 |#1|) |#1|)) (-15 -1692 ((-858) |#1|))) (-430 |#2|) (-846)) (T -429))
+((-2559 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *4 (-846)) (-5 *1 (-429 *3 *4)) (-4 *3 (-430 *4)))) (-2512 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-429 *4 *5)) (-4 *4 (-430 *5)))) (-3914 (*1 *2) (-12 (-4 *4 (-846)) (-5 *2 (-767)) (-5 *1 (-429 *3 *4)) (-4 *3 (-430 *4)))))
+(-10 -8 (-15 * (|#1| (-917) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1692 (|#1| (-563))) (-15 -3914 ((-767))) (-15 -1692 (|#1| (-407 (-563)))) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -1692 (|#1| (-948 |#2|))) (-15 -2130 ((-3 (-948 |#2|) "failed") |#1|)) (-15 -2057 ((-948 |#2|) |#1|)) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -1692 (|#1| |#1|)) (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -1692 (|#1| (-407 (-948 |#2|)))) (-15 -2130 ((-3 (-407 (-948 |#2|)) "failed") |#1|)) (-15 -2057 ((-407 (-948 |#2|)) |#1|)) (-15 -2138 ((-407 (-1165 |#1|)) |#1| (-609 |#1|))) (-15 -1692 (|#1| (-407 (-948 (-407 |#2|))))) (-15 -1692 (|#1| (-948 (-407 |#2|)))) (-15 -1692 (|#1| (-407 |#2|))) (-15 -2033 (|#1| |#1|)) (-15 -2219 (|#1| (-418 |#1|))) (-15 -1542 (|#1| |#1| (-1169) (-767) (-1 |#1| |#1|))) (-15 -1542 (|#1| |#1| (-1169) (-767) (-1 |#1| (-640 |#1|)))) (-15 -1542 (|#1| |#1| (-640 (-1169)) (-640 (-767)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1542 (|#1| |#1| (-640 (-1169)) (-640 (-767)) (-640 (-1 |#1| |#1|)))) (-15 -3959 ((-3 (-2 (|:| |val| |#1|) (|:| -3311 (-563))) "failed") |#1|)) (-15 -3949 ((-3 (-2 (|:| |var| (-609 |#1|)) (|:| -3311 (-563))) "failed") |#1| (-1169))) (-15 -3949 ((-3 (-2 (|:| |var| (-609 |#1|)) (|:| -3311 (-563))) "failed") |#1| (-114))) (-15 -2043 (|#1| |#1|)) (-15 -1692 (|#1| (-1118 |#2| (-609 |#1|)))) (-15 -3479 ((-3 (-2 (|:| -2310 (-563)) (|:| |var| (-609 |#1|))) "failed") |#1|)) (-15 -3930 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -3949 ((-3 (-2 (|:| |var| (-609 |#1|)) (|:| -3311 (-563))) "failed") |#1|)) (-15 -3939 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -1542 (|#1| |#1| (-640 (-114)) (-640 |#1|) (-1169))) (-15 -1542 (|#1| |#1| (-114) |#1| (-1169))) (-15 -1542 (|#1| |#1|)) (-15 -1542 (|#1| |#1| (-640 (-1169)))) (-15 -1542 (|#1| |#1| (-1169))) (-15 -1894 (|#1| (-1169) (-640 |#1|))) (-15 -1894 (|#1| (-1169) |#1| |#1| |#1| |#1|)) (-15 -1894 (|#1| (-1169) |#1| |#1| |#1|)) (-15 -1894 (|#1| (-1169) |#1| |#1|)) (-15 -1894 (|#1| (-1169) |#1|)) (-15 -2605 ((-640 (-1169)) |#1|)) (-15 -2705 (|#2| |#1|)) (-15 -2695 ((-112) |#1|)) (-15 -1692 (|#1| |#2|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2219 ((-888 (-379)) |#1|)) (-15 -2219 ((-888 (-563)) |#1|)) (-15 -1692 (|#1| (-1169))) (-15 -2130 ((-3 (-1169) "failed") |#1|)) (-15 -2057 ((-1169) |#1|)) (-15 -1542 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1542 (|#1| |#1| (-114) (-1 |#1| (-640 |#1|)))) (-15 -1542 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1542 (|#1| |#1| (-640 (-114)) (-640 (-1 |#1| |#1|)))) (-15 -1542 (|#1| |#1| (-1169) (-1 |#1| |#1|))) (-15 -1542 (|#1| |#1| (-1169) (-1 |#1| (-640 |#1|)))) (-15 -1542 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| (-640 |#1|))))) (-15 -1542 (|#1| |#1| (-640 (-1169)) (-640 (-1 |#1| |#1|)))) (-15 -2512 ((-112) (-114))) (-15 -2559 ((-114) (-114))) (-15 -2126 ((-640 (-609 |#1|)) |#1|)) (-15 -2751 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -4135 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -4135 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -4135 (|#1| |#1| (-294 |#1|))) (-15 -2308 (|#1| (-114) (-640 |#1|))) (-15 -2308 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2308 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2308 (|#1| (-114) |#1| |#1|)) (-15 -2308 (|#1| (-114) |#1|)) (-15 -1542 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#1| |#1|)) (-15 -1542 (|#1| |#1| (-294 |#1|))) (-15 -1542 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -1542 (|#1| |#1| (-640 (-609 |#1|)) (-640 |#1|))) (-15 -1542 (|#1| |#1| (-609 |#1|) |#1|)) (-15 -1692 (|#1| (-609 |#1|))) (-15 -2130 ((-3 (-609 |#1|) "failed") |#1|)) (-15 -2057 ((-609 |#1|) |#1|)) (-15 -1692 ((-858) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 114 (|has| |#1| (-25)))) (-2605 (((-640 (-1169)) $) 201)) (-2138 (((-407 (-1165 $)) $ (-609 $)) 169 (|has| |#1| (-555)))) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 141 (|has| |#1| (-555)))) (-3231 (($ $) 142 (|has| |#1| (-555)))) (-3211 (((-112) $) 144 (|has| |#1| (-555)))) (-2058 (((-640 (-609 $)) $) 44)) (-3905 (((-3 $ "failed") $ $) 116 (|has| |#1| (-21)))) (-4135 (($ $ (-294 $)) 56) (($ $ (-640 (-294 $))) 55) (($ $ (-640 (-609 $)) (-640 $)) 54)) (-1798 (($ $) 161 (|has| |#1| (-555)))) (-2802 (((-418 $) $) 162 (|has| |#1| (-555)))) (-2003 (((-112) $ $) 152 (|has| |#1| (-555)))) (-2569 (($) 102 (-4034 (|has| |#1| (-1105)) (|has| |#1| (-25))) CONST)) (-2130 (((-3 (-609 $) "failed") $) 69) (((-3 (-1169) "failed") $) 214) (((-3 (-563) "failed") $) 208 (|has| |#1| (-1034 (-563)))) (((-3 |#1| "failed") $) 205) (((-3 (-407 (-948 |#1|)) "failed") $) 167 (|has| |#1| (-555))) (((-3 (-948 |#1|) "failed") $) 121 (|has| |#1| (-1045))) (((-3 (-407 (-563)) "failed") $) 96 (-4034 (-12 (|has| |#1| (-1034 (-563))) (|has| |#1| (-555))) (|has| |#1| (-1034 (-407 (-563))))))) (-2057 (((-609 $) $) 70) (((-1169) $) 215) (((-563) $) 207 (|has| |#1| (-1034 (-563)))) ((|#1| $) 206) (((-407 (-948 |#1|)) $) 168 (|has| |#1| (-555))) (((-948 |#1|) $) 122 (|has| |#1| (-1045))) (((-407 (-563)) $) 97 (-4034 (-12 (|has| |#1| (-1034 (-563))) (|has| |#1| (-555))) (|has| |#1| (-1034 (-407 (-563))))))) (-3094 (($ $ $) 156 (|has| |#1| (-555)))) (-1476 (((-684 (-563)) (-684 $)) 135 (-2188 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 134 (-2188 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 133 (|has| |#1| (-1045))) (((-684 |#1|) (-684 $)) 132 (|has| |#1| (-1045)))) (-3951 (((-3 $ "failed") $) 104 (|has| |#1| (-1105)))) (-3054 (($ $ $) 155 (|has| |#1| (-555)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 150 (|has| |#1| (-555)))) (-2560 (((-112) $) 163 (|has| |#1| (-555)))) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 210 (|has| |#1| (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 209 (|has| |#1| (-882 (-379))))) (-3228 (($ $) 51) (($ (-640 $)) 50)) (-2739 (((-640 (-114)) $) 43)) (-2559 (((-114) (-114)) 42)) (-3401 (((-112) $) 103 (|has| |#1| (-1105)))) (-2959 (((-112) $) 22 (|has| $ (-1034 (-563))))) (-2043 (($ $) 184 (|has| |#1| (-1045)))) (-2143 (((-1118 |#1| (-609 $)) $) 185 (|has| |#1| (-1045)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 159 (|has| |#1| (-555)))) (-2716 (((-1165 $) (-609 $)) 25 (|has| $ (-1045)))) (-3088 (($ $ $) 13)) (-1776 (($ $ $) 14)) (-2238 (($ (-1 $ $) (-609 $)) 36)) (-2751 (((-3 (-609 $) "failed") $) 46)) (-3517 (($ (-640 $)) 148 (|has| |#1| (-555))) (($ $ $) 147 (|has| |#1| (-555)))) (-3854 (((-1151) $) 9)) (-2126 (((-640 (-609 $)) $) 45)) (-2227 (($ (-114) $) 38) (($ (-114) (-640 $)) 37)) (-3939 (((-3 (-640 $) "failed") $) 190 (|has| |#1| (-1105)))) (-3959 (((-3 (-2 (|:| |val| $) (|:| -3311 (-563))) "failed") $) 181 (|has| |#1| (-1045)))) (-3930 (((-3 (-640 $) "failed") $) 188 (|has| |#1| (-25)))) (-3479 (((-3 (-2 (|:| -2310 (-563)) (|:| |var| (-609 $))) "failed") $) 187 (|has| |#1| (-25)))) (-3949 (((-3 (-2 (|:| |var| (-609 $)) (|:| -3311 (-563))) "failed") $) 189 (|has| |#1| (-1105))) (((-3 (-2 (|:| |var| (-609 $)) (|:| -3311 (-563))) "failed") $ (-114)) 183 (|has| |#1| (-1045))) (((-3 (-2 (|:| |var| (-609 $)) (|:| -3311 (-563))) "failed") $ (-1169)) 182 (|has| |#1| (-1045)))) (-2602 (((-112) $ (-114)) 40) (((-112) $ (-1169)) 39)) (-2687 (($ $) 106 (-4034 (|has| |#1| (-473)) (|has| |#1| (-555))))) (-4238 (((-767) $) 47)) (-1693 (((-1113) $) 10)) (-2695 (((-112) $) 203)) (-2705 ((|#1| $) 202)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 149 (|has| |#1| (-555)))) (-3551 (($ (-640 $)) 146 (|has| |#1| (-555))) (($ $ $) 145 (|has| |#1| (-555)))) (-2726 (((-112) $ $) 35) (((-112) $ (-1169)) 34)) (-2173 (((-418 $) $) 160 (|has| |#1| (-555)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 158 (|has| |#1| (-555))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 157 (|has| |#1| (-555)))) (-3012 (((-3 $ "failed") $ $) 140 (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 151 (|has| |#1| (-555)))) (-2969 (((-112) $) 23 (|has| $ (-1034 (-563))))) (-1542 (($ $ (-609 $) $) 67) (($ $ (-640 (-609 $)) (-640 $)) 66) (($ $ (-640 (-294 $))) 65) (($ $ (-294 $)) 64) (($ $ $ $) 63) (($ $ (-640 $) (-640 $)) 62) (($ $ (-640 (-1169)) (-640 (-1 $ $))) 33) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) 32) (($ $ (-1169) (-1 $ (-640 $))) 31) (($ $ (-1169) (-1 $ $)) 30) (($ $ (-640 (-114)) (-640 (-1 $ $))) 29) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) 28) (($ $ (-114) (-1 $ (-640 $))) 27) (($ $ (-114) (-1 $ $)) 26) (($ $ (-1169)) 195 (|has| |#1| (-611 (-536)))) (($ $ (-640 (-1169))) 194 (|has| |#1| (-611 (-536)))) (($ $) 193 (|has| |#1| (-611 (-536)))) (($ $ (-114) $ (-1169)) 192 (|has| |#1| (-611 (-536)))) (($ $ (-640 (-114)) (-640 $) (-1169)) 191 (|has| |#1| (-611 (-536)))) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ $))) 180 (|has| |#1| (-1045))) (($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ (-640 $)))) 179 (|has| |#1| (-1045))) (($ $ (-1169) (-767) (-1 $ (-640 $))) 178 (|has| |#1| (-1045))) (($ $ (-1169) (-767) (-1 $ $)) 177 (|has| |#1| (-1045)))) (-1993 (((-767) $) 153 (|has| |#1| (-555)))) (-2308 (($ (-114) $) 61) (($ (-114) $ $) 60) (($ (-114) $ $ $) 59) (($ (-114) $ $ $ $) 58) (($ (-114) (-640 $)) 57)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 154 (|has| |#1| (-555)))) (-2761 (($ $) 49) (($ $ $) 48)) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) 126 (|has| |#1| (-1045))) (($ $ (-1169) (-767)) 125 (|has| |#1| (-1045))) (($ $ (-640 (-1169))) 124 (|has| |#1| (-1045))) (($ $ (-1169)) 123 (|has| |#1| (-1045)))) (-2033 (($ $) 174 (|has| |#1| (-555)))) (-2153 (((-1118 |#1| (-609 $)) $) 175 (|has| |#1| (-555)))) (-3402 (($ $) 24 (|has| $ (-1045)))) (-2219 (((-888 (-563)) $) 212 (|has| |#1| (-611 (-888 (-563))))) (((-888 (-379)) $) 211 (|has| |#1| (-611 (-888 (-379))))) (($ (-418 $)) 176 (|has| |#1| (-555))) (((-536) $) 98 (|has| |#1| (-611 (-536))))) (-2150 (($ $ $) 109 (|has| |#1| (-473)))) (-1745 (($ $ $) 110 (|has| |#1| (-473)))) (-1692 (((-858) $) 11) (($ (-609 $)) 68) (($ (-1169)) 213) (($ |#1|) 204) (($ (-1118 |#1| (-609 $))) 186 (|has| |#1| (-1045))) (($ (-407 |#1|)) 172 (|has| |#1| (-555))) (($ (-948 (-407 |#1|))) 171 (|has| |#1| (-555))) (($ (-407 (-948 (-407 |#1|)))) 170 (|has| |#1| (-555))) (($ (-407 (-948 |#1|))) 166 (|has| |#1| (-555))) (($ $) 139 (|has| |#1| (-555))) (($ (-948 |#1|)) 120 (|has| |#1| (-1045))) (($ (-407 (-563))) 95 (-4034 (|has| |#1| (-555)) (-12 (|has| |#1| (-1034 (-563))) (|has| |#1| (-555))) (|has| |#1| (-1034 (-407 (-563)))))) (($ (-563)) 94 (-4034 (|has| |#1| (-1045)) (|has| |#1| (-1034 (-563)))))) (-2047 (((-3 $ "failed") $) 136 (|has| |#1| (-145)))) (-3914 (((-767)) 131 (|has| |#1| (-1045)))) (-3083 (($ $) 53) (($ (-640 $)) 52)) (-2512 (((-112) (-114)) 41)) (-3223 (((-112) $ $) 143 (|has| |#1| (-555)))) (-1894 (($ (-1169) $) 200) (($ (-1169) $ $) 199) (($ (-1169) $ $ $) 198) (($ (-1169) $ $ $ $) 197) (($ (-1169) (-640 $)) 196)) (-2239 (($) 113 (|has| |#1| (-25)) CONST)) (-2253 (($) 101 (|has| |#1| (-1105)) CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) 130 (|has| |#1| (-1045))) (($ $ (-1169) (-767)) 129 (|has| |#1| (-1045))) (($ $ (-640 (-1169))) 128 (|has| |#1| (-1045))) (($ $ (-1169)) 127 (|has| |#1| (-1045)))) (-1779 (((-112) $ $) 16)) (-1754 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 15)) (-1743 (((-112) $ $) 18)) (-1836 (($ (-1118 |#1| (-609 $)) (-1118 |#1| (-609 $))) 173 (|has| |#1| (-555))) (($ $ $) 107 (-4034 (|has| |#1| (-473)) (|has| |#1| (-555))))) (-1825 (($ $ $) 118 (|has| |#1| (-21))) (($ $) 117 (|has| |#1| (-21)))) (-1813 (($ $ $) 111 (|has| |#1| (-25)))) (** (($ $ (-563)) 108 (-4034 (|has| |#1| (-473)) (|has| |#1| (-555)))) (($ $ (-767)) 105 (|has| |#1| (-1105))) (($ $ (-917)) 100 (|has| |#1| (-1105)))) (* (($ (-407 (-563)) $) 165 (|has| |#1| (-555))) (($ $ (-407 (-563))) 164 (|has| |#1| (-555))) (($ |#1| $) 138 (|has| |#1| (-172))) (($ $ |#1|) 137 (|has| |#1| (-172))) (($ (-563) $) 119 (|has| |#1| (-21))) (($ (-767) $) 115 (|has| |#1| (-25))) (($ (-917) $) 112 (|has| |#1| (-25))) (($ $ $) 99 (|has| |#1| (-1105)))))
(((-430 |#1|) (-140) (-846)) (T -430))
-((-2696 (*1 *2 *1) (-12 (-4 *1 (-430 *3)) (-4 *3 (-846)) (-5 *2 (-112)))) (-2706 (*1 *2 *1) (-12 (-4 *1 (-430 *2)) (-4 *2 (-846)))) (-2606 (*1 *2 *1) (-12 (-4 *1 (-430 *3)) (-4 *3 (-846)) (-5 *2 (-640 (-1169))))) (-1895 (*1 *1 *2 *1) (-12 (-5 *2 (-1169)) (-4 *1 (-430 *3)) (-4 *3 (-846)))) (-1895 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1169)) (-4 *1 (-430 *3)) (-4 *3 (-846)))) (-1895 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1169)) (-4 *1 (-430 *3)) (-4 *3 (-846)))) (-1895 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1169)) (-4 *1 (-430 *3)) (-4 *3 (-846)))) (-1895 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-640 *1)) (-4 *1 (-430 *4)) (-4 *4 (-846)))) (-1540 (*1 *1 *1 *2) (-12 (-5 *2 (-1169)) (-4 *1 (-430 *3)) (-4 *3 (-846)) (-4 *3 (-611 (-536))))) (-1540 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-1169))) (-4 *1 (-430 *3)) (-4 *3 (-846)) (-4 *3 (-611 (-536))))) (-1540 (*1 *1 *1) (-12 (-4 *1 (-430 *2)) (-4 *2 (-846)) (-4 *2 (-611 (-536))))) (-1540 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1169)) (-4 *1 (-430 *4)) (-4 *4 (-846)) (-4 *4 (-611 (-536))))) (-1540 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-640 (-114))) (-5 *3 (-640 *1)) (-5 *4 (-1169)) (-4 *1 (-430 *5)) (-4 *5 (-846)) (-4 *5 (-611 (-536))))) (-3733 (*1 *2 *1) (|partial| -12 (-4 *3 (-1105)) (-4 *3 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-430 *3)))) (-4086 (*1 *2 *1) (|partial| -12 (-4 *3 (-1105)) (-4 *3 (-846)) (-5 *2 (-2 (|:| |var| (-609 *1)) (|:| -1654 (-563)))) (-4 *1 (-430 *3)))) (-2919 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-430 *3)))) (-4298 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-846)) (-5 *2 (-2 (|:| -2311 (-563)) (|:| |var| (-609 *1)))) (-4 *1 (-430 *3)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-1118 *3 (-609 *1))) (-4 *3 (-1045)) (-4 *3 (-846)) (-4 *1 (-430 *3)))) (-2143 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *3 (-846)) (-5 *2 (-1118 *3 (-609 *1))) (-4 *1 (-430 *3)))) (-2711 (*1 *1 *1) (-12 (-4 *1 (-430 *2)) (-4 *2 (-846)) (-4 *2 (-1045)))) (-4086 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1045)) (-4 *4 (-846)) (-5 *2 (-2 (|:| |var| (-609 *1)) (|:| -1654 (-563)))) (-4 *1 (-430 *4)))) (-4086 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1169)) (-4 *4 (-1045)) (-4 *4 (-846)) (-5 *2 (-2 (|:| |var| (-609 *1)) (|:| -1654 (-563)))) (-4 *1 (-430 *4)))) (-1848 (*1 *2 *1) (|partial| -12 (-4 *3 (-1045)) (-4 *3 (-846)) (-5 *2 (-2 (|:| |val| *1) (|:| -1654 (-563)))) (-4 *1 (-430 *3)))) (-1540 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-640 (-767))) (-5 *4 (-640 (-1 *1 *1))) (-4 *1 (-430 *5)) (-4 *5 (-846)) (-4 *5 (-1045)))) (-1540 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-640 (-767))) (-5 *4 (-640 (-1 *1 (-640 *1)))) (-4 *1 (-430 *5)) (-4 *5 (-846)) (-4 *5 (-1045)))) (-1540 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-767)) (-5 *4 (-1 *1 (-640 *1))) (-4 *1 (-430 *5)) (-4 *5 (-846)) (-4 *5 (-1045)))) (-1540 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-767)) (-5 *4 (-1 *1 *1)) (-4 *1 (-430 *5)) (-4 *5 (-846)) (-4 *5 (-1045)))) (-2220 (*1 *1 *2) (-12 (-5 *2 (-418 *1)) (-4 *1 (-430 *3)) (-4 *3 (-555)) (-4 *3 (-846)))) (-2154 (*1 *2 *1) (-12 (-4 *3 (-555)) (-4 *3 (-846)) (-5 *2 (-1118 *3 (-609 *1))) (-4 *1 (-430 *3)))) (-1801 (*1 *1 *1) (-12 (-4 *1 (-430 *2)) (-4 *2 (-846)) (-4 *2 (-555)))) (-1837 (*1 *1 *2 *2) (-12 (-5 *2 (-1118 *3 (-609 *1))) (-4 *3 (-555)) (-4 *3 (-846)) (-4 *1 (-430 *3)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-407 *3)) (-4 *3 (-555)) (-4 *3 (-846)) (-4 *1 (-430 *3)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-948 (-407 *3))) (-4 *3 (-555)) (-4 *3 (-846)) (-4 *1 (-430 *3)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-407 (-948 (-407 *3)))) (-4 *3 (-555)) (-4 *3 (-846)) (-4 *1 (-430 *3)))) (-2139 (*1 *2 *1 *3) (-12 (-5 *3 (-609 *1)) (-4 *1 (-430 *4)) (-4 *4 (-846)) (-4 *4 (-555)) (-5 *2 (-407 (-1165 *1))))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-430 *3)) (-4 *3 (-846)) (-4 *3 (-1105)))))
-(-13 (-302) (-1034 (-1169)) (-880 |t#1|) (-400 |t#1|) (-411 |t#1|) (-10 -8 (-15 -2696 ((-112) $)) (-15 -2706 (|t#1| $)) (-15 -2606 ((-640 (-1169)) $)) (-15 -1895 ($ (-1169) $)) (-15 -1895 ($ (-1169) $ $)) (-15 -1895 ($ (-1169) $ $ $)) (-15 -1895 ($ (-1169) $ $ $ $)) (-15 -1895 ($ (-1169) (-640 $))) (IF (|has| |t#1| (-611 (-536))) (PROGN (-6 (-611 (-536))) (-15 -1540 ($ $ (-1169))) (-15 -1540 ($ $ (-640 (-1169)))) (-15 -1540 ($ $)) (-15 -1540 ($ $ (-114) $ (-1169))) (-15 -1540 ($ $ (-640 (-114)) (-640 $) (-1169)))) |%noBranch|) (IF (|has| |t#1| (-1105)) (PROGN (-6 (-722)) (-15 ** ($ $ (-767))) (-15 -3733 ((-3 (-640 $) "failed") $)) (-15 -4086 ((-3 (-2 (|:| |var| (-609 $)) (|:| -1654 (-563))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-473)) (-6 (-473)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -2919 ((-3 (-640 $) "failed") $)) (-15 -4298 ((-3 (-2 (|:| -2311 (-563)) (|:| |var| (-609 $))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |t#1| (-1045)) (PROGN (-6 (-1045)) (-6 (-1034 (-948 |t#1|))) (-6 (-896 (-1169))) (-6 (-377 |t#1|)) (-15 -1693 ($ (-1118 |t#1| (-609 $)))) (-15 -2143 ((-1118 |t#1| (-609 $)) $)) (-15 -2711 ($ $)) (-15 -4086 ((-3 (-2 (|:| |var| (-609 $)) (|:| -1654 (-563))) "failed") $ (-114))) (-15 -4086 ((-3 (-2 (|:| |var| (-609 $)) (|:| -1654 (-563))) "failed") $ (-1169))) (-15 -1848 ((-3 (-2 (|:| |val| $) (|:| -1654 (-563))) "failed") $)) (-15 -1540 ($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ $)))) (-15 -1540 ($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ (-640 $))))) (-15 -1540 ($ $ (-1169) (-767) (-1 $ (-640 $)))) (-15 -1540 ($ $ (-1169) (-767) (-1 $ $)))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-172)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-555)) (PROGN (-6 (-363)) (-6 (-1034 (-407 (-948 |t#1|)))) (-15 -2220 ($ (-418 $))) (-15 -2154 ((-1118 |t#1| (-609 $)) $)) (-15 -1801 ($ $)) (-15 -1837 ($ (-1118 |t#1| (-609 $)) (-1118 |t#1| (-609 $)))) (-15 -1693 ($ (-407 |t#1|))) (-15 -1693 ($ (-948 (-407 |t#1|)))) (-15 -1693 ($ (-407 (-948 (-407 |t#1|))))) (-15 -2139 ((-407 (-1165 $)) $ (-609 $))) (IF (|has| |t#1| (-1034 (-563))) (-6 (-1034 (-407 (-563)))) |%noBranch|)) |%noBranch|)))
-(((-21) -4032 (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145)) (|has| |#1| (-21))) ((-23) -4032 (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-25) -4032 (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-38 #0=(-407 (-563))) |has| |#1| (-555)) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-555)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-555)) ((-111 |#1| |#1|) |has| |#1| (-172)) ((-111 $ $) |has| |#1| (-555)) ((-131) -4032 (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145)) (|has| |#1| (-21))) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) -4032 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-555))) ((-613 #1=(-407 (-948 |#1|))) |has| |#1| (-555)) ((-613 (-563)) -4032 (|has| |#1| (-1045)) (|has| |#1| (-1034 (-563))) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-613 #2=(-609 $)) . T) ((-613 #3=(-948 |#1|)) |has| |#1| (-1045)) ((-613 #4=(-1169)) . T) ((-613 |#1|) . T) ((-613 $) |has| |#1| (-555)) ((-610 (-858)) . T) ((-172) |has| |#1| (-555)) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-611 (-888 (-379))) |has| |#1| (-611 (-888 (-379)))) ((-611 (-888 (-563))) |has| |#1| (-611 (-888 (-563)))) ((-243) |has| |#1| (-555)) ((-290) |has| |#1| (-555)) ((-307) |has| |#1| (-555)) ((-309 $) . T) ((-302) . T) ((-363) |has| |#1| (-555)) ((-377 |#1|) |has| |#1| (-1045)) ((-400 |#1|) . T) ((-411 |#1|) . T) ((-452) |has| |#1| (-555)) ((-473) |has| |#1| (-473)) ((-514 (-609 $) $) . T) ((-514 $ $) . T) ((-555) |has| |#1| (-555)) ((-643 #0#) |has| |#1| (-555)) ((-643 |#1|) |has| |#1| (-172)) ((-643 $) -4032 (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-636 (-563)) -12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) ((-636 |#1|) |has| |#1| (-1045)) ((-713 #0#) |has| |#1| (-555)) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) |has| |#1| (-555)) ((-722) -4032 (|has| |#1| (-1105)) (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-473)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-846) . T) ((-896 (-1169)) |has| |#1| (-1045)) ((-882 (-379)) |has| |#1| (-882 (-379))) ((-882 (-563)) |has| |#1| (-882 (-563))) ((-880 |#1|) . T) ((-916) |has| |#1| (-555)) ((-1034 (-407 (-563))) -4032 (|has| |#1| (-1034 (-407 (-563)))) (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563))))) ((-1034 #1#) |has| |#1| (-555)) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 #2#) . T) ((-1034 #3#) |has| |#1| (-1045)) ((-1034 #4#) . T) ((-1034 |#1|) . T) ((-1051 #0#) |has| |#1| (-555)) ((-1051 |#1|) |has| |#1| (-172)) ((-1051 $) |has| |#1| (-555)) ((-1045) -4032 (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-1052) -4032 (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-1105) -4032 (|has| |#1| (-1105)) (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-473)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-1093) . T) ((-1208) . T) ((-1212) |has| |#1| (-555)))
-((-2507 ((|#2| |#2| |#2|) 31)) (-2361 (((-114) (-114)) 43)) (-2569 ((|#2| |#2|) 65)) (-1832 ((|#2| |#2|) 68)) (-1760 ((|#2| |#2|) 30)) (-2736 ((|#2| |#2| |#2|) 33)) (-2040 ((|#2| |#2| |#2|) 35)) (-4271 ((|#2| |#2| |#2|) 32)) (-3988 ((|#2| |#2| |#2|) 34)) (-3734 (((-112) (-114)) 41)) (-3336 ((|#2| |#2|) 37)) (-4252 ((|#2| |#2|) 36)) (-2509 ((|#2| |#2|) 25)) (-1341 ((|#2| |#2| |#2|) 28) ((|#2| |#2|) 26)) (-3929 ((|#2| |#2| |#2|) 29)))
-(((-431 |#1| |#2|) (-10 -7 (-15 -3734 ((-112) (-114))) (-15 -2361 ((-114) (-114))) (-15 -2509 (|#2| |#2|)) (-15 -1341 (|#2| |#2|)) (-15 -1341 (|#2| |#2| |#2|)) (-15 -3929 (|#2| |#2| |#2|)) (-15 -1760 (|#2| |#2|)) (-15 -2507 (|#2| |#2| |#2|)) (-15 -4271 (|#2| |#2| |#2|)) (-15 -2736 (|#2| |#2| |#2|)) (-15 -3988 (|#2| |#2| |#2|)) (-15 -2040 (|#2| |#2| |#2|)) (-15 -4252 (|#2| |#2|)) (-15 -3336 (|#2| |#2|)) (-15 -1832 (|#2| |#2|)) (-15 -2569 (|#2| |#2|))) (-13 (-846) (-555)) (-430 |#1|)) (T -431))
-((-2569 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1832 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-3336 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-4252 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-2040 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-3988 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-2736 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-4271 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-2507 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1760 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-3929 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1341 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1341 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-2509 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-2361 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *4)) (-4 *4 (-430 *3)))) (-3734 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112)) (-5 *1 (-431 *4 *5)) (-4 *5 (-430 *4)))))
-(-10 -7 (-15 -3734 ((-112) (-114))) (-15 -2361 ((-114) (-114))) (-15 -2509 (|#2| |#2|)) (-15 -1341 (|#2| |#2|)) (-15 -1341 (|#2| |#2| |#2|)) (-15 -3929 (|#2| |#2| |#2|)) (-15 -1760 (|#2| |#2|)) (-15 -2507 (|#2| |#2| |#2|)) (-15 -4271 (|#2| |#2| |#2|)) (-15 -2736 (|#2| |#2| |#2|)) (-15 -3988 (|#2| |#2| |#2|)) (-15 -2040 (|#2| |#2| |#2|)) (-15 -4252 (|#2| |#2|)) (-15 -3336 (|#2| |#2|)) (-15 -1832 (|#2| |#2|)) (-15 -2569 (|#2| |#2|)))
-((-1571 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1165 |#2|)) (|:| |pol2| (-1165 |#2|)) (|:| |prim| (-1165 |#2|))) |#2| |#2|) 96 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-640 (-1165 |#2|))) (|:| |prim| (-1165 |#2|))) (-640 |#2|)) 61)))
-(((-432 |#1| |#2|) (-10 -7 (-15 -1571 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-640 (-1165 |#2|))) (|:| |prim| (-1165 |#2|))) (-640 |#2|))) (IF (|has| |#2| (-27)) (-15 -1571 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1165 |#2|)) (|:| |pol2| (-1165 |#2|)) (|:| |prim| (-1165 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-555) (-846) (-147)) (-430 |#1|)) (T -432))
-((-1571 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-555) (-846) (-147))) (-5 *2 (-2 (|:| |primelt| *3) (|:| |pol1| (-1165 *3)) (|:| |pol2| (-1165 *3)) (|:| |prim| (-1165 *3)))) (-5 *1 (-432 *4 *3)) (-4 *3 (-27)) (-4 *3 (-430 *4)))) (-1571 (*1 *2 *3) (-12 (-5 *3 (-640 *5)) (-4 *5 (-430 *4)) (-4 *4 (-13 (-555) (-846) (-147))) (-5 *2 (-2 (|:| |primelt| *5) (|:| |poly| (-640 (-1165 *5))) (|:| |prim| (-1165 *5)))) (-5 *1 (-432 *4 *5)))))
-(-10 -7 (-15 -1571 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-640 (-1165 |#2|))) (|:| |prim| (-1165 |#2|))) (-640 |#2|))) (IF (|has| |#2| (-27)) (-15 -1571 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1165 |#2|)) (|:| |pol2| (-1165 |#2|)) (|:| |prim| (-1165 |#2|))) |#2| |#2|)) |%noBranch|))
-((-2854 (((-1262)) 19)) (-1788 (((-1165 (-407 (-563))) |#2| (-609 |#2|)) 41) (((-407 (-563)) |#2|) 25)))
-(((-433 |#1| |#2|) (-10 -7 (-15 -1788 ((-407 (-563)) |#2|)) (-15 -1788 ((-1165 (-407 (-563))) |#2| (-609 |#2|))) (-15 -2854 ((-1262)))) (-13 (-846) (-555) (-1034 (-563))) (-430 |#1|)) (T -433))
-((-2854 (*1 *2) (-12 (-4 *3 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-1262)) (-5 *1 (-433 *3 *4)) (-4 *4 (-430 *3)))) (-1788 (*1 *2 *3 *4) (-12 (-5 *4 (-609 *3)) (-4 *3 (-430 *5)) (-4 *5 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-433 *5 *3)))) (-1788 (*1 *2 *3) (-12 (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-407 (-563))) (-5 *1 (-433 *4 *3)) (-4 *3 (-430 *4)))))
-(-10 -7 (-15 -1788 ((-407 (-563)) |#2|)) (-15 -1788 ((-1165 (-407 (-563))) |#2| (-609 |#2|))) (-15 -2854 ((-1262))))
-((-3087 (((-112) $) 28)) (-4129 (((-112) $) 30)) (-3532 (((-112) $) 31)) (-2686 (((-112) $) 34)) (-3322 (((-112) $) 29)) (-3186 (((-112) $) 33)) (-1693 (((-858) $) 18) (($ (-1151)) 27) (($ (-1169)) 23) (((-1169) $) 22) (((-1097) $) 21)) (-4305 (((-112) $) 32)) (-1718 (((-112) $ $) 15)))
-(((-434) (-13 (-610 (-858)) (-10 -8 (-15 -1693 ($ (-1151))) (-15 -1693 ($ (-1169))) (-15 -1693 ((-1169) $)) (-15 -1693 ((-1097) $)) (-15 -3087 ((-112) $)) (-15 -3322 ((-112) $)) (-15 -3532 ((-112) $)) (-15 -3186 ((-112) $)) (-15 -2686 ((-112) $)) (-15 -4305 ((-112) $)) (-15 -4129 ((-112) $)) (-15 -1718 ((-112) $ $))))) (T -434))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-434)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-434)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-434)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-434)))) (-3087 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))) (-3322 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))) (-3532 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))) (-3186 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))) (-2686 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))) (-4305 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))) (-4129 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))) (-1718 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))))
-(-13 (-610 (-858)) (-10 -8 (-15 -1693 ($ (-1151))) (-15 -1693 ($ (-1169))) (-15 -1693 ((-1169) $)) (-15 -1693 ((-1097) $)) (-15 -3087 ((-112) $)) (-15 -3322 ((-112) $)) (-15 -3532 ((-112) $)) (-15 -3186 ((-112) $)) (-15 -2686 ((-112) $)) (-15 -4305 ((-112) $)) (-15 -4129 ((-112) $)) (-15 -1718 ((-112) $ $))))
-((-3722 (((-3 (-418 (-1165 (-407 (-563)))) "failed") |#3|) 70)) (-3372 (((-418 |#3|) |#3|) 34)) (-3604 (((-3 (-418 (-1165 (-48))) "failed") |#3|) 46 (|has| |#2| (-1034 (-48))))) (-2374 (((-3 (|:| |overq| (-1165 (-407 (-563)))) (|:| |overan| (-1165 (-48))) (|:| -4244 (-112))) |#3|) 37)))
-(((-435 |#1| |#2| |#3|) (-10 -7 (-15 -3372 ((-418 |#3|) |#3|)) (-15 -3722 ((-3 (-418 (-1165 (-407 (-563)))) "failed") |#3|)) (-15 -2374 ((-3 (|:| |overq| (-1165 (-407 (-563)))) (|:| |overan| (-1165 (-48))) (|:| -4244 (-112))) |#3|)) (IF (|has| |#2| (-1034 (-48))) (-15 -3604 ((-3 (-418 (-1165 (-48))) "failed") |#3|)) |%noBranch|)) (-13 (-555) (-846) (-1034 (-563))) (-430 |#1|) (-1233 |#2|)) (T -435))
-((-3604 (*1 *2 *3) (|partial| -12 (-4 *5 (-1034 (-48))) (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-4 *5 (-430 *4)) (-5 *2 (-418 (-1165 (-48)))) (-5 *1 (-435 *4 *5 *3)) (-4 *3 (-1233 *5)))) (-2374 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-4 *5 (-430 *4)) (-5 *2 (-3 (|:| |overq| (-1165 (-407 (-563)))) (|:| |overan| (-1165 (-48))) (|:| -4244 (-112)))) (-5 *1 (-435 *4 *5 *3)) (-4 *3 (-1233 *5)))) (-3722 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-4 *5 (-430 *4)) (-5 *2 (-418 (-1165 (-407 (-563))))) (-5 *1 (-435 *4 *5 *3)) (-4 *3 (-1233 *5)))) (-3372 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-4 *5 (-430 *4)) (-5 *2 (-418 *3)) (-5 *1 (-435 *4 *5 *3)) (-4 *3 (-1233 *5)))))
-(-10 -7 (-15 -3372 ((-418 |#3|) |#3|)) (-15 -3722 ((-3 (-418 (-1165 (-407 (-563)))) "failed") |#3|)) (-15 -2374 ((-3 (|:| |overq| (-1165 (-407 (-563)))) (|:| |overan| (-1165 (-48))) (|:| -4244 (-112))) |#3|)) (IF (|has| |#2| (-1034 (-48))) (-15 -3604 ((-3 (-418 (-1165 (-48))) "failed") |#3|)) |%noBranch|))
-((-1677 (((-112) $ $) NIL)) (-2056 (((-1151) $ (-1151)) NIL)) (-3010 (($ $ (-1151)) NIL)) (-3538 (((-1151) $) NIL)) (-1295 (((-388) (-388) (-388)) 17) (((-388) (-388)) 15)) (-3405 (($ (-388)) NIL) (($ (-388) (-1151)) NIL)) (-3348 (((-388) $) NIL)) (-3573 (((-1151) $) NIL)) (-2302 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1945 (((-1262) (-1151)) 9)) (-1661 (((-1262) (-1151)) 10)) (-3832 (((-1262)) 11)) (-1693 (((-858) $) NIL)) (-3004 (($ $) 34)) (-1718 (((-112) $ $) NIL)))
-(((-436) (-13 (-364 (-388) (-1151)) (-10 -7 (-15 -1295 ((-388) (-388) (-388))) (-15 -1295 ((-388) (-388))) (-15 -1945 ((-1262) (-1151))) (-15 -1661 ((-1262) (-1151))) (-15 -3832 ((-1262)))))) (T -436))
-((-1295 (*1 *2 *2 *2) (-12 (-5 *2 (-388)) (-5 *1 (-436)))) (-1295 (*1 *2 *2) (-12 (-5 *2 (-388)) (-5 *1 (-436)))) (-1945 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-436)))) (-1661 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-436)))) (-3832 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-436)))))
-(-13 (-364 (-388) (-1151)) (-10 -7 (-15 -1295 ((-388) (-388) (-388))) (-15 -1295 ((-388) (-388))) (-15 -1945 ((-1262) (-1151))) (-15 -1661 ((-1262) (-1151))) (-15 -3832 ((-1262)))))
-((-1677 (((-112) $ $) NIL)) (-3332 (((-3 (|:| |fst| (-434)) (|:| -3784 "void")) $) 11)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2533 (($) 32)) (-1726 (($) 38)) (-2170 (($) 34)) (-3165 (($) 36)) (-1688 (($) 33)) (-1309 (($) 35)) (-3024 (($) 37)) (-1381 (((-112) $) 8)) (-3884 (((-640 (-948 (-563))) $) 19)) (-1707 (($ (-3 (|:| |fst| (-434)) (|:| -3784 "void")) (-640 (-1169)) (-112)) 27) (($ (-3 (|:| |fst| (-434)) (|:| -3784 "void")) (-640 (-948 (-563))) (-112)) 28)) (-1693 (((-858) $) 23) (($ (-434)) 29)) (-1718 (((-112) $ $) NIL)))
-(((-437) (-13 (-1093) (-10 -8 (-15 -1693 ($ (-434))) (-15 -3332 ((-3 (|:| |fst| (-434)) (|:| -3784 "void")) $)) (-15 -3884 ((-640 (-948 (-563))) $)) (-15 -1381 ((-112) $)) (-15 -1707 ($ (-3 (|:| |fst| (-434)) (|:| -3784 "void")) (-640 (-1169)) (-112))) (-15 -1707 ($ (-3 (|:| |fst| (-434)) (|:| -3784 "void")) (-640 (-948 (-563))) (-112))) (-15 -2533 ($)) (-15 -1688 ($)) (-15 -2170 ($)) (-15 -1726 ($)) (-15 -1309 ($)) (-15 -3165 ($)) (-15 -3024 ($))))) (T -437))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-434)) (-5 *1 (-437)))) (-3332 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-5 *1 (-437)))) (-3884 (*1 *2 *1) (-12 (-5 *2 (-640 (-948 (-563)))) (-5 *1 (-437)))) (-1381 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-437)))) (-1707 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-5 *3 (-640 (-1169))) (-5 *4 (-112)) (-5 *1 (-437)))) (-1707 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-112)) (-5 *1 (-437)))) (-2533 (*1 *1) (-5 *1 (-437))) (-1688 (*1 *1) (-5 *1 (-437))) (-2170 (*1 *1) (-5 *1 (-437))) (-1726 (*1 *1) (-5 *1 (-437))) (-1309 (*1 *1) (-5 *1 (-437))) (-3165 (*1 *1) (-5 *1 (-437))) (-3024 (*1 *1) (-5 *1 (-437))))
-(-13 (-1093) (-10 -8 (-15 -1693 ($ (-434))) (-15 -3332 ((-3 (|:| |fst| (-434)) (|:| -3784 "void")) $)) (-15 -3884 ((-640 (-948 (-563))) $)) (-15 -1381 ((-112) $)) (-15 -1707 ($ (-3 (|:| |fst| (-434)) (|:| -3784 "void")) (-640 (-1169)) (-112))) (-15 -1707 ($ (-3 (|:| |fst| (-434)) (|:| -3784 "void")) (-640 (-948 (-563))) (-112))) (-15 -2533 ($)) (-15 -1688 ($)) (-15 -2170 ($)) (-15 -1726 ($)) (-15 -1309 ($)) (-15 -3165 ($)) (-15 -3024 ($))))
-((-1677 (((-112) $ $) NIL)) (-3348 (((-1169) $) 8)) (-3573 (((-1151) $) 16)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 11)) (-1718 (((-112) $ $) 13)))
-(((-438 |#1|) (-13 (-1093) (-10 -8 (-15 -3348 ((-1169) $)))) (-1169)) (T -438))
-((-3348 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-438 *3)) (-14 *3 *2))))
-(-13 (-1093) (-10 -8 (-15 -3348 ((-1169) $))))
-((-1677 (((-112) $ $) NIL)) (-2918 (((-1111) $) 7)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 13)) (-1718 (((-112) $ $) 9)))
-(((-439) (-13 (-1093) (-10 -8 (-15 -2918 ((-1111) $))))) (T -439))
-((-2918 (*1 *2 *1) (-12 (-5 *2 (-1111)) (-5 *1 (-439)))))
-(-13 (-1093) (-10 -8 (-15 -2918 ((-1111) $))))
-((-2615 (((-1262) $) 7)) (-1693 (((-858) $) 8) (($ (-1257 (-694))) 14) (($ (-640 (-330))) 13) (($ (-330)) 12) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 11)))
+((-2695 (*1 *2 *1) (-12 (-4 *1 (-430 *3)) (-4 *3 (-846)) (-5 *2 (-112)))) (-2705 (*1 *2 *1) (-12 (-4 *1 (-430 *2)) (-4 *2 (-846)))) (-2605 (*1 *2 *1) (-12 (-4 *1 (-430 *3)) (-4 *3 (-846)) (-5 *2 (-640 (-1169))))) (-1894 (*1 *1 *2 *1) (-12 (-5 *2 (-1169)) (-4 *1 (-430 *3)) (-4 *3 (-846)))) (-1894 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1169)) (-4 *1 (-430 *3)) (-4 *3 (-846)))) (-1894 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1169)) (-4 *1 (-430 *3)) (-4 *3 (-846)))) (-1894 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1169)) (-4 *1 (-430 *3)) (-4 *3 (-846)))) (-1894 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-640 *1)) (-4 *1 (-430 *4)) (-4 *4 (-846)))) (-1542 (*1 *1 *1 *2) (-12 (-5 *2 (-1169)) (-4 *1 (-430 *3)) (-4 *3 (-846)) (-4 *3 (-611 (-536))))) (-1542 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-1169))) (-4 *1 (-430 *3)) (-4 *3 (-846)) (-4 *3 (-611 (-536))))) (-1542 (*1 *1 *1) (-12 (-4 *1 (-430 *2)) (-4 *2 (-846)) (-4 *2 (-611 (-536))))) (-1542 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1169)) (-4 *1 (-430 *4)) (-4 *4 (-846)) (-4 *4 (-611 (-536))))) (-1542 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-640 (-114))) (-5 *3 (-640 *1)) (-5 *4 (-1169)) (-4 *1 (-430 *5)) (-4 *5 (-846)) (-4 *5 (-611 (-536))))) (-3939 (*1 *2 *1) (|partial| -12 (-4 *3 (-1105)) (-4 *3 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-430 *3)))) (-3949 (*1 *2 *1) (|partial| -12 (-4 *3 (-1105)) (-4 *3 (-846)) (-5 *2 (-2 (|:| |var| (-609 *1)) (|:| -3311 (-563)))) (-4 *1 (-430 *3)))) (-3930 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-430 *3)))) (-3479 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-846)) (-5 *2 (-2 (|:| -2310 (-563)) (|:| |var| (-609 *1)))) (-4 *1 (-430 *3)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-1118 *3 (-609 *1))) (-4 *3 (-1045)) (-4 *3 (-846)) (-4 *1 (-430 *3)))) (-2143 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *3 (-846)) (-5 *2 (-1118 *3 (-609 *1))) (-4 *1 (-430 *3)))) (-2043 (*1 *1 *1) (-12 (-4 *1 (-430 *2)) (-4 *2 (-846)) (-4 *2 (-1045)))) (-3949 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1045)) (-4 *4 (-846)) (-5 *2 (-2 (|:| |var| (-609 *1)) (|:| -3311 (-563)))) (-4 *1 (-430 *4)))) (-3949 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1169)) (-4 *4 (-1045)) (-4 *4 (-846)) (-5 *2 (-2 (|:| |var| (-609 *1)) (|:| -3311 (-563)))) (-4 *1 (-430 *4)))) (-3959 (*1 *2 *1) (|partial| -12 (-4 *3 (-1045)) (-4 *3 (-846)) (-5 *2 (-2 (|:| |val| *1) (|:| -3311 (-563)))) (-4 *1 (-430 *3)))) (-1542 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-640 (-767))) (-5 *4 (-640 (-1 *1 *1))) (-4 *1 (-430 *5)) (-4 *5 (-846)) (-4 *5 (-1045)))) (-1542 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-640 (-767))) (-5 *4 (-640 (-1 *1 (-640 *1)))) (-4 *1 (-430 *5)) (-4 *5 (-846)) (-4 *5 (-1045)))) (-1542 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-767)) (-5 *4 (-1 *1 (-640 *1))) (-4 *1 (-430 *5)) (-4 *5 (-846)) (-4 *5 (-1045)))) (-1542 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-767)) (-5 *4 (-1 *1 *1)) (-4 *1 (-430 *5)) (-4 *5 (-846)) (-4 *5 (-1045)))) (-2219 (*1 *1 *2) (-12 (-5 *2 (-418 *1)) (-4 *1 (-430 *3)) (-4 *3 (-555)) (-4 *3 (-846)))) (-2153 (*1 *2 *1) (-12 (-4 *3 (-555)) (-4 *3 (-846)) (-5 *2 (-1118 *3 (-609 *1))) (-4 *1 (-430 *3)))) (-2033 (*1 *1 *1) (-12 (-4 *1 (-430 *2)) (-4 *2 (-846)) (-4 *2 (-555)))) (-1836 (*1 *1 *2 *2) (-12 (-5 *2 (-1118 *3 (-609 *1))) (-4 *3 (-555)) (-4 *3 (-846)) (-4 *1 (-430 *3)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-407 *3)) (-4 *3 (-555)) (-4 *3 (-846)) (-4 *1 (-430 *3)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-948 (-407 *3))) (-4 *3 (-555)) (-4 *3 (-846)) (-4 *1 (-430 *3)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-407 (-948 (-407 *3)))) (-4 *3 (-555)) (-4 *3 (-846)) (-4 *1 (-430 *3)))) (-2138 (*1 *2 *1 *3) (-12 (-5 *3 (-609 *1)) (-4 *1 (-430 *4)) (-4 *4 (-846)) (-4 *4 (-555)) (-5 *2 (-407 (-1165 *1))))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-430 *3)) (-4 *3 (-846)) (-4 *3 (-1105)))))
+(-13 (-302) (-1034 (-1169)) (-880 |t#1|) (-400 |t#1|) (-411 |t#1|) (-10 -8 (-15 -2695 ((-112) $)) (-15 -2705 (|t#1| $)) (-15 -2605 ((-640 (-1169)) $)) (-15 -1894 ($ (-1169) $)) (-15 -1894 ($ (-1169) $ $)) (-15 -1894 ($ (-1169) $ $ $)) (-15 -1894 ($ (-1169) $ $ $ $)) (-15 -1894 ($ (-1169) (-640 $))) (IF (|has| |t#1| (-611 (-536))) (PROGN (-6 (-611 (-536))) (-15 -1542 ($ $ (-1169))) (-15 -1542 ($ $ (-640 (-1169)))) (-15 -1542 ($ $)) (-15 -1542 ($ $ (-114) $ (-1169))) (-15 -1542 ($ $ (-640 (-114)) (-640 $) (-1169)))) |%noBranch|) (IF (|has| |t#1| (-1105)) (PROGN (-6 (-722)) (-15 ** ($ $ (-767))) (-15 -3939 ((-3 (-640 $) "failed") $)) (-15 -3949 ((-3 (-2 (|:| |var| (-609 $)) (|:| -3311 (-563))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-473)) (-6 (-473)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -3930 ((-3 (-640 $) "failed") $)) (-15 -3479 ((-3 (-2 (|:| -2310 (-563)) (|:| |var| (-609 $))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |t#1| (-1045)) (PROGN (-6 (-1045)) (-6 (-1034 (-948 |t#1|))) (-6 (-896 (-1169))) (-6 (-377 |t#1|)) (-15 -1692 ($ (-1118 |t#1| (-609 $)))) (-15 -2143 ((-1118 |t#1| (-609 $)) $)) (-15 -2043 ($ $)) (-15 -3949 ((-3 (-2 (|:| |var| (-609 $)) (|:| -3311 (-563))) "failed") $ (-114))) (-15 -3949 ((-3 (-2 (|:| |var| (-609 $)) (|:| -3311 (-563))) "failed") $ (-1169))) (-15 -3959 ((-3 (-2 (|:| |val| $) (|:| -3311 (-563))) "failed") $)) (-15 -1542 ($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ $)))) (-15 -1542 ($ $ (-640 (-1169)) (-640 (-767)) (-640 (-1 $ (-640 $))))) (-15 -1542 ($ $ (-1169) (-767) (-1 $ (-640 $)))) (-15 -1542 ($ $ (-1169) (-767) (-1 $ $)))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-172)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-555)) (PROGN (-6 (-363)) (-6 (-1034 (-407 (-948 |t#1|)))) (-15 -2219 ($ (-418 $))) (-15 -2153 ((-1118 |t#1| (-609 $)) $)) (-15 -2033 ($ $)) (-15 -1836 ($ (-1118 |t#1| (-609 $)) (-1118 |t#1| (-609 $)))) (-15 -1692 ($ (-407 |t#1|))) (-15 -1692 ($ (-948 (-407 |t#1|)))) (-15 -1692 ($ (-407 (-948 (-407 |t#1|))))) (-15 -2138 ((-407 (-1165 $)) $ (-609 $))) (IF (|has| |t#1| (-1034 (-563))) (-6 (-1034 (-407 (-563)))) |%noBranch|)) |%noBranch|)))
+(((-21) -4034 (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145)) (|has| |#1| (-21))) ((-23) -4034 (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-25) -4034 (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-38 #0=(-407 (-563))) |has| |#1| (-555)) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-555)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-555)) ((-111 |#1| |#1|) |has| |#1| (-172)) ((-111 $ $) |has| |#1| (-555)) ((-131) -4034 (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145)) (|has| |#1| (-21))) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) -4034 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-555))) ((-613 #1=(-407 (-948 |#1|))) |has| |#1| (-555)) ((-613 (-563)) -4034 (|has| |#1| (-1045)) (|has| |#1| (-1034 (-563))) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-613 #2=(-609 $)) . T) ((-613 #3=(-948 |#1|)) |has| |#1| (-1045)) ((-613 #4=(-1169)) . T) ((-613 |#1|) . T) ((-613 $) |has| |#1| (-555)) ((-610 (-858)) . T) ((-172) |has| |#1| (-555)) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-611 (-888 (-379))) |has| |#1| (-611 (-888 (-379)))) ((-611 (-888 (-563))) |has| |#1| (-611 (-888 (-563)))) ((-243) |has| |#1| (-555)) ((-290) |has| |#1| (-555)) ((-307) |has| |#1| (-555)) ((-309 $) . T) ((-302) . T) ((-363) |has| |#1| (-555)) ((-377 |#1|) |has| |#1| (-1045)) ((-400 |#1|) . T) ((-411 |#1|) . T) ((-452) |has| |#1| (-555)) ((-473) |has| |#1| (-473)) ((-514 (-609 $) $) . T) ((-514 $ $) . T) ((-555) |has| |#1| (-555)) ((-643 #0#) |has| |#1| (-555)) ((-643 |#1|) |has| |#1| (-172)) ((-643 $) -4034 (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-636 (-563)) -12 (|has| |#1| (-636 (-563))) (|has| |#1| (-1045))) ((-636 |#1|) |has| |#1| (-1045)) ((-713 #0#) |has| |#1| (-555)) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) |has| |#1| (-555)) ((-722) -4034 (|has| |#1| (-1105)) (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-473)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-846) . T) ((-896 (-1169)) |has| |#1| (-1045)) ((-882 (-379)) |has| |#1| (-882 (-379))) ((-882 (-563)) |has| |#1| (-882 (-563))) ((-880 |#1|) . T) ((-916) |has| |#1| (-555)) ((-1034 (-407 (-563))) -4034 (|has| |#1| (-1034 (-407 (-563)))) (-12 (|has| |#1| (-555)) (|has| |#1| (-1034 (-563))))) ((-1034 #1#) |has| |#1| (-555)) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 #2#) . T) ((-1034 #3#) |has| |#1| (-1045)) ((-1034 #4#) . T) ((-1034 |#1|) . T) ((-1051 #0#) |has| |#1| (-555)) ((-1051 |#1|) |has| |#1| (-172)) ((-1051 $) |has| |#1| (-555)) ((-1045) -4034 (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-1052) -4034 (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-1105) -4034 (|has| |#1| (-1105)) (|has| |#1| (-1045)) (|has| |#1| (-555)) (|has| |#1| (-473)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-1093) . T) ((-1208) . T) ((-1212) |has| |#1| (-555)))
+((-1496 ((|#2| |#2| |#2|) 31)) (-2559 (((-114) (-114)) 43)) (-3615 ((|#2| |#2|) 63)) (-3604 ((|#2| |#2|) 66)) (-1485 ((|#2| |#2|) 30)) (-1534 ((|#2| |#2| |#2|) 33)) (-1558 ((|#2| |#2| |#2|) 35)) (-1521 ((|#2| |#2| |#2|) 32)) (-1545 ((|#2| |#2| |#2|) 34)) (-2512 (((-112) (-114)) 41)) (-1583 ((|#2| |#2|) 37)) (-1570 ((|#2| |#2|) 36)) (-1462 ((|#2| |#2|) 25)) (-1507 ((|#2| |#2| |#2|) 28) ((|#2| |#2|) 26)) (-1474 ((|#2| |#2| |#2|) 29)))
+(((-431 |#1| |#2|) (-10 -7 (-15 -2512 ((-112) (-114))) (-15 -2559 ((-114) (-114))) (-15 -1462 (|#2| |#2|)) (-15 -1507 (|#2| |#2|)) (-15 -1507 (|#2| |#2| |#2|)) (-15 -1474 (|#2| |#2| |#2|)) (-15 -1485 (|#2| |#2|)) (-15 -1496 (|#2| |#2| |#2|)) (-15 -1521 (|#2| |#2| |#2|)) (-15 -1534 (|#2| |#2| |#2|)) (-15 -1545 (|#2| |#2| |#2|)) (-15 -1558 (|#2| |#2| |#2|)) (-15 -1570 (|#2| |#2|)) (-15 -1583 (|#2| |#2|)) (-15 -3604 (|#2| |#2|)) (-15 -3615 (|#2| |#2|))) (-13 (-846) (-555)) (-430 |#1|)) (T -431))
+((-3615 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-3604 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1583 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1570 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1558 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1545 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1534 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1521 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1496 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1485 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1474 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1507 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1507 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-1462 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2)) (-4 *2 (-430 *3)))) (-2559 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *4)) (-4 *4 (-430 *3)))) (-2512 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112)) (-5 *1 (-431 *4 *5)) (-4 *5 (-430 *4)))))
+(-10 -7 (-15 -2512 ((-112) (-114))) (-15 -2559 ((-114) (-114))) (-15 -1462 (|#2| |#2|)) (-15 -1507 (|#2| |#2|)) (-15 -1507 (|#2| |#2| |#2|)) (-15 -1474 (|#2| |#2| |#2|)) (-15 -1485 (|#2| |#2|)) (-15 -1496 (|#2| |#2| |#2|)) (-15 -1521 (|#2| |#2| |#2|)) (-15 -1534 (|#2| |#2| |#2|)) (-15 -1545 (|#2| |#2| |#2|)) (-15 -1558 (|#2| |#2| |#2|)) (-15 -1570 (|#2| |#2|)) (-15 -1583 (|#2| |#2|)) (-15 -3604 (|#2| |#2|)) (-15 -3615 (|#2| |#2|)))
+((-4036 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1165 |#2|)) (|:| |pol2| (-1165 |#2|)) (|:| |prim| (-1165 |#2|))) |#2| |#2|) 96 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-640 (-1165 |#2|))) (|:| |prim| (-1165 |#2|))) (-640 |#2|)) 61)))
+(((-432 |#1| |#2|) (-10 -7 (-15 -4036 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-640 (-1165 |#2|))) (|:| |prim| (-1165 |#2|))) (-640 |#2|))) (IF (|has| |#2| (-27)) (-15 -4036 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1165 |#2|)) (|:| |pol2| (-1165 |#2|)) (|:| |prim| (-1165 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-555) (-846) (-147)) (-430 |#1|)) (T -432))
+((-4036 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-555) (-846) (-147))) (-5 *2 (-2 (|:| |primelt| *3) (|:| |pol1| (-1165 *3)) (|:| |pol2| (-1165 *3)) (|:| |prim| (-1165 *3)))) (-5 *1 (-432 *4 *3)) (-4 *3 (-27)) (-4 *3 (-430 *4)))) (-4036 (*1 *2 *3) (-12 (-5 *3 (-640 *5)) (-4 *5 (-430 *4)) (-4 *4 (-13 (-555) (-846) (-147))) (-5 *2 (-2 (|:| |primelt| *5) (|:| |poly| (-640 (-1165 *5))) (|:| |prim| (-1165 *5)))) (-5 *1 (-432 *4 *5)))))
+(-10 -7 (-15 -4036 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-640 (-1165 |#2|))) (|:| |prim| (-1165 |#2|))) (-640 |#2|))) (IF (|has| |#2| (-27)) (-15 -4036 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1165 |#2|)) (|:| |pol2| (-1165 |#2|)) (|:| |prim| (-1165 |#2|))) |#2| |#2|)) |%noBranch|))
+((-3639 (((-1262)) 19)) (-3627 (((-1165 (-407 (-563))) |#2| (-609 |#2|)) 41) (((-407 (-563)) |#2|) 25)))
+(((-433 |#1| |#2|) (-10 -7 (-15 -3627 ((-407 (-563)) |#2|)) (-15 -3627 ((-1165 (-407 (-563))) |#2| (-609 |#2|))) (-15 -3639 ((-1262)))) (-13 (-846) (-555) (-1034 (-563))) (-430 |#1|)) (T -433))
+((-3639 (*1 *2) (-12 (-4 *3 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-1262)) (-5 *1 (-433 *3 *4)) (-4 *4 (-430 *3)))) (-3627 (*1 *2 *3 *4) (-12 (-5 *4 (-609 *3)) (-4 *3 (-430 *5)) (-4 *5 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-433 *5 *3)))) (-3627 (*1 *2 *3) (-12 (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-407 (-563))) (-5 *1 (-433 *4 *3)) (-4 *3 (-430 *4)))))
+(-10 -7 (-15 -3627 ((-407 (-563)) |#2|)) (-15 -3627 ((-1165 (-407 (-563))) |#2| (-609 |#2|))) (-15 -3639 ((-1262))))
+((-2927 (((-112) $) 28)) (-3649 (((-112) $) 30)) (-2736 (((-112) $) 31)) (-3671 (((-112) $) 34)) (-3696 (((-112) $) 29)) (-3683 (((-112) $) 33)) (-1692 (((-858) $) 18) (($ (-1151)) 27) (($ (-1169)) 23) (((-1169) $) 22) (((-1097) $) 21)) (-3660 (((-112) $) 32)) (-1718 (((-112) $ $) 15)))
+(((-434) (-13 (-610 (-858)) (-10 -8 (-15 -1692 ($ (-1151))) (-15 -1692 ($ (-1169))) (-15 -1692 ((-1169) $)) (-15 -1692 ((-1097) $)) (-15 -2927 ((-112) $)) (-15 -3696 ((-112) $)) (-15 -2736 ((-112) $)) (-15 -3683 ((-112) $)) (-15 -3671 ((-112) $)) (-15 -3660 ((-112) $)) (-15 -3649 ((-112) $)) (-15 -1718 ((-112) $ $))))) (T -434))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-434)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-434)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-434)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-434)))) (-2927 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))) (-3696 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))) (-2736 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))) (-3683 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))) (-3671 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))) (-3660 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))) (-3649 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))) (-1718 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))))
+(-13 (-610 (-858)) (-10 -8 (-15 -1692 ($ (-1151))) (-15 -1692 ($ (-1169))) (-15 -1692 ((-1169) $)) (-15 -1692 ((-1097) $)) (-15 -2927 ((-112) $)) (-15 -3696 ((-112) $)) (-15 -2736 ((-112) $)) (-15 -3683 ((-112) $)) (-15 -3671 ((-112) $)) (-15 -3660 ((-112) $)) (-15 -3649 ((-112) $)) (-15 -1718 ((-112) $ $))))
+((-3723 (((-3 (-418 (-1165 (-407 (-563)))) "failed") |#3|) 70)) (-3709 (((-418 |#3|) |#3|) 34)) (-3746 (((-3 (-418 (-1165 (-48))) "failed") |#3|) 46 (|has| |#2| (-1034 (-48))))) (-3735 (((-3 (|:| |overq| (-1165 (-407 (-563)))) (|:| |overan| (-1165 (-48))) (|:| -4245 (-112))) |#3|) 37)))
+(((-435 |#1| |#2| |#3|) (-10 -7 (-15 -3709 ((-418 |#3|) |#3|)) (-15 -3723 ((-3 (-418 (-1165 (-407 (-563)))) "failed") |#3|)) (-15 -3735 ((-3 (|:| |overq| (-1165 (-407 (-563)))) (|:| |overan| (-1165 (-48))) (|:| -4245 (-112))) |#3|)) (IF (|has| |#2| (-1034 (-48))) (-15 -3746 ((-3 (-418 (-1165 (-48))) "failed") |#3|)) |%noBranch|)) (-13 (-555) (-846) (-1034 (-563))) (-430 |#1|) (-1233 |#2|)) (T -435))
+((-3746 (*1 *2 *3) (|partial| -12 (-4 *5 (-1034 (-48))) (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-4 *5 (-430 *4)) (-5 *2 (-418 (-1165 (-48)))) (-5 *1 (-435 *4 *5 *3)) (-4 *3 (-1233 *5)))) (-3735 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-4 *5 (-430 *4)) (-5 *2 (-3 (|:| |overq| (-1165 (-407 (-563)))) (|:| |overan| (-1165 (-48))) (|:| -4245 (-112)))) (-5 *1 (-435 *4 *5 *3)) (-4 *3 (-1233 *5)))) (-3723 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-4 *5 (-430 *4)) (-5 *2 (-418 (-1165 (-407 (-563))))) (-5 *1 (-435 *4 *5 *3)) (-4 *3 (-1233 *5)))) (-3709 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-4 *5 (-430 *4)) (-5 *2 (-418 *3)) (-5 *1 (-435 *4 *5 *3)) (-4 *3 (-1233 *5)))))
+(-10 -7 (-15 -3709 ((-418 |#3|) |#3|)) (-15 -3723 ((-3 (-418 (-1165 (-407 (-563)))) "failed") |#3|)) (-15 -3735 ((-3 (|:| |overq| (-1165 (-407 (-563)))) (|:| |overan| (-1165 (-48))) (|:| -4245 (-112))) |#3|)) (IF (|has| |#2| (-1034 (-48))) (-15 -3746 ((-3 (-418 (-1165 (-48))) "failed") |#3|)) |%noBranch|))
+((-1677 (((-112) $ $) NIL)) (-1862 (((-1151) $ (-1151)) NIL)) (-1905 (($ $ (-1151)) NIL)) (-1872 (((-1151) $) NIL)) (-2683 (((-388) (-388) (-388)) 17) (((-388) (-388)) 15)) (-3409 (($ (-388)) NIL) (($ (-388) (-1151)) NIL)) (-3352 (((-388) $) NIL)) (-3854 (((-1151) $) NIL)) (-1883 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2675 (((-1262) (-1151)) 9)) (-2664 (((-1262) (-1151)) 10)) (-2656 (((-1262)) 11)) (-1692 (((-858) $) NIL)) (-1895 (($ $) 34)) (-1718 (((-112) $ $) NIL)))
+(((-436) (-13 (-364 (-388) (-1151)) (-10 -7 (-15 -2683 ((-388) (-388) (-388))) (-15 -2683 ((-388) (-388))) (-15 -2675 ((-1262) (-1151))) (-15 -2664 ((-1262) (-1151))) (-15 -2656 ((-1262)))))) (T -436))
+((-2683 (*1 *2 *2 *2) (-12 (-5 *2 (-388)) (-5 *1 (-436)))) (-2683 (*1 *2 *2) (-12 (-5 *2 (-388)) (-5 *1 (-436)))) (-2675 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-436)))) (-2664 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-436)))) (-2656 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-436)))))
+(-13 (-364 (-388) (-1151)) (-10 -7 (-15 -2683 ((-388) (-388) (-388))) (-15 -2683 ((-388) (-388))) (-15 -2675 ((-1262) (-1151))) (-15 -2664 ((-1262) (-1151))) (-15 -2656 ((-1262)))))
+((-1677 (((-112) $ $) NIL)) (-2647 (((-3 (|:| |fst| (-434)) (|:| -3785 "void")) $) 11)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2628 (($) 32)) (-2601 (($) 38)) (-2610 (($) 34)) (-3768 (($) 36)) (-2621 (($) 33)) (-3778 (($) 35)) (-3756 (($) 37)) (-2638 (((-112) $) 8)) (-1703 (((-640 (-948 (-563))) $) 19)) (-1706 (($ (-3 (|:| |fst| (-434)) (|:| -3785 "void")) (-640 (-1169)) (-112)) 27) (($ (-3 (|:| |fst| (-434)) (|:| -3785 "void")) (-640 (-948 (-563))) (-112)) 28)) (-1692 (((-858) $) 23) (($ (-434)) 29)) (-1718 (((-112) $ $) NIL)))
+(((-437) (-13 (-1093) (-10 -8 (-15 -1692 ($ (-434))) (-15 -2647 ((-3 (|:| |fst| (-434)) (|:| -3785 "void")) $)) (-15 -1703 ((-640 (-948 (-563))) $)) (-15 -2638 ((-112) $)) (-15 -1706 ($ (-3 (|:| |fst| (-434)) (|:| -3785 "void")) (-640 (-1169)) (-112))) (-15 -1706 ($ (-3 (|:| |fst| (-434)) (|:| -3785 "void")) (-640 (-948 (-563))) (-112))) (-15 -2628 ($)) (-15 -2621 ($)) (-15 -2610 ($)) (-15 -2601 ($)) (-15 -3778 ($)) (-15 -3768 ($)) (-15 -3756 ($))))) (T -437))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-434)) (-5 *1 (-437)))) (-2647 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-5 *1 (-437)))) (-1703 (*1 *2 *1) (-12 (-5 *2 (-640 (-948 (-563)))) (-5 *1 (-437)))) (-2638 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-437)))) (-1706 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-5 *3 (-640 (-1169))) (-5 *4 (-112)) (-5 *1 (-437)))) (-1706 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-112)) (-5 *1 (-437)))) (-2628 (*1 *1) (-5 *1 (-437))) (-2621 (*1 *1) (-5 *1 (-437))) (-2610 (*1 *1) (-5 *1 (-437))) (-2601 (*1 *1) (-5 *1 (-437))) (-3778 (*1 *1) (-5 *1 (-437))) (-3768 (*1 *1) (-5 *1 (-437))) (-3756 (*1 *1) (-5 *1 (-437))))
+(-13 (-1093) (-10 -8 (-15 -1692 ($ (-434))) (-15 -2647 ((-3 (|:| |fst| (-434)) (|:| -3785 "void")) $)) (-15 -1703 ((-640 (-948 (-563))) $)) (-15 -2638 ((-112) $)) (-15 -1706 ($ (-3 (|:| |fst| (-434)) (|:| -3785 "void")) (-640 (-1169)) (-112))) (-15 -1706 ($ (-3 (|:| |fst| (-434)) (|:| -3785 "void")) (-640 (-948 (-563))) (-112))) (-15 -2628 ($)) (-15 -2621 ($)) (-15 -2610 ($)) (-15 -2601 ($)) (-15 -3778 ($)) (-15 -3768 ($)) (-15 -3756 ($))))
+((-1677 (((-112) $ $) NIL)) (-3352 (((-1169) $) 8)) (-3854 (((-1151) $) 16)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 11)) (-1718 (((-112) $ $) 13)))
+(((-438 |#1|) (-13 (-1093) (-10 -8 (-15 -3352 ((-1169) $)))) (-1169)) (T -438))
+((-3352 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-438 *3)) (-14 *3 *2))))
+(-13 (-1093) (-10 -8 (-15 -3352 ((-1169) $))))
+((-1677 (((-112) $ $) NIL)) (-2922 (((-1111) $) 7)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 13)) (-1718 (((-112) $ $) 9)))
+(((-439) (-13 (-1093) (-10 -8 (-15 -2922 ((-1111) $))))) (T -439))
+((-2922 (*1 *2 *1) (-12 (-5 *2 (-1111)) (-5 *1 (-439)))))
+(-13 (-1093) (-10 -8 (-15 -2922 ((-1111) $))))
+((-2615 (((-1262) $) 7)) (-1692 (((-858) $) 8) (($ (-1257 (-694))) 14) (($ (-640 (-330))) 13) (($ (-330)) 12) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 11)))
(((-440) (-140)) (T -440))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1257 (-694))) (-4 *1 (-440)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-4 *1 (-440)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-330)) (-4 *1 (-440)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) (-4 *1 (-440)))))
-(-13 (-395) (-10 -8 (-15 -1693 ($ (-1257 (-694)))) (-15 -1693 ($ (-640 (-330)))) (-15 -1693 ($ (-330))) (-15 -1693 ($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))))))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1257 (-694))) (-4 *1 (-440)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-4 *1 (-440)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-330)) (-4 *1 (-440)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) (-4 *1 (-440)))))
+(-13 (-395) (-10 -8 (-15 -1692 ($ (-1257 (-694)))) (-15 -1692 ($ (-640 (-330)))) (-15 -1692 ($ (-330))) (-15 -1692 ($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))))))
(((-610 (-858)) . T) ((-395) . T) ((-1208) . T))
-((-2131 (((-3 $ "failed") (-1257 (-316 (-379)))) 21) (((-3 $ "failed") (-1257 (-316 (-563)))) 19) (((-3 $ "failed") (-1257 (-948 (-379)))) 17) (((-3 $ "failed") (-1257 (-948 (-563)))) 15) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 13) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 11)) (-2058 (($ (-1257 (-316 (-379)))) 22) (($ (-1257 (-316 (-563)))) 20) (($ (-1257 (-948 (-379)))) 18) (($ (-1257 (-948 (-563)))) 16) (($ (-1257 (-407 (-948 (-379))))) 14) (($ (-1257 (-407 (-948 (-563))))) 12)) (-2615 (((-1262) $) 7)) (-1693 (((-858) $) 8) (($ (-640 (-330))) 25) (($ (-330)) 24) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) 23)))
+((-2130 (((-3 $ "failed") (-1257 (-316 (-379)))) 21) (((-3 $ "failed") (-1257 (-316 (-563)))) 19) (((-3 $ "failed") (-1257 (-948 (-379)))) 17) (((-3 $ "failed") (-1257 (-948 (-563)))) 15) (((-3 $ "failed") (-1257 (-407 (-948 (-379))))) 13) (((-3 $ "failed") (-1257 (-407 (-948 (-563))))) 11)) (-2057 (($ (-1257 (-316 (-379)))) 22) (($ (-1257 (-316 (-563)))) 20) (($ (-1257 (-948 (-379)))) 18) (($ (-1257 (-948 (-563)))) 16) (($ (-1257 (-407 (-948 (-379))))) 14) (($ (-1257 (-407 (-948 (-563))))) 12)) (-2615 (((-1262) $) 7)) (-1692 (((-858) $) 8) (($ (-640 (-330))) 25) (($ (-330)) 24) (($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) 23)))
(((-441) (-140)) (T -441))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-4 *1 (-441)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-330)) (-4 *1 (-441)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330))))) (-4 *1 (-441)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-1257 (-316 (-379)))) (-4 *1 (-441)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-1257 (-316 (-379)))) (-4 *1 (-441)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-1257 (-316 (-563)))) (-4 *1 (-441)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-1257 (-316 (-563)))) (-4 *1 (-441)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-1257 (-948 (-379)))) (-4 *1 (-441)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-1257 (-948 (-379)))) (-4 *1 (-441)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-1257 (-948 (-563)))) (-4 *1 (-441)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-1257 (-948 (-563)))) (-4 *1 (-441)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-1257 (-407 (-948 (-379))))) (-4 *1 (-441)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-1257 (-407 (-948 (-379))))) (-4 *1 (-441)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-1257 (-407 (-948 (-563))))) (-4 *1 (-441)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-1257 (-407 (-948 (-563))))) (-4 *1 (-441)))))
-(-13 (-395) (-10 -8 (-15 -1693 ($ (-640 (-330)))) (-15 -1693 ($ (-330))) (-15 -1693 ($ (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330)))))) (-15 -2058 ($ (-1257 (-316 (-379))))) (-15 -2131 ((-3 $ "failed") (-1257 (-316 (-379))))) (-15 -2058 ($ (-1257 (-316 (-563))))) (-15 -2131 ((-3 $ "failed") (-1257 (-316 (-563))))) (-15 -2058 ($ (-1257 (-948 (-379))))) (-15 -2131 ((-3 $ "failed") (-1257 (-948 (-379))))) (-15 -2058 ($ (-1257 (-948 (-563))))) (-15 -2131 ((-3 $ "failed") (-1257 (-948 (-563))))) (-15 -2058 ($ (-1257 (-407 (-948 (-379)))))) (-15 -2131 ((-3 $ "failed") (-1257 (-407 (-948 (-379)))))) (-15 -2058 ($ (-1257 (-407 (-948 (-563)))))) (-15 -2131 ((-3 $ "failed") (-1257 (-407 (-948 (-563))))))))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-4 *1 (-441)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-330)) (-4 *1 (-441)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330))))) (-4 *1 (-441)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-1257 (-316 (-379)))) (-4 *1 (-441)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-1257 (-316 (-379)))) (-4 *1 (-441)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-1257 (-316 (-563)))) (-4 *1 (-441)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-1257 (-316 (-563)))) (-4 *1 (-441)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-1257 (-948 (-379)))) (-4 *1 (-441)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-1257 (-948 (-379)))) (-4 *1 (-441)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-1257 (-948 (-563)))) (-4 *1 (-441)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-1257 (-948 (-563)))) (-4 *1 (-441)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-1257 (-407 (-948 (-379))))) (-4 *1 (-441)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-1257 (-407 (-948 (-379))))) (-4 *1 (-441)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-1257 (-407 (-948 (-563))))) (-4 *1 (-441)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-1257 (-407 (-948 (-563))))) (-4 *1 (-441)))))
+(-13 (-395) (-10 -8 (-15 -1692 ($ (-640 (-330)))) (-15 -1692 ($ (-330))) (-15 -1692 ($ (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330)))))) (-15 -2057 ($ (-1257 (-316 (-379))))) (-15 -2130 ((-3 $ "failed") (-1257 (-316 (-379))))) (-15 -2057 ($ (-1257 (-316 (-563))))) (-15 -2130 ((-3 $ "failed") (-1257 (-316 (-563))))) (-15 -2057 ($ (-1257 (-948 (-379))))) (-15 -2130 ((-3 $ "failed") (-1257 (-948 (-379))))) (-15 -2057 ($ (-1257 (-948 (-563))))) (-15 -2130 ((-3 $ "failed") (-1257 (-948 (-563))))) (-15 -2057 ($ (-1257 (-407 (-948 (-379)))))) (-15 -2130 ((-3 $ "failed") (-1257 (-407 (-948 (-379)))))) (-15 -2057 ($ (-1257 (-407 (-948 (-563)))))) (-15 -2130 ((-3 $ "failed") (-1257 (-407 (-948 (-563))))))))
(((-610 (-858)) . T) ((-395) . T) ((-1208) . T))
-((-2248 (((-112)) 17)) (-3956 (((-112) (-112)) 18)) (-2873 (((-112)) 13)) (-2081 (((-112) (-112)) 14)) (-3980 (((-112)) 15)) (-4295 (((-112) (-112)) 16)) (-4289 (((-917) (-917)) 21) (((-917)) 20)) (-2718 (((-767) (-640 (-2 (|:| -2174 |#1|) (|:| -4167 (-563))))) 41)) (-2121 (((-917) (-917)) 23) (((-917)) 22)) (-2763 (((-2 (|:| -2858 (-563)) (|:| -2760 (-640 |#1|))) |#1|) 61)) (-4157 (((-418 |#1|) (-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| |#1|) (|:| -1650 (-563))))))) 126)) (-3645 (((-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| |#1|) (|:| -1650 (-563)))))) |#1| (-112)) 152)) (-2184 (((-418 |#1|) |#1| (-767) (-767)) 165) (((-418 |#1|) |#1| (-640 (-767)) (-767)) 162) (((-418 |#1|) |#1| (-640 (-767))) 164) (((-418 |#1|) |#1| (-767)) 163) (((-418 |#1|) |#1|) 161)) (-1549 (((-3 |#1| "failed") (-917) |#1| (-640 (-767)) (-767) (-112)) 167) (((-3 |#1| "failed") (-917) |#1| (-640 (-767)) (-767)) 168) (((-3 |#1| "failed") (-917) |#1| (-640 (-767))) 170) (((-3 |#1| "failed") (-917) |#1| (-767)) 169) (((-3 |#1| "failed") (-917) |#1|) 171)) (-2174 (((-418 |#1|) |#1| (-767) (-767)) 160) (((-418 |#1|) |#1| (-640 (-767)) (-767)) 156) (((-418 |#1|) |#1| (-640 (-767))) 158) (((-418 |#1|) |#1| (-767)) 157) (((-418 |#1|) |#1|) 155)) (-2102 (((-112) |#1|) 36)) (-1753 (((-733 (-767)) (-640 (-2 (|:| -2174 |#1|) (|:| -4167 (-563))))) 66)) (-1834 (((-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| |#1|) (|:| -1650 (-563)))))) |#1| (-112) (-1095 (-767)) (-767)) 154)))
-(((-442 |#1|) (-10 -7 (-15 -4157 ((-418 |#1|) (-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| |#1|) (|:| -1650 (-563)))))))) (-15 -1753 ((-733 (-767)) (-640 (-2 (|:| -2174 |#1|) (|:| -4167 (-563)))))) (-15 -2121 ((-917))) (-15 -2121 ((-917) (-917))) (-15 -4289 ((-917))) (-15 -4289 ((-917) (-917))) (-15 -2718 ((-767) (-640 (-2 (|:| -2174 |#1|) (|:| -4167 (-563)))))) (-15 -2763 ((-2 (|:| -2858 (-563)) (|:| -2760 (-640 |#1|))) |#1|)) (-15 -2248 ((-112))) (-15 -3956 ((-112) (-112))) (-15 -2873 ((-112))) (-15 -2081 ((-112) (-112))) (-15 -2102 ((-112) |#1|)) (-15 -3980 ((-112))) (-15 -4295 ((-112) (-112))) (-15 -2174 ((-418 |#1|) |#1|)) (-15 -2174 ((-418 |#1|) |#1| (-767))) (-15 -2174 ((-418 |#1|) |#1| (-640 (-767)))) (-15 -2174 ((-418 |#1|) |#1| (-640 (-767)) (-767))) (-15 -2174 ((-418 |#1|) |#1| (-767) (-767))) (-15 -2184 ((-418 |#1|) |#1|)) (-15 -2184 ((-418 |#1|) |#1| (-767))) (-15 -2184 ((-418 |#1|) |#1| (-640 (-767)))) (-15 -2184 ((-418 |#1|) |#1| (-640 (-767)) (-767))) (-15 -2184 ((-418 |#1|) |#1| (-767) (-767))) (-15 -1549 ((-3 |#1| "failed") (-917) |#1|)) (-15 -1549 ((-3 |#1| "failed") (-917) |#1| (-767))) (-15 -1549 ((-3 |#1| "failed") (-917) |#1| (-640 (-767)))) (-15 -1549 ((-3 |#1| "failed") (-917) |#1| (-640 (-767)) (-767))) (-15 -1549 ((-3 |#1| "failed") (-917) |#1| (-640 (-767)) (-767) (-112))) (-15 -3645 ((-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| |#1|) (|:| -1650 (-563)))))) |#1| (-112))) (-15 -1834 ((-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| |#1|) (|:| -1650 (-563)))))) |#1| (-112) (-1095 (-767)) (-767)))) (-1233 (-563))) (T -442))
-((-1834 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-112)) (-5 *5 (-1095 (-767))) (-5 *6 (-767)) (-5 *2 (-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| *3) (|:| -1650 (-563))))))) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-3645 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| *3) (|:| -1650 (-563))))))) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-1549 (*1 *2 *3 *2 *4 *5 *6) (|partial| -12 (-5 *3 (-917)) (-5 *4 (-640 (-767))) (-5 *5 (-767)) (-5 *6 (-112)) (-5 *1 (-442 *2)) (-4 *2 (-1233 (-563))))) (-1549 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *3 (-917)) (-5 *4 (-640 (-767))) (-5 *5 (-767)) (-5 *1 (-442 *2)) (-4 *2 (-1233 (-563))))) (-1549 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-917)) (-5 *4 (-640 (-767))) (-5 *1 (-442 *2)) (-4 *2 (-1233 (-563))))) (-1549 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-917)) (-5 *4 (-767)) (-5 *1 (-442 *2)) (-4 *2 (-1233 (-563))))) (-1549 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-917)) (-5 *1 (-442 *2)) (-4 *2 (-1233 (-563))))) (-2184 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2184 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-640 (-767))) (-5 *5 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2184 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-767))) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2184 (*1 *2 *3 *4) (-12 (-5 *4 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2184 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2174 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2174 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-640 (-767))) (-5 *5 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2174 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-767))) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2174 (*1 *2 *3 *4) (-12 (-5 *4 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2174 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-4295 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-3980 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2102 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2081 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2873 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-3956 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2248 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2763 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -2858 (-563)) (|:| -2760 (-640 *3)))) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2718 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -2174 *4) (|:| -4167 (-563))))) (-4 *4 (-1233 (-563))) (-5 *2 (-767)) (-5 *1 (-442 *4)))) (-4289 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-4289 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2121 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2121 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-1753 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -2174 *4) (|:| -4167 (-563))))) (-4 *4 (-1233 (-563))) (-5 *2 (-733 (-767))) (-5 *1 (-442 *4)))) (-4157 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| *4) (|:| -1650 (-563))))))) (-4 *4 (-1233 (-563))) (-5 *2 (-418 *4)) (-5 *1 (-442 *4)))))
-(-10 -7 (-15 -4157 ((-418 |#1|) (-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| |#1|) (|:| -1650 (-563)))))))) (-15 -1753 ((-733 (-767)) (-640 (-2 (|:| -2174 |#1|) (|:| -4167 (-563)))))) (-15 -2121 ((-917))) (-15 -2121 ((-917) (-917))) (-15 -4289 ((-917))) (-15 -4289 ((-917) (-917))) (-15 -2718 ((-767) (-640 (-2 (|:| -2174 |#1|) (|:| -4167 (-563)))))) (-15 -2763 ((-2 (|:| -2858 (-563)) (|:| -2760 (-640 |#1|))) |#1|)) (-15 -2248 ((-112))) (-15 -3956 ((-112) (-112))) (-15 -2873 ((-112))) (-15 -2081 ((-112) (-112))) (-15 -2102 ((-112) |#1|)) (-15 -3980 ((-112))) (-15 -4295 ((-112) (-112))) (-15 -2174 ((-418 |#1|) |#1|)) (-15 -2174 ((-418 |#1|) |#1| (-767))) (-15 -2174 ((-418 |#1|) |#1| (-640 (-767)))) (-15 -2174 ((-418 |#1|) |#1| (-640 (-767)) (-767))) (-15 -2174 ((-418 |#1|) |#1| (-767) (-767))) (-15 -2184 ((-418 |#1|) |#1|)) (-15 -2184 ((-418 |#1|) |#1| (-767))) (-15 -2184 ((-418 |#1|) |#1| (-640 (-767)))) (-15 -2184 ((-418 |#1|) |#1| (-640 (-767)) (-767))) (-15 -2184 ((-418 |#1|) |#1| (-767) (-767))) (-15 -1549 ((-3 |#1| "failed") (-917) |#1|)) (-15 -1549 ((-3 |#1| "failed") (-917) |#1| (-767))) (-15 -1549 ((-3 |#1| "failed") (-917) |#1| (-640 (-767)))) (-15 -1549 ((-3 |#1| "failed") (-917) |#1| (-640 (-767)) (-767))) (-15 -1549 ((-3 |#1| "failed") (-917) |#1| (-640 (-767)) (-767) (-112))) (-15 -3645 ((-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| |#1|) (|:| -1650 (-563)))))) |#1| (-112))) (-15 -1834 ((-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| |#1|) (|:| -1650 (-563)))))) |#1| (-112) (-1095 (-767)) (-767))))
-((-3509 (((-563) |#2|) 48) (((-563) |#2| (-767)) 47)) (-1515 (((-563) |#2|) 55)) (-4057 ((|#3| |#2|) 25)) (-3793 ((|#3| |#2| (-917)) 14)) (-3415 ((|#3| |#2|) 15)) (-2262 ((|#3| |#2|) 9)) (-4236 ((|#3| |#2|) 10)) (-1886 ((|#3| |#2| (-917)) 62) ((|#3| |#2|) 30)) (-3342 (((-563) |#2|) 57)))
-(((-443 |#1| |#2| |#3|) (-10 -7 (-15 -3342 ((-563) |#2|)) (-15 -1886 (|#3| |#2|)) (-15 -1886 (|#3| |#2| (-917))) (-15 -1515 ((-563) |#2|)) (-15 -3509 ((-563) |#2| (-767))) (-15 -3509 ((-563) |#2|)) (-15 -3793 (|#3| |#2| (-917))) (-15 -4057 (|#3| |#2|)) (-15 -2262 (|#3| |#2|)) (-15 -4236 (|#3| |#2|)) (-15 -3415 (|#3| |#2|))) (-1045) (-1233 |#1|) (-13 (-404) (-1034 |#1|) (-363) (-1193) (-284))) (T -443))
-((-3415 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))) (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4)))) (-4236 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))) (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4)))) (-2262 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))) (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4)))) (-4057 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))) (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4)))) (-3793 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-4 *5 (-1045)) (-4 *2 (-13 (-404) (-1034 *5) (-363) (-1193) (-284))) (-5 *1 (-443 *5 *3 *2)) (-4 *3 (-1233 *5)))) (-3509 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-443 *4 *3 *5)) (-4 *3 (-1233 *4)) (-4 *5 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))))) (-3509 (*1 *2 *3 *4) (-12 (-5 *4 (-767)) (-4 *5 (-1045)) (-5 *2 (-563)) (-5 *1 (-443 *5 *3 *6)) (-4 *3 (-1233 *5)) (-4 *6 (-13 (-404) (-1034 *5) (-363) (-1193) (-284))))) (-1515 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-443 *4 *3 *5)) (-4 *3 (-1233 *4)) (-4 *5 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))))) (-1886 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-4 *5 (-1045)) (-4 *2 (-13 (-404) (-1034 *5) (-363) (-1193) (-284))) (-5 *1 (-443 *5 *3 *2)) (-4 *3 (-1233 *5)))) (-1886 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))) (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4)))) (-3342 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-443 *4 *3 *5)) (-4 *3 (-1233 *4)) (-4 *5 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))))))
-(-10 -7 (-15 -3342 ((-563) |#2|)) (-15 -1886 (|#3| |#2|)) (-15 -1886 (|#3| |#2| (-917))) (-15 -1515 ((-563) |#2|)) (-15 -3509 ((-563) |#2| (-767))) (-15 -3509 ((-563) |#2|)) (-15 -3793 (|#3| |#2| (-917))) (-15 -4057 (|#3| |#2|)) (-15 -2262 (|#3| |#2|)) (-15 -4236 (|#3| |#2|)) (-15 -3415 (|#3| |#2|)))
-((-3201 ((|#2| (-1257 |#1|)) 36)) (-2850 ((|#2| |#2| |#1|) 49)) (-3628 ((|#2| |#2| |#1|) 41)) (-4382 ((|#2| |#2|) 38)) (-2792 (((-112) |#2|) 30)) (-1297 (((-640 |#2|) (-917) (-418 |#2|)) 17)) (-1549 ((|#2| (-917) (-418 |#2|)) 21)) (-1753 (((-733 (-767)) (-418 |#2|)) 25)))
-(((-444 |#1| |#2|) (-10 -7 (-15 -2792 ((-112) |#2|)) (-15 -3201 (|#2| (-1257 |#1|))) (-15 -4382 (|#2| |#2|)) (-15 -3628 (|#2| |#2| |#1|)) (-15 -2850 (|#2| |#2| |#1|)) (-15 -1753 ((-733 (-767)) (-418 |#2|))) (-15 -1549 (|#2| (-917) (-418 |#2|))) (-15 -1297 ((-640 |#2|) (-917) (-418 |#2|)))) (-1045) (-1233 |#1|)) (T -444))
-((-1297 (*1 *2 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-418 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-1045)) (-5 *2 (-640 *6)) (-5 *1 (-444 *5 *6)))) (-1549 (*1 *2 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-418 *2)) (-4 *2 (-1233 *5)) (-5 *1 (-444 *5 *2)) (-4 *5 (-1045)))) (-1753 (*1 *2 *3) (-12 (-5 *3 (-418 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-1045)) (-5 *2 (-733 (-767))) (-5 *1 (-444 *4 *5)))) (-2850 (*1 *2 *2 *3) (-12 (-4 *3 (-1045)) (-5 *1 (-444 *3 *2)) (-4 *2 (-1233 *3)))) (-3628 (*1 *2 *2 *3) (-12 (-4 *3 (-1045)) (-5 *1 (-444 *3 *2)) (-4 *2 (-1233 *3)))) (-4382 (*1 *2 *2) (-12 (-4 *3 (-1045)) (-5 *1 (-444 *3 *2)) (-4 *2 (-1233 *3)))) (-3201 (*1 *2 *3) (-12 (-5 *3 (-1257 *4)) (-4 *4 (-1045)) (-4 *2 (-1233 *4)) (-5 *1 (-444 *4 *2)))) (-2792 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-5 *2 (-112)) (-5 *1 (-444 *4 *3)) (-4 *3 (-1233 *4)))))
-(-10 -7 (-15 -2792 ((-112) |#2|)) (-15 -3201 (|#2| (-1257 |#1|))) (-15 -4382 (|#2| |#2|)) (-15 -3628 (|#2| |#2| |#1|)) (-15 -2850 (|#2| |#2| |#1|)) (-15 -1753 ((-733 (-767)) (-418 |#2|))) (-15 -1549 (|#2| (-917) (-418 |#2|))) (-15 -1297 ((-640 |#2|) (-917) (-418 |#2|))))
-((-2159 (((-767)) 41)) (-1902 (((-767)) 23 (|has| |#1| (-404))) (((-767) (-767)) 22 (|has| |#1| (-404)))) (-1736 (((-563) |#1|) 18 (|has| |#1| (-404)))) (-4118 (((-563) |#1|) 20 (|has| |#1| (-404)))) (-1790 (((-767)) 40) (((-767) (-767)) 39)) (-3954 ((|#1| (-767) (-563)) 29)) (-2291 (((-1262)) 43)))
-(((-445 |#1|) (-10 -7 (-15 -3954 (|#1| (-767) (-563))) (-15 -1790 ((-767) (-767))) (-15 -1790 ((-767))) (-15 -2159 ((-767))) (-15 -2291 ((-1262))) (IF (|has| |#1| (-404)) (PROGN (-15 -4118 ((-563) |#1|)) (-15 -1736 ((-563) |#1|)) (-15 -1902 ((-767) (-767))) (-15 -1902 ((-767)))) |%noBranch|)) (-1045)) (T -445))
-((-1902 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045)))) (-1902 (*1 *2 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045)))) (-1736 (*1 *2 *3) (-12 (-5 *2 (-563)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045)))) (-4118 (*1 *2 *3) (-12 (-5 *2 (-563)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045)))) (-2291 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-445 *3)) (-4 *3 (-1045)))) (-2159 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-1045)))) (-1790 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-1045)))) (-1790 (*1 *2 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-1045)))) (-3954 (*1 *2 *3 *4) (-12 (-5 *3 (-767)) (-5 *4 (-563)) (-5 *1 (-445 *2)) (-4 *2 (-1045)))))
-(-10 -7 (-15 -3954 (|#1| (-767) (-563))) (-15 -1790 ((-767) (-767))) (-15 -1790 ((-767))) (-15 -2159 ((-767))) (-15 -2291 ((-1262))) (IF (|has| |#1| (-404)) (PROGN (-15 -4118 ((-563) |#1|)) (-15 -1736 ((-563) |#1|)) (-15 -1902 ((-767) (-767))) (-15 -1902 ((-767)))) |%noBranch|))
-((-3253 (((-640 (-563)) (-563)) 60)) (-2468 (((-112) (-169 (-563))) 64)) (-2174 (((-418 (-169 (-563))) (-169 (-563))) 59)))
-(((-446) (-10 -7 (-15 -2174 ((-418 (-169 (-563))) (-169 (-563)))) (-15 -3253 ((-640 (-563)) (-563))) (-15 -2468 ((-112) (-169 (-563)))))) (T -446))
-((-2468 (*1 *2 *3) (-12 (-5 *3 (-169 (-563))) (-5 *2 (-112)) (-5 *1 (-446)))) (-3253 (*1 *2 *3) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-446)) (-5 *3 (-563)))) (-2174 (*1 *2 *3) (-12 (-5 *2 (-418 (-169 (-563)))) (-5 *1 (-446)) (-5 *3 (-169 (-563))))))
-(-10 -7 (-15 -2174 ((-418 (-169 (-563))) (-169 (-563)))) (-15 -3253 ((-640 (-563)) (-563))) (-15 -2468 ((-112) (-169 (-563)))))
-((-1842 ((|#4| |#4| (-640 |#4|)) 60)) (-2129 (((-640 |#4|) (-640 |#4|) (-1151) (-1151)) 17) (((-640 |#4|) (-640 |#4|) (-1151)) 16) (((-640 |#4|) (-640 |#4|)) 11)))
-(((-447 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1842 (|#4| |#4| (-640 |#4|))) (-15 -2129 ((-640 |#4|) (-640 |#4|))) (-15 -2129 ((-640 |#4|) (-640 |#4|) (-1151))) (-15 -2129 ((-640 |#4|) (-640 |#4|) (-1151) (-1151)))) (-307) (-789) (-846) (-945 |#1| |#2| |#3|)) (T -447))
-((-2129 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-307)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-447 *4 *5 *6 *7)))) (-2129 (*1 *2 *2 *3) (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-307)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-447 *4 *5 *6 *7)))) (-2129 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-307)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-447 *3 *4 *5 *6)))) (-1842 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-307)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-447 *4 *5 *6 *2)))))
-(-10 -7 (-15 -1842 (|#4| |#4| (-640 |#4|))) (-15 -2129 ((-640 |#4|) (-640 |#4|))) (-15 -2129 ((-640 |#4|) (-640 |#4|) (-1151))) (-15 -2129 ((-640 |#4|) (-640 |#4|) (-1151) (-1151))))
-((-2280 (((-640 (-640 |#4|)) (-640 |#4|) (-112)) 72) (((-640 (-640 |#4|)) (-640 |#4|)) 71) (((-640 (-640 |#4|)) (-640 |#4|) (-640 |#4|) (-112)) 65) (((-640 (-640 |#4|)) (-640 |#4|) (-640 |#4|)) 66)) (-2851 (((-640 (-640 |#4|)) (-640 |#4|) (-112)) 41) (((-640 (-640 |#4|)) (-640 |#4|)) 62)))
-(((-448 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2851 ((-640 (-640 |#4|)) (-640 |#4|))) (-15 -2851 ((-640 (-640 |#4|)) (-640 |#4|) (-112))) (-15 -2280 ((-640 (-640 |#4|)) (-640 |#4|) (-640 |#4|))) (-15 -2280 ((-640 (-640 |#4|)) (-640 |#4|) (-640 |#4|) (-112))) (-15 -2280 ((-640 (-640 |#4|)) (-640 |#4|))) (-15 -2280 ((-640 (-640 |#4|)) (-640 |#4|) (-112)))) (-13 (-307) (-147)) (-789) (-846) (-945 |#1| |#2| |#3|)) (T -448))
-((-2280 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-640 (-640 *8))) (-5 *1 (-448 *5 *6 *7 *8)) (-5 *3 (-640 *8)))) (-2280 (*1 *2 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-640 (-640 *7))) (-5 *1 (-448 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-2280 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-640 (-640 *8))) (-5 *1 (-448 *5 *6 *7 *8)) (-5 *3 (-640 *8)))) (-2280 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-640 (-640 *7))) (-5 *1 (-448 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-2851 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-640 (-640 *8))) (-5 *1 (-448 *5 *6 *7 *8)) (-5 *3 (-640 *8)))) (-2851 (*1 *2 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-640 (-640 *7))) (-5 *1 (-448 *4 *5 *6 *7)) (-5 *3 (-640 *7)))))
-(-10 -7 (-15 -2851 ((-640 (-640 |#4|)) (-640 |#4|))) (-15 -2851 ((-640 (-640 |#4|)) (-640 |#4|) (-112))) (-15 -2280 ((-640 (-640 |#4|)) (-640 |#4|) (-640 |#4|))) (-15 -2280 ((-640 (-640 |#4|)) (-640 |#4|) (-640 |#4|) (-112))) (-15 -2280 ((-640 (-640 |#4|)) (-640 |#4|))) (-15 -2280 ((-640 (-640 |#4|)) (-640 |#4|) (-112))))
-((-2275 (((-767) |#4|) 12)) (-3516 (((-640 (-2 (|:| |totdeg| (-767)) (|:| -1574 |#4|))) |#4| (-767) (-640 (-2 (|:| |totdeg| (-767)) (|:| -1574 |#4|)))) 31)) (-1318 (((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 37)) (-3828 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 38)) (-2293 ((|#4| |#4| (-640 |#4|)) 39)) (-4181 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-640 |#4|)) 69)) (-1399 (((-1262) |#4|) 41)) (-1865 (((-1262) (-640 |#4|)) 50)) (-1715 (((-563) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-563) (-563) (-563)) 47)) (-3879 (((-1262) (-563)) 78)) (-2395 (((-640 |#4|) (-640 |#4|)) 76)) (-3623 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-767)) (|:| -1574 |#4|)) |#4| (-767)) 25)) (-2897 (((-563) |#4|) 77)) (-3510 ((|#4| |#4|) 29)) (-3184 (((-640 |#4|) (-640 |#4|) (-563) (-563)) 55)) (-2710 (((-563) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-563) (-563) (-563) (-563)) 88)) (-4159 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 16)) (-2214 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 58)) (-1714 (((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 57)) (-1782 (((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 35)) (-2027 (((-112) |#2| |#2|) 56)) (-3546 (((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 36)) (-2258 (((-112) |#2| |#2| |#2| |#2|) 59)) (-3300 ((|#4| |#4| (-640 |#4|)) 70)))
-(((-449 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3300 (|#4| |#4| (-640 |#4|))) (-15 -2293 (|#4| |#4| (-640 |#4|))) (-15 -3184 ((-640 |#4|) (-640 |#4|) (-563) (-563))) (-15 -2214 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2027 ((-112) |#2| |#2|)) (-15 -2258 ((-112) |#2| |#2| |#2| |#2|)) (-15 -3546 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1782 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1714 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4181 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-640 |#4|))) (-15 -3510 (|#4| |#4|)) (-15 -3516 ((-640 (-2 (|:| |totdeg| (-767)) (|:| -1574 |#4|))) |#4| (-767) (-640 (-2 (|:| |totdeg| (-767)) (|:| -1574 |#4|))))) (-15 -3828 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -1318 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2395 ((-640 |#4|) (-640 |#4|))) (-15 -2897 ((-563) |#4|)) (-15 -1399 ((-1262) |#4|)) (-15 -1715 ((-563) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-563) (-563) (-563))) (-15 -2710 ((-563) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-563) (-563) (-563) (-563))) (-15 -1865 ((-1262) (-640 |#4|))) (-15 -3879 ((-1262) (-563))) (-15 -4159 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3623 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-767)) (|:| -1574 |#4|)) |#4| (-767))) (-15 -2275 ((-767) |#4|))) (-452) (-789) (-846) (-945 |#1| |#2| |#3|)) (T -449))
-((-2275 (*1 *2 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-767)) (-5 *1 (-449 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))) (-3623 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-767)) (|:| -1574 *4))) (-5 *5 (-767)) (-4 *4 (-945 *6 *7 *8)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-5 *2 (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4) (|:| |polj| *4))) (-5 *1 (-449 *6 *7 *8 *4)))) (-4159 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-789)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-449 *4 *5 *6 *7)))) (-3879 (*1 *2 *3) (-12 (-5 *3 (-563)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1262)) (-5 *1 (-449 *4 *5 *6 *7)) (-4 *7 (-945 *4 *5 *6)))) (-1865 (*1 *2 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1262)) (-5 *1 (-449 *4 *5 *6 *7)))) (-2710 (*1 *2 *3 *4 *4 *2 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-767)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-789)) (-4 *4 (-945 *5 *6 *7)) (-4 *5 (-452)) (-4 *7 (-846)) (-5 *1 (-449 *5 *6 *7 *4)))) (-1715 (*1 *2 *3 *4 *4 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-767)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-789)) (-4 *4 (-945 *5 *6 *7)) (-4 *5 (-452)) (-4 *7 (-846)) (-5 *1 (-449 *5 *6 *7 *4)))) (-1399 (*1 *2 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1262)) (-5 *1 (-449 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))) (-2897 (*1 *2 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-563)) (-5 *1 (-449 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))) (-2395 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-449 *3 *4 *5 *6)))) (-1318 (*1 *2 *2 *2) (-12 (-5 *2 (-640 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-767)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-789)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452)) (-4 *5 (-846)) (-5 *1 (-449 *3 *4 *5 *6)))) (-3828 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *2) (|:| |polj| *2))) (-4 *5 (-789)) (-4 *2 (-945 *4 *5 *6)) (-5 *1 (-449 *4 *5 *6 *2)) (-4 *4 (-452)) (-4 *6 (-846)))) (-3516 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-640 (-2 (|:| |totdeg| (-767)) (|:| -1574 *3)))) (-5 *4 (-767)) (-4 *3 (-945 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-449 *5 *6 *7 *3)))) (-3510 (*1 *2 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-449 *3 *4 *5 *2)) (-4 *2 (-945 *3 *4 *5)))) (-4181 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *3)) (-4 *3 (-945 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5))) (-5 *1 (-449 *5 *6 *7 *3)))) (-1714 (*1 *2 *3 *2) (-12 (-5 *2 (-640 (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-767)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *3 (-789)) (-4 *6 (-945 *4 *3 *5)) (-4 *4 (-452)) (-4 *5 (-846)) (-5 *1 (-449 *4 *3 *5 *6)))) (-1782 (*1 *2 *2) (-12 (-5 *2 (-640 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-767)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-789)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452)) (-4 *5 (-846)) (-5 *1 (-449 *3 *4 *5 *6)))) (-3546 (*1 *2 *3 *2) (-12 (-5 *2 (-640 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *3) (|:| |polj| *3)))) (-4 *5 (-789)) (-4 *3 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *6 (-846)) (-5 *1 (-449 *4 *5 *6 *3)))) (-2258 (*1 *2 *3 *3 *3 *3) (-12 (-4 *4 (-452)) (-4 *3 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-449 *4 *3 *5 *6)) (-4 *6 (-945 *4 *3 *5)))) (-2027 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *3 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-449 *4 *3 *5 *6)) (-4 *6 (-945 *4 *3 *5)))) (-2214 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-789)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-449 *4 *5 *6 *7)))) (-3184 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-640 *7)) (-5 *3 (-563)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-449 *4 *5 *6 *7)))) (-2293 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-449 *4 *5 *6 *2)))) (-3300 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-449 *4 *5 *6 *2)))))
-(-10 -7 (-15 -3300 (|#4| |#4| (-640 |#4|))) (-15 -2293 (|#4| |#4| (-640 |#4|))) (-15 -3184 ((-640 |#4|) (-640 |#4|) (-563) (-563))) (-15 -2214 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2027 ((-112) |#2| |#2|)) (-15 -2258 ((-112) |#2| |#2| |#2| |#2|)) (-15 -3546 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1782 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1714 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4181 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-640 |#4|))) (-15 -3510 (|#4| |#4|)) (-15 -3516 ((-640 (-2 (|:| |totdeg| (-767)) (|:| -1574 |#4|))) |#4| (-767) (-640 (-2 (|:| |totdeg| (-767)) (|:| -1574 |#4|))))) (-15 -3828 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -1318 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2395 ((-640 |#4|) (-640 |#4|))) (-15 -2897 ((-563) |#4|)) (-15 -1399 ((-1262) |#4|)) (-15 -1715 ((-563) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-563) (-563) (-563))) (-15 -2710 ((-563) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-563) (-563) (-563) (-563))) (-15 -1865 ((-1262) (-640 |#4|))) (-15 -3879 ((-1262) (-563))) (-15 -4159 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3623 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-767)) (|:| -1574 |#4|)) |#4| (-767))) (-15 -2275 ((-767) |#4|)))
-((-3029 ((|#4| |#4| (-640 |#4|)) 22 (|has| |#1| (-363)))) (-4059 (((-640 |#4|) (-640 |#4|) (-1151) (-1151)) 41) (((-640 |#4|) (-640 |#4|) (-1151)) 40) (((-640 |#4|) (-640 |#4|)) 35)))
-(((-450 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4059 ((-640 |#4|) (-640 |#4|))) (-15 -4059 ((-640 |#4|) (-640 |#4|) (-1151))) (-15 -4059 ((-640 |#4|) (-640 |#4|) (-1151) (-1151))) (IF (|has| |#1| (-363)) (-15 -3029 (|#4| |#4| (-640 |#4|))) |%noBranch|)) (-452) (-789) (-846) (-945 |#1| |#2| |#3|)) (T -450))
-((-3029 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-363)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-450 *4 *5 *6 *2)))) (-4059 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-450 *4 *5 *6 *7)))) (-4059 (*1 *2 *2 *3) (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-450 *4 *5 *6 *7)))) (-4059 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-450 *3 *4 *5 *6)))))
-(-10 -7 (-15 -4059 ((-640 |#4|) (-640 |#4|))) (-15 -4059 ((-640 |#4|) (-640 |#4|) (-1151))) (-15 -4059 ((-640 |#4|) (-640 |#4|) (-1151) (-1151))) (IF (|has| |#1| (-363)) (-15 -3029 (|#4| |#4| (-640 |#4|))) |%noBranch|))
-((-3513 (($ $ $) 14) (($ (-640 $)) 21)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 41)) (-3548 (($ $ $) NIL) (($ (-640 $)) 22)))
-(((-451 |#1|) (-10 -8 (-15 -3385 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))) (-15 -3513 (|#1| (-640 |#1|))) (-15 -3513 (|#1| |#1| |#1|)) (-15 -3548 (|#1| (-640 |#1|))) (-15 -3548 (|#1| |#1| |#1|))) (-452)) (T -451))
-NIL
-(-10 -8 (-15 -3385 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))) (-15 -3513 (|#1| (-640 |#1|))) (-15 -3513 (|#1| |#1| |#1|)) (-15 -3548 (|#1| (-640 |#1|))) (-15 -3548 (|#1| |#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-3008 (((-3 $ "failed") $ $) 43)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 40)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-2745 (((-112)) 17)) (-2756 (((-112) (-112)) 18)) (-2766 (((-112)) 13)) (-2777 (((-112) (-112)) 14)) (-2798 (((-112)) 15)) (-2809 (((-112) (-112)) 16)) (-2711 (((-917) (-917)) 21) (((-917)) 20)) (-2721 (((-767) (-640 (-2 (|:| -2173 |#1|) (|:| -3871 (-563))))) 41)) (-2701 (((-917) (-917)) 23) (((-917)) 22)) (-2732 (((-2 (|:| -3275 (-563)) (|:| -1337 (-640 |#1|))) |#1|) 61)) (-2691 (((-418 |#1|) (-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| |#1|) (|:| -3259 (-563))))))) 126)) (-2626 (((-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| |#1|) (|:| -3259 (-563)))))) |#1| (-112)) 152)) (-2619 (((-418 |#1|) |#1| (-767) (-767)) 165) (((-418 |#1|) |#1| (-640 (-767)) (-767)) 162) (((-418 |#1|) |#1| (-640 (-767))) 164) (((-418 |#1|) |#1| (-767)) 163) (((-418 |#1|) |#1|) 161)) (-2918 (((-3 |#1| "failed") (-917) |#1| (-640 (-767)) (-767) (-112)) 167) (((-3 |#1| "failed") (-917) |#1| (-640 (-767)) (-767)) 168) (((-3 |#1| "failed") (-917) |#1| (-640 (-767))) 170) (((-3 |#1| "failed") (-917) |#1| (-767)) 169) (((-3 |#1| "failed") (-917) |#1|) 171)) (-2173 (((-418 |#1|) |#1| (-767) (-767)) 160) (((-418 |#1|) |#1| (-640 (-767)) (-767)) 156) (((-418 |#1|) |#1| (-640 (-767))) 158) (((-418 |#1|) |#1| (-767)) 157) (((-418 |#1|) |#1|) 155)) (-2788 (((-112) |#1|) 36)) (-2908 (((-733 (-767)) (-640 (-2 (|:| -2173 |#1|) (|:| -3871 (-563))))) 66)) (-2821 (((-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| |#1|) (|:| -3259 (-563)))))) |#1| (-112) (-1095 (-767)) (-767)) 154)))
+(((-442 |#1|) (-10 -7 (-15 -2691 ((-418 |#1|) (-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| |#1|) (|:| -3259 (-563)))))))) (-15 -2908 ((-733 (-767)) (-640 (-2 (|:| -2173 |#1|) (|:| -3871 (-563)))))) (-15 -2701 ((-917))) (-15 -2701 ((-917) (-917))) (-15 -2711 ((-917))) (-15 -2711 ((-917) (-917))) (-15 -2721 ((-767) (-640 (-2 (|:| -2173 |#1|) (|:| -3871 (-563)))))) (-15 -2732 ((-2 (|:| -3275 (-563)) (|:| -1337 (-640 |#1|))) |#1|)) (-15 -2745 ((-112))) (-15 -2756 ((-112) (-112))) (-15 -2766 ((-112))) (-15 -2777 ((-112) (-112))) (-15 -2788 ((-112) |#1|)) (-15 -2798 ((-112))) (-15 -2809 ((-112) (-112))) (-15 -2173 ((-418 |#1|) |#1|)) (-15 -2173 ((-418 |#1|) |#1| (-767))) (-15 -2173 ((-418 |#1|) |#1| (-640 (-767)))) (-15 -2173 ((-418 |#1|) |#1| (-640 (-767)) (-767))) (-15 -2173 ((-418 |#1|) |#1| (-767) (-767))) (-15 -2619 ((-418 |#1|) |#1|)) (-15 -2619 ((-418 |#1|) |#1| (-767))) (-15 -2619 ((-418 |#1|) |#1| (-640 (-767)))) (-15 -2619 ((-418 |#1|) |#1| (-640 (-767)) (-767))) (-15 -2619 ((-418 |#1|) |#1| (-767) (-767))) (-15 -2918 ((-3 |#1| "failed") (-917) |#1|)) (-15 -2918 ((-3 |#1| "failed") (-917) |#1| (-767))) (-15 -2918 ((-3 |#1| "failed") (-917) |#1| (-640 (-767)))) (-15 -2918 ((-3 |#1| "failed") (-917) |#1| (-640 (-767)) (-767))) (-15 -2918 ((-3 |#1| "failed") (-917) |#1| (-640 (-767)) (-767) (-112))) (-15 -2626 ((-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| |#1|) (|:| -3259 (-563)))))) |#1| (-112))) (-15 -2821 ((-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| |#1|) (|:| -3259 (-563)))))) |#1| (-112) (-1095 (-767)) (-767)))) (-1233 (-563))) (T -442))
+((-2821 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-112)) (-5 *5 (-1095 (-767))) (-5 *6 (-767)) (-5 *2 (-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| *3) (|:| -3259 (-563))))))) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2626 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| *3) (|:| -3259 (-563))))))) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2918 (*1 *2 *3 *2 *4 *5 *6) (|partial| -12 (-5 *3 (-917)) (-5 *4 (-640 (-767))) (-5 *5 (-767)) (-5 *6 (-112)) (-5 *1 (-442 *2)) (-4 *2 (-1233 (-563))))) (-2918 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *3 (-917)) (-5 *4 (-640 (-767))) (-5 *5 (-767)) (-5 *1 (-442 *2)) (-4 *2 (-1233 (-563))))) (-2918 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-917)) (-5 *4 (-640 (-767))) (-5 *1 (-442 *2)) (-4 *2 (-1233 (-563))))) (-2918 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-917)) (-5 *4 (-767)) (-5 *1 (-442 *2)) (-4 *2 (-1233 (-563))))) (-2918 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-917)) (-5 *1 (-442 *2)) (-4 *2 (-1233 (-563))))) (-2619 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2619 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-640 (-767))) (-5 *5 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2619 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-767))) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2619 (*1 *2 *3 *4) (-12 (-5 *4 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2619 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2173 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2173 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-640 (-767))) (-5 *5 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2173 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-767))) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2173 (*1 *2 *3 *4) (-12 (-5 *4 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2173 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2809 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2798 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2788 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2777 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2766 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2756 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2745 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2732 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -3275 (-563)) (|:| -1337 (-640 *3)))) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2721 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -2173 *4) (|:| -3871 (-563))))) (-4 *4 (-1233 (-563))) (-5 *2 (-767)) (-5 *1 (-442 *4)))) (-2711 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2711 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2701 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2701 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))) (-2908 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -2173 *4) (|:| -3871 (-563))))) (-4 *4 (-1233 (-563))) (-5 *2 (-733 (-767))) (-5 *1 (-442 *4)))) (-2691 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| *4) (|:| -3259 (-563))))))) (-4 *4 (-1233 (-563))) (-5 *2 (-418 *4)) (-5 *1 (-442 *4)))))
+(-10 -7 (-15 -2691 ((-418 |#1|) (-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| |#1|) (|:| -3259 (-563)))))))) (-15 -2908 ((-733 (-767)) (-640 (-2 (|:| -2173 |#1|) (|:| -3871 (-563)))))) (-15 -2701 ((-917))) (-15 -2701 ((-917) (-917))) (-15 -2711 ((-917))) (-15 -2711 ((-917) (-917))) (-15 -2721 ((-767) (-640 (-2 (|:| -2173 |#1|) (|:| -3871 (-563)))))) (-15 -2732 ((-2 (|:| -3275 (-563)) (|:| -1337 (-640 |#1|))) |#1|)) (-15 -2745 ((-112))) (-15 -2756 ((-112) (-112))) (-15 -2766 ((-112))) (-15 -2777 ((-112) (-112))) (-15 -2788 ((-112) |#1|)) (-15 -2798 ((-112))) (-15 -2809 ((-112) (-112))) (-15 -2173 ((-418 |#1|) |#1|)) (-15 -2173 ((-418 |#1|) |#1| (-767))) (-15 -2173 ((-418 |#1|) |#1| (-640 (-767)))) (-15 -2173 ((-418 |#1|) |#1| (-640 (-767)) (-767))) (-15 -2173 ((-418 |#1|) |#1| (-767) (-767))) (-15 -2619 ((-418 |#1|) |#1|)) (-15 -2619 ((-418 |#1|) |#1| (-767))) (-15 -2619 ((-418 |#1|) |#1| (-640 (-767)))) (-15 -2619 ((-418 |#1|) |#1| (-640 (-767)) (-767))) (-15 -2619 ((-418 |#1|) |#1| (-767) (-767))) (-15 -2918 ((-3 |#1| "failed") (-917) |#1|)) (-15 -2918 ((-3 |#1| "failed") (-917) |#1| (-767))) (-15 -2918 ((-3 |#1| "failed") (-917) |#1| (-640 (-767)))) (-15 -2918 ((-3 |#1| "failed") (-917) |#1| (-640 (-767)) (-767))) (-15 -2918 ((-3 |#1| "failed") (-917) |#1| (-640 (-767)) (-767) (-112))) (-15 -2626 ((-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| |#1|) (|:| -3259 (-563)))))) |#1| (-112))) (-15 -2821 ((-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| |#1|) (|:| -3259 (-563)))))) |#1| (-112) (-1095 (-767)) (-767))))
+((-2863 (((-563) |#2|) 48) (((-563) |#2| (-767)) 47)) (-2853 (((-563) |#2|) 55)) (-2872 ((|#3| |#2|) 25)) (-3975 ((|#3| |#2| (-917)) 14)) (-3419 ((|#3| |#2|) 15)) (-2881 ((|#3| |#2|) 9)) (-4238 ((|#3| |#2|) 10)) (-2844 ((|#3| |#2| (-917)) 62) ((|#3| |#2|) 30)) (-2833 (((-563) |#2|) 57)))
+(((-443 |#1| |#2| |#3|) (-10 -7 (-15 -2833 ((-563) |#2|)) (-15 -2844 (|#3| |#2|)) (-15 -2844 (|#3| |#2| (-917))) (-15 -2853 ((-563) |#2|)) (-15 -2863 ((-563) |#2| (-767))) (-15 -2863 ((-563) |#2|)) (-15 -3975 (|#3| |#2| (-917))) (-15 -2872 (|#3| |#2|)) (-15 -2881 (|#3| |#2|)) (-15 -4238 (|#3| |#2|)) (-15 -3419 (|#3| |#2|))) (-1045) (-1233 |#1|) (-13 (-404) (-1034 |#1|) (-363) (-1193) (-284))) (T -443))
+((-3419 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))) (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4)))) (-4238 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))) (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4)))) (-2881 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))) (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4)))) (-2872 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))) (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4)))) (-3975 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-4 *5 (-1045)) (-4 *2 (-13 (-404) (-1034 *5) (-363) (-1193) (-284))) (-5 *1 (-443 *5 *3 *2)) (-4 *3 (-1233 *5)))) (-2863 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-443 *4 *3 *5)) (-4 *3 (-1233 *4)) (-4 *5 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))))) (-2863 (*1 *2 *3 *4) (-12 (-5 *4 (-767)) (-4 *5 (-1045)) (-5 *2 (-563)) (-5 *1 (-443 *5 *3 *6)) (-4 *3 (-1233 *5)) (-4 *6 (-13 (-404) (-1034 *5) (-363) (-1193) (-284))))) (-2853 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-443 *4 *3 *5)) (-4 *3 (-1233 *4)) (-4 *5 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))))) (-2844 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-4 *5 (-1045)) (-4 *2 (-13 (-404) (-1034 *5) (-363) (-1193) (-284))) (-5 *1 (-443 *5 *3 *2)) (-4 *3 (-1233 *5)))) (-2844 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))) (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4)))) (-2833 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-443 *4 *3 *5)) (-4 *3 (-1233 *4)) (-4 *5 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))))))
+(-10 -7 (-15 -2833 ((-563) |#2|)) (-15 -2844 (|#3| |#2|)) (-15 -2844 (|#3| |#2| (-917))) (-15 -2853 ((-563) |#2|)) (-15 -2863 ((-563) |#2| (-767))) (-15 -2863 ((-563) |#2|)) (-15 -3975 (|#3| |#2| (-917))) (-15 -2872 (|#3| |#2|)) (-15 -2881 (|#3| |#2|)) (-15 -4238 (|#3| |#2|)) (-15 -3419 (|#3| |#2|)))
+((-2442 ((|#2| (-1257 |#1|)) 36)) (-2899 ((|#2| |#2| |#1|) 49)) (-2890 ((|#2| |#2| |#1|) 41)) (-4383 ((|#2| |#2|) 38)) (-3286 (((-112) |#2|) 29)) (-2928 (((-640 |#2|) (-917) (-418 |#2|)) 17)) (-2918 ((|#2| (-917) (-418 |#2|)) 21)) (-2908 (((-733 (-767)) (-418 |#2|)) 25)))
+(((-444 |#1| |#2|) (-10 -7 (-15 -3286 ((-112) |#2|)) (-15 -2442 (|#2| (-1257 |#1|))) (-15 -4383 (|#2| |#2|)) (-15 -2890 (|#2| |#2| |#1|)) (-15 -2899 (|#2| |#2| |#1|)) (-15 -2908 ((-733 (-767)) (-418 |#2|))) (-15 -2918 (|#2| (-917) (-418 |#2|))) (-15 -2928 ((-640 |#2|) (-917) (-418 |#2|)))) (-1045) (-1233 |#1|)) (T -444))
+((-2928 (*1 *2 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-418 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-1045)) (-5 *2 (-640 *6)) (-5 *1 (-444 *5 *6)))) (-2918 (*1 *2 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-418 *2)) (-4 *2 (-1233 *5)) (-5 *1 (-444 *5 *2)) (-4 *5 (-1045)))) (-2908 (*1 *2 *3) (-12 (-5 *3 (-418 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-1045)) (-5 *2 (-733 (-767))) (-5 *1 (-444 *4 *5)))) (-2899 (*1 *2 *2 *3) (-12 (-4 *3 (-1045)) (-5 *1 (-444 *3 *2)) (-4 *2 (-1233 *3)))) (-2890 (*1 *2 *2 *3) (-12 (-4 *3 (-1045)) (-5 *1 (-444 *3 *2)) (-4 *2 (-1233 *3)))) (-4383 (*1 *2 *2) (-12 (-4 *3 (-1045)) (-5 *1 (-444 *3 *2)) (-4 *2 (-1233 *3)))) (-2442 (*1 *2 *3) (-12 (-5 *3 (-1257 *4)) (-4 *4 (-1045)) (-4 *2 (-1233 *4)) (-5 *1 (-444 *4 *2)))) (-3286 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-5 *2 (-112)) (-5 *1 (-444 *4 *3)) (-4 *3 (-1233 *4)))))
+(-10 -7 (-15 -3286 ((-112) |#2|)) (-15 -2442 (|#2| (-1257 |#1|))) (-15 -4383 (|#2| |#2|)) (-15 -2890 (|#2| |#2| |#1|)) (-15 -2899 (|#2| |#2| |#1|)) (-15 -2908 ((-733 (-767)) (-418 |#2|))) (-15 -2918 (|#2| (-917) (-418 |#2|))) (-15 -2928 ((-640 |#2|) (-917) (-418 |#2|))))
+((-2958 (((-767)) 41)) (-2997 (((-767)) 23 (|has| |#1| (-404))) (((-767) (-767)) 22 (|has| |#1| (-404)))) (-2986 (((-563) |#1|) 18 (|has| |#1| (-404)))) (-2977 (((-563) |#1|) 20 (|has| |#1| (-404)))) (-2947 (((-767)) 40) (((-767) (-767)) 39)) (-2937 ((|#1| (-767) (-563)) 29)) (-2968 (((-1262)) 43)))
+(((-445 |#1|) (-10 -7 (-15 -2937 (|#1| (-767) (-563))) (-15 -2947 ((-767) (-767))) (-15 -2947 ((-767))) (-15 -2958 ((-767))) (-15 -2968 ((-1262))) (IF (|has| |#1| (-404)) (PROGN (-15 -2977 ((-563) |#1|)) (-15 -2986 ((-563) |#1|)) (-15 -2997 ((-767) (-767))) (-15 -2997 ((-767)))) |%noBranch|)) (-1045)) (T -445))
+((-2997 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045)))) (-2997 (*1 *2 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045)))) (-2986 (*1 *2 *3) (-12 (-5 *2 (-563)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045)))) (-2977 (*1 *2 *3) (-12 (-5 *2 (-563)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045)))) (-2968 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-445 *3)) (-4 *3 (-1045)))) (-2958 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-1045)))) (-2947 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-1045)))) (-2947 (*1 *2 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-1045)))) (-2937 (*1 *2 *3 *4) (-12 (-5 *3 (-767)) (-5 *4 (-563)) (-5 *1 (-445 *2)) (-4 *2 (-1045)))))
+(-10 -7 (-15 -2937 (|#1| (-767) (-563))) (-15 -2947 ((-767) (-767))) (-15 -2947 ((-767))) (-15 -2958 ((-767))) (-15 -2968 ((-1262))) (IF (|has| |#1| (-404)) (PROGN (-15 -2977 ((-563) |#1|)) (-15 -2986 ((-563) |#1|)) (-15 -2997 ((-767) (-767))) (-15 -2997 ((-767)))) |%noBranch|))
+((-3008 (((-640 (-563)) (-563)) 60)) (-2560 (((-112) (-169 (-563))) 64)) (-2173 (((-418 (-169 (-563))) (-169 (-563))) 59)))
+(((-446) (-10 -7 (-15 -2173 ((-418 (-169 (-563))) (-169 (-563)))) (-15 -3008 ((-640 (-563)) (-563))) (-15 -2560 ((-112) (-169 (-563)))))) (T -446))
+((-2560 (*1 *2 *3) (-12 (-5 *3 (-169 (-563))) (-5 *2 (-112)) (-5 *1 (-446)))) (-3008 (*1 *2 *3) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-446)) (-5 *3 (-563)))) (-2173 (*1 *2 *3) (-12 (-5 *2 (-418 (-169 (-563)))) (-5 *1 (-446)) (-5 *3 (-169 (-563))))))
+(-10 -7 (-15 -2173 ((-418 (-169 (-563))) (-169 (-563)))) (-15 -3008 ((-640 (-563)) (-563))) (-15 -2560 ((-112) (-169 (-563)))))
+((-3019 ((|#4| |#4| (-640 |#4|)) 60)) (-3028 (((-640 |#4|) (-640 |#4|) (-1151) (-1151)) 17) (((-640 |#4|) (-640 |#4|) (-1151)) 16) (((-640 |#4|) (-640 |#4|)) 11)))
+(((-447 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3019 (|#4| |#4| (-640 |#4|))) (-15 -3028 ((-640 |#4|) (-640 |#4|))) (-15 -3028 ((-640 |#4|) (-640 |#4|) (-1151))) (-15 -3028 ((-640 |#4|) (-640 |#4|) (-1151) (-1151)))) (-307) (-789) (-846) (-945 |#1| |#2| |#3|)) (T -447))
+((-3028 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-307)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-447 *4 *5 *6 *7)))) (-3028 (*1 *2 *2 *3) (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-307)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-447 *4 *5 *6 *7)))) (-3028 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-307)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-447 *3 *4 *5 *6)))) (-3019 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-307)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-447 *4 *5 *6 *2)))))
+(-10 -7 (-15 -3019 (|#4| |#4| (-640 |#4|))) (-15 -3028 ((-640 |#4|) (-640 |#4|))) (-15 -3028 ((-640 |#4|) (-640 |#4|) (-1151))) (-15 -3028 ((-640 |#4|) (-640 |#4|) (-1151) (-1151))))
+((-3050 (((-640 (-640 |#4|)) (-640 |#4|) (-112)) 72) (((-640 (-640 |#4|)) (-640 |#4|)) 71) (((-640 (-640 |#4|)) (-640 |#4|) (-640 |#4|) (-112)) 65) (((-640 (-640 |#4|)) (-640 |#4|) (-640 |#4|)) 66)) (-3038 (((-640 (-640 |#4|)) (-640 |#4|) (-112)) 41) (((-640 (-640 |#4|)) (-640 |#4|)) 62)))
+(((-448 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3038 ((-640 (-640 |#4|)) (-640 |#4|))) (-15 -3038 ((-640 (-640 |#4|)) (-640 |#4|) (-112))) (-15 -3050 ((-640 (-640 |#4|)) (-640 |#4|) (-640 |#4|))) (-15 -3050 ((-640 (-640 |#4|)) (-640 |#4|) (-640 |#4|) (-112))) (-15 -3050 ((-640 (-640 |#4|)) (-640 |#4|))) (-15 -3050 ((-640 (-640 |#4|)) (-640 |#4|) (-112)))) (-13 (-307) (-147)) (-789) (-846) (-945 |#1| |#2| |#3|)) (T -448))
+((-3050 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-640 (-640 *8))) (-5 *1 (-448 *5 *6 *7 *8)) (-5 *3 (-640 *8)))) (-3050 (*1 *2 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-640 (-640 *7))) (-5 *1 (-448 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-3050 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-640 (-640 *8))) (-5 *1 (-448 *5 *6 *7 *8)) (-5 *3 (-640 *8)))) (-3050 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-640 (-640 *7))) (-5 *1 (-448 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-3038 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-640 (-640 *8))) (-5 *1 (-448 *5 *6 *7 *8)) (-5 *3 (-640 *8)))) (-3038 (*1 *2 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-640 (-640 *7))) (-5 *1 (-448 *4 *5 *6 *7)) (-5 *3 (-640 *7)))))
+(-10 -7 (-15 -3038 ((-640 (-640 |#4|)) (-640 |#4|))) (-15 -3038 ((-640 (-640 |#4|)) (-640 |#4|) (-112))) (-15 -3050 ((-640 (-640 |#4|)) (-640 |#4|) (-640 |#4|))) (-15 -3050 ((-640 (-640 |#4|)) (-640 |#4|) (-640 |#4|) (-112))) (-15 -3050 ((-640 (-640 |#4|)) (-640 |#4|))) (-15 -3050 ((-640 (-640 |#4|)) (-640 |#4|) (-112))))
+((-2112 (((-767) |#4|) 12)) (-1998 (((-640 (-2 (|:| |totdeg| (-767)) (|:| -3929 |#4|))) |#4| (-767) (-640 (-2 (|:| |totdeg| (-767)) (|:| -3929 |#4|)))) 31)) (-2016 (((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 37)) (-2008 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 38)) (-3069 ((|#4| |#4| (-640 |#4|)) 39)) (-3153 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-640 |#4|)) 69)) (-2046 (((-1262) |#4|) 41)) (-2074 (((-1262) (-640 |#4|)) 50)) (-2053 (((-563) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-563) (-563) (-563)) 47)) (-2082 (((-1262) (-563)) 78)) (-2026 (((-640 |#4|) (-640 |#4|)) 76)) (-2102 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-767)) (|:| -3929 |#4|)) |#4| (-767)) 25)) (-2037 (((-563) |#4|) 77)) (-1989 ((|#4| |#4|) 29)) (-3078 (((-640 |#4|) (-640 |#4|) (-563) (-563)) 55)) (-2065 (((-563) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-563) (-563) (-563) (-563)) 88)) (-2092 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 16)) (-3090 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 58)) (-3144 (((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 57)) (-3134 (((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 35)) (-3102 (((-112) |#2| |#2|) 56)) (-3124 (((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 36)) (-3112 (((-112) |#2| |#2| |#2| |#2|) 59)) (-3060 ((|#4| |#4| (-640 |#4|)) 70)))
+(((-449 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3060 (|#4| |#4| (-640 |#4|))) (-15 -3069 (|#4| |#4| (-640 |#4|))) (-15 -3078 ((-640 |#4|) (-640 |#4|) (-563) (-563))) (-15 -3090 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3102 ((-112) |#2| |#2|)) (-15 -3112 ((-112) |#2| |#2| |#2| |#2|)) (-15 -3124 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3134 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3144 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3153 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-640 |#4|))) (-15 -1989 (|#4| |#4|)) (-15 -1998 ((-640 (-2 (|:| |totdeg| (-767)) (|:| -3929 |#4|))) |#4| (-767) (-640 (-2 (|:| |totdeg| (-767)) (|:| -3929 |#4|))))) (-15 -2008 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2016 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2026 ((-640 |#4|) (-640 |#4|))) (-15 -2037 ((-563) |#4|)) (-15 -2046 ((-1262) |#4|)) (-15 -2053 ((-563) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-563) (-563) (-563))) (-15 -2065 ((-563) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-563) (-563) (-563) (-563))) (-15 -2074 ((-1262) (-640 |#4|))) (-15 -2082 ((-1262) (-563))) (-15 -2092 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2102 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-767)) (|:| -3929 |#4|)) |#4| (-767))) (-15 -2112 ((-767) |#4|))) (-452) (-789) (-846) (-945 |#1| |#2| |#3|)) (T -449))
+((-2112 (*1 *2 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-767)) (-5 *1 (-449 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))) (-2102 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-767)) (|:| -3929 *4))) (-5 *5 (-767)) (-4 *4 (-945 *6 *7 *8)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-5 *2 (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4) (|:| |polj| *4))) (-5 *1 (-449 *6 *7 *8 *4)))) (-2092 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-789)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-449 *4 *5 *6 *7)))) (-2082 (*1 *2 *3) (-12 (-5 *3 (-563)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1262)) (-5 *1 (-449 *4 *5 *6 *7)) (-4 *7 (-945 *4 *5 *6)))) (-2074 (*1 *2 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1262)) (-5 *1 (-449 *4 *5 *6 *7)))) (-2065 (*1 *2 *3 *4 *4 *2 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-767)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-789)) (-4 *4 (-945 *5 *6 *7)) (-4 *5 (-452)) (-4 *7 (-846)) (-5 *1 (-449 *5 *6 *7 *4)))) (-2053 (*1 *2 *3 *4 *4 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-767)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-789)) (-4 *4 (-945 *5 *6 *7)) (-4 *5 (-452)) (-4 *7 (-846)) (-5 *1 (-449 *5 *6 *7 *4)))) (-2046 (*1 *2 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1262)) (-5 *1 (-449 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))) (-2037 (*1 *2 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-563)) (-5 *1 (-449 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))) (-2026 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-449 *3 *4 *5 *6)))) (-2016 (*1 *2 *2 *2) (-12 (-5 *2 (-640 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-767)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-789)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452)) (-4 *5 (-846)) (-5 *1 (-449 *3 *4 *5 *6)))) (-2008 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *2) (|:| |polj| *2))) (-4 *5 (-789)) (-4 *2 (-945 *4 *5 *6)) (-5 *1 (-449 *4 *5 *6 *2)) (-4 *4 (-452)) (-4 *6 (-846)))) (-1998 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-640 (-2 (|:| |totdeg| (-767)) (|:| -3929 *3)))) (-5 *4 (-767)) (-4 *3 (-945 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-449 *5 *6 *7 *3)))) (-1989 (*1 *2 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-449 *3 *4 *5 *2)) (-4 *2 (-945 *3 *4 *5)))) (-3153 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *3)) (-4 *3 (-945 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5))) (-5 *1 (-449 *5 *6 *7 *3)))) (-3144 (*1 *2 *3 *2) (-12 (-5 *2 (-640 (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-767)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *3 (-789)) (-4 *6 (-945 *4 *3 *5)) (-4 *4 (-452)) (-4 *5 (-846)) (-5 *1 (-449 *4 *3 *5 *6)))) (-3134 (*1 *2 *2) (-12 (-5 *2 (-640 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-767)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-789)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452)) (-4 *5 (-846)) (-5 *1 (-449 *3 *4 *5 *6)))) (-3124 (*1 *2 *3 *2) (-12 (-5 *2 (-640 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *3) (|:| |polj| *3)))) (-4 *5 (-789)) (-4 *3 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *6 (-846)) (-5 *1 (-449 *4 *5 *6 *3)))) (-3112 (*1 *2 *3 *3 *3 *3) (-12 (-4 *4 (-452)) (-4 *3 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-449 *4 *3 *5 *6)) (-4 *6 (-945 *4 *3 *5)))) (-3102 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *3 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-449 *4 *3 *5 *6)) (-4 *6 (-945 *4 *3 *5)))) (-3090 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-789)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-449 *4 *5 *6 *7)))) (-3078 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-640 *7)) (-5 *3 (-563)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-449 *4 *5 *6 *7)))) (-3069 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-449 *4 *5 *6 *2)))) (-3060 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-449 *4 *5 *6 *2)))))
+(-10 -7 (-15 -3060 (|#4| |#4| (-640 |#4|))) (-15 -3069 (|#4| |#4| (-640 |#4|))) (-15 -3078 ((-640 |#4|) (-640 |#4|) (-563) (-563))) (-15 -3090 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3102 ((-112) |#2| |#2|)) (-15 -3112 ((-112) |#2| |#2| |#2| |#2|)) (-15 -3124 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3134 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3144 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3153 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-640 |#4|))) (-15 -1989 (|#4| |#4|)) (-15 -1998 ((-640 (-2 (|:| |totdeg| (-767)) (|:| -3929 |#4|))) |#4| (-767) (-640 (-2 (|:| |totdeg| (-767)) (|:| -3929 |#4|))))) (-15 -2008 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2016 ((-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-640 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2026 ((-640 |#4|) (-640 |#4|))) (-15 -2037 ((-563) |#4|)) (-15 -2046 ((-1262) |#4|)) (-15 -2053 ((-563) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-563) (-563) (-563))) (-15 -2065 ((-563) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-563) (-563) (-563) (-563))) (-15 -2074 ((-1262) (-640 |#4|))) (-15 -2082 ((-1262) (-563))) (-15 -2092 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2102 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-767)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-767)) (|:| -3929 |#4|)) |#4| (-767))) (-15 -2112 ((-767) |#4|)))
+((-2718 ((|#4| |#4| (-640 |#4|)) 20 (|has| |#1| (-363)))) (-2478 (((-640 |#4|) (-640 |#4|) (-1151) (-1151)) 41) (((-640 |#4|) (-640 |#4|) (-1151)) 40) (((-640 |#4|) (-640 |#4|)) 33)))
+(((-450 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2478 ((-640 |#4|) (-640 |#4|))) (-15 -2478 ((-640 |#4|) (-640 |#4|) (-1151))) (-15 -2478 ((-640 |#4|) (-640 |#4|) (-1151) (-1151))) (IF (|has| |#1| (-363)) (-15 -2718 (|#4| |#4| (-640 |#4|))) |%noBranch|)) (-452) (-789) (-846) (-945 |#1| |#2| |#3|)) (T -450))
+((-2718 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-363)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-450 *4 *5 *6 *2)))) (-2478 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-450 *4 *5 *6 *7)))) (-2478 (*1 *2 *2 *3) (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-450 *4 *5 *6 *7)))) (-2478 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-450 *3 *4 *5 *6)))))
+(-10 -7 (-15 -2478 ((-640 |#4|) (-640 |#4|))) (-15 -2478 ((-640 |#4|) (-640 |#4|) (-1151))) (-15 -2478 ((-640 |#4|) (-640 |#4|) (-1151) (-1151))) (IF (|has| |#1| (-363)) (-15 -2718 (|#4| |#4| (-640 |#4|))) |%noBranch|))
+((-3517 (($ $ $) 14) (($ (-640 $)) 21)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 41)) (-3551 (($ $ $) NIL) (($ (-640 $)) 22)))
+(((-451 |#1|) (-10 -8 (-15 -2103 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))) (-15 -3517 (|#1| (-640 |#1|))) (-15 -3517 (|#1| |#1| |#1|)) (-15 -3551 (|#1| (-640 |#1|))) (-15 -3551 (|#1| |#1| |#1|))) (-452)) (T -451))
+NIL
+(-10 -8 (-15 -2103 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))) (-15 -3517 (|#1| (-640 |#1|))) (-15 -3517 (|#1| |#1| |#1|)) (-15 -3551 (|#1| (-640 |#1|))) (-15 -3551 (|#1| |#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-3012 (((-3 $ "failed") $ $) 43)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 40)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-452) (-140)) (T -452))
-((-3548 (*1 *1 *1 *1) (-4 *1 (-452))) (-3548 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-452)))) (-3513 (*1 *1 *1 *1) (-4 *1 (-452))) (-3513 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-452)))) (-3385 (*1 *2 *2 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-452)))))
-(-13 (-555) (-10 -8 (-15 -3548 ($ $ $)) (-15 -3548 ($ (-640 $))) (-15 -3513 ($ $ $)) (-15 -3513 ($ (-640 $))) (-15 -3385 ((-1165 $) (-1165 $) (-1165 $)))))
+((-3551 (*1 *1 *1 *1) (-4 *1 (-452))) (-3551 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-452)))) (-3517 (*1 *1 *1 *1) (-4 *1 (-452))) (-3517 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-452)))) (-2103 (*1 *2 *2 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-452)))))
+(-13 (-555) (-10 -8 (-15 -3551 ($ $ $)) (-15 -3551 ($ (-640 $))) (-15 -3517 ($ $ $)) (-15 -3517 ($ (-640 $))) (-15 -2103 ((-1165 $) (-1165 $) (-1165 $)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-290) . T) ((-555) . T) ((-643 $) . T) ((-713 $) . T) ((-722) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1414 (((-3 $ "failed")) NIL (|has| (-407 (-948 |#1|)) (-555)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-3507 (((-1257 (-684 (-407 (-948 |#1|)))) (-1257 $)) NIL) (((-1257 (-684 (-407 (-948 |#1|))))) NIL)) (-1438 (((-1257 $)) NIL)) (-4239 (($) NIL T CONST)) (-2133 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) NIL)) (-2435 (((-3 $ "failed")) NIL (|has| (-407 (-948 |#1|)) (-555)))) (-4220 (((-684 (-407 (-948 |#1|))) (-1257 $)) NIL) (((-684 (-407 (-948 |#1|)))) NIL)) (-2480 (((-407 (-948 |#1|)) $) NIL)) (-3043 (((-684 (-407 (-948 |#1|))) $ (-1257 $)) NIL) (((-684 (-407 (-948 |#1|))) $) NIL)) (-4154 (((-3 $ "failed") $) NIL (|has| (-407 (-948 |#1|)) (-555)))) (-3451 (((-1165 (-948 (-407 (-948 |#1|))))) NIL (|has| (-407 (-948 |#1|)) (-363))) (((-1165 (-407 (-948 |#1|)))) 84 (|has| |#1| (-555)))) (-2300 (($ $ (-917)) NIL)) (-3830 (((-407 (-948 |#1|)) $) NIL)) (-3763 (((-1165 (-407 (-948 |#1|))) $) 82 (|has| (-407 (-948 |#1|)) (-555)))) (-1824 (((-407 (-948 |#1|)) (-1257 $)) NIL) (((-407 (-948 |#1|))) NIL)) (-2876 (((-1165 (-407 (-948 |#1|))) $) NIL)) (-2182 (((-112)) NIL)) (-3937 (($ (-1257 (-407 (-948 |#1|))) (-1257 $)) 103) (($ (-1257 (-407 (-948 |#1|)))) NIL)) (-3400 (((-3 $ "failed") $) NIL (|has| (-407 (-948 |#1|)) (-555)))) (-2522 (((-917)) NIL)) (-2250 (((-112)) NIL)) (-2287 (($ $ (-917)) NIL)) (-3901 (((-112)) NIL)) (-3308 (((-112)) NIL)) (-3104 (((-112)) NIL)) (-2284 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) NIL)) (-2508 (((-3 $ "failed")) NIL (|has| (-407 (-948 |#1|)) (-555)))) (-2328 (((-684 (-407 (-948 |#1|))) (-1257 $)) NIL) (((-684 (-407 (-948 |#1|)))) NIL)) (-2842 (((-407 (-948 |#1|)) $) NIL)) (-1823 (((-684 (-407 (-948 |#1|))) $ (-1257 $)) NIL) (((-684 (-407 (-948 |#1|))) $) NIL)) (-3856 (((-3 $ "failed") $) NIL (|has| (-407 (-948 |#1|)) (-555)))) (-3594 (((-1165 (-948 (-407 (-948 |#1|))))) NIL (|has| (-407 (-948 |#1|)) (-363))) (((-1165 (-407 (-948 |#1|)))) 83 (|has| |#1| (-555)))) (-1494 (($ $ (-917)) NIL)) (-2199 (((-407 (-948 |#1|)) $) NIL)) (-2604 (((-1165 (-407 (-948 |#1|))) $) 77 (|has| (-407 (-948 |#1|)) (-555)))) (-4111 (((-407 (-948 |#1|)) (-1257 $)) NIL) (((-407 (-948 |#1|))) NIL)) (-2665 (((-1165 (-407 (-948 |#1|))) $) NIL)) (-4012 (((-112)) NIL)) (-3573 (((-1151) $) NIL)) (-2136 (((-112)) NIL)) (-1789 (((-112)) NIL)) (-2047 (((-112)) NIL)) (-1694 (((-1113) $) NIL)) (-4303 (((-407 (-948 |#1|)) $ $) 71 (|has| |#1| (-555)))) (-1382 (((-407 (-948 |#1|)) $) 93 (|has| |#1| (-555)))) (-3074 (((-407 (-948 |#1|)) $) 95 (|has| |#1| (-555)))) (-3061 (((-1165 (-407 (-948 |#1|))) $) 88 (|has| |#1| (-555)))) (-3488 (((-407 (-948 |#1|))) 72 (|has| |#1| (-555)))) (-2605 (((-407 (-948 |#1|)) $ $) 64 (|has| |#1| (-555)))) (-2232 (((-407 (-948 |#1|)) $) 92 (|has| |#1| (-555)))) (-1875 (((-407 (-948 |#1|)) $) 94 (|has| |#1| (-555)))) (-2436 (((-1165 (-407 (-948 |#1|))) $) 87 (|has| |#1| (-555)))) (-4123 (((-407 (-948 |#1|))) 68 (|has| |#1| (-555)))) (-4263 (($) 101) (($ (-1169)) 107) (($ (-1257 (-1169))) 106) (($ (-1257 $)) 96) (($ (-1169) (-1257 $)) 105) (($ (-1257 (-1169)) (-1257 $)) 104)) (-4084 (((-112)) NIL)) (-2309 (((-407 (-948 |#1|)) $ (-563)) NIL)) (-1880 (((-1257 (-407 (-948 |#1|))) $ (-1257 $)) 98) (((-684 (-407 (-948 |#1|))) (-1257 $) (-1257 $)) NIL) (((-1257 (-407 (-948 |#1|))) $) 40) (((-684 (-407 (-948 |#1|))) (-1257 $)) NIL)) (-2220 (((-1257 (-407 (-948 |#1|))) $) NIL) (($ (-1257 (-407 (-948 |#1|)))) 37)) (-4152 (((-640 (-948 (-407 (-948 |#1|)))) (-1257 $)) NIL) (((-640 (-948 (-407 (-948 |#1|))))) NIL) (((-640 (-948 |#1|)) (-1257 $)) 99 (|has| |#1| (-555))) (((-640 (-948 |#1|))) 100 (|has| |#1| (-555)))) (-2146 (($ $ $) NIL)) (-1936 (((-112)) NIL)) (-1693 (((-858) $) NIL) (($ (-1257 (-407 (-948 |#1|)))) NIL)) (-4315 (((-1257 $)) 60)) (-2138 (((-640 (-1257 (-407 (-948 |#1|))))) NIL (|has| (-407 (-948 |#1|)) (-555)))) (-1361 (($ $ $ $) NIL)) (-1402 (((-112)) NIL)) (-3726 (($ (-684 (-407 (-948 |#1|))) $) NIL)) (-3399 (($ $ $) NIL)) (-2483 (((-112)) NIL)) (-3777 (((-112)) NIL)) (-2128 (((-112)) NIL)) (-2241 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) 97)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 56) (($ $ (-407 (-948 |#1|))) NIL) (($ (-407 (-948 |#1|)) $) NIL) (($ (-1135 |#2| (-407 (-948 |#1|))) $) NIL)))
-(((-453 |#1| |#2| |#3| |#4|) (-13 (-417 (-407 (-948 |#1|))) (-643 (-1135 |#2| (-407 (-948 |#1|)))) (-10 -8 (-15 -1693 ($ (-1257 (-407 (-948 |#1|))))) (-15 -2284 ((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed"))) (-15 -2133 ((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed"))) (-15 -4263 ($)) (-15 -4263 ($ (-1169))) (-15 -4263 ($ (-1257 (-1169)))) (-15 -4263 ($ (-1257 $))) (-15 -4263 ($ (-1169) (-1257 $))) (-15 -4263 ($ (-1257 (-1169)) (-1257 $))) (IF (|has| |#1| (-555)) (PROGN (-15 -3594 ((-1165 (-407 (-948 |#1|))))) (-15 -2436 ((-1165 (-407 (-948 |#1|))) $)) (-15 -2232 ((-407 (-948 |#1|)) $)) (-15 -1875 ((-407 (-948 |#1|)) $)) (-15 -3451 ((-1165 (-407 (-948 |#1|))))) (-15 -3061 ((-1165 (-407 (-948 |#1|))) $)) (-15 -1382 ((-407 (-948 |#1|)) $)) (-15 -3074 ((-407 (-948 |#1|)) $)) (-15 -2605 ((-407 (-948 |#1|)) $ $)) (-15 -4123 ((-407 (-948 |#1|)))) (-15 -4303 ((-407 (-948 |#1|)) $ $)) (-15 -3488 ((-407 (-948 |#1|)))) (-15 -4152 ((-640 (-948 |#1|)) (-1257 $))) (-15 -4152 ((-640 (-948 |#1|))))) |%noBranch|))) (-172) (-917) (-640 (-1169)) (-1257 (-684 |#1|))) (T -453))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1257 (-407 (-948 *3)))) (-4 *3 (-172)) (-14 *6 (-1257 (-684 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))))) (-2284 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-453 *3 *4 *5 *6)) (|:| -4315 (-640 (-453 *3 *4 *5 *6))))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2133 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-453 *3 *4 *5 *6)) (|:| -4315 (-640 (-453 *3 *4 *5 *6))))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-4263 (*1 *1) (-12 (-5 *1 (-453 *2 *3 *4 *5)) (-4 *2 (-172)) (-14 *3 (-917)) (-14 *4 (-640 (-1169))) (-14 *5 (-1257 (-684 *2))))) (-4263 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 *2)) (-14 *6 (-1257 (-684 *3))))) (-4263 (*1 *1 *2) (-12 (-5 *2 (-1257 (-1169))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-4263 (*1 *1 *2) (-12 (-5 *2 (-1257 (-453 *3 *4 *5 *6))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-4263 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-453 *4 *5 *6 *7))) (-5 *1 (-453 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-917)) (-14 *6 (-640 *2)) (-14 *7 (-1257 (-684 *4))))) (-4263 (*1 *1 *2 *3) (-12 (-5 *2 (-1257 (-1169))) (-5 *3 (-1257 (-453 *4 *5 *6 *7))) (-5 *1 (-453 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-917)) (-14 *6 (-640 (-1169))) (-14 *7 (-1257 (-684 *4))))) (-3594 (*1 *2) (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2436 (*1 *2 *1) (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2232 (*1 *2 *1) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-1875 (*1 *2 *1) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-3451 (*1 *2) (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-3061 (*1 *2 *1) (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-1382 (*1 *2 *1) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-3074 (*1 *2 *1) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2605 (*1 *2 *1 *1) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-4123 (*1 *2) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-4303 (*1 *2 *1 *1) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-3488 (*1 *2) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-4152 (*1 *2 *3) (-12 (-5 *3 (-1257 (-453 *4 *5 *6 *7))) (-5 *2 (-640 (-948 *4))) (-5 *1 (-453 *4 *5 *6 *7)) (-4 *4 (-555)) (-4 *4 (-172)) (-14 *5 (-917)) (-14 *6 (-640 (-1169))) (-14 *7 (-1257 (-684 *4))))) (-4152 (*1 *2) (-12 (-5 *2 (-640 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
-(-13 (-417 (-407 (-948 |#1|))) (-643 (-1135 |#2| (-407 (-948 |#1|)))) (-10 -8 (-15 -1693 ($ (-1257 (-407 (-948 |#1|))))) (-15 -2284 ((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed"))) (-15 -2133 ((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed"))) (-15 -4263 ($)) (-15 -4263 ($ (-1169))) (-15 -4263 ($ (-1257 (-1169)))) (-15 -4263 ($ (-1257 $))) (-15 -4263 ($ (-1169) (-1257 $))) (-15 -4263 ($ (-1257 (-1169)) (-1257 $))) (IF (|has| |#1| (-555)) (PROGN (-15 -3594 ((-1165 (-407 (-948 |#1|))))) (-15 -2436 ((-1165 (-407 (-948 |#1|))) $)) (-15 -2232 ((-407 (-948 |#1|)) $)) (-15 -1875 ((-407 (-948 |#1|)) $)) (-15 -3451 ((-1165 (-407 (-948 |#1|))))) (-15 -3061 ((-1165 (-407 (-948 |#1|))) $)) (-15 -1382 ((-407 (-948 |#1|)) $)) (-15 -3074 ((-407 (-948 |#1|)) $)) (-15 -2605 ((-407 (-948 |#1|)) $ $)) (-15 -4123 ((-407 (-948 |#1|)))) (-15 -4303 ((-407 (-948 |#1|)) $ $)) (-15 -3488 ((-407 (-948 |#1|)))) (-15 -4152 ((-640 (-948 |#1|)) (-1257 $))) (-15 -4152 ((-640 (-948 |#1|))))) |%noBranch|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 13)) (-2606 (((-640 (-860 |#1|)) $) 74)) (-2139 (((-1165 $) $ (-860 |#1|)) 46) (((-1165 |#2|) $) 117)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#2| (-555)))) (-4223 (($ $) NIL (|has| |#2| (-555)))) (-3156 (((-112) $) NIL (|has| |#2| (-555)))) (-1779 (((-767) $) 21) (((-767) $ (-640 (-860 |#1|))) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-4335 (($ $) NIL (|has| |#2| (-452)))) (-3205 (((-418 $) $) NIL (|has| |#2| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#2| "failed") $) 44) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-860 |#1|) "failed") $) NIL)) (-2058 ((|#2| $) 42) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-860 |#1|) $) NIL)) (-2742 (($ $ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-3483 (($ $ (-640 (-563))) 79)) (-2751 (($ $) 67)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1300 (($ $) NIL (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-2739 (((-640 $) $) NIL)) (-2468 (((-112) $) NIL (|has| |#2| (-905)))) (-3554 (($ $ |#2| |#3| $) NIL)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-379))) (|has| |#2| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-563))) (|has| |#2| (-882 (-563)))))) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) 58)) (-2596 (($ (-1165 |#2|) (-860 |#1|)) 122) (($ (-1165 $) (-860 |#1|)) 52)) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) 59)) (-2588 (($ |#2| |#3|) 28) (($ $ (-860 |#1|) (-767)) 30) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ (-860 |#1|)) NIL)) (-2048 ((|#3| $) NIL) (((-767) $ (-860 |#1|)) 50) (((-640 (-767)) $ (-640 (-860 |#1|))) 57)) (-3084 (($ $ $) NIL (|has| |#2| (-846)))) (-1777 (($ $ $) NIL (|has| |#2| (-846)))) (-2803 (($ (-1 |#3| |#3|) $) NIL)) (-2240 (($ (-1 |#2| |#2|) $) NIL)) (-4234 (((-3 (-860 |#1|) "failed") $) 39)) (-2716 (($ $) NIL)) (-2726 ((|#2| $) 41)) (-3513 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-3573 (((-1151) $) NIL)) (-3733 (((-3 (-640 $) "failed") $) NIL)) (-2919 (((-3 (-640 $) "failed") $) NIL)) (-4086 (((-3 (-2 (|:| |var| (-860 |#1|)) (|:| -1654 (-767))) "failed") $) NIL)) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) 40)) (-2706 ((|#2| $) 115)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#2| (-452)))) (-3548 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) 127 (|has| |#2| (-452)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2174 (((-418 $) $) NIL (|has| |#2| (-905)))) (-3008 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-555)))) (-1540 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-860 |#1|) |#2|) 86) (($ $ (-640 (-860 |#1|)) (-640 |#2|)) 89) (($ $ (-860 |#1|) $) 84) (($ $ (-640 (-860 |#1|)) (-640 $)) 105)) (-2315 (($ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-4202 (($ $ (-860 |#1|)) 53) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-4167 ((|#3| $) 66) (((-767) $ (-860 |#1|)) 37) (((-640 (-767)) $ (-640 (-860 |#1|))) 56)) (-2220 (((-888 (-379)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-379)))) (|has| |#2| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-563)))) (|has| |#2| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-860 |#1|) (-611 (-536))) (|has| |#2| (-611 (-536)))))) (-1836 ((|#2| $) 124 (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-905))))) (-1693 (((-858) $) 144) (($ (-563)) NIL) (($ |#2|) 85) (($ (-860 |#1|)) 31) (($ (-407 (-563))) NIL (-4032 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#2| (-555)))) (-1337 (((-640 |#2|) $) NIL)) (-4319 ((|#2| $ |#3|) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#2| (-905))) (|has| |#2| (-145))))) (-1675 (((-767)) NIL)) (-2793 (($ $ $ (-767)) NIL (|has| |#2| (-172)))) (-2126 (((-112) $ $) NIL (|has| |#2| (-555)))) (-2241 (($) 17 T CONST)) (-2254 (($) 25 T CONST)) (-3209 (($ $ (-860 |#1|)) NIL) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-1778 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1837 (($ $ |#2|) 64 (|has| |#2| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) 110)) (** (($ $ (-917)) NIL) (($ $ (-767)) 108)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 29) (($ $ (-407 (-563))) NIL (|has| |#2| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#2| (-38 (-407 (-563))))) (($ |#2| $) 63) (($ $ |#2|) NIL)))
-(((-454 |#1| |#2| |#3|) (-13 (-945 |#2| |#3| (-860 |#1|)) (-10 -8 (-15 -3483 ($ $ (-640 (-563)))))) (-640 (-1169)) (-1045) (-238 (-3608 |#1|) (-767))) (T -454))
-((-3483 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-14 *3 (-640 (-1169))) (-5 *1 (-454 *3 *4 *5)) (-4 *4 (-1045)) (-4 *5 (-238 (-3608 *3) (-767))))))
-(-13 (-945 |#2| |#3| (-860 |#1|)) (-10 -8 (-15 -3483 ($ $ (-640 (-563))))))
-((-1855 (((-112) |#1| (-640 |#2|)) 68)) (-3128 (((-3 (-1257 (-640 |#2|)) "failed") (-767) |#1| (-640 |#2|)) 77)) (-1506 (((-3 (-640 |#2|) "failed") |#2| |#1| (-1257 (-640 |#2|))) 79)) (-2472 ((|#2| |#2| |#1|) 28)) (-1887 (((-767) |#2| (-640 |#2|)) 20)))
-(((-455 |#1| |#2|) (-10 -7 (-15 -2472 (|#2| |#2| |#1|)) (-15 -1887 ((-767) |#2| (-640 |#2|))) (-15 -3128 ((-3 (-1257 (-640 |#2|)) "failed") (-767) |#1| (-640 |#2|))) (-15 -1506 ((-3 (-640 |#2|) "failed") |#2| |#1| (-1257 (-640 |#2|)))) (-15 -1855 ((-112) |#1| (-640 |#2|)))) (-307) (-1233 |#1|)) (T -455))
-((-1855 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *5)) (-4 *5 (-1233 *3)) (-4 *3 (-307)) (-5 *2 (-112)) (-5 *1 (-455 *3 *5)))) (-1506 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1257 (-640 *3))) (-4 *4 (-307)) (-5 *2 (-640 *3)) (-5 *1 (-455 *4 *3)) (-4 *3 (-1233 *4)))) (-3128 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-767)) (-4 *4 (-307)) (-4 *6 (-1233 *4)) (-5 *2 (-1257 (-640 *6))) (-5 *1 (-455 *4 *6)) (-5 *5 (-640 *6)))) (-1887 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-307)) (-5 *2 (-767)) (-5 *1 (-455 *5 *3)))) (-2472 (*1 *2 *2 *3) (-12 (-4 *3 (-307)) (-5 *1 (-455 *3 *2)) (-4 *2 (-1233 *3)))))
-(-10 -7 (-15 -2472 (|#2| |#2| |#1|)) (-15 -1887 ((-767) |#2| (-640 |#2|))) (-15 -3128 ((-3 (-1257 (-640 |#2|)) "failed") (-767) |#1| (-640 |#2|))) (-15 -1506 ((-3 (-640 |#2|) "failed") |#2| |#1| (-1257 (-640 |#2|)))) (-15 -1855 ((-112) |#1| (-640 |#2|))))
-((-2174 (((-418 |#5|) |#5|) 24)))
-(((-456 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2174 ((-418 |#5|) |#5|))) (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $)) (-15 -2518 ((-3 $ "failed") (-1169))))) (-789) (-555) (-555) (-945 |#4| |#2| |#1|)) (T -456))
-((-2174 (*1 *2 *3) (-12 (-4 *4 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $)) (-15 -2518 ((-3 $ "failed") (-1169)))))) (-4 *5 (-789)) (-4 *7 (-555)) (-5 *2 (-418 *3)) (-5 *1 (-456 *4 *5 *6 *7 *3)) (-4 *6 (-555)) (-4 *3 (-945 *7 *5 *4)))))
-(-10 -7 (-15 -2174 ((-418 |#5|) |#5|)))
-((-2632 ((|#3|) 37)) (-3385 (((-1165 |#4|) (-1165 |#4|) (-1165 |#4|)) 33)))
-(((-457 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3385 ((-1165 |#4|) (-1165 |#4|) (-1165 |#4|))) (-15 -2632 (|#3|))) (-789) (-846) (-905) (-945 |#3| |#1| |#2|)) (T -457))
-((-2632 (*1 *2) (-12 (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-905)) (-5 *1 (-457 *3 *4 *2 *5)) (-4 *5 (-945 *2 *3 *4)))) (-3385 (*1 *2 *2 *2) (-12 (-5 *2 (-1165 *6)) (-4 *6 (-945 *5 *3 *4)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-905)) (-5 *1 (-457 *3 *4 *5 *6)))))
-(-10 -7 (-15 -3385 ((-1165 |#4|) (-1165 |#4|) (-1165 |#4|))) (-15 -2632 (|#3|)))
-((-2174 (((-418 (-1165 |#1|)) (-1165 |#1|)) 43)))
-(((-458 |#1|) (-10 -7 (-15 -2174 ((-418 (-1165 |#1|)) (-1165 |#1|)))) (-307)) (T -458))
-((-2174 (*1 *2 *3) (-12 (-4 *4 (-307)) (-5 *2 (-418 (-1165 *4))) (-5 *1 (-458 *4)) (-5 *3 (-1165 *4)))))
-(-10 -7 (-15 -2174 ((-418 (-1165 |#1|)) (-1165 |#1|))))
-((-2652 (((-52) |#2| (-1169) (-294 |#2|) (-1224 (-767))) 42) (((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-767))) 41) (((-52) |#2| (-1169) (-294 |#2|)) 35) (((-52) (-1 |#2| (-563)) (-294 |#2|)) 28)) (-3045 (((-52) |#2| (-1169) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563))) 80) (((-52) (-1 |#2| (-407 (-563))) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563))) 79) (((-52) |#2| (-1169) (-294 |#2|) (-1224 (-563))) 78) (((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-563))) 77) (((-52) |#2| (-1169) (-294 |#2|)) 72) (((-52) (-1 |#2| (-563)) (-294 |#2|)) 71)) (-2670 (((-52) |#2| (-1169) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563))) 66) (((-52) (-1 |#2| (-407 (-563))) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563))) 64)) (-2660 (((-52) |#2| (-1169) (-294 |#2|) (-1224 (-563))) 48) (((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-563))) 47)))
-(((-459 |#1| |#2|) (-10 -7 (-15 -2652 ((-52) (-1 |#2| (-563)) (-294 |#2|))) (-15 -2652 ((-52) |#2| (-1169) (-294 |#2|))) (-15 -2652 ((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-767)))) (-15 -2652 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-767)))) (-15 -2660 ((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-563)))) (-15 -2660 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-563)))) (-15 -2670 ((-52) (-1 |#2| (-407 (-563))) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563)))) (-15 -2670 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563)))) (-15 -3045 ((-52) (-1 |#2| (-563)) (-294 |#2|))) (-15 -3045 ((-52) |#2| (-1169) (-294 |#2|))) (-15 -3045 ((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-563)))) (-15 -3045 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-563)))) (-15 -3045 ((-52) (-1 |#2| (-407 (-563))) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563)))) (-15 -3045 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563))))) (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|))) (T -459))
-((-3045 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1169)) (-5 *5 (-294 *3)) (-5 *6 (-1224 (-407 (-563)))) (-5 *7 (-407 (-563))) (-4 *3 (-13 (-27) (-1193) (-430 *8))) (-4 *8 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *8 *3)))) (-3045 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-407 (-563)))) (-5 *4 (-294 *8)) (-5 *5 (-1224 (-407 (-563)))) (-5 *6 (-407 (-563))) (-4 *8 (-13 (-27) (-1193) (-430 *7))) (-4 *7 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *7 *8)))) (-3045 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1169)) (-5 *5 (-294 *3)) (-5 *6 (-1224 (-563))) (-4 *3 (-13 (-27) (-1193) (-430 *7))) (-4 *7 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *7 *3)))) (-3045 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-563))) (-5 *4 (-294 *7)) (-5 *5 (-1224 (-563))) (-4 *7 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *6 *7)))) (-3045 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1169)) (-5 *5 (-294 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *6 *3)))) (-3045 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-563))) (-5 *4 (-294 *6)) (-4 *6 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *5 *6)))) (-2670 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1169)) (-5 *5 (-294 *3)) (-5 *6 (-1224 (-407 (-563)))) (-5 *7 (-407 (-563))) (-4 *3 (-13 (-27) (-1193) (-430 *8))) (-4 *8 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *8 *3)))) (-2670 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-407 (-563)))) (-5 *4 (-294 *8)) (-5 *5 (-1224 (-407 (-563)))) (-5 *6 (-407 (-563))) (-4 *8 (-13 (-27) (-1193) (-430 *7))) (-4 *7 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *7 *8)))) (-2660 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1169)) (-5 *5 (-294 *3)) (-5 *6 (-1224 (-563))) (-4 *3 (-13 (-27) (-1193) (-430 *7))) (-4 *7 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *7 *3)))) (-2660 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-563))) (-5 *4 (-294 *7)) (-5 *5 (-1224 (-563))) (-4 *7 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *6 *7)))) (-2652 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1169)) (-5 *5 (-294 *3)) (-5 *6 (-1224 (-767))) (-4 *3 (-13 (-27) (-1193) (-430 *7))) (-4 *7 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *7 *3)))) (-2652 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-563))) (-5 *4 (-294 *7)) (-5 *5 (-1224 (-767))) (-4 *7 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *6 *7)))) (-2652 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1169)) (-5 *5 (-294 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *6 *3)))) (-2652 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-563))) (-5 *4 (-294 *6)) (-4 *6 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *5 *6)))))
-(-10 -7 (-15 -2652 ((-52) (-1 |#2| (-563)) (-294 |#2|))) (-15 -2652 ((-52) |#2| (-1169) (-294 |#2|))) (-15 -2652 ((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-767)))) (-15 -2652 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-767)))) (-15 -2660 ((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-563)))) (-15 -2660 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-563)))) (-15 -2670 ((-52) (-1 |#2| (-407 (-563))) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563)))) (-15 -2670 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563)))) (-15 -3045 ((-52) (-1 |#2| (-563)) (-294 |#2|))) (-15 -3045 ((-52) |#2| (-1169) (-294 |#2|))) (-15 -3045 ((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-563)))) (-15 -3045 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-563)))) (-15 -3045 ((-52) (-1 |#2| (-407 (-563))) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563)))) (-15 -3045 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563)))))
-((-2472 ((|#2| |#2| |#1|) 15)) (-1690 (((-640 |#2|) |#2| (-640 |#2|) |#1| (-917)) 68)) (-2744 (((-2 (|:| |plist| (-640 |#2|)) (|:| |modulo| |#1|)) |#2| (-640 |#2|) |#1| (-917)) 59)))
-(((-460 |#1| |#2|) (-10 -7 (-15 -2744 ((-2 (|:| |plist| (-640 |#2|)) (|:| |modulo| |#1|)) |#2| (-640 |#2|) |#1| (-917))) (-15 -1690 ((-640 |#2|) |#2| (-640 |#2|) |#1| (-917))) (-15 -2472 (|#2| |#2| |#1|))) (-307) (-1233 |#1|)) (T -460))
-((-2472 (*1 *2 *2 *3) (-12 (-4 *3 (-307)) (-5 *1 (-460 *3 *2)) (-4 *2 (-1233 *3)))) (-1690 (*1 *2 *3 *2 *4 *5) (-12 (-5 *2 (-640 *3)) (-5 *5 (-917)) (-4 *3 (-1233 *4)) (-4 *4 (-307)) (-5 *1 (-460 *4 *3)))) (-2744 (*1 *2 *3 *4 *5 *6) (-12 (-5 *6 (-917)) (-4 *5 (-307)) (-4 *3 (-1233 *5)) (-5 *2 (-2 (|:| |plist| (-640 *3)) (|:| |modulo| *5))) (-5 *1 (-460 *5 *3)) (-5 *4 (-640 *3)))))
-(-10 -7 (-15 -2744 ((-2 (|:| |plist| (-640 |#2|)) (|:| |modulo| |#1|)) |#2| (-640 |#2|) |#1| (-917))) (-15 -1690 ((-640 |#2|) |#2| (-640 |#2|) |#1| (-917))) (-15 -2472 (|#2| |#2| |#1|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 28)) (-1946 (($ |#3|) 25)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2751 (($ $) 32)) (-2379 (($ |#2| |#4| $) 33)) (-2588 (($ |#2| (-709 |#3| |#4| |#5|)) 24)) (-2716 (((-709 |#3| |#4| |#5|) $) 15)) (-4228 ((|#3| $) 19)) (-2093 ((|#4| $) 17)) (-2726 ((|#2| $) 29)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-3923 (($ |#2| |#3| |#4|) 26)) (-2241 (($) 36 T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) 34)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ |#6| $) 40) (($ $ |#6|) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-461 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-713 |#6|) (-713 |#2|) (-10 -8 (-15 -2726 (|#2| $)) (-15 -2716 ((-709 |#3| |#4| |#5|) $)) (-15 -2093 (|#4| $)) (-15 -4228 (|#3| $)) (-15 -2751 ($ $)) (-15 -2588 ($ |#2| (-709 |#3| |#4| |#5|))) (-15 -1946 ($ |#3|)) (-15 -3923 ($ |#2| |#3| |#4|)) (-15 -2379 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-640 (-1169)) (-172) (-846) (-238 (-3608 |#1|) (-767)) (-1 (-112) (-2 (|:| -2555 |#3|) (|:| -1654 |#4|)) (-2 (|:| -2555 |#3|) (|:| -1654 |#4|))) (-945 |#2| |#4| (-860 |#1|))) (T -461))
-((* (*1 *1 *2 *1) (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172)) (-4 *6 (-238 (-3608 *3) (-767))) (-14 *7 (-1 (-112) (-2 (|:| -2555 *5) (|:| -1654 *6)) (-2 (|:| -2555 *5) (|:| -1654 *6)))) (-5 *1 (-461 *3 *4 *5 *6 *7 *2)) (-4 *5 (-846)) (-4 *2 (-945 *4 *6 (-860 *3))))) (-2726 (*1 *2 *1) (-12 (-14 *3 (-640 (-1169))) (-4 *5 (-238 (-3608 *3) (-767))) (-14 *6 (-1 (-112) (-2 (|:| -2555 *4) (|:| -1654 *5)) (-2 (|:| -2555 *4) (|:| -1654 *5)))) (-4 *2 (-172)) (-5 *1 (-461 *3 *2 *4 *5 *6 *7)) (-4 *4 (-846)) (-4 *7 (-945 *2 *5 (-860 *3))))) (-2716 (*1 *2 *1) (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172)) (-4 *6 (-238 (-3608 *3) (-767))) (-14 *7 (-1 (-112) (-2 (|:| -2555 *5) (|:| -1654 *6)) (-2 (|:| -2555 *5) (|:| -1654 *6)))) (-5 *2 (-709 *5 *6 *7)) (-5 *1 (-461 *3 *4 *5 *6 *7 *8)) (-4 *5 (-846)) (-4 *8 (-945 *4 *6 (-860 *3))))) (-2093 (*1 *2 *1) (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172)) (-14 *6 (-1 (-112) (-2 (|:| -2555 *5) (|:| -1654 *2)) (-2 (|:| -2555 *5) (|:| -1654 *2)))) (-4 *2 (-238 (-3608 *3) (-767))) (-5 *1 (-461 *3 *4 *5 *2 *6 *7)) (-4 *5 (-846)) (-4 *7 (-945 *4 *2 (-860 *3))))) (-4228 (*1 *2 *1) (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172)) (-4 *5 (-238 (-3608 *3) (-767))) (-14 *6 (-1 (-112) (-2 (|:| -2555 *2) (|:| -1654 *5)) (-2 (|:| -2555 *2) (|:| -1654 *5)))) (-4 *2 (-846)) (-5 *1 (-461 *3 *4 *2 *5 *6 *7)) (-4 *7 (-945 *4 *5 (-860 *3))))) (-2751 (*1 *1 *1) (-12 (-14 *2 (-640 (-1169))) (-4 *3 (-172)) (-4 *5 (-238 (-3608 *2) (-767))) (-14 *6 (-1 (-112) (-2 (|:| -2555 *4) (|:| -1654 *5)) (-2 (|:| -2555 *4) (|:| -1654 *5)))) (-5 *1 (-461 *2 *3 *4 *5 *6 *7)) (-4 *4 (-846)) (-4 *7 (-945 *3 *5 (-860 *2))))) (-2588 (*1 *1 *2 *3) (-12 (-5 *3 (-709 *5 *6 *7)) (-4 *5 (-846)) (-4 *6 (-238 (-3608 *4) (-767))) (-14 *7 (-1 (-112) (-2 (|:| -2555 *5) (|:| -1654 *6)) (-2 (|:| -2555 *5) (|:| -1654 *6)))) (-14 *4 (-640 (-1169))) (-4 *2 (-172)) (-5 *1 (-461 *4 *2 *5 *6 *7 *8)) (-4 *8 (-945 *2 *6 (-860 *4))))) (-1946 (*1 *1 *2) (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172)) (-4 *5 (-238 (-3608 *3) (-767))) (-14 *6 (-1 (-112) (-2 (|:| -2555 *2) (|:| -1654 *5)) (-2 (|:| -2555 *2) (|:| -1654 *5)))) (-5 *1 (-461 *3 *4 *2 *5 *6 *7)) (-4 *2 (-846)) (-4 *7 (-945 *4 *5 (-860 *3))))) (-3923 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-640 (-1169))) (-4 *2 (-172)) (-4 *4 (-238 (-3608 *5) (-767))) (-14 *6 (-1 (-112) (-2 (|:| -2555 *3) (|:| -1654 *4)) (-2 (|:| -2555 *3) (|:| -1654 *4)))) (-5 *1 (-461 *5 *2 *3 *4 *6 *7)) (-4 *3 (-846)) (-4 *7 (-945 *2 *4 (-860 *5))))) (-2379 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-640 (-1169))) (-4 *2 (-172)) (-4 *3 (-238 (-3608 *4) (-767))) (-14 *6 (-1 (-112) (-2 (|:| -2555 *5) (|:| -1654 *3)) (-2 (|:| -2555 *5) (|:| -1654 *3)))) (-5 *1 (-461 *4 *2 *5 *3 *6 *7)) (-4 *5 (-846)) (-4 *7 (-945 *2 *3 (-860 *4))))))
-(-13 (-713 |#6|) (-713 |#2|) (-10 -8 (-15 -2726 (|#2| $)) (-15 -2716 ((-709 |#3| |#4| |#5|) $)) (-15 -2093 (|#4| $)) (-15 -4228 (|#3| $)) (-15 -2751 ($ $)) (-15 -2588 ($ |#2| (-709 |#3| |#4| |#5|))) (-15 -1946 ($ |#3|)) (-15 -3923 ($ |#2| |#3| |#4|)) (-15 -2379 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
-((-3951 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 37)))
-(((-462 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3951 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-789) (-846) (-555) (-945 |#3| |#1| |#2|) (-13 (-1034 (-407 (-563))) (-363) (-10 -8 (-15 -1693 ($ |#4|)) (-15 -2143 (|#4| $)) (-15 -2154 (|#4| $))))) (T -462))
-((-3951 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-846)) (-4 *5 (-789)) (-4 *6 (-555)) (-4 *7 (-945 *6 *5 *3)) (-5 *1 (-462 *5 *3 *6 *7 *2)) (-4 *2 (-13 (-1034 (-407 (-563))) (-363) (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $)) (-15 -2154 (*7 $))))))))
-(-10 -7 (-15 -3951 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
-((-1677 (((-112) $ $) NIL)) (-2606 (((-640 |#3|) $) 41)) (-1706 (((-112) $) NIL)) (-3854 (((-112) $) NIL (|has| |#1| (-555)))) (-1642 (((-2 (|:| |under| $) (|:| -1583 $) (|:| |upper| $)) $ |#3|) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-2256 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-1483 (((-112) $) NIL (|has| |#1| (-555)))) (-1626 (((-112) $ $) NIL (|has| |#1| (-555)))) (-4221 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1763 (((-112) $) NIL (|has| |#1| (-555)))) (-3746 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-1866 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-2131 (((-3 $ "failed") (-640 |#4|)) 48)) (-2058 (($ (-640 |#4|)) NIL)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093))))) (-1459 (($ |#4| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1972 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4407))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4407)))) (-2659 (((-640 |#4|) $) 18 (|has| $ (-6 -4407)))) (-2957 ((|#3| $) 46)) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#4|) $) 14 (|has| $ (-6 -4407)))) (-1729 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093))))) (-4345 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#4| |#4|) $) 21)) (-2965 (((-640 |#3|) $) NIL)) (-2780 (((-112) |#3| $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-2152 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-1694 (((-1113) $) NIL)) (-4203 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3138 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 |#4|) (-640 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) 39)) (-3135 (($) 17)) (-1709 (((-767) |#4| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093)))) (((-767) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) 16)) (-2220 (((-536) $) NIL (|has| |#4| (-611 (-536)))) (($ (-640 |#4|)) 50)) (-1707 (($ (-640 |#4|)) 13)) (-3577 (($ $ |#3|) NIL)) (-1593 (($ $ |#3|) NIL)) (-4192 (($ $ |#3|) NIL)) (-1693 (((-858) $) 38) (((-640 |#4|) $) 49)) (-4383 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 30)) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-463 |#1| |#2| |#3| |#4|) (-13 (-972 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2220 ($ (-640 |#4|))) (-6 -4407) (-6 -4408))) (-1045) (-789) (-846) (-1059 |#1| |#2| |#3|)) (T -463))
-((-2220 (*1 *1 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-463 *3 *4 *5 *6)))))
-(-13 (-972 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2220 ($ (-640 |#4|))) (-6 -4407) (-6 -4408)))
-((-2241 (($) 11)) (-2254 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
-(((-464 |#1| |#2| |#3|) (-10 -8 (-15 -2254 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2241 (|#1|))) (-465 |#2| |#3|) (-172) (-23)) (T -464))
-NIL
-(-10 -8 (-15 -2254 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2241 (|#1|)))
-((-1677 (((-112) $ $) 7)) (-2131 (((-3 |#1| "failed") $) 26)) (-2058 ((|#1| $) 27)) (-2041 (($ $ $) 23)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-4167 ((|#2| $) 19)) (-1693 (((-858) $) 11) (($ |#1|) 25)) (-2241 (($) 18 T CONST)) (-2254 (($) 24 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 15) (($ $ $) 13)) (-1814 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3245 (((-3 $ "failed")) NIL (|has| (-407 (-948 |#1|)) (-555)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-3749 (((-1257 (-684 (-407 (-948 |#1|)))) (-1257 $)) NIL) (((-1257 (-684 (-407 (-948 |#1|))))) NIL)) (-4039 (((-1257 $)) NIL)) (-2569 (($) NIL T CONST)) (-2288 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) NIL)) (-1914 (((-3 $ "failed")) NIL (|has| (-407 (-948 |#1|)) (-555)))) (-3410 (((-684 (-407 (-948 |#1|))) (-1257 $)) NIL) (((-684 (-407 (-948 |#1|)))) NIL)) (-4017 (((-407 (-948 |#1|)) $) NIL)) (-3386 (((-684 (-407 (-948 |#1|))) $ (-1257 $)) NIL) (((-684 (-407 (-948 |#1|))) $) NIL)) (-3342 (((-3 $ "failed") $) NIL (|has| (-407 (-948 |#1|)) (-555)))) (-2214 (((-1165 (-948 (-407 (-948 |#1|))))) NIL (|has| (-407 (-948 |#1|)) (-363))) (((-1165 (-407 (-948 |#1|)))) 84 (|has| |#1| (-555)))) (-3376 (($ $ (-917)) NIL)) (-3995 (((-407 (-948 |#1|)) $) NIL)) (-1938 (((-1165 (-407 (-948 |#1|))) $) 82 (|has| (-407 (-948 |#1|)) (-555)))) (-3436 (((-407 (-948 |#1|)) (-1257 $)) NIL) (((-407 (-948 |#1|))) NIL)) (-3973 (((-1165 (-407 (-948 |#1|))) $) NIL)) (-3912 (((-112)) NIL)) (-3458 (($ (-1257 (-407 (-948 |#1|))) (-1257 $)) 103) (($ (-1257 (-407 (-948 |#1|)))) NIL)) (-3951 (((-3 $ "failed") $) NIL (|has| (-407 (-948 |#1|)) (-555)))) (-2521 (((-917)) NIL)) (-3879 (((-112)) NIL)) (-3617 (($ $ (-917)) NIL)) (-3843 (((-112)) NIL)) (-3825 (((-112)) NIL)) (-3861 (((-112)) NIL)) (-2299 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) NIL)) (-1927 (((-3 $ "failed")) NIL (|has| (-407 (-948 |#1|)) (-555)))) (-3422 (((-684 (-407 (-948 |#1|))) (-1257 $)) NIL) (((-684 (-407 (-948 |#1|)))) NIL)) (-4028 (((-407 (-948 |#1|)) $) NIL)) (-3398 (((-684 (-407 (-948 |#1|))) $ (-1257 $)) NIL) (((-684 (-407 (-948 |#1|))) $) NIL)) (-3353 (((-3 $ "failed") $) NIL (|has| (-407 (-948 |#1|)) (-555)))) (-2267 (((-1165 (-948 (-407 (-948 |#1|))))) NIL (|has| (-407 (-948 |#1|)) (-363))) (((-1165 (-407 (-948 |#1|)))) 83 (|has| |#1| (-555)))) (-3364 (($ $ (-917)) NIL)) (-4007 (((-407 (-948 |#1|)) $) NIL)) (-3801 (((-1165 (-407 (-948 |#1|))) $) 77 (|has| (-407 (-948 |#1|)) (-555)))) (-3447 (((-407 (-948 |#1|)) (-1257 $)) NIL) (((-407 (-948 |#1|))) NIL)) (-3984 (((-1165 (-407 (-948 |#1|))) $) NIL)) (-3923 (((-112)) NIL)) (-3854 (((-1151) $) NIL)) (-3832 (((-112)) NIL)) (-3852 (((-112)) NIL)) (-3868 (((-112)) NIL)) (-1693 (((-1113) $) NIL)) (-2144 (((-407 (-948 |#1|)) $ $) 71 (|has| |#1| (-555)))) (-2192 (((-407 (-948 |#1|)) $) 93 (|has| |#1| (-555)))) (-2180 (((-407 (-948 |#1|)) $) 95 (|has| |#1| (-555)))) (-2203 (((-1165 (-407 (-948 |#1|))) $) 88 (|has| |#1| (-555)))) (-2133 (((-407 (-948 |#1|))) 72 (|has| |#1| (-555)))) (-2165 (((-407 (-948 |#1|)) $ $) 64 (|has| |#1| (-555)))) (-2244 (((-407 (-948 |#1|)) $) 92 (|has| |#1| (-555)))) (-2228 (((-407 (-948 |#1|)) $) 94 (|has| |#1| (-555)))) (-2257 (((-1165 (-407 (-948 |#1|))) $) 87 (|has| |#1| (-555)))) (-2154 (((-407 (-948 |#1|))) 68 (|has| |#1| (-555)))) (-2277 (($) 101) (($ (-1169)) 107) (($ (-1257 (-1169))) 106) (($ (-1257 $)) 96) (($ (-1169) (-1257 $)) 105) (($ (-1257 (-1169)) (-1257 $)) 104)) (-3900 (((-112)) NIL)) (-2308 (((-407 (-948 |#1|)) $ (-563)) NIL)) (-3759 (((-1257 (-407 (-948 |#1|))) $ (-1257 $)) 98) (((-684 (-407 (-948 |#1|))) (-1257 $) (-1257 $)) NIL) (((-1257 (-407 (-948 |#1|))) $) 40) (((-684 (-407 (-948 |#1|))) (-1257 $)) NIL)) (-2219 (((-1257 (-407 (-948 |#1|))) $) NIL) (($ (-1257 (-407 (-948 |#1|)))) 37)) (-2122 (((-640 (-948 (-407 (-948 |#1|)))) (-1257 $)) NIL) (((-640 (-948 (-407 (-948 |#1|))))) NIL) (((-640 (-948 |#1|)) (-1257 $)) 99 (|has| |#1| (-555))) (((-640 (-948 |#1|))) 100 (|has| |#1| (-555)))) (-1745 (($ $ $) NIL)) (-3963 (((-112)) NIL)) (-1692 (((-858) $) NIL) (($ (-1257 (-407 (-948 |#1|)))) NIL)) (-4013 (((-1257 $)) 60)) (-3813 (((-640 (-1257 (-407 (-948 |#1|))))) NIL (|has| (-407 (-948 |#1|)) (-555)))) (-1756 (($ $ $ $) NIL)) (-3942 (((-112)) NIL)) (-3727 (($ (-684 (-407 (-948 |#1|))) $) NIL)) (-1729 (($ $ $) NIL)) (-3952 (((-112)) NIL)) (-3933 (((-112)) NIL)) (-3891 (((-112)) NIL)) (-2239 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) 97)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 56) (($ $ (-407 (-948 |#1|))) NIL) (($ (-407 (-948 |#1|)) $) NIL) (($ (-1135 |#2| (-407 (-948 |#1|))) $) NIL)))
+(((-453 |#1| |#2| |#3| |#4|) (-13 (-417 (-407 (-948 |#1|))) (-643 (-1135 |#2| (-407 (-948 |#1|)))) (-10 -8 (-15 -1692 ($ (-1257 (-407 (-948 |#1|))))) (-15 -2299 ((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed"))) (-15 -2288 ((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed"))) (-15 -2277 ($)) (-15 -2277 ($ (-1169))) (-15 -2277 ($ (-1257 (-1169)))) (-15 -2277 ($ (-1257 $))) (-15 -2277 ($ (-1169) (-1257 $))) (-15 -2277 ($ (-1257 (-1169)) (-1257 $))) (IF (|has| |#1| (-555)) (PROGN (-15 -2267 ((-1165 (-407 (-948 |#1|))))) (-15 -2257 ((-1165 (-407 (-948 |#1|))) $)) (-15 -2244 ((-407 (-948 |#1|)) $)) (-15 -2228 ((-407 (-948 |#1|)) $)) (-15 -2214 ((-1165 (-407 (-948 |#1|))))) (-15 -2203 ((-1165 (-407 (-948 |#1|))) $)) (-15 -2192 ((-407 (-948 |#1|)) $)) (-15 -2180 ((-407 (-948 |#1|)) $)) (-15 -2165 ((-407 (-948 |#1|)) $ $)) (-15 -2154 ((-407 (-948 |#1|)))) (-15 -2144 ((-407 (-948 |#1|)) $ $)) (-15 -2133 ((-407 (-948 |#1|)))) (-15 -2122 ((-640 (-948 |#1|)) (-1257 $))) (-15 -2122 ((-640 (-948 |#1|))))) |%noBranch|))) (-172) (-917) (-640 (-1169)) (-1257 (-684 |#1|))) (T -453))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1257 (-407 (-948 *3)))) (-4 *3 (-172)) (-14 *6 (-1257 (-684 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))))) (-2299 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-453 *3 *4 *5 *6)) (|:| -4013 (-640 (-453 *3 *4 *5 *6))))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2288 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-453 *3 *4 *5 *6)) (|:| -4013 (-640 (-453 *3 *4 *5 *6))))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2277 (*1 *1) (-12 (-5 *1 (-453 *2 *3 *4 *5)) (-4 *2 (-172)) (-14 *3 (-917)) (-14 *4 (-640 (-1169))) (-14 *5 (-1257 (-684 *2))))) (-2277 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 *2)) (-14 *6 (-1257 (-684 *3))))) (-2277 (*1 *1 *2) (-12 (-5 *2 (-1257 (-1169))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2277 (*1 *1 *2) (-12 (-5 *2 (-1257 (-453 *3 *4 *5 *6))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2277 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-453 *4 *5 *6 *7))) (-5 *1 (-453 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-917)) (-14 *6 (-640 *2)) (-14 *7 (-1257 (-684 *4))))) (-2277 (*1 *1 *2 *3) (-12 (-5 *2 (-1257 (-1169))) (-5 *3 (-1257 (-453 *4 *5 *6 *7))) (-5 *1 (-453 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-917)) (-14 *6 (-640 (-1169))) (-14 *7 (-1257 (-684 *4))))) (-2267 (*1 *2) (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2257 (*1 *2 *1) (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2244 (*1 *2 *1) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2228 (*1 *2 *1) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2214 (*1 *2) (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2203 (*1 *2 *1) (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2192 (*1 *2 *1) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2180 (*1 *2 *1) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2165 (*1 *2 *1 *1) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2154 (*1 *2) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2144 (*1 *2 *1 *1) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2133 (*1 *2) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))) (-2122 (*1 *2 *3) (-12 (-5 *3 (-1257 (-453 *4 *5 *6 *7))) (-5 *2 (-640 (-948 *4))) (-5 *1 (-453 *4 *5 *6 *7)) (-4 *4 (-555)) (-4 *4 (-172)) (-14 *5 (-917)) (-14 *6 (-640 (-1169))) (-14 *7 (-1257 (-684 *4))))) (-2122 (*1 *2) (-12 (-5 *2 (-640 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
+(-13 (-417 (-407 (-948 |#1|))) (-643 (-1135 |#2| (-407 (-948 |#1|)))) (-10 -8 (-15 -1692 ($ (-1257 (-407 (-948 |#1|))))) (-15 -2299 ((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed"))) (-15 -2288 ((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed"))) (-15 -2277 ($)) (-15 -2277 ($ (-1169))) (-15 -2277 ($ (-1257 (-1169)))) (-15 -2277 ($ (-1257 $))) (-15 -2277 ($ (-1169) (-1257 $))) (-15 -2277 ($ (-1257 (-1169)) (-1257 $))) (IF (|has| |#1| (-555)) (PROGN (-15 -2267 ((-1165 (-407 (-948 |#1|))))) (-15 -2257 ((-1165 (-407 (-948 |#1|))) $)) (-15 -2244 ((-407 (-948 |#1|)) $)) (-15 -2228 ((-407 (-948 |#1|)) $)) (-15 -2214 ((-1165 (-407 (-948 |#1|))))) (-15 -2203 ((-1165 (-407 (-948 |#1|))) $)) (-15 -2192 ((-407 (-948 |#1|)) $)) (-15 -2180 ((-407 (-948 |#1|)) $)) (-15 -2165 ((-407 (-948 |#1|)) $ $)) (-15 -2154 ((-407 (-948 |#1|)))) (-15 -2144 ((-407 (-948 |#1|)) $ $)) (-15 -2133 ((-407 (-948 |#1|)))) (-15 -2122 ((-640 (-948 |#1|)) (-1257 $))) (-15 -2122 ((-640 (-948 |#1|))))) |%noBranch|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 13)) (-2605 (((-640 (-860 |#1|)) $) 74)) (-2138 (((-1165 $) $ (-860 |#1|)) 46) (((-1165 |#2|) $) 117)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#2| (-555)))) (-3231 (($ $) NIL (|has| |#2| (-555)))) (-3211 (((-112) $) NIL (|has| |#2| (-555)))) (-3897 (((-767) $) 21) (((-767) $ (-640 (-860 |#1|))) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-1798 (($ $) NIL (|has| |#2| (-452)))) (-2802 (((-418 $) $) NIL (|has| |#2| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#2| "failed") $) 44) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-860 |#1|) "failed") $) NIL)) (-2057 ((|#2| $) 42) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-860 |#1|) $) NIL)) (-1612 (($ $ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-1373 (($ $ (-640 (-563))) 79)) (-2750 (($ $) 67)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-4151 (($ $) NIL (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-2738 (((-640 $) $) NIL)) (-2560 (((-112) $) NIL (|has| |#2| (-905)))) (-2159 (($ $ |#2| |#3| $) NIL)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-379))) (|has| |#2| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-563))) (|has| |#2| (-882 (-563)))))) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) 58)) (-2595 (($ (-1165 |#2|) (-860 |#1|)) 122) (($ (-1165 $) (-860 |#1|)) 52)) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) 59)) (-2587 (($ |#2| |#3|) 28) (($ $ (-860 |#1|) (-767)) 30) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ (-860 |#1|)) NIL)) (-3908 ((|#3| $) NIL) (((-767) $ (-860 |#1|)) 50) (((-640 (-767)) $ (-640 (-860 |#1|))) 57)) (-3088 (($ $ $) NIL (|has| |#2| (-846)))) (-1776 (($ $ $) NIL (|has| |#2| (-846)))) (-2170 (($ (-1 |#3| |#3|) $) NIL)) (-2238 (($ (-1 |#2| |#2|) $) NIL)) (-1698 (((-3 (-860 |#1|) "failed") $) 39)) (-2715 (($ $) NIL)) (-2725 ((|#2| $) 41)) (-3517 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-3854 (((-1151) $) NIL)) (-3939 (((-3 (-640 $) "failed") $) NIL)) (-3930 (((-3 (-640 $) "failed") $) NIL)) (-3949 (((-3 (-2 (|:| |var| (-860 |#1|)) (|:| -3311 (-767))) "failed") $) NIL)) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) 40)) (-2705 ((|#2| $) 115)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#2| (-452)))) (-3551 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) 127 (|has| |#2| (-452)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2173 (((-418 $) $) NIL (|has| |#2| (-905)))) (-3012 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-555)))) (-1542 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-860 |#1|) |#2|) 86) (($ $ (-640 (-860 |#1|)) (-640 |#2|)) 89) (($ $ (-860 |#1|) $) 84) (($ $ (-640 (-860 |#1|)) (-640 $)) 105)) (-1623 (($ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-4203 (($ $ (-860 |#1|)) 53) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-3871 ((|#3| $) 66) (((-767) $ (-860 |#1|)) 37) (((-640 (-767)) $ (-640 (-860 |#1|))) 56)) (-2219 (((-888 (-379)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-379)))) (|has| |#2| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-563)))) (|has| |#2| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-860 |#1|) (-611 (-536))) (|has| |#2| (-611 (-536)))))) (-3885 ((|#2| $) 124 (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-905))))) (-1692 (((-858) $) 144) (($ (-563)) NIL) (($ |#2|) 85) (($ (-860 |#1|)) 31) (($ (-407 (-563))) NIL (-4034 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#2| (-555)))) (-3955 (((-640 |#2|) $) NIL)) (-3244 ((|#2| $ |#3|) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#2| (-905))) (|has| |#2| (-145))))) (-3914 (((-767)) NIL)) (-2148 (($ $ $ (-767)) NIL (|has| |#2| (-172)))) (-3223 (((-112) $ $) NIL (|has| |#2| (-555)))) (-2239 (($) 17 T CONST)) (-2253 (($) 25 T CONST)) (-3213 (($ $ (-860 |#1|)) NIL) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-1779 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1836 (($ $ |#2|) 64 (|has| |#2| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) 110)) (** (($ $ (-917)) NIL) (($ $ (-767)) 108)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 29) (($ $ (-407 (-563))) NIL (|has| |#2| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#2| (-38 (-407 (-563))))) (($ |#2| $) 63) (($ $ |#2|) NIL)))
+(((-454 |#1| |#2| |#3|) (-13 (-945 |#2| |#3| (-860 |#1|)) (-10 -8 (-15 -1373 ($ $ (-640 (-563)))))) (-640 (-1169)) (-1045) (-238 (-3610 |#1|) (-767))) (T -454))
+((-1373 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-14 *3 (-640 (-1169))) (-5 *1 (-454 *3 *4 *5)) (-4 *4 (-1045)) (-4 *5 (-238 (-3610 *3) (-767))))))
+(-13 (-945 |#2| |#3| (-860 |#1|)) (-10 -8 (-15 -1373 ($ $ (-640 (-563))))))
+((-2341 (((-112) |#1| (-640 |#2|)) 68)) (-2321 (((-3 (-1257 (-640 |#2|)) "failed") (-767) |#1| (-640 |#2|)) 77)) (-2330 (((-3 (-640 |#2|) "failed") |#2| |#1| (-1257 (-640 |#2|))) 79)) (-4219 ((|#2| |#2| |#1|) 28)) (-2311 (((-767) |#2| (-640 |#2|)) 20)))
+(((-455 |#1| |#2|) (-10 -7 (-15 -4219 (|#2| |#2| |#1|)) (-15 -2311 ((-767) |#2| (-640 |#2|))) (-15 -2321 ((-3 (-1257 (-640 |#2|)) "failed") (-767) |#1| (-640 |#2|))) (-15 -2330 ((-3 (-640 |#2|) "failed") |#2| |#1| (-1257 (-640 |#2|)))) (-15 -2341 ((-112) |#1| (-640 |#2|)))) (-307) (-1233 |#1|)) (T -455))
+((-2341 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *5)) (-4 *5 (-1233 *3)) (-4 *3 (-307)) (-5 *2 (-112)) (-5 *1 (-455 *3 *5)))) (-2330 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1257 (-640 *3))) (-4 *4 (-307)) (-5 *2 (-640 *3)) (-5 *1 (-455 *4 *3)) (-4 *3 (-1233 *4)))) (-2321 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-767)) (-4 *4 (-307)) (-4 *6 (-1233 *4)) (-5 *2 (-1257 (-640 *6))) (-5 *1 (-455 *4 *6)) (-5 *5 (-640 *6)))) (-2311 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-307)) (-5 *2 (-767)) (-5 *1 (-455 *5 *3)))) (-4219 (*1 *2 *2 *3) (-12 (-4 *3 (-307)) (-5 *1 (-455 *3 *2)) (-4 *2 (-1233 *3)))))
+(-10 -7 (-15 -4219 (|#2| |#2| |#1|)) (-15 -2311 ((-767) |#2| (-640 |#2|))) (-15 -2321 ((-3 (-1257 (-640 |#2|)) "failed") (-767) |#1| (-640 |#2|))) (-15 -2330 ((-3 (-640 |#2|) "failed") |#2| |#1| (-1257 (-640 |#2|)))) (-15 -2341 ((-112) |#1| (-640 |#2|))))
+((-2173 (((-418 |#5|) |#5|) 24)))
+(((-456 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2173 ((-418 |#5|) |#5|))) (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $)) (-15 -2517 ((-3 $ "failed") (-1169))))) (-789) (-555) (-555) (-945 |#4| |#2| |#1|)) (T -456))
+((-2173 (*1 *2 *3) (-12 (-4 *4 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $)) (-15 -2517 ((-3 $ "failed") (-1169)))))) (-4 *5 (-789)) (-4 *7 (-555)) (-5 *2 (-418 *3)) (-5 *1 (-456 *4 *5 *6 *7 *3)) (-4 *6 (-555)) (-4 *3 (-945 *7 *5 *4)))))
+(-10 -7 (-15 -2173 ((-418 |#5|) |#5|)))
+((-2027 ((|#3|) 34)) (-2103 (((-1165 |#4|) (-1165 |#4|) (-1165 |#4|)) 30)))
+(((-457 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2103 ((-1165 |#4|) (-1165 |#4|) (-1165 |#4|))) (-15 -2027 (|#3|))) (-789) (-846) (-905) (-945 |#3| |#1| |#2|)) (T -457))
+((-2027 (*1 *2) (-12 (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-905)) (-5 *1 (-457 *3 *4 *2 *5)) (-4 *5 (-945 *2 *3 *4)))) (-2103 (*1 *2 *2 *2) (-12 (-5 *2 (-1165 *6)) (-4 *6 (-945 *5 *3 *4)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-905)) (-5 *1 (-457 *3 *4 *5 *6)))))
+(-10 -7 (-15 -2103 ((-1165 |#4|) (-1165 |#4|) (-1165 |#4|))) (-15 -2027 (|#3|)))
+((-2173 (((-418 (-1165 |#1|)) (-1165 |#1|)) 43)))
+(((-458 |#1|) (-10 -7 (-15 -2173 ((-418 (-1165 |#1|)) (-1165 |#1|)))) (-307)) (T -458))
+((-2173 (*1 *2 *3) (-12 (-4 *4 (-307)) (-5 *2 (-418 (-1165 *4))) (-5 *1 (-458 *4)) (-5 *3 (-1165 *4)))))
+(-10 -7 (-15 -2173 ((-418 (-1165 |#1|)) (-1165 |#1|))))
+((-2651 (((-52) |#2| (-1169) (-294 |#2|) (-1224 (-767))) 42) (((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-767))) 41) (((-52) |#2| (-1169) (-294 |#2|)) 35) (((-52) (-1 |#2| (-563)) (-294 |#2|)) 28)) (-3049 (((-52) |#2| (-1169) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563))) 80) (((-52) (-1 |#2| (-407 (-563))) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563))) 79) (((-52) |#2| (-1169) (-294 |#2|) (-1224 (-563))) 78) (((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-563))) 77) (((-52) |#2| (-1169) (-294 |#2|)) 72) (((-52) (-1 |#2| (-563)) (-294 |#2|)) 71)) (-2669 (((-52) |#2| (-1169) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563))) 66) (((-52) (-1 |#2| (-407 (-563))) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563))) 64)) (-2659 (((-52) |#2| (-1169) (-294 |#2|) (-1224 (-563))) 48) (((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-563))) 47)))
+(((-459 |#1| |#2|) (-10 -7 (-15 -2651 ((-52) (-1 |#2| (-563)) (-294 |#2|))) (-15 -2651 ((-52) |#2| (-1169) (-294 |#2|))) (-15 -2651 ((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-767)))) (-15 -2651 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-767)))) (-15 -2659 ((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-563)))) (-15 -2659 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-563)))) (-15 -2669 ((-52) (-1 |#2| (-407 (-563))) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563)))) (-15 -2669 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563)))) (-15 -3049 ((-52) (-1 |#2| (-563)) (-294 |#2|))) (-15 -3049 ((-52) |#2| (-1169) (-294 |#2|))) (-15 -3049 ((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-563)))) (-15 -3049 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-563)))) (-15 -3049 ((-52) (-1 |#2| (-407 (-563))) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563)))) (-15 -3049 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563))))) (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|))) (T -459))
+((-3049 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1169)) (-5 *5 (-294 *3)) (-5 *6 (-1224 (-407 (-563)))) (-5 *7 (-407 (-563))) (-4 *3 (-13 (-27) (-1193) (-430 *8))) (-4 *8 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *8 *3)))) (-3049 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-407 (-563)))) (-5 *4 (-294 *8)) (-5 *5 (-1224 (-407 (-563)))) (-5 *6 (-407 (-563))) (-4 *8 (-13 (-27) (-1193) (-430 *7))) (-4 *7 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *7 *8)))) (-3049 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1169)) (-5 *5 (-294 *3)) (-5 *6 (-1224 (-563))) (-4 *3 (-13 (-27) (-1193) (-430 *7))) (-4 *7 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *7 *3)))) (-3049 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-563))) (-5 *4 (-294 *7)) (-5 *5 (-1224 (-563))) (-4 *7 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *6 *7)))) (-3049 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1169)) (-5 *5 (-294 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *6 *3)))) (-3049 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-563))) (-5 *4 (-294 *6)) (-4 *6 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *5 *6)))) (-2669 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1169)) (-5 *5 (-294 *3)) (-5 *6 (-1224 (-407 (-563)))) (-5 *7 (-407 (-563))) (-4 *3 (-13 (-27) (-1193) (-430 *8))) (-4 *8 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *8 *3)))) (-2669 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-407 (-563)))) (-5 *4 (-294 *8)) (-5 *5 (-1224 (-407 (-563)))) (-5 *6 (-407 (-563))) (-4 *8 (-13 (-27) (-1193) (-430 *7))) (-4 *7 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *7 *8)))) (-2659 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1169)) (-5 *5 (-294 *3)) (-5 *6 (-1224 (-563))) (-4 *3 (-13 (-27) (-1193) (-430 *7))) (-4 *7 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *7 *3)))) (-2659 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-563))) (-5 *4 (-294 *7)) (-5 *5 (-1224 (-563))) (-4 *7 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *6 *7)))) (-2651 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1169)) (-5 *5 (-294 *3)) (-5 *6 (-1224 (-767))) (-4 *3 (-13 (-27) (-1193) (-430 *7))) (-4 *7 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *7 *3)))) (-2651 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-563))) (-5 *4 (-294 *7)) (-5 *5 (-1224 (-767))) (-4 *7 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *6 *7)))) (-2651 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1169)) (-5 *5 (-294 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *6 *3)))) (-2651 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-563))) (-5 *4 (-294 *6)) (-4 *6 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-52)) (-5 *1 (-459 *5 *6)))))
+(-10 -7 (-15 -2651 ((-52) (-1 |#2| (-563)) (-294 |#2|))) (-15 -2651 ((-52) |#2| (-1169) (-294 |#2|))) (-15 -2651 ((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-767)))) (-15 -2651 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-767)))) (-15 -2659 ((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-563)))) (-15 -2659 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-563)))) (-15 -2669 ((-52) (-1 |#2| (-407 (-563))) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563)))) (-15 -2669 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563)))) (-15 -3049 ((-52) (-1 |#2| (-563)) (-294 |#2|))) (-15 -3049 ((-52) |#2| (-1169) (-294 |#2|))) (-15 -3049 ((-52) (-1 |#2| (-563)) (-294 |#2|) (-1224 (-563)))) (-15 -3049 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-563)))) (-15 -3049 ((-52) (-1 |#2| (-407 (-563))) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563)))) (-15 -3049 ((-52) |#2| (-1169) (-294 |#2|) (-1224 (-407 (-563))) (-407 (-563)))))
+((-4219 ((|#2| |#2| |#1|) 15)) (-2361 (((-640 |#2|) |#2| (-640 |#2|) |#1| (-917)) 68)) (-2352 (((-2 (|:| |plist| (-640 |#2|)) (|:| |modulo| |#1|)) |#2| (-640 |#2|) |#1| (-917)) 59)))
+(((-460 |#1| |#2|) (-10 -7 (-15 -2352 ((-2 (|:| |plist| (-640 |#2|)) (|:| |modulo| |#1|)) |#2| (-640 |#2|) |#1| (-917))) (-15 -2361 ((-640 |#2|) |#2| (-640 |#2|) |#1| (-917))) (-15 -4219 (|#2| |#2| |#1|))) (-307) (-1233 |#1|)) (T -460))
+((-4219 (*1 *2 *2 *3) (-12 (-4 *3 (-307)) (-5 *1 (-460 *3 *2)) (-4 *2 (-1233 *3)))) (-2361 (*1 *2 *3 *2 *4 *5) (-12 (-5 *2 (-640 *3)) (-5 *5 (-917)) (-4 *3 (-1233 *4)) (-4 *4 (-307)) (-5 *1 (-460 *4 *3)))) (-2352 (*1 *2 *3 *4 *5 *6) (-12 (-5 *6 (-917)) (-4 *5 (-307)) (-4 *3 (-1233 *5)) (-5 *2 (-2 (|:| |plist| (-640 *3)) (|:| |modulo| *5))) (-5 *1 (-460 *5 *3)) (-5 *4 (-640 *3)))))
+(-10 -7 (-15 -2352 ((-2 (|:| |plist| (-640 |#2|)) (|:| |modulo| |#1|)) |#2| (-640 |#2|) |#1| (-917))) (-15 -2361 ((-640 |#2|) |#2| (-640 |#2|) |#1| (-917))) (-15 -4219 (|#2| |#2| |#1|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 28)) (-2392 (($ |#3|) 25)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2750 (($ $) 32)) (-2371 (($ |#2| |#4| $) 33)) (-2587 (($ |#2| (-709 |#3| |#4| |#5|)) 24)) (-2715 (((-709 |#3| |#4| |#5|) $) 15)) (-2394 ((|#3| $) 19)) (-2405 ((|#4| $) 17)) (-2725 ((|#2| $) 29)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-2383 (($ |#2| |#3| |#4|) 26)) (-2239 (($) 36 T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) 34)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ |#6| $) 40) (($ $ |#6|) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-461 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-713 |#6|) (-713 |#2|) (-10 -8 (-15 -2725 (|#2| $)) (-15 -2715 ((-709 |#3| |#4| |#5|) $)) (-15 -2405 (|#4| $)) (-15 -2394 (|#3| $)) (-15 -2750 ($ $)) (-15 -2587 ($ |#2| (-709 |#3| |#4| |#5|))) (-15 -2392 ($ |#3|)) (-15 -2383 ($ |#2| |#3| |#4|)) (-15 -2371 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-640 (-1169)) (-172) (-846) (-238 (-3610 |#1|) (-767)) (-1 (-112) (-2 (|:| -2552 |#3|) (|:| -3311 |#4|)) (-2 (|:| -2552 |#3|) (|:| -3311 |#4|))) (-945 |#2| |#4| (-860 |#1|))) (T -461))
+((* (*1 *1 *2 *1) (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172)) (-4 *6 (-238 (-3610 *3) (-767))) (-14 *7 (-1 (-112) (-2 (|:| -2552 *5) (|:| -3311 *6)) (-2 (|:| -2552 *5) (|:| -3311 *6)))) (-5 *1 (-461 *3 *4 *5 *6 *7 *2)) (-4 *5 (-846)) (-4 *2 (-945 *4 *6 (-860 *3))))) (-2725 (*1 *2 *1) (-12 (-14 *3 (-640 (-1169))) (-4 *5 (-238 (-3610 *3) (-767))) (-14 *6 (-1 (-112) (-2 (|:| -2552 *4) (|:| -3311 *5)) (-2 (|:| -2552 *4) (|:| -3311 *5)))) (-4 *2 (-172)) (-5 *1 (-461 *3 *2 *4 *5 *6 *7)) (-4 *4 (-846)) (-4 *7 (-945 *2 *5 (-860 *3))))) (-2715 (*1 *2 *1) (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172)) (-4 *6 (-238 (-3610 *3) (-767))) (-14 *7 (-1 (-112) (-2 (|:| -2552 *5) (|:| -3311 *6)) (-2 (|:| -2552 *5) (|:| -3311 *6)))) (-5 *2 (-709 *5 *6 *7)) (-5 *1 (-461 *3 *4 *5 *6 *7 *8)) (-4 *5 (-846)) (-4 *8 (-945 *4 *6 (-860 *3))))) (-2405 (*1 *2 *1) (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172)) (-14 *6 (-1 (-112) (-2 (|:| -2552 *5) (|:| -3311 *2)) (-2 (|:| -2552 *5) (|:| -3311 *2)))) (-4 *2 (-238 (-3610 *3) (-767))) (-5 *1 (-461 *3 *4 *5 *2 *6 *7)) (-4 *5 (-846)) (-4 *7 (-945 *4 *2 (-860 *3))))) (-2394 (*1 *2 *1) (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172)) (-4 *5 (-238 (-3610 *3) (-767))) (-14 *6 (-1 (-112) (-2 (|:| -2552 *2) (|:| -3311 *5)) (-2 (|:| -2552 *2) (|:| -3311 *5)))) (-4 *2 (-846)) (-5 *1 (-461 *3 *4 *2 *5 *6 *7)) (-4 *7 (-945 *4 *5 (-860 *3))))) (-2750 (*1 *1 *1) (-12 (-14 *2 (-640 (-1169))) (-4 *3 (-172)) (-4 *5 (-238 (-3610 *2) (-767))) (-14 *6 (-1 (-112) (-2 (|:| -2552 *4) (|:| -3311 *5)) (-2 (|:| -2552 *4) (|:| -3311 *5)))) (-5 *1 (-461 *2 *3 *4 *5 *6 *7)) (-4 *4 (-846)) (-4 *7 (-945 *3 *5 (-860 *2))))) (-2587 (*1 *1 *2 *3) (-12 (-5 *3 (-709 *5 *6 *7)) (-4 *5 (-846)) (-4 *6 (-238 (-3610 *4) (-767))) (-14 *7 (-1 (-112) (-2 (|:| -2552 *5) (|:| -3311 *6)) (-2 (|:| -2552 *5) (|:| -3311 *6)))) (-14 *4 (-640 (-1169))) (-4 *2 (-172)) (-5 *1 (-461 *4 *2 *5 *6 *7 *8)) (-4 *8 (-945 *2 *6 (-860 *4))))) (-2392 (*1 *1 *2) (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172)) (-4 *5 (-238 (-3610 *3) (-767))) (-14 *6 (-1 (-112) (-2 (|:| -2552 *2) (|:| -3311 *5)) (-2 (|:| -2552 *2) (|:| -3311 *5)))) (-5 *1 (-461 *3 *4 *2 *5 *6 *7)) (-4 *2 (-846)) (-4 *7 (-945 *4 *5 (-860 *3))))) (-2383 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-640 (-1169))) (-4 *2 (-172)) (-4 *4 (-238 (-3610 *5) (-767))) (-14 *6 (-1 (-112) (-2 (|:| -2552 *3) (|:| -3311 *4)) (-2 (|:| -2552 *3) (|:| -3311 *4)))) (-5 *1 (-461 *5 *2 *3 *4 *6 *7)) (-4 *3 (-846)) (-4 *7 (-945 *2 *4 (-860 *5))))) (-2371 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-640 (-1169))) (-4 *2 (-172)) (-4 *3 (-238 (-3610 *4) (-767))) (-14 *6 (-1 (-112) (-2 (|:| -2552 *5) (|:| -3311 *3)) (-2 (|:| -2552 *5) (|:| -3311 *3)))) (-5 *1 (-461 *4 *2 *5 *3 *6 *7)) (-4 *5 (-846)) (-4 *7 (-945 *2 *3 (-860 *4))))))
+(-13 (-713 |#6|) (-713 |#2|) (-10 -8 (-15 -2725 (|#2| $)) (-15 -2715 ((-709 |#3| |#4| |#5|) $)) (-15 -2405 (|#4| $)) (-15 -2394 (|#3| $)) (-15 -2750 ($ $)) (-15 -2587 ($ |#2| (-709 |#3| |#4| |#5|))) (-15 -2392 ($ |#3|)) (-15 -2383 ($ |#2| |#3| |#4|)) (-15 -2371 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
+((-2416 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 37)))
+(((-462 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2416 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-789) (-846) (-555) (-945 |#3| |#1| |#2|) (-13 (-1034 (-407 (-563))) (-363) (-10 -8 (-15 -1692 ($ |#4|)) (-15 -2143 (|#4| $)) (-15 -2153 (|#4| $))))) (T -462))
+((-2416 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-846)) (-4 *5 (-789)) (-4 *6 (-555)) (-4 *7 (-945 *6 *5 *3)) (-5 *1 (-462 *5 *3 *6 *7 *2)) (-4 *2 (-13 (-1034 (-407 (-563))) (-363) (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $)) (-15 -2153 (*7 $))))))))
+(-10 -7 (-15 -2416 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
+((-1677 (((-112) $ $) NIL)) (-2605 (((-640 |#3|) $) 41)) (-3508 (((-112) $) NIL)) (-3406 (((-112) $) NIL (|has| |#1| (-555)))) (-1640 (((-2 (|:| |under| $) (|:| -3954 $) (|:| |upper| $)) $ |#3|) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-2255 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-3466 (((-112) $) NIL (|has| |#1| (-555)))) (-3486 (((-112) $ $) NIL (|has| |#1| (-555)))) (-3476 (((-112) $ $) NIL (|has| |#1| (-555)))) (-3496 (((-112) $) NIL (|has| |#1| (-555)))) (-3418 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-3431 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-2130 (((-3 $ "failed") (-640 |#4|)) 48)) (-2057 (($ (-640 |#4|)) NIL)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093))))) (-1459 (($ |#4| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-3443 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4408))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4408)))) (-2658 (((-640 |#4|) $) 18 (|has| $ (-6 -4408)))) (-3354 ((|#3| $) 46)) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#4|) $) 14 (|has| $ (-6 -4408)))) (-2667 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093))))) (-4347 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#4| |#4|) $) 21)) (-3568 (((-640 |#3|) $) NIL)) (-3553 (((-112) |#3| $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-3454 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-1693 (((-1113) $) NIL)) (-1971 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1458 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 |#4|) (-640 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) 39)) (-3445 (($) 17)) (-1708 (((-767) |#4| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093)))) (((-767) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) 16)) (-2219 (((-536) $) NIL (|has| |#4| (-611 (-536)))) (($ (-640 |#4|)) 50)) (-1706 (($ (-640 |#4|)) 13)) (-3519 (($ $ |#3|) NIL)) (-3542 (($ $ |#3|) NIL)) (-3529 (($ $ |#3|) NIL)) (-1692 (((-858) $) 38) (((-640 |#4|) $) 49)) (-1471 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 30)) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-463 |#1| |#2| |#3| |#4|) (-13 (-972 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2219 ($ (-640 |#4|))) (-6 -4408) (-6 -4409))) (-1045) (-789) (-846) (-1059 |#1| |#2| |#3|)) (T -463))
+((-2219 (*1 *1 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-463 *3 *4 *5 *6)))))
+(-13 (-972 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2219 ($ (-640 |#4|))) (-6 -4408) (-6 -4409)))
+((-2239 (($) 11)) (-2253 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
+(((-464 |#1| |#2| |#3|) (-10 -8 (-15 -2253 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2239 (|#1|))) (-465 |#2| |#3|) (-172) (-23)) (T -464))
+NIL
+(-10 -8 (-15 -2253 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2239 (|#1|)))
+((-1677 (((-112) $ $) 7)) (-2130 (((-3 |#1| "failed") $) 26)) (-2057 ((|#1| $) 27)) (-3846 (($ $ $) 23)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-3871 ((|#2| $) 19)) (-1692 (((-858) $) 11) (($ |#1|) 25)) (-2239 (($) 18 T CONST)) (-2253 (($) 24 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 15) (($ $ $) 13)) (-1813 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
(((-465 |#1| |#2|) (-140) (-172) (-23)) (T -465))
-((-2254 (*1 *1) (-12 (-4 *1 (-465 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-2041 (*1 *1 *1 *1) (-12 (-4 *1 (-465 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))))
-(-13 (-470 |t#1| |t#2|) (-1034 |t#1|) (-10 -8 (-15 (-2254) ($) -2669) (-15 -2041 ($ $ $))))
+((-2253 (*1 *1) (-12 (-4 *1 (-465 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-3846 (*1 *1 *1 *1) (-12 (-4 *1 (-465 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))))
+(-13 (-470 |t#1| |t#2|) (-1034 |t#1|) (-10 -8 (-15 (-2253) ($) -2668) (-15 -3846 ($ $ $))))
(((-102) . T) ((-613 |#1|) . T) ((-610 (-858)) . T) ((-470 |#1| |#2|) . T) ((-1034 |#1|) . T) ((-1093) . T))
-((-3877 (((-1257 (-1257 (-563))) (-1257 (-1257 (-563))) (-917)) 18)) (-2674 (((-1257 (-1257 (-563))) (-917)) 16)))
-(((-466) (-10 -7 (-15 -3877 ((-1257 (-1257 (-563))) (-1257 (-1257 (-563))) (-917))) (-15 -2674 ((-1257 (-1257 (-563))) (-917))))) (T -466))
-((-2674 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1257 (-1257 (-563)))) (-5 *1 (-466)))) (-3877 (*1 *2 *2 *3) (-12 (-5 *2 (-1257 (-1257 (-563)))) (-5 *3 (-917)) (-5 *1 (-466)))))
-(-10 -7 (-15 -3877 ((-1257 (-1257 (-563))) (-1257 (-1257 (-563))) (-917))) (-15 -2674 ((-1257 (-1257 (-563))) (-917))))
-((-2355 (((-563) (-563)) 30) (((-563)) 22)) (-4011 (((-563) (-563)) 26) (((-563)) 18)) (-1535 (((-563) (-563)) 28) (((-563)) 20)) (-3189 (((-112) (-112)) 12) (((-112)) 10)) (-1723 (((-112) (-112)) 11) (((-112)) 9)) (-3450 (((-112) (-112)) 24) (((-112)) 15)))
-(((-467) (-10 -7 (-15 -1723 ((-112))) (-15 -3189 ((-112))) (-15 -1723 ((-112) (-112))) (-15 -3189 ((-112) (-112))) (-15 -3450 ((-112))) (-15 -1535 ((-563))) (-15 -4011 ((-563))) (-15 -2355 ((-563))) (-15 -3450 ((-112) (-112))) (-15 -1535 ((-563) (-563))) (-15 -4011 ((-563) (-563))) (-15 -2355 ((-563) (-563))))) (T -467))
-((-2355 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467)))) (-4011 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467)))) (-1535 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467)))) (-3450 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))) (-2355 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467)))) (-4011 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467)))) (-1535 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467)))) (-3450 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))) (-3189 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))) (-1723 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))) (-3189 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))) (-1723 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))))
-(-10 -7 (-15 -1723 ((-112))) (-15 -3189 ((-112))) (-15 -1723 ((-112) (-112))) (-15 -3189 ((-112) (-112))) (-15 -3450 ((-112))) (-15 -1535 ((-563))) (-15 -4011 ((-563))) (-15 -2355 ((-563))) (-15 -3450 ((-112) (-112))) (-15 -1535 ((-563) (-563))) (-15 -4011 ((-563) (-563))) (-15 -2355 ((-563) (-563))))
-((-1677 (((-112) $ $) NIL)) (-3528 (((-640 (-379)) $) 28) (((-640 (-379)) $ (-640 (-379))) 94)) (-2567 (((-640 (-1087 (-379))) $) 16) (((-640 (-1087 (-379))) $ (-640 (-1087 (-379)))) 91)) (-3996 (((-640 (-640 (-939 (-225)))) (-640 (-640 (-939 (-225)))) (-640 (-870))) 44)) (-1443 (((-640 (-640 (-939 (-225)))) $) 87)) (-3014 (((-1262) $ (-939 (-225)) (-870)) 106)) (-2939 (($ $) 86) (($ (-640 (-640 (-939 (-225))))) 97) (($ (-640 (-640 (-939 (-225)))) (-640 (-870)) (-640 (-870)) (-640 (-917))) 96) (($ (-640 (-640 (-939 (-225)))) (-640 (-870)) (-640 (-870)) (-640 (-917)) (-640 (-263))) 98)) (-3573 (((-1151) $) NIL)) (-2387 (((-563) $) 68)) (-1694 (((-1113) $) NIL)) (-1746 (($) 95)) (-2821 (((-640 (-225)) (-640 (-640 (-939 (-225))))) 54)) (-2331 (((-1262) $ (-640 (-939 (-225))) (-870) (-870) (-917)) 100) (((-1262) $ (-939 (-225))) 102) (((-1262) $ (-939 (-225)) (-870) (-870) (-917)) 101)) (-1693 (((-858) $) 112) (($ (-640 (-640 (-939 (-225))))) 107)) (-2893 (((-1262) $ (-939 (-225))) 105)) (-1718 (((-112) $ $) NIL)))
-(((-468) (-13 (-1093) (-10 -8 (-15 -1746 ($)) (-15 -2939 ($ $)) (-15 -2939 ($ (-640 (-640 (-939 (-225)))))) (-15 -2939 ($ (-640 (-640 (-939 (-225)))) (-640 (-870)) (-640 (-870)) (-640 (-917)))) (-15 -2939 ($ (-640 (-640 (-939 (-225)))) (-640 (-870)) (-640 (-870)) (-640 (-917)) (-640 (-263)))) (-15 -1443 ((-640 (-640 (-939 (-225)))) $)) (-15 -2387 ((-563) $)) (-15 -2567 ((-640 (-1087 (-379))) $)) (-15 -2567 ((-640 (-1087 (-379))) $ (-640 (-1087 (-379))))) (-15 -3528 ((-640 (-379)) $)) (-15 -3528 ((-640 (-379)) $ (-640 (-379)))) (-15 -2331 ((-1262) $ (-640 (-939 (-225))) (-870) (-870) (-917))) (-15 -2331 ((-1262) $ (-939 (-225)))) (-15 -2331 ((-1262) $ (-939 (-225)) (-870) (-870) (-917))) (-15 -2893 ((-1262) $ (-939 (-225)))) (-15 -3014 ((-1262) $ (-939 (-225)) (-870))) (-15 -1693 ($ (-640 (-640 (-939 (-225)))))) (-15 -1693 ((-858) $)) (-15 -3996 ((-640 (-640 (-939 (-225)))) (-640 (-640 (-939 (-225)))) (-640 (-870)))) (-15 -2821 ((-640 (-225)) (-640 (-640 (-939 (-225))))))))) (T -468))
-((-1693 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-468)))) (-1746 (*1 *1) (-5 *1 (-468))) (-2939 (*1 *1 *1) (-5 *1 (-468))) (-2939 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *1 (-468)))) (-2939 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *3 (-640 (-870))) (-5 *4 (-640 (-917))) (-5 *1 (-468)))) (-2939 (*1 *1 *2 *3 *3 *4 *5) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *3 (-640 (-870))) (-5 *4 (-640 (-917))) (-5 *5 (-640 (-263))) (-5 *1 (-468)))) (-1443 (*1 *2 *1) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *1 (-468)))) (-2387 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-468)))) (-2567 (*1 *2 *1) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-468)))) (-2567 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-468)))) (-3528 (*1 *2 *1) (-12 (-5 *2 (-640 (-379))) (-5 *1 (-468)))) (-3528 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-379))) (-5 *1 (-468)))) (-2331 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-640 (-939 (-225)))) (-5 *4 (-870)) (-5 *5 (-917)) (-5 *2 (-1262)) (-5 *1 (-468)))) (-2331 (*1 *2 *1 *3) (-12 (-5 *3 (-939 (-225))) (-5 *2 (-1262)) (-5 *1 (-468)))) (-2331 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-939 (-225))) (-5 *4 (-870)) (-5 *5 (-917)) (-5 *2 (-1262)) (-5 *1 (-468)))) (-2893 (*1 *2 *1 *3) (-12 (-5 *3 (-939 (-225))) (-5 *2 (-1262)) (-5 *1 (-468)))) (-3014 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-939 (-225))) (-5 *4 (-870)) (-5 *2 (-1262)) (-5 *1 (-468)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *1 (-468)))) (-3996 (*1 *2 *2 *3) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *3 (-640 (-870))) (-5 *1 (-468)))) (-2821 (*1 *2 *3) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *2 (-640 (-225))) (-5 *1 (-468)))))
-(-13 (-1093) (-10 -8 (-15 -1746 ($)) (-15 -2939 ($ $)) (-15 -2939 ($ (-640 (-640 (-939 (-225)))))) (-15 -2939 ($ (-640 (-640 (-939 (-225)))) (-640 (-870)) (-640 (-870)) (-640 (-917)))) (-15 -2939 ($ (-640 (-640 (-939 (-225)))) (-640 (-870)) (-640 (-870)) (-640 (-917)) (-640 (-263)))) (-15 -1443 ((-640 (-640 (-939 (-225)))) $)) (-15 -2387 ((-563) $)) (-15 -2567 ((-640 (-1087 (-379))) $)) (-15 -2567 ((-640 (-1087 (-379))) $ (-640 (-1087 (-379))))) (-15 -3528 ((-640 (-379)) $)) (-15 -3528 ((-640 (-379)) $ (-640 (-379)))) (-15 -2331 ((-1262) $ (-640 (-939 (-225))) (-870) (-870) (-917))) (-15 -2331 ((-1262) $ (-939 (-225)))) (-15 -2331 ((-1262) $ (-939 (-225)) (-870) (-870) (-917))) (-15 -2893 ((-1262) $ (-939 (-225)))) (-15 -3014 ((-1262) $ (-939 (-225)) (-870))) (-15 -1693 ($ (-640 (-640 (-939 (-225)))))) (-15 -1693 ((-858) $)) (-15 -3996 ((-640 (-640 (-939 (-225)))) (-640 (-640 (-939 (-225)))) (-640 (-870)))) (-15 -2821 ((-640 (-225)) (-640 (-640 (-939 (-225))))))))
-((-1826 (($ $) NIL) (($ $ $) 11)))
-(((-469 |#1| |#2| |#3|) (-10 -8 (-15 -1826 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|))) (-470 |#2| |#3|) (-172) (-23)) (T -469))
-NIL
-(-10 -8 (-15 -1826 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-4167 ((|#2| $) 19)) (-1693 (((-858) $) 11)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 15) (($ $ $) 13)) (-1814 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
+((-2427 (((-1257 (-1257 (-563))) (-1257 (-1257 (-563))) (-917)) 18)) (-2439 (((-1257 (-1257 (-563))) (-917)) 16)))
+(((-466) (-10 -7 (-15 -2427 ((-1257 (-1257 (-563))) (-1257 (-1257 (-563))) (-917))) (-15 -2439 ((-1257 (-1257 (-563))) (-917))))) (T -466))
+((-2439 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1257 (-1257 (-563)))) (-5 *1 (-466)))) (-2427 (*1 *2 *2 *3) (-12 (-5 *2 (-1257 (-1257 (-563)))) (-5 *3 (-917)) (-5 *1 (-466)))))
+(-10 -7 (-15 -2427 ((-1257 (-1257 (-563))) (-1257 (-1257 (-563))) (-917))) (-15 -2439 ((-1257 (-1257 (-563))) (-917))))
+((-1532 (((-563) (-563)) 30) (((-563)) 22)) (-1581 (((-563) (-563)) 26) (((-563)) 18)) (-1556 (((-563) (-563)) 28) (((-563)) 20)) (-2460 (((-112) (-112)) 12) (((-112)) 10)) (-2450 (((-112) (-112)) 11) (((-112)) 9)) (-2472 (((-112) (-112)) 24) (((-112)) 15)))
+(((-467) (-10 -7 (-15 -2450 ((-112))) (-15 -2460 ((-112))) (-15 -2450 ((-112) (-112))) (-15 -2460 ((-112) (-112))) (-15 -2472 ((-112))) (-15 -1556 ((-563))) (-15 -1581 ((-563))) (-15 -1532 ((-563))) (-15 -2472 ((-112) (-112))) (-15 -1556 ((-563) (-563))) (-15 -1581 ((-563) (-563))) (-15 -1532 ((-563) (-563))))) (T -467))
+((-1532 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467)))) (-1581 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467)))) (-1556 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467)))) (-2472 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))) (-1532 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467)))) (-1581 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467)))) (-1556 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467)))) (-2472 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))) (-2460 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))) (-2450 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))) (-2460 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))) (-2450 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))))
+(-10 -7 (-15 -2450 ((-112))) (-15 -2460 ((-112))) (-15 -2450 ((-112) (-112))) (-15 -2460 ((-112) (-112))) (-15 -2472 ((-112))) (-15 -1556 ((-563))) (-15 -1581 ((-563))) (-15 -1532 ((-563))) (-15 -2472 ((-112) (-112))) (-15 -1556 ((-563) (-563))) (-15 -1581 ((-563) (-563))) (-15 -1532 ((-563) (-563))))
+((-1677 (((-112) $ $) NIL)) (-3532 (((-640 (-379)) $) 28) (((-640 (-379)) $ (-640 (-379))) 94)) (-2528 (((-640 (-1087 (-379))) $) 16) (((-640 (-1087 (-379))) $ (-640 (-1087 (-379)))) 91)) (-2494 (((-640 (-640 (-939 (-225)))) (-640 (-640 (-939 (-225)))) (-640 (-870))) 44)) (-2541 (((-640 (-640 (-939 (-225)))) $) 87)) (-3018 (((-1262) $ (-939 (-225)) (-870)) 106)) (-2551 (($ $) 86) (($ (-640 (-640 (-939 (-225))))) 97) (($ (-640 (-640 (-939 (-225)))) (-640 (-870)) (-640 (-870)) (-640 (-917))) 96) (($ (-640 (-640 (-939 (-225)))) (-640 (-870)) (-640 (-870)) (-640 (-917)) (-640 (-263))) 98)) (-3854 (((-1151) $) NIL)) (-2387 (((-563) $) 68)) (-1693 (((-1113) $) NIL)) (-2562 (($) 95)) (-2484 (((-640 (-225)) (-640 (-640 (-939 (-225))))) 54)) (-2515 (((-1262) $ (-640 (-939 (-225))) (-870) (-870) (-917)) 100) (((-1262) $ (-939 (-225))) 102) (((-1262) $ (-939 (-225)) (-870) (-870) (-917)) 101)) (-1692 (((-858) $) 112) (($ (-640 (-640 (-939 (-225))))) 107)) (-2505 (((-1262) $ (-939 (-225))) 105)) (-1718 (((-112) $ $) NIL)))
+(((-468) (-13 (-1093) (-10 -8 (-15 -2562 ($)) (-15 -2551 ($ $)) (-15 -2551 ($ (-640 (-640 (-939 (-225)))))) (-15 -2551 ($ (-640 (-640 (-939 (-225)))) (-640 (-870)) (-640 (-870)) (-640 (-917)))) (-15 -2551 ($ (-640 (-640 (-939 (-225)))) (-640 (-870)) (-640 (-870)) (-640 (-917)) (-640 (-263)))) (-15 -2541 ((-640 (-640 (-939 (-225)))) $)) (-15 -2387 ((-563) $)) (-15 -2528 ((-640 (-1087 (-379))) $)) (-15 -2528 ((-640 (-1087 (-379))) $ (-640 (-1087 (-379))))) (-15 -3532 ((-640 (-379)) $)) (-15 -3532 ((-640 (-379)) $ (-640 (-379)))) (-15 -2515 ((-1262) $ (-640 (-939 (-225))) (-870) (-870) (-917))) (-15 -2515 ((-1262) $ (-939 (-225)))) (-15 -2515 ((-1262) $ (-939 (-225)) (-870) (-870) (-917))) (-15 -2505 ((-1262) $ (-939 (-225)))) (-15 -3018 ((-1262) $ (-939 (-225)) (-870))) (-15 -1692 ($ (-640 (-640 (-939 (-225)))))) (-15 -1692 ((-858) $)) (-15 -2494 ((-640 (-640 (-939 (-225)))) (-640 (-640 (-939 (-225)))) (-640 (-870)))) (-15 -2484 ((-640 (-225)) (-640 (-640 (-939 (-225))))))))) (T -468))
+((-1692 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-468)))) (-2562 (*1 *1) (-5 *1 (-468))) (-2551 (*1 *1 *1) (-5 *1 (-468))) (-2551 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *1 (-468)))) (-2551 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *3 (-640 (-870))) (-5 *4 (-640 (-917))) (-5 *1 (-468)))) (-2551 (*1 *1 *2 *3 *3 *4 *5) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *3 (-640 (-870))) (-5 *4 (-640 (-917))) (-5 *5 (-640 (-263))) (-5 *1 (-468)))) (-2541 (*1 *2 *1) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *1 (-468)))) (-2387 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-468)))) (-2528 (*1 *2 *1) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-468)))) (-2528 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-468)))) (-3532 (*1 *2 *1) (-12 (-5 *2 (-640 (-379))) (-5 *1 (-468)))) (-3532 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-379))) (-5 *1 (-468)))) (-2515 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-640 (-939 (-225)))) (-5 *4 (-870)) (-5 *5 (-917)) (-5 *2 (-1262)) (-5 *1 (-468)))) (-2515 (*1 *2 *1 *3) (-12 (-5 *3 (-939 (-225))) (-5 *2 (-1262)) (-5 *1 (-468)))) (-2515 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-939 (-225))) (-5 *4 (-870)) (-5 *5 (-917)) (-5 *2 (-1262)) (-5 *1 (-468)))) (-2505 (*1 *2 *1 *3) (-12 (-5 *3 (-939 (-225))) (-5 *2 (-1262)) (-5 *1 (-468)))) (-3018 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-939 (-225))) (-5 *4 (-870)) (-5 *2 (-1262)) (-5 *1 (-468)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *1 (-468)))) (-2494 (*1 *2 *2 *3) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *3 (-640 (-870))) (-5 *1 (-468)))) (-2484 (*1 *2 *3) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *2 (-640 (-225))) (-5 *1 (-468)))))
+(-13 (-1093) (-10 -8 (-15 -2562 ($)) (-15 -2551 ($ $)) (-15 -2551 ($ (-640 (-640 (-939 (-225)))))) (-15 -2551 ($ (-640 (-640 (-939 (-225)))) (-640 (-870)) (-640 (-870)) (-640 (-917)))) (-15 -2551 ($ (-640 (-640 (-939 (-225)))) (-640 (-870)) (-640 (-870)) (-640 (-917)) (-640 (-263)))) (-15 -2541 ((-640 (-640 (-939 (-225)))) $)) (-15 -2387 ((-563) $)) (-15 -2528 ((-640 (-1087 (-379))) $)) (-15 -2528 ((-640 (-1087 (-379))) $ (-640 (-1087 (-379))))) (-15 -3532 ((-640 (-379)) $)) (-15 -3532 ((-640 (-379)) $ (-640 (-379)))) (-15 -2515 ((-1262) $ (-640 (-939 (-225))) (-870) (-870) (-917))) (-15 -2515 ((-1262) $ (-939 (-225)))) (-15 -2515 ((-1262) $ (-939 (-225)) (-870) (-870) (-917))) (-15 -2505 ((-1262) $ (-939 (-225)))) (-15 -3018 ((-1262) $ (-939 (-225)) (-870))) (-15 -1692 ($ (-640 (-640 (-939 (-225)))))) (-15 -1692 ((-858) $)) (-15 -2494 ((-640 (-640 (-939 (-225)))) (-640 (-640 (-939 (-225)))) (-640 (-870)))) (-15 -2484 ((-640 (-225)) (-640 (-640 (-939 (-225))))))))
+((-1825 (($ $) NIL) (($ $ $) 11)))
+(((-469 |#1| |#2| |#3|) (-10 -8 (-15 -1825 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|))) (-470 |#2| |#3|) (-172) (-23)) (T -469))
+NIL
+(-10 -8 (-15 -1825 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-3871 ((|#2| $) 19)) (-1692 (((-858) $) 11)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 15) (($ $ $) 13)) (-1813 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
(((-470 |#1| |#2|) (-140) (-172) (-23)) (T -470))
-((-4167 (*1 *2 *1) (-12 (-4 *1 (-470 *3 *2)) (-4 *3 (-172)) (-4 *2 (-23)))) (-2241 (*1 *1) (-12 (-4 *1 (-470 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-470 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-470 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-1826 (*1 *1 *1) (-12 (-4 *1 (-470 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-1814 (*1 *1 *1 *1) (-12 (-4 *1 (-470 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-1826 (*1 *1 *1 *1) (-12 (-4 *1 (-470 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))))
-(-13 (-1093) (-10 -8 (-15 -4167 (|t#2| $)) (-15 (-2241) ($) -2669) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -1826 ($ $)) (-15 -1814 ($ $ $)) (-15 -1826 ($ $ $))))
+((-3871 (*1 *2 *1) (-12 (-4 *1 (-470 *3 *2)) (-4 *3 (-172)) (-4 *2 (-23)))) (-2239 (*1 *1) (-12 (-4 *1 (-470 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-470 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-470 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-1825 (*1 *1 *1) (-12 (-4 *1 (-470 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-1813 (*1 *1 *1 *1) (-12 (-4 *1 (-470 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-1825 (*1 *1 *1 *1) (-12 (-4 *1 (-470 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))))
+(-13 (-1093) (-10 -8 (-15 -3871 (|t#2| $)) (-15 (-2239) ($) -2668) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -1825 ($ $)) (-15 -1813 ($ $ $)) (-15 -1825 ($ $ $))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-3467 (((-3 (-640 (-481 |#1| |#2|)) "failed") (-640 (-481 |#1| |#2|)) (-640 (-860 |#1|))) 91)) (-2880 (((-640 (-640 (-247 |#1| |#2|))) (-640 (-247 |#1| |#2|)) (-640 (-860 |#1|))) 89)) (-3966 (((-2 (|:| |dpolys| (-640 (-247 |#1| |#2|))) (|:| |coords| (-640 (-563)))) (-640 (-247 |#1| |#2|)) (-640 (-860 |#1|))) 61)))
-(((-471 |#1| |#2| |#3|) (-10 -7 (-15 -2880 ((-640 (-640 (-247 |#1| |#2|))) (-640 (-247 |#1| |#2|)) (-640 (-860 |#1|)))) (-15 -3467 ((-3 (-640 (-481 |#1| |#2|)) "failed") (-640 (-481 |#1| |#2|)) (-640 (-860 |#1|)))) (-15 -3966 ((-2 (|:| |dpolys| (-640 (-247 |#1| |#2|))) (|:| |coords| (-640 (-563)))) (-640 (-247 |#1| |#2|)) (-640 (-860 |#1|))))) (-640 (-1169)) (-452) (-452)) (T -471))
-((-3966 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-860 *5))) (-14 *5 (-640 (-1169))) (-4 *6 (-452)) (-5 *2 (-2 (|:| |dpolys| (-640 (-247 *5 *6))) (|:| |coords| (-640 (-563))))) (-5 *1 (-471 *5 *6 *7)) (-5 *3 (-640 (-247 *5 *6))) (-4 *7 (-452)))) (-3467 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 (-481 *4 *5))) (-5 *3 (-640 (-860 *4))) (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *1 (-471 *4 *5 *6)) (-4 *6 (-452)))) (-2880 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-860 *5))) (-14 *5 (-640 (-1169))) (-4 *6 (-452)) (-5 *2 (-640 (-640 (-247 *5 *6)))) (-5 *1 (-471 *5 *6 *7)) (-5 *3 (-640 (-247 *5 *6))) (-4 *7 (-452)))))
-(-10 -7 (-15 -2880 ((-640 (-640 (-247 |#1| |#2|))) (-640 (-247 |#1| |#2|)) (-640 (-860 |#1|)))) (-15 -3467 ((-3 (-640 (-481 |#1| |#2|)) "failed") (-640 (-481 |#1| |#2|)) (-640 (-860 |#1|)))) (-15 -3966 ((-2 (|:| |dpolys| (-640 (-247 |#1| |#2|))) (|:| |coords| (-640 (-563)))) (-640 (-247 |#1| |#2|)) (-640 (-860 |#1|)))))
-((-3400 (((-3 $ "failed") $) 11)) (-4339 (($ $ $) 18)) (-2146 (($ $ $) 19)) (-1837 (($ $ $) 9)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) 17)))
-(((-472 |#1|) (-10 -8 (-15 -2146 (|#1| |#1| |#1|)) (-15 -4339 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 -1837 (|#1| |#1| |#1|)) (-15 -3400 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917)))) (-473)) (T -472))
-NIL
-(-10 -8 (-15 -2146 (|#1| |#1| |#1|)) (-15 -4339 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 -1837 (|#1| |#1| |#1|)) (-15 -3400 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917))))
-((-1677 (((-112) $ $) 7)) (-4239 (($) 18 T CONST)) (-3400 (((-3 $ "failed") $) 15)) (-3827 (((-112) $) 17)) (-3573 (((-1151) $) 9)) (-2688 (($ $) 24)) (-1694 (((-1113) $) 10)) (-4339 (($ $ $) 21)) (-2146 (($ $ $) 20)) (-1693 (((-858) $) 11)) (-2254 (($) 19 T CONST)) (-1718 (((-112) $ $) 6)) (-1837 (($ $ $) 23)) (** (($ $ (-917)) 13) (($ $ (-767)) 16) (($ $ (-563)) 22)) (* (($ $ $) 14)))
+((-2581 (((-3 (-640 (-481 |#1| |#2|)) "failed") (-640 (-481 |#1| |#2|)) (-640 (-860 |#1|))) 91)) (-2571 (((-640 (-640 (-247 |#1| |#2|))) (-640 (-247 |#1| |#2|)) (-640 (-860 |#1|))) 89)) (-1344 (((-2 (|:| |dpolys| (-640 (-247 |#1| |#2|))) (|:| |coords| (-640 (-563)))) (-640 (-247 |#1| |#2|)) (-640 (-860 |#1|))) 61)))
+(((-471 |#1| |#2| |#3|) (-10 -7 (-15 -2571 ((-640 (-640 (-247 |#1| |#2|))) (-640 (-247 |#1| |#2|)) (-640 (-860 |#1|)))) (-15 -2581 ((-3 (-640 (-481 |#1| |#2|)) "failed") (-640 (-481 |#1| |#2|)) (-640 (-860 |#1|)))) (-15 -1344 ((-2 (|:| |dpolys| (-640 (-247 |#1| |#2|))) (|:| |coords| (-640 (-563)))) (-640 (-247 |#1| |#2|)) (-640 (-860 |#1|))))) (-640 (-1169)) (-452) (-452)) (T -471))
+((-1344 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-860 *5))) (-14 *5 (-640 (-1169))) (-4 *6 (-452)) (-5 *2 (-2 (|:| |dpolys| (-640 (-247 *5 *6))) (|:| |coords| (-640 (-563))))) (-5 *1 (-471 *5 *6 *7)) (-5 *3 (-640 (-247 *5 *6))) (-4 *7 (-452)))) (-2581 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 (-481 *4 *5))) (-5 *3 (-640 (-860 *4))) (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *1 (-471 *4 *5 *6)) (-4 *6 (-452)))) (-2571 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-860 *5))) (-14 *5 (-640 (-1169))) (-4 *6 (-452)) (-5 *2 (-640 (-640 (-247 *5 *6)))) (-5 *1 (-471 *5 *6 *7)) (-5 *3 (-640 (-247 *5 *6))) (-4 *7 (-452)))))
+(-10 -7 (-15 -2571 ((-640 (-640 (-247 |#1| |#2|))) (-640 (-247 |#1| |#2|)) (-640 (-860 |#1|)))) (-15 -2581 ((-3 (-640 (-481 |#1| |#2|)) "failed") (-640 (-481 |#1| |#2|)) (-640 (-860 |#1|)))) (-15 -1344 ((-2 (|:| |dpolys| (-640 (-247 |#1| |#2|))) (|:| |coords| (-640 (-563)))) (-640 (-247 |#1| |#2|)) (-640 (-860 |#1|)))))
+((-3951 (((-3 $ "failed") $) 11)) (-2150 (($ $ $) 18)) (-1745 (($ $ $) 19)) (-1836 (($ $ $) 9)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) 17)))
+(((-472 |#1|) (-10 -8 (-15 -1745 (|#1| |#1| |#1|)) (-15 -2150 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 -1836 (|#1| |#1| |#1|)) (-15 -3951 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917)))) (-473)) (T -472))
+NIL
+(-10 -8 (-15 -1745 (|#1| |#1| |#1|)) (-15 -2150 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 -1836 (|#1| |#1| |#1|)) (-15 -3951 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917))))
+((-1677 (((-112) $ $) 7)) (-2569 (($) 18 T CONST)) (-3951 (((-3 $ "failed") $) 15)) (-3401 (((-112) $) 17)) (-3854 (((-1151) $) 9)) (-2687 (($ $) 24)) (-1693 (((-1113) $) 10)) (-2150 (($ $ $) 21)) (-1745 (($ $ $) 20)) (-1692 (((-858) $) 11)) (-2253 (($) 19 T CONST)) (-1718 (((-112) $ $) 6)) (-1836 (($ $ $) 23)) (** (($ $ (-917)) 13) (($ $ (-767)) 16) (($ $ (-563)) 22)) (* (($ $ $) 14)))
(((-473) (-140)) (T -473))
-((-2688 (*1 *1 *1) (-4 *1 (-473))) (-1837 (*1 *1 *1 *1) (-4 *1 (-473))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-473)) (-5 *2 (-563)))) (-4339 (*1 *1 *1 *1) (-4 *1 (-473))) (-2146 (*1 *1 *1 *1) (-4 *1 (-473))))
-(-13 (-722) (-10 -8 (-15 -2688 ($ $)) (-15 -1837 ($ $ $)) (-15 ** ($ $ (-563))) (-6 -4404) (-15 -4339 ($ $ $)) (-15 -2146 ($ $ $))))
+((-2687 (*1 *1 *1) (-4 *1 (-473))) (-1836 (*1 *1 *1 *1) (-4 *1 (-473))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-473)) (-5 *2 (-563)))) (-2150 (*1 *1 *1 *1) (-4 *1 (-473))) (-1745 (*1 *1 *1 *1) (-4 *1 (-473))))
+(-13 (-722) (-10 -8 (-15 -2687 ($ $)) (-15 -1836 ($ $ $)) (-15 ** ($ $ (-563))) (-6 -4405) (-15 -2150 ($ $ $)) (-15 -1745 ($ $ $))))
(((-102) . T) ((-610 (-858)) . T) ((-722) . T) ((-1105) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2606 (((-640 (-1075)) $) NIL)) (-2518 (((-1169) $) 17)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-2421 (($ $ (-407 (-563))) NIL) (($ $ (-407 (-563)) (-407 (-563))) NIL)) (-1539 (((-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|))) $) NIL)) (-1771 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL (|has| |#1| (-363)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2186 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1919 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1748 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3045 (($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|)))) NIL)) (-1794 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) NIL T CONST)) (-3090 (($ $ $) NIL (|has| |#1| (-363)))) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-3050 (($ $ $) NIL (|has| |#1| (-363)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2468 (((-112) $) NIL (|has| |#1| (-363)))) (-2788 (((-112) $) NIL)) (-2180 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3254 (((-407 (-563)) $) NIL) (((-407 (-563)) $ (-407 (-563))) NIL)) (-3827 (((-112) $) NIL)) (-1645 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1351 (($ $ (-917)) NIL) (($ $ (-407 (-563))) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-407 (-563))) NIL) (($ $ (-1075) (-407 (-563))) NIL) (($ $ (-640 (-1075)) (-640 (-407 (-563)))) NIL)) (-2240 (($ (-1 |#1| |#1|) $) 22)) (-4371 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL (|has| |#1| (-363)))) (-3698 (($ $) 26 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 33 (-4032 (-12 (|has| |#1| (-15 -3698 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2606 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193))))) (($ $ (-1253 |#2|)) 27 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2174 (((-418 $) $) NIL (|has| |#1| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3320 (($ $ (-407 (-563))) NIL)) (-3008 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3368 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1540 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))))) (-2628 (((-767) $) NIL (|has| |#1| (-363)))) (-2309 ((|#1| $ (-407 (-563))) NIL) (($ $ $) NIL (|has| (-407 (-563)) (-1105)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) 25 (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 13 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $ (-1253 |#2|)) 15)) (-4167 (((-407 (-563)) $) NIL)) (-1806 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1741 (($ $) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1253 |#2|)) NIL) (($ (-1242 |#1| |#2| |#3|)) 9) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555)))) (-4319 ((|#1| $ (-407 (-563))) NIL)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) NIL)) (-3408 ((|#1| $) 18)) (-1840 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1817 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1403 ((|#1| $ (-407 (-563))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-1311 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) 24)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 23) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
-(((-474 |#1| |#2| |#3|) (-13 (-1238 |#1|) (-10 -8 (-15 -1693 ($ (-1253 |#2|))) (-15 -1693 ($ (-1242 |#1| |#2| |#3|))) (-15 -4202 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1253 |#2|))) |%noBranch|))) (-1045) (-1169) |#1|) (T -474))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-474 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-1242 *3 *4 *5)) (-4 *3 (-1045)) (-14 *4 (-1169)) (-14 *5 *3) (-5 *1 (-474 *3 *4 *5)))) (-4202 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-474 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-3698 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-474 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
-(-13 (-1238 |#1|) (-10 -8 (-15 -1693 ($ (-1253 |#2|))) (-15 -1693 ($ (-1242 |#1| |#2| |#3|))) (-15 -4202 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1253 |#2|))) |%noBranch|)))
-((-1677 (((-112) $ $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1552 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-4378 (((-1262) $ |#1| |#1|) NIL (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#2| $ |#1| |#2|) 18)) (-2812 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-1577 (((-3 |#2| "failed") |#1| $) 19)) (-4239 (($) NIL T CONST)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-2705 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-3 |#2| "failed") |#1| $) 16)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4407))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#2| $ |#1|) NIL)) (-2659 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2411 ((|#1| $) NIL (|has| |#1| (-846)))) (-2259 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-3860 ((|#1| $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4408))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1303 (((-640 |#1|) $) NIL)) (-4173 (((-112) |#1| $) NIL)) (-2964 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-1812 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-4318 (((-640 |#1|) $) NIL)) (-3192 (((-112) |#1| $) NIL)) (-1694 (((-1113) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3781 ((|#2| $) NIL (|has| |#1| (-846)))) (-4203 (((-3 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL)) (-2358 (($ $ |#2|) NIL (|has| $ (-6 -4408)))) (-3755 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-3138 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-2836 (((-640 |#2|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-3890 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-1709 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093)))) (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-611 (-536))))) (-1707 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-1693 (((-858) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858)))))) (-2233 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-4383 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2605 (((-640 (-1075)) $) NIL)) (-2517 (((-1169) $) 17)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-1763 (($ $ (-407 (-563))) NIL) (($ $ (-407 (-563)) (-407 (-563))) NIL)) (-1787 (((-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|))) $) NIL)) (-1770 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL (|has| |#1| (-363)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2185 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2003 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1747 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3049 (($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|)))) NIL)) (-1793 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) NIL T CONST)) (-3094 (($ $ $) NIL (|has| |#1| (-363)))) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3054 (($ $ $) NIL (|has| |#1| (-363)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2560 (((-112) $) NIL (|has| |#1| (-363)))) (-3381 (((-112) $) NIL)) (-2179 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1775 (((-407 (-563)) $) NIL) (((-407 (-563)) $ (-407 (-563))) NIL)) (-3401 (((-112) $) NIL)) (-2172 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1821 (($ $ (-917)) NIL) (($ $ (-407 (-563))) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-407 (-563))) NIL) (($ $ (-1075) (-407 (-563))) NIL) (($ $ (-640 (-1075)) (-640 (-407 (-563)))) NIL)) (-2238 (($ (-1 |#1| |#1|) $) 22)) (-4372 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL (|has| |#1| (-363)))) (-2062 (($ $) 26 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 33 (-4034 (-12 (|has| |#1| (-15 -2062 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2605 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193))))) (($ $ (-1253 |#2|)) 27 (|has| |#1| (-38 (-407 (-563)))))) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2173 (((-418 $) $) NIL (|has| |#1| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-1751 (($ $ (-407 (-563))) NIL)) (-3012 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3372 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1542 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))))) (-1993 (((-767) $) NIL (|has| |#1| (-363)))) (-2308 ((|#1| $ (-407 (-563))) NIL) (($ $ $) NIL (|has| (-407 (-563)) (-1105)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) 25 (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 13 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $ (-1253 |#2|)) 15)) (-3871 (((-407 (-563)) $) NIL)) (-1805 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3369 (($ $) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1253 |#2|)) NIL) (($ (-1242 |#1| |#2| |#3|)) 9) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555)))) (-3244 ((|#1| $ (-407 (-563))) NIL)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) NIL)) (-3412 ((|#1| $) 18)) (-1839 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1816 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1402 ((|#1| $ (-407 (-563))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-1311 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) 24)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 23) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
+(((-474 |#1| |#2| |#3|) (-13 (-1238 |#1|) (-10 -8 (-15 -1692 ($ (-1253 |#2|))) (-15 -1692 ($ (-1242 |#1| |#2| |#3|))) (-15 -4203 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1253 |#2|))) |%noBranch|))) (-1045) (-1169) |#1|) (T -474))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-474 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-1242 *3 *4 *5)) (-4 *3 (-1045)) (-14 *4 (-1169)) (-14 *5 *3) (-5 *1 (-474 *3 *4 *5)))) (-4203 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-474 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-2062 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-474 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
+(-13 (-1238 |#1|) (-10 -8 (-15 -1692 ($ (-1253 |#2|))) (-15 -1692 ($ (-1242 |#1| |#2| |#3|))) (-15 -4203 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1253 |#2|))) |%noBranch|)))
+((-1677 (((-112) $ $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1551 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-2208 (((-1262) $ |#1| |#1|) NIL (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#2| $ |#1| |#2|) 18)) (-3678 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-1576 (((-3 |#2| "failed") |#1| $) 19)) (-2569 (($) NIL T CONST)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-1691 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-3 |#2| "failed") |#1| $) 16)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#2| $ |#1|) NIL)) (-2658 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-2236 ((|#1| $) NIL (|has| |#1| (-846)))) (-3523 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2251 ((|#1| $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4409))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1304 (((-640 |#1|) $) NIL)) (-2305 (((-112) |#1| $) NIL)) (-2627 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-3867 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-2272 (((-640 |#1|) $) NIL)) (-2282 (((-112) |#1| $) NIL)) (-1693 (((-1113) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3782 ((|#2| $) NIL (|has| |#1| (-846)))) (-1971 (((-3 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL)) (-2221 (($ $ |#2|) NIL (|has| $ (-6 -4409)))) (-2808 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-1458 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2295 (((-640 |#2|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-3863 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1708 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093)))) (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-611 (-536))))) (-1706 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1692 (((-858) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858)))))) (-2820 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1471 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
(((-475 |#1| |#2| |#3| |#4|) (-1184 |#1| |#2|) (-1093) (-1093) (-1184 |#1| |#2|) |#2|) (T -475))
NIL
(-1184 |#1| |#2|)
-((-1677 (((-112) $ $) NIL)) (-1578 (((-640 (-2 (|:| -1442 $) (|:| -3405 (-640 |#4|)))) (-640 |#4|)) NIL)) (-3319 (((-640 $) (-640 |#4|)) NIL)) (-2606 (((-640 |#3|) $) NIL)) (-1706 (((-112) $) NIL)) (-3854 (((-112) $) NIL (|has| |#1| (-555)))) (-2620 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4053 ((|#4| |#4| $) NIL)) (-1642 (((-2 (|:| |under| $) (|:| -1583 $) (|:| |upper| $)) $ |#3|) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-2256 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407))) (((-3 |#4| "failed") $ |#3|) NIL)) (-4239 (($) NIL T CONST)) (-1483 (((-112) $) 27 (|has| |#1| (-555)))) (-1626 (((-112) $ $) NIL (|has| |#1| (-555)))) (-4221 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1763 (((-112) $) NIL (|has| |#1| (-555)))) (-1833 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3746 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-1866 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-2131 (((-3 $ "failed") (-640 |#4|)) NIL)) (-2058 (($ (-640 |#4|)) NIL)) (-3792 (((-3 $ "failed") $) 40)) (-1719 ((|#4| |#4| $) NIL)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093))))) (-1459 (($ |#4| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1972 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-3990 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3948 ((|#4| |#4| $) NIL)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4407))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4407))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2144 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3405 (-640 |#4|))) $) NIL)) (-2659 (((-640 |#4|) $) 17 (|has| $ (-6 -4407)))) (-2299 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2957 ((|#3| $) 34)) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#4|) $) 18 (|has| $ (-6 -4407)))) (-1729 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093))))) (-4345 (($ (-1 |#4| |#4|) $) 24 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#4| |#4|) $) 22)) (-2965 (((-640 |#3|) $) NIL)) (-2780 (((-112) |#3| $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-1481 (((-3 |#4| "failed") $) 38)) (-2820 (((-640 |#4|) $) NIL)) (-4197 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2715 ((|#4| |#4| $) NIL)) (-3009 (((-112) $ $) NIL)) (-2152 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-2031 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4056 ((|#4| |#4| $) NIL)) (-1694 (((-1113) $) NIL)) (-3781 (((-3 |#4| "failed") $) 36)) (-4203 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3479 (((-3 $ "failed") $ |#4|) 47)) (-3320 (($ $ |#4|) NIL)) (-3138 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 |#4|) (-640 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) 16)) (-3135 (($) 14)) (-4167 (((-767) $) NIL)) (-1709 (((-767) |#4| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093)))) (((-767) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) 13)) (-2220 (((-536) $) NIL (|has| |#4| (-611 (-536))))) (-1707 (($ (-640 |#4|)) 21)) (-3577 (($ $ |#3|) 43)) (-1593 (($ $ |#3|) 44)) (-1924 (($ $) NIL)) (-4192 (($ $ |#3|) NIL)) (-1693 (((-858) $) 32) (((-640 |#4|) $) 41)) (-2437 (((-767) $) NIL (|has| |#3| (-368)))) (-2540 (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2691 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) NIL)) (-4383 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1955 (((-640 |#3|) $) NIL)) (-3152 (((-112) |#3| $) NIL)) (-1718 (((-112) $ $) NIL)) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-2110 (((-640 (-2 (|:| -1442 $) (|:| -3409 (-640 |#4|)))) (-640 |#4|)) NIL)) (-2119 (((-640 $) (-640 |#4|)) NIL)) (-2605 (((-640 |#3|) $) NIL)) (-3508 (((-112) $) NIL)) (-3406 (((-112) $) NIL (|has| |#1| (-555)))) (-2254 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2189 ((|#4| |#4| $) NIL)) (-1640 (((-2 (|:| |under| $) (|:| -3954 $) (|:| |upper| $)) $ |#3|) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-2255 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408))) (((-3 |#4| "failed") $ |#3|) NIL)) (-2569 (($) NIL T CONST)) (-3466 (((-112) $) 27 (|has| |#1| (-555)))) (-3486 (((-112) $ $) NIL (|has| |#1| (-555)))) (-3476 (((-112) $ $) NIL (|has| |#1| (-555)))) (-3496 (((-112) $) NIL (|has| |#1| (-555)))) (-2201 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3418 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-3431 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-2130 (((-3 $ "failed") (-640 |#4|)) NIL)) (-2057 (($ (-640 |#4|)) NIL)) (-3793 (((-3 $ "failed") $) 40)) (-2151 ((|#4| |#4| $) NIL)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093))))) (-1459 (($ |#4| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-3443 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-2264 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-2131 ((|#4| |#4| $) NIL)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4408))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4408))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2284 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3409 (-640 |#4|))) $) NIL)) (-2658 (((-640 |#4|) $) 17 (|has| $ (-6 -4408)))) (-2274 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3354 ((|#3| $) 34)) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#4|) $) 18 (|has| $ (-6 -4408)))) (-2667 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093))))) (-4347 (($ (-1 |#4| |#4|) $) 24 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#4| |#4|) $) 22)) (-3568 (((-640 |#3|) $) NIL)) (-3553 (((-112) |#3| $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-1481 (((-3 |#4| "failed") $) 38)) (-2297 (((-640 |#4|) $) NIL)) (-2225 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2163 ((|#4| |#4| $) NIL)) (-2319 (((-112) $ $) NIL)) (-3454 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-2241 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2176 ((|#4| |#4| $) NIL)) (-1693 (((-1113) $) NIL)) (-3782 (((-3 |#4| "failed") $) 36)) (-1971 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-2089 (((-3 $ "failed") $ |#4|) 47)) (-1751 (($ $ |#4|) NIL)) (-1458 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 |#4|) (-640 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) 16)) (-3445 (($) 14)) (-3871 (((-767) $) NIL)) (-1708 (((-767) |#4| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093)))) (((-767) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) 13)) (-2219 (((-536) $) NIL (|has| |#4| (-611 (-536))))) (-1706 (($ (-640 |#4|)) 21)) (-3519 (($ $ |#3|) 43)) (-3542 (($ $ |#3|) 44)) (-2141 (($ $) NIL)) (-3529 (($ $ |#3|) NIL)) (-1692 (((-858) $) 32) (((-640 |#4|) $) 41)) (-3255 (((-767) $) NIL (|has| |#3| (-368)))) (-2307 (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2211 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) NIL)) (-1471 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-2100 (((-640 |#3|) $) NIL)) (-3772 (((-112) |#3| $) NIL)) (-1718 (((-112) $ $) NIL)) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
(((-476 |#1| |#2| |#3| |#4|) (-1201 |#1| |#2| |#3| |#4|) (-555) (-789) (-846) (-1059 |#1| |#2| |#3|)) (T -476))
NIL
(-1201 |#1| |#2| |#3| |#4|)
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL)) (-2058 (((-563) $) NIL) (((-407 (-563)) $) NIL)) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-2180 (($) 15)) (-3827 (((-112) $) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-2220 (((-379) $) 19) (((-225) $) 22) (((-407 (-1165 (-563))) $) 16) (((-536) $) 50)) (-1693 (((-858) $) 48) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (((-225) $) 21) (((-379) $) 18)) (-1675 (((-767)) NIL)) (-2126 (((-112) $ $) NIL)) (-2241 (($) 34 T CONST)) (-2254 (($) 8 T CONST)) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
-(((-477) (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))) (-1018) (-610 (-225)) (-610 (-379)) (-611 (-407 (-1165 (-563)))) (-611 (-536)) (-10 -8 (-15 -2180 ($))))) (T -477))
-((-2180 (*1 *1) (-5 *1 (-477))))
-(-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))) (-1018) (-610 (-225)) (-610 (-379)) (-611 (-407 (-1165 (-563)))) (-611 (-536)) (-10 -8 (-15 -2180 ($))))
-((-1677 (((-112) $ $) NIL)) (-2351 (((-1128) $) 11)) (-2340 (((-1128) $) 9)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 19) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-478) (-13 (-1076) (-10 -8 (-15 -2340 ((-1128) $)) (-15 -2351 ((-1128) $))))) (T -478))
-((-2340 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-478)))) (-2351 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-478)))))
-(-13 (-1076) (-10 -8 (-15 -2340 ((-1128) $)) (-15 -2351 ((-1128) $))))
-((-1677 (((-112) $ $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1552 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-4378 (((-1262) $ |#1| |#1|) NIL (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#2| $ |#1| |#2|) 16)) (-2812 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-1577 (((-3 |#2| "failed") |#1| $) 20)) (-4239 (($) NIL T CONST)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-2705 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-3 |#2| "failed") |#1| $) 18)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4407))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#2| $ |#1|) NIL)) (-2659 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2411 ((|#1| $) NIL (|has| |#1| (-846)))) (-2259 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-3860 ((|#1| $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4408))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1303 (((-640 |#1|) $) 13)) (-4173 (((-112) |#1| $) NIL)) (-2964 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-1812 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-4318 (((-640 |#1|) $) NIL)) (-3192 (((-112) |#1| $) NIL)) (-1694 (((-1113) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3781 ((|#2| $) NIL (|has| |#1| (-846)))) (-4203 (((-3 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL)) (-2358 (($ $ |#2|) NIL (|has| $ (-6 -4408)))) (-3755 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-3138 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-2836 (((-640 |#2|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) 19)) (-2309 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3890 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-1709 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093)))) (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-611 (-536))))) (-1707 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-1693 (((-858) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858)))))) (-2233 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-4383 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 11 (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3608 (((-767) $) 15 (|has| $ (-6 -4407)))))
-(((-479 |#1| |#2| |#3|) (-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4407))) (-1093) (-1093) (-1151)) (T -479))
-NIL
-(-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4407)))
-((-3865 (((-563) (-563) (-563)) 7)) (-3704 (((-112) (-563) (-563) (-563) (-563)) 11)) (-2177 (((-1257 (-640 (-563))) (-767) (-767)) 22)))
-(((-480) (-10 -7 (-15 -3865 ((-563) (-563) (-563))) (-15 -3704 ((-112) (-563) (-563) (-563) (-563))) (-15 -2177 ((-1257 (-640 (-563))) (-767) (-767))))) (T -480))
-((-2177 (*1 *2 *3 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1257 (-640 (-563)))) (-5 *1 (-480)))) (-3704 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-563)) (-5 *2 (-112)) (-5 *1 (-480)))) (-3865 (*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-480)))))
-(-10 -7 (-15 -3865 ((-563) (-563) (-563))) (-15 -3704 ((-112) (-563) (-563) (-563) (-563))) (-15 -2177 ((-1257 (-640 (-563))) (-767) (-767))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2606 (((-640 (-860 |#1|)) $) NIL)) (-2139 (((-1165 $) $ (-860 |#1|)) NIL) (((-1165 |#2|) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#2| (-555)))) (-4223 (($ $) NIL (|has| |#2| (-555)))) (-3156 (((-112) $) NIL (|has| |#2| (-555)))) (-1779 (((-767) $) NIL) (((-767) $ (-640 (-860 |#1|))) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-4335 (($ $) NIL (|has| |#2| (-452)))) (-3205 (((-418 $) $) NIL (|has| |#2| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-860 |#1|) "failed") $) NIL)) (-2058 ((|#2| $) NIL) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-860 |#1|) $) NIL)) (-2742 (($ $ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-3483 (($ $ (-640 (-563))) NIL)) (-2751 (($ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1300 (($ $) NIL (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-2739 (((-640 $) $) NIL)) (-2468 (((-112) $) NIL (|has| |#2| (-905)))) (-3554 (($ $ |#2| (-482 (-3608 |#1|) (-767)) $) NIL)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-379))) (|has| |#2| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-563))) (|has| |#2| (-882 (-563)))))) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) NIL)) (-2596 (($ (-1165 |#2|) (-860 |#1|)) NIL) (($ (-1165 $) (-860 |#1|)) NIL)) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-2588 (($ |#2| (-482 (-3608 |#1|) (-767))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ (-860 |#1|)) NIL)) (-2048 (((-482 (-3608 |#1|) (-767)) $) NIL) (((-767) $ (-860 |#1|)) NIL) (((-640 (-767)) $ (-640 (-860 |#1|))) NIL)) (-3084 (($ $ $) NIL (|has| |#2| (-846)))) (-1777 (($ $ $) NIL (|has| |#2| (-846)))) (-2803 (($ (-1 (-482 (-3608 |#1|) (-767)) (-482 (-3608 |#1|) (-767))) $) NIL)) (-2240 (($ (-1 |#2| |#2|) $) NIL)) (-4234 (((-3 (-860 |#1|) "failed") $) NIL)) (-2716 (($ $) NIL)) (-2726 ((|#2| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-3573 (((-1151) $) NIL)) (-3733 (((-3 (-640 $) "failed") $) NIL)) (-2919 (((-3 (-640 $) "failed") $) NIL)) (-4086 (((-3 (-2 (|:| |var| (-860 |#1|)) (|:| -1654 (-767))) "failed") $) NIL)) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) NIL)) (-2706 ((|#2| $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#2| (-452)))) (-3548 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2174 (((-418 $) $) NIL (|has| |#2| (-905)))) (-3008 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-555)))) (-1540 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-860 |#1|) |#2|) NIL) (($ $ (-640 (-860 |#1|)) (-640 |#2|)) NIL) (($ $ (-860 |#1|) $) NIL) (($ $ (-640 (-860 |#1|)) (-640 $)) NIL)) (-2315 (($ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-4202 (($ $ (-860 |#1|)) NIL) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-4167 (((-482 (-3608 |#1|) (-767)) $) NIL) (((-767) $ (-860 |#1|)) NIL) (((-640 (-767)) $ (-640 (-860 |#1|))) NIL)) (-2220 (((-888 (-379)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-379)))) (|has| |#2| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-563)))) (|has| |#2| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-860 |#1|) (-611 (-536))) (|has| |#2| (-611 (-536)))))) (-1836 ((|#2| $) NIL (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-905))))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) NIL) (($ (-860 |#1|)) NIL) (($ (-407 (-563))) NIL (-4032 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#2| (-555)))) (-1337 (((-640 |#2|) $) NIL)) (-4319 ((|#2| $ (-482 (-3608 |#1|) (-767))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#2| (-905))) (|has| |#2| (-145))))) (-1675 (((-767)) NIL)) (-2793 (($ $ $ (-767)) NIL (|has| |#2| (-172)))) (-2126 (((-112) $ $) NIL (|has| |#2| (-555)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ (-860 |#1|)) NIL) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-1778 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1837 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#2| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#2| (-38 (-407 (-563))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-481 |#1| |#2|) (-13 (-945 |#2| (-482 (-3608 |#1|) (-767)) (-860 |#1|)) (-10 -8 (-15 -3483 ($ $ (-640 (-563)))))) (-640 (-1169)) (-1045)) (T -481))
-((-3483 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-481 *3 *4)) (-14 *3 (-640 (-1169))) (-4 *4 (-1045)))))
-(-13 (-945 |#2| (-482 (-3608 |#1|) (-767)) (-860 |#1|)) (-10 -8 (-15 -3483 ($ $ (-640 (-563))))))
-((-1677 (((-112) $ $) NIL (|has| |#2| (-1093)))) (-3411 (((-112) $) NIL (|has| |#2| (-131)))) (-1946 (($ (-917)) NIL (|has| |#2| (-1045)))) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-1901 (($ $ $) NIL (|has| |#2| (-789)))) (-1495 (((-3 $ "failed") $ $) NIL (|has| |#2| (-131)))) (-2759 (((-112) $ (-767)) NIL)) (-3749 (((-767)) NIL (|has| |#2| (-368)))) (-1857 (((-563) $) NIL (|has| |#2| (-844)))) (-1849 ((|#2| $ (-563) |#2|) NIL (|has| $ (-6 -4408)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1093)))) (-2058 (((-563) $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-407 (-563)) $) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) ((|#2| $) NIL (|has| |#2| (-1093)))) (-2950 (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL (|has| |#2| (-1045))) (((-684 |#2|) (-684 $)) NIL (|has| |#2| (-1045)))) (-3400 (((-3 $ "failed") $) NIL (|has| |#2| (-722)))) (-1691 (($) NIL (|has| |#2| (-368)))) (-4355 ((|#2| $ (-563) |#2|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#2| $ (-563)) 11)) (-3101 (((-112) $) NIL (|has| |#2| (-844)))) (-2659 (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-3827 (((-112) $) NIL (|has| |#2| (-722)))) (-1419 (((-112) $) NIL (|has| |#2| (-844)))) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) NIL (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-2259 (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-4345 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#2| |#2|) $) NIL)) (-1476 (((-917) $) NIL (|has| |#2| (-368)))) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#2| (-1093)))) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-2555 (($ (-917)) NIL (|has| |#2| (-368)))) (-1694 (((-1113) $) NIL (|has| |#2| (-1093)))) (-3781 ((|#2| $) NIL (|has| (-563) (-846)))) (-2358 (($ $ |#2|) NIL (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-2836 (((-640 |#2|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#2| $ (-563) |#2|) NIL) ((|#2| $ (-563)) NIL)) (-4092 ((|#2| $ $) NIL (|has| |#2| (-1045)))) (-2510 (($ (-1257 |#2|)) NIL)) (-3533 (((-134)) NIL (|has| |#2| (-363)))) (-4202 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1045)))) (-1709 (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-1872 (($ $) NIL)) (-1693 (((-1257 |#2|) $) NIL) (($ (-563)) NIL (-4032 (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-1045)))) (($ (-407 (-563))) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (($ |#2|) NIL (|has| |#2| (-1093))) (((-858) $) NIL (|has| |#2| (-610 (-858))))) (-1675 (((-767)) NIL (|has| |#2| (-1045)))) (-4383 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-2509 (($ $) NIL (|has| |#2| (-844)))) (-2241 (($) NIL (|has| |#2| (-131)) CONST)) (-2254 (($) NIL (|has| |#2| (-722)) CONST)) (-3209 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1045)))) (-1778 (((-112) $ $) NIL (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1756 (((-112) $ $) NIL (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1718 (((-112) $ $) NIL (|has| |#2| (-1093)))) (-1768 (((-112) $ $) NIL (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1744 (((-112) $ $) 15 (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1837 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1826 (($ $ $) NIL (|has| |#2| (-1045))) (($ $) NIL (|has| |#2| (-1045)))) (-1814 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-767)) NIL (|has| |#2| (-722))) (($ $ (-917)) NIL (|has| |#2| (-722)))) (* (($ (-563) $) NIL (|has| |#2| (-1045))) (($ $ $) NIL (|has| |#2| (-722))) (($ $ |#2|) NIL (|has| |#2| (-722))) (($ |#2| $) NIL (|has| |#2| (-722))) (($ (-767) $) NIL (|has| |#2| (-131))) (($ (-917) $) NIL (|has| |#2| (-25)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL)) (-2057 (((-563) $) NIL) (((-407 (-563)) $) NIL)) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-2179 (($) 15)) (-3401 (((-112) $) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-2219 (((-379) $) 19) (((-225) $) 22) (((-407 (-1165 (-563))) $) 16) (((-536) $) 50)) (-1692 (((-858) $) 48) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (((-225) $) 21) (((-379) $) 18)) (-3914 (((-767)) NIL)) (-3223 (((-112) $ $) NIL)) (-2239 (($) 34 T CONST)) (-2253 (($) 8 T CONST)) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
+(((-477) (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))) (-1018) (-610 (-225)) (-610 (-379)) (-611 (-407 (-1165 (-563)))) (-611 (-536)) (-10 -8 (-15 -2179 ($))))) (T -477))
+((-2179 (*1 *1) (-5 *1 (-477))))
+(-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))) (-1018) (-610 (-225)) (-610 (-379)) (-611 (-407 (-1165 (-563)))) (-611 (-536)) (-10 -8 (-15 -2179 ($))))
+((-1677 (((-112) $ $) NIL)) (-2350 (((-1128) $) 11)) (-2339 (((-1128) $) 9)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 19) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-478) (-13 (-1076) (-10 -8 (-15 -2339 ((-1128) $)) (-15 -2350 ((-1128) $))))) (T -478))
+((-2339 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-478)))) (-2350 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-478)))))
+(-13 (-1076) (-10 -8 (-15 -2339 ((-1128) $)) (-15 -2350 ((-1128) $))))
+((-1677 (((-112) $ $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1551 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-2208 (((-1262) $ |#1| |#1|) NIL (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#2| $ |#1| |#2|) 16)) (-3678 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-1576 (((-3 |#2| "failed") |#1| $) 20)) (-2569 (($) NIL T CONST)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-1691 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-3 |#2| "failed") |#1| $) 18)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#2| $ |#1|) NIL)) (-2658 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-2236 ((|#1| $) NIL (|has| |#1| (-846)))) (-3523 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2251 ((|#1| $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4409))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1304 (((-640 |#1|) $) 13)) (-2305 (((-112) |#1| $) NIL)) (-2627 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-3867 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-2272 (((-640 |#1|) $) NIL)) (-2282 (((-112) |#1| $) NIL)) (-1693 (((-1113) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3782 ((|#2| $) NIL (|has| |#1| (-846)))) (-1971 (((-3 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL)) (-2221 (($ $ |#2|) NIL (|has| $ (-6 -4409)))) (-2808 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-1458 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2295 (((-640 |#2|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) 19)) (-2308 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3863 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1708 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093)))) (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-611 (-536))))) (-1706 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1692 (((-858) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858)))))) (-2820 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1471 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 11 (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3610 (((-767) $) 15 (|has| $ (-6 -4408)))))
+(((-479 |#1| |#2| |#3|) (-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4408))) (-1093) (-1093) (-1151)) (T -479))
+NIL
+(-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4408)))
+((-1354 (((-563) (-563) (-563)) 7)) (-1364 (((-112) (-563) (-563) (-563) (-563)) 11)) (-2175 (((-1257 (-640 (-563))) (-767) (-767)) 22)))
+(((-480) (-10 -7 (-15 -1354 ((-563) (-563) (-563))) (-15 -1364 ((-112) (-563) (-563) (-563) (-563))) (-15 -2175 ((-1257 (-640 (-563))) (-767) (-767))))) (T -480))
+((-2175 (*1 *2 *3 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1257 (-640 (-563)))) (-5 *1 (-480)))) (-1364 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-563)) (-5 *2 (-112)) (-5 *1 (-480)))) (-1354 (*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-480)))))
+(-10 -7 (-15 -1354 ((-563) (-563) (-563))) (-15 -1364 ((-112) (-563) (-563) (-563) (-563))) (-15 -2175 ((-1257 (-640 (-563))) (-767) (-767))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2605 (((-640 (-860 |#1|)) $) NIL)) (-2138 (((-1165 $) $ (-860 |#1|)) NIL) (((-1165 |#2|) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#2| (-555)))) (-3231 (($ $) NIL (|has| |#2| (-555)))) (-3211 (((-112) $) NIL (|has| |#2| (-555)))) (-3897 (((-767) $) NIL) (((-767) $ (-640 (-860 |#1|))) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-1798 (($ $) NIL (|has| |#2| (-452)))) (-2802 (((-418 $) $) NIL (|has| |#2| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-860 |#1|) "failed") $) NIL)) (-2057 ((|#2| $) NIL) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-860 |#1|) $) NIL)) (-1612 (($ $ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-1373 (($ $ (-640 (-563))) NIL)) (-2750 (($ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-4151 (($ $) NIL (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-2738 (((-640 $) $) NIL)) (-2560 (((-112) $) NIL (|has| |#2| (-905)))) (-2159 (($ $ |#2| (-482 (-3610 |#1|) (-767)) $) NIL)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-379))) (|has| |#2| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-563))) (|has| |#2| (-882 (-563)))))) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) NIL)) (-2595 (($ (-1165 |#2|) (-860 |#1|)) NIL) (($ (-1165 $) (-860 |#1|)) NIL)) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-2587 (($ |#2| (-482 (-3610 |#1|) (-767))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ (-860 |#1|)) NIL)) (-3908 (((-482 (-3610 |#1|) (-767)) $) NIL) (((-767) $ (-860 |#1|)) NIL) (((-640 (-767)) $ (-640 (-860 |#1|))) NIL)) (-3088 (($ $ $) NIL (|has| |#2| (-846)))) (-1776 (($ $ $) NIL (|has| |#2| (-846)))) (-2170 (($ (-1 (-482 (-3610 |#1|) (-767)) (-482 (-3610 |#1|) (-767))) $) NIL)) (-2238 (($ (-1 |#2| |#2|) $) NIL)) (-1698 (((-3 (-860 |#1|) "failed") $) NIL)) (-2715 (($ $) NIL)) (-2725 ((|#2| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-3854 (((-1151) $) NIL)) (-3939 (((-3 (-640 $) "failed") $) NIL)) (-3930 (((-3 (-640 $) "failed") $) NIL)) (-3949 (((-3 (-2 (|:| |var| (-860 |#1|)) (|:| -3311 (-767))) "failed") $) NIL)) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) NIL)) (-2705 ((|#2| $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#2| (-452)))) (-3551 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2173 (((-418 $) $) NIL (|has| |#2| (-905)))) (-3012 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-555)))) (-1542 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-860 |#1|) |#2|) NIL) (($ $ (-640 (-860 |#1|)) (-640 |#2|)) NIL) (($ $ (-860 |#1|) $) NIL) (($ $ (-640 (-860 |#1|)) (-640 $)) NIL)) (-1623 (($ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-4203 (($ $ (-860 |#1|)) NIL) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-3871 (((-482 (-3610 |#1|) (-767)) $) NIL) (((-767) $ (-860 |#1|)) NIL) (((-640 (-767)) $ (-640 (-860 |#1|))) NIL)) (-2219 (((-888 (-379)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-379)))) (|has| |#2| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-563)))) (|has| |#2| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-860 |#1|) (-611 (-536))) (|has| |#2| (-611 (-536)))))) (-3885 ((|#2| $) NIL (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-905))))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) NIL) (($ (-860 |#1|)) NIL) (($ (-407 (-563))) NIL (-4034 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#2| (-555)))) (-3955 (((-640 |#2|) $) NIL)) (-3244 ((|#2| $ (-482 (-3610 |#1|) (-767))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#2| (-905))) (|has| |#2| (-145))))) (-3914 (((-767)) NIL)) (-2148 (($ $ $ (-767)) NIL (|has| |#2| (-172)))) (-3223 (((-112) $ $) NIL (|has| |#2| (-555)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-860 |#1|)) NIL) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-1779 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1836 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#2| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#2| (-38 (-407 (-563))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-481 |#1| |#2|) (-13 (-945 |#2| (-482 (-3610 |#1|) (-767)) (-860 |#1|)) (-10 -8 (-15 -1373 ($ $ (-640 (-563)))))) (-640 (-1169)) (-1045)) (T -481))
+((-1373 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-481 *3 *4)) (-14 *3 (-640 (-1169))) (-4 *4 (-1045)))))
+(-13 (-945 |#2| (-482 (-3610 |#1|) (-767)) (-860 |#1|)) (-10 -8 (-15 -1373 ($ $ (-640 (-563))))))
+((-1677 (((-112) $ $) NIL (|has| |#2| (-1093)))) (-3439 (((-112) $) NIL (|has| |#2| (-131)))) (-2392 (($ (-917)) NIL (|has| |#2| (-1045)))) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4092 (($ $ $) NIL (|has| |#2| (-789)))) (-3905 (((-3 $ "failed") $ $) NIL (|has| |#2| (-131)))) (-3001 (((-112) $ (-767)) NIL)) (-3750 (((-767)) NIL (|has| |#2| (-368)))) (-2807 (((-563) $) NIL (|has| |#2| (-844)))) (-1849 ((|#2| $ (-563) |#2|) NIL (|has| $ (-6 -4409)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1093)))) (-2057 (((-563) $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-407 (-563)) $) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) ((|#2| $) NIL (|has| |#2| (-1093)))) (-1476 (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL (|has| |#2| (-1045))) (((-684 |#2|) (-684 $)) NIL (|has| |#2| (-1045)))) (-3951 (((-3 $ "failed") $) NIL (|has| |#2| (-722)))) (-1690 (($) NIL (|has| |#2| (-368)))) (-4356 ((|#2| $ (-563) |#2|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#2| $ (-563)) 11)) (-3414 (((-112) $) NIL (|has| |#2| (-844)))) (-2658 (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-3401 (((-112) $) NIL (|has| |#2| (-722)))) (-3426 (((-112) $) NIL (|has| |#2| (-844)))) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) NIL (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-3523 (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-4347 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#2| |#2|) $) NIL)) (-3990 (((-917) $) NIL (|has| |#2| (-368)))) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#2| (-1093)))) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-2552 (($ (-917)) NIL (|has| |#2| (-368)))) (-1693 (((-1113) $) NIL (|has| |#2| (-1093)))) (-3782 ((|#2| $) NIL (|has| (-563) (-846)))) (-2221 (($ $ |#2|) NIL (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2295 (((-640 |#2|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#2| $ (-563) |#2|) NIL) ((|#2| $ (-563)) NIL)) (-4121 ((|#2| $ $) NIL (|has| |#2| (-1045)))) (-2509 (($ (-1257 |#2|)) NIL)) (-3526 (((-134)) NIL (|has| |#2| (-363)))) (-4203 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1045)))) (-1708 (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-1870 (($ $) NIL)) (-1692 (((-1257 |#2|) $) NIL) (($ (-563)) NIL (-4034 (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-1045)))) (($ (-407 (-563))) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (($ |#2|) NIL (|has| |#2| (-1093))) (((-858) $) NIL (|has| |#2| (-610 (-858))))) (-3914 (((-767)) NIL (|has| |#2| (-1045)))) (-1471 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1462 (($ $) NIL (|has| |#2| (-844)))) (-2239 (($) NIL (|has| |#2| (-131)) CONST)) (-2253 (($) NIL (|has| |#2| (-722)) CONST)) (-3213 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1045)))) (-1779 (((-112) $ $) NIL (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1754 (((-112) $ $) NIL (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1718 (((-112) $ $) NIL (|has| |#2| (-1093)))) (-1766 (((-112) $ $) NIL (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1743 (((-112) $ $) 15 (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1836 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1825 (($ $ $) NIL (|has| |#2| (-1045))) (($ $) NIL (|has| |#2| (-1045)))) (-1813 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-767)) NIL (|has| |#2| (-722))) (($ $ (-917)) NIL (|has| |#2| (-722)))) (* (($ (-563) $) NIL (|has| |#2| (-1045))) (($ $ $) NIL (|has| |#2| (-722))) (($ $ |#2|) NIL (|has| |#2| (-722))) (($ |#2| $) NIL (|has| |#2| (-722))) (($ (-767) $) NIL (|has| |#2| (-131))) (($ (-917) $) NIL (|has| |#2| (-25)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
(((-482 |#1| |#2|) (-238 |#1| |#2|) (-767) (-789)) (T -482))
NIL
(-238 |#1| |#2|)
-((-1677 (((-112) $ $) NIL)) (-3387 (((-640 (-506)) $) 11)) (-3348 (((-506) $) 10)) (-3573 (((-1151) $) NIL)) (-4196 (($ (-506) (-640 (-506))) 9)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 20) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-483) (-13 (-1076) (-10 -8 (-15 -4196 ($ (-506) (-640 (-506)))) (-15 -3348 ((-506) $)) (-15 -3387 ((-640 (-506)) $))))) (T -483))
-((-4196 (*1 *1 *2 *3) (-12 (-5 *3 (-640 (-506))) (-5 *2 (-506)) (-5 *1 (-483)))) (-3348 (*1 *2 *1) (-12 (-5 *2 (-506)) (-5 *1 (-483)))) (-3387 (*1 *2 *1) (-12 (-5 *2 (-640 (-506))) (-5 *1 (-483)))))
-(-13 (-1076) (-10 -8 (-15 -4196 ($ (-506) (-640 (-506)))) (-15 -3348 ((-506) $)) (-15 -3387 ((-640 (-506)) $))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2759 (((-112) $ (-767)) NIL)) (-4239 (($) NIL T CONST)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2878 (($ $ $) 32)) (-3164 (($ $ $) 31)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1777 ((|#1| $) 26)) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2964 ((|#1| $) 27)) (-1812 (($ |#1| $) 10)) (-3105 (($ (-640 |#1|)) 12)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3755 ((|#1| $) 23)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) 9)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-2233 (($ (-640 |#1|)) 29)) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3608 (((-767) $) 21 (|has| $ (-6 -4407)))))
-(((-484 |#1|) (-13 (-964 |#1|) (-10 -8 (-15 -3105 ($ (-640 |#1|))))) (-846)) (T -484))
-((-3105 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-484 *3)))))
-(-13 (-964 |#1|) (-10 -8 (-15 -3105 ($ (-640 |#1|)))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2444 (($ $) 69)) (-2257 (((-112) $) NIL)) (-3573 (((-1151) $) NIL)) (-1776 (((-413 |#2| (-407 |#2|) |#3| |#4|) $) 44)) (-1694 (((-1113) $) NIL)) (-4333 (((-3 |#4| "failed") $) 107)) (-3899 (($ (-413 |#2| (-407 |#2|) |#3| |#4|)) 76) (($ |#4|) 32) (($ |#1| |#1|) 115) (($ |#1| |#1| (-563)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 127)) (-2927 (((-2 (|:| -1524 (-413 |#2| (-407 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 46)) (-1693 (((-858) $) 102)) (-2241 (($) 33 T CONST)) (-1718 (((-112) $ $) 109)) (-1826 (($ $) 72) (($ $ $) NIL)) (-1814 (($ $ $) 70)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 73)))
+((-1677 (((-112) $ $) NIL)) (-3392 (((-640 (-506)) $) 11)) (-3352 (((-506) $) 10)) (-3854 (((-1151) $) NIL)) (-1383 (($ (-506) (-640 (-506))) 9)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 20) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-483) (-13 (-1076) (-10 -8 (-15 -1383 ($ (-506) (-640 (-506)))) (-15 -3352 ((-506) $)) (-15 -3392 ((-640 (-506)) $))))) (T -483))
+((-1383 (*1 *1 *2 *3) (-12 (-5 *3 (-640 (-506))) (-5 *2 (-506)) (-5 *1 (-483)))) (-3352 (*1 *2 *1) (-12 (-5 *2 (-506)) (-5 *1 (-483)))) (-3392 (*1 *2 *1) (-12 (-5 *2 (-640 (-506))) (-5 *1 (-483)))))
+(-13 (-1076) (-10 -8 (-15 -1383 ($ (-506) (-640 (-506)))) (-15 -3352 ((-506) $)) (-15 -3392 ((-640 (-506)) $))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3001 (((-112) $ (-767)) NIL)) (-2569 (($) NIL T CONST)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-4265 (($ $ $) 32)) (-4300 (($ $ $) 31)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1776 ((|#1| $) 26)) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2627 ((|#1| $) 27)) (-3867 (($ |#1| $) 10)) (-1393 (($ (-640 |#1|)) 12)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2808 ((|#1| $) 23)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) 9)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-2820 (($ (-640 |#1|)) 29)) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3610 (((-767) $) 21 (|has| $ (-6 -4408)))))
+(((-484 |#1|) (-13 (-964 |#1|) (-10 -8 (-15 -1393 ($ (-640 |#1|))))) (-846)) (T -484))
+((-1393 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-484 *3)))))
+(-13 (-964 |#1|) (-10 -8 (-15 -1393 ($ (-640 |#1|)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2444 (($ $) 69)) (-2410 (((-112) $) NIL)) (-3854 (((-1151) $) NIL)) (-1716 (((-413 |#2| (-407 |#2|) |#3| |#4|) $) 44)) (-1693 (((-1113) $) NIL)) (-4334 (((-3 |#4| "failed") $) 106)) (-2421 (($ (-413 |#2| (-407 |#2|) |#3| |#4|)) 76) (($ |#4|) 32) (($ |#1| |#1|) 116) (($ |#1| |#1| (-563)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 128)) (-1913 (((-2 (|:| -1526 (-413 |#2| (-407 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 46)) (-1692 (((-858) $) 101)) (-2239 (($) 33 T CONST)) (-1718 (((-112) $ $) 110)) (-1825 (($ $) 72) (($ $ $) NIL)) (-1813 (($ $ $) 70)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 73)))
(((-485 |#1| |#2| |#3| |#4|) (-335 |#1| |#2| |#3| |#4|) (-363) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|)) (T -485))
NIL
(-335 |#1| |#2| |#3| |#4|)
-((-1825 (((-563) (-640 (-563))) 29)) (-2074 ((|#1| (-640 |#1|)) 55)) (-2903 (((-640 |#1|) (-640 |#1|)) 56)) (-1573 (((-640 |#1|) (-640 |#1|)) 58)) (-3548 ((|#1| (-640 |#1|)) 57)) (-1836 (((-640 (-563)) (-640 |#1|)) 32)))
-(((-486 |#1|) (-10 -7 (-15 -3548 (|#1| (-640 |#1|))) (-15 -2074 (|#1| (-640 |#1|))) (-15 -1573 ((-640 |#1|) (-640 |#1|))) (-15 -2903 ((-640 |#1|) (-640 |#1|))) (-15 -1836 ((-640 (-563)) (-640 |#1|))) (-15 -1825 ((-563) (-640 (-563))))) (-1233 (-563))) (T -486))
-((-1825 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-563)) (-5 *1 (-486 *4)) (-4 *4 (-1233 *2)))) (-1836 (*1 *2 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-1233 (-563))) (-5 *2 (-640 (-563))) (-5 *1 (-486 *4)))) (-2903 (*1 *2 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1233 (-563))) (-5 *1 (-486 *3)))) (-1573 (*1 *2 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1233 (-563))) (-5 *1 (-486 *3)))) (-2074 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-5 *1 (-486 *2)) (-4 *2 (-1233 (-563))))) (-3548 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-5 *1 (-486 *2)) (-4 *2 (-1233 (-563))))))
-(-10 -7 (-15 -3548 (|#1| (-640 |#1|))) (-15 -2074 (|#1| (-640 |#1|))) (-15 -1573 ((-640 |#1|) (-640 |#1|))) (-15 -2903 ((-640 |#1|) (-640 |#1|))) (-15 -1836 ((-640 (-563)) (-640 |#1|))) (-15 -1825 ((-563) (-640 (-563)))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3401 (((-563) $) NIL (|has| (-563) (-307)))) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-1919 (((-112) $ $) NIL)) (-1857 (((-563) $) NIL (|has| (-563) (-816)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (|has| (-563) (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-563) (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| (-563) (-1034 (-563))))) (-2058 (((-563) $) NIL) (((-1169) $) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| (-563) (-1034 (-563)))) (((-563) $) NIL (|has| (-563) (-1034 (-563))))) (-3090 (($ $ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) NIL (|has| (-563) (-545)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3101 (((-112) $) NIL (|has| (-563) (-816)))) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-563) (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-563) (-882 (-379))))) (-3827 (((-112) $) NIL)) (-2711 (($ $) NIL)) (-2143 (((-563) $) NIL)) (-2408 (((-3 $ "failed") $) NIL (|has| (-563) (-1144)))) (-1419 (((-112) $) NIL (|has| (-563) (-816)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3084 (($ $ $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| (-563) (-846)))) (-2240 (($ (-1 (-563) (-563)) $) NIL)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| (-563) (-1144)) CONST)) (-1496 (($ (-407 (-563))) 9)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-4215 (($ $) NIL (|has| (-563) (-307))) (((-407 (-563)) $) NIL)) (-1583 (((-563) $) NIL (|has| (-563) (-545)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1540 (($ $ (-640 (-563)) (-640 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-563) (-563)) NIL (|has| (-563) (-309 (-563)))) (($ $ (-294 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-294 (-563)))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-1169)) (-640 (-563))) NIL (|has| (-563) (-514 (-1169) (-563)))) (($ $ (-1169) (-563)) NIL (|has| (-563) (-514 (-1169) (-563))))) (-2628 (((-767) $) NIL)) (-2309 (($ $ (-563)) NIL (|has| (-563) (-286 (-563) (-563))))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-4202 (($ $) NIL (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-1801 (($ $) NIL)) (-2154 (((-563) $) NIL)) (-2220 (((-888 (-563)) $) NIL (|has| (-563) (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| (-563) (-611 (-888 (-379))))) (((-536) $) NIL (|has| (-563) (-611 (-536)))) (((-379) $) NIL (|has| (-563) (-1018))) (((-225) $) NIL (|has| (-563) (-1018)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-563) (-905))))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) 8) (($ (-563)) NIL) (($ (-1169)) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) NIL) (((-1000 16) $) 10)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| (-563) (-905))) (|has| (-563) (-145))))) (-1675 (((-767)) NIL)) (-4194 (((-563) $) NIL (|has| (-563) (-545)))) (-2126 (((-112) $ $) NIL)) (-2509 (($ $) NIL (|has| (-563) (-816)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $) NIL (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-1778 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1756 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1744 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1837 (($ $ $) NIL) (($ (-563) (-563)) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ (-563) $) NIL) (($ $ (-563)) NIL)))
-(((-487) (-13 (-988 (-563)) (-610 (-407 (-563))) (-610 (-1000 16)) (-10 -8 (-15 -4215 ((-407 (-563)) $)) (-15 -1496 ($ (-407 (-563))))))) (T -487))
-((-4215 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-487)))) (-1496 (*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-487)))))
-(-13 (-988 (-563)) (-610 (-407 (-563))) (-610 (-1000 16)) (-10 -8 (-15 -4215 ((-407 (-563)) $)) (-15 -1496 ($ (-407 (-563))))))
-((-2259 (((-640 |#2|) $) 23)) (-1729 (((-112) |#2| $) 28)) (-3138 (((-112) (-1 (-112) |#2|) $) 21)) (-1540 (($ $ (-640 (-294 |#2|))) 13) (($ $ (-294 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-640 |#2|) (-640 |#2|)) NIL)) (-1709 (((-767) (-1 (-112) |#2|) $) 22) (((-767) |#2| $) 26)) (-1693 (((-858) $) 37)) (-4383 (((-112) (-1 (-112) |#2|) $) 20)) (-1718 (((-112) $ $) 31)) (-3608 (((-767) $) 17)))
-(((-488 |#1| |#2|) (-10 -8 (-15 -1693 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -1540 (|#1| |#1| (-640 |#2|) (-640 |#2|))) (-15 -1540 (|#1| |#1| |#2| |#2|)) (-15 -1540 (|#1| |#1| (-294 |#2|))) (-15 -1540 (|#1| |#1| (-640 (-294 |#2|)))) (-15 -1729 ((-112) |#2| |#1|)) (-15 -1709 ((-767) |#2| |#1|)) (-15 -2259 ((-640 |#2|) |#1|)) (-15 -1709 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -3138 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4383 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3608 ((-767) |#1|))) (-489 |#2|) (-1208)) (T -488))
-NIL
-(-10 -8 (-15 -1693 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -1540 (|#1| |#1| (-640 |#2|) (-640 |#2|))) (-15 -1540 (|#1| |#1| |#2| |#2|)) (-15 -1540 (|#1| |#1| (-294 |#2|))) (-15 -1540 (|#1| |#1| (-640 (-294 |#2|)))) (-15 -1729 ((-112) |#2| |#1|)) (-15 -1709 ((-767) |#2| |#1|)) (-15 -2259 ((-640 |#2|) |#1|)) (-15 -1709 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -3138 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4383 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3608 ((-767) |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2759 (((-112) $ (-767)) 8)) (-4239 (($) 7 T CONST)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1438 (((-563) (-640 (-563))) 29)) (-1405 ((|#1| (-640 |#1|)) 55)) (-1427 (((-640 |#1|) (-640 |#1|)) 56)) (-1416 (((-640 |#1|) (-640 |#1|)) 58)) (-3551 ((|#1| (-640 |#1|)) 57)) (-3885 (((-640 (-563)) (-640 |#1|)) 32)))
+(((-486 |#1|) (-10 -7 (-15 -3551 (|#1| (-640 |#1|))) (-15 -1405 (|#1| (-640 |#1|))) (-15 -1416 ((-640 |#1|) (-640 |#1|))) (-15 -1427 ((-640 |#1|) (-640 |#1|))) (-15 -3885 ((-640 (-563)) (-640 |#1|))) (-15 -1438 ((-563) (-640 (-563))))) (-1233 (-563))) (T -486))
+((-1438 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-563)) (-5 *1 (-486 *4)) (-4 *4 (-1233 *2)))) (-3885 (*1 *2 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-1233 (-563))) (-5 *2 (-640 (-563))) (-5 *1 (-486 *4)))) (-1427 (*1 *2 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1233 (-563))) (-5 *1 (-486 *3)))) (-1416 (*1 *2 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1233 (-563))) (-5 *1 (-486 *3)))) (-1405 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-5 *1 (-486 *2)) (-4 *2 (-1233 (-563))))) (-3551 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-5 *1 (-486 *2)) (-4 *2 (-1233 (-563))))))
+(-10 -7 (-15 -3551 (|#1| (-640 |#1|))) (-15 -1405 (|#1| (-640 |#1|))) (-15 -1416 ((-640 |#1|) (-640 |#1|))) (-15 -1427 ((-640 |#1|) (-640 |#1|))) (-15 -3885 ((-640 (-563)) (-640 |#1|))) (-15 -1438 ((-563) (-640 (-563)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3944 (((-563) $) NIL (|has| (-563) (-307)))) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2003 (((-112) $ $) NIL)) (-2807 (((-563) $) NIL (|has| (-563) (-816)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (|has| (-563) (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-563) (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| (-563) (-1034 (-563))))) (-2057 (((-563) $) NIL) (((-1169) $) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| (-563) (-1034 (-563)))) (((-563) $) NIL (|has| (-563) (-1034 (-563))))) (-3094 (($ $ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) NIL (|has| (-563) (-545)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-3414 (((-112) $) NIL (|has| (-563) (-816)))) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-563) (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-563) (-882 (-379))))) (-3401 (((-112) $) NIL)) (-2043 (($ $) NIL)) (-2143 (((-563) $) NIL)) (-1983 (((-3 $ "failed") $) NIL (|has| (-563) (-1144)))) (-3426 (((-112) $) NIL (|has| (-563) (-816)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3088 (($ $ $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| (-563) (-846)))) (-2238 (($ (-1 (-563) (-563)) $) NIL)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| (-563) (-1144)) CONST)) (-1448 (($ (-407 (-563))) 9)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3935 (($ $) NIL (|has| (-563) (-307))) (((-407 (-563)) $) NIL)) (-3954 (((-563) $) NIL (|has| (-563) (-545)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1542 (($ $ (-640 (-563)) (-640 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-563) (-563)) NIL (|has| (-563) (-309 (-563)))) (($ $ (-294 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-294 (-563)))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-1169)) (-640 (-563))) NIL (|has| (-563) (-514 (-1169) (-563)))) (($ $ (-1169) (-563)) NIL (|has| (-563) (-514 (-1169) (-563))))) (-1993 (((-767) $) NIL)) (-2308 (($ $ (-563)) NIL (|has| (-563) (-286 (-563) (-563))))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-4203 (($ $) NIL (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-2033 (($ $) NIL)) (-2153 (((-563) $) NIL)) (-2219 (((-888 (-563)) $) NIL (|has| (-563) (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| (-563) (-611 (-888 (-379))))) (((-536) $) NIL (|has| (-563) (-611 (-536)))) (((-379) $) NIL (|has| (-563) (-1018))) (((-225) $) NIL (|has| (-563) (-1018)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-563) (-905))))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) 8) (($ (-563)) NIL) (($ (-1169)) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) NIL) (((-1000 16) $) 10)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| (-563) (-905))) (|has| (-563) (-145))))) (-3914 (((-767)) NIL)) (-3965 (((-563) $) NIL (|has| (-563) (-545)))) (-3223 (((-112) $ $) NIL)) (-1462 (($ $) NIL (|has| (-563) (-816)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $) NIL (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-1779 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1754 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1743 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1836 (($ $ $) NIL) (($ (-563) (-563)) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ (-563) $) NIL) (($ $ (-563)) NIL)))
+(((-487) (-13 (-988 (-563)) (-610 (-407 (-563))) (-610 (-1000 16)) (-10 -8 (-15 -3935 ((-407 (-563)) $)) (-15 -1448 ($ (-407 (-563))))))) (T -487))
+((-3935 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-487)))) (-1448 (*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-487)))))
+(-13 (-988 (-563)) (-610 (-407 (-563))) (-610 (-1000 16)) (-10 -8 (-15 -3935 ((-407 (-563)) $)) (-15 -1448 ($ (-407 (-563))))))
+((-3523 (((-640 |#2|) $) 23)) (-2667 (((-112) |#2| $) 28)) (-1458 (((-112) (-1 (-112) |#2|) $) 21)) (-1542 (($ $ (-640 (-294 |#2|))) 13) (($ $ (-294 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-640 |#2|) (-640 |#2|)) NIL)) (-1708 (((-767) (-1 (-112) |#2|) $) 22) (((-767) |#2| $) 26)) (-1692 (((-858) $) 37)) (-1471 (((-112) (-1 (-112) |#2|) $) 20)) (-1718 (((-112) $ $) 31)) (-3610 (((-767) $) 17)))
+(((-488 |#1| |#2|) (-10 -8 (-15 -1692 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -1542 (|#1| |#1| (-640 |#2|) (-640 |#2|))) (-15 -1542 (|#1| |#1| |#2| |#2|)) (-15 -1542 (|#1| |#1| (-294 |#2|))) (-15 -1542 (|#1| |#1| (-640 (-294 |#2|)))) (-15 -2667 ((-112) |#2| |#1|)) (-15 -1708 ((-767) |#2| |#1|)) (-15 -3523 ((-640 |#2|) |#1|)) (-15 -1708 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -1458 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1471 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3610 ((-767) |#1|))) (-489 |#2|) (-1208)) (T -488))
+NIL
+(-10 -8 (-15 -1692 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -1542 (|#1| |#1| (-640 |#2|) (-640 |#2|))) (-15 -1542 (|#1| |#1| |#2| |#2|)) (-15 -1542 (|#1| |#1| (-294 |#2|))) (-15 -1542 (|#1| |#1| (-640 (-294 |#2|)))) (-15 -2667 ((-112) |#2| |#1|)) (-15 -1708 ((-767) |#2| |#1|)) (-15 -3523 ((-640 |#2|) |#1|)) (-15 -1708 ((-767) (-1 (-112) |#2|) |#1|)) (-15 -1458 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1471 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3610 ((-767) |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-3001 (((-112) $ (-767)) 8)) (-2569 (($) 7 T CONST)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-489 |#1|) (-140) (-1208)) (T -489))
-((-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-489 *3)) (-4 *3 (-1208)))) (-4345 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4408)) (-4 *1 (-489 *3)) (-4 *3 (-1208)))) (-4383 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4407)) (-4 *1 (-489 *4)) (-4 *4 (-1208)) (-5 *2 (-112)))) (-3138 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4407)) (-4 *1 (-489 *4)) (-4 *4 (-1208)) (-5 *2 (-112)))) (-1709 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4407)) (-4 *1 (-489 *4)) (-4 *4 (-1208)) (-5 *2 (-767)))) (-2659 (*1 *2 *1) (-12 (|has| *1 (-6 -4407)) (-4 *1 (-489 *3)) (-4 *3 (-1208)) (-5 *2 (-640 *3)))) (-2259 (*1 *2 *1) (-12 (|has| *1 (-6 -4407)) (-4 *1 (-489 *3)) (-4 *3 (-1208)) (-5 *2 (-640 *3)))) (-1709 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4407)) (-4 *1 (-489 *3)) (-4 *3 (-1208)) (-4 *3 (-1093)) (-5 *2 (-767)))) (-1729 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4407)) (-4 *1 (-489 *3)) (-4 *3 (-1208)) (-4 *3 (-1093)) (-5 *2 (-112)))))
-(-13 (-34) (-10 -8 (IF (|has| |t#1| (-610 (-858))) (-6 (-610 (-858))) |%noBranch|) (IF (|has| |t#1| (-1093)) (-6 (-1093)) |%noBranch|) (IF (|has| |t#1| (-1093)) (IF (|has| |t#1| (-309 |t#1|)) (-6 (-309 |t#1|)) |%noBranch|) |%noBranch|) (-15 -2240 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4408)) (-15 -4345 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4407)) (PROGN (-15 -4383 ((-112) (-1 (-112) |t#1|) $)) (-15 -3138 ((-112) (-1 (-112) |t#1|) $)) (-15 -1709 ((-767) (-1 (-112) |t#1|) $)) (-15 -2659 ((-640 |t#1|) $)) (-15 -2259 ((-640 |t#1|) $)) (IF (|has| |t#1| (-1093)) (PROGN (-15 -1709 ((-767) |t#1| $)) (-15 -1729 ((-112) |t#1| $))) |%noBranch|)) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-1693 ((|#1| $) 6) (($ |#1|) 9)))
+((-2238 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-489 *3)) (-4 *3 (-1208)))) (-4347 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4409)) (-4 *1 (-489 *3)) (-4 *3 (-1208)))) (-1471 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4408)) (-4 *1 (-489 *4)) (-4 *4 (-1208)) (-5 *2 (-112)))) (-1458 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4408)) (-4 *1 (-489 *4)) (-4 *4 (-1208)) (-5 *2 (-112)))) (-1708 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4408)) (-4 *1 (-489 *4)) (-4 *4 (-1208)) (-5 *2 (-767)))) (-2658 (*1 *2 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-489 *3)) (-4 *3 (-1208)) (-5 *2 (-640 *3)))) (-3523 (*1 *2 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-489 *3)) (-4 *3 (-1208)) (-5 *2 (-640 *3)))) (-1708 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-489 *3)) (-4 *3 (-1208)) (-4 *3 (-1093)) (-5 *2 (-767)))) (-2667 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-489 *3)) (-4 *3 (-1208)) (-4 *3 (-1093)) (-5 *2 (-112)))))
+(-13 (-34) (-10 -8 (IF (|has| |t#1| (-610 (-858))) (-6 (-610 (-858))) |%noBranch|) (IF (|has| |t#1| (-1093)) (-6 (-1093)) |%noBranch|) (IF (|has| |t#1| (-1093)) (IF (|has| |t#1| (-309 |t#1|)) (-6 (-309 |t#1|)) |%noBranch|) |%noBranch|) (-15 -2238 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4409)) (-15 -4347 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4408)) (PROGN (-15 -1471 ((-112) (-1 (-112) |t#1|) $)) (-15 -1458 ((-112) (-1 (-112) |t#1|) $)) (-15 -1708 ((-767) (-1 (-112) |t#1|) $)) (-15 -2658 ((-640 |t#1|) $)) (-15 -3523 ((-640 |t#1|) $)) (IF (|has| |t#1| (-1093)) (PROGN (-15 -1708 ((-767) |t#1| $)) (-15 -2667 ((-112) |t#1| $))) |%noBranch|)) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-1692 ((|#1| $) 6) (($ |#1|) 9)))
(((-490 |#1|) (-140) (-1208)) (T -490))
NIL
(-13 (-610 |t#1|) (-613 |t#1|))
(((-613 |#1|) . T) ((-610 |#1|) . T))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-2762 (($ (-1151)) 8)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 14) (((-1151) $) 11)) (-1718 (((-112) $ $) 10)))
-(((-491) (-13 (-1093) (-610 (-1151)) (-10 -8 (-15 -2762 ($ (-1151)))))) (T -491))
-((-2762 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-491)))))
-(-13 (-1093) (-610 (-1151)) (-10 -8 (-15 -2762 ($ (-1151)))))
-((-1771 (($ $) 15)) (-1748 (($ $) 24)) (-1794 (($ $) 12)) (-1806 (($ $) 10)) (-1784 (($ $) 17)) (-1759 (($ $) 22)))
-(((-492 |#1|) (-10 -8 (-15 -1759 (|#1| |#1|)) (-15 -1784 (|#1| |#1|)) (-15 -1806 (|#1| |#1|)) (-15 -1794 (|#1| |#1|)) (-15 -1748 (|#1| |#1|)) (-15 -1771 (|#1| |#1|))) (-493)) (T -492))
-NIL
-(-10 -8 (-15 -1759 (|#1| |#1|)) (-15 -1784 (|#1| |#1|)) (-15 -1806 (|#1| |#1|)) (-15 -1794 (|#1| |#1|)) (-15 -1748 (|#1| |#1|)) (-15 -1771 (|#1| |#1|)))
-((-1771 (($ $) 11)) (-1748 (($ $) 10)) (-1794 (($ $) 9)) (-1806 (($ $) 8)) (-1784 (($ $) 7)) (-1759 (($ $) 6)))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1482 (($ (-1151)) 8)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 14) (((-1151) $) 11)) (-1718 (((-112) $ $) 10)))
+(((-491) (-13 (-1093) (-610 (-1151)) (-10 -8 (-15 -1482 ($ (-1151)))))) (T -491))
+((-1482 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-491)))))
+(-13 (-1093) (-610 (-1151)) (-10 -8 (-15 -1482 ($ (-1151)))))
+((-1770 (($ $) 15)) (-1747 (($ $) 24)) (-1793 (($ $) 12)) (-1805 (($ $) 10)) (-1783 (($ $) 17)) (-1758 (($ $) 22)))
+(((-492 |#1|) (-10 -8 (-15 -1758 (|#1| |#1|)) (-15 -1783 (|#1| |#1|)) (-15 -1805 (|#1| |#1|)) (-15 -1793 (|#1| |#1|)) (-15 -1747 (|#1| |#1|)) (-15 -1770 (|#1| |#1|))) (-493)) (T -492))
+NIL
+(-10 -8 (-15 -1758 (|#1| |#1|)) (-15 -1783 (|#1| |#1|)) (-15 -1805 (|#1| |#1|)) (-15 -1793 (|#1| |#1|)) (-15 -1747 (|#1| |#1|)) (-15 -1770 (|#1| |#1|)))
+((-1770 (($ $) 11)) (-1747 (($ $) 10)) (-1793 (($ $) 9)) (-1805 (($ $) 8)) (-1783 (($ $) 7)) (-1758 (($ $) 6)))
(((-493) (-140)) (T -493))
-((-1771 (*1 *1 *1) (-4 *1 (-493))) (-1748 (*1 *1 *1) (-4 *1 (-493))) (-1794 (*1 *1 *1) (-4 *1 (-493))) (-1806 (*1 *1 *1) (-4 *1 (-493))) (-1784 (*1 *1 *1) (-4 *1 (-493))) (-1759 (*1 *1 *1) (-4 *1 (-493))))
-(-13 (-10 -8 (-15 -1759 ($ $)) (-15 -1784 ($ $)) (-15 -1806 ($ $)) (-15 -1794 ($ $)) (-15 -1748 ($ $)) (-15 -1771 ($ $))))
-((-2174 (((-418 |#4|) |#4| (-1 (-418 |#2|) |#2|)) 42)))
-(((-494 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2174 ((-418 |#4|) |#4| (-1 (-418 |#2|) |#2|)))) (-363) (-1233 |#1|) (-13 (-363) (-147) (-720 |#1| |#2|)) (-1233 |#3|)) (T -494))
-((-2174 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-418 *6) *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363)) (-4 *7 (-13 (-363) (-147) (-720 *5 *6))) (-5 *2 (-418 *3)) (-5 *1 (-494 *5 *6 *7 *3)) (-4 *3 (-1233 *7)))))
-(-10 -7 (-15 -2174 ((-418 |#4|) |#4| (-1 (-418 |#2|) |#2|))))
-((-1677 (((-112) $ $) NIL)) (-2802 (((-640 $) (-1165 $) (-1169)) NIL) (((-640 $) (-1165 $)) NIL) (((-640 $) (-948 $)) NIL)) (-3070 (($ (-1165 $) (-1169)) NIL) (($ (-1165 $)) NIL) (($ (-948 $)) NIL)) (-3411 (((-112) $) 38)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2980 (((-112) $ $) 63)) (-2059 (((-640 (-609 $)) $) 47)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4132 (($ $ (-294 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-640 (-609 $)) (-640 $)) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-2186 (($ $) NIL)) (-1919 (((-112) $ $) NIL)) (-4239 (($) NIL T CONST)) (-4144 (((-640 $) (-1165 $) (-1169)) NIL) (((-640 $) (-1165 $)) NIL) (((-640 $) (-948 $)) NIL)) (-3457 (($ (-1165 $) (-1169)) NIL) (($ (-1165 $)) NIL) (($ (-948 $)) NIL)) (-2131 (((-3 (-609 $) "failed") $) NIL) (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL)) (-2058 (((-609 $) $) NIL) (((-563) $) NIL) (((-407 (-563)) $) 49)) (-3090 (($ $ $) NIL)) (-2950 (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL) (((-2 (|:| -2835 (-684 (-407 (-563)))) (|:| |vec| (-1257 (-407 (-563))))) (-684 $) (-1257 $)) NIL) (((-684 (-407 (-563))) (-684 $)) NIL)) (-2444 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3968 (($ $) NIL) (($ (-640 $)) NIL)) (-3804 (((-640 (-114)) $) NIL)) (-2361 (((-114) (-114)) NIL)) (-3827 (((-112) $) 41)) (-3131 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-2143 (((-1118 (-563) (-609 $)) $) 36)) (-1645 (($ $ (-563)) NIL)) (-3793 (((-1165 $) (-1165 $) (-609 $)) 77) (((-1165 $) (-1165 $) (-640 (-609 $))) 54) (($ $ (-609 $)) 66) (($ $ (-640 (-609 $))) 67)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3180 (((-1165 $) (-609 $)) 64 (|has| $ (-1045)))) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-2240 (($ (-1 $ $) (-609 $)) NIL)) (-2875 (((-3 (-609 $) "failed") $) NIL)) (-3513 (($ (-640 $)) NIL) (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-2127 (((-640 (-609 $)) $) NIL)) (-2227 (($ (-114) $) NIL) (($ (-114) (-640 $)) NIL)) (-2799 (((-112) $ (-114)) NIL) (((-112) $ (-1169)) NIL)) (-2688 (($ $) NIL)) (-4236 (((-767) $) NIL)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ (-640 $)) NIL) (($ $ $) NIL)) (-1372 (((-112) $ $) NIL) (((-112) $ (-1169)) NIL)) (-2174 (((-418 $) $) NIL)) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2359 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-1540 (($ $ (-609 $) $) NIL) (($ $ (-640 (-609 $)) (-640 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-1169) (-1 $ (-640 $))) NIL) (($ $ (-1169) (-1 $ $)) NIL) (($ $ (-640 (-114)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-114) (-1 $ (-640 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-2628 (((-767) $) NIL)) (-2309 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-640 $)) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-3071 (($ $) NIL) (($ $ $) NIL)) (-4202 (($ $ (-767)) NIL) (($ $) 35)) (-2154 (((-1118 (-563) (-609 $)) $) 19)) (-3390 (($ $) NIL (|has| $ (-1045)))) (-2220 (((-379) $) 91) (((-225) $) 99) (((-169 (-379)) $) 107)) (-1693 (((-858) $) NIL) (($ (-609 $)) NIL) (($ (-407 (-563))) NIL) (($ $) NIL) (($ (-563)) NIL) (($ (-1118 (-563) (-609 $))) 20)) (-1675 (((-767)) NIL)) (-3079 (($ $) NIL) (($ (-640 $)) NIL)) (-3734 (((-112) (-114)) 83)) (-2126 (((-112) $ $) NIL)) (-2241 (($) 10 T CONST)) (-2254 (($) 21 T CONST)) (-3209 (($ $ (-767)) NIL) (($ $) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 23)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)) (-1837 (($ $ $) 43)) (-1826 (($ $ $) NIL) (($ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-407 (-563))) NIL) (($ $ (-563)) 45) (($ $ (-767)) NIL) (($ $ (-917)) NIL)) (* (($ (-407 (-563)) $) NIL) (($ $ (-407 (-563))) NIL) (($ $ $) 26) (($ (-563) $) NIL) (($ (-767) $) NIL) (($ (-917) $) NIL)))
-(((-495) (-13 (-302) (-27) (-1034 (-563)) (-1034 (-407 (-563))) (-636 (-563)) (-1018) (-636 (-407 (-563))) (-147) (-611 (-169 (-379))) (-233) (-10 -8 (-15 -1693 ($ (-1118 (-563) (-609 $)))) (-15 -2143 ((-1118 (-563) (-609 $)) $)) (-15 -2154 ((-1118 (-563) (-609 $)) $)) (-15 -2444 ($ $)) (-15 -2980 ((-112) $ $)) (-15 -3793 ((-1165 $) (-1165 $) (-609 $))) (-15 -3793 ((-1165 $) (-1165 $) (-640 (-609 $)))) (-15 -3793 ($ $ (-609 $))) (-15 -3793 ($ $ (-640 (-609 $))))))) (T -495))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1118 (-563) (-609 (-495)))) (-5 *1 (-495)))) (-2143 (*1 *2 *1) (-12 (-5 *2 (-1118 (-563) (-609 (-495)))) (-5 *1 (-495)))) (-2154 (*1 *2 *1) (-12 (-5 *2 (-1118 (-563) (-609 (-495)))) (-5 *1 (-495)))) (-2444 (*1 *1 *1) (-5 *1 (-495))) (-2980 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-495)))) (-3793 (*1 *2 *2 *3) (-12 (-5 *2 (-1165 (-495))) (-5 *3 (-609 (-495))) (-5 *1 (-495)))) (-3793 (*1 *2 *2 *3) (-12 (-5 *2 (-1165 (-495))) (-5 *3 (-640 (-609 (-495)))) (-5 *1 (-495)))) (-3793 (*1 *1 *1 *2) (-12 (-5 *2 (-609 (-495))) (-5 *1 (-495)))) (-3793 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-609 (-495)))) (-5 *1 (-495)))))
-(-13 (-302) (-27) (-1034 (-563)) (-1034 (-407 (-563))) (-636 (-563)) (-1018) (-636 (-407 (-563))) (-147) (-611 (-169 (-379))) (-233) (-10 -8 (-15 -1693 ($ (-1118 (-563) (-609 $)))) (-15 -2143 ((-1118 (-563) (-609 $)) $)) (-15 -2154 ((-1118 (-563) (-609 $)) $)) (-15 -2444 ($ $)) (-15 -2980 ((-112) $ $)) (-15 -3793 ((-1165 $) (-1165 $) (-609 $))) (-15 -3793 ((-1165 $) (-1165 $) (-640 (-609 $)))) (-15 -3793 ($ $ (-609 $))) (-15 -3793 ($ $ (-640 (-609 $))))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-3523 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-2770 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4408))) (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-846))))) (-1642 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) |#1|) 25 (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#1| $ (-563) |#1|) 22 (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) 21)) (-4368 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1566 (($ (-767) |#1|) 14)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) 12 (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-3164 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-846)))) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3860 (((-563) $) 23 (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) 16 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 17) (($ (-1 |#1| |#1| |#1|) $ $) 19)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3396 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3781 ((|#1| $) NIL (|has| (-563) (-846)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2358 (($ $ |#1|) 10 (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) 13)) (-2309 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) 24) (($ $ (-1224 (-563))) NIL)) (-2963 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3076 (($ $ $ (-563)) NIL (|has| $ (-6 -4408)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) NIL)) (-2853 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3608 (((-767) $) 9 (|has| $ (-6 -4407)))))
+((-1770 (*1 *1 *1) (-4 *1 (-493))) (-1747 (*1 *1 *1) (-4 *1 (-493))) (-1793 (*1 *1 *1) (-4 *1 (-493))) (-1805 (*1 *1 *1) (-4 *1 (-493))) (-1783 (*1 *1 *1) (-4 *1 (-493))) (-1758 (*1 *1 *1) (-4 *1 (-493))))
+(-13 (-10 -8 (-15 -1758 ($ $)) (-15 -1783 ($ $)) (-15 -1805 ($ $)) (-15 -1793 ($ $)) (-15 -1747 ($ $)) (-15 -1770 ($ $))))
+((-2173 (((-418 |#4|) |#4| (-1 (-418 |#2|) |#2|)) 42)))
+(((-494 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2173 ((-418 |#4|) |#4| (-1 (-418 |#2|) |#2|)))) (-363) (-1233 |#1|) (-13 (-363) (-147) (-720 |#1| |#2|)) (-1233 |#3|)) (T -494))
+((-2173 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-418 *6) *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363)) (-4 *7 (-13 (-363) (-147) (-720 *5 *6))) (-5 *2 (-418 *3)) (-5 *1 (-494 *5 *6 *7 *3)) (-4 *3 (-1233 *7)))))
+(-10 -7 (-15 -2173 ((-418 |#4|) |#4| (-1 (-418 |#2|) |#2|))))
+((-1677 (((-112) $ $) NIL)) (-2793 (((-640 $) (-1165 $) (-1169)) NIL) (((-640 $) (-1165 $)) NIL) (((-640 $) (-948 $)) NIL)) (-1559 (($ (-1165 $) (-1169)) NIL) (($ (-1165 $)) NIL) (($ (-948 $)) NIL)) (-3439 (((-112) $) 38)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-1493 (((-112) $ $) 62)) (-2058 (((-640 (-609 $)) $) 46)) (-3905 (((-3 $ "failed") $ $) NIL)) (-4135 (($ $ (-294 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-640 (-609 $)) (-640 $)) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2185 (($ $) NIL)) (-2003 (((-112) $ $) NIL)) (-2569 (($) NIL T CONST)) (-4249 (((-640 $) (-1165 $) (-1169)) NIL) (((-640 $) (-1165 $)) NIL) (((-640 $) (-948 $)) NIL)) (-3377 (($ (-1165 $) (-1169)) NIL) (($ (-1165 $)) NIL) (($ (-948 $)) NIL)) (-2130 (((-3 (-609 $) "failed") $) NIL) (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL)) (-2057 (((-609 $) $) NIL) (((-563) $) NIL) (((-407 (-563)) $) 48)) (-3094 (($ $ $) NIL)) (-1476 (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL) (((-2 (|:| -1957 (-684 (-407 (-563)))) (|:| |vec| (-1257 (-407 (-563))))) (-684 $) (-1257 $)) NIL) (((-684 (-407 (-563))) (-684 $)) NIL)) (-2444 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-3228 (($ $) NIL) (($ (-640 $)) NIL)) (-2739 (((-640 (-114)) $) NIL)) (-2559 (((-114) (-114)) NIL)) (-3401 (((-112) $) 40)) (-2959 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-2143 (((-1118 (-563) (-609 $)) $) 36)) (-2172 (($ $ (-563)) NIL)) (-3975 (((-1165 $) (-1165 $) (-609 $)) 76) (((-1165 $) (-1165 $) (-640 (-609 $))) 53) (($ $ (-609 $)) 65) (($ $ (-640 (-609 $))) 66)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2716 (((-1165 $) (-609 $)) 63 (|has| $ (-1045)))) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-2238 (($ (-1 $ $) (-609 $)) NIL)) (-2751 (((-3 (-609 $) "failed") $) NIL)) (-3517 (($ (-640 $)) NIL) (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-2126 (((-640 (-609 $)) $) NIL)) (-2227 (($ (-114) $) NIL) (($ (-114) (-640 $)) NIL)) (-2602 (((-112) $ (-114)) NIL) (((-112) $ (-1169)) NIL)) (-2687 (($ $) NIL)) (-4238 (((-767) $) NIL)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ (-640 $)) NIL) (($ $ $) NIL)) (-2726 (((-112) $ $) NIL) (((-112) $ (-1169)) NIL)) (-2173 (((-418 $) $) NIL)) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2969 (((-112) $) NIL (|has| $ (-1034 (-563))))) (-1542 (($ $ (-609 $) $) NIL) (($ $ (-640 (-609 $)) (-640 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-1169)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-1169) (-1 $ (-640 $))) NIL) (($ $ (-1169) (-1 $ $)) NIL) (($ $ (-640 (-114)) (-640 (-1 $ $))) NIL) (($ $ (-640 (-114)) (-640 (-1 $ (-640 $)))) NIL) (($ $ (-114) (-1 $ (-640 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-1993 (((-767) $) NIL)) (-2308 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-640 $)) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-2761 (($ $) NIL) (($ $ $) NIL)) (-4203 (($ $ (-767)) NIL) (($ $) 35)) (-2153 (((-1118 (-563) (-609 $)) $) 19)) (-3402 (($ $) NIL (|has| $ (-1045)))) (-2219 (((-379) $) 90) (((-225) $) 98) (((-169 (-379)) $) 106)) (-1692 (((-858) $) NIL) (($ (-609 $)) NIL) (($ (-407 (-563))) NIL) (($ $) NIL) (($ (-563)) NIL) (($ (-1118 (-563) (-609 $))) 20)) (-3914 (((-767)) NIL)) (-3083 (($ $) NIL) (($ (-640 $)) NIL)) (-2512 (((-112) (-114)) 82)) (-3223 (((-112) $ $) NIL)) (-2239 (($) 10 T CONST)) (-2253 (($) 21 T CONST)) (-3213 (($ $ (-767)) NIL) (($ $) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 23)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)) (-1836 (($ $ $) 42)) (-1825 (($ $ $) NIL) (($ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-407 (-563))) NIL) (($ $ (-563)) 44) (($ $ (-767)) NIL) (($ $ (-917)) NIL)) (* (($ (-407 (-563)) $) NIL) (($ $ (-407 (-563))) NIL) (($ $ $) 26) (($ (-563) $) NIL) (($ (-767) $) NIL) (($ (-917) $) NIL)))
+(((-495) (-13 (-302) (-27) (-1034 (-563)) (-1034 (-407 (-563))) (-636 (-563)) (-1018) (-636 (-407 (-563))) (-147) (-611 (-169 (-379))) (-233) (-10 -8 (-15 -1692 ($ (-1118 (-563) (-609 $)))) (-15 -2143 ((-1118 (-563) (-609 $)) $)) (-15 -2153 ((-1118 (-563) (-609 $)) $)) (-15 -2444 ($ $)) (-15 -1493 ((-112) $ $)) (-15 -3975 ((-1165 $) (-1165 $) (-609 $))) (-15 -3975 ((-1165 $) (-1165 $) (-640 (-609 $)))) (-15 -3975 ($ $ (-609 $))) (-15 -3975 ($ $ (-640 (-609 $))))))) (T -495))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1118 (-563) (-609 (-495)))) (-5 *1 (-495)))) (-2143 (*1 *2 *1) (-12 (-5 *2 (-1118 (-563) (-609 (-495)))) (-5 *1 (-495)))) (-2153 (*1 *2 *1) (-12 (-5 *2 (-1118 (-563) (-609 (-495)))) (-5 *1 (-495)))) (-2444 (*1 *1 *1) (-5 *1 (-495))) (-1493 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-495)))) (-3975 (*1 *2 *2 *3) (-12 (-5 *2 (-1165 (-495))) (-5 *3 (-609 (-495))) (-5 *1 (-495)))) (-3975 (*1 *2 *2 *3) (-12 (-5 *2 (-1165 (-495))) (-5 *3 (-640 (-609 (-495)))) (-5 *1 (-495)))) (-3975 (*1 *1 *1 *2) (-12 (-5 *2 (-609 (-495))) (-5 *1 (-495)))) (-3975 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-609 (-495)))) (-5 *1 (-495)))))
+(-13 (-302) (-27) (-1034 (-563)) (-1034 (-407 (-563))) (-636 (-563)) (-1018) (-636 (-407 (-563))) (-147) (-611 (-169 (-379))) (-233) (-10 -8 (-15 -1692 ($ (-1118 (-563) (-609 $)))) (-15 -2143 ((-1118 (-563) (-609 $)) $)) (-15 -2153 ((-1118 (-563) (-609 $)) $)) (-15 -2444 ($ $)) (-15 -1493 ((-112) $ $)) (-15 -3975 ((-1165 $) (-1165 $) (-609 $))) (-15 -3975 ((-1165 $) (-1165 $) (-640 (-609 $)))) (-15 -3975 ($ $ (-609 $))) (-15 -3975 ($ $ (-640 (-609 $))))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4073 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-4052 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4409))) (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| |#1| (-846))))) (-1640 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) |#1|) 25 (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#1| $ (-563) |#1|) 22 (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) 21)) (-4369 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-1565 (($ (-767) |#1|) 14)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) 12 (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-4300 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-846)))) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2251 (((-563) $) 23 (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) 16 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 17) (($ (-1 |#1| |#1| |#1|) $ $) 19)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3399 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3782 ((|#1| $) NIL (|has| (-563) (-846)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2221 (($ $ |#1|) 10 (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) 13)) (-2308 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) 24) (($ $ (-1224 (-563))) NIL)) (-2967 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4062 (($ $ $ (-563)) NIL (|has| $ (-6 -4409)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) NIL)) (-2857 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3610 (((-767) $) 9 (|has| $ (-6 -4408)))))
(((-496 |#1| |#2|) (-19 |#1|) (-1208) (-563)) (T -496))
NIL
(-19 |#1|)
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) (-563) |#1|) NIL)) (-4327 (($ $ (-563) (-496 |#1| |#3|)) NIL)) (-4175 (($ $ (-563) (-496 |#1| |#2|)) NIL)) (-4239 (($) NIL T CONST)) (-2368 (((-496 |#1| |#3|) $ (-563)) NIL)) (-4355 ((|#1| $ (-563) (-563) |#1|) NIL)) (-4293 ((|#1| $ (-563) (-563)) NIL)) (-2659 (((-640 |#1|) $) NIL)) (-2381 (((-767) $) NIL)) (-1566 (($ (-767) (-767) |#1|) NIL)) (-2393 (((-767) $) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2013 (((-563) $) NIL)) (-3650 (((-563) $) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1859 (((-563) $) NIL)) (-2207 (((-563) $) NIL)) (-4345 (($ (-1 |#1| |#1|) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2358 (($ $ |#1|) NIL)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#1| $ (-563) (-563)) NIL) ((|#1| $ (-563) (-563) |#1|) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) NIL)) (-1912 (((-496 |#1| |#2|) $ (-563)) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) (-563) |#1|) NIL)) (-1589 (($ $ (-563) (-496 |#1| |#3|)) NIL)) (-1572 (($ $ (-563) (-496 |#1| |#2|)) NIL)) (-2569 (($) NIL T CONST)) (-1960 (((-496 |#1| |#3|) $ (-563)) NIL)) (-4356 ((|#1| $ (-563) (-563) |#1|) NIL)) (-4293 ((|#1| $ (-563) (-563)) NIL)) (-2658 (((-640 |#1|) $) NIL)) (-2380 (((-767) $) NIL)) (-1565 (($ (-767) (-767) |#1|) NIL)) (-2391 (((-767) $) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-1995 (((-563) $) NIL)) (-1979 (((-563) $) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1986 (((-563) $) NIL)) (-1969 (((-563) $) NIL)) (-4347 (($ (-1 |#1| |#1|) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2221 (($ $ |#1|) NIL)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#1| $ (-563) (-563)) NIL) ((|#1| $ (-563) (-563) |#1|) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) NIL)) (-1950 (((-496 |#1| |#2|) $ (-563)) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
(((-497 |#1| |#2| |#3|) (-57 |#1| (-496 |#1| |#3|) (-496 |#1| |#2|)) (-1208) (-563) (-563)) (T -497))
NIL
(-57 |#1| (-496 |#1| |#3|) (-496 |#1| |#2|))
-((-2979 (((-640 (-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) (-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) (-767) (-767)) 27)) (-2912 (((-640 (-1165 |#1|)) |#1| (-767) (-767) (-767)) 34)) (-3046 (((-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) (-640 |#3|) (-640 (-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) (-767)) 84)))
-(((-498 |#1| |#2| |#3|) (-10 -7 (-15 -2912 ((-640 (-1165 |#1|)) |#1| (-767) (-767) (-767))) (-15 -2979 ((-640 (-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) (-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) (-767) (-767))) (-15 -3046 ((-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) (-640 |#3|) (-640 (-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) (-767)))) (-349) (-1233 |#1|) (-1233 |#2|)) (T -498))
-((-3046 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 (-2 (|:| -4315 (-684 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-684 *7))))) (-5 *5 (-767)) (-4 *8 (-1233 *7)) (-4 *7 (-1233 *6)) (-4 *6 (-349)) (-5 *2 (-2 (|:| -4315 (-684 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-684 *7)))) (-5 *1 (-498 *6 *7 *8)))) (-2979 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-767)) (-4 *5 (-349)) (-4 *6 (-1233 *5)) (-5 *2 (-640 (-2 (|:| -4315 (-684 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-684 *6))))) (-5 *1 (-498 *5 *6 *7)) (-5 *3 (-2 (|:| -4315 (-684 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-684 *6)))) (-4 *7 (-1233 *6)))) (-2912 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-767)) (-4 *3 (-349)) (-4 *5 (-1233 *3)) (-5 *2 (-640 (-1165 *3))) (-5 *1 (-498 *3 *5 *6)) (-4 *6 (-1233 *5)))))
-(-10 -7 (-15 -2912 ((-640 (-1165 |#1|)) |#1| (-767) (-767) (-767))) (-15 -2979 ((-640 (-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) (-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) (-767) (-767))) (-15 -3046 ((-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) (-640 |#3|) (-640 (-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) (-767))))
-((-3626 (((-2 (|:| -4315 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) (-2 (|:| -4315 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) (-2 (|:| -4315 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|)))) 62)) (-2449 ((|#1| (-684 |#1|) |#1| (-767)) 25)) (-2490 (((-767) (-767) (-767)) 30)) (-1783 (((-684 |#1|) (-684 |#1|) (-684 |#1|)) 42)) (-2913 (((-684 |#1|) (-684 |#1|) (-684 |#1|) |#1|) 50) (((-684 |#1|) (-684 |#1|) (-684 |#1|)) 47)) (-2061 ((|#1| (-684 |#1|) (-684 |#1|) |#1| (-563)) 29)) (-3327 ((|#1| (-684 |#1|)) 18)))
-(((-499 |#1| |#2| |#3|) (-10 -7 (-15 -3327 (|#1| (-684 |#1|))) (-15 -2449 (|#1| (-684 |#1|) |#1| (-767))) (-15 -2061 (|#1| (-684 |#1|) (-684 |#1|) |#1| (-563))) (-15 -2490 ((-767) (-767) (-767))) (-15 -2913 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -2913 ((-684 |#1|) (-684 |#1|) (-684 |#1|) |#1|)) (-15 -1783 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -3626 ((-2 (|:| -4315 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) (-2 (|:| -4315 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) (-2 (|:| -4315 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|)))))) (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $)))) (-1233 |#1|) (-409 |#1| |#2|)) (T -499))
-((-3626 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -4315 (-684 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-684 *3)))) (-4 *3 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $))))) (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))) (-1783 (*1 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $))))) (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))) (-2913 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-684 *3)) (-4 *3 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $))))) (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))) (-2913 (*1 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $))))) (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))) (-2490 (*1 *2 *2 *2) (-12 (-5 *2 (-767)) (-4 *3 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $))))) (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))) (-2061 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-684 *2)) (-5 *4 (-563)) (-4 *2 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $))))) (-4 *5 (-1233 *2)) (-5 *1 (-499 *2 *5 *6)) (-4 *6 (-409 *2 *5)))) (-2449 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-684 *2)) (-5 *4 (-767)) (-4 *2 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $))))) (-4 *5 (-1233 *2)) (-5 *1 (-499 *2 *5 *6)) (-4 *6 (-409 *2 *5)))) (-3327 (*1 *2 *3) (-12 (-5 *3 (-684 *2)) (-4 *4 (-1233 *2)) (-4 *2 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $))))) (-5 *1 (-499 *2 *4 *5)) (-4 *5 (-409 *2 *4)))))
-(-10 -7 (-15 -3327 (|#1| (-684 |#1|))) (-15 -2449 (|#1| (-684 |#1|) |#1| (-767))) (-15 -2061 (|#1| (-684 |#1|) (-684 |#1|) |#1| (-563))) (-15 -2490 ((-767) (-767) (-767))) (-15 -2913 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -2913 ((-684 |#1|) (-684 |#1|) (-684 |#1|) |#1|)) (-15 -1783 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -3626 ((-2 (|:| -4315 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) (-2 (|:| -4315 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) (-2 (|:| -4315 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))))))
-((-1677 (((-112) $ $) NIL)) (-3380 (($ $) NIL)) (-2212 (($ $ $) 35)) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-3523 (((-112) $) NIL (|has| (-112) (-846))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-2770 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-112) (-846)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4408)))) (-1642 (($ $) NIL (|has| (-112) (-846))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-1849 (((-112) $ (-1224 (-563)) (-112)) NIL (|has| $ (-6 -4408))) (((-112) $ (-563) (-112)) 36 (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-112) (-1093))))) (-1459 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4407))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-112) (-1093))))) (-2444 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4407)) (|has| (-112) (-1093))))) (-4355 (((-112) $ (-563) (-112)) NIL (|has| $ (-6 -4408)))) (-4293 (((-112) $ (-563)) NIL)) (-4368 (((-563) (-112) $ (-563)) NIL (|has| (-112) (-1093))) (((-563) (-112) $) NIL (|has| (-112) (-1093))) (((-563) (-1 (-112) (-112)) $) NIL)) (-2659 (((-640 (-112)) $) NIL (|has| $ (-6 -4407)))) (-2202 (($ $ $) 33)) (-2176 (($ $) NIL)) (-1546 (($ $ $) NIL)) (-1566 (($ (-767) (-112)) 23)) (-3572 (($ $ $) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) 8 (|has| (-563) (-846)))) (-3084 (($ $ $) NIL)) (-3164 (($ $ $) NIL (|has| (-112) (-846))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-2259 (((-640 (-112)) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-112) (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL)) (-4345 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-112) (-112) (-112)) $ $) 30) (($ (-1 (-112) (-112)) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-3396 (($ $ $ (-563)) NIL) (($ (-112) $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL)) (-3781 (((-112) $) NIL (|has| (-563) (-846)))) (-4203 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-2358 (($ $ (-112)) NIL (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-112)) (-640 (-112))) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-294 (-112))) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-640 (-294 (-112)))) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-112) (-1093))))) (-2836 (((-640 (-112)) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) 24)) (-2309 (($ $ (-1224 (-563))) NIL) (((-112) $ (-563)) 18) (((-112) $ (-563) (-112)) NIL)) (-2963 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-1709 (((-767) (-112) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-112) (-1093)))) (((-767) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4407)))) (-3076 (($ $ $ (-563)) NIL (|has| $ (-6 -4408)))) (-1872 (($ $) 25)) (-2220 (((-536) $) NIL (|has| (-112) (-611 (-536))))) (-1707 (($ (-640 (-112))) NIL)) (-2853 (($ (-640 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-1693 (((-858) $) 22)) (-4383 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4407)))) (-2190 (($ $ $) 31)) (-1534 (($ $ $) NIL)) (-3242 (($ $ $) 39)) (-3252 (($ $) 37)) (-3231 (($ $ $) 38)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 26)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 27)) (-1521 (($ $ $) NIL)) (-3608 (((-767) $) 10 (|has| $ (-6 -4407)))))
-(((-500 |#1|) (-13 (-123) (-10 -8 (-15 -3252 ($ $)) (-15 -3242 ($ $ $)) (-15 -3231 ($ $ $)))) (-563)) (T -500))
-((-3252 (*1 *1 *1) (-12 (-5 *1 (-500 *2)) (-14 *2 (-563)))) (-3242 (*1 *1 *1 *1) (-12 (-5 *1 (-500 *2)) (-14 *2 (-563)))) (-3231 (*1 *1 *1 *1) (-12 (-5 *1 (-500 *2)) (-14 *2 (-563)))))
-(-13 (-123) (-10 -8 (-15 -3252 ($ $)) (-15 -3242 ($ $ $)) (-15 -3231 ($ $ $))))
-((-3277 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1165 |#4|)) 34)) (-3328 (((-1165 |#4|) (-1 |#4| |#1|) |#2|) 30) ((|#2| (-1 |#1| |#4|) (-1165 |#4|)) 21)) (-1906 (((-3 (-684 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-684 (-1165 |#4|))) 45)) (-1617 (((-1165 (-1165 |#4|)) (-1 |#4| |#1|) |#3|) 54)))
-(((-501 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3328 (|#2| (-1 |#1| |#4|) (-1165 |#4|))) (-15 -3328 ((-1165 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -3277 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1165 |#4|))) (-15 -1906 ((-3 (-684 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-684 (-1165 |#4|)))) (-15 -1617 ((-1165 (-1165 |#4|)) (-1 |#4| |#1|) |#3|))) (-1045) (-1233 |#1|) (-1233 |#2|) (-1045)) (T -501))
-((-1617 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1045)) (-4 *7 (-1045)) (-4 *6 (-1233 *5)) (-5 *2 (-1165 (-1165 *7))) (-5 *1 (-501 *5 *6 *4 *7)) (-4 *4 (-1233 *6)))) (-1906 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8)) (-5 *4 (-684 (-1165 *8))) (-4 *5 (-1045)) (-4 *8 (-1045)) (-4 *6 (-1233 *5)) (-5 *2 (-684 *6)) (-5 *1 (-501 *5 *6 *7 *8)) (-4 *7 (-1233 *6)))) (-3277 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1165 *7)) (-4 *5 (-1045)) (-4 *7 (-1045)) (-4 *2 (-1233 *5)) (-5 *1 (-501 *5 *2 *6 *7)) (-4 *6 (-1233 *2)))) (-3328 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1045)) (-4 *7 (-1045)) (-4 *4 (-1233 *5)) (-5 *2 (-1165 *7)) (-5 *1 (-501 *5 *4 *6 *7)) (-4 *6 (-1233 *4)))) (-3328 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1165 *7)) (-4 *5 (-1045)) (-4 *7 (-1045)) (-4 *2 (-1233 *5)) (-5 *1 (-501 *5 *2 *6 *7)) (-4 *6 (-1233 *2)))))
-(-10 -7 (-15 -3328 (|#2| (-1 |#1| |#4|) (-1165 |#4|))) (-15 -3328 ((-1165 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -3277 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1165 |#4|))) (-15 -1906 ((-3 (-684 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-684 (-1165 |#4|)))) (-15 -1617 ((-1165 (-1165 |#4|)) (-1 |#4| |#1|) |#3|)))
-((-1677 (((-112) $ $) NIL)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2807 (((-1262) $) 19)) (-2309 (((-1151) $ (-1169)) 23)) (-1463 (((-1262) $) 15)) (-1693 (((-858) $) 21) (($ (-1151)) 20)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 9)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 8)))
-(((-502) (-13 (-846) (-10 -8 (-15 -2309 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $)) (-15 -2807 ((-1262) $)) (-15 -1693 ($ (-1151)))))) (T -502))
-((-2309 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1151)) (-5 *1 (-502)))) (-1463 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-502)))) (-2807 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-502)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-502)))))
-(-13 (-846) (-10 -8 (-15 -2309 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $)) (-15 -2807 ((-1262) $)) (-15 -1693 ($ (-1151)))))
-((-3266 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-1417 ((|#1| |#4|) 10)) (-2119 ((|#3| |#4|) 17)))
-(((-503 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1417 (|#1| |#4|)) (-15 -2119 (|#3| |#4|)) (-15 -3266 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-555) (-988 |#1|) (-373 |#1|) (-373 |#2|)) (T -503))
-((-3266 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-988 *4)) (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4))) (-5 *1 (-503 *4 *5 *6 *3)) (-4 *6 (-373 *4)) (-4 *3 (-373 *5)))) (-2119 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-988 *4)) (-4 *2 (-373 *4)) (-5 *1 (-503 *4 *5 *2 *3)) (-4 *3 (-373 *5)))) (-1417 (*1 *2 *3) (-12 (-4 *4 (-988 *2)) (-4 *2 (-555)) (-5 *1 (-503 *2 *4 *5 *3)) (-4 *5 (-373 *2)) (-4 *3 (-373 *4)))))
-(-10 -7 (-15 -1417 (|#1| |#4|)) (-15 -2119 (|#3| |#4|)) (-15 -3266 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
-((-1677 (((-112) $ $) NIL)) (-1888 (((-112) $ (-640 |#3|)) 103) (((-112) $) 104)) (-3411 (((-112) $) 147)) (-2037 (($ $ |#4|) 95) (($ $ |#4| (-640 |#3|)) 99)) (-1529 (((-1158 (-640 (-948 |#1|)) (-640 (-294 (-948 |#1|)))) (-640 |#4|)) 140 (|has| |#3| (-611 (-1169))))) (-3490 (($ $ $) 89) (($ $ |#4|) 87)) (-3827 (((-112) $) 146)) (-4017 (($ $) 107)) (-3573 (((-1151) $) NIL)) (-2550 (($ $ $) 81) (($ (-640 $)) 83)) (-2272 (((-112) |#4| $) 106)) (-3198 (((-112) $ $) 70)) (-1776 (($ (-640 |#4|)) 88)) (-1694 (((-1113) $) NIL)) (-2168 (($ (-640 |#4|)) 144)) (-4247 (((-112) $) 145)) (-4059 (($ $) 72)) (-2274 (((-640 |#4|) $) 56)) (-1448 (((-2 (|:| |mval| (-684 |#1|)) (|:| |invmval| (-684 |#1|)) (|:| |genIdeal| $)) $ (-640 |#3|)) NIL)) (-1897 (((-112) |#4| $) 75)) (-3533 (((-563) $ (-640 |#3|)) 108) (((-563) $) 109)) (-1693 (((-858) $) 143) (($ (-640 |#4|)) 84)) (-3065 (($ (-2 (|:| |mval| (-684 |#1|)) (|:| |invmval| (-684 |#1|)) (|:| |genIdeal| $))) NIL)) (-1718 (((-112) $ $) 71)) (-1814 (($ $ $) 91)) (** (($ $ (-767)) 94)) (* (($ $ $) 93)))
-(((-504 |#1| |#2| |#3| |#4|) (-13 (-1093) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-767))) (-15 -1814 ($ $ $)) (-15 -3827 ((-112) $)) (-15 -3411 ((-112) $)) (-15 -1897 ((-112) |#4| $)) (-15 -3198 ((-112) $ $)) (-15 -2272 ((-112) |#4| $)) (-15 -1888 ((-112) $ (-640 |#3|))) (-15 -1888 ((-112) $)) (-15 -2550 ($ $ $)) (-15 -2550 ($ (-640 $))) (-15 -3490 ($ $ $)) (-15 -3490 ($ $ |#4|)) (-15 -4059 ($ $)) (-15 -1448 ((-2 (|:| |mval| (-684 |#1|)) (|:| |invmval| (-684 |#1|)) (|:| |genIdeal| $)) $ (-640 |#3|))) (-15 -3065 ($ (-2 (|:| |mval| (-684 |#1|)) (|:| |invmval| (-684 |#1|)) (|:| |genIdeal| $)))) (-15 -3533 ((-563) $ (-640 |#3|))) (-15 -3533 ((-563) $)) (-15 -4017 ($ $)) (-15 -1776 ($ (-640 |#4|))) (-15 -2168 ($ (-640 |#4|))) (-15 -4247 ((-112) $)) (-15 -2274 ((-640 |#4|) $)) (-15 -1693 ($ (-640 |#4|))) (-15 -2037 ($ $ |#4|)) (-15 -2037 ($ $ |#4| (-640 |#3|))) (IF (|has| |#3| (-611 (-1169))) (-15 -1529 ((-1158 (-640 (-948 |#1|)) (-640 (-294 (-948 |#1|)))) (-640 |#4|))) |%noBranch|))) (-363) (-789) (-846) (-945 |#1| |#2| |#3|)) (T -504))
-((* (*1 *1 *1 *1) (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846)) (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-1814 (*1 *1 *1 *1) (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846)) (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))) (-3827 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-3411 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-1897 (*1 *2 *3 *1) (-12 (-4 *4 (-363)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-504 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))) (-3198 (*1 *2 *1 *1) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-2272 (*1 *2 *3 *1) (-12 (-4 *4 (-363)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-504 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))) (-1888 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *6)) (-4 *6 (-846)) (-4 *4 (-363)) (-4 *5 (-789)) (-5 *2 (-112)) (-5 *1 (-504 *4 *5 *6 *7)) (-4 *7 (-945 *4 *5 *6)))) (-1888 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-2550 (*1 *1 *1 *1) (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846)) (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))) (-2550 (*1 *1 *2) (-12 (-5 *2 (-640 (-504 *3 *4 *5 *6))) (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-3490 (*1 *1 *1 *1) (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846)) (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))) (-3490 (*1 *1 *1 *2) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *2)) (-4 *2 (-945 *3 *4 *5)))) (-4059 (*1 *1 *1) (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846)) (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))) (-1448 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *6)) (-4 *6 (-846)) (-4 *4 (-363)) (-4 *5 (-789)) (-5 *2 (-2 (|:| |mval| (-684 *4)) (|:| |invmval| (-684 *4)) (|:| |genIdeal| (-504 *4 *5 *6 *7)))) (-5 *1 (-504 *4 *5 *6 *7)) (-4 *7 (-945 *4 *5 *6)))) (-3065 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |mval| (-684 *3)) (|:| |invmval| (-684 *3)) (|:| |genIdeal| (-504 *3 *4 *5 *6)))) (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-3533 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *6)) (-4 *6 (-846)) (-4 *4 (-363)) (-4 *5 (-789)) (-5 *2 (-563)) (-5 *1 (-504 *4 *5 *6 *7)) (-4 *7 (-945 *4 *5 *6)))) (-3533 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-563)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-4017 (*1 *1 *1) (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846)) (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))) (-1776 (*1 *1 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)))) (-2168 (*1 *1 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)))) (-4247 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-2274 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *6)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)))) (-2037 (*1 *1 *1 *2) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *2)) (-4 *2 (-945 *3 *4 *5)))) (-2037 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-640 *6)) (-4 *6 (-846)) (-4 *4 (-363)) (-4 *5 (-789)) (-5 *1 (-504 *4 *5 *6 *2)) (-4 *2 (-945 *4 *5 *6)))) (-1529 (*1 *2 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *5 *6)) (-4 *6 (-611 (-1169))) (-4 *4 (-363)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1158 (-640 (-948 *4)) (-640 (-294 (-948 *4))))) (-5 *1 (-504 *4 *5 *6 *7)))))
-(-13 (-1093) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-767))) (-15 -1814 ($ $ $)) (-15 -3827 ((-112) $)) (-15 -3411 ((-112) $)) (-15 -1897 ((-112) |#4| $)) (-15 -3198 ((-112) $ $)) (-15 -2272 ((-112) |#4| $)) (-15 -1888 ((-112) $ (-640 |#3|))) (-15 -1888 ((-112) $)) (-15 -2550 ($ $ $)) (-15 -2550 ($ (-640 $))) (-15 -3490 ($ $ $)) (-15 -3490 ($ $ |#4|)) (-15 -4059 ($ $)) (-15 -1448 ((-2 (|:| |mval| (-684 |#1|)) (|:| |invmval| (-684 |#1|)) (|:| |genIdeal| $)) $ (-640 |#3|))) (-15 -3065 ($ (-2 (|:| |mval| (-684 |#1|)) (|:| |invmval| (-684 |#1|)) (|:| |genIdeal| $)))) (-15 -3533 ((-563) $ (-640 |#3|))) (-15 -3533 ((-563) $)) (-15 -4017 ($ $)) (-15 -1776 ($ (-640 |#4|))) (-15 -2168 ($ (-640 |#4|))) (-15 -4247 ((-112) $)) (-15 -2274 ((-640 |#4|) $)) (-15 -1693 ($ (-640 |#4|))) (-15 -2037 ($ $ |#4|)) (-15 -2037 ($ $ |#4| (-640 |#3|))) (IF (|has| |#3| (-611 (-1169))) (-15 -1529 ((-1158 (-640 (-948 |#1|)) (-640 (-294 (-948 |#1|)))) (-640 |#4|))) |%noBranch|)))
-((-1968 (((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) 148)) (-3349 (((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) 149)) (-3819 (((-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) 107)) (-2468 (((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) NIL)) (-2699 (((-640 (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) 151)) (-3161 (((-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-640 (-860 |#1|))) 163)))
-(((-505 |#1| |#2|) (-10 -7 (-15 -1968 ((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -3349 ((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -2468 ((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -3819 ((-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -2699 ((-640 (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -3161 ((-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-640 (-860 |#1|))))) (-640 (-1169)) (-767)) (T -505))
-((-3161 (*1 *2 *2 *3) (-12 (-5 *2 (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4) (-247 *4 (-407 (-563))))) (-5 *3 (-640 (-860 *4))) (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *1 (-505 *4 *5)))) (-2699 (*1 *2 *3) (-12 (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *2 (-640 (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4) (-247 *4 (-407 (-563)))))) (-5 *1 (-505 *4 *5)) (-5 *3 (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4) (-247 *4 (-407 (-563))))))) (-3819 (*1 *2 *2) (-12 (-5 *2 (-504 (-407 (-563)) (-240 *4 (-767)) (-860 *3) (-247 *3 (-407 (-563))))) (-14 *3 (-640 (-1169))) (-14 *4 (-767)) (-5 *1 (-505 *3 *4)))) (-2468 (*1 *2 *3) (-12 (-5 *3 (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4) (-247 *4 (-407 (-563))))) (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *2 (-112)) (-5 *1 (-505 *4 *5)))) (-3349 (*1 *2 *3) (-12 (-5 *3 (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4) (-247 *4 (-407 (-563))))) (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *2 (-112)) (-5 *1 (-505 *4 *5)))) (-1968 (*1 *2 *3) (-12 (-5 *3 (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4) (-247 *4 (-407 (-563))))) (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *2 (-112)) (-5 *1 (-505 *4 *5)))))
-(-10 -7 (-15 -1968 ((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -3349 ((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -2468 ((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -3819 ((-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -2699 ((-640 (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -3161 ((-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-640 (-860 |#1|)))))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 11) (((-1169) $) 9)) (-1718 (((-112) $ $) 7)))
+((-1515 (((-640 (-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) (-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) (-767) (-767)) 27)) (-1504 (((-640 (-1165 |#1|)) |#1| (-767) (-767) (-767)) 34)) (-3417 (((-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) (-640 |#3|) (-640 (-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) (-767)) 84)))
+(((-498 |#1| |#2| |#3|) (-10 -7 (-15 -1504 ((-640 (-1165 |#1|)) |#1| (-767) (-767) (-767))) (-15 -1515 ((-640 (-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) (-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) (-767) (-767))) (-15 -3417 ((-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) (-640 |#3|) (-640 (-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) (-767)))) (-349) (-1233 |#1|) (-1233 |#2|)) (T -498))
+((-3417 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 (-2 (|:| -4013 (-684 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-684 *7))))) (-5 *5 (-767)) (-4 *8 (-1233 *7)) (-4 *7 (-1233 *6)) (-4 *6 (-349)) (-5 *2 (-2 (|:| -4013 (-684 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-684 *7)))) (-5 *1 (-498 *6 *7 *8)))) (-1515 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-767)) (-4 *5 (-349)) (-4 *6 (-1233 *5)) (-5 *2 (-640 (-2 (|:| -4013 (-684 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-684 *6))))) (-5 *1 (-498 *5 *6 *7)) (-5 *3 (-2 (|:| -4013 (-684 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-684 *6)))) (-4 *7 (-1233 *6)))) (-1504 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-767)) (-4 *3 (-349)) (-4 *5 (-1233 *3)) (-5 *2 (-640 (-1165 *3))) (-5 *1 (-498 *3 *5 *6)) (-4 *6 (-1233 *5)))))
+(-10 -7 (-15 -1504 ((-640 (-1165 |#1|)) |#1| (-767) (-767) (-767))) (-15 -1515 ((-640 (-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) (-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) (-767) (-767))) (-15 -3417 ((-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) (-640 |#3|) (-640 (-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) (-767))))
+((-1592 (((-2 (|:| -4013 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) (-2 (|:| -4013 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) (-2 (|:| -4013 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|)))) 62)) (-1529 ((|#1| (-684 |#1|) |#1| (-767)) 24)) (-1553 (((-767) (-767) (-767)) 30)) (-1579 (((-684 |#1|) (-684 |#1|) (-684 |#1|)) 42)) (-1567 (((-684 |#1|) (-684 |#1|) (-684 |#1|) |#1|) 50) (((-684 |#1|) (-684 |#1|) (-684 |#1|)) 47)) (-1541 ((|#1| (-684 |#1|) (-684 |#1|) |#1| (-563)) 28)) (-2183 ((|#1| (-684 |#1|)) 18)))
+(((-499 |#1| |#2| |#3|) (-10 -7 (-15 -2183 (|#1| (-684 |#1|))) (-15 -1529 (|#1| (-684 |#1|) |#1| (-767))) (-15 -1541 (|#1| (-684 |#1|) (-684 |#1|) |#1| (-563))) (-15 -1553 ((-767) (-767) (-767))) (-15 -1567 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -1567 ((-684 |#1|) (-684 |#1|) (-684 |#1|) |#1|)) (-15 -1579 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -1592 ((-2 (|:| -4013 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) (-2 (|:| -4013 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) (-2 (|:| -4013 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|)))))) (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $)))) (-1233 |#1|) (-409 |#1| |#2|)) (T -499))
+((-1592 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -4013 (-684 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-684 *3)))) (-4 *3 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $))))) (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))) (-1579 (*1 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $))))) (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))) (-1567 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-684 *3)) (-4 *3 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $))))) (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))) (-1567 (*1 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $))))) (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))) (-1553 (*1 *2 *2 *2) (-12 (-5 *2 (-767)) (-4 *3 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $))))) (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))) (-1541 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-684 *2)) (-5 *4 (-563)) (-4 *2 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $))))) (-4 *5 (-1233 *2)) (-5 *1 (-499 *2 *5 *6)) (-4 *6 (-409 *2 *5)))) (-1529 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-684 *2)) (-5 *4 (-767)) (-4 *2 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $))))) (-4 *5 (-1233 *2)) (-5 *1 (-499 *2 *5 *6)) (-4 *6 (-409 *2 *5)))) (-2183 (*1 *2 *3) (-12 (-5 *3 (-684 *2)) (-4 *4 (-1233 *2)) (-4 *2 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $))))) (-5 *1 (-499 *2 *4 *5)) (-4 *5 (-409 *2 *4)))))
+(-10 -7 (-15 -2183 (|#1| (-684 |#1|))) (-15 -1529 (|#1| (-684 |#1|) |#1| (-767))) (-15 -1541 (|#1| (-684 |#1|) (-684 |#1|) |#1| (-563))) (-15 -1553 ((-767) (-767) (-767))) (-15 -1567 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -1567 ((-684 |#1|) (-684 |#1|) (-684 |#1|) |#1|)) (-15 -1579 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -1592 ((-2 (|:| -4013 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) (-2 (|:| -4013 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))) (-2 (|:| -4013 (-684 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-684 |#1|))))))
+((-1677 (((-112) $ $) NIL)) (-3384 (($ $) NIL)) (-2210 (($ $ $) 35)) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4073 (((-112) $) NIL (|has| (-112) (-846))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-4052 (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| (-112) (-846)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4409)))) (-1640 (($ $) NIL (|has| (-112) (-846))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-1849 (((-112) $ (-1224 (-563)) (-112)) NIL (|has| $ (-6 -4409))) (((-112) $ (-563) (-112)) 36 (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-112) (-1093))))) (-1459 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4408))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-112) (-1093))))) (-2444 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4408)) (|has| (-112) (-1093))))) (-4356 (((-112) $ (-563) (-112)) NIL (|has| $ (-6 -4409)))) (-4293 (((-112) $ (-563)) NIL)) (-4369 (((-563) (-112) $ (-563)) NIL (|has| (-112) (-1093))) (((-563) (-112) $) NIL (|has| (-112) (-1093))) (((-563) (-1 (-112) (-112)) $) NIL)) (-2658 (((-640 (-112)) $) NIL (|has| $ (-6 -4408)))) (-2200 (($ $ $) 33)) (-2174 (($ $) NIL)) (-2292 (($ $ $) NIL)) (-1565 (($ (-767) (-112)) 23)) (-2303 (($ $ $) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) 8 (|has| (-563) (-846)))) (-3088 (($ $ $) NIL)) (-4300 (($ $ $) NIL (|has| (-112) (-846))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-3523 (((-640 (-112)) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-112) (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL)) (-4347 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-112) (-112) (-112)) $ $) 30) (($ (-1 (-112) (-112)) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-3399 (($ $ $ (-563)) NIL) (($ (-112) $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL)) (-3782 (((-112) $) NIL (|has| (-563) (-846)))) (-1971 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-2221 (($ $ (-112)) NIL (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-112)) (-640 (-112))) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-294 (-112))) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093)))) (($ $ (-640 (-294 (-112)))) NIL (-12 (|has| (-112) (-309 (-112))) (|has| (-112) (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-112) (-1093))))) (-2295 (((-640 (-112)) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) 24)) (-2308 (($ $ (-1224 (-563))) NIL) (((-112) $ (-563)) 18) (((-112) $ (-563) (-112)) NIL)) (-2967 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-1708 (((-767) (-112) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-112) (-1093)))) (((-767) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4408)))) (-4062 (($ $ $ (-563)) NIL (|has| $ (-6 -4409)))) (-1870 (($ $) 25)) (-2219 (((-536) $) NIL (|has| (-112) (-611 (-536))))) (-1706 (($ (-640 (-112))) NIL)) (-2857 (($ (-640 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-1692 (((-858) $) 22)) (-1471 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4408)))) (-2188 (($ $ $) 31)) (-1531 (($ $ $) NIL)) (-3246 (($ $ $) 39)) (-3256 (($ $) 37)) (-3235 (($ $ $) 38)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 26)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 27)) (-1517 (($ $ $) NIL)) (-3610 (((-767) $) 10 (|has| $ (-6 -4408)))))
+(((-500 |#1|) (-13 (-123) (-10 -8 (-15 -3256 ($ $)) (-15 -3246 ($ $ $)) (-15 -3235 ($ $ $)))) (-563)) (T -500))
+((-3256 (*1 *1 *1) (-12 (-5 *1 (-500 *2)) (-14 *2 (-563)))) (-3246 (*1 *1 *1 *1) (-12 (-5 *1 (-500 *2)) (-14 *2 (-563)))) (-3235 (*1 *1 *1 *1) (-12 (-5 *1 (-500 *2)) (-14 *2 (-563)))))
+(-13 (-123) (-10 -8 (-15 -3256 ($ $)) (-15 -3246 ($ $ $)) (-15 -3235 ($ $ $))))
+((-1614 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1165 |#4|)) 34)) (-1603 (((-1165 |#4|) (-1 |#4| |#1|) |#2|) 30) ((|#2| (-1 |#1| |#4|) (-1165 |#4|)) 21)) (-1625 (((-3 (-684 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-684 (-1165 |#4|))) 45)) (-1637 (((-1165 (-1165 |#4|)) (-1 |#4| |#1|) |#3|) 54)))
+(((-501 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1603 (|#2| (-1 |#1| |#4|) (-1165 |#4|))) (-15 -1603 ((-1165 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -1614 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1165 |#4|))) (-15 -1625 ((-3 (-684 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-684 (-1165 |#4|)))) (-15 -1637 ((-1165 (-1165 |#4|)) (-1 |#4| |#1|) |#3|))) (-1045) (-1233 |#1|) (-1233 |#2|) (-1045)) (T -501))
+((-1637 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1045)) (-4 *7 (-1045)) (-4 *6 (-1233 *5)) (-5 *2 (-1165 (-1165 *7))) (-5 *1 (-501 *5 *6 *4 *7)) (-4 *4 (-1233 *6)))) (-1625 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8)) (-5 *4 (-684 (-1165 *8))) (-4 *5 (-1045)) (-4 *8 (-1045)) (-4 *6 (-1233 *5)) (-5 *2 (-684 *6)) (-5 *1 (-501 *5 *6 *7 *8)) (-4 *7 (-1233 *6)))) (-1614 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1165 *7)) (-4 *5 (-1045)) (-4 *7 (-1045)) (-4 *2 (-1233 *5)) (-5 *1 (-501 *5 *2 *6 *7)) (-4 *6 (-1233 *2)))) (-1603 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1045)) (-4 *7 (-1045)) (-4 *4 (-1233 *5)) (-5 *2 (-1165 *7)) (-5 *1 (-501 *5 *4 *6 *7)) (-4 *6 (-1233 *4)))) (-1603 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1165 *7)) (-4 *5 (-1045)) (-4 *7 (-1045)) (-4 *2 (-1233 *5)) (-5 *1 (-501 *5 *2 *6 *7)) (-4 *6 (-1233 *2)))))
+(-10 -7 (-15 -1603 (|#2| (-1 |#1| |#4|) (-1165 |#4|))) (-15 -1603 ((-1165 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -1614 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1165 |#4|))) (-15 -1625 ((-3 (-684 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-684 (-1165 |#4|)))) (-15 -1637 ((-1165 (-1165 |#4|)) (-1 |#4| |#1|) |#3|)))
+((-1677 (((-112) $ $) NIL)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1651 (((-1262) $) 19)) (-2308 (((-1151) $ (-1169)) 23)) (-1463 (((-1262) $) 15)) (-1692 (((-858) $) 21) (($ (-1151)) 20)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 9)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 8)))
+(((-502) (-13 (-846) (-10 -8 (-15 -2308 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $)) (-15 -1651 ((-1262) $)) (-15 -1692 ($ (-1151)))))) (T -502))
+((-2308 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1151)) (-5 *1 (-502)))) (-1463 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-502)))) (-1651 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-502)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-502)))))
+(-13 (-846) (-10 -8 (-15 -2308 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $)) (-15 -1651 ((-1262) $)) (-15 -1692 ($ (-1151)))))
+((-2674 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-2655 ((|#1| |#4|) 10)) (-2663 ((|#3| |#4|) 17)))
+(((-503 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2655 (|#1| |#4|)) (-15 -2663 (|#3| |#4|)) (-15 -2674 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-555) (-988 |#1|) (-373 |#1|) (-373 |#2|)) (T -503))
+((-2674 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-988 *4)) (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4))) (-5 *1 (-503 *4 *5 *6 *3)) (-4 *6 (-373 *4)) (-4 *3 (-373 *5)))) (-2663 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-988 *4)) (-4 *2 (-373 *4)) (-5 *1 (-503 *4 *5 *2 *3)) (-4 *3 (-373 *5)))) (-2655 (*1 *2 *3) (-12 (-4 *4 (-988 *2)) (-4 *2 (-555)) (-5 *1 (-503 *2 *4 *5 *3)) (-4 *5 (-373 *2)) (-4 *3 (-373 *4)))))
+(-10 -7 (-15 -2655 (|#1| |#4|)) (-15 -2663 (|#3| |#4|)) (-15 -2674 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
+((-1677 (((-112) $ $) NIL)) (-1778 (((-112) $ (-640 |#3|)) 103) (((-112) $) 104)) (-3439 (((-112) $) 147)) (-1673 (($ $ |#4|) 95) (($ $ |#4| (-640 |#3|)) 99)) (-1662 (((-1158 (-640 (-948 |#1|)) (-640 (-294 (-948 |#1|)))) (-640 |#4|)) 140 (|has| |#3| (-611 (-1169))))) (-1765 (($ $ $) 89) (($ $ |#4|) 87)) (-3401 (((-112) $) 146)) (-1728 (($ $) 107)) (-3854 (((-1151) $) NIL)) (-3834 (($ $ $) 81) (($ (-640 $)) 83)) (-1789 (((-112) |#4| $) 106)) (-1801 (((-112) $ $) 70)) (-1716 (($ (-640 |#4|)) 88)) (-1693 (((-1113) $) NIL)) (-1702 (($ (-640 |#4|)) 144)) (-1687 (((-112) $) 145)) (-2478 (($ $) 72)) (-3154 (((-640 |#4|) $) 56)) (-1753 (((-2 (|:| |mval| (-684 |#1|)) (|:| |invmval| (-684 |#1|)) (|:| |genIdeal| $)) $ (-640 |#3|)) NIL)) (-1811 (((-112) |#4| $) 75)) (-3526 (((-563) $ (-640 |#3|)) 108) (((-563) $) 109)) (-1692 (((-858) $) 143) (($ (-640 |#4|)) 84)) (-1742 (($ (-2 (|:| |mval| (-684 |#1|)) (|:| |invmval| (-684 |#1|)) (|:| |genIdeal| $))) NIL)) (-1718 (((-112) $ $) 71)) (-1813 (($ $ $) 91)) (** (($ $ (-767)) 94)) (* (($ $ $) 93)))
+(((-504 |#1| |#2| |#3| |#4|) (-13 (-1093) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-767))) (-15 -1813 ($ $ $)) (-15 -3401 ((-112) $)) (-15 -3439 ((-112) $)) (-15 -1811 ((-112) |#4| $)) (-15 -1801 ((-112) $ $)) (-15 -1789 ((-112) |#4| $)) (-15 -1778 ((-112) $ (-640 |#3|))) (-15 -1778 ((-112) $)) (-15 -3834 ($ $ $)) (-15 -3834 ($ (-640 $))) (-15 -1765 ($ $ $)) (-15 -1765 ($ $ |#4|)) (-15 -2478 ($ $)) (-15 -1753 ((-2 (|:| |mval| (-684 |#1|)) (|:| |invmval| (-684 |#1|)) (|:| |genIdeal| $)) $ (-640 |#3|))) (-15 -1742 ($ (-2 (|:| |mval| (-684 |#1|)) (|:| |invmval| (-684 |#1|)) (|:| |genIdeal| $)))) (-15 -3526 ((-563) $ (-640 |#3|))) (-15 -3526 ((-563) $)) (-15 -1728 ($ $)) (-15 -1716 ($ (-640 |#4|))) (-15 -1702 ($ (-640 |#4|))) (-15 -1687 ((-112) $)) (-15 -3154 ((-640 |#4|) $)) (-15 -1692 ($ (-640 |#4|))) (-15 -1673 ($ $ |#4|)) (-15 -1673 ($ $ |#4| (-640 |#3|))) (IF (|has| |#3| (-611 (-1169))) (-15 -1662 ((-1158 (-640 (-948 |#1|)) (-640 (-294 (-948 |#1|)))) (-640 |#4|))) |%noBranch|))) (-363) (-789) (-846) (-945 |#1| |#2| |#3|)) (T -504))
+((* (*1 *1 *1 *1) (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846)) (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-1813 (*1 *1 *1 *1) (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846)) (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))) (-3401 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-3439 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-1811 (*1 *2 *3 *1) (-12 (-4 *4 (-363)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-504 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))) (-1801 (*1 *2 *1 *1) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-1789 (*1 *2 *3 *1) (-12 (-4 *4 (-363)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-504 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))) (-1778 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *6)) (-4 *6 (-846)) (-4 *4 (-363)) (-4 *5 (-789)) (-5 *2 (-112)) (-5 *1 (-504 *4 *5 *6 *7)) (-4 *7 (-945 *4 *5 *6)))) (-1778 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-3834 (*1 *1 *1 *1) (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846)) (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))) (-3834 (*1 *1 *2) (-12 (-5 *2 (-640 (-504 *3 *4 *5 *6))) (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-1765 (*1 *1 *1 *1) (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846)) (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))) (-1765 (*1 *1 *1 *2) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *2)) (-4 *2 (-945 *3 *4 *5)))) (-2478 (*1 *1 *1) (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846)) (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))) (-1753 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *6)) (-4 *6 (-846)) (-4 *4 (-363)) (-4 *5 (-789)) (-5 *2 (-2 (|:| |mval| (-684 *4)) (|:| |invmval| (-684 *4)) (|:| |genIdeal| (-504 *4 *5 *6 *7)))) (-5 *1 (-504 *4 *5 *6 *7)) (-4 *7 (-945 *4 *5 *6)))) (-1742 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |mval| (-684 *3)) (|:| |invmval| (-684 *3)) (|:| |genIdeal| (-504 *3 *4 *5 *6)))) (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-3526 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *6)) (-4 *6 (-846)) (-4 *4 (-363)) (-4 *5 (-789)) (-5 *2 (-563)) (-5 *1 (-504 *4 *5 *6 *7)) (-4 *7 (-945 *4 *5 *6)))) (-3526 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-563)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-1728 (*1 *1 *1) (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846)) (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))) (-1716 (*1 *1 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)))) (-1702 (*1 *1 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)))) (-1687 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-3154 (*1 *2 *1) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *6)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)))) (-1673 (*1 *1 *1 *2) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *2)) (-4 *2 (-945 *3 *4 *5)))) (-1673 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-640 *6)) (-4 *6 (-846)) (-4 *4 (-363)) (-4 *5 (-789)) (-5 *1 (-504 *4 *5 *6 *2)) (-4 *2 (-945 *4 *5 *6)))) (-1662 (*1 *2 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *5 *6)) (-4 *6 (-611 (-1169))) (-4 *4 (-363)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1158 (-640 (-948 *4)) (-640 (-294 (-948 *4))))) (-5 *1 (-504 *4 *5 *6 *7)))))
+(-13 (-1093) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-767))) (-15 -1813 ($ $ $)) (-15 -3401 ((-112) $)) (-15 -3439 ((-112) $)) (-15 -1811 ((-112) |#4| $)) (-15 -1801 ((-112) $ $)) (-15 -1789 ((-112) |#4| $)) (-15 -1778 ((-112) $ (-640 |#3|))) (-15 -1778 ((-112) $)) (-15 -3834 ($ $ $)) (-15 -3834 ($ (-640 $))) (-15 -1765 ($ $ $)) (-15 -1765 ($ $ |#4|)) (-15 -2478 ($ $)) (-15 -1753 ((-2 (|:| |mval| (-684 |#1|)) (|:| |invmval| (-684 |#1|)) (|:| |genIdeal| $)) $ (-640 |#3|))) (-15 -1742 ($ (-2 (|:| |mval| (-684 |#1|)) (|:| |invmval| (-684 |#1|)) (|:| |genIdeal| $)))) (-15 -3526 ((-563) $ (-640 |#3|))) (-15 -3526 ((-563) $)) (-15 -1728 ($ $)) (-15 -1716 ($ (-640 |#4|))) (-15 -1702 ($ (-640 |#4|))) (-15 -1687 ((-112) $)) (-15 -3154 ((-640 |#4|) $)) (-15 -1692 ($ (-640 |#4|))) (-15 -1673 ($ $ |#4|)) (-15 -1673 ($ $ |#4| (-640 |#3|))) (IF (|has| |#3| (-611 (-1169))) (-15 -1662 ((-1158 (-640 (-948 |#1|)) (-640 (-294 (-948 |#1|)))) (-640 |#4|))) |%noBranch|)))
+((-1823 (((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) 148)) (-1834 (((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) 149)) (-3820 (((-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) 107)) (-2560 (((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) NIL)) (-1845 (((-640 (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) 151)) (-1857 (((-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-640 (-860 |#1|))) 163)))
+(((-505 |#1| |#2|) (-10 -7 (-15 -1823 ((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -1834 ((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -2560 ((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -3820 ((-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -1845 ((-640 (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -1857 ((-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-640 (-860 |#1|))))) (-640 (-1169)) (-767)) (T -505))
+((-1857 (*1 *2 *2 *3) (-12 (-5 *2 (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4) (-247 *4 (-407 (-563))))) (-5 *3 (-640 (-860 *4))) (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *1 (-505 *4 *5)))) (-1845 (*1 *2 *3) (-12 (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *2 (-640 (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4) (-247 *4 (-407 (-563)))))) (-5 *1 (-505 *4 *5)) (-5 *3 (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4) (-247 *4 (-407 (-563))))))) (-3820 (*1 *2 *2) (-12 (-5 *2 (-504 (-407 (-563)) (-240 *4 (-767)) (-860 *3) (-247 *3 (-407 (-563))))) (-14 *3 (-640 (-1169))) (-14 *4 (-767)) (-5 *1 (-505 *3 *4)))) (-2560 (*1 *2 *3) (-12 (-5 *3 (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4) (-247 *4 (-407 (-563))))) (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *2 (-112)) (-5 *1 (-505 *4 *5)))) (-1834 (*1 *2 *3) (-12 (-5 *3 (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4) (-247 *4 (-407 (-563))))) (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *2 (-112)) (-5 *1 (-505 *4 *5)))) (-1823 (*1 *2 *3) (-12 (-5 *3 (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4) (-247 *4 (-407 (-563))))) (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *2 (-112)) (-5 *1 (-505 *4 *5)))))
+(-10 -7 (-15 -1823 ((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -1834 ((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -2560 ((-112) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -3820 ((-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -1845 ((-640 (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563))))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))))) (-15 -1857 ((-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-504 (-407 (-563)) (-240 |#2| (-767)) (-860 |#1|) (-247 |#1| (-407 (-563)))) (-640 (-860 |#1|)))))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 11) (((-1169) $) 9)) (-1718 (((-112) $ $) 7)))
(((-506) (-13 (-1093) (-610 (-1169)))) (T -506))
NIL
(-13 (-1093) (-610 (-1169)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2751 (($ $) NIL)) (-2588 (($ |#1| |#2|) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-3395 ((|#2| $) NIL)) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-2241 (($) 12 T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) 11) (($ $ $) 23)) (-1814 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 18)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2750 (($ $) NIL)) (-2587 (($ |#1| |#2|) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-1867 ((|#2| $) NIL)) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-2239 (($) 12 T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) 11) (($ $ $) 23)) (-1813 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 18)))
(((-507 |#1| |#2|) (-13 (-21) (-509 |#1| |#2|)) (-21) (-846)) (T -507))
NIL
(-13 (-21) (-509 |#1| |#2|))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 12)) (-4239 (($) NIL T CONST)) (-2751 (($ $) 27)) (-2588 (($ |#1| |#2|) 24)) (-2240 (($ (-1 |#1| |#1|) $) 26)) (-3395 ((|#2| $) NIL)) (-2726 ((|#1| $) 28)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-2241 (($) 10 T CONST)) (-1718 (((-112) $ $) NIL)) (-1814 (($ $ $) 17)) (* (($ (-917) $) NIL) (($ (-767) $) 22)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 12)) (-2569 (($) NIL T CONST)) (-2750 (($ $) 27)) (-2587 (($ |#1| |#2|) 24)) (-2238 (($ (-1 |#1| |#1|) $) 26)) (-1867 ((|#2| $) NIL)) (-2725 ((|#1| $) 28)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-2239 (($) 10 T CONST)) (-1718 (((-112) $ $) NIL)) (-1813 (($ $ $) 17)) (* (($ (-917) $) NIL) (($ (-767) $) 22)))
(((-508 |#1| |#2|) (-13 (-23) (-509 |#1| |#2|)) (-23) (-846)) (T -508))
NIL
(-13 (-23) (-509 |#1| |#2|))
-((-1677 (((-112) $ $) 7)) (-2751 (($ $) 13)) (-2588 (($ |#1| |#2|) 16)) (-2240 (($ (-1 |#1| |#1|) $) 17)) (-3395 ((|#2| $) 14)) (-2726 ((|#1| $) 15)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1718 (((-112) $ $) 6)))
+((-1677 (((-112) $ $) 7)) (-2750 (($ $) 13)) (-2587 (($ |#1| |#2|) 16)) (-2238 (($ (-1 |#1| |#1|) $) 17)) (-1867 ((|#2| $) 14)) (-2725 ((|#1| $) 15)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1718 (((-112) $ $) 6)))
(((-509 |#1| |#2|) (-140) (-1093) (-846)) (T -509))
-((-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-509 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-846)))) (-2588 (*1 *1 *2 *3) (-12 (-4 *1 (-509 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-846)))) (-2726 (*1 *2 *1) (-12 (-4 *1 (-509 *2 *3)) (-4 *3 (-846)) (-4 *2 (-1093)))) (-3395 (*1 *2 *1) (-12 (-4 *1 (-509 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-846)))) (-2751 (*1 *1 *1) (-12 (-4 *1 (-509 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-846)))))
-(-13 (-1093) (-10 -8 (-15 -2240 ($ (-1 |t#1| |t#1|) $)) (-15 -2588 ($ |t#1| |t#2|)) (-15 -2726 (|t#1| $)) (-15 -3395 (|t#2| $)) (-15 -2751 ($ $))))
+((-2238 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-509 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-846)))) (-2587 (*1 *1 *2 *3) (-12 (-4 *1 (-509 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-846)))) (-2725 (*1 *2 *1) (-12 (-4 *1 (-509 *2 *3)) (-4 *3 (-846)) (-4 *2 (-1093)))) (-1867 (*1 *2 *1) (-12 (-4 *1 (-509 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-846)))) (-2750 (*1 *1 *1) (-12 (-4 *1 (-509 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-846)))))
+(-13 (-1093) (-10 -8 (-15 -2238 ($ (-1 |t#1| |t#1|) $)) (-15 -2587 ($ |t#1| |t#2|)) (-15 -2725 (|t#1| $)) (-15 -1867 (|t#2| $)) (-15 -2750 ($ $))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4239 (($) NIL T CONST)) (-2751 (($ $) NIL)) (-2588 (($ |#1| |#2|) NIL)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-3395 ((|#2| $) NIL)) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-2241 (($) NIL T CONST)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 13)) (-1814 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2569 (($) NIL T CONST)) (-2750 (($ $) NIL)) (-2587 (($ |#1| |#2|) NIL)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-1867 ((|#2| $) NIL)) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-2239 (($) NIL T CONST)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 13)) (-1813 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL)))
(((-510 |#1| |#2|) (-13 (-788) (-509 |#1| |#2|)) (-788) (-846)) (T -510))
NIL
(-13 (-788) (-509 |#1| |#2|))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1901 (($ $ $) 16)) (-1495 (((-3 $ "failed") $ $) 13)) (-4239 (($) NIL T CONST)) (-2751 (($ $) NIL)) (-2588 (($ |#1| |#2|) NIL)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-3395 ((|#2| $) NIL)) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-2241 (($) NIL T CONST)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)) (-1814 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-4092 (($ $ $) 16)) (-3905 (((-3 $ "failed") $ $) 13)) (-2569 (($) NIL T CONST)) (-2750 (($ $) NIL)) (-2587 (($ |#1| |#2|) NIL)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-1867 ((|#2| $) NIL)) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-2239 (($) NIL T CONST)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)) (-1813 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL)))
(((-511 |#1| |#2|) (-13 (-789) (-509 |#1| |#2|)) (-789) (-846)) (T -511))
NIL
(-13 (-789) (-509 |#1| |#2|))
-((-1677 (((-112) $ $) NIL)) (-2751 (($ $) 24)) (-2588 (($ |#1| |#2|) 21)) (-2240 (($ (-1 |#1| |#1|) $) 23)) (-3395 ((|#2| $) 26)) (-2726 ((|#1| $) 25)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 20)) (-1718 (((-112) $ $) 13)))
+((-1677 (((-112) $ $) NIL)) (-2750 (($ $) 24)) (-2587 (($ |#1| |#2|) 21)) (-2238 (($ (-1 |#1| |#1|) $) 23)) (-1867 ((|#2| $) 26)) (-2725 ((|#1| $) 25)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 20)) (-1718 (((-112) $ $) 13)))
(((-512 |#1| |#2|) (-509 |#1| |#2|) (-1093) (-846)) (T -512))
NIL
(-509 |#1| |#2|)
-((-1540 (($ $ (-640 |#2|) (-640 |#3|)) NIL) (($ $ |#2| |#3|) 12)))
-(((-513 |#1| |#2| |#3|) (-10 -8 (-15 -1540 (|#1| |#1| |#2| |#3|)) (-15 -1540 (|#1| |#1| (-640 |#2|) (-640 |#3|)))) (-514 |#2| |#3|) (-1093) (-1208)) (T -513))
+((-1542 (($ $ (-640 |#2|) (-640 |#3|)) NIL) (($ $ |#2| |#3|) 12)))
+(((-513 |#1| |#2| |#3|) (-10 -8 (-15 -1542 (|#1| |#1| |#2| |#3|)) (-15 -1542 (|#1| |#1| (-640 |#2|) (-640 |#3|)))) (-514 |#2| |#3|) (-1093) (-1208)) (T -513))
NIL
-(-10 -8 (-15 -1540 (|#1| |#1| |#2| |#3|)) (-15 -1540 (|#1| |#1| (-640 |#2|) (-640 |#3|))))
-((-1540 (($ $ (-640 |#1|) (-640 |#2|)) 7) (($ $ |#1| |#2|) 6)))
+(-10 -8 (-15 -1542 (|#1| |#1| |#2| |#3|)) (-15 -1542 (|#1| |#1| (-640 |#2|) (-640 |#3|))))
+((-1542 (($ $ (-640 |#1|) (-640 |#2|)) 7) (($ $ |#1| |#2|) 6)))
(((-514 |#1| |#2|) (-140) (-1093) (-1208)) (T -514))
-((-1540 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *4)) (-5 *3 (-640 *5)) (-4 *1 (-514 *4 *5)) (-4 *4 (-1093)) (-4 *5 (-1208)))) (-1540 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-514 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1208)))))
-(-13 (-10 -8 (-15 -1540 ($ $ |t#1| |t#2|)) (-15 -1540 ($ $ (-640 |t#1|) (-640 |t#2|)))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 16)) (-1539 (((-640 (-2 (|:| |gen| |#1|) (|:| -3368 |#2|))) $) 18)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3749 (((-767) $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL)) (-2058 ((|#1| $) NIL)) (-2768 ((|#1| $ (-563)) 23)) (-1992 ((|#2| $ (-563)) 21)) (-1633 (($ (-1 |#1| |#1|) $) 46)) (-1480 (($ (-1 |#2| |#2|) $) 43)) (-3573 (((-1151) $) NIL)) (-2700 (($ $ $) 53 (|has| |#2| (-788)))) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 42) (($ |#1|) NIL)) (-4319 ((|#2| |#1| $) 49)) (-2241 (($) 11 T CONST)) (-1718 (((-112) $ $) 29)) (-1814 (($ $ $) 27) (($ |#1| $) 25)) (* (($ (-917) $) NIL) (($ (-767) $) 36) (($ |#2| |#1|) 31)))
+((-1542 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *4)) (-5 *3 (-640 *5)) (-4 *1 (-514 *4 *5)) (-4 *4 (-1093)) (-4 *5 (-1208)))) (-1542 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-514 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1208)))))
+(-13 (-10 -8 (-15 -1542 ($ $ |t#1| |t#2|)) (-15 -1542 ($ $ (-640 |t#1|) (-640 |t#2|)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 16)) (-1787 (((-640 (-2 (|:| |gen| |#1|) (|:| -3372 |#2|))) $) 18)) (-3905 (((-3 $ "failed") $ $) NIL)) (-3750 (((-767) $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL)) (-2057 ((|#1| $) NIL)) (-1347 ((|#1| $ (-563)) 23)) (-2137 ((|#2| $ (-563)) 21)) (-1499 (($ (-1 |#1| |#1|) $) 46)) (-2127 (($ (-1 |#2| |#2|) $) 43)) (-3854 (((-1151) $) NIL)) (-2116 (($ $ $) 53 (|has| |#2| (-788)))) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 42) (($ |#1|) NIL)) (-3244 ((|#2| |#1| $) 49)) (-2239 (($) 11 T CONST)) (-1718 (((-112) $ $) 29)) (-1813 (($ $ $) 27) (($ |#1| $) 25)) (* (($ (-917) $) NIL) (($ (-767) $) 36) (($ |#2| |#1|) 31)))
(((-515 |#1| |#2| |#3|) (-323 |#1| |#2|) (-1093) (-131) |#2|) (T -515))
NIL
(-323 |#1| |#2|)
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-3523 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-2770 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4408))) (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-846))))) (-1642 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-2759 (((-112) $ (-767)) NIL)) (-3689 (((-112) (-112)) 25)) (-1849 ((|#1| $ (-563) |#1|) 28 (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4408)))) (-2812 (($ (-1 (-112) |#1|) $) 52)) (-2256 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-4005 (($ $) 56 (|has| |#1| (-1093)))) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2705 (($ |#1| $) NIL (|has| |#1| (-1093))) (($ (-1 (-112) |#1|) $) 44)) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) NIL)) (-4368 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-3945 (($ $ (-563)) 13)) (-4182 (((-767) $) 11)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1566 (($ (-767) |#1|) 23)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) 21 (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-2878 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) 35)) (-3164 (($ (-1 (-112) |#1| |#1|) $ $) 36) (($ $ $) NIL (|has| |#1| (-846)))) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3860 (((-563) $) 20 (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1812 (($ $ $ (-563)) 51) (($ |#1| $ (-563)) 37)) (-3396 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3374 (($ (-640 |#1|)) 29)) (-3781 ((|#1| $) NIL (|has| (-563) (-846)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2358 (($ $ |#1|) 19 (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 40)) (-2105 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) 16)) (-2309 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) 33) (($ $ (-1224 (-563))) NIL)) (-1314 (($ $ (-1224 (-563))) 50) (($ $ (-563)) 45)) (-2963 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3076 (($ $ $ (-563)) 41 (|has| $ (-6 -4408)))) (-1872 (($ $) 32)) (-2220 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) NIL)) (-3245 (($ $ $) 42) (($ $ |#1|) 39)) (-2853 (($ $ |#1|) NIL) (($ |#1| $) 38) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3608 (((-767) $) 17 (|has| $ (-6 -4407)))))
-(((-516 |#1| |#2|) (-13 (-19 |#1|) (-282 |#1|) (-10 -8 (-15 -3374 ($ (-640 |#1|))) (-15 -4182 ((-767) $)) (-15 -3945 ($ $ (-563))) (-15 -3689 ((-112) (-112))))) (-1208) (-563)) (T -516))
-((-3374 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-516 *3 *4)) (-14 *4 (-563)))) (-4182 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-516 *3 *4)) (-4 *3 (-1208)) (-14 *4 (-563)))) (-3945 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-516 *3 *4)) (-4 *3 (-1208)) (-14 *4 *2))) (-3689 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-516 *3 *4)) (-4 *3 (-1208)) (-14 *4 (-563)))))
-(-13 (-19 |#1|) (-282 |#1|) (-10 -8 (-15 -3374 ($ (-640 |#1|))) (-15 -4182 ((-767) $)) (-15 -3945 ($ $ (-563))) (-15 -3689 ((-112) (-112)))))
-((-1677 (((-112) $ $) NIL)) (-3719 (((-1128) $) 11)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-4274 (((-1128) $) 13)) (-1394 (((-1128) $) 9)) (-1693 (((-858) $) 21) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-517) (-13 (-1076) (-10 -8 (-15 -1394 ((-1128) $)) (-15 -3719 ((-1128) $)) (-15 -4274 ((-1128) $))))) (T -517))
-((-1394 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-517)))) (-3719 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-517)))) (-4274 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-517)))))
-(-13 (-1076) (-10 -8 (-15 -1394 ((-1128) $)) (-15 -3719 ((-1128) $)) (-15 -4274 ((-1128) $))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2388 (((-112) $) NIL)) (-3259 (((-767)) NIL)) (-1733 (((-580 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-580 |#1|) (-368)))) (-2752 (((-1181 (-917) (-767)) (-563)) NIL (|has| (-580 |#1|) (-368)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-3749 (((-767)) NIL (|has| (-580 |#1|) (-368)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-580 |#1|) "failed") $) NIL)) (-2058 (((-580 |#1|) $) NIL)) (-3937 (($ (-1257 (-580 |#1|))) NIL)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-580 |#1|) (-368)))) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) NIL (|has| (-580 |#1|) (-368)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-1571 (($) NIL (|has| (-580 |#1|) (-368)))) (-2366 (((-112) $) NIL (|has| (-580 |#1|) (-368)))) (-1637 (($ $ (-767)) NIL (-4032 (|has| (-580 |#1|) (-145)) (|has| (-580 |#1|) (-368)))) (($ $) NIL (-4032 (|has| (-580 |#1|) (-145)) (|has| (-580 |#1|) (-368))))) (-2468 (((-112) $) NIL)) (-3254 (((-917) $) NIL (|has| (-580 |#1|) (-368))) (((-829 (-917)) $) NIL (-4032 (|has| (-580 |#1|) (-145)) (|has| (-580 |#1|) (-368))))) (-3827 (((-112) $) NIL)) (-3723 (($) NIL (|has| (-580 |#1|) (-368)))) (-2890 (((-112) $) NIL (|has| (-580 |#1|) (-368)))) (-3793 (((-580 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-580 |#1|) (-368)))) (-2408 (((-3 $ "failed") $) NIL (|has| (-580 |#1|) (-368)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3941 (((-1165 (-580 |#1|)) $) NIL) (((-1165 $) $ (-917)) NIL (|has| (-580 |#1|) (-368)))) (-1476 (((-917) $) NIL (|has| (-580 |#1|) (-368)))) (-2229 (((-1165 (-580 |#1|)) $) NIL (|has| (-580 |#1|) (-368)))) (-1631 (((-1165 (-580 |#1|)) $) NIL (|has| (-580 |#1|) (-368))) (((-3 (-1165 (-580 |#1|)) "failed") $ $) NIL (|has| (-580 |#1|) (-368)))) (-4166 (($ $ (-1165 (-580 |#1|))) NIL (|has| (-580 |#1|) (-368)))) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| (-580 |#1|) (-368)) CONST)) (-2555 (($ (-917)) NIL (|has| (-580 |#1|) (-368)))) (-3013 (((-112) $) NIL)) (-1694 (((-1113) $) NIL)) (-4333 (($) NIL (|has| (-580 |#1|) (-368)))) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) NIL (|has| (-580 |#1|) (-368)))) (-2174 (((-418 $) $) NIL)) (-1467 (((-829 (-917))) NIL) (((-917)) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-1423 (((-767) $) NIL (|has| (-580 |#1|) (-368))) (((-3 (-767) "failed") $ $) NIL (-4032 (|has| (-580 |#1|) (-145)) (|has| (-580 |#1|) (-368))))) (-3533 (((-134)) NIL)) (-4202 (($ $) NIL (|has| (-580 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-580 |#1|) (-368)))) (-4167 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3390 (((-1165 (-580 |#1|))) NIL)) (-4284 (($) NIL (|has| (-580 |#1|) (-368)))) (-1484 (($) NIL (|has| (-580 |#1|) (-368)))) (-1880 (((-1257 (-580 |#1|)) $) NIL) (((-684 (-580 |#1|)) (-1257 $)) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| (-580 |#1|) (-368)))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-580 |#1|)) NIL)) (-2779 (($ $) NIL (|has| (-580 |#1|) (-368))) (((-3 $ "failed") $) NIL (-4032 (|has| (-580 |#1|) (-145)) (|has| (-580 |#1|) (-368))))) (-1675 (((-767)) NIL)) (-4315 (((-1257 $)) NIL) (((-1257 $) (-917)) NIL)) (-2126 (((-112) $ $) NIL)) (-3152 (((-112) $) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-2350 (($ $) NIL (|has| (-580 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-580 |#1|) (-368)))) (-3209 (($ $) NIL (|has| (-580 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-580 |#1|) (-368)))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL) (($ $ (-580 |#1|)) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ (-580 |#1|)) NIL) (($ (-580 |#1|) $) NIL)))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4073 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-4052 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4409))) (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| |#1| (-846))))) (-1640 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-3001 (((-112) $ (-767)) NIL)) (-1878 (((-112) (-112)) 25)) (-1849 ((|#1| $ (-563) |#1|) 28 (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4409)))) (-3678 (($ (-1 (-112) |#1|) $) 52)) (-2255 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-4194 (($ $) 56 (|has| |#1| (-1093)))) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1691 (($ |#1| $) NIL (|has| |#1| (-1093))) (($ (-1 (-112) |#1|) $) 44)) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) NIL)) (-4369 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-1889 (($ $ (-563)) 13)) (-1900 (((-767) $) 11)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-1565 (($ (-767) |#1|) 23)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) 21 (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-4265 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) 35)) (-4300 (($ (-1 (-112) |#1| |#1|) $ $) 36) (($ $ $) NIL (|has| |#1| (-846)))) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2251 (((-563) $) 20 (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3867 (($ $ $ (-563)) 51) (($ |#1| $ (-563)) 37)) (-3399 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-1910 (($ (-640 |#1|)) 29)) (-3782 ((|#1| $) NIL (|has| (-563) (-846)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2221 (($ $ |#1|) 19 (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 40)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) 16)) (-2308 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) 33) (($ $ (-1224 (-563))) NIL)) (-3690 (($ $ (-1224 (-563))) 50) (($ $ (-563)) 45)) (-2967 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4062 (($ $ $ (-563)) 41 (|has| $ (-6 -4409)))) (-1870 (($ $) 32)) (-2219 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) NIL)) (-1941 (($ $ $) 42) (($ $ |#1|) 39)) (-2857 (($ $ |#1|) NIL) (($ |#1| $) 38) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3610 (((-767) $) 17 (|has| $ (-6 -4408)))))
+(((-516 |#1| |#2|) (-13 (-19 |#1|) (-282 |#1|) (-10 -8 (-15 -1910 ($ (-640 |#1|))) (-15 -1900 ((-767) $)) (-15 -1889 ($ $ (-563))) (-15 -1878 ((-112) (-112))))) (-1208) (-563)) (T -516))
+((-1910 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-516 *3 *4)) (-14 *4 (-563)))) (-1900 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-516 *3 *4)) (-4 *3 (-1208)) (-14 *4 (-563)))) (-1889 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-516 *3 *4)) (-4 *3 (-1208)) (-14 *4 *2))) (-1878 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-516 *3 *4)) (-4 *3 (-1208)) (-14 *4 (-563)))))
+(-13 (-19 |#1|) (-282 |#1|) (-10 -8 (-15 -1910 ($ (-640 |#1|))) (-15 -1900 ((-767) $)) (-15 -1889 ($ $ (-563))) (-15 -1878 ((-112) (-112)))))
+((-1677 (((-112) $ $) NIL)) (-1933 (((-1128) $) 11)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1922 (((-1128) $) 13)) (-1394 (((-1128) $) 9)) (-1692 (((-858) $) 21) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-517) (-13 (-1076) (-10 -8 (-15 -1394 ((-1128) $)) (-15 -1933 ((-1128) $)) (-15 -1922 ((-1128) $))))) (T -517))
+((-1394 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-517)))) (-1933 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-517)))) (-1922 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-517)))))
+(-13 (-1076) (-10 -8 (-15 -1394 ((-1128) $)) (-15 -1933 ((-1128) $)) (-15 -1922 ((-1128) $))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3761 (((-112) $) NIL)) (-3728 (((-767)) NIL)) (-1731 (((-580 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-580 |#1|) (-368)))) (-1597 (((-1181 (-917) (-767)) (-563)) NIL (|has| (-580 |#1|) (-368)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-3750 (((-767)) NIL (|has| (-580 |#1|) (-368)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-580 |#1|) "failed") $) NIL)) (-2057 (((-580 |#1|) $) NIL)) (-3458 (($ (-1257 (-580 |#1|))) NIL)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-580 |#1|) (-368)))) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) NIL (|has| (-580 |#1|) (-368)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-4036 (($) NIL (|has| (-580 |#1|) (-368)))) (-1656 (((-112) $) NIL (|has| (-580 |#1|) (-368)))) (-3188 (($ $ (-767)) NIL (-4034 (|has| (-580 |#1|) (-145)) (|has| (-580 |#1|) (-368)))) (($ $) NIL (-4034 (|has| (-580 |#1|) (-145)) (|has| (-580 |#1|) (-368))))) (-2560 (((-112) $) NIL)) (-1775 (((-917) $) NIL (|has| (-580 |#1|) (-368))) (((-829 (-917)) $) NIL (-4034 (|has| (-580 |#1|) (-145)) (|has| (-580 |#1|) (-368))))) (-3401 (((-112) $) NIL)) (-4024 (($) NIL (|has| (-580 |#1|) (-368)))) (-4002 (((-112) $) NIL (|has| (-580 |#1|) (-368)))) (-3975 (((-580 |#1|) $) NIL) (($ $ (-917)) NIL (|has| (-580 |#1|) (-368)))) (-1983 (((-3 $ "failed") $) NIL (|has| (-580 |#1|) (-368)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4035 (((-1165 (-580 |#1|)) $) NIL) (((-1165 $) $ (-917)) NIL (|has| (-580 |#1|) (-368)))) (-3990 (((-917) $) NIL (|has| (-580 |#1|) (-368)))) (-2196 (((-1165 (-580 |#1|)) $) NIL (|has| (-580 |#1|) (-368)))) (-2184 (((-1165 (-580 |#1|)) $) NIL (|has| (-580 |#1|) (-368))) (((-3 (-1165 (-580 |#1|)) "failed") $ $) NIL (|has| (-580 |#1|) (-368)))) (-2207 (($ $ (-1165 (-580 |#1|))) NIL (|has| (-580 |#1|) (-368)))) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| (-580 |#1|) (-368)) CONST)) (-2552 (($ (-917)) NIL (|has| (-580 |#1|) (-368)))) (-3751 (((-112) $) NIL)) (-1693 (((-1113) $) NIL)) (-4334 (($) NIL (|has| (-580 |#1|) (-368)))) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) NIL (|has| (-580 |#1|) (-368)))) (-2173 (((-418 $) $) NIL)) (-3740 (((-829 (-917))) NIL) (((-917)) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3196 (((-767) $) NIL (|has| (-580 |#1|) (-368))) (((-3 (-767) "failed") $ $) NIL (-4034 (|has| (-580 |#1|) (-145)) (|has| (-580 |#1|) (-368))))) (-3526 (((-134)) NIL)) (-4203 (($ $) NIL (|has| (-580 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-580 |#1|) (-368)))) (-3871 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3402 (((-1165 (-580 |#1|))) NIL)) (-1586 (($) NIL (|has| (-580 |#1|) (-368)))) (-2220 (($) NIL (|has| (-580 |#1|) (-368)))) (-3759 (((-1257 (-580 |#1|)) $) NIL) (((-684 (-580 |#1|)) (-1257 $)) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| (-580 |#1|) (-368)))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-580 |#1|)) NIL)) (-2047 (($ $) NIL (|has| (-580 |#1|) (-368))) (((-3 $ "failed") $) NIL (-4034 (|has| (-580 |#1|) (-145)) (|has| (-580 |#1|) (-368))))) (-3914 (((-767)) NIL)) (-4013 (((-1257 $)) NIL) (((-1257 $) (-917)) NIL)) (-3223 (((-112) $ $) NIL)) (-3772 (((-112) $) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3715 (($ $) NIL (|has| (-580 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-580 |#1|) (-368)))) (-3213 (($ $) NIL (|has| (-580 |#1|) (-368))) (($ $ (-767)) NIL (|has| (-580 |#1|) (-368)))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL) (($ $ (-580 |#1|)) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ $ (-580 |#1|)) NIL) (($ (-580 |#1|) $) NIL)))
(((-518 |#1| |#2|) (-329 (-580 |#1|)) (-917) (-917)) (T -518))
NIL
(-329 (-580 |#1|))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) (-563) |#1|) 35)) (-4327 (($ $ (-563) |#4|) NIL)) (-4175 (($ $ (-563) |#5|) NIL)) (-4239 (($) NIL T CONST)) (-2368 ((|#4| $ (-563)) NIL)) (-4355 ((|#1| $ (-563) (-563) |#1|) 34)) (-4293 ((|#1| $ (-563) (-563)) 32)) (-2659 (((-640 |#1|) $) NIL)) (-2381 (((-767) $) 28)) (-1566 (($ (-767) (-767) |#1|) 25)) (-2393 (((-767) $) 30)) (-2581 (((-112) $ (-767)) NIL)) (-2013 (((-563) $) 26)) (-3650 (((-563) $) 27)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1859 (((-563) $) 29)) (-2207 (((-563) $) 31)) (-4345 (($ (-1 |#1| |#1|) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) 38 (|has| |#1| (-1093)))) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2358 (($ $ |#1|) NIL)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) 14)) (-3135 (($) 16)) (-2309 ((|#1| $ (-563) (-563)) 33) ((|#1| $ (-563) (-563) |#1|) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) NIL)) (-1912 ((|#5| $ (-563)) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) (-563) |#1|) 35)) (-1589 (($ $ (-563) |#4|) NIL)) (-1572 (($ $ (-563) |#5|) NIL)) (-2569 (($) NIL T CONST)) (-1960 ((|#4| $ (-563)) NIL)) (-4356 ((|#1| $ (-563) (-563) |#1|) 34)) (-4293 ((|#1| $ (-563) (-563)) 32)) (-2658 (((-640 |#1|) $) NIL)) (-2380 (((-767) $) 28)) (-1565 (($ (-767) (-767) |#1|) 25)) (-2391 (((-767) $) 30)) (-2514 (((-112) $ (-767)) NIL)) (-1995 (((-563) $) 26)) (-1979 (((-563) $) 27)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1986 (((-563) $) 29)) (-1969 (((-563) $) 31)) (-4347 (($ (-1 |#1| |#1|) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) 38 (|has| |#1| (-1093)))) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2221 (($ $ |#1|) NIL)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) 14)) (-3445 (($) 16)) (-2308 ((|#1| $ (-563) (-563)) 33) ((|#1| $ (-563) (-563) |#1|) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) NIL)) (-1950 ((|#5| $ (-563)) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
(((-519 |#1| |#2| |#3| |#4| |#5|) (-57 |#1| |#4| |#5|) (-1208) (-563) (-563) (-373 |#1|) (-373 |#1|)) (T -519))
NIL
(-57 |#1| |#4| |#5|)
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2619 ((|#1| $) NIL)) (-3442 ((|#1| $) NIL)) (-4302 (($ $) NIL)) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-1624 (($ $ (-563)) 58 (|has| $ (-6 -4408)))) (-3523 (((-112) $) NIL (|has| |#1| (-846))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-2770 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-846)))) (($ (-1 (-112) |#1| |#1|) $) 56 (|has| $ (-6 -4408)))) (-1642 (($ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-2936 ((|#1| $ |#1|) NIL (|has| $ (-6 -4408)))) (-3692 (($ $ $) 23 (|has| $ (-6 -4408)))) (-3889 ((|#1| $ |#1|) NIL (|has| $ (-6 -4408)))) (-1543 ((|#1| $ |#1|) 21 (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4408))) ((|#1| $ "first" |#1|) 22 (|has| $ (-6 -4408))) (($ $ "rest" $) 24 (|has| $ (-6 -4408))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4408))) ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) NIL (|has| $ (-6 -4408)))) (-2812 (($ (-1 (-112) |#1|) $) NIL)) (-2256 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-3431 ((|#1| $) NIL)) (-4239 (($) NIL T CONST)) (-2907 (($ $) 28 (|has| $ (-6 -4408)))) (-4382 (($ $) 29)) (-3792 (($ $) 18) (($ $ (-767)) 32)) (-4005 (($ $) 54 (|has| |#1| (-1093)))) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2705 (($ |#1| $) NIL (|has| |#1| (-1093))) (($ (-1 (-112) |#1|) $) NIL)) (-1459 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-4355 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) NIL)) (-2018 (((-112) $) NIL)) (-4368 (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093))) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) (-1 (-112) |#1|) $) NIL)) (-2659 (((-640 |#1|) $) 27 (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) NIL)) (-1469 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1566 (($ (-767) |#1|) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) 31 (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-2878 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) 57)) (-3164 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 52 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3651 (($ |#1|) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-2512 (((-640 |#1|) $) NIL)) (-2194 (((-112) $) NIL)) (-3573 (((-1151) $) 50 (|has| |#1| (-1093)))) (-1481 ((|#1| $) NIL) (($ $ (-767)) NIL)) (-1812 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-3396 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3781 ((|#1| $) 13) (($ $ (-767)) NIL)) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2358 (($ $ |#1|) NIL (|has| $ (-6 -4408)))) (-2833 (((-112) $) NIL)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 12)) (-2105 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) NIL)) (-3756 (((-112) $) 17)) (-3135 (($) 16)) (-2309 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1224 (-563))) NIL) ((|#1| $ (-563)) NIL) ((|#1| $ (-563) |#1|) NIL)) (-4071 (((-563) $ $) NIL)) (-1314 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-2963 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-1434 (((-112) $) 33)) (-2749 (($ $) NIL)) (-1322 (($ $) NIL (|has| $ (-6 -4408)))) (-1950 (((-767) $) NIL)) (-3752 (($ $) 35)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3076 (($ $ $ (-563)) NIL (|has| $ (-6 -4408)))) (-1872 (($ $) 34)) (-2220 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 26)) (-3245 (($ $ $) 53) (($ $ |#1|) NIL)) (-2853 (($ $ $) NIL) (($ |#1| $) 10) (($ (-640 $)) NIL) (($ $ |#1|) NIL)) (-1693 (((-858) $) 45 (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) NIL)) (-2962 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) 47 (|has| |#1| (-1093)))) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3608 (((-767) $) 9 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2618 ((|#1| $) NIL)) (-3446 ((|#1| $) NIL)) (-4303 (($ $) NIL)) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-1887 (($ $ (-563)) 58 (|has| $ (-6 -4409)))) (-4073 (((-112) $) NIL (|has| |#1| (-846))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-4052 (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| |#1| (-846)))) (($ (-1 (-112) |#1| |#1|) $) 56 (|has| $ (-6 -4409)))) (-1640 (($ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-2336 ((|#1| $ |#1|) NIL (|has| $ (-6 -4409)))) (-1909 (($ $ $) 23 (|has| $ (-6 -4409)))) (-1898 ((|#1| $ |#1|) NIL (|has| $ (-6 -4409)))) (-1919 ((|#1| $ |#1|) 21 (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4409))) ((|#1| $ "first" |#1|) 22 (|has| $ (-6 -4409))) (($ $ "rest" $) 24 (|has| $ (-6 -4409))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4409))) ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) NIL (|has| $ (-6 -4409)))) (-3678 (($ (-1 (-112) |#1|) $) NIL)) (-2255 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-3435 ((|#1| $) NIL)) (-2569 (($) NIL T CONST)) (-1574 (($ $) 28 (|has| $ (-6 -4409)))) (-4383 (($ $) 29)) (-3793 (($ $) 18) (($ $ (-767)) 32)) (-4194 (($ $) 54 (|has| |#1| (-1093)))) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1691 (($ |#1| $) NIL (|has| |#1| (-1093))) (($ (-1 (-112) |#1|) $) NIL)) (-1459 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4356 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) NIL)) (-1966 (((-112) $) NIL)) (-4369 (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093))) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) (-1 (-112) |#1|) $) NIL)) (-2658 (((-640 |#1|) $) 27 (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) NIL)) (-2358 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1565 (($ (-767) |#1|) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) 31 (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-4265 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) 57)) (-4300 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 52 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3652 (($ |#1|) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-2511 (((-640 |#1|) $) NIL)) (-1298 (((-112) $) NIL)) (-3854 (((-1151) $) 50 (|has| |#1| (-1093)))) (-1481 ((|#1| $) NIL) (($ $ (-767)) NIL)) (-3867 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-3399 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3782 ((|#1| $) 13) (($ $ (-767)) NIL)) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2221 (($ $ |#1|) NIL (|has| $ (-6 -4409)))) (-1976 (((-112) $) NIL)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 12)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) NIL)) (-1665 (((-112) $) 17)) (-3445 (($) 16)) (-2308 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1224 (-563))) NIL) ((|#1| $ (-563)) NIL) ((|#1| $ (-563) |#1|) NIL)) (-2379 (((-563) $ $) NIL)) (-3690 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-2967 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-2889 (((-112) $) 33)) (-1951 (($ $) NIL)) (-1930 (($ $) NIL (|has| $ (-6 -4409)))) (-1961 (((-767) $) NIL)) (-1970 (($ $) 35)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4062 (($ $ $ (-563)) NIL (|has| $ (-6 -4409)))) (-1870 (($ $) 34)) (-2219 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 26)) (-1941 (($ $ $) 53) (($ $ |#1|) NIL)) (-2857 (($ $ $) NIL) (($ |#1| $) 10) (($ (-640 $)) NIL) (($ $ |#1|) NIL)) (-1692 (((-858) $) 45 (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) NIL)) (-2367 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) 47 (|has| |#1| (-1093)))) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3610 (((-767) $) 9 (|has| $ (-6 -4408)))))
(((-520 |#1| |#2|) (-661 |#1|) (-1208) (-563)) (T -520))
NIL
(-661 |#1|)
-((-4069 ((|#4| |#4|) 27)) (-2522 (((-767) |#4|) 32)) (-1997 (((-767) |#4|) 33)) (-2345 (((-640 |#3|) |#4|) 39 (|has| |#3| (-6 -4408)))) (-2591 (((-3 |#4| "failed") |#4|) 50)) (-2221 ((|#4| |#4|) 43)) (-3848 ((|#1| |#4|) 42)))
-(((-521 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4069 (|#4| |#4|)) (-15 -2522 ((-767) |#4|)) (-15 -1997 ((-767) |#4|)) (IF (|has| |#3| (-6 -4408)) (-15 -2345 ((-640 |#3|) |#4|)) |%noBranch|) (-15 -3848 (|#1| |#4|)) (-15 -2221 (|#4| |#4|)) (-15 -2591 ((-3 |#4| "failed") |#4|))) (-363) (-373 |#1|) (-373 |#1|) (-682 |#1| |#2| |#3|)) (T -521))
-((-2591 (*1 *2 *2) (|partial| -12 (-4 *3 (-363)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-521 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-2221 (*1 *2 *2) (-12 (-4 *3 (-363)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-521 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-3848 (*1 *2 *3) (-12 (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-363)) (-5 *1 (-521 *2 *4 *5 *3)) (-4 *3 (-682 *2 *4 *5)))) (-2345 (*1 *2 *3) (-12 (|has| *6 (-6 -4408)) (-4 *4 (-363)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-640 *6)) (-5 *1 (-521 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-1997 (*1 *2 *3) (-12 (-4 *4 (-363)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-767)) (-5 *1 (-521 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-2522 (*1 *2 *3) (-12 (-4 *4 (-363)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-767)) (-5 *1 (-521 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-4069 (*1 *2 *2) (-12 (-4 *3 (-363)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-521 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
-(-10 -7 (-15 -4069 (|#4| |#4|)) (-15 -2522 ((-767) |#4|)) (-15 -1997 ((-767) |#4|)) (IF (|has| |#3| (-6 -4408)) (-15 -2345 ((-640 |#3|) |#4|)) |%noBranch|) (-15 -3848 (|#1| |#4|)) (-15 -2221 (|#4| |#4|)) (-15 -2591 ((-3 |#4| "failed") |#4|)))
-((-4069 ((|#8| |#4|) 20)) (-2345 (((-640 |#3|) |#4|) 29 (|has| |#7| (-6 -4408)))) (-2591 (((-3 |#8| "failed") |#4|) 23)))
-(((-522 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -4069 (|#8| |#4|)) (-15 -2591 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4408)) (-15 -2345 ((-640 |#3|) |#4|)) |%noBranch|)) (-555) (-373 |#1|) (-373 |#1|) (-682 |#1| |#2| |#3|) (-988 |#1|) (-373 |#5|) (-373 |#5|) (-682 |#5| |#6| |#7|)) (T -522))
-((-2345 (*1 *2 *3) (-12 (|has| *9 (-6 -4408)) (-4 *4 (-555)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-4 *7 (-988 *4)) (-4 *8 (-373 *7)) (-4 *9 (-373 *7)) (-5 *2 (-640 *6)) (-5 *1 (-522 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-682 *4 *5 *6)) (-4 *10 (-682 *7 *8 *9)))) (-2591 (*1 *2 *3) (|partial| -12 (-4 *4 (-555)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-4 *7 (-988 *4)) (-4 *2 (-682 *7 *8 *9)) (-5 *1 (-522 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-682 *4 *5 *6)) (-4 *8 (-373 *7)) (-4 *9 (-373 *7)))) (-4069 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-4 *7 (-988 *4)) (-4 *2 (-682 *7 *8 *9)) (-5 *1 (-522 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-682 *4 *5 *6)) (-4 *8 (-373 *7)) (-4 *9 (-373 *7)))))
-(-10 -7 (-15 -4069 (|#8| |#4|)) (-15 -2591 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4408)) (-15 -2345 ((-640 |#3|) |#4|)) |%noBranch|))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3212 (($ (-767) (-767)) NIL)) (-3888 (($ $ $) NIL)) (-3493 (($ (-599 |#1| |#3|)) NIL) (($ $) NIL)) (-3129 (((-112) $) NIL)) (-4311 (($ $ (-563) (-563)) 12)) (-4004 (($ $ (-563) (-563)) NIL)) (-1461 (($ $ (-563) (-563) (-563) (-563)) NIL)) (-2767 (($ $) NIL)) (-1937 (((-112) $) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-4356 (($ $ (-563) (-563) $) NIL)) (-1849 ((|#1| $ (-563) (-563) |#1|) NIL) (($ $ (-640 (-563)) (-640 (-563)) $) NIL)) (-4327 (($ $ (-563) (-599 |#1| |#3|)) NIL)) (-4175 (($ $ (-563) (-599 |#1| |#2|)) NIL)) (-3845 (($ (-767) |#1|) NIL)) (-4239 (($) NIL T CONST)) (-4069 (($ $) 21 (|has| |#1| (-307)))) (-2368 (((-599 |#1| |#3|) $ (-563)) NIL)) (-2522 (((-767) $) 24 (|has| |#1| (-555)))) (-4355 ((|#1| $ (-563) (-563) |#1|) NIL)) (-4293 ((|#1| $ (-563) (-563)) NIL)) (-2659 (((-640 |#1|) $) NIL)) (-1997 (((-767) $) 26 (|has| |#1| (-555)))) (-2345 (((-640 (-599 |#1| |#2|)) $) 29 (|has| |#1| (-555)))) (-2381 (((-767) $) NIL)) (-1566 (($ (-767) (-767) |#1|) NIL)) (-2393 (((-767) $) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-3977 ((|#1| $) 19 (|has| |#1| (-6 (-4409 "*"))))) (-2013 (((-563) $) 10)) (-3650 (((-563) $) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1859 (((-563) $) 11)) (-2207 (((-563) $) NIL)) (-4038 (($ (-640 (-640 |#1|))) NIL)) (-4345 (($ (-1 |#1| |#1|) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-4136 (((-640 (-640 |#1|)) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2591 (((-3 $ "failed") $) 33 (|has| |#1| (-363)))) (-3757 (($ $ $) NIL)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2358 (($ $ |#1|) NIL)) (-3008 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#1| $ (-563) (-563)) NIL) ((|#1| $ (-563) (-563) |#1|) NIL) (($ $ (-640 (-563)) (-640 (-563))) NIL)) (-2104 (($ (-640 |#1|)) NIL) (($ (-640 $)) NIL)) (-2717 (((-112) $) NIL)) (-3848 ((|#1| $) 17 (|has| |#1| (-6 (-4409 "*"))))) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) NIL)) (-1912 (((-599 |#1| |#2|) $ (-563)) NIL)) (-1693 (($ (-599 |#1| |#2|)) NIL) (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-3280 (((-112) $) NIL)) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1826 (($ $ $) NIL) (($ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-563) $) NIL) (((-599 |#1| |#2|) $ (-599 |#1| |#2|)) NIL) (((-599 |#1| |#3|) (-599 |#1| |#3|) $) NIL)) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
+((-1940 ((|#4| |#4|) 27)) (-2521 (((-767) |#4|) 32)) (-1929 (((-767) |#4|) 33)) (-1917 (((-640 |#3|) |#4|) 39 (|has| |#3| (-6 -4409)))) (-3694 (((-3 |#4| "failed") |#4|) 50)) (-1944 ((|#4| |#4|) 43)) (-2168 ((|#1| |#4|) 42)))
+(((-521 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1940 (|#4| |#4|)) (-15 -2521 ((-767) |#4|)) (-15 -1929 ((-767) |#4|)) (IF (|has| |#3| (-6 -4409)) (-15 -1917 ((-640 |#3|) |#4|)) |%noBranch|) (-15 -2168 (|#1| |#4|)) (-15 -1944 (|#4| |#4|)) (-15 -3694 ((-3 |#4| "failed") |#4|))) (-363) (-373 |#1|) (-373 |#1|) (-682 |#1| |#2| |#3|)) (T -521))
+((-3694 (*1 *2 *2) (|partial| -12 (-4 *3 (-363)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-521 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-1944 (*1 *2 *2) (-12 (-4 *3 (-363)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-521 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-2168 (*1 *2 *3) (-12 (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-363)) (-5 *1 (-521 *2 *4 *5 *3)) (-4 *3 (-682 *2 *4 *5)))) (-1917 (*1 *2 *3) (-12 (|has| *6 (-6 -4409)) (-4 *4 (-363)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-640 *6)) (-5 *1 (-521 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-1929 (*1 *2 *3) (-12 (-4 *4 (-363)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-767)) (-5 *1 (-521 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-2521 (*1 *2 *3) (-12 (-4 *4 (-363)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-767)) (-5 *1 (-521 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-1940 (*1 *2 *2) (-12 (-4 *3 (-363)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-521 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
+(-10 -7 (-15 -1940 (|#4| |#4|)) (-15 -2521 ((-767) |#4|)) (-15 -1929 ((-767) |#4|)) (IF (|has| |#3| (-6 -4409)) (-15 -1917 ((-640 |#3|) |#4|)) |%noBranch|) (-15 -2168 (|#1| |#4|)) (-15 -1944 (|#4| |#4|)) (-15 -3694 ((-3 |#4| "failed") |#4|)))
+((-1940 ((|#8| |#4|) 20)) (-1917 (((-640 |#3|) |#4|) 29 (|has| |#7| (-6 -4409)))) (-3694 (((-3 |#8| "failed") |#4|) 23)))
+(((-522 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1940 (|#8| |#4|)) (-15 -3694 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4409)) (-15 -1917 ((-640 |#3|) |#4|)) |%noBranch|)) (-555) (-373 |#1|) (-373 |#1|) (-682 |#1| |#2| |#3|) (-988 |#1|) (-373 |#5|) (-373 |#5|) (-682 |#5| |#6| |#7|)) (T -522))
+((-1917 (*1 *2 *3) (-12 (|has| *9 (-6 -4409)) (-4 *4 (-555)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-4 *7 (-988 *4)) (-4 *8 (-373 *7)) (-4 *9 (-373 *7)) (-5 *2 (-640 *6)) (-5 *1 (-522 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-682 *4 *5 *6)) (-4 *10 (-682 *7 *8 *9)))) (-3694 (*1 *2 *3) (|partial| -12 (-4 *4 (-555)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-4 *7 (-988 *4)) (-4 *2 (-682 *7 *8 *9)) (-5 *1 (-522 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-682 *4 *5 *6)) (-4 *8 (-373 *7)) (-4 *9 (-373 *7)))) (-1940 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-4 *7 (-988 *4)) (-4 *2 (-682 *7 *8 *9)) (-5 *1 (-522 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-682 *4 *5 *6)) (-4 *8 (-373 *7)) (-4 *9 (-373 *7)))))
+(-10 -7 (-15 -1940 (|#8| |#4|)) (-15 -3694 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4409)) (-15 -1917 ((-640 |#3|) |#4|)) |%noBranch|))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3216 (($ (-767) (-767)) NIL)) (-3934 (($ $ $) NIL)) (-1769 (($ (-599 |#1| |#3|)) NIL) (($ $) NIL)) (-3870 (((-112) $) NIL)) (-3924 (($ $ (-563) (-563)) 12)) (-3913 (($ $ (-563) (-563)) NIL)) (-3901 (($ $ (-563) (-563) (-563) (-563)) NIL)) (-3953 (($ $) NIL)) (-3893 (((-112) $) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-3892 (($ $ (-563) (-563) $) NIL)) (-1849 ((|#1| $ (-563) (-563) |#1|) NIL) (($ $ (-640 (-563)) (-640 (-563)) $) NIL)) (-1589 (($ $ (-563) (-599 |#1| |#3|)) NIL)) (-1572 (($ $ (-563) (-599 |#1| |#2|)) NIL)) (-2217 (($ (-767) |#1|) NIL)) (-2569 (($) NIL T CONST)) (-1940 (($ $) 21 (|has| |#1| (-307)))) (-1960 (((-599 |#1| |#3|) $ (-563)) NIL)) (-2521 (((-767) $) 24 (|has| |#1| (-555)))) (-4356 ((|#1| $ (-563) (-563) |#1|) NIL)) (-4293 ((|#1| $ (-563) (-563)) NIL)) (-2658 (((-640 |#1|) $) NIL)) (-1929 (((-767) $) 26 (|has| |#1| (-555)))) (-1917 (((-640 (-599 |#1| |#2|)) $) 29 (|has| |#1| (-555)))) (-2380 (((-767) $) NIL)) (-1565 (($ (-767) (-767) |#1|) NIL)) (-2391 (((-767) $) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2157 ((|#1| $) 19 (|has| |#1| (-6 (-4410 "*"))))) (-1995 (((-563) $) 10)) (-1979 (((-563) $) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1986 (((-563) $) 11)) (-1969 (((-563) $) NIL)) (-4040 (($ (-640 (-640 |#1|))) NIL)) (-4347 (($ (-1 |#1| |#1|) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3734 (((-640 (-640 |#1|)) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3694 (((-3 $ "failed") $) 33 (|has| |#1| (-363)))) (-3943 (($ $ $) NIL)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2221 (($ $ |#1|) NIL)) (-3012 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#1| $ (-563) (-563)) NIL) ((|#1| $ (-563) (-563) |#1|) NIL) (($ $ (-640 (-563)) (-640 (-563))) NIL)) (-2206 (($ (-640 |#1|)) NIL) (($ (-640 $)) NIL)) (-3881 (((-112) $) NIL)) (-2168 ((|#1| $) 17 (|has| |#1| (-6 (-4410 "*"))))) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) NIL)) (-1950 (((-599 |#1| |#2|) $ (-563)) NIL)) (-1692 (($ (-599 |#1| |#2|)) NIL) (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2005 (((-112) $) NIL)) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1825 (($ $ $) NIL) (($ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-563) $) NIL) (((-599 |#1| |#2|) $ (-599 |#1| |#2|)) NIL) (((-599 |#1| |#3|) (-599 |#1| |#3|) $) NIL)) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
(((-523 |#1| |#2| |#3|) (-682 |#1| (-599 |#1| |#3|) (-599 |#1| |#2|)) (-1045) (-563) (-563)) (T -523))
NIL
(-682 |#1| (-599 |#1| |#3|) (-599 |#1| |#2|))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-3760 (((-640 (-1207)) $) 13)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 20) (($ (-1174)) NIL) (((-1174) $) NIL) (($ (-640 (-1207))) 11)) (-1718 (((-112) $ $) NIL)))
-(((-524) (-13 (-1076) (-10 -8 (-15 -1693 ($ (-640 (-1207)))) (-15 -3760 ((-640 (-1207)) $))))) (T -524))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-640 (-1207))) (-5 *1 (-524)))) (-3760 (*1 *2 *1) (-12 (-5 *2 (-640 (-1207))) (-5 *1 (-524)))))
-(-13 (-1076) (-10 -8 (-15 -1693 ($ (-640 (-1207)))) (-15 -3760 ((-640 (-1207)) $))))
-((-1677 (((-112) $ $) NIL)) (-1869 (((-1128) $) 14)) (-3573 (((-1151) $) NIL)) (-2877 (((-1169) $) 11)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 21) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-525) (-13 (-1076) (-10 -8 (-15 -2877 ((-1169) $)) (-15 -1869 ((-1128) $))))) (T -525))
-((-2877 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-525)))) (-1869 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-525)))))
-(-13 (-1076) (-10 -8 (-15 -2877 ((-1169) $)) (-15 -1869 ((-1128) $))))
-((-2843 (((-686 (-1215)) $) 15)) (-3262 (((-686 (-1214)) $) 35)) (-3927 (((-686 (-1213)) $) 26)) (-3429 (((-686 (-548)) $) 12)) (-1497 (((-686 (-547)) $) 39)) (-3351 (((-686 (-546)) $) 30)) (-2513 (((-767) $ (-128)) 49)))
-(((-526 |#1|) (-10 -8 (-15 -2513 ((-767) |#1| (-128))) (-15 -3262 ((-686 (-1214)) |#1|)) (-15 -1497 ((-686 (-547)) |#1|)) (-15 -3927 ((-686 (-1213)) |#1|)) (-15 -3351 ((-686 (-546)) |#1|)) (-15 -2843 ((-686 (-1215)) |#1|)) (-15 -3429 ((-686 (-548)) |#1|))) (-527)) (T -526))
-NIL
-(-10 -8 (-15 -2513 ((-767) |#1| (-128))) (-15 -3262 ((-686 (-1214)) |#1|)) (-15 -1497 ((-686 (-547)) |#1|)) (-15 -3927 ((-686 (-1213)) |#1|)) (-15 -3351 ((-686 (-546)) |#1|)) (-15 -2843 ((-686 (-1215)) |#1|)) (-15 -3429 ((-686 (-548)) |#1|)))
-((-2843 (((-686 (-1215)) $) 12)) (-3262 (((-686 (-1214)) $) 8)) (-3927 (((-686 (-1213)) $) 10)) (-3429 (((-686 (-548)) $) 13)) (-1497 (((-686 (-547)) $) 9)) (-3351 (((-686 (-546)) $) 11)) (-2513 (((-767) $ (-128)) 7)) (-2810 (((-686 (-129)) $) 14)) (-3004 (($ $) 6)))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1953 (((-640 (-1207)) $) 13)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 20) (($ (-1174)) NIL) (((-1174) $) NIL) (($ (-640 (-1207))) 11)) (-1718 (((-112) $ $) NIL)))
+(((-524) (-13 (-1076) (-10 -8 (-15 -1692 ($ (-640 (-1207)))) (-15 -1953 ((-640 (-1207)) $))))) (T -524))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-640 (-1207))) (-5 *1 (-524)))) (-1953 (*1 *2 *1) (-12 (-5 *2 (-640 (-1207))) (-5 *1 (-524)))))
+(-13 (-1076) (-10 -8 (-15 -1692 ($ (-640 (-1207)))) (-15 -1953 ((-640 (-1207)) $))))
+((-1677 (((-112) $ $) NIL)) (-1963 (((-1128) $) 14)) (-3854 (((-1151) $) NIL)) (-1973 (((-1169) $) 11)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 21) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-525) (-13 (-1076) (-10 -8 (-15 -1973 ((-1169) $)) (-15 -1963 ((-1128) $))))) (T -525))
+((-1973 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-525)))) (-1963 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-525)))))
+(-13 (-1076) (-10 -8 (-15 -1973 ((-1169) $)) (-15 -1963 ((-1128) $))))
+((-3884 (((-686 (-1215)) $) 15)) (-3848 (((-686 (-1214)) $) 35)) (-3864 (((-686 (-1213)) $) 26)) (-3896 (((-686 (-548)) $) 12)) (-3857 (((-686 (-547)) $) 39)) (-3874 (((-686 (-546)) $) 30)) (-3839 (((-767) $ (-128)) 49)))
+(((-526 |#1|) (-10 -8 (-15 -3839 ((-767) |#1| (-128))) (-15 -3848 ((-686 (-1214)) |#1|)) (-15 -3857 ((-686 (-547)) |#1|)) (-15 -3864 ((-686 (-1213)) |#1|)) (-15 -3874 ((-686 (-546)) |#1|)) (-15 -3884 ((-686 (-1215)) |#1|)) (-15 -3896 ((-686 (-548)) |#1|))) (-527)) (T -526))
+NIL
+(-10 -8 (-15 -3839 ((-767) |#1| (-128))) (-15 -3848 ((-686 (-1214)) |#1|)) (-15 -3857 ((-686 (-547)) |#1|)) (-15 -3864 ((-686 (-1213)) |#1|)) (-15 -3874 ((-686 (-546)) |#1|)) (-15 -3884 ((-686 (-1215)) |#1|)) (-15 -3896 ((-686 (-548)) |#1|)))
+((-3884 (((-686 (-1215)) $) 12)) (-3848 (((-686 (-1214)) $) 8)) (-3864 (((-686 (-1213)) $) 10)) (-3896 (((-686 (-548)) $) 13)) (-3857 (((-686 (-547)) $) 9)) (-3874 (((-686 (-546)) $) 11)) (-3839 (((-767) $ (-128)) 7)) (-3907 (((-686 (-129)) $) 14)) (-1895 (($ $) 6)))
(((-527) (-140)) (T -527))
-((-2810 (*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-129))))) (-3429 (*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-548))))) (-2843 (*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-1215))))) (-3351 (*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-546))))) (-3927 (*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-1213))))) (-1497 (*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-547))))) (-3262 (*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-1214))))) (-2513 (*1 *2 *1 *3) (-12 (-4 *1 (-527)) (-5 *3 (-128)) (-5 *2 (-767)))))
-(-13 (-173) (-10 -8 (-15 -2810 ((-686 (-129)) $)) (-15 -3429 ((-686 (-548)) $)) (-15 -2843 ((-686 (-1215)) $)) (-15 -3351 ((-686 (-546)) $)) (-15 -3927 ((-686 (-1213)) $)) (-15 -1497 ((-686 (-547)) $)) (-15 -3262 ((-686 (-1214)) $)) (-15 -2513 ((-767) $ (-128)))))
+((-3907 (*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-129))))) (-3896 (*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-548))))) (-3884 (*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-1215))))) (-3874 (*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-546))))) (-3864 (*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-1213))))) (-3857 (*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-547))))) (-3848 (*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-1214))))) (-3839 (*1 *2 *1 *3) (-12 (-4 *1 (-527)) (-5 *3 (-128)) (-5 *2 (-767)))))
+(-13 (-173) (-10 -8 (-15 -3907 ((-686 (-129)) $)) (-15 -3896 ((-686 (-548)) $)) (-15 -3884 ((-686 (-1215)) $)) (-15 -3874 ((-686 (-546)) $)) (-15 -3864 ((-686 (-1213)) $)) (-15 -3857 ((-686 (-547)) $)) (-15 -3848 ((-686 (-1214)) $)) (-15 -3839 ((-767) $ (-128)))))
(((-173) . T))
-((-3616 (((-1165 |#1|) (-767)) 75)) (-1733 (((-1257 |#1|) (-1257 |#1|) (-917)) 68)) (-2294 (((-1262) (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))) |#1|) 83)) (-3840 (((-1257 |#1|) (-1257 |#1|) (-767)) 36)) (-1691 (((-1257 |#1|) (-917)) 70)) (-3066 (((-1257 |#1|) (-1257 |#1|) (-563)) 24)) (-1574 (((-1165 |#1|) (-1257 |#1|)) 76)) (-3723 (((-1257 |#1|) (-917)) 94)) (-2890 (((-112) (-1257 |#1|)) 79)) (-3793 (((-1257 |#1|) (-1257 |#1|) (-917)) 61)) (-3941 (((-1165 |#1|) (-1257 |#1|)) 88)) (-1476 (((-917) (-1257 |#1|)) 58)) (-2688 (((-1257 |#1|) (-1257 |#1|)) 30)) (-2555 (((-1257 |#1|) (-917) (-917)) 96)) (-3514 (((-1257 |#1|) (-1257 |#1|) (-1113) (-1113)) 23)) (-3963 (((-1257 |#1|) (-1257 |#1|) (-767) (-1113)) 37)) (-4315 (((-1257 (-1257 |#1|)) (-917)) 93)) (-1837 (((-1257 |#1|) (-1257 |#1|) (-1257 |#1|)) 80)) (** (((-1257 |#1|) (-1257 |#1|) (-563)) 43)) (* (((-1257 |#1|) (-1257 |#1|) (-1257 |#1|)) 25)))
-(((-528 |#1|) (-10 -7 (-15 -2294 ((-1262) (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))) |#1|)) (-15 -1691 ((-1257 |#1|) (-917))) (-15 -2555 ((-1257 |#1|) (-917) (-917))) (-15 -1574 ((-1165 |#1|) (-1257 |#1|))) (-15 -3616 ((-1165 |#1|) (-767))) (-15 -3963 ((-1257 |#1|) (-1257 |#1|) (-767) (-1113))) (-15 -3840 ((-1257 |#1|) (-1257 |#1|) (-767))) (-15 -3514 ((-1257 |#1|) (-1257 |#1|) (-1113) (-1113))) (-15 -3066 ((-1257 |#1|) (-1257 |#1|) (-563))) (-15 ** ((-1257 |#1|) (-1257 |#1|) (-563))) (-15 * ((-1257 |#1|) (-1257 |#1|) (-1257 |#1|))) (-15 -1837 ((-1257 |#1|) (-1257 |#1|) (-1257 |#1|))) (-15 -3793 ((-1257 |#1|) (-1257 |#1|) (-917))) (-15 -1733 ((-1257 |#1|) (-1257 |#1|) (-917))) (-15 -2688 ((-1257 |#1|) (-1257 |#1|))) (-15 -1476 ((-917) (-1257 |#1|))) (-15 -2890 ((-112) (-1257 |#1|))) (-15 -4315 ((-1257 (-1257 |#1|)) (-917))) (-15 -3723 ((-1257 |#1|) (-917))) (-15 -3941 ((-1165 |#1|) (-1257 |#1|)))) (-349)) (T -528))
-((-3941 (*1 *2 *3) (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-1165 *4)) (-5 *1 (-528 *4)))) (-3723 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1257 *4)) (-5 *1 (-528 *4)) (-4 *4 (-349)))) (-4315 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1257 (-1257 *4))) (-5 *1 (-528 *4)) (-4 *4 (-349)))) (-2890 (*1 *2 *3) (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-112)) (-5 *1 (-528 *4)))) (-1476 (*1 *2 *3) (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-917)) (-5 *1 (-528 *4)))) (-2688 (*1 *2 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-349)) (-5 *1 (-528 *3)))) (-1733 (*1 *2 *2 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-917)) (-4 *4 (-349)) (-5 *1 (-528 *4)))) (-3793 (*1 *2 *2 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-917)) (-4 *4 (-349)) (-5 *1 (-528 *4)))) (-1837 (*1 *2 *2 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-349)) (-5 *1 (-528 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-349)) (-5 *1 (-528 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-563)) (-4 *4 (-349)) (-5 *1 (-528 *4)))) (-3066 (*1 *2 *2 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-563)) (-4 *4 (-349)) (-5 *1 (-528 *4)))) (-3514 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-1113)) (-4 *4 (-349)) (-5 *1 (-528 *4)))) (-3840 (*1 *2 *2 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-767)) (-4 *4 (-349)) (-5 *1 (-528 *4)))) (-3963 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1257 *5)) (-5 *3 (-767)) (-5 *4 (-1113)) (-4 *5 (-349)) (-5 *1 (-528 *5)))) (-3616 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1165 *4)) (-5 *1 (-528 *4)) (-4 *4 (-349)))) (-1574 (*1 *2 *3) (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-1165 *4)) (-5 *1 (-528 *4)))) (-2555 (*1 *2 *3 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1257 *4)) (-5 *1 (-528 *4)) (-4 *4 (-349)))) (-1691 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1257 *4)) (-5 *1 (-528 *4)) (-4 *4 (-349)))) (-2294 (*1 *2 *3 *4) (-12 (-5 *3 (-1257 (-640 (-2 (|:| -2619 *4) (|:| -2555 (-1113)))))) (-4 *4 (-349)) (-5 *2 (-1262)) (-5 *1 (-528 *4)))))
-(-10 -7 (-15 -2294 ((-1262) (-1257 (-640 (-2 (|:| -2619 |#1|) (|:| -2555 (-1113))))) |#1|)) (-15 -1691 ((-1257 |#1|) (-917))) (-15 -2555 ((-1257 |#1|) (-917) (-917))) (-15 -1574 ((-1165 |#1|) (-1257 |#1|))) (-15 -3616 ((-1165 |#1|) (-767))) (-15 -3963 ((-1257 |#1|) (-1257 |#1|) (-767) (-1113))) (-15 -3840 ((-1257 |#1|) (-1257 |#1|) (-767))) (-15 -3514 ((-1257 |#1|) (-1257 |#1|) (-1113) (-1113))) (-15 -3066 ((-1257 |#1|) (-1257 |#1|) (-563))) (-15 ** ((-1257 |#1|) (-1257 |#1|) (-563))) (-15 * ((-1257 |#1|) (-1257 |#1|) (-1257 |#1|))) (-15 -1837 ((-1257 |#1|) (-1257 |#1|) (-1257 |#1|))) (-15 -3793 ((-1257 |#1|) (-1257 |#1|) (-917))) (-15 -1733 ((-1257 |#1|) (-1257 |#1|) (-917))) (-15 -2688 ((-1257 |#1|) (-1257 |#1|))) (-15 -1476 ((-917) (-1257 |#1|))) (-15 -2890 ((-112) (-1257 |#1|))) (-15 -4315 ((-1257 (-1257 |#1|)) (-917))) (-15 -3723 ((-1257 |#1|) (-917))) (-15 -3941 ((-1165 |#1|) (-1257 |#1|))))
-((-2843 (((-686 (-1215)) $) NIL)) (-3262 (((-686 (-1214)) $) NIL)) (-3927 (((-686 (-1213)) $) NIL)) (-3429 (((-686 (-548)) $) NIL)) (-1497 (((-686 (-547)) $) NIL)) (-3351 (((-686 (-546)) $) NIL)) (-2513 (((-767) $ (-128)) NIL)) (-2810 (((-686 (-129)) $) 23)) (-1360 (((-1113) $ (-1113)) 28)) (-4368 (((-1113) $) 27)) (-4080 (((-112) $) 18)) (-1503 (($ (-388)) 12) (($ (-1151)) 14)) (-2251 (((-112) $) 24)) (-1693 (((-858) $) 31)) (-3004 (($ $) 25)))
-(((-529) (-13 (-527) (-610 (-858)) (-10 -8 (-15 -1503 ($ (-388))) (-15 -1503 ($ (-1151))) (-15 -2251 ((-112) $)) (-15 -4080 ((-112) $)) (-15 -4368 ((-1113) $)) (-15 -1360 ((-1113) $ (-1113)))))) (T -529))
-((-1503 (*1 *1 *2) (-12 (-5 *2 (-388)) (-5 *1 (-529)))) (-1503 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-529)))) (-2251 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-529)))) (-4080 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-529)))) (-4368 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-529)))) (-1360 (*1 *2 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-529)))))
-(-13 (-527) (-610 (-858)) (-10 -8 (-15 -1503 ($ (-388))) (-15 -1503 ($ (-1151))) (-15 -2251 ((-112) $)) (-15 -4080 ((-112) $)) (-15 -4368 ((-1113) $)) (-15 -1360 ((-1113) $ (-1113)))))
-((-2201 (((-1 |#1| |#1|) |#1|) 11)) (-3124 (((-1 |#1| |#1|)) 10)))
-(((-530 |#1|) (-10 -7 (-15 -3124 ((-1 |#1| |#1|))) (-15 -2201 ((-1 |#1| |#1|) |#1|))) (-13 (-722) (-25))) (T -530))
-((-2201 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-530 *3)) (-4 *3 (-13 (-722) (-25))))) (-3124 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-530 *3)) (-4 *3 (-13 (-722) (-25))))))
-(-10 -7 (-15 -3124 ((-1 |#1| |#1|))) (-15 -2201 ((-1 |#1| |#1|) |#1|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1901 (($ $ $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2751 (($ $) NIL)) (-2588 (($ (-767) |#1|) NIL)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-2240 (($ (-1 (-767) (-767)) $) NIL)) (-3395 ((|#1| $) NIL)) (-2726 (((-767) $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 20)) (-2241 (($) NIL T CONST)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)) (-1814 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL)))
+((-3938 (((-1165 |#1|) (-767)) 75)) (-1731 (((-1257 |#1|) (-1257 |#1|) (-917)) 68)) (-3918 (((-1262) (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))) |#1|) 83)) (-3958 (((-1257 |#1|) (-1257 |#1|) (-767)) 36)) (-1690 (((-1257 |#1|) (-917)) 70)) (-3979 (((-1257 |#1|) (-1257 |#1|) (-563)) 24)) (-3929 (((-1165 |#1|) (-1257 |#1|)) 76)) (-4024 (((-1257 |#1|) (-917)) 94)) (-4002 (((-112) (-1257 |#1|)) 79)) (-3975 (((-1257 |#1|) (-1257 |#1|) (-917)) 61)) (-4035 (((-1165 |#1|) (-1257 |#1|)) 88)) (-3990 (((-917) (-1257 |#1|)) 58)) (-2687 (((-1257 |#1|) (-1257 |#1|)) 30)) (-2552 (((-1257 |#1|) (-917) (-917)) 96)) (-3969 (((-1257 |#1|) (-1257 |#1|) (-1113) (-1113)) 23)) (-3948 (((-1257 |#1|) (-1257 |#1|) (-767) (-1113)) 37)) (-4013 (((-1257 (-1257 |#1|)) (-917)) 93)) (-1836 (((-1257 |#1|) (-1257 |#1|) (-1257 |#1|)) 80)) (** (((-1257 |#1|) (-1257 |#1|) (-563)) 43)) (* (((-1257 |#1|) (-1257 |#1|) (-1257 |#1|)) 25)))
+(((-528 |#1|) (-10 -7 (-15 -3918 ((-1262) (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))) |#1|)) (-15 -1690 ((-1257 |#1|) (-917))) (-15 -2552 ((-1257 |#1|) (-917) (-917))) (-15 -3929 ((-1165 |#1|) (-1257 |#1|))) (-15 -3938 ((-1165 |#1|) (-767))) (-15 -3948 ((-1257 |#1|) (-1257 |#1|) (-767) (-1113))) (-15 -3958 ((-1257 |#1|) (-1257 |#1|) (-767))) (-15 -3969 ((-1257 |#1|) (-1257 |#1|) (-1113) (-1113))) (-15 -3979 ((-1257 |#1|) (-1257 |#1|) (-563))) (-15 ** ((-1257 |#1|) (-1257 |#1|) (-563))) (-15 * ((-1257 |#1|) (-1257 |#1|) (-1257 |#1|))) (-15 -1836 ((-1257 |#1|) (-1257 |#1|) (-1257 |#1|))) (-15 -3975 ((-1257 |#1|) (-1257 |#1|) (-917))) (-15 -1731 ((-1257 |#1|) (-1257 |#1|) (-917))) (-15 -2687 ((-1257 |#1|) (-1257 |#1|))) (-15 -3990 ((-917) (-1257 |#1|))) (-15 -4002 ((-112) (-1257 |#1|))) (-15 -4013 ((-1257 (-1257 |#1|)) (-917))) (-15 -4024 ((-1257 |#1|) (-917))) (-15 -4035 ((-1165 |#1|) (-1257 |#1|)))) (-349)) (T -528))
+((-4035 (*1 *2 *3) (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-1165 *4)) (-5 *1 (-528 *4)))) (-4024 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1257 *4)) (-5 *1 (-528 *4)) (-4 *4 (-349)))) (-4013 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1257 (-1257 *4))) (-5 *1 (-528 *4)) (-4 *4 (-349)))) (-4002 (*1 *2 *3) (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-112)) (-5 *1 (-528 *4)))) (-3990 (*1 *2 *3) (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-917)) (-5 *1 (-528 *4)))) (-2687 (*1 *2 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-349)) (-5 *1 (-528 *3)))) (-1731 (*1 *2 *2 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-917)) (-4 *4 (-349)) (-5 *1 (-528 *4)))) (-3975 (*1 *2 *2 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-917)) (-4 *4 (-349)) (-5 *1 (-528 *4)))) (-1836 (*1 *2 *2 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-349)) (-5 *1 (-528 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-349)) (-5 *1 (-528 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-563)) (-4 *4 (-349)) (-5 *1 (-528 *4)))) (-3979 (*1 *2 *2 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-563)) (-4 *4 (-349)) (-5 *1 (-528 *4)))) (-3969 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-1113)) (-4 *4 (-349)) (-5 *1 (-528 *4)))) (-3958 (*1 *2 *2 *3) (-12 (-5 *2 (-1257 *4)) (-5 *3 (-767)) (-4 *4 (-349)) (-5 *1 (-528 *4)))) (-3948 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1257 *5)) (-5 *3 (-767)) (-5 *4 (-1113)) (-4 *5 (-349)) (-5 *1 (-528 *5)))) (-3938 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1165 *4)) (-5 *1 (-528 *4)) (-4 *4 (-349)))) (-3929 (*1 *2 *3) (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-1165 *4)) (-5 *1 (-528 *4)))) (-2552 (*1 *2 *3 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1257 *4)) (-5 *1 (-528 *4)) (-4 *4 (-349)))) (-1690 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1257 *4)) (-5 *1 (-528 *4)) (-4 *4 (-349)))) (-3918 (*1 *2 *3 *4) (-12 (-5 *3 (-1257 (-640 (-2 (|:| -2618 *4) (|:| -2552 (-1113)))))) (-4 *4 (-349)) (-5 *2 (-1262)) (-5 *1 (-528 *4)))))
+(-10 -7 (-15 -3918 ((-1262) (-1257 (-640 (-2 (|:| -2618 |#1|) (|:| -2552 (-1113))))) |#1|)) (-15 -1690 ((-1257 |#1|) (-917))) (-15 -2552 ((-1257 |#1|) (-917) (-917))) (-15 -3929 ((-1165 |#1|) (-1257 |#1|))) (-15 -3938 ((-1165 |#1|) (-767))) (-15 -3948 ((-1257 |#1|) (-1257 |#1|) (-767) (-1113))) (-15 -3958 ((-1257 |#1|) (-1257 |#1|) (-767))) (-15 -3969 ((-1257 |#1|) (-1257 |#1|) (-1113) (-1113))) (-15 -3979 ((-1257 |#1|) (-1257 |#1|) (-563))) (-15 ** ((-1257 |#1|) (-1257 |#1|) (-563))) (-15 * ((-1257 |#1|) (-1257 |#1|) (-1257 |#1|))) (-15 -1836 ((-1257 |#1|) (-1257 |#1|) (-1257 |#1|))) (-15 -3975 ((-1257 |#1|) (-1257 |#1|) (-917))) (-15 -1731 ((-1257 |#1|) (-1257 |#1|) (-917))) (-15 -2687 ((-1257 |#1|) (-1257 |#1|))) (-15 -3990 ((-917) (-1257 |#1|))) (-15 -4002 ((-112) (-1257 |#1|))) (-15 -4013 ((-1257 (-1257 |#1|)) (-917))) (-15 -4024 ((-1257 |#1|) (-917))) (-15 -4035 ((-1165 |#1|) (-1257 |#1|))))
+((-3884 (((-686 (-1215)) $) NIL)) (-3848 (((-686 (-1214)) $) NIL)) (-3864 (((-686 (-1213)) $) NIL)) (-3896 (((-686 (-548)) $) NIL)) (-3857 (((-686 (-547)) $) NIL)) (-3874 (((-686 (-546)) $) NIL)) (-3839 (((-767) $ (-128)) NIL)) (-3907 (((-686 (-129)) $) 23)) (-4047 (((-1113) $ (-1113)) 28)) (-4369 (((-1113) $) 27)) (-3170 (((-112) $) 18)) (-4069 (($ (-388)) 12) (($ (-1151)) 14)) (-4058 (((-112) $) 24)) (-1692 (((-858) $) 31)) (-1895 (($ $) 25)))
+(((-529) (-13 (-527) (-610 (-858)) (-10 -8 (-15 -4069 ($ (-388))) (-15 -4069 ($ (-1151))) (-15 -4058 ((-112) $)) (-15 -3170 ((-112) $)) (-15 -4369 ((-1113) $)) (-15 -4047 ((-1113) $ (-1113)))))) (T -529))
+((-4069 (*1 *1 *2) (-12 (-5 *2 (-388)) (-5 *1 (-529)))) (-4069 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-529)))) (-4058 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-529)))) (-3170 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-529)))) (-4369 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-529)))) (-4047 (*1 *2 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-529)))))
+(-13 (-527) (-610 (-858)) (-10 -8 (-15 -4069 ($ (-388))) (-15 -4069 ($ (-1151))) (-15 -4058 ((-112) $)) (-15 -3170 ((-112) $)) (-15 -4369 ((-1113) $)) (-15 -4047 ((-1113) $ (-1113)))))
+((-2197 (((-1 |#1| |#1|) |#1|) 11)) (-4080 (((-1 |#1| |#1|)) 10)))
+(((-530 |#1|) (-10 -7 (-15 -4080 ((-1 |#1| |#1|))) (-15 -2197 ((-1 |#1| |#1|) |#1|))) (-13 (-722) (-25))) (T -530))
+((-2197 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-530 *3)) (-4 *3 (-13 (-722) (-25))))) (-4080 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-530 *3)) (-4 *3 (-13 (-722) (-25))))))
+(-10 -7 (-15 -4080 ((-1 |#1| |#1|))) (-15 -2197 ((-1 |#1| |#1|) |#1|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-4092 (($ $ $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2750 (($ $) NIL)) (-2587 (($ (-767) |#1|) NIL)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-2238 (($ (-1 (-767) (-767)) $) NIL)) (-1867 ((|#1| $) NIL)) (-2725 (((-767) $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 20)) (-2239 (($) NIL T CONST)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)) (-1813 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL)))
(((-531 |#1|) (-13 (-789) (-509 (-767) |#1|)) (-846)) (T -531))
NIL
(-13 (-789) (-509 (-767) |#1|))
-((-1478 (((-640 |#2|) (-1165 |#1|) |#3|) 83)) (-1971 (((-640 (-2 (|:| |outval| |#2|) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 |#2|))))) (-684 |#1|) |#3| (-1 (-418 (-1165 |#1|)) (-1165 |#1|))) 100)) (-2113 (((-1165 |#1|) (-684 |#1|)) 95)))
-(((-532 |#1| |#2| |#3|) (-10 -7 (-15 -2113 ((-1165 |#1|) (-684 |#1|))) (-15 -1478 ((-640 |#2|) (-1165 |#1|) |#3|)) (-15 -1971 ((-640 (-2 (|:| |outval| |#2|) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 |#2|))))) (-684 |#1|) |#3| (-1 (-418 (-1165 |#1|)) (-1165 |#1|))))) (-363) (-363) (-13 (-363) (-844))) (T -532))
-((-1971 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-684 *6)) (-5 *5 (-1 (-418 (-1165 *6)) (-1165 *6))) (-4 *6 (-363)) (-5 *2 (-640 (-2 (|:| |outval| *7) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 *7)))))) (-5 *1 (-532 *6 *7 *4)) (-4 *7 (-363)) (-4 *4 (-13 (-363) (-844))))) (-1478 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 *5)) (-4 *5 (-363)) (-5 *2 (-640 *6)) (-5 *1 (-532 *5 *6 *4)) (-4 *6 (-363)) (-4 *4 (-13 (-363) (-844))))) (-2113 (*1 *2 *3) (-12 (-5 *3 (-684 *4)) (-4 *4 (-363)) (-5 *2 (-1165 *4)) (-5 *1 (-532 *4 *5 *6)) (-4 *5 (-363)) (-4 *6 (-13 (-363) (-844))))))
-(-10 -7 (-15 -2113 ((-1165 |#1|) (-684 |#1|))) (-15 -1478 ((-640 |#2|) (-1165 |#1|) |#3|)) (-15 -1971 ((-640 (-2 (|:| |outval| |#2|) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 |#2|))))) (-684 |#1|) |#3| (-1 (-418 (-1165 |#1|)) (-1165 |#1|)))))
-((-2577 (((-686 (-1215)) $ (-1215)) NIL)) (-2871 (((-686 (-548)) $ (-548)) NIL)) (-2910 (((-767) $ (-128)) 39)) (-1717 (((-686 (-129)) $ (-129)) 40)) (-2843 (((-686 (-1215)) $) NIL)) (-3262 (((-686 (-1214)) $) NIL)) (-3927 (((-686 (-1213)) $) NIL)) (-3429 (((-686 (-548)) $) NIL)) (-1497 (((-686 (-547)) $) NIL)) (-3351 (((-686 (-546)) $) NIL)) (-2513 (((-767) $ (-128)) 34)) (-2810 (((-686 (-129)) $) 37)) (-2791 (((-112) $) 29)) (-2755 (((-686 $) (-578) (-950)) 19) (((-686 $) (-491) (-950)) 26)) (-1693 (((-858) $) 49)) (-3004 (($ $) 41)))
-(((-533) (-13 (-763 (-578)) (-610 (-858)) (-10 -8 (-15 -2755 ((-686 $) (-491) (-950)))))) (T -533))
-((-2755 (*1 *2 *3 *4) (-12 (-5 *3 (-491)) (-5 *4 (-950)) (-5 *2 (-686 (-533))) (-5 *1 (-533)))))
-(-13 (-763 (-578)) (-610 (-858)) (-10 -8 (-15 -2755 ((-686 $) (-491) (-950)))))
-((-3625 (((-839 (-563))) 12)) (-3637 (((-839 (-563))) 14)) (-2191 (((-829 (-563))) 9)))
-(((-534) (-10 -7 (-15 -2191 ((-829 (-563)))) (-15 -3625 ((-839 (-563)))) (-15 -3637 ((-839 (-563)))))) (T -534))
-((-3637 (*1 *2) (-12 (-5 *2 (-839 (-563))) (-5 *1 (-534)))) (-3625 (*1 *2) (-12 (-5 *2 (-839 (-563))) (-5 *1 (-534)))) (-2191 (*1 *2) (-12 (-5 *2 (-829 (-563))) (-5 *1 (-534)))))
-(-10 -7 (-15 -2191 ((-829 (-563)))) (-15 -3625 ((-839 (-563)))) (-15 -3637 ((-839 (-563)))))
-((-3670 (((-536) (-1169)) 15)) (-2029 ((|#1| (-536)) 20)))
-(((-535 |#1|) (-10 -7 (-15 -3670 ((-536) (-1169))) (-15 -2029 (|#1| (-536)))) (-1208)) (T -535))
-((-2029 (*1 *2 *3) (-12 (-5 *3 (-536)) (-5 *1 (-535 *2)) (-4 *2 (-1208)))) (-3670 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-536)) (-5 *1 (-535 *4)) (-4 *4 (-1208)))))
-(-10 -7 (-15 -3670 ((-536) (-1169))) (-15 -2029 (|#1| (-536))))
-((-1677 (((-112) $ $) NIL)) (-3281 (((-1151) $) 47)) (-3264 (((-112) $) 43)) (-3674 (((-1169) $) 44)) (-4072 (((-112) $) 41)) (-3736 (((-1151) $) 42)) (-3633 (($ (-1151)) 48)) (-3611 (((-112) $) NIL)) (-3243 (((-112) $) NIL)) (-2341 (((-112) $) NIL)) (-3573 (((-1151) $) NIL)) (-1738 (($ $ (-640 (-1169))) 20)) (-2029 (((-52) $) 22)) (-3532 (((-112) $) NIL)) (-3701 (((-563) $) NIL)) (-1694 (((-1113) $) NIL)) (-1516 (($ $ (-640 (-1169)) (-1169)) 60)) (-3636 (((-112) $) NIL)) (-4340 (((-225) $) NIL)) (-3887 (($ $) 38)) (-2474 (((-858) $) NIL)) (-1420 (((-112) $ $) NIL)) (-2309 (($ $ (-563)) NIL) (($ $ (-640 (-563))) NIL)) (-2546 (((-640 $) $) 28)) (-4278 (((-1169) (-640 $)) 49)) (-2220 (($ (-1151)) NIL) (($ (-1169)) 18) (($ (-563)) 8) (($ (-225)) 25) (($ (-858)) NIL) (($ (-640 $)) 56) (((-1097) $) 11) (($ (-1097)) 12)) (-1556 (((-1169) (-1169) (-640 $)) 52)) (-1693 (((-858) $) 46)) (-3673 (($ $) 51)) (-3662 (($ $) 50)) (-3330 (($ $ (-640 $)) 57)) (-1323 (((-112) $) 27)) (-2241 (($) 9 T CONST)) (-2254 (($) 10 T CONST)) (-1718 (((-112) $ $) 61)) (-1837 (($ $ $) 66)) (-1814 (($ $ $) 62)) (** (($ $ (-767)) 65) (($ $ (-563)) 64)) (* (($ $ $) 63)) (-3608 (((-563) $) NIL)))
-(((-536) (-13 (-1096 (-1151) (-1169) (-563) (-225) (-858)) (-611 (-1097)) (-10 -8 (-15 -2029 ((-52) $)) (-15 -2220 ($ (-1097))) (-15 -3330 ($ $ (-640 $))) (-15 -1516 ($ $ (-640 (-1169)) (-1169))) (-15 -1738 ($ $ (-640 (-1169)))) (-15 -1814 ($ $ $)) (-15 * ($ $ $)) (-15 -1837 ($ $ $)) (-15 ** ($ $ (-767))) (-15 ** ($ $ (-563))) (-15 0 ($) -2669) (-15 1 ($) -2669) (-15 -3887 ($ $)) (-15 -3281 ((-1151) $)) (-15 -3633 ($ (-1151))) (-15 -4278 ((-1169) (-640 $))) (-15 -1556 ((-1169) (-1169) (-640 $)))))) (T -536))
-((-2029 (*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-536)))) (-2220 (*1 *1 *2) (-12 (-5 *2 (-1097)) (-5 *1 (-536)))) (-3330 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-536))) (-5 *1 (-536)))) (-1516 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-1169)) (-5 *1 (-536)))) (-1738 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-536)))) (-1814 (*1 *1 *1 *1) (-5 *1 (-536))) (* (*1 *1 *1 *1) (-5 *1 (-536))) (-1837 (*1 *1 *1 *1) (-5 *1 (-536))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-536)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-536)))) (-2241 (*1 *1) (-5 *1 (-536))) (-2254 (*1 *1) (-5 *1 (-536))) (-3887 (*1 *1 *1) (-5 *1 (-536))) (-3281 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-536)))) (-3633 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-536)))) (-4278 (*1 *2 *3) (-12 (-5 *3 (-640 (-536))) (-5 *2 (-1169)) (-5 *1 (-536)))) (-1556 (*1 *2 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-536))) (-5 *1 (-536)))))
-(-13 (-1096 (-1151) (-1169) (-563) (-225) (-858)) (-611 (-1097)) (-10 -8 (-15 -2029 ((-52) $)) (-15 -2220 ($ (-1097))) (-15 -3330 ($ $ (-640 $))) (-15 -1516 ($ $ (-640 (-1169)) (-1169))) (-15 -1738 ($ $ (-640 (-1169)))) (-15 -1814 ($ $ $)) (-15 * ($ $ $)) (-15 -1837 ($ $ $)) (-15 ** ($ $ (-767))) (-15 ** ($ $ (-563))) (-15 (-2241) ($) -2669) (-15 (-2254) ($) -2669) (-15 -3887 ($ $)) (-15 -3281 ((-1151) $)) (-15 -3633 ($ (-1151))) (-15 -4278 ((-1169) (-640 $))) (-15 -1556 ((-1169) (-1169) (-640 $)))))
-((-1622 ((|#2| |#2|) 17)) (-3462 ((|#2| |#2|) 13)) (-3282 ((|#2| |#2| (-563) (-563)) 20)) (-2028 ((|#2| |#2|) 15)))
-(((-537 |#1| |#2|) (-10 -7 (-15 -3462 (|#2| |#2|)) (-15 -2028 (|#2| |#2|)) (-15 -1622 (|#2| |#2|)) (-15 -3282 (|#2| |#2| (-563) (-563)))) (-13 (-555) (-147)) (-1248 |#1|)) (T -537))
-((-3282 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-563)) (-4 *4 (-13 (-555) (-147))) (-5 *1 (-537 *4 *2)) (-4 *2 (-1248 *4)))) (-1622 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-147))) (-5 *1 (-537 *3 *2)) (-4 *2 (-1248 *3)))) (-2028 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-147))) (-5 *1 (-537 *3 *2)) (-4 *2 (-1248 *3)))) (-3462 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-147))) (-5 *1 (-537 *3 *2)) (-4 *2 (-1248 *3)))))
-(-10 -7 (-15 -3462 (|#2| |#2|)) (-15 -2028 (|#2| |#2|)) (-15 -1622 (|#2| |#2|)) (-15 -3282 (|#2| |#2| (-563) (-563))))
-((-1844 (((-640 (-294 (-948 |#2|))) (-640 |#2|) (-640 (-1169))) 32)) (-2967 (((-640 |#2|) (-948 |#1|) |#3|) 53) (((-640 |#2|) (-1165 |#1|) |#3|) 52)) (-2647 (((-640 (-640 |#2|)) (-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169)) |#3|) 88)))
-(((-538 |#1| |#2| |#3|) (-10 -7 (-15 -2967 ((-640 |#2|) (-1165 |#1|) |#3|)) (-15 -2967 ((-640 |#2|) (-948 |#1|) |#3|)) (-15 -2647 ((-640 (-640 |#2|)) (-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169)) |#3|)) (-15 -1844 ((-640 (-294 (-948 |#2|))) (-640 |#2|) (-640 (-1169))))) (-452) (-363) (-13 (-363) (-844))) (T -538))
-((-1844 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *6)) (-5 *4 (-640 (-1169))) (-4 *6 (-363)) (-5 *2 (-640 (-294 (-948 *6)))) (-5 *1 (-538 *5 *6 *7)) (-4 *5 (-452)) (-4 *7 (-13 (-363) (-844))))) (-2647 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-640 (-948 *6))) (-5 *4 (-640 (-1169))) (-4 *6 (-452)) (-5 *2 (-640 (-640 *7))) (-5 *1 (-538 *6 *7 *5)) (-4 *7 (-363)) (-4 *5 (-13 (-363) (-844))))) (-2967 (*1 *2 *3 *4) (-12 (-5 *3 (-948 *5)) (-4 *5 (-452)) (-5 *2 (-640 *6)) (-5 *1 (-538 *5 *6 *4)) (-4 *6 (-363)) (-4 *4 (-13 (-363) (-844))))) (-2967 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 *5)) (-4 *5 (-452)) (-5 *2 (-640 *6)) (-5 *1 (-538 *5 *6 *4)) (-4 *6 (-363)) (-4 *4 (-13 (-363) (-844))))))
-(-10 -7 (-15 -2967 ((-640 |#2|) (-1165 |#1|) |#3|)) (-15 -2967 ((-640 |#2|) (-948 |#1|) |#3|)) (-15 -2647 ((-640 (-640 |#2|)) (-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169)) |#3|)) (-15 -1844 ((-640 (-294 (-948 |#2|))) (-640 |#2|) (-640 (-1169)))))
-((-2472 ((|#2| |#2| |#1|) 17)) (-4125 ((|#2| (-640 |#2|)) 26)) (-3362 ((|#2| (-640 |#2|)) 45)))
-(((-539 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4125 (|#2| (-640 |#2|))) (-15 -3362 (|#2| (-640 |#2|))) (-15 -2472 (|#2| |#2| |#1|))) (-307) (-1233 |#1|) |#1| (-1 |#1| |#1| (-767))) (T -539))
-((-2472 (*1 *2 *2 *3) (-12 (-4 *3 (-307)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-767))) (-5 *1 (-539 *3 *2 *4 *5)) (-4 *2 (-1233 *3)))) (-3362 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-1233 *4)) (-5 *1 (-539 *4 *2 *5 *6)) (-4 *4 (-307)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-767))))) (-4125 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-1233 *4)) (-5 *1 (-539 *4 *2 *5 *6)) (-4 *4 (-307)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-767))))))
-(-10 -7 (-15 -4125 (|#2| (-640 |#2|))) (-15 -3362 (|#2| (-640 |#2|))) (-15 -2472 (|#2| |#2| |#1|)))
-((-2174 (((-418 (-1165 |#4|)) (-1165 |#4|) (-1 (-418 (-1165 |#3|)) (-1165 |#3|))) 79) (((-418 |#4|) |#4| (-1 (-418 (-1165 |#3|)) (-1165 |#3|))) 167)))
-(((-540 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2174 ((-418 |#4|) |#4| (-1 (-418 (-1165 |#3|)) (-1165 |#3|)))) (-15 -2174 ((-418 (-1165 |#4|)) (-1165 |#4|) (-1 (-418 (-1165 |#3|)) (-1165 |#3|))))) (-846) (-789) (-13 (-307) (-147)) (-945 |#3| |#2| |#1|)) (T -540))
-((-2174 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-418 (-1165 *7)) (-1165 *7))) (-4 *7 (-13 (-307) (-147))) (-4 *5 (-846)) (-4 *6 (-789)) (-4 *8 (-945 *7 *6 *5)) (-5 *2 (-418 (-1165 *8))) (-5 *1 (-540 *5 *6 *7 *8)) (-5 *3 (-1165 *8)))) (-2174 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-418 (-1165 *7)) (-1165 *7))) (-4 *7 (-13 (-307) (-147))) (-4 *5 (-846)) (-4 *6 (-789)) (-5 *2 (-418 *3)) (-5 *1 (-540 *5 *6 *7 *3)) (-4 *3 (-945 *7 *6 *5)))))
-(-10 -7 (-15 -2174 ((-418 |#4|) |#4| (-1 (-418 (-1165 |#3|)) (-1165 |#3|)))) (-15 -2174 ((-418 (-1165 |#4|)) (-1165 |#4|) (-1 (-418 (-1165 |#3|)) (-1165 |#3|)))))
-((-1622 ((|#4| |#4|) 73)) (-3462 ((|#4| |#4|) 69)) (-3282 ((|#4| |#4| (-563) (-563)) 75)) (-2028 ((|#4| |#4|) 71)))
-(((-541 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3462 (|#4| |#4|)) (-15 -2028 (|#4| |#4|)) (-15 -1622 (|#4| |#4|)) (-15 -3282 (|#4| |#4| (-563) (-563)))) (-13 (-363) (-368) (-611 (-563))) (-1233 |#1|) (-720 |#1| |#2|) (-1248 |#3|)) (T -541))
-((-3282 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-563)) (-4 *4 (-13 (-363) (-368) (-611 *3))) (-4 *5 (-1233 *4)) (-4 *6 (-720 *4 *5)) (-5 *1 (-541 *4 *5 *6 *2)) (-4 *2 (-1248 *6)))) (-1622 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-4 *4 (-1233 *3)) (-4 *5 (-720 *3 *4)) (-5 *1 (-541 *3 *4 *5 *2)) (-4 *2 (-1248 *5)))) (-2028 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-4 *4 (-1233 *3)) (-4 *5 (-720 *3 *4)) (-5 *1 (-541 *3 *4 *5 *2)) (-4 *2 (-1248 *5)))) (-3462 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-4 *4 (-1233 *3)) (-4 *5 (-720 *3 *4)) (-5 *1 (-541 *3 *4 *5 *2)) (-4 *2 (-1248 *5)))))
-(-10 -7 (-15 -3462 (|#4| |#4|)) (-15 -2028 (|#4| |#4|)) (-15 -1622 (|#4| |#4|)) (-15 -3282 (|#4| |#4| (-563) (-563))))
-((-1622 ((|#2| |#2|) 27)) (-3462 ((|#2| |#2|) 23)) (-3282 ((|#2| |#2| (-563) (-563)) 29)) (-2028 ((|#2| |#2|) 25)))
-(((-542 |#1| |#2|) (-10 -7 (-15 -3462 (|#2| |#2|)) (-15 -2028 (|#2| |#2|)) (-15 -1622 (|#2| |#2|)) (-15 -3282 (|#2| |#2| (-563) (-563)))) (-13 (-363) (-368) (-611 (-563))) (-1248 |#1|)) (T -542))
-((-3282 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-563)) (-4 *4 (-13 (-363) (-368) (-611 *3))) (-5 *1 (-542 *4 *2)) (-4 *2 (-1248 *4)))) (-1622 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-5 *1 (-542 *3 *2)) (-4 *2 (-1248 *3)))) (-2028 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-5 *1 (-542 *3 *2)) (-4 *2 (-1248 *3)))) (-3462 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-5 *1 (-542 *3 *2)) (-4 *2 (-1248 *3)))))
-(-10 -7 (-15 -3462 (|#2| |#2|)) (-15 -2028 (|#2| |#2|)) (-15 -1622 (|#2| |#2|)) (-15 -3282 (|#2| |#2| (-563) (-563))))
-((-2043 (((-3 (-563) "failed") |#2| |#1| (-1 (-3 (-563) "failed") |#1|)) 14) (((-3 (-563) "failed") |#2| |#1| (-563) (-1 (-3 (-563) "failed") |#1|)) 13) (((-3 (-563) "failed") |#2| (-563) (-1 (-3 (-563) "failed") |#1|)) 26)))
-(((-543 |#1| |#2|) (-10 -7 (-15 -2043 ((-3 (-563) "failed") |#2| (-563) (-1 (-3 (-563) "failed") |#1|))) (-15 -2043 ((-3 (-563) "failed") |#2| |#1| (-563) (-1 (-3 (-563) "failed") |#1|))) (-15 -2043 ((-3 (-563) "failed") |#2| |#1| (-1 (-3 (-563) "failed") |#1|)))) (-1045) (-1233 |#1|)) (T -543))
-((-2043 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-563) "failed") *4)) (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-543 *4 *3)) (-4 *3 (-1233 *4)))) (-2043 (*1 *2 *3 *4 *2 *5) (|partial| -12 (-5 *5 (-1 (-3 (-563) "failed") *4)) (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-543 *4 *3)) (-4 *3 (-1233 *4)))) (-2043 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *4 (-1 (-3 (-563) "failed") *5)) (-4 *5 (-1045)) (-5 *2 (-563)) (-5 *1 (-543 *5 *3)) (-4 *3 (-1233 *5)))))
-(-10 -7 (-15 -2043 ((-3 (-563) "failed") |#2| (-563) (-1 (-3 (-563) "failed") |#1|))) (-15 -2043 ((-3 (-563) "failed") |#2| |#1| (-563) (-1 (-3 (-563) "failed") |#1|))) (-15 -2043 ((-3 (-563) "failed") |#2| |#1| (-1 (-3 (-563) "failed") |#1|))))
-((-1433 (($ $ $) 78)) (-3205 (((-418 $) $) 46)) (-2131 (((-3 (-563) "failed") $) 58)) (-2058 (((-563) $) 36)) (-3909 (((-3 (-407 (-563)) "failed") $) 73)) (-2239 (((-112) $) 23)) (-2651 (((-407 (-563)) $) 71)) (-2468 (((-112) $) 49)) (-4362 (($ $ $ $) 85)) (-3101 (((-112) $) 15)) (-3972 (($ $ $) 56)) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 68)) (-2408 (((-3 $ "failed") $) 63)) (-2646 (($ $) 22)) (-3364 (($ $ $) 83)) (-2523 (($) 59)) (-3219 (($ $) 52)) (-2174 (((-418 $) $) 44)) (-2359 (((-112) $) 13)) (-2628 (((-767) $) 27)) (-4202 (($ $ (-767)) NIL) (($ $) 10)) (-1872 (($ $) 16)) (-2220 (((-563) $) NIL) (((-536) $) 35) (((-888 (-563)) $) 39) (((-379) $) 30) (((-225) $) 32)) (-1675 (((-767)) 8)) (-1570 (((-112) $ $) 19)) (-2869 (($ $ $) 54)))
-(((-544 |#1|) (-10 -8 (-15 -3364 (|#1| |#1| |#1|)) (-15 -4362 (|#1| |#1| |#1| |#1|)) (-15 -2646 (|#1| |#1|)) (-15 -1872 (|#1| |#1|)) (-15 -3909 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2651 ((-407 (-563)) |#1|)) (-15 -2239 ((-112) |#1|)) (-15 -1433 (|#1| |#1| |#1|)) (-15 -1570 ((-112) |#1| |#1|)) (-15 -2359 ((-112) |#1|)) (-15 -2523 (|#1|)) (-15 -2408 ((-3 |#1| "failed") |#1|)) (-15 -2220 ((-225) |#1|)) (-15 -2220 ((-379) |#1|)) (-15 -3972 (|#1| |#1| |#1|)) (-15 -3219 (|#1| |#1|)) (-15 -2869 (|#1| |#1| |#1|)) (-15 -3787 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -2220 ((-888 (-563)) |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2220 ((-563) |#1|)) (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -3101 ((-112) |#1|)) (-15 -2628 ((-767) |#1|)) (-15 -2174 ((-418 |#1|) |#1|)) (-15 -3205 ((-418 |#1|) |#1|)) (-15 -2468 ((-112) |#1|)) (-15 -1675 ((-767)))) (-545)) (T -544))
-((-1675 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-544 *3)) (-4 *3 (-545)))))
-(-10 -8 (-15 -3364 (|#1| |#1| |#1|)) (-15 -4362 (|#1| |#1| |#1| |#1|)) (-15 -2646 (|#1| |#1|)) (-15 -1872 (|#1| |#1|)) (-15 -3909 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2651 ((-407 (-563)) |#1|)) (-15 -2239 ((-112) |#1|)) (-15 -1433 (|#1| |#1| |#1|)) (-15 -1570 ((-112) |#1| |#1|)) (-15 -2359 ((-112) |#1|)) (-15 -2523 (|#1|)) (-15 -2408 ((-3 |#1| "failed") |#1|)) (-15 -2220 ((-225) |#1|)) (-15 -2220 ((-379) |#1|)) (-15 -3972 (|#1| |#1| |#1|)) (-15 -3219 (|#1| |#1|)) (-15 -2869 (|#1| |#1| |#1|)) (-15 -3787 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -2220 ((-888 (-563)) |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2220 ((-563) |#1|)) (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -3101 ((-112) |#1|)) (-15 -2628 ((-767) |#1|)) (-15 -2174 ((-418 |#1|) |#1|)) (-15 -3205 ((-418 |#1|) |#1|)) (-15 -2468 ((-112) |#1|)) (-15 -1675 ((-767))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-1433 (($ $ $) 85)) (-1495 (((-3 $ "failed") $ $) 19)) (-2448 (($ $ $ $) 74)) (-4335 (($ $) 52)) (-3205 (((-418 $) $) 53)) (-1919 (((-112) $ $) 125)) (-1857 (((-563) $) 114)) (-3458 (($ $ $) 88)) (-4239 (($) 17 T CONST)) (-2131 (((-3 (-563) "failed") $) 106)) (-2058 (((-563) $) 107)) (-3090 (($ $ $) 129)) (-2950 (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 104) (((-684 (-563)) (-684 $)) 103)) (-3400 (((-3 $ "failed") $) 33)) (-3909 (((-3 (-407 (-563)) "failed") $) 82)) (-2239 (((-112) $) 84)) (-2651 (((-407 (-563)) $) 83)) (-1691 (($) 81) (($ $) 80)) (-3050 (($ $ $) 128)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 123)) (-2468 (((-112) $) 54)) (-4362 (($ $ $ $) 72)) (-1544 (($ $ $) 86)) (-3101 (((-112) $) 116)) (-3972 (($ $ $) 97)) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 100)) (-3827 (((-112) $) 31)) (-3131 (((-112) $) 92)) (-2408 (((-3 $ "failed") $) 94)) (-1419 (((-112) $) 115)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 132)) (-2692 (($ $ $ $) 73)) (-3084 (($ $ $) 117)) (-1777 (($ $ $) 118)) (-2646 (($ $) 76)) (-3415 (($ $) 89)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-3364 (($ $ $) 71)) (-2523 (($) 93 T CONST)) (-2824 (($ $) 78)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-3219 (($ $) 98)) (-2174 (((-418 $) $) 51)) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 131) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 130)) (-3008 (((-3 $ "failed") $ $) 43)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 124)) (-2359 (((-112) $) 91)) (-2628 (((-767) $) 126)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 127)) (-4202 (($ $ (-767)) 111) (($ $) 109)) (-3872 (($ $) 77)) (-1872 (($ $) 79)) (-2220 (((-563) $) 108) (((-536) $) 102) (((-888 (-563)) $) 101) (((-379) $) 96) (((-225) $) 95)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-563)) 105)) (-1675 (((-767)) 28)) (-1570 (((-112) $ $) 87)) (-2869 (($ $ $) 99)) (-4211 (($) 90)) (-2126 (((-112) $ $) 40)) (-2039 (($ $ $ $) 75)) (-2509 (($ $) 113)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ (-767)) 112) (($ $) 110)) (-1778 (((-112) $ $) 120)) (-1756 (((-112) $ $) 121)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 119)) (-1744 (((-112) $ $) 122)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-4101 (((-640 |#2|) (-1165 |#1|) |#3|) 83)) (-4114 (((-640 (-2 (|:| |outval| |#2|) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 |#2|))))) (-684 |#1|) |#3| (-1 (-418 (-1165 |#1|)) (-1165 |#1|))) 100)) (-4090 (((-1165 |#1|) (-684 |#1|)) 95)))
+(((-532 |#1| |#2| |#3|) (-10 -7 (-15 -4090 ((-1165 |#1|) (-684 |#1|))) (-15 -4101 ((-640 |#2|) (-1165 |#1|) |#3|)) (-15 -4114 ((-640 (-2 (|:| |outval| |#2|) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 |#2|))))) (-684 |#1|) |#3| (-1 (-418 (-1165 |#1|)) (-1165 |#1|))))) (-363) (-363) (-13 (-363) (-844))) (T -532))
+((-4114 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-684 *6)) (-5 *5 (-1 (-418 (-1165 *6)) (-1165 *6))) (-4 *6 (-363)) (-5 *2 (-640 (-2 (|:| |outval| *7) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 *7)))))) (-5 *1 (-532 *6 *7 *4)) (-4 *7 (-363)) (-4 *4 (-13 (-363) (-844))))) (-4101 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 *5)) (-4 *5 (-363)) (-5 *2 (-640 *6)) (-5 *1 (-532 *5 *6 *4)) (-4 *6 (-363)) (-4 *4 (-13 (-363) (-844))))) (-4090 (*1 *2 *3) (-12 (-5 *3 (-684 *4)) (-4 *4 (-363)) (-5 *2 (-1165 *4)) (-5 *1 (-532 *4 *5 *6)) (-4 *5 (-363)) (-4 *6 (-13 (-363) (-844))))))
+(-10 -7 (-15 -4090 ((-1165 |#1|) (-684 |#1|))) (-15 -4101 ((-640 |#2|) (-1165 |#1|) |#3|)) (-15 -4114 ((-640 (-2 (|:| |outval| |#2|) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 |#2|))))) (-684 |#1|) |#3| (-1 (-418 (-1165 |#1|)) (-1165 |#1|)))))
+((-3233 (((-686 (-1215)) $ (-1215)) NIL)) (-3243 (((-686 (-548)) $ (-548)) NIL)) (-3225 (((-767) $ (-128)) 41)) (-3254 (((-686 (-129)) $ (-129)) 42)) (-3884 (((-686 (-1215)) $) NIL)) (-3848 (((-686 (-1214)) $) NIL)) (-3864 (((-686 (-1213)) $) NIL)) (-3896 (((-686 (-548)) $) NIL)) (-3857 (((-686 (-547)) $) NIL)) (-3874 (((-686 (-546)) $) NIL)) (-3839 (((-767) $ (-128)) 37)) (-3907 (((-686 (-129)) $) 39)) (-1791 (((-112) $) 29)) (-1803 (((-686 $) (-578) (-950)) 19) (((-686 $) (-491) (-950)) 26)) (-1692 (((-858) $) 51)) (-1895 (($ $) 43)))
+(((-533) (-13 (-763 (-578)) (-610 (-858)) (-10 -8 (-15 -1803 ((-686 $) (-491) (-950)))))) (T -533))
+((-1803 (*1 *2 *3 *4) (-12 (-5 *3 (-491)) (-5 *4 (-950)) (-5 *2 (-686 (-533))) (-5 *1 (-533)))))
+(-13 (-763 (-578)) (-610 (-858)) (-10 -8 (-15 -1803 ((-686 $) (-491) (-950)))))
+((-3626 (((-839 (-563))) 12)) (-3638 (((-839 (-563))) 14)) (-2191 (((-829 (-563))) 9)))
+(((-534) (-10 -7 (-15 -2191 ((-829 (-563)))) (-15 -3626 ((-839 (-563)))) (-15 -3638 ((-839 (-563)))))) (T -534))
+((-3638 (*1 *2) (-12 (-5 *2 (-839 (-563))) (-5 *1 (-534)))) (-3626 (*1 *2) (-12 (-5 *2 (-839 (-563))) (-5 *1 (-534)))) (-2191 (*1 *2) (-12 (-5 *2 (-829 (-563))) (-5 *1 (-534)))))
+(-10 -7 (-15 -2191 ((-829 (-563)))) (-15 -3626 ((-839 (-563)))) (-15 -3638 ((-839 (-563)))))
+((-4158 (((-536) (-1169)) 15)) (-2028 ((|#1| (-536)) 20)))
+(((-535 |#1|) (-10 -7 (-15 -4158 ((-536) (-1169))) (-15 -2028 (|#1| (-536)))) (-1208)) (T -535))
+((-2028 (*1 *2 *3) (-12 (-5 *3 (-536)) (-5 *1 (-535 *2)) (-4 *2 (-1208)))) (-4158 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-536)) (-5 *1 (-535 *4)) (-4 *4 (-1208)))))
+(-10 -7 (-15 -4158 ((-536) (-1169))) (-15 -2028 (|#1| (-536))))
+((-1677 (((-112) $ $) NIL)) (-4136 (((-1151) $) 47)) (-2748 (((-112) $) 43)) (-3675 (((-1169) $) 44)) (-2759 (((-112) $) 41)) (-3737 (((-1151) $) 42)) (-4124 (($ (-1151)) 48)) (-2781 (((-112) $) NIL)) (-2801 (((-112) $) NIL)) (-2769 (((-112) $) NIL)) (-3854 (((-1151) $) NIL)) (-1739 (($ $ (-640 (-1169))) 20)) (-2028 (((-52) $) 22)) (-2736 (((-112) $) NIL)) (-3702 (((-563) $) NIL)) (-1693 (((-1113) $) NIL)) (-1518 (($ $ (-640 (-1169)) (-1169)) 60)) (-2724 (((-112) $) NIL)) (-4341 (((-225) $) NIL)) (-3887 (($ $) 38)) (-2473 (((-858) $) NIL)) (-1420 (((-112) $ $) NIL)) (-2308 (($ $ (-563)) NIL) (($ $ (-640 (-563))) NIL)) (-2545 (((-640 $) $) 28)) (-4279 (((-1169) (-640 $)) 49)) (-2219 (($ (-1151)) NIL) (($ (-1169)) 18) (($ (-563)) 8) (($ (-225)) 25) (($ (-858)) NIL) (($ (-640 $)) 56) (((-1097) $) 11) (($ (-1097)) 12)) (-1555 (((-1169) (-1169) (-640 $)) 52)) (-1692 (((-858) $) 46)) (-3674 (($ $) 51)) (-3663 (($ $) 50)) (-4148 (($ $ (-640 $)) 57)) (-2791 (((-112) $) 27)) (-2239 (($) 9 T CONST)) (-2253 (($) 10 T CONST)) (-1718 (((-112) $ $) 61)) (-1836 (($ $ $) 66)) (-1813 (($ $ $) 62)) (** (($ $ (-767)) 65) (($ $ (-563)) 64)) (* (($ $ $) 63)) (-3610 (((-563) $) NIL)))
+(((-536) (-13 (-1096 (-1151) (-1169) (-563) (-225) (-858)) (-611 (-1097)) (-10 -8 (-15 -2028 ((-52) $)) (-15 -2219 ($ (-1097))) (-15 -4148 ($ $ (-640 $))) (-15 -1518 ($ $ (-640 (-1169)) (-1169))) (-15 -1739 ($ $ (-640 (-1169)))) (-15 -1813 ($ $ $)) (-15 * ($ $ $)) (-15 -1836 ($ $ $)) (-15 ** ($ $ (-767))) (-15 ** ($ $ (-563))) (-15 0 ($) -2668) (-15 1 ($) -2668) (-15 -3887 ($ $)) (-15 -4136 ((-1151) $)) (-15 -4124 ($ (-1151))) (-15 -4279 ((-1169) (-640 $))) (-15 -1555 ((-1169) (-1169) (-640 $)))))) (T -536))
+((-2028 (*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-536)))) (-2219 (*1 *1 *2) (-12 (-5 *2 (-1097)) (-5 *1 (-536)))) (-4148 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-536))) (-5 *1 (-536)))) (-1518 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-1169)) (-5 *1 (-536)))) (-1739 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-536)))) (-1813 (*1 *1 *1 *1) (-5 *1 (-536))) (* (*1 *1 *1 *1) (-5 *1 (-536))) (-1836 (*1 *1 *1 *1) (-5 *1 (-536))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-536)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-536)))) (-2239 (*1 *1) (-5 *1 (-536))) (-2253 (*1 *1) (-5 *1 (-536))) (-3887 (*1 *1 *1) (-5 *1 (-536))) (-4136 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-536)))) (-4124 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-536)))) (-4279 (*1 *2 *3) (-12 (-5 *3 (-640 (-536))) (-5 *2 (-1169)) (-5 *1 (-536)))) (-1555 (*1 *2 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-536))) (-5 *1 (-536)))))
+(-13 (-1096 (-1151) (-1169) (-563) (-225) (-858)) (-611 (-1097)) (-10 -8 (-15 -2028 ((-52) $)) (-15 -2219 ($ (-1097))) (-15 -4148 ($ $ (-640 $))) (-15 -1518 ($ $ (-640 (-1169)) (-1169))) (-15 -1739 ($ $ (-640 (-1169)))) (-15 -1813 ($ $ $)) (-15 * ($ $ $)) (-15 -1836 ($ $ $)) (-15 ** ($ $ (-767))) (-15 ** ($ $ (-563))) (-15 (-2239) ($) -2668) (-15 (-2253) ($) -2668) (-15 -3887 ($ $)) (-15 -4136 ((-1151) $)) (-15 -4124 ($ (-1151))) (-15 -4279 ((-1169) (-640 $))) (-15 -1555 ((-1169) (-1169) (-640 $)))))
+((-2011 ((|#2| |#2|) 17)) (-1992 ((|#2| |#2|) 13)) (-2019 ((|#2| |#2| (-563) (-563)) 20)) (-2002 ((|#2| |#2|) 15)))
+(((-537 |#1| |#2|) (-10 -7 (-15 -1992 (|#2| |#2|)) (-15 -2002 (|#2| |#2|)) (-15 -2011 (|#2| |#2|)) (-15 -2019 (|#2| |#2| (-563) (-563)))) (-13 (-555) (-147)) (-1248 |#1|)) (T -537))
+((-2019 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-563)) (-4 *4 (-13 (-555) (-147))) (-5 *1 (-537 *4 *2)) (-4 *2 (-1248 *4)))) (-2011 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-147))) (-5 *1 (-537 *3 *2)) (-4 *2 (-1248 *3)))) (-2002 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-147))) (-5 *1 (-537 *3 *2)) (-4 *2 (-1248 *3)))) (-1992 (*1 *2 *2) (-12 (-4 *3 (-13 (-555) (-147))) (-5 *1 (-537 *3 *2)) (-4 *2 (-1248 *3)))))
+(-10 -7 (-15 -1992 (|#2| |#2|)) (-15 -2002 (|#2| |#2|)) (-15 -2011 (|#2| |#2|)) (-15 -2019 (|#2| |#2| (-563) (-563))))
+((-4189 (((-640 (-294 (-948 |#2|))) (-640 |#2|) (-640 (-1169))) 32)) (-4167 (((-640 |#2|) (-948 |#1|) |#3|) 53) (((-640 |#2|) (-1165 |#1|) |#3|) 52)) (-4176 (((-640 (-640 |#2|)) (-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169)) |#3|) 88)))
+(((-538 |#1| |#2| |#3|) (-10 -7 (-15 -4167 ((-640 |#2|) (-1165 |#1|) |#3|)) (-15 -4167 ((-640 |#2|) (-948 |#1|) |#3|)) (-15 -4176 ((-640 (-640 |#2|)) (-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169)) |#3|)) (-15 -4189 ((-640 (-294 (-948 |#2|))) (-640 |#2|) (-640 (-1169))))) (-452) (-363) (-13 (-363) (-844))) (T -538))
+((-4189 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *6)) (-5 *4 (-640 (-1169))) (-4 *6 (-363)) (-5 *2 (-640 (-294 (-948 *6)))) (-5 *1 (-538 *5 *6 *7)) (-4 *5 (-452)) (-4 *7 (-13 (-363) (-844))))) (-4176 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-640 (-948 *6))) (-5 *4 (-640 (-1169))) (-4 *6 (-452)) (-5 *2 (-640 (-640 *7))) (-5 *1 (-538 *6 *7 *5)) (-4 *7 (-363)) (-4 *5 (-13 (-363) (-844))))) (-4167 (*1 *2 *3 *4) (-12 (-5 *3 (-948 *5)) (-4 *5 (-452)) (-5 *2 (-640 *6)) (-5 *1 (-538 *5 *6 *4)) (-4 *6 (-363)) (-4 *4 (-13 (-363) (-844))))) (-4167 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 *5)) (-4 *5 (-452)) (-5 *2 (-640 *6)) (-5 *1 (-538 *5 *6 *4)) (-4 *6 (-363)) (-4 *4 (-13 (-363) (-844))))))
+(-10 -7 (-15 -4167 ((-640 |#2|) (-1165 |#1|) |#3|)) (-15 -4167 ((-640 |#2|) (-948 |#1|) |#3|)) (-15 -4176 ((-640 (-640 |#2|)) (-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169)) |#3|)) (-15 -4189 ((-640 (-294 (-948 |#2|))) (-640 |#2|) (-640 (-1169)))))
+((-4219 ((|#2| |#2| |#1|) 17)) (-4198 ((|#2| (-640 |#2|)) 26)) (-4209 ((|#2| (-640 |#2|)) 45)))
+(((-539 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4198 (|#2| (-640 |#2|))) (-15 -4209 (|#2| (-640 |#2|))) (-15 -4219 (|#2| |#2| |#1|))) (-307) (-1233 |#1|) |#1| (-1 |#1| |#1| (-767))) (T -539))
+((-4219 (*1 *2 *2 *3) (-12 (-4 *3 (-307)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-767))) (-5 *1 (-539 *3 *2 *4 *5)) (-4 *2 (-1233 *3)))) (-4209 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-1233 *4)) (-5 *1 (-539 *4 *2 *5 *6)) (-4 *4 (-307)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-767))))) (-4198 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-1233 *4)) (-5 *1 (-539 *4 *2 *5 *6)) (-4 *4 (-307)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-767))))))
+(-10 -7 (-15 -4198 (|#2| (-640 |#2|))) (-15 -4209 (|#2| (-640 |#2|))) (-15 -4219 (|#2| |#2| |#1|)))
+((-2173 (((-418 (-1165 |#4|)) (-1165 |#4|) (-1 (-418 (-1165 |#3|)) (-1165 |#3|))) 79) (((-418 |#4|) |#4| (-1 (-418 (-1165 |#3|)) (-1165 |#3|))) 167)))
+(((-540 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2173 ((-418 |#4|) |#4| (-1 (-418 (-1165 |#3|)) (-1165 |#3|)))) (-15 -2173 ((-418 (-1165 |#4|)) (-1165 |#4|) (-1 (-418 (-1165 |#3|)) (-1165 |#3|))))) (-846) (-789) (-13 (-307) (-147)) (-945 |#3| |#2| |#1|)) (T -540))
+((-2173 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-418 (-1165 *7)) (-1165 *7))) (-4 *7 (-13 (-307) (-147))) (-4 *5 (-846)) (-4 *6 (-789)) (-4 *8 (-945 *7 *6 *5)) (-5 *2 (-418 (-1165 *8))) (-5 *1 (-540 *5 *6 *7 *8)) (-5 *3 (-1165 *8)))) (-2173 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-418 (-1165 *7)) (-1165 *7))) (-4 *7 (-13 (-307) (-147))) (-4 *5 (-846)) (-4 *6 (-789)) (-5 *2 (-418 *3)) (-5 *1 (-540 *5 *6 *7 *3)) (-4 *3 (-945 *7 *6 *5)))))
+(-10 -7 (-15 -2173 ((-418 |#4|) |#4| (-1 (-418 (-1165 |#3|)) (-1165 |#3|)))) (-15 -2173 ((-418 (-1165 |#4|)) (-1165 |#4|) (-1 (-418 (-1165 |#3|)) (-1165 |#3|)))))
+((-2011 ((|#4| |#4|) 73)) (-1992 ((|#4| |#4|) 69)) (-2019 ((|#4| |#4| (-563) (-563)) 75)) (-2002 ((|#4| |#4|) 71)))
+(((-541 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1992 (|#4| |#4|)) (-15 -2002 (|#4| |#4|)) (-15 -2011 (|#4| |#4|)) (-15 -2019 (|#4| |#4| (-563) (-563)))) (-13 (-363) (-368) (-611 (-563))) (-1233 |#1|) (-720 |#1| |#2|) (-1248 |#3|)) (T -541))
+((-2019 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-563)) (-4 *4 (-13 (-363) (-368) (-611 *3))) (-4 *5 (-1233 *4)) (-4 *6 (-720 *4 *5)) (-5 *1 (-541 *4 *5 *6 *2)) (-4 *2 (-1248 *6)))) (-2011 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-4 *4 (-1233 *3)) (-4 *5 (-720 *3 *4)) (-5 *1 (-541 *3 *4 *5 *2)) (-4 *2 (-1248 *5)))) (-2002 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-4 *4 (-1233 *3)) (-4 *5 (-720 *3 *4)) (-5 *1 (-541 *3 *4 *5 *2)) (-4 *2 (-1248 *5)))) (-1992 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-4 *4 (-1233 *3)) (-4 *5 (-720 *3 *4)) (-5 *1 (-541 *3 *4 *5 *2)) (-4 *2 (-1248 *5)))))
+(-10 -7 (-15 -1992 (|#4| |#4|)) (-15 -2002 (|#4| |#4|)) (-15 -2011 (|#4| |#4|)) (-15 -2019 (|#4| |#4| (-563) (-563))))
+((-2011 ((|#2| |#2|) 27)) (-1992 ((|#2| |#2|) 23)) (-2019 ((|#2| |#2| (-563) (-563)) 29)) (-2002 ((|#2| |#2|) 25)))
+(((-542 |#1| |#2|) (-10 -7 (-15 -1992 (|#2| |#2|)) (-15 -2002 (|#2| |#2|)) (-15 -2011 (|#2| |#2|)) (-15 -2019 (|#2| |#2| (-563) (-563)))) (-13 (-363) (-368) (-611 (-563))) (-1248 |#1|)) (T -542))
+((-2019 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-563)) (-4 *4 (-13 (-363) (-368) (-611 *3))) (-5 *1 (-542 *4 *2)) (-4 *2 (-1248 *4)))) (-2011 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-5 *1 (-542 *3 *2)) (-4 *2 (-1248 *3)))) (-2002 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-5 *1 (-542 *3 *2)) (-4 *2 (-1248 *3)))) (-1992 (*1 *2 *2) (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-5 *1 (-542 *3 *2)) (-4 *2 (-1248 *3)))))
+(-10 -7 (-15 -1992 (|#2| |#2|)) (-15 -2002 (|#2| |#2|)) (-15 -2011 (|#2| |#2|)) (-15 -2019 (|#2| |#2| (-563) (-563))))
+((-4229 (((-3 (-563) "failed") |#2| |#1| (-1 (-3 (-563) "failed") |#1|)) 14) (((-3 (-563) "failed") |#2| |#1| (-563) (-1 (-3 (-563) "failed") |#1|)) 13) (((-3 (-563) "failed") |#2| (-563) (-1 (-3 (-563) "failed") |#1|)) 26)))
+(((-543 |#1| |#2|) (-10 -7 (-15 -4229 ((-3 (-563) "failed") |#2| (-563) (-1 (-3 (-563) "failed") |#1|))) (-15 -4229 ((-3 (-563) "failed") |#2| |#1| (-563) (-1 (-3 (-563) "failed") |#1|))) (-15 -4229 ((-3 (-563) "failed") |#2| |#1| (-1 (-3 (-563) "failed") |#1|)))) (-1045) (-1233 |#1|)) (T -543))
+((-4229 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-563) "failed") *4)) (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-543 *4 *3)) (-4 *3 (-1233 *4)))) (-4229 (*1 *2 *3 *4 *2 *5) (|partial| -12 (-5 *5 (-1 (-3 (-563) "failed") *4)) (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-543 *4 *3)) (-4 *3 (-1233 *4)))) (-4229 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *4 (-1 (-3 (-563) "failed") *5)) (-4 *5 (-1045)) (-5 *2 (-563)) (-5 *1 (-543 *5 *3)) (-4 *3 (-1233 *5)))))
+(-10 -7 (-15 -4229 ((-3 (-563) "failed") |#2| (-563) (-1 (-3 (-563) "failed") |#1|))) (-15 -4229 ((-3 (-563) "failed") |#2| |#1| (-563) (-1 (-3 (-563) "failed") |#1|))) (-15 -4229 ((-3 (-563) "failed") |#2| |#1| (-1 (-3 (-563) "failed") |#1|))))
+((-4297 (($ $ $) 78)) (-2802 (((-418 $) $) 46)) (-2130 (((-3 (-563) "failed") $) 58)) (-2057 (((-563) $) 36)) (-2327 (((-3 (-407 (-563)) "failed") $) 73)) (-2317 (((-112) $) 23)) (-2306 (((-407 (-563)) $) 71)) (-2560 (((-112) $) 49)) (-4251 (($ $ $ $) 86)) (-3414 (((-112) $) 15)) (-2101 (($ $ $) 56)) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 68)) (-1983 (((-3 $ "failed") $) 63)) (-2645 (($ $) 22)) (-4239 (($ $ $) 84)) (-2522 (($) 59)) (-2081 (($ $) 52)) (-2173 (((-418 $) $) 44)) (-2969 (((-112) $) 13)) (-1993 (((-767) $) 27)) (-4203 (($ $ (-767)) NIL) (($ $) 10)) (-1870 (($ $) 16)) (-2219 (((-563) $) NIL) (((-536) $) 35) (((-888 (-563)) $) 39) (((-379) $) 30) (((-225) $) 32)) (-3914 (((-767)) 8)) (-4319 (((-112) $ $) 19)) (-1864 (($ $ $) 54)))
+(((-544 |#1|) (-10 -8 (-15 -4239 (|#1| |#1| |#1|)) (-15 -4251 (|#1| |#1| |#1| |#1|)) (-15 -2645 (|#1| |#1|)) (-15 -1870 (|#1| |#1|)) (-15 -2327 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2306 ((-407 (-563)) |#1|)) (-15 -2317 ((-112) |#1|)) (-15 -4297 (|#1| |#1| |#1|)) (-15 -4319 ((-112) |#1| |#1|)) (-15 -2969 ((-112) |#1|)) (-15 -2522 (|#1|)) (-15 -1983 ((-3 |#1| "failed") |#1|)) (-15 -2219 ((-225) |#1|)) (-15 -2219 ((-379) |#1|)) (-15 -2101 (|#1| |#1| |#1|)) (-15 -2081 (|#1| |#1|)) (-15 -1864 (|#1| |#1| |#1|)) (-15 -1812 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -2219 ((-888 (-563)) |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2219 ((-563) |#1|)) (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -3414 ((-112) |#1|)) (-15 -1993 ((-767) |#1|)) (-15 -2173 ((-418 |#1|) |#1|)) (-15 -2802 ((-418 |#1|) |#1|)) (-15 -2560 ((-112) |#1|)) (-15 -3914 ((-767)))) (-545)) (T -544))
+((-3914 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-544 *3)) (-4 *3 (-545)))))
+(-10 -8 (-15 -4239 (|#1| |#1| |#1|)) (-15 -4251 (|#1| |#1| |#1| |#1|)) (-15 -2645 (|#1| |#1|)) (-15 -1870 (|#1| |#1|)) (-15 -2327 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2306 ((-407 (-563)) |#1|)) (-15 -2317 ((-112) |#1|)) (-15 -4297 (|#1| |#1| |#1|)) (-15 -4319 ((-112) |#1| |#1|)) (-15 -2969 ((-112) |#1|)) (-15 -2522 (|#1|)) (-15 -1983 ((-3 |#1| "failed") |#1|)) (-15 -2219 ((-225) |#1|)) (-15 -2219 ((-379) |#1|)) (-15 -2101 (|#1| |#1| |#1|)) (-15 -2081 (|#1| |#1|)) (-15 -1864 (|#1| |#1| |#1|)) (-15 -1812 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -2219 ((-888 (-563)) |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2219 ((-563) |#1|)) (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -3414 ((-112) |#1|)) (-15 -1993 ((-767) |#1|)) (-15 -2173 ((-418 |#1|) |#1|)) (-15 -2802 ((-418 |#1|) |#1|)) (-15 -2560 ((-112) |#1|)) (-15 -3914 ((-767))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-4297 (($ $ $) 85)) (-3905 (((-3 $ "failed") $ $) 19)) (-4275 (($ $ $ $) 74)) (-1798 (($ $) 52)) (-2802 (((-418 $) $) 53)) (-2003 (((-112) $ $) 125)) (-2807 (((-563) $) 114)) (-3462 (($ $ $) 88)) (-2569 (($) 17 T CONST)) (-2130 (((-3 (-563) "failed") $) 106)) (-2057 (((-563) $) 107)) (-3094 (($ $ $) 129)) (-1476 (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 104) (((-684 (-563)) (-684 $)) 103)) (-3951 (((-3 $ "failed") $) 33)) (-2327 (((-3 (-407 (-563)) "failed") $) 82)) (-2317 (((-112) $) 84)) (-2306 (((-407 (-563)) $) 83)) (-1690 (($) 81) (($ $) 80)) (-3054 (($ $ $) 128)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 123)) (-2560 (((-112) $) 54)) (-4251 (($ $ $ $) 72)) (-4308 (($ $ $) 86)) (-3414 (((-112) $) 116)) (-2101 (($ $ $) 97)) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 100)) (-3401 (((-112) $) 31)) (-2959 (((-112) $) 92)) (-1983 (((-3 $ "failed") $) 94)) (-3426 (((-112) $) 115)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 132)) (-4264 (($ $ $ $) 73)) (-3088 (($ $ $) 117)) (-1776 (($ $ $) 118)) (-2645 (($ $) 76)) (-3419 (($ $) 89)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-4239 (($ $ $) 71)) (-2522 (($) 93 T CONST)) (-2827 (($ $) 78)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-2081 (($ $) 98)) (-2173 (((-418 $) $) 51)) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 131) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 130)) (-3012 (((-3 $ "failed") $ $) 43)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 124)) (-2969 (((-112) $) 91)) (-1993 (((-767) $) 126)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 127)) (-4203 (($ $ (-767)) 111) (($ $) 109)) (-3873 (($ $) 77)) (-1870 (($ $) 79)) (-2219 (((-563) $) 108) (((-536) $) 102) (((-888 (-563)) $) 101) (((-379) $) 96) (((-225) $) 95)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-563)) 105)) (-3914 (((-767)) 28)) (-4319 (((-112) $ $) 87)) (-1864 (($ $ $) 99)) (-4212 (($) 90)) (-3223 (((-112) $ $) 40)) (-4287 (($ $ $ $) 75)) (-1462 (($ $) 113)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ (-767)) 112) (($ $) 110)) (-1779 (((-112) $ $) 120)) (-1754 (((-112) $ $) 121)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 119)) (-1743 (((-112) $ $) 122)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-545) (-140)) (T -545))
-((-3131 (*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112)))) (-2359 (*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112)))) (-4211 (*1 *1) (-4 *1 (-545))) (-3415 (*1 *1 *1) (-4 *1 (-545))) (-3458 (*1 *1 *1 *1) (-4 *1 (-545))) (-1570 (*1 *2 *1 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112)))) (-1544 (*1 *1 *1 *1) (-4 *1 (-545))) (-1433 (*1 *1 *1 *1) (-4 *1 (-545))) (-2239 (*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112)))) (-2651 (*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-407 (-563))))) (-3909 (*1 *2 *1) (|partial| -12 (-4 *1 (-545)) (-5 *2 (-407 (-563))))) (-1691 (*1 *1) (-4 *1 (-545))) (-1691 (*1 *1 *1) (-4 *1 (-545))) (-1872 (*1 *1 *1) (-4 *1 (-545))) (-2824 (*1 *1 *1) (-4 *1 (-545))) (-3872 (*1 *1 *1) (-4 *1 (-545))) (-2646 (*1 *1 *1) (-4 *1 (-545))) (-2039 (*1 *1 *1 *1 *1) (-4 *1 (-545))) (-2448 (*1 *1 *1 *1 *1) (-4 *1 (-545))) (-2692 (*1 *1 *1 *1 *1) (-4 *1 (-545))) (-4362 (*1 *1 *1 *1 *1) (-4 *1 (-545))) (-3364 (*1 *1 *1 *1) (-4 *1 (-545))))
-(-13 (-1212) (-307) (-816) (-233) (-611 (-563)) (-1034 (-563)) (-636 (-563)) (-611 (-536)) (-611 (-888 (-563))) (-882 (-563)) (-143) (-1018) (-147) (-1144) (-10 -8 (-15 -3131 ((-112) $)) (-15 -2359 ((-112) $)) (-6 -4406) (-15 -4211 ($)) (-15 -3415 ($ $)) (-15 -3458 ($ $ $)) (-15 -1570 ((-112) $ $)) (-15 -1544 ($ $ $)) (-15 -1433 ($ $ $)) (-15 -2239 ((-112) $)) (-15 -2651 ((-407 (-563)) $)) (-15 -3909 ((-3 (-407 (-563)) "failed") $)) (-15 -1691 ($)) (-15 -1691 ($ $)) (-15 -1872 ($ $)) (-15 -2824 ($ $)) (-15 -3872 ($ $)) (-15 -2646 ($ $)) (-15 -2039 ($ $ $ $)) (-15 -2448 ($ $ $ $)) (-15 -2692 ($ $ $ $)) (-15 -4362 ($ $ $ $)) (-15 -3364 ($ $ $)) (-6 -4405)))
+((-2959 (*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112)))) (-2969 (*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112)))) (-4212 (*1 *1) (-4 *1 (-545))) (-3419 (*1 *1 *1) (-4 *1 (-545))) (-3462 (*1 *1 *1 *1) (-4 *1 (-545))) (-4319 (*1 *2 *1 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112)))) (-4308 (*1 *1 *1 *1) (-4 *1 (-545))) (-4297 (*1 *1 *1 *1) (-4 *1 (-545))) (-2317 (*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112)))) (-2306 (*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-407 (-563))))) (-2327 (*1 *2 *1) (|partial| -12 (-4 *1 (-545)) (-5 *2 (-407 (-563))))) (-1690 (*1 *1) (-4 *1 (-545))) (-1690 (*1 *1 *1) (-4 *1 (-545))) (-1870 (*1 *1 *1) (-4 *1 (-545))) (-2827 (*1 *1 *1) (-4 *1 (-545))) (-3873 (*1 *1 *1) (-4 *1 (-545))) (-2645 (*1 *1 *1) (-4 *1 (-545))) (-4287 (*1 *1 *1 *1 *1) (-4 *1 (-545))) (-4275 (*1 *1 *1 *1 *1) (-4 *1 (-545))) (-4264 (*1 *1 *1 *1 *1) (-4 *1 (-545))) (-4251 (*1 *1 *1 *1 *1) (-4 *1 (-545))) (-4239 (*1 *1 *1 *1) (-4 *1 (-545))))
+(-13 (-1212) (-307) (-816) (-233) (-611 (-563)) (-1034 (-563)) (-636 (-563)) (-611 (-536)) (-611 (-888 (-563))) (-882 (-563)) (-143) (-1018) (-147) (-1144) (-10 -8 (-15 -2959 ((-112) $)) (-15 -2969 ((-112) $)) (-6 -4407) (-15 -4212 ($)) (-15 -3419 ($ $)) (-15 -3462 ($ $ $)) (-15 -4319 ((-112) $ $)) (-15 -4308 ($ $ $)) (-15 -4297 ($ $ $)) (-15 -2317 ((-112) $)) (-15 -2306 ((-407 (-563)) $)) (-15 -2327 ((-3 (-407 (-563)) "failed") $)) (-15 -1690 ($)) (-15 -1690 ($ $)) (-15 -1870 ($ $)) (-15 -2827 ($ $)) (-15 -3873 ($ $)) (-15 -2645 ($ $)) (-15 -4287 ($ $ $ $)) (-15 -4275 ($ $ $ $)) (-15 -4264 ($ $ $ $)) (-15 -4251 ($ $ $ $)) (-15 -4239 ($ $ $)) (-6 -4406)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-147) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-143) . T) ((-172) . T) ((-611 (-225)) . T) ((-611 (-379)) . T) ((-611 (-536)) . T) ((-611 (-563)) . T) ((-611 (-888 (-563))) . T) ((-233) . T) ((-290) . T) ((-307) . T) ((-452) . T) ((-555) . T) ((-643 $) . T) ((-636 (-563)) . T) ((-713 $) . T) ((-722) . T) ((-787) . T) ((-788) . T) ((-790) . T) ((-791) . T) ((-816) . T) ((-844) . T) ((-846) . T) ((-882 (-563)) . T) ((-916) . T) ((-1018) . T) ((-1034 (-563)) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) . T) ((-1212) . T))
-((-1677 (((-112) $ $) NIL)) (-3749 (((-767)) NIL)) (-1691 (($) NIL)) (-3084 (($ $ $) NIL) (($) NIL T CONST)) (-1777 (($ $ $) NIL) (($) NIL T CONST)) (-1476 (((-917) $) NIL)) (-3573 (((-1151) $) NIL)) (-2555 (($ (-917)) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3750 (((-767)) NIL)) (-1690 (($) NIL)) (-3088 (($ $ $) NIL) (($) NIL T CONST)) (-1776 (($ $ $) NIL) (($) NIL T CONST)) (-3990 (((-917) $) NIL)) (-3854 (((-1151) $) NIL)) (-2552 (($ (-917)) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)))
(((-546) (-840)) (T -546))
NIL
(-840)
((|Integer|) (COND ((< 16 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-1677 (((-112) $ $) NIL)) (-3749 (((-767)) NIL)) (-1691 (($) NIL)) (-3084 (($ $ $) NIL) (($) NIL T CONST)) (-1777 (($ $ $) NIL) (($) NIL T CONST)) (-1476 (((-917) $) NIL)) (-3573 (((-1151) $) NIL)) (-2555 (($ (-917)) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3750 (((-767)) NIL)) (-1690 (($) NIL)) (-3088 (($ $ $) NIL) (($) NIL T CONST)) (-1776 (($ $ $) NIL) (($) NIL T CONST)) (-3990 (((-917) $) NIL)) (-3854 (((-1151) $) NIL)) (-2552 (($ (-917)) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)))
(((-547) (-840)) (T -547))
NIL
(-840)
((|Integer|) (COND ((< 32 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-1677 (((-112) $ $) NIL)) (-3749 (((-767)) NIL)) (-1691 (($) NIL)) (-3084 (($ $ $) NIL) (($) NIL T CONST)) (-1777 (($ $ $) NIL) (($) NIL T CONST)) (-1476 (((-917) $) NIL)) (-3573 (((-1151) $) NIL)) (-2555 (($ (-917)) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3750 (((-767)) NIL)) (-1690 (($) NIL)) (-3088 (($ $ $) NIL) (($) NIL T CONST)) (-1776 (($ $ $) NIL) (($) NIL T CONST)) (-3990 (((-917) $) NIL)) (-3854 (((-1151) $) NIL)) (-2552 (($ (-917)) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)))
(((-548) (-840)) (T -548))
NIL
(-840)
((|Integer|) (COND ((< 8 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-1677 (((-112) $ $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1552 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-4378 (((-1262) $ |#1| |#1|) NIL (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#2| $ |#1| |#2|) NIL)) (-2812 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-1577 (((-3 |#2| "failed") |#1| $) NIL)) (-4239 (($) NIL T CONST)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-2705 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-3 |#2| "failed") |#1| $) NIL)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4407))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#2| $ |#1|) NIL)) (-2659 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2411 ((|#1| $) NIL (|has| |#1| (-846)))) (-2259 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-3860 ((|#1| $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4408))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1303 (((-640 |#1|) $) NIL)) (-4173 (((-112) |#1| $) NIL)) (-2964 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-1812 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-4318 (((-640 |#1|) $) NIL)) (-3192 (((-112) |#1| $) NIL)) (-1694 (((-1113) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3781 ((|#2| $) NIL (|has| |#1| (-846)))) (-4203 (((-3 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL)) (-2358 (($ $ |#2|) NIL (|has| $ (-6 -4408)))) (-3755 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-3138 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-2836 (((-640 |#2|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3890 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-1709 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093)))) (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-611 (-536))))) (-1707 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-1693 (((-858) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858)))))) (-2233 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-4383 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-549 |#1| |#2| |#3|) (-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4407))) (-1093) (-1093) (-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4407)))) (T -549))
-NIL
-(-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4407)))
-((-3033 (((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) (-1 (-1165 |#2|) (-1165 |#2|))) 51)))
-(((-550 |#1| |#2|) (-10 -7 (-15 -3033 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) (-1 (-1165 |#2|) (-1165 |#2|))))) (-13 (-846) (-555)) (-13 (-27) (-430 |#1|))) (T -550))
-((-3033 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-609 *3)) (-5 *5 (-1 (-1165 *3) (-1165 *3))) (-4 *3 (-13 (-27) (-430 *6))) (-4 *6 (-13 (-846) (-555))) (-5 *2 (-584 *3)) (-5 *1 (-550 *6 *3)))))
-(-10 -7 (-15 -3033 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) (-1 (-1165 |#2|) (-1165 |#2|)))))
-((-3933 (((-584 |#5|) |#5| (-1 |#3| |#3|)) 198)) (-4014 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 194)) (-2602 (((-584 |#5|) |#5| (-1 |#3| |#3|)) 201)))
-(((-551 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2602 ((-584 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3933 ((-584 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4014 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|)))) (-13 (-846) (-555) (-1034 (-563))) (-13 (-27) (-430 |#1|)) (-1233 |#2|) (-1233 (-407 |#3|)) (-342 |#2| |#3| |#4|)) (T -551))
-((-4014 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-27) (-430 *4))) (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-4 *7 (-1233 (-407 *6))) (-5 *1 (-551 *4 *5 *6 *7 *2)) (-4 *2 (-342 *5 *6 *7)))) (-3933 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1233 *6)) (-4 *6 (-13 (-27) (-430 *5))) (-4 *5 (-13 (-846) (-555) (-1034 (-563)))) (-4 *8 (-1233 (-407 *7))) (-5 *2 (-584 *3)) (-5 *1 (-551 *5 *6 *7 *8 *3)) (-4 *3 (-342 *6 *7 *8)))) (-2602 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1233 *6)) (-4 *6 (-13 (-27) (-430 *5))) (-4 *5 (-13 (-846) (-555) (-1034 (-563)))) (-4 *8 (-1233 (-407 *7))) (-5 *2 (-584 *3)) (-5 *1 (-551 *5 *6 *7 *8 *3)) (-4 *3 (-342 *6 *7 *8)))))
-(-10 -7 (-15 -2602 ((-584 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3933 ((-584 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4014 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
-((-2524 (((-112) (-563) (-563)) 10)) (-2923 (((-563) (-563)) 7)) (-2282 (((-563) (-563) (-563)) 8)))
-(((-552) (-10 -7 (-15 -2923 ((-563) (-563))) (-15 -2282 ((-563) (-563) (-563))) (-15 -2524 ((-112) (-563) (-563))))) (T -552))
-((-2524 (*1 *2 *3 *3) (-12 (-5 *3 (-563)) (-5 *2 (-112)) (-5 *1 (-552)))) (-2282 (*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-552)))) (-2923 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-552)))))
-(-10 -7 (-15 -2923 ((-563) (-563))) (-15 -2282 ((-563) (-563) (-563))) (-15 -2524 ((-112) (-563) (-563))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-3835 ((|#1| $) 62)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-1771 (($ $) 92)) (-1619 (($ $) 75)) (-1901 ((|#1| $) 63)) (-1495 (((-3 $ "failed") $ $) 19)) (-2186 (($ $) 74)) (-1748 (($ $) 91)) (-1597 (($ $) 76)) (-1794 (($ $) 90)) (-1643 (($ $) 77)) (-4239 (($) 17 T CONST)) (-2131 (((-3 (-563) "failed") $) 70)) (-2058 (((-563) $) 71)) (-3400 (((-3 $ "failed") $) 33)) (-2044 (($ |#1| |#1|) 67)) (-3101 (((-112) $) 61)) (-2180 (($) 102)) (-3827 (((-112) $) 31)) (-1645 (($ $ (-563)) 73)) (-1419 (((-112) $) 60)) (-3084 (($ $ $) 108)) (-1777 (($ $ $) 107)) (-4371 (($ $) 99)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-2440 (($ |#1| |#1|) 68) (($ |#1|) 66) (($ (-407 (-563))) 65)) (-3388 ((|#1| $) 64)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-3008 (((-3 $ "failed") $ $) 43)) (-3368 (($ $) 100)) (-1806 (($ $) 89)) (-1656 (($ $) 78)) (-1784 (($ $) 88)) (-1630 (($ $) 79)) (-1759 (($ $) 87)) (-1608 (($ $) 80)) (-2052 (((-112) $ |#1|) 59)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-563)) 69)) (-1675 (((-767)) 28)) (-1840 (($ $) 98)) (-1695 (($ $) 86)) (-2126 (((-112) $ $) 40)) (-1817 (($ $) 97)) (-1667 (($ $) 85)) (-1862 (($ $) 96)) (-1722 (($ $) 84)) (-1311 (($ $) 95)) (-1735 (($ $) 83)) (-1851 (($ $) 94)) (-1710 (($ $) 82)) (-1829 (($ $) 93)) (-1680 (($ $) 81)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1778 (((-112) $ $) 105)) (-1756 (((-112) $ $) 104)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 106)) (-1744 (((-112) $ $) 103)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ $) 101) (($ $ (-407 (-563))) 72)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-1677 (((-112) $ $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1551 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-2208 (((-1262) $ |#1| |#1|) NIL (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#2| $ |#1| |#2|) NIL)) (-3678 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-1576 (((-3 |#2| "failed") |#1| $) NIL)) (-2569 (($) NIL T CONST)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-1691 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-3 |#2| "failed") |#1| $) NIL)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#2| $ |#1|) NIL)) (-2658 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-2236 ((|#1| $) NIL (|has| |#1| (-846)))) (-3523 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2251 ((|#1| $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4409))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1304 (((-640 |#1|) $) NIL)) (-2305 (((-112) |#1| $) NIL)) (-2627 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-3867 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-2272 (((-640 |#1|) $) NIL)) (-2282 (((-112) |#1| $) NIL)) (-1693 (((-1113) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3782 ((|#2| $) NIL (|has| |#1| (-846)))) (-1971 (((-3 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL)) (-2221 (($ $ |#2|) NIL (|has| $ (-6 -4409)))) (-2808 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-1458 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2295 (((-640 |#2|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3863 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1708 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093)))) (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-611 (-536))))) (-1706 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1692 (((-858) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858)))))) (-2820 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1471 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-549 |#1| |#2| |#3|) (-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4408))) (-1093) (-1093) (-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4408)))) (T -549))
+NIL
+(-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4408)))
+((-4330 (((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) (-1 (-1165 |#2|) (-1165 |#2|))) 51)))
+(((-550 |#1| |#2|) (-10 -7 (-15 -4330 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) (-1 (-1165 |#2|) (-1165 |#2|))))) (-13 (-846) (-555)) (-13 (-27) (-430 |#1|))) (T -550))
+((-4330 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-609 *3)) (-5 *5 (-1 (-1165 *3) (-1165 *3))) (-4 *3 (-13 (-27) (-430 *6))) (-4 *6 (-13 (-846) (-555))) (-5 *2 (-584 *3)) (-5 *1 (-550 *6 *3)))))
+(-10 -7 (-15 -4330 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) (-1 (-1165 |#2|) (-1165 |#2|)))))
+((-4352 (((-584 |#5|) |#5| (-1 |#3| |#3|)) 198)) (-4361 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 194)) (-4342 (((-584 |#5|) |#5| (-1 |#3| |#3|)) 201)))
+(((-551 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4342 ((-584 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4352 ((-584 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4361 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|)))) (-13 (-846) (-555) (-1034 (-563))) (-13 (-27) (-430 |#1|)) (-1233 |#2|) (-1233 (-407 |#3|)) (-342 |#2| |#3| |#4|)) (T -551))
+((-4361 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-27) (-430 *4))) (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-4 *7 (-1233 (-407 *6))) (-5 *1 (-551 *4 *5 *6 *7 *2)) (-4 *2 (-342 *5 *6 *7)))) (-4352 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1233 *6)) (-4 *6 (-13 (-27) (-430 *5))) (-4 *5 (-13 (-846) (-555) (-1034 (-563)))) (-4 *8 (-1233 (-407 *7))) (-5 *2 (-584 *3)) (-5 *1 (-551 *5 *6 *7 *8 *3)) (-4 *3 (-342 *6 *7 *8)))) (-4342 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1233 *6)) (-4 *6 (-13 (-27) (-430 *5))) (-4 *5 (-13 (-846) (-555) (-1034 (-563)))) (-4 *8 (-1233 (-407 *7))) (-5 *2 (-584 *3)) (-5 *1 (-551 *5 *6 *7 *8 *3)) (-4 *3 (-342 *6 *7 *8)))))
+(-10 -7 (-15 -4342 ((-584 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4352 ((-584 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4361 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
+((-1295 (((-112) (-563) (-563)) 10)) (-4373 (((-563) (-563)) 7)) (-4384 (((-563) (-563) (-563)) 8)))
+(((-552) (-10 -7 (-15 -4373 ((-563) (-563))) (-15 -4384 ((-563) (-563) (-563))) (-15 -1295 ((-112) (-563) (-563))))) (T -552))
+((-1295 (*1 *2 *3 *3) (-12 (-5 *3 (-563)) (-5 *2 (-112)) (-5 *1 (-552)))) (-4384 (*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-552)))) (-4373 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-552)))))
+(-10 -7 (-15 -4373 ((-563) (-563))) (-15 -4384 ((-563) (-563) (-563))) (-15 -1295 ((-112) (-563) (-563))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3835 ((|#1| $) 62)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-1770 (($ $) 92)) (-1618 (($ $) 75)) (-4092 ((|#1| $) 63)) (-3905 (((-3 $ "failed") $ $) 19)) (-2185 (($ $) 74)) (-1747 (($ $) 91)) (-1596 (($ $) 76)) (-1793 (($ $) 90)) (-1642 (($ $) 77)) (-2569 (($) 17 T CONST)) (-2130 (((-3 (-563) "failed") $) 70)) (-2057 (((-563) $) 71)) (-3951 (((-3 $ "failed") $) 33)) (-1326 (($ |#1| |#1|) 67)) (-3414 (((-112) $) 61)) (-2179 (($) 102)) (-3401 (((-112) $) 31)) (-2172 (($ $ (-563)) 73)) (-3426 (((-112) $) 60)) (-3088 (($ $ $) 108)) (-1776 (($ $ $) 107)) (-4372 (($ $) 99)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-3201 (($ |#1| |#1|) 68) (($ |#1|) 66) (($ (-407 (-563))) 65)) (-1315 ((|#1| $) 64)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-3012 (((-3 $ "failed") $ $) 43)) (-3372 (($ $) 100)) (-1805 (($ $) 89)) (-1655 (($ $) 78)) (-1783 (($ $) 88)) (-1629 (($ $) 79)) (-1758 (($ $) 87)) (-1607 (($ $) 80)) (-1303 (((-112) $ |#1|) 59)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-563)) 69)) (-3914 (((-767)) 28)) (-1839 (($ $) 98)) (-1694 (($ $) 86)) (-3223 (((-112) $ $) 40)) (-1816 (($ $) 97)) (-1666 (($ $) 85)) (-1861 (($ $) 96)) (-1721 (($ $) 84)) (-1311 (($ $) 95)) (-1734 (($ $) 83)) (-1850 (($ $) 94)) (-1709 (($ $) 82)) (-1828 (($ $) 93)) (-1679 (($ $) 81)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1779 (((-112) $ $) 105)) (-1754 (((-112) $ $) 104)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 106)) (-1743 (((-112) $ $) 103)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ $) 101) (($ $ (-407 (-563))) 72)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-553 |#1|) (-140) (-13 (-404) (-1193))) (T -553))
-((-2440 (*1 *1 *2 *2) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))) (-2044 (*1 *1 *2 *2) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))) (-2440 (*1 *1 *2) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))) (-2440 (*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-4 *1 (-553 *3)) (-4 *3 (-13 (-404) (-1193))))) (-3388 (*1 *2 *1) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))) (-1901 (*1 *2 *1) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))) (-3835 (*1 *2 *1) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))) (-3101 (*1 *2 *1) (-12 (-4 *1 (-553 *3)) (-4 *3 (-13 (-404) (-1193))) (-5 *2 (-112)))) (-1419 (*1 *2 *1) (-12 (-4 *1 (-553 *3)) (-4 *3 (-13 (-404) (-1193))) (-5 *2 (-112)))) (-2052 (*1 *2 *1 *3) (-12 (-4 *1 (-553 *3)) (-4 *3 (-13 (-404) (-1193))) (-5 *2 (-112)))))
-(-13 (-452) (-846) (-1193) (-998) (-1034 (-563)) (-10 -8 (-6 -1403) (-15 -2440 ($ |t#1| |t#1|)) (-15 -2044 ($ |t#1| |t#1|)) (-15 -2440 ($ |t#1|)) (-15 -2440 ($ (-407 (-563)))) (-15 -3388 (|t#1| $)) (-15 -1901 (|t#1| $)) (-15 -3835 (|t#1| $)) (-15 -3101 ((-112) $)) (-15 -1419 ((-112) $)) (-15 -2052 ((-112) $ |t#1|))))
+((-3201 (*1 *1 *2 *2) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))) (-1326 (*1 *1 *2 *2) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))) (-3201 (*1 *1 *2) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))) (-3201 (*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-4 *1 (-553 *3)) (-4 *3 (-13 (-404) (-1193))))) (-1315 (*1 *2 *1) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))) (-4092 (*1 *2 *1) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))) (-3835 (*1 *2 *1) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))) (-3414 (*1 *2 *1) (-12 (-4 *1 (-553 *3)) (-4 *3 (-13 (-404) (-1193))) (-5 *2 (-112)))) (-3426 (*1 *2 *1) (-12 (-4 *1 (-553 *3)) (-4 *3 (-13 (-404) (-1193))) (-5 *2 (-112)))) (-1303 (*1 *2 *1 *3) (-12 (-4 *1 (-553 *3)) (-4 *3 (-13 (-404) (-1193))) (-5 *2 (-112)))))
+(-13 (-452) (-846) (-1193) (-998) (-1034 (-563)) (-10 -8 (-6 -1402) (-15 -3201 ($ |t#1| |t#1|)) (-15 -1326 ($ |t#1| |t#1|)) (-15 -3201 ($ |t#1|)) (-15 -3201 ($ (-407 (-563)))) (-15 -1315 (|t#1| $)) (-15 -4092 (|t#1| $)) (-15 -3835 (|t#1| $)) (-15 -3414 ((-112) $)) (-15 -3426 ((-112) $)) (-15 -1303 ((-112) $ |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-35) . T) ((-95) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-284) . T) ((-290) . T) ((-452) . T) ((-493) . T) ((-555) . T) ((-643 $) . T) ((-713 $) . T) ((-722) . T) ((-846) . T) ((-998) . T) ((-1034 (-563)) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1193) . T) ((-1196) . T))
-((-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 9)) (-4223 (($ $) 11)) (-3156 (((-112) $) 18)) (-3400 (((-3 $ "failed") $) 16)) (-2126 (((-112) $ $) 20)))
-(((-554 |#1|) (-10 -8 (-15 -3156 ((-112) |#1|)) (-15 -2126 ((-112) |#1| |#1|)) (-15 -4223 (|#1| |#1|)) (-15 -4372 ((-2 (|:| -1414 |#1|) (|:| -4394 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3400 ((-3 |#1| "failed") |#1|))) (-555)) (T -554))
+((-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 9)) (-3231 (($ $) 11)) (-3211 (((-112) $) 18)) (-3951 (((-3 $ "failed") $) 16)) (-3223 (((-112) $ $) 20)))
+(((-554 |#1|) (-10 -8 (-15 -3211 ((-112) |#1|)) (-15 -3223 ((-112) |#1| |#1|)) (-15 -3231 (|#1| |#1|)) (-15 -3241 ((-2 (|:| -3245 |#1|) (|:| -4395 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3951 ((-3 |#1| "failed") |#1|))) (-555)) (T -554))
NIL
-(-10 -8 (-15 -3156 ((-112) |#1|)) (-15 -2126 ((-112) |#1| |#1|)) (-15 -4223 (|#1| |#1|)) (-15 -4372 ((-2 (|:| -1414 |#1|) (|:| -4394 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3400 ((-3 |#1| "failed") |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3008 (((-3 $ "failed") $ $) 43)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 40)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+(-10 -8 (-15 -3211 ((-112) |#1|)) (-15 -3223 ((-112) |#1| |#1|)) (-15 -3231 (|#1| |#1|)) (-15 -3241 ((-2 (|:| -3245 |#1|) (|:| -4395 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3951 ((-3 |#1| "failed") |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-3012 (((-3 $ "failed") $ $) 43)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 40)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-555) (-140)) (T -555))
-((-3008 (*1 *1 *1 *1) (|partial| -4 *1 (-555))) (-4372 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -1414 *1) (|:| -4394 *1) (|:| |associate| *1))) (-4 *1 (-555)))) (-4223 (*1 *1 *1) (-4 *1 (-555))) (-2126 (*1 *2 *1 *1) (-12 (-4 *1 (-555)) (-5 *2 (-112)))) (-3156 (*1 *2 *1) (-12 (-4 *1 (-555)) (-5 *2 (-112)))))
-(-13 (-172) (-38 $) (-290) (-10 -8 (-15 -3008 ((-3 $ "failed") $ $)) (-15 -4372 ((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $)) (-15 -4223 ($ $)) (-15 -2126 ((-112) $ $)) (-15 -3156 ((-112) $))))
+((-3012 (*1 *1 *1 *1) (|partial| -4 *1 (-555))) (-3241 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -3245 *1) (|:| -4395 *1) (|:| |associate| *1))) (-4 *1 (-555)))) (-3231 (*1 *1 *1) (-4 *1 (-555))) (-3223 (*1 *2 *1 *1) (-12 (-4 *1 (-555)) (-5 *2 (-112)))) (-3211 (*1 *2 *1) (-12 (-4 *1 (-555)) (-5 *2 (-112)))))
+(-13 (-172) (-38 $) (-290) (-10 -8 (-15 -3012 ((-3 $ "failed") $ $)) (-15 -3241 ((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $)) (-15 -3231 ($ $)) (-15 -3223 ((-112) $ $)) (-15 -3211 ((-112) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-290) . T) ((-643 $) . T) ((-713 $) . T) ((-722) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1882 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1169) (-640 |#2|)) 37)) (-3463 (((-584 |#2|) |#2| (-1169)) 62)) (-1489 (((-3 |#2| "failed") |#2| (-1169)) 151)) (-1510 (((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1169) (-609 |#2|) (-640 (-609 |#2|))) 154)) (-4009 (((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1169) |#2|) 40)))
-(((-556 |#1| |#2|) (-10 -7 (-15 -4009 ((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1169) |#2|)) (-15 -1882 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1169) (-640 |#2|))) (-15 -1489 ((-3 |#2| "failed") |#2| (-1169))) (-15 -3463 ((-584 |#2|) |#2| (-1169))) (-15 -1510 ((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1169) (-609 |#2|) (-640 (-609 |#2|))))) (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|))) (T -556))
-((-1510 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1169)) (-5 *6 (-640 (-609 *3))) (-5 *5 (-609 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *7))) (-4 *7 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-2 (|:| -3646 *3) (|:| |coeff| *3))) (-5 *1 (-556 *7 *3)))) (-3463 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-584 *3)) (-5 *1 (-556 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-1489 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1169)) (-4 *4 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-556 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))) (-1882 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-640 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-556 *6 *3)))) (-4009 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1169)) (-4 *5 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-2 (|:| -3646 *3) (|:| |coeff| *3))) (-5 *1 (-556 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))))
-(-10 -7 (-15 -4009 ((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1169) |#2|)) (-15 -1882 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1169) (-640 |#2|))) (-15 -1489 ((-3 |#2| "failed") |#2| (-1169))) (-15 -3463 ((-584 |#2|) |#2| (-1169))) (-15 -1510 ((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1169) (-609 |#2|) (-640 (-609 |#2|)))))
-((-3205 (((-418 |#1|) |#1|) 18)) (-2174 (((-418 |#1|) |#1|) 33)) (-3635 (((-3 |#1| "failed") |#1|) 44)) (-4079 (((-418 |#1|) |#1|) 51)))
-(((-557 |#1|) (-10 -7 (-15 -2174 ((-418 |#1|) |#1|)) (-15 -3205 ((-418 |#1|) |#1|)) (-15 -4079 ((-418 |#1|) |#1|)) (-15 -3635 ((-3 |#1| "failed") |#1|))) (-545)) (T -557))
-((-3635 (*1 *2 *2) (|partial| -12 (-5 *1 (-557 *2)) (-4 *2 (-545)))) (-4079 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-557 *3)) (-4 *3 (-545)))) (-3205 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-557 *3)) (-4 *3 (-545)))) (-2174 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-557 *3)) (-4 *3 (-545)))))
-(-10 -7 (-15 -2174 ((-418 |#1|) |#1|)) (-15 -3205 ((-418 |#1|) |#1|)) (-15 -4079 ((-418 |#1|) |#1|)) (-15 -3635 ((-3 |#1| "failed") |#1|)))
-((-2142 (($) 9)) (-1818 (((-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 35)) (-1303 (((-640 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $) 32)) (-1812 (($ (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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"))))))) 29)) (-1868 (($ (-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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")))))))) 27)) (-2557 (((-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 39)) (-2836 (((-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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"))))))) $) 37)) (-4285 (((-1262)) 12)))
-(((-558) (-10 -8 (-15 -2142 ($)) (-15 -4285 ((-1262))) (-15 -1303 ((-640 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -1868 ($ (-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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 -1812 ($ (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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 -1818 ((-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2836 ((-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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 -2557 ((-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -558))
-((-2557 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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 (-558)))) (-2836 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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 (-558)))) (-1818 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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 (-558)))) (-1812 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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 (-558)))) (-1868 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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 (-558)))) (-1303 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-5 *1 (-558)))) (-4285 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-558)))) (-2142 (*1 *1) (-5 *1 (-558))))
-(-10 -8 (-15 -2142 ($)) (-15 -4285 ((-1262))) (-15 -1303 ((-640 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -1868 ($ (-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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 -1812 ($ (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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 -1818 ((-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2836 ((-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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 -2557 ((-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2516 (-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
-((-2139 (((-1165 (-407 (-1165 |#2|))) |#2| (-609 |#2|) (-609 |#2|) (-1165 |#2|)) 32)) (-4103 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|))) 100) (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|) |#2| (-1165 |#2|)) 110)) (-1685 (((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|))) 80) (((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) |#2| (-1165 |#2|)) 52)) (-3040 (((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2| (-609 |#2|) |#2| (-407 (-1165 |#2|))) 87) (((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2| |#2| (-1165 |#2|)) 109)) (-2681 (((-3 |#2| "failed") |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)) (-609 |#2|) |#2| (-407 (-1165 |#2|))) 105) (((-3 |#2| "failed") |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)) |#2| (-1165 |#2|)) 111)) (-2520 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4315 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|))) 128 (|has| |#3| (-651 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4315 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) |#2| (-1165 |#2|)) 127 (|has| |#3| (-651 |#2|)))) (-2596 ((|#2| (-1165 (-407 (-1165 |#2|))) (-609 |#2|) |#2|) 50)) (-2433 (((-1165 (-407 (-1165 |#2|))) (-1165 |#2|) (-609 |#2|)) 31)))
-(((-559 |#1| |#2| |#3|) (-10 -7 (-15 -1685 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) |#2| (-1165 |#2|))) (-15 -1685 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -3040 ((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2| |#2| (-1165 |#2|))) (-15 -3040 ((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2| (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -4103 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|) |#2| (-1165 |#2|))) (-15 -4103 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -2681 ((-3 |#2| "failed") |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)) |#2| (-1165 |#2|))) (-15 -2681 ((-3 |#2| "failed") |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)) (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -2139 ((-1165 (-407 (-1165 |#2|))) |#2| (-609 |#2|) (-609 |#2|) (-1165 |#2|))) (-15 -2596 (|#2| (-1165 (-407 (-1165 |#2|))) (-609 |#2|) |#2|)) (-15 -2433 ((-1165 (-407 (-1165 |#2|))) (-1165 |#2|) (-609 |#2|))) (IF (|has| |#3| (-651 |#2|)) (PROGN (-15 -2520 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4315 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) |#2| (-1165 |#2|))) (-15 -2520 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4315 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|))))) |%noBranch|)) (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))) (-13 (-430 |#1|) (-27) (-1193)) (-1093)) (T -559))
-((-2520 (*1 *2 *3 *4 *5 *5 *5 *4 *6) (-12 (-5 *5 (-609 *4)) (-5 *6 (-407 (-1165 *4))) (-4 *4 (-13 (-430 *7) (-27) (-1193))) (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4)))) (-5 *1 (-559 *7 *4 *3)) (-4 *3 (-651 *4)) (-4 *3 (-1093)))) (-2520 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *5 (-609 *4)) (-5 *6 (-1165 *4)) (-4 *4 (-13 (-430 *7) (-27) (-1193))) (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4)))) (-5 *1 (-559 *7 *4 *3)) (-4 *3 (-651 *4)) (-4 *3 (-1093)))) (-2433 (*1 *2 *3 *4) (-12 (-5 *4 (-609 *6)) (-4 *6 (-13 (-430 *5) (-27) (-1193))) (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-1165 (-407 (-1165 *6)))) (-5 *1 (-559 *5 *6 *7)) (-5 *3 (-1165 *6)) (-4 *7 (-1093)))) (-2596 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1165 (-407 (-1165 *2)))) (-5 *4 (-609 *2)) (-4 *2 (-13 (-430 *5) (-27) (-1193))) (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *1 (-559 *5 *2 *6)) (-4 *6 (-1093)))) (-2139 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-609 *3)) (-4 *3 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-1165 (-407 (-1165 *3)))) (-5 *1 (-559 *6 *3 *7)) (-5 *5 (-1165 *3)) (-4 *7 (-1093)))) (-2681 (*1 *2 *2 *2 *3 *3 *4 *3 *2 *5) (|partial| -12 (-5 *3 (-609 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1169))) (-5 *5 (-407 (-1165 *2))) (-4 *2 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *1 (-559 *6 *2 *7)) (-4 *7 (-1093)))) (-2681 (*1 *2 *2 *2 *3 *3 *4 *2 *5) (|partial| -12 (-5 *3 (-609 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1169))) (-5 *5 (-1165 *2)) (-4 *2 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *1 (-559 *6 *2 *7)) (-4 *7 (-1093)))) (-4103 (*1 *2 *3 *4 *4 *5 *4 *3 *6) (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-640 *3)) (-5 *6 (-407 (-1165 *3))) (-4 *3 (-13 (-430 *7) (-27) (-1193))) (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-559 *7 *3 *8)) (-4 *8 (-1093)))) (-4103 (*1 *2 *3 *4 *4 *5 *3 *6) (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-640 *3)) (-5 *6 (-1165 *3)) (-4 *3 (-13 (-430 *7) (-27) (-1193))) (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-559 *7 *3 *8)) (-4 *8 (-1093)))) (-3040 (*1 *2 *3 *4 *4 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-407 (-1165 *3))) (-4 *3 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| -3646 *3) (|:| |coeff| *3))) (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093)))) (-3040 (*1 *2 *3 *4 *4 *3 *3 *5) (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-1165 *3)) (-4 *3 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| -3646 *3) (|:| |coeff| *3))) (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093)))) (-1685 (*1 *2 *3 *4 *4 *4 *3 *5) (-12 (-5 *4 (-609 *3)) (-5 *5 (-407 (-1165 *3))) (-4 *3 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-584 *3)) (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093)))) (-1685 (*1 *2 *3 *4 *4 *3 *5) (-12 (-5 *4 (-609 *3)) (-5 *5 (-1165 *3)) (-4 *3 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-584 *3)) (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093)))))
-(-10 -7 (-15 -1685 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) |#2| (-1165 |#2|))) (-15 -1685 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -3040 ((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2| |#2| (-1165 |#2|))) (-15 -3040 ((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2| (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -4103 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|) |#2| (-1165 |#2|))) (-15 -4103 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -2681 ((-3 |#2| "failed") |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)) |#2| (-1165 |#2|))) (-15 -2681 ((-3 |#2| "failed") |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)) (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -2139 ((-1165 (-407 (-1165 |#2|))) |#2| (-609 |#2|) (-609 |#2|) (-1165 |#2|))) (-15 -2596 (|#2| (-1165 (-407 (-1165 |#2|))) (-609 |#2|) |#2|)) (-15 -2433 ((-1165 (-407 (-1165 |#2|))) (-1165 |#2|) (-609 |#2|))) (IF (|has| |#3| (-651 |#2|)) (PROGN (-15 -2520 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4315 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) |#2| (-1165 |#2|))) (-15 -2520 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4315 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|))))) |%noBranch|))
-((-1592 (((-563) (-563) (-767)) 66)) (-3469 (((-563) (-563)) 65)) (-1537 (((-563) (-563)) 64)) (-4078 (((-563) (-563)) 69)) (-3055 (((-563) (-563) (-563)) 49)) (-2839 (((-563) (-563) (-563)) 46)) (-2535 (((-407 (-563)) (-563)) 20)) (-3630 (((-563) (-563)) 21)) (-4112 (((-563) (-563)) 58)) (-2086 (((-563) (-563)) 32)) (-3318 (((-640 (-563)) (-563)) 63)) (-3046 (((-563) (-563) (-563) (-563) (-563)) 44)) (-2892 (((-407 (-563)) (-563)) 41)))
-(((-560) (-10 -7 (-15 -2892 ((-407 (-563)) (-563))) (-15 -3046 ((-563) (-563) (-563) (-563) (-563))) (-15 -3318 ((-640 (-563)) (-563))) (-15 -2086 ((-563) (-563))) (-15 -4112 ((-563) (-563))) (-15 -3630 ((-563) (-563))) (-15 -2535 ((-407 (-563)) (-563))) (-15 -2839 ((-563) (-563) (-563))) (-15 -3055 ((-563) (-563) (-563))) (-15 -4078 ((-563) (-563))) (-15 -1537 ((-563) (-563))) (-15 -3469 ((-563) (-563))) (-15 -1592 ((-563) (-563) (-767))))) (T -560))
-((-1592 (*1 *2 *2 *3) (-12 (-5 *2 (-563)) (-5 *3 (-767)) (-5 *1 (-560)))) (-3469 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-1537 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-4078 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-3055 (*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-2839 (*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-2535 (*1 *2 *3) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-560)) (-5 *3 (-563)))) (-3630 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-4112 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-2086 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-3318 (*1 *2 *3) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-560)) (-5 *3 (-563)))) (-3046 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-2892 (*1 *2 *3) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-560)) (-5 *3 (-563)))))
-(-10 -7 (-15 -2892 ((-407 (-563)) (-563))) (-15 -3046 ((-563) (-563) (-563) (-563) (-563))) (-15 -3318 ((-640 (-563)) (-563))) (-15 -2086 ((-563) (-563))) (-15 -4112 ((-563) (-563))) (-15 -3630 ((-563) (-563))) (-15 -2535 ((-407 (-563)) (-563))) (-15 -2839 ((-563) (-563) (-563))) (-15 -3055 ((-563) (-563) (-563))) (-15 -4078 ((-563) (-563))) (-15 -1537 ((-563) (-563))) (-15 -3469 ((-563) (-563))) (-15 -1592 ((-563) (-563) (-767))))
-((-3497 (((-2 (|:| |answer| |#4|) (|:| -3524 |#4|)) |#4| (-1 |#2| |#2|)) 52)))
-(((-561 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3497 ((-2 (|:| |answer| |#4|) (|:| -3524 |#4|)) |#4| (-1 |#2| |#2|)))) (-363) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|)) (T -561))
-((-3497 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363)) (-4 *7 (-1233 (-407 *6))) (-5 *2 (-2 (|:| |answer| *3) (|:| -3524 *3))) (-5 *1 (-561 *5 *6 *7 *3)) (-4 *3 (-342 *5 *6 *7)))))
-(-10 -7 (-15 -3497 ((-2 (|:| |answer| |#4|) (|:| -3524 |#4|)) |#4| (-1 |#2| |#2|))))
-((-3497 (((-2 (|:| |answer| (-407 |#2|)) (|:| -3524 (-407 |#2|)) (|:| |specpart| (-407 |#2|)) (|:| |polypart| |#2|)) (-407 |#2|) (-1 |#2| |#2|)) 18)))
-(((-562 |#1| |#2|) (-10 -7 (-15 -3497 ((-2 (|:| |answer| (-407 |#2|)) (|:| -3524 (-407 |#2|)) (|:| |specpart| (-407 |#2|)) (|:| |polypart| |#2|)) (-407 |#2|) (-1 |#2| |#2|)))) (-363) (-1233 |#1|)) (T -562))
-((-3497 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| |answer| (-407 *6)) (|:| -3524 (-407 *6)) (|:| |specpart| (-407 *6)) (|:| |polypart| *6))) (-5 *1 (-562 *5 *6)) (-5 *3 (-407 *6)))))
-(-10 -7 (-15 -3497 ((-2 (|:| |answer| (-407 |#2|)) (|:| -3524 (-407 |#2|)) (|:| |specpart| (-407 |#2|)) (|:| |polypart| |#2|)) (-407 |#2|) (-1 |#2| |#2|))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 25)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 88)) (-4223 (($ $) 89)) (-3156 (((-112) $) NIL)) (-1433 (($ $ $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2448 (($ $ $ $) 43)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-1857 (((-563) $) NIL)) (-3458 (($ $ $) 82)) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL)) (-2058 (((-563) $) NIL)) (-3090 (($ $ $) 81)) (-2950 (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 62) (((-684 (-563)) (-684 $)) 58)) (-3400 (((-3 $ "failed") $) 85)) (-3909 (((-3 (-407 (-563)) "failed") $) NIL)) (-2239 (((-112) $) NIL)) (-2651 (((-407 (-563)) $) NIL)) (-1691 (($) 64) (($ $) 65)) (-3050 (($ $ $) 80)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-4362 (($ $ $ $) NIL)) (-1544 (($ $ $) 55)) (-3101 (((-112) $) NIL)) (-3972 (($ $ $) NIL)) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL)) (-3827 (((-112) $) 26)) (-3131 (((-112) $) 75)) (-2408 (((-3 $ "failed") $) NIL)) (-1419 (((-112) $) 35)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2692 (($ $ $ $) 44)) (-3084 (($ $ $) 77)) (-1777 (($ $ $) 76)) (-2646 (($ $) NIL)) (-3415 (($ $) 41)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) 54)) (-3364 (($ $ $) NIL)) (-2523 (($) NIL T CONST)) (-2824 (($ $) 31)) (-1694 (((-1113) $) 34)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 119)) (-3548 (($ $ $) 86) (($ (-640 $)) NIL)) (-3219 (($ $) NIL)) (-2174 (((-418 $) $) 105)) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL)) (-3008 (((-3 $ "failed") $ $) 84)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2359 (((-112) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 79)) (-4202 (($ $ (-767)) NIL) (($ $) NIL)) (-3872 (($ $) 32)) (-1872 (($ $) 30)) (-2220 (((-563) $) 40) (((-536) $) 52) (((-888 (-563)) $) NIL) (((-379) $) 47) (((-225) $) 49) (((-1151) $) 53)) (-1693 (((-858) $) 38) (($ (-563)) 39) (($ $) NIL) (($ (-563)) 39)) (-1675 (((-767)) NIL)) (-1570 (((-112) $ $) NIL)) (-2869 (($ $ $) NIL)) (-4211 (($) 29)) (-2126 (((-112) $ $) NIL)) (-2039 (($ $ $ $) 42)) (-2509 (($ $) 63)) (-2241 (($) 27 T CONST)) (-2254 (($) 28 T CONST)) (-3741 (((-1151) $) 20) (((-1151) $ (-112)) 22) (((-1262) (-818) $) 23) (((-1262) (-818) $ (-112)) 24)) (-3209 (($ $ (-767)) NIL) (($ $) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 66)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 67)) (-1826 (($ $) 68) (($ $ $) 70)) (-1814 (($ $ $) 69)) (** (($ $ (-917)) NIL) (($ $ (-767)) 74)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 72) (($ $ $) 71)))
-(((-563) (-13 (-545) (-611 (-1151)) (-824) (-10 -8 (-15 -1691 ($ $)) (-6 -4394) (-6 -4399) (-6 -4395) (-6 -4389)))) (T -563))
-((-1691 (*1 *1 *1) (-5 *1 (-563))))
-(-13 (-545) (-611 (-1151)) (-824) (-10 -8 (-15 -1691 ($ $)) (-6 -4394) (-6 -4399) (-6 -4395) (-6 -4389)))
-((-1994 (((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))) (-765) (-1057)) 108) (((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))) (-765)) 110)) (-3698 (((-3 (-1031) "failed") (-316 (-379)) (-1085 (-839 (-379))) (-1169)) 172) (((-3 (-1031) "failed") (-316 (-379)) (-1085 (-839 (-379))) (-1151)) 171) (((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379) (-379) (-1057)) 176) (((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379) (-379)) 177) (((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379)) 178) (((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379))))) 179) (((-1031) (-316 (-379)) (-1087 (-839 (-379)))) 167) (((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379)) 166) (((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379) (-379)) 162) (((-1031) (-765)) 155) (((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379) (-379) (-1057)) 161)))
-(((-564) (-10 -7 (-15 -3698 ((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379) (-379) (-1057))) (-15 -3698 ((-1031) (-765))) (-15 -3698 ((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379) (-379))) (-15 -3698 ((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379))) (-15 -3698 ((-1031) (-316 (-379)) (-1087 (-839 (-379))))) (-15 -3698 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))))) (-15 -3698 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379))) (-15 -3698 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379) (-379))) (-15 -3698 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379) (-379) (-1057))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))) (-765))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))) (-765) (-1057))) (-15 -3698 ((-3 (-1031) "failed") (-316 (-379)) (-1085 (-839 (-379))) (-1151))) (-15 -3698 ((-3 (-1031) "failed") (-316 (-379)) (-1085 (-839 (-379))) (-1169))))) (T -564))
-((-3698 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-316 (-379))) (-5 *4 (-1085 (-839 (-379)))) (-5 *5 (-1169)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-3698 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-316 (-379))) (-5 *4 (-1085 (-839 (-379)))) (-5 *5 (-1151)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-1994 (*1 *2 *3 *4) (-12 (-5 *3 (-765)) (-5 *4 (-1057)) (-5 *2 (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031)))) (-5 *1 (-564)))) (-1994 (*1 *2 *3) (-12 (-5 *3 (-765)) (-5 *2 (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031)))) (-5 *1 (-564)))) (-3698 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379))))) (-5 *5 (-379)) (-5 *6 (-1057)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-3698 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379))))) (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-3698 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379))))) (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-3698 (*1 *2 *3 *4) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379))))) (-5 *2 (-1031)) (-5 *1 (-564)))) (-3698 (*1 *2 *3 *4) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379)))) (-5 *2 (-1031)) (-5 *1 (-564)))) (-3698 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379)))) (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-3698 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379)))) (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-3698 (*1 *2 *3) (-12 (-5 *3 (-765)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-3698 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379)))) (-5 *5 (-379)) (-5 *6 (-1057)) (-5 *2 (-1031)) (-5 *1 (-564)))))
-(-10 -7 (-15 -3698 ((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379) (-379) (-1057))) (-15 -3698 ((-1031) (-765))) (-15 -3698 ((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379) (-379))) (-15 -3698 ((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379))) (-15 -3698 ((-1031) (-316 (-379)) (-1087 (-839 (-379))))) (-15 -3698 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))))) (-15 -3698 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379))) (-15 -3698 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379) (-379))) (-15 -3698 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379) (-379) (-1057))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))) (-765))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))) (-765) (-1057))) (-15 -3698 ((-3 (-1031) "failed") (-316 (-379)) (-1085 (-839 (-379))) (-1151))) (-15 -3698 ((-3 (-1031) "failed") (-316 (-379)) (-1085 (-839 (-379))) (-1169))))
-((-3100 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|)) 183)) (-3820 (((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|)) 98)) (-2362 (((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2|) 179)) (-3042 (((-3 |#2| "failed") |#2| |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169))) 188)) (-4307 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4315 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) (-1169)) 196 (|has| |#3| (-651 |#2|)))))
-(((-565 |#1| |#2| |#3|) (-10 -7 (-15 -3820 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|))) (-15 -2362 ((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2|)) (-15 -3100 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|))) (-15 -3042 ((-3 |#2| "failed") |#2| |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)))) (IF (|has| |#3| (-651 |#2|)) (-15 -4307 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4315 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) (-1169))) |%noBranch|)) (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))) (-13 (-430 |#1|) (-27) (-1193)) (-1093)) (T -565))
-((-4307 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *5 (-609 *4)) (-5 *6 (-1169)) (-4 *4 (-13 (-430 *7) (-27) (-1193))) (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4)))) (-5 *1 (-565 *7 *4 *3)) (-4 *3 (-651 *4)) (-4 *3 (-1093)))) (-3042 (*1 *2 *2 *2 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-609 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1169))) (-4 *2 (-13 (-430 *5) (-27) (-1193))) (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *1 (-565 *5 *2 *6)) (-4 *6 (-1093)))) (-3100 (*1 *2 *3 *4 *4 *5) (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-640 *3)) (-4 *3 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-565 *6 *3 *7)) (-4 *7 (-1093)))) (-2362 (*1 *2 *3 *4 *4 *3) (|partial| -12 (-5 *4 (-609 *3)) (-4 *3 (-13 (-430 *5) (-27) (-1193))) (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| -3646 *3) (|:| |coeff| *3))) (-5 *1 (-565 *5 *3 *6)) (-4 *6 (-1093)))) (-3820 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-609 *3)) (-4 *3 (-13 (-430 *5) (-27) (-1193))) (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-584 *3)) (-5 *1 (-565 *5 *3 *6)) (-4 *6 (-1093)))))
-(-10 -7 (-15 -3820 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|))) (-15 -2362 ((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2|)) (-15 -3100 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|))) (-15 -3042 ((-3 |#2| "failed") |#2| |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)))) (IF (|has| |#3| (-651 |#2|)) (-15 -4307 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4315 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) (-1169))) |%noBranch|))
-((-4266 (((-2 (|:| -1410 |#2|) (|:| |nconst| |#2|)) |#2| (-1169)) 63)) (-1468 (((-3 |#2| "failed") |#2| (-1169) (-839 |#2|) (-839 |#2|)) 163 (-12 (|has| |#2| (-1132)) (|has| |#1| (-611 (-888 (-563)))) (|has| |#1| (-882 (-563))))) (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169)) 146 (-12 (|has| |#2| (-626)) (|has| |#1| (-611 (-888 (-563)))) (|has| |#1| (-882 (-563)))))) (-3617 (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169)) 147 (-12 (|has| |#2| (-626)) (|has| |#1| (-611 (-888 (-563)))) (|has| |#1| (-882 (-563)))))))
-(((-566 |#1| |#2|) (-10 -7 (-15 -4266 ((-2 (|:| -1410 |#2|) (|:| |nconst| |#2|)) |#2| (-1169))) (IF (|has| |#1| (-611 (-888 (-563)))) (IF (|has| |#1| (-882 (-563))) (PROGN (IF (|has| |#2| (-626)) (PROGN (-15 -3617 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169))) (-15 -1468 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169)))) |%noBranch|) (IF (|has| |#2| (-1132)) (-15 -1468 ((-3 |#2| "failed") |#2| (-1169) (-839 |#2|) (-839 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|)) (-13 (-846) (-1034 (-563)) (-452) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|))) (T -566))
-((-1468 (*1 *2 *2 *3 *4 *4) (|partial| -12 (-5 *3 (-1169)) (-5 *4 (-839 *2)) (-4 *2 (-1132)) (-4 *2 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-611 (-888 (-563)))) (-4 *5 (-882 (-563))) (-4 *5 (-13 (-846) (-1034 (-563)) (-452) (-636 (-563)))) (-5 *1 (-566 *5 *2)))) (-1468 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1169)) (-4 *5 (-611 (-888 (-563)))) (-4 *5 (-882 (-563))) (-4 *5 (-13 (-846) (-1034 (-563)) (-452) (-636 (-563)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-566 *5 *3)) (-4 *3 (-626)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-3617 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1169)) (-4 *5 (-611 (-888 (-563)))) (-4 *5 (-882 (-563))) (-4 *5 (-13 (-846) (-1034 (-563)) (-452) (-636 (-563)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-566 *5 *3)) (-4 *3 (-626)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-4266 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-846) (-1034 (-563)) (-452) (-636 (-563)))) (-5 *2 (-2 (|:| -1410 *3) (|:| |nconst| *3))) (-5 *1 (-566 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))))
-(-10 -7 (-15 -4266 ((-2 (|:| -1410 |#2|) (|:| |nconst| |#2|)) |#2| (-1169))) (IF (|has| |#1| (-611 (-888 (-563)))) (IF (|has| |#1| (-882 (-563))) (PROGN (IF (|has| |#2| (-626)) (PROGN (-15 -3617 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169))) (-15 -1468 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169)))) |%noBranch|) (IF (|has| |#2| (-1132)) (-15 -1468 ((-3 |#2| "failed") |#2| (-1169) (-839 |#2|) (-839 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
-((-2372 (((-3 (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|)))))) "failed") (-407 |#2|) (-640 (-407 |#2|))) 41)) (-3698 (((-584 (-407 |#2|)) (-407 |#2|)) 28)) (-2924 (((-3 (-407 |#2|) "failed") (-407 |#2|)) 17)) (-2935 (((-3 (-2 (|:| -3646 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-407 |#2|)) 48)))
-(((-567 |#1| |#2|) (-10 -7 (-15 -3698 ((-584 (-407 |#2|)) (-407 |#2|))) (-15 -2924 ((-3 (-407 |#2|) "failed") (-407 |#2|))) (-15 -2935 ((-3 (-2 (|:| -3646 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-407 |#2|))) (-15 -2372 ((-3 (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|)))))) "failed") (-407 |#2|) (-640 (-407 |#2|))))) (-13 (-363) (-147) (-1034 (-563))) (-1233 |#1|)) (T -567))
-((-2372 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-640 (-407 *6))) (-5 *3 (-407 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-567 *5 *6)))) (-2935 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-363) (-147) (-1034 (-563)))) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| -3646 (-407 *5)) (|:| |coeff| (-407 *5)))) (-5 *1 (-567 *4 *5)) (-5 *3 (-407 *5)))) (-2924 (*1 *2 *2) (|partial| -12 (-5 *2 (-407 *4)) (-4 *4 (-1233 *3)) (-4 *3 (-13 (-363) (-147) (-1034 (-563)))) (-5 *1 (-567 *3 *4)))) (-3698 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-563)))) (-4 *5 (-1233 *4)) (-5 *2 (-584 (-407 *5))) (-5 *1 (-567 *4 *5)) (-5 *3 (-407 *5)))))
-(-10 -7 (-15 -3698 ((-584 (-407 |#2|)) (-407 |#2|))) (-15 -2924 ((-3 (-407 |#2|) "failed") (-407 |#2|))) (-15 -2935 ((-3 (-2 (|:| -3646 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-407 |#2|))) (-15 -2372 ((-3 (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|)))))) "failed") (-407 |#2|) (-640 (-407 |#2|)))))
-((-2627 (((-3 (-563) "failed") |#1|) 14)) (-3532 (((-112) |#1|) 13)) (-3701 (((-563) |#1|) 9)))
-(((-568 |#1|) (-10 -7 (-15 -3701 ((-563) |#1|)) (-15 -3532 ((-112) |#1|)) (-15 -2627 ((-3 (-563) "failed") |#1|))) (-1034 (-563))) (T -568))
-((-2627 (*1 *2 *3) (|partial| -12 (-5 *2 (-563)) (-5 *1 (-568 *3)) (-4 *3 (-1034 *2)))) (-3532 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-568 *3)) (-4 *3 (-1034 (-563))))) (-3701 (*1 *2 *3) (-12 (-5 *2 (-563)) (-5 *1 (-568 *3)) (-4 *3 (-1034 *2)))))
-(-10 -7 (-15 -3701 ((-563) |#1|)) (-15 -3532 ((-112) |#1|)) (-15 -2627 ((-3 (-563) "failed") |#1|)))
-((-1606 (((-3 (-2 (|:| |mainpart| (-407 (-948 |#1|))) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 (-948 |#1|))) (|:| |logand| (-407 (-948 |#1|))))))) "failed") (-407 (-948 |#1|)) (-1169) (-640 (-407 (-948 |#1|)))) 48)) (-3216 (((-584 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-1169)) 28)) (-2999 (((-3 (-407 (-948 |#1|)) "failed") (-407 (-948 |#1|)) (-1169)) 23)) (-2149 (((-3 (-2 (|:| -3646 (-407 (-948 |#1|))) (|:| |coeff| (-407 (-948 |#1|)))) "failed") (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|))) 35)))
-(((-569 |#1|) (-10 -7 (-15 -3216 ((-584 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-1169))) (-15 -2999 ((-3 (-407 (-948 |#1|)) "failed") (-407 (-948 |#1|)) (-1169))) (-15 -1606 ((-3 (-2 (|:| |mainpart| (-407 (-948 |#1|))) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 (-948 |#1|))) (|:| |logand| (-407 (-948 |#1|))))))) "failed") (-407 (-948 |#1|)) (-1169) (-640 (-407 (-948 |#1|))))) (-15 -2149 ((-3 (-2 (|:| -3646 (-407 (-948 |#1|))) (|:| |coeff| (-407 (-948 |#1|)))) "failed") (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|))))) (-13 (-555) (-1034 (-563)) (-147))) (T -569))
-((-2149 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1169)) (-4 *5 (-13 (-555) (-1034 (-563)) (-147))) (-5 *2 (-2 (|:| -3646 (-407 (-948 *5))) (|:| |coeff| (-407 (-948 *5))))) (-5 *1 (-569 *5)) (-5 *3 (-407 (-948 *5))))) (-1606 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-640 (-407 (-948 *6)))) (-5 *3 (-407 (-948 *6))) (-4 *6 (-13 (-555) (-1034 (-563)) (-147))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-569 *6)))) (-2999 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-407 (-948 *4))) (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-1034 (-563)) (-147))) (-5 *1 (-569 *4)))) (-3216 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-555) (-1034 (-563)) (-147))) (-5 *2 (-584 (-407 (-948 *5)))) (-5 *1 (-569 *5)) (-5 *3 (-407 (-948 *5))))))
-(-10 -7 (-15 -3216 ((-584 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-1169))) (-15 -2999 ((-3 (-407 (-948 |#1|)) "failed") (-407 (-948 |#1|)) (-1169))) (-15 -1606 ((-3 (-2 (|:| |mainpart| (-407 (-948 |#1|))) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 (-948 |#1|))) (|:| |logand| (-407 (-948 |#1|))))))) "failed") (-407 (-948 |#1|)) (-1169) (-640 (-407 (-948 |#1|))))) (-15 -2149 ((-3 (-2 (|:| -3646 (-407 (-948 |#1|))) (|:| |coeff| (-407 (-948 |#1|)))) "failed") (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|)))))
-((-1677 (((-112) $ $) 58)) (-3411 (((-112) $) 36)) (-3835 ((|#1| $) 30)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) 62)) (-1771 (($ $) 122)) (-1619 (($ $) 102)) (-1901 ((|#1| $) 28)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2186 (($ $) NIL)) (-1748 (($ $) 124)) (-1597 (($ $) 98)) (-1794 (($ $) 126)) (-1643 (($ $) 106)) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) 77)) (-2058 (((-563) $) 79)) (-3400 (((-3 $ "failed") $) 61)) (-2044 (($ |#1| |#1|) 26)) (-3101 (((-112) $) 33)) (-2180 (($) 88)) (-3827 (((-112) $) 43)) (-1645 (($ $ (-563)) NIL)) (-1419 (((-112) $) 34)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-4371 (($ $) 90)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2440 (($ |#1| |#1|) 20) (($ |#1|) 25) (($ (-407 (-563))) 76)) (-3388 ((|#1| $) 27)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) 64) (($ (-640 $)) NIL)) (-3008 (((-3 $ "failed") $ $) 63)) (-3368 (($ $) 92)) (-1806 (($ $) 130)) (-1656 (($ $) 104)) (-1784 (($ $) 132)) (-1630 (($ $) 108)) (-1759 (($ $) 128)) (-1608 (($ $) 100)) (-2052 (((-112) $ |#1|) 31)) (-1693 (((-858) $) 84) (($ (-563)) 66) (($ $) NIL) (($ (-563)) 66)) (-1675 (((-767)) 86)) (-1840 (($ $) 144)) (-1695 (($ $) 114)) (-2126 (((-112) $ $) NIL)) (-1817 (($ $) 142)) (-1667 (($ $) 110)) (-1862 (($ $) 140)) (-1722 (($ $) 120)) (-1311 (($ $) 138)) (-1735 (($ $) 118)) (-1851 (($ $) 136)) (-1710 (($ $) 116)) (-1829 (($ $) 134)) (-1680 (($ $) 112)) (-2241 (($) 21 T CONST)) (-2254 (($) 10 T CONST)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 37)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 35)) (-1826 (($ $) 41) (($ $ $) 42)) (-1814 (($ $ $) 40)) (** (($ $ (-917)) 54) (($ $ (-767)) NIL) (($ $ $) 94) (($ $ (-407 (-563))) 146)) (* (($ (-917) $) 51) (($ (-767) $) NIL) (($ (-563) $) 50) (($ $ $) 48)))
+((-3262 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1169) (-640 |#2|)) 37)) (-3279 (((-584 |#2|) |#2| (-1169)) 62)) (-3269 (((-3 |#2| "failed") |#2| (-1169)) 151)) (-3290 (((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1169) (-609 |#2|) (-640 (-609 |#2|))) 154)) (-3252 (((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1169) |#2|) 40)))
+(((-556 |#1| |#2|) (-10 -7 (-15 -3252 ((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1169) |#2|)) (-15 -3262 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1169) (-640 |#2|))) (-15 -3269 ((-3 |#2| "failed") |#2| (-1169))) (-15 -3279 ((-584 |#2|) |#2| (-1169))) (-15 -3290 ((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1169) (-609 |#2|) (-640 (-609 |#2|))))) (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|))) (T -556))
+((-3290 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1169)) (-5 *6 (-640 (-609 *3))) (-5 *5 (-609 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *7))) (-4 *7 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-2 (|:| -2840 *3) (|:| |coeff| *3))) (-5 *1 (-556 *7 *3)))) (-3279 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-584 *3)) (-5 *1 (-556 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-3269 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1169)) (-4 *4 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-556 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))) (-3262 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-640 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-556 *6 *3)))) (-3252 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1169)) (-4 *5 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-2 (|:| -2840 *3) (|:| |coeff| *3))) (-5 *1 (-556 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))))
+(-10 -7 (-15 -3252 ((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1169) |#2|)) (-15 -3262 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1169) (-640 |#2|))) (-15 -3269 ((-3 |#2| "failed") |#2| (-1169))) (-15 -3279 ((-584 |#2|) |#2| (-1169))) (-15 -3290 ((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1169) (-609 |#2|) (-640 (-609 |#2|)))))
+((-2802 (((-418 |#1|) |#1|) 18)) (-2173 (((-418 |#1|) |#1|) 33)) (-3315 (((-3 |#1| "failed") |#1|) 45)) (-3300 (((-418 |#1|) |#1|) 52)))
+(((-557 |#1|) (-10 -7 (-15 -2173 ((-418 |#1|) |#1|)) (-15 -2802 ((-418 |#1|) |#1|)) (-15 -3300 ((-418 |#1|) |#1|)) (-15 -3315 ((-3 |#1| "failed") |#1|))) (-545)) (T -557))
+((-3315 (*1 *2 *2) (|partial| -12 (-5 *1 (-557 *2)) (-4 *2 (-545)))) (-3300 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-557 *3)) (-4 *3 (-545)))) (-2802 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-557 *3)) (-4 *3 (-545)))) (-2173 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-557 *3)) (-4 *3 (-545)))))
+(-10 -7 (-15 -2173 ((-418 |#1|) |#1|)) (-15 -2802 ((-418 |#1|) |#1|)) (-15 -3300 ((-418 |#1|) |#1|)) (-15 -3315 ((-3 |#1| "failed") |#1|)))
+((-3326 (($) 9)) (-1818 (((-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 35)) (-1304 (((-640 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $) 32)) (-3867 (($ (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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"))))))) 29)) (-3346 (($ (-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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")))))))) 27)) (-2556 (((-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 39)) (-2295 (((-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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"))))))) $) 37)) (-3336 (((-1262)) 12)))
+(((-558) (-10 -8 (-15 -3326 ($)) (-15 -3336 ((-1262))) (-15 -1304 ((-640 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -3346 ($ (-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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 -3867 ($ (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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 -1818 ((-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2295 ((-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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 -2556 ((-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -558))
+((-2556 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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 (-558)))) (-2295 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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 (-558)))) (-1818 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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 (-558)))) (-3867 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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 (-558)))) (-3346 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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 (-558)))) (-1304 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-5 *1 (-558)))) (-3336 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-558)))) (-3326 (*1 *1) (-5 *1 (-558))))
+(-10 -8 (-15 -3326 ($)) (-15 -3336 ((-1262))) (-15 -1304 ((-640 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -3346 ($ (-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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 -3867 ($ (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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 -1818 ((-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2295 ((-640 (-2 (|:| -2387 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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 -2556 ((-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| (-1149 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4166 (-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| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
+((-2138 (((-1165 (-407 (-1165 |#2|))) |#2| (-609 |#2|) (-609 |#2|) (-1165 |#2|)) 32)) (-3380 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|))) 100) (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|) |#2| (-1165 |#2|)) 110)) (-3357 (((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|))) 80) (((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) |#2| (-1165 |#2|)) 52)) (-3368 (((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2| (-609 |#2|) |#2| (-407 (-1165 |#2|))) 87) (((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2| |#2| (-1165 |#2|)) 109)) (-3393 (((-3 |#2| "failed") |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)) (-609 |#2|) |#2| (-407 (-1165 |#2|))) 105) (((-3 |#2| "failed") |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)) |#2| (-1165 |#2|)) 111)) (-3405 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4013 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|))) 128 (|has| |#3| (-651 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4013 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) |#2| (-1165 |#2|)) 127 (|has| |#3| (-651 |#2|)))) (-2595 ((|#2| (-1165 (-407 (-1165 |#2|))) (-609 |#2|) |#2|) 50)) (-2433 (((-1165 (-407 (-1165 |#2|))) (-1165 |#2|) (-609 |#2|)) 31)))
+(((-559 |#1| |#2| |#3|) (-10 -7 (-15 -3357 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) |#2| (-1165 |#2|))) (-15 -3357 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -3368 ((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2| |#2| (-1165 |#2|))) (-15 -3368 ((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2| (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -3380 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|) |#2| (-1165 |#2|))) (-15 -3380 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -3393 ((-3 |#2| "failed") |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)) |#2| (-1165 |#2|))) (-15 -3393 ((-3 |#2| "failed") |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)) (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -2138 ((-1165 (-407 (-1165 |#2|))) |#2| (-609 |#2|) (-609 |#2|) (-1165 |#2|))) (-15 -2595 (|#2| (-1165 (-407 (-1165 |#2|))) (-609 |#2|) |#2|)) (-15 -2433 ((-1165 (-407 (-1165 |#2|))) (-1165 |#2|) (-609 |#2|))) (IF (|has| |#3| (-651 |#2|)) (PROGN (-15 -3405 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4013 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) |#2| (-1165 |#2|))) (-15 -3405 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4013 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|))))) |%noBranch|)) (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))) (-13 (-430 |#1|) (-27) (-1193)) (-1093)) (T -559))
+((-3405 (*1 *2 *3 *4 *5 *5 *5 *4 *6) (-12 (-5 *5 (-609 *4)) (-5 *6 (-407 (-1165 *4))) (-4 *4 (-13 (-430 *7) (-27) (-1193))) (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4)))) (-5 *1 (-559 *7 *4 *3)) (-4 *3 (-651 *4)) (-4 *3 (-1093)))) (-3405 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *5 (-609 *4)) (-5 *6 (-1165 *4)) (-4 *4 (-13 (-430 *7) (-27) (-1193))) (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4)))) (-5 *1 (-559 *7 *4 *3)) (-4 *3 (-651 *4)) (-4 *3 (-1093)))) (-2433 (*1 *2 *3 *4) (-12 (-5 *4 (-609 *6)) (-4 *6 (-13 (-430 *5) (-27) (-1193))) (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-1165 (-407 (-1165 *6)))) (-5 *1 (-559 *5 *6 *7)) (-5 *3 (-1165 *6)) (-4 *7 (-1093)))) (-2595 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1165 (-407 (-1165 *2)))) (-5 *4 (-609 *2)) (-4 *2 (-13 (-430 *5) (-27) (-1193))) (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *1 (-559 *5 *2 *6)) (-4 *6 (-1093)))) (-2138 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-609 *3)) (-4 *3 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-1165 (-407 (-1165 *3)))) (-5 *1 (-559 *6 *3 *7)) (-5 *5 (-1165 *3)) (-4 *7 (-1093)))) (-3393 (*1 *2 *2 *2 *3 *3 *4 *3 *2 *5) (|partial| -12 (-5 *3 (-609 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1169))) (-5 *5 (-407 (-1165 *2))) (-4 *2 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *1 (-559 *6 *2 *7)) (-4 *7 (-1093)))) (-3393 (*1 *2 *2 *2 *3 *3 *4 *2 *5) (|partial| -12 (-5 *3 (-609 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1169))) (-5 *5 (-1165 *2)) (-4 *2 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *1 (-559 *6 *2 *7)) (-4 *7 (-1093)))) (-3380 (*1 *2 *3 *4 *4 *5 *4 *3 *6) (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-640 *3)) (-5 *6 (-407 (-1165 *3))) (-4 *3 (-13 (-430 *7) (-27) (-1193))) (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-559 *7 *3 *8)) (-4 *8 (-1093)))) (-3380 (*1 *2 *3 *4 *4 *5 *3 *6) (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-640 *3)) (-5 *6 (-1165 *3)) (-4 *3 (-13 (-430 *7) (-27) (-1193))) (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-559 *7 *3 *8)) (-4 *8 (-1093)))) (-3368 (*1 *2 *3 *4 *4 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-407 (-1165 *3))) (-4 *3 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| -2840 *3) (|:| |coeff| *3))) (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093)))) (-3368 (*1 *2 *3 *4 *4 *3 *3 *5) (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-1165 *3)) (-4 *3 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| -2840 *3) (|:| |coeff| *3))) (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093)))) (-3357 (*1 *2 *3 *4 *4 *4 *3 *5) (-12 (-5 *4 (-609 *3)) (-5 *5 (-407 (-1165 *3))) (-4 *3 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-584 *3)) (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093)))) (-3357 (*1 *2 *3 *4 *4 *3 *5) (-12 (-5 *4 (-609 *3)) (-5 *5 (-1165 *3)) (-4 *3 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-584 *3)) (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093)))))
+(-10 -7 (-15 -3357 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) |#2| (-1165 |#2|))) (-15 -3357 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -3368 ((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2| |#2| (-1165 |#2|))) (-15 -3368 ((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2| (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -3380 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|) |#2| (-1165 |#2|))) (-15 -3380 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -3393 ((-3 |#2| "failed") |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)) |#2| (-1165 |#2|))) (-15 -3393 ((-3 |#2| "failed") |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)) (-609 |#2|) |#2| (-407 (-1165 |#2|)))) (-15 -2138 ((-1165 (-407 (-1165 |#2|))) |#2| (-609 |#2|) (-609 |#2|) (-1165 |#2|))) (-15 -2595 (|#2| (-1165 (-407 (-1165 |#2|))) (-609 |#2|) |#2|)) (-15 -2433 ((-1165 (-407 (-1165 |#2|))) (-1165 |#2|) (-609 |#2|))) (IF (|has| |#3| (-651 |#2|)) (PROGN (-15 -3405 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4013 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) |#2| (-1165 |#2|))) (-15 -3405 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4013 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) (-609 |#2|) |#2| (-407 (-1165 |#2|))))) |%noBranch|))
+((-3518 (((-563) (-563) (-767)) 66)) (-3507 (((-563) (-563)) 65)) (-3495 (((-563) (-563)) 64)) (-3485 (((-563) (-563)) 69)) (-1911 (((-563) (-563) (-563)) 49)) (-3475 (((-563) (-563) (-563)) 46)) (-3465 (((-407 (-563)) (-563)) 20)) (-3453 (((-563) (-563)) 21)) (-3442 (((-563) (-563)) 58)) (-1879 (((-563) (-563)) 32)) (-3429 (((-640 (-563)) (-563)) 63)) (-3417 (((-563) (-563) (-563) (-563) (-563)) 44)) (-1835 (((-407 (-563)) (-563)) 41)))
+(((-560) (-10 -7 (-15 -1835 ((-407 (-563)) (-563))) (-15 -3417 ((-563) (-563) (-563) (-563) (-563))) (-15 -3429 ((-640 (-563)) (-563))) (-15 -1879 ((-563) (-563))) (-15 -3442 ((-563) (-563))) (-15 -3453 ((-563) (-563))) (-15 -3465 ((-407 (-563)) (-563))) (-15 -3475 ((-563) (-563) (-563))) (-15 -1911 ((-563) (-563) (-563))) (-15 -3485 ((-563) (-563))) (-15 -3495 ((-563) (-563))) (-15 -3507 ((-563) (-563))) (-15 -3518 ((-563) (-563) (-767))))) (T -560))
+((-3518 (*1 *2 *2 *3) (-12 (-5 *2 (-563)) (-5 *3 (-767)) (-5 *1 (-560)))) (-3507 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-3495 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-3485 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-1911 (*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-3475 (*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-3465 (*1 *2 *3) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-560)) (-5 *3 (-563)))) (-3453 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-3442 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-1879 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-3429 (*1 *2 *3) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-560)) (-5 *3 (-563)))) (-3417 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))) (-1835 (*1 *2 *3) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-560)) (-5 *3 (-563)))))
+(-10 -7 (-15 -1835 ((-407 (-563)) (-563))) (-15 -3417 ((-563) (-563) (-563) (-563) (-563))) (-15 -3429 ((-640 (-563)) (-563))) (-15 -1879 ((-563) (-563))) (-15 -3442 ((-563) (-563))) (-15 -3453 ((-563) (-563))) (-15 -3465 ((-407 (-563)) (-563))) (-15 -3475 ((-563) (-563) (-563))) (-15 -1911 ((-563) (-563) (-563))) (-15 -3485 ((-563) (-563))) (-15 -3495 ((-563) (-563))) (-15 -3507 ((-563) (-563))) (-15 -3518 ((-563) (-563) (-767))))
+((-3528 (((-2 (|:| |answer| |#4|) (|:| -2829 |#4|)) |#4| (-1 |#2| |#2|)) 52)))
+(((-561 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3528 ((-2 (|:| |answer| |#4|) (|:| -2829 |#4|)) |#4| (-1 |#2| |#2|)))) (-363) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|)) (T -561))
+((-3528 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363)) (-4 *7 (-1233 (-407 *6))) (-5 *2 (-2 (|:| |answer| *3) (|:| -2829 *3))) (-5 *1 (-561 *5 *6 *7 *3)) (-4 *3 (-342 *5 *6 *7)))))
+(-10 -7 (-15 -3528 ((-2 (|:| |answer| |#4|) (|:| -2829 |#4|)) |#4| (-1 |#2| |#2|))))
+((-3528 (((-2 (|:| |answer| (-407 |#2|)) (|:| -2829 (-407 |#2|)) (|:| |specpart| (-407 |#2|)) (|:| |polypart| |#2|)) (-407 |#2|) (-1 |#2| |#2|)) 18)))
+(((-562 |#1| |#2|) (-10 -7 (-15 -3528 ((-2 (|:| |answer| (-407 |#2|)) (|:| -2829 (-407 |#2|)) (|:| |specpart| (-407 |#2|)) (|:| |polypart| |#2|)) (-407 |#2|) (-1 |#2| |#2|)))) (-363) (-1233 |#1|)) (T -562))
+((-3528 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| |answer| (-407 *6)) (|:| -2829 (-407 *6)) (|:| |specpart| (-407 *6)) (|:| |polypart| *6))) (-5 *1 (-562 *5 *6)) (-5 *3 (-407 *6)))))
+(-10 -7 (-15 -3528 ((-2 (|:| |answer| (-407 |#2|)) (|:| -2829 (-407 |#2|)) (|:| |specpart| (-407 |#2|)) (|:| |polypart| |#2|)) (-407 |#2|) (-1 |#2| |#2|))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 25)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 87)) (-3231 (($ $) 88)) (-3211 (((-112) $) NIL)) (-4297 (($ $ $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-4275 (($ $ $ $) 43)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-2807 (((-563) $) NIL)) (-3462 (($ $ $) 82)) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL)) (-2057 (((-563) $) NIL)) (-3094 (($ $ $) 81)) (-1476 (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 62) (((-684 (-563)) (-684 $)) 58)) (-3951 (((-3 $ "failed") $) 84)) (-2327 (((-3 (-407 (-563)) "failed") $) NIL)) (-2317 (((-112) $) NIL)) (-2306 (((-407 (-563)) $) NIL)) (-1690 (($) 64) (($ $) 65)) (-3054 (($ $ $) 80)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-4251 (($ $ $ $) NIL)) (-4308 (($ $ $) 55)) (-3414 (((-112) $) NIL)) (-2101 (($ $ $) NIL)) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL)) (-3401 (((-112) $) 26)) (-2959 (((-112) $) 75)) (-1983 (((-3 $ "failed") $) NIL)) (-3426 (((-112) $) 35)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4264 (($ $ $ $) 44)) (-3088 (($ $ $) 77)) (-1776 (($ $ $) 76)) (-2645 (($ $) NIL)) (-3419 (($ $) 41)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) 54)) (-4239 (($ $ $) NIL)) (-2522 (($) NIL T CONST)) (-2827 (($ $) 31)) (-1693 (((-1113) $) 34)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 119)) (-3551 (($ $ $) 85) (($ (-640 $)) NIL)) (-2081 (($ $) NIL)) (-2173 (((-418 $) $) 105)) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL)) (-3012 (((-3 $ "failed") $ $) 103)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2969 (((-112) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 79)) (-4203 (($ $ (-767)) NIL) (($ $) NIL)) (-3873 (($ $) 32)) (-1870 (($ $) 30)) (-2219 (((-563) $) 40) (((-536) $) 52) (((-888 (-563)) $) NIL) (((-379) $) 47) (((-225) $) 49) (((-1151) $) 53)) (-1692 (((-858) $) 38) (($ (-563)) 39) (($ $) NIL) (($ (-563)) 39)) (-3914 (((-767)) NIL)) (-4319 (((-112) $ $) NIL)) (-1864 (($ $ $) NIL)) (-4212 (($) 29)) (-3223 (((-112) $ $) NIL)) (-4287 (($ $ $ $) 42)) (-1462 (($ $) 63)) (-2239 (($) 27 T CONST)) (-2253 (($) 28 T CONST)) (-2742 (((-1151) $) 20) (((-1151) $ (-112)) 22) (((-1262) (-818) $) 23) (((-1262) (-818) $ (-112)) 24)) (-3213 (($ $ (-767)) NIL) (($ $) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 66)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 67)) (-1825 (($ $) 68) (($ $ $) 70)) (-1813 (($ $ $) 69)) (** (($ $ (-917)) NIL) (($ $ (-767)) 74)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 72) (($ $ $) 71)))
+(((-563) (-13 (-545) (-611 (-1151)) (-824) (-10 -8 (-15 -1690 ($ $)) (-6 -4395) (-6 -4400) (-6 -4396) (-6 -4390)))) (T -563))
+((-1690 (*1 *1 *1) (-5 *1 (-563))))
+(-13 (-545) (-611 (-1151)) (-824) (-10 -8 (-15 -1690 ($ $)) (-6 -4395) (-6 -4400) (-6 -4396) (-6 -4390)))
+((-2929 (((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))) (-765) (-1057)) 108) (((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))) (-765)) 110)) (-2062 (((-3 (-1031) "failed") (-316 (-379)) (-1085 (-839 (-379))) (-1169)) 172) (((-3 (-1031) "failed") (-316 (-379)) (-1085 (-839 (-379))) (-1151)) 171) (((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379) (-379) (-1057)) 176) (((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379) (-379)) 177) (((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379)) 178) (((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379))))) 179) (((-1031) (-316 (-379)) (-1087 (-839 (-379)))) 167) (((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379)) 166) (((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379) (-379)) 162) (((-1031) (-765)) 155) (((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379) (-379) (-1057)) 161)))
+(((-564) (-10 -7 (-15 -2062 ((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379) (-379) (-1057))) (-15 -2062 ((-1031) (-765))) (-15 -2062 ((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379) (-379))) (-15 -2062 ((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379))) (-15 -2062 ((-1031) (-316 (-379)) (-1087 (-839 (-379))))) (-15 -2062 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))))) (-15 -2062 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379))) (-15 -2062 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379) (-379))) (-15 -2062 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379) (-379) (-1057))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))) (-765))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))) (-765) (-1057))) (-15 -2062 ((-3 (-1031) "failed") (-316 (-379)) (-1085 (-839 (-379))) (-1151))) (-15 -2062 ((-3 (-1031) "failed") (-316 (-379)) (-1085 (-839 (-379))) (-1169))))) (T -564))
+((-2062 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-316 (-379))) (-5 *4 (-1085 (-839 (-379)))) (-5 *5 (-1169)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-2062 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-316 (-379))) (-5 *4 (-1085 (-839 (-379)))) (-5 *5 (-1151)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-2929 (*1 *2 *3 *4) (-12 (-5 *3 (-765)) (-5 *4 (-1057)) (-5 *2 (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031)))) (-5 *1 (-564)))) (-2929 (*1 *2 *3) (-12 (-5 *3 (-765)) (-5 *2 (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031)))) (-5 *1 (-564)))) (-2062 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379))))) (-5 *5 (-379)) (-5 *6 (-1057)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-2062 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379))))) (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-2062 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379))))) (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-2062 (*1 *2 *3 *4) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379))))) (-5 *2 (-1031)) (-5 *1 (-564)))) (-2062 (*1 *2 *3 *4) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379)))) (-5 *2 (-1031)) (-5 *1 (-564)))) (-2062 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379)))) (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-2062 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379)))) (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-2062 (*1 *2 *3) (-12 (-5 *3 (-765)) (-5 *2 (-1031)) (-5 *1 (-564)))) (-2062 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379)))) (-5 *5 (-379)) (-5 *6 (-1057)) (-5 *2 (-1031)) (-5 *1 (-564)))))
+(-10 -7 (-15 -2062 ((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379) (-379) (-1057))) (-15 -2062 ((-1031) (-765))) (-15 -2062 ((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379) (-379))) (-15 -2062 ((-1031) (-316 (-379)) (-1087 (-839 (-379))) (-379))) (-15 -2062 ((-1031) (-316 (-379)) (-1087 (-839 (-379))))) (-15 -2062 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))))) (-15 -2062 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379))) (-15 -2062 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379) (-379))) (-15 -2062 ((-1031) (-316 (-379)) (-640 (-1087 (-839 (-379)))) (-379) (-379) (-1057))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))) (-765))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))) (-765) (-1057))) (-15 -2062 ((-3 (-1031) "failed") (-316 (-379)) (-1085 (-839 (-379))) (-1151))) (-15 -2062 ((-3 (-1031) "failed") (-316 (-379)) (-1085 (-839 (-379))) (-1169))))
+((-3567 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|)) 183)) (-3541 (((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|)) 98)) (-3552 (((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2|) 179)) (-3578 (((-3 |#2| "failed") |#2| |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169))) 188)) (-3588 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4013 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) (-1169)) 196 (|has| |#3| (-651 |#2|)))))
+(((-565 |#1| |#2| |#3|) (-10 -7 (-15 -3541 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|))) (-15 -3552 ((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2|)) (-15 -3567 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|))) (-15 -3578 ((-3 |#2| "failed") |#2| |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)))) (IF (|has| |#3| (-651 |#2|)) (-15 -3588 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4013 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) (-1169))) |%noBranch|)) (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))) (-13 (-430 |#1|) (-27) (-1193)) (-1093)) (T -565))
+((-3588 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *5 (-609 *4)) (-5 *6 (-1169)) (-4 *4 (-13 (-430 *7) (-27) (-1193))) (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4)))) (-5 *1 (-565 *7 *4 *3)) (-4 *3 (-651 *4)) (-4 *3 (-1093)))) (-3578 (*1 *2 *2 *2 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-609 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1169))) (-4 *2 (-13 (-430 *5) (-27) (-1193))) (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *1 (-565 *5 *2 *6)) (-4 *6 (-1093)))) (-3567 (*1 *2 *3 *4 *4 *5) (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-640 *3)) (-4 *3 (-13 (-430 *6) (-27) (-1193))) (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-565 *6 *3 *7)) (-4 *7 (-1093)))) (-3552 (*1 *2 *3 *4 *4 *3) (|partial| -12 (-5 *4 (-609 *3)) (-4 *3 (-13 (-430 *5) (-27) (-1193))) (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-2 (|:| -2840 *3) (|:| |coeff| *3))) (-5 *1 (-565 *5 *3 *6)) (-4 *6 (-1093)))) (-3541 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-609 *3)) (-4 *3 (-13 (-430 *5) (-27) (-1193))) (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563)))) (-5 *2 (-584 *3)) (-5 *1 (-565 *5 *3 *6)) (-4 *6 (-1093)))))
+(-10 -7 (-15 -3541 ((-584 |#2|) |#2| (-609 |#2|) (-609 |#2|))) (-15 -3552 ((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-609 |#2|) (-609 |#2|) |#2|)) (-15 -3567 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-609 |#2|) (-609 |#2|) (-640 |#2|))) (-15 -3578 ((-3 |#2| "failed") |#2| |#2| |#2| (-609 |#2|) (-609 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1169)))) (IF (|has| |#3| (-651 |#2|)) (-15 -3588 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4013 (-640 |#2|))) |#3| |#2| (-609 |#2|) (-609 |#2|) (-1169))) |%noBranch|))
+((-3600 (((-2 (|:| -1959 |#2|) (|:| |nconst| |#2|)) |#2| (-1169)) 63)) (-3622 (((-3 |#2| "failed") |#2| (-1169) (-839 |#2|) (-839 |#2|)) 163 (-12 (|has| |#2| (-1132)) (|has| |#1| (-611 (-888 (-563)))) (|has| |#1| (-882 (-563))))) (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169)) 146 (-12 (|has| |#2| (-626)) (|has| |#1| (-611 (-888 (-563)))) (|has| |#1| (-882 (-563)))))) (-3611 (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169)) 147 (-12 (|has| |#2| (-626)) (|has| |#1| (-611 (-888 (-563)))) (|has| |#1| (-882 (-563)))))))
+(((-566 |#1| |#2|) (-10 -7 (-15 -3600 ((-2 (|:| -1959 |#2|) (|:| |nconst| |#2|)) |#2| (-1169))) (IF (|has| |#1| (-611 (-888 (-563)))) (IF (|has| |#1| (-882 (-563))) (PROGN (IF (|has| |#2| (-626)) (PROGN (-15 -3611 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169))) (-15 -3622 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169)))) |%noBranch|) (IF (|has| |#2| (-1132)) (-15 -3622 ((-3 |#2| "failed") |#2| (-1169) (-839 |#2|) (-839 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|)) (-13 (-846) (-1034 (-563)) (-452) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|))) (T -566))
+((-3622 (*1 *2 *2 *3 *4 *4) (|partial| -12 (-5 *3 (-1169)) (-5 *4 (-839 *2)) (-4 *2 (-1132)) (-4 *2 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-611 (-888 (-563)))) (-4 *5 (-882 (-563))) (-4 *5 (-13 (-846) (-1034 (-563)) (-452) (-636 (-563)))) (-5 *1 (-566 *5 *2)))) (-3622 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1169)) (-4 *5 (-611 (-888 (-563)))) (-4 *5 (-882 (-563))) (-4 *5 (-13 (-846) (-1034 (-563)) (-452) (-636 (-563)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-566 *5 *3)) (-4 *3 (-626)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-3611 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1169)) (-4 *5 (-611 (-888 (-563)))) (-4 *5 (-882 (-563))) (-4 *5 (-13 (-846) (-1034 (-563)) (-452) (-636 (-563)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-566 *5 *3)) (-4 *3 (-626)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-3600 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-846) (-1034 (-563)) (-452) (-636 (-563)))) (-5 *2 (-2 (|:| -1959 *3) (|:| |nconst| *3))) (-5 *1 (-566 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))))
+(-10 -7 (-15 -3600 ((-2 (|:| -1959 |#2|) (|:| |nconst| |#2|)) |#2| (-1169))) (IF (|has| |#1| (-611 (-888 (-563)))) (IF (|has| |#1| (-882 (-563))) (PROGN (IF (|has| |#2| (-626)) (PROGN (-15 -3611 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169))) (-15 -3622 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169)))) |%noBranch|) (IF (|has| |#2| (-1132)) (-15 -3622 ((-3 |#2| "failed") |#2| (-1169) (-839 |#2|) (-839 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
+((-3656 (((-3 (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|)))))) "failed") (-407 |#2|) (-640 (-407 |#2|))) 41)) (-2062 (((-584 (-407 |#2|)) (-407 |#2|)) 28)) (-3634 (((-3 (-407 |#2|) "failed") (-407 |#2|)) 17)) (-3645 (((-3 (-2 (|:| -2840 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-407 |#2|)) 48)))
+(((-567 |#1| |#2|) (-10 -7 (-15 -2062 ((-584 (-407 |#2|)) (-407 |#2|))) (-15 -3634 ((-3 (-407 |#2|) "failed") (-407 |#2|))) (-15 -3645 ((-3 (-2 (|:| -2840 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-407 |#2|))) (-15 -3656 ((-3 (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|)))))) "failed") (-407 |#2|) (-640 (-407 |#2|))))) (-13 (-363) (-147) (-1034 (-563))) (-1233 |#1|)) (T -567))
+((-3656 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-640 (-407 *6))) (-5 *3 (-407 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-567 *5 *6)))) (-3645 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-363) (-147) (-1034 (-563)))) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| -2840 (-407 *5)) (|:| |coeff| (-407 *5)))) (-5 *1 (-567 *4 *5)) (-5 *3 (-407 *5)))) (-3634 (*1 *2 *2) (|partial| -12 (-5 *2 (-407 *4)) (-4 *4 (-1233 *3)) (-4 *3 (-13 (-363) (-147) (-1034 (-563)))) (-5 *1 (-567 *3 *4)))) (-2062 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-563)))) (-4 *5 (-1233 *4)) (-5 *2 (-584 (-407 *5))) (-5 *1 (-567 *4 *5)) (-5 *3 (-407 *5)))))
+(-10 -7 (-15 -2062 ((-584 (-407 |#2|)) (-407 |#2|))) (-15 -3634 ((-3 (-407 |#2|) "failed") (-407 |#2|))) (-15 -3645 ((-3 (-2 (|:| -2840 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-407 |#2|))) (-15 -3656 ((-3 (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|)))))) "failed") (-407 |#2|) (-640 (-407 |#2|)))))
+((-3667 (((-3 (-563) "failed") |#1|) 14)) (-2736 (((-112) |#1|) 13)) (-3702 (((-563) |#1|) 9)))
+(((-568 |#1|) (-10 -7 (-15 -3702 ((-563) |#1|)) (-15 -2736 ((-112) |#1|)) (-15 -3667 ((-3 (-563) "failed") |#1|))) (-1034 (-563))) (T -568))
+((-3667 (*1 *2 *3) (|partial| -12 (-5 *2 (-563)) (-5 *1 (-568 *3)) (-4 *3 (-1034 *2)))) (-2736 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-568 *3)) (-4 *3 (-1034 (-563))))) (-3702 (*1 *2 *3) (-12 (-5 *2 (-563)) (-5 *1 (-568 *3)) (-4 *3 (-1034 *2)))))
+(-10 -7 (-15 -3702 ((-563) |#1|)) (-15 -2736 ((-112) |#1|)) (-15 -3667 ((-3 (-563) "failed") |#1|)))
+((-3705 (((-3 (-2 (|:| |mainpart| (-407 (-948 |#1|))) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 (-948 |#1|))) (|:| |logand| (-407 (-948 |#1|))))))) "failed") (-407 (-948 |#1|)) (-1169) (-640 (-407 (-948 |#1|)))) 48)) (-3679 (((-584 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-1169)) 28)) (-3691 (((-3 (-407 (-948 |#1|)) "failed") (-407 (-948 |#1|)) (-1169)) 23)) (-3718 (((-3 (-2 (|:| -2840 (-407 (-948 |#1|))) (|:| |coeff| (-407 (-948 |#1|)))) "failed") (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|))) 35)))
+(((-569 |#1|) (-10 -7 (-15 -3679 ((-584 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-1169))) (-15 -3691 ((-3 (-407 (-948 |#1|)) "failed") (-407 (-948 |#1|)) (-1169))) (-15 -3705 ((-3 (-2 (|:| |mainpart| (-407 (-948 |#1|))) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 (-948 |#1|))) (|:| |logand| (-407 (-948 |#1|))))))) "failed") (-407 (-948 |#1|)) (-1169) (-640 (-407 (-948 |#1|))))) (-15 -3718 ((-3 (-2 (|:| -2840 (-407 (-948 |#1|))) (|:| |coeff| (-407 (-948 |#1|)))) "failed") (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|))))) (-13 (-555) (-1034 (-563)) (-147))) (T -569))
+((-3718 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1169)) (-4 *5 (-13 (-555) (-1034 (-563)) (-147))) (-5 *2 (-2 (|:| -2840 (-407 (-948 *5))) (|:| |coeff| (-407 (-948 *5))))) (-5 *1 (-569 *5)) (-5 *3 (-407 (-948 *5))))) (-3705 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-640 (-407 (-948 *6)))) (-5 *3 (-407 (-948 *6))) (-4 *6 (-13 (-555) (-1034 (-563)) (-147))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-569 *6)))) (-3691 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-407 (-948 *4))) (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-1034 (-563)) (-147))) (-5 *1 (-569 *4)))) (-3679 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-555) (-1034 (-563)) (-147))) (-5 *2 (-584 (-407 (-948 *5)))) (-5 *1 (-569 *5)) (-5 *3 (-407 (-948 *5))))))
+(-10 -7 (-15 -3679 ((-584 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-1169))) (-15 -3691 ((-3 (-407 (-948 |#1|)) "failed") (-407 (-948 |#1|)) (-1169))) (-15 -3705 ((-3 (-2 (|:| |mainpart| (-407 (-948 |#1|))) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 (-948 |#1|))) (|:| |logand| (-407 (-948 |#1|))))))) "failed") (-407 (-948 |#1|)) (-1169) (-640 (-407 (-948 |#1|))))) (-15 -3718 ((-3 (-2 (|:| -2840 (-407 (-948 |#1|))) (|:| |coeff| (-407 (-948 |#1|)))) "failed") (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|)))))
+((-1677 (((-112) $ $) 58)) (-3439 (((-112) $) 36)) (-3835 ((|#1| $) 30)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) 62)) (-1770 (($ $) 122)) (-1618 (($ $) 102)) (-4092 ((|#1| $) 28)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2185 (($ $) NIL)) (-1747 (($ $) 124)) (-1596 (($ $) 98)) (-1793 (($ $) 126)) (-1642 (($ $) 106)) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) 77)) (-2057 (((-563) $) 79)) (-3951 (((-3 $ "failed") $) 61)) (-1326 (($ |#1| |#1|) 26)) (-3414 (((-112) $) 33)) (-2179 (($) 88)) (-3401 (((-112) $) 43)) (-2172 (($ $ (-563)) NIL)) (-3426 (((-112) $) 34)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-4372 (($ $) 90)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-3201 (($ |#1| |#1|) 20) (($ |#1|) 25) (($ (-407 (-563))) 76)) (-1315 ((|#1| $) 27)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) 64) (($ (-640 $)) NIL)) (-3012 (((-3 $ "failed") $ $) 63)) (-3372 (($ $) 92)) (-1805 (($ $) 130)) (-1655 (($ $) 104)) (-1783 (($ $) 132)) (-1629 (($ $) 108)) (-1758 (($ $) 128)) (-1607 (($ $) 100)) (-1303 (((-112) $ |#1|) 31)) (-1692 (((-858) $) 84) (($ (-563)) 66) (($ $) NIL) (($ (-563)) 66)) (-3914 (((-767)) 86)) (-1839 (($ $) 144)) (-1694 (($ $) 114)) (-3223 (((-112) $ $) NIL)) (-1816 (($ $) 142)) (-1666 (($ $) 110)) (-1861 (($ $) 140)) (-1721 (($ $) 120)) (-1311 (($ $) 138)) (-1734 (($ $) 118)) (-1850 (($ $) 136)) (-1709 (($ $) 116)) (-1828 (($ $) 134)) (-1679 (($ $) 112)) (-2239 (($) 21 T CONST)) (-2253 (($) 10 T CONST)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 37)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 35)) (-1825 (($ $) 41) (($ $ $) 42)) (-1813 (($ $ $) 40)) (** (($ $ (-917)) 54) (($ $ (-767)) NIL) (($ $ $) 94) (($ $ (-407 (-563))) 146)) (* (($ (-917) $) 51) (($ (-767) $) NIL) (($ (-563) $) 50) (($ $ $) 48)))
(((-570 |#1|) (-553 |#1|) (-13 (-404) (-1193))) (T -570))
NIL
(-553 |#1|)
-((-2748 (((-3 (-640 (-1165 (-563))) "failed") (-640 (-1165 (-563))) (-1165 (-563))) 24)))
-(((-571) (-10 -7 (-15 -2748 ((-3 (-640 (-1165 (-563))) "failed") (-640 (-1165 (-563))) (-1165 (-563)))))) (T -571))
-((-2748 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 (-1165 (-563)))) (-5 *3 (-1165 (-563))) (-5 *1 (-571)))))
-(-10 -7 (-15 -2748 ((-3 (-640 (-1165 (-563))) "failed") (-640 (-1165 (-563))) (-1165 (-563)))))
-((-3869 (((-640 (-609 |#2|)) (-640 (-609 |#2|)) (-1169)) 19)) (-4186 (((-640 (-609 |#2|)) (-640 |#2|) (-1169)) 23)) (-2583 (((-640 (-609 |#2|)) (-640 (-609 |#2|)) (-640 (-609 |#2|))) 11)) (-3031 ((|#2| |#2| (-1169)) 53 (|has| |#1| (-555)))) (-1720 ((|#2| |#2| (-1169)) 77 (-12 (|has| |#2| (-284)) (|has| |#1| (-452))))) (-2975 (((-609 |#2|) (-609 |#2|) (-640 (-609 |#2|)) (-1169)) 25)) (-2088 (((-609 |#2|) (-640 (-609 |#2|))) 24)) (-1755 (((-584 |#2|) |#2| (-1169) (-1 (-584 |#2|) |#2| (-1169)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169))) 101 (-12 (|has| |#2| (-284)) (|has| |#2| (-626)) (|has| |#2| (-1034 (-1169))) (|has| |#1| (-611 (-888 (-563)))) (|has| |#1| (-452)) (|has| |#1| (-882 (-563)))))))
-(((-572 |#1| |#2|) (-10 -7 (-15 -3869 ((-640 (-609 |#2|)) (-640 (-609 |#2|)) (-1169))) (-15 -2088 ((-609 |#2|) (-640 (-609 |#2|)))) (-15 -2975 ((-609 |#2|) (-609 |#2|) (-640 (-609 |#2|)) (-1169))) (-15 -2583 ((-640 (-609 |#2|)) (-640 (-609 |#2|)) (-640 (-609 |#2|)))) (-15 -4186 ((-640 (-609 |#2|)) (-640 |#2|) (-1169))) (IF (|has| |#1| (-555)) (-15 -3031 (|#2| |#2| (-1169))) |%noBranch|) (IF (|has| |#1| (-452)) (IF (|has| |#2| (-284)) (PROGN (-15 -1720 (|#2| |#2| (-1169))) (IF (|has| |#1| (-611 (-888 (-563)))) (IF (|has| |#1| (-882 (-563))) (IF (|has| |#2| (-626)) (IF (|has| |#2| (-1034 (-1169))) (-15 -1755 ((-584 |#2|) |#2| (-1169) (-1 (-584 |#2|) |#2| (-1169)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|)) (-846) (-430 |#1|)) (T -572))
-((-1755 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-1 (-584 *3) *3 (-1169))) (-5 *6 (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3 (-1169))) (-4 *3 (-284)) (-4 *3 (-626)) (-4 *3 (-1034 *4)) (-4 *3 (-430 *7)) (-5 *4 (-1169)) (-4 *7 (-611 (-888 (-563)))) (-4 *7 (-452)) (-4 *7 (-882 (-563))) (-4 *7 (-846)) (-5 *2 (-584 *3)) (-5 *1 (-572 *7 *3)))) (-1720 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-452)) (-4 *4 (-846)) (-5 *1 (-572 *4 *2)) (-4 *2 (-284)) (-4 *2 (-430 *4)))) (-3031 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-555)) (-4 *4 (-846)) (-5 *1 (-572 *4 *2)) (-4 *2 (-430 *4)))) (-4186 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *6)) (-5 *4 (-1169)) (-4 *6 (-430 *5)) (-4 *5 (-846)) (-5 *2 (-640 (-609 *6))) (-5 *1 (-572 *5 *6)))) (-2583 (*1 *2 *2 *2) (-12 (-5 *2 (-640 (-609 *4))) (-4 *4 (-430 *3)) (-4 *3 (-846)) (-5 *1 (-572 *3 *4)))) (-2975 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-640 (-609 *6))) (-5 *4 (-1169)) (-5 *2 (-609 *6)) (-4 *6 (-430 *5)) (-4 *5 (-846)) (-5 *1 (-572 *5 *6)))) (-2088 (*1 *2 *3) (-12 (-5 *3 (-640 (-609 *5))) (-4 *4 (-846)) (-5 *2 (-609 *5)) (-5 *1 (-572 *4 *5)) (-4 *5 (-430 *4)))) (-3869 (*1 *2 *2 *3) (-12 (-5 *2 (-640 (-609 *5))) (-5 *3 (-1169)) (-4 *5 (-430 *4)) (-4 *4 (-846)) (-5 *1 (-572 *4 *5)))))
-(-10 -7 (-15 -3869 ((-640 (-609 |#2|)) (-640 (-609 |#2|)) (-1169))) (-15 -2088 ((-609 |#2|) (-640 (-609 |#2|)))) (-15 -2975 ((-609 |#2|) (-609 |#2|) (-640 (-609 |#2|)) (-1169))) (-15 -2583 ((-640 (-609 |#2|)) (-640 (-609 |#2|)) (-640 (-609 |#2|)))) (-15 -4186 ((-640 (-609 |#2|)) (-640 |#2|) (-1169))) (IF (|has| |#1| (-555)) (-15 -3031 (|#2| |#2| (-1169))) |%noBranch|) (IF (|has| |#1| (-452)) (IF (|has| |#2| (-284)) (PROGN (-15 -1720 (|#2| |#2| (-1169))) (IF (|has| |#1| (-611 (-888 (-563)))) (IF (|has| |#1| (-882 (-563))) (IF (|has| |#2| (-626)) (IF (|has| |#2| (-1034 (-1169))) (-15 -1755 ((-584 |#2|) |#2| (-1169) (-1 (-584 |#2|) |#2| (-1169)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|))
-((-1548 (((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-640 |#1|) "failed") (-563) |#1| |#1|)) 172)) (-2057 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|))))))) (|:| |a0| |#1|)) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3646 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-640 (-407 |#2|))) 148)) (-3895 (((-3 (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|)))))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-640 (-407 |#2|))) 145)) (-3182 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3646 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 133)) (-3196 (((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3646 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 158)) (-3906 (((-3 (-2 (|:| -3646 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-407 |#2|)) 175)) (-3664 (((-3 (-2 (|:| |answer| (-407 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3646 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3646 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-407 |#2|)) 178)) (-2680 (((-2 (|:| |ir| (-584 (-407 |#2|))) (|:| |specpart| (-407 |#2|)) (|:| |polypart| |#2|)) (-407 |#2|) (-1 |#2| |#2|)) 84)) (-3822 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 90)) (-1961 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|))))))) (|:| |a0| |#1|)) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1701 |#1|) (|:| |sol?| (-112))) (-563) |#1|) (-640 (-407 |#2|))) 152)) (-4207 (((-3 (-620 |#1| |#2|) "failed") (-620 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1701 |#1|) (|:| |sol?| (-112))) (-563) |#1|)) 137)) (-3260 (((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1701 |#1|) (|:| |sol?| (-112))) (-563) |#1|)) 162)) (-2244 (((-3 (-2 (|:| |answer| (-407 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3646 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1701 |#1|) (|:| |sol?| (-112))) (-563) |#1|) (-407 |#2|)) 183)))
-(((-573 |#1| |#2|) (-10 -7 (-15 -3196 ((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3646 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -3260 ((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1701 |#1|) (|:| |sol?| (-112))) (-563) |#1|))) (-15 -1548 ((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-640 |#1|) "failed") (-563) |#1| |#1|))) (-15 -3664 ((-3 (-2 (|:| |answer| (-407 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3646 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3646 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-407 |#2|))) (-15 -2244 ((-3 (-2 (|:| |answer| (-407 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3646 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1701 |#1|) (|:| |sol?| (-112))) (-563) |#1|) (-407 |#2|))) (-15 -2057 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|))))))) (|:| |a0| |#1|)) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3646 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-640 (-407 |#2|)))) (-15 -1961 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|))))))) (|:| |a0| |#1|)) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1701 |#1|) (|:| |sol?| (-112))) (-563) |#1|) (-640 (-407 |#2|)))) (-15 -3906 ((-3 (-2 (|:| -3646 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-407 |#2|))) (-15 -3895 ((-3 (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|)))))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-640 (-407 |#2|)))) (-15 -3182 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3646 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -4207 ((-3 (-620 |#1| |#2|) "failed") (-620 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1701 |#1|) (|:| |sol?| (-112))) (-563) |#1|))) (-15 -2680 ((-2 (|:| |ir| (-584 (-407 |#2|))) (|:| |specpart| (-407 |#2|)) (|:| |polypart| |#2|)) (-407 |#2|) (-1 |#2| |#2|))) (-15 -3822 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-363) (-1233 |#1|)) (T -573))
-((-3822 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3))) (-5 *1 (-573 *5 *3)))) (-2680 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| |ir| (-584 (-407 *6))) (|:| |specpart| (-407 *6)) (|:| |polypart| *6))) (-5 *1 (-573 *5 *6)) (-5 *3 (-407 *6)))) (-4207 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-620 *4 *5)) (-5 *3 (-1 (-2 (|:| |ans| *4) (|:| -1701 *4) (|:| |sol?| (-112))) (-563) *4)) (-4 *4 (-363)) (-4 *5 (-1233 *4)) (-5 *1 (-573 *4 *5)))) (-3182 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -3646 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-363)) (-5 *1 (-573 *4 *2)) (-4 *2 (-1233 *4)))) (-3895 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-640 (-407 *7))) (-4 *7 (-1233 *6)) (-5 *3 (-407 *7)) (-4 *6 (-363)) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-573 *6 *7)))) (-3906 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| -3646 (-407 *6)) (|:| |coeff| (-407 *6)))) (-5 *1 (-573 *5 *6)) (-5 *3 (-407 *6)))) (-1961 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-2 (|:| |ans| *7) (|:| -1701 *7) (|:| |sol?| (-112))) (-563) *7)) (-5 *6 (-640 (-407 *8))) (-4 *7 (-363)) (-4 *8 (-1233 *7)) (-5 *3 (-407 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-573 *7 *8)))) (-2057 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -3646 *7) (|:| |coeff| *7)) "failed") *7)) (-5 *6 (-640 (-407 *8))) (-4 *7 (-363)) (-4 *8 (-1233 *7)) (-5 *3 (-407 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-573 *7 *8)))) (-2244 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -1701 *6) (|:| |sol?| (-112))) (-563) *6)) (-4 *6 (-363)) (-4 *7 (-1233 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-407 *7)) (|:| |a0| *6)) (-2 (|:| -3646 (-407 *7)) (|:| |coeff| (-407 *7))) "failed")) (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))) (-3664 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -3646 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-363)) (-4 *7 (-1233 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-407 *7)) (|:| |a0| *6)) (-2 (|:| -3646 (-407 *7)) (|:| |coeff| (-407 *7))) "failed")) (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))) (-1548 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-640 *6) "failed") (-563) *6 *6)) (-4 *6 (-363)) (-4 *7 (-1233 *6)) (-5 *2 (-2 (|:| |answer| (-584 (-407 *7))) (|:| |a0| *6))) (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))) (-3260 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -1701 *6) (|:| |sol?| (-112))) (-563) *6)) (-4 *6 (-363)) (-4 *7 (-1233 *6)) (-5 *2 (-2 (|:| |answer| (-584 (-407 *7))) (|:| |a0| *6))) (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))) (-3196 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -3646 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-363)) (-4 *7 (-1233 *6)) (-5 *2 (-2 (|:| |answer| (-584 (-407 *7))) (|:| |a0| *6))) (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))))
-(-10 -7 (-15 -3196 ((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3646 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -3260 ((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1701 |#1|) (|:| |sol?| (-112))) (-563) |#1|))) (-15 -1548 ((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-640 |#1|) "failed") (-563) |#1| |#1|))) (-15 -3664 ((-3 (-2 (|:| |answer| (-407 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3646 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3646 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-407 |#2|))) (-15 -2244 ((-3 (-2 (|:| |answer| (-407 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3646 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1701 |#1|) (|:| |sol?| (-112))) (-563) |#1|) (-407 |#2|))) (-15 -2057 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|))))))) (|:| |a0| |#1|)) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3646 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-640 (-407 |#2|)))) (-15 -1961 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|))))))) (|:| |a0| |#1|)) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1701 |#1|) (|:| |sol?| (-112))) (-563) |#1|) (-640 (-407 |#2|)))) (-15 -3906 ((-3 (-2 (|:| -3646 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-407 |#2|))) (-15 -3895 ((-3 (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|)))))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-640 (-407 |#2|)))) (-15 -3182 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3646 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -4207 ((-3 (-620 |#1| |#2|) "failed") (-620 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1701 |#1|) (|:| |sol?| (-112))) (-563) |#1|))) (-15 -2680 ((-2 (|:| |ir| (-584 (-407 |#2|))) (|:| |specpart| (-407 |#2|)) (|:| |polypart| |#2|)) (-407 |#2|) (-1 |#2| |#2|))) (-15 -3822 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
-((-4151 (((-3 |#2| "failed") |#2| (-1169) (-1169)) 10)))
-(((-574 |#1| |#2|) (-10 -7 (-15 -4151 ((-3 |#2| "failed") |#2| (-1169) (-1169)))) (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-955) (-1132) (-29 |#1|))) (T -574))
-((-4151 (*1 *2 *2 *3 *3) (|partial| -12 (-5 *3 (-1169)) (-4 *4 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-574 *4 *2)) (-4 *2 (-13 (-1193) (-955) (-1132) (-29 *4))))))
-(-10 -7 (-15 -4151 ((-3 |#2| "failed") |#2| (-1169) (-1169))))
-((-2577 (((-686 (-1215)) $ (-1215)) 26)) (-2871 (((-686 (-548)) $ (-548)) 25)) (-2910 (((-767) $ (-128)) 27)) (-1717 (((-686 (-129)) $ (-129)) 24)) (-2843 (((-686 (-1215)) $) 12)) (-3262 (((-686 (-1214)) $) 8)) (-3927 (((-686 (-1213)) $) 10)) (-3429 (((-686 (-548)) $) 13)) (-1497 (((-686 (-547)) $) 9)) (-3351 (((-686 (-546)) $) 11)) (-2513 (((-767) $ (-128)) 7)) (-2810 (((-686 (-129)) $) 14)) (-3004 (($ $) 6)))
+((-2066 (((-3 (-640 (-1165 (-563))) "failed") (-640 (-1165 (-563))) (-1165 (-563))) 24)))
+(((-571) (-10 -7 (-15 -2066 ((-3 (-640 (-1165 (-563))) "failed") (-640 (-1165 (-563))) (-1165 (-563)))))) (T -571))
+((-2066 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 (-1165 (-563)))) (-5 *3 (-1165 (-563))) (-5 *1 (-571)))))
+(-10 -7 (-15 -2066 ((-3 (-640 (-1165 (-563))) "failed") (-640 (-1165 (-563))) (-1165 (-563)))))
+((-3731 (((-640 (-609 |#2|)) (-640 (-609 |#2|)) (-1169)) 19)) (-3764 (((-640 (-609 |#2|)) (-640 |#2|) (-1169)) 23)) (-2582 (((-640 (-609 |#2|)) (-640 (-609 |#2|)) (-640 (-609 |#2|))) 11)) (-3774 ((|#2| |#2| (-1169)) 53 (|has| |#1| (-555)))) (-3787 ((|#2| |#2| (-1169)) 76 (-12 (|has| |#2| (-284)) (|has| |#1| (-452))))) (-3752 (((-609 |#2|) (-609 |#2|) (-640 (-609 |#2|)) (-1169)) 25)) (-3742 (((-609 |#2|) (-640 (-609 |#2|))) 24)) (-3796 (((-584 |#2|) |#2| (-1169) (-1 (-584 |#2|) |#2| (-1169)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169))) 101 (-12 (|has| |#2| (-284)) (|has| |#2| (-626)) (|has| |#2| (-1034 (-1169))) (|has| |#1| (-611 (-888 (-563)))) (|has| |#1| (-452)) (|has| |#1| (-882 (-563)))))))
+(((-572 |#1| |#2|) (-10 -7 (-15 -3731 ((-640 (-609 |#2|)) (-640 (-609 |#2|)) (-1169))) (-15 -3742 ((-609 |#2|) (-640 (-609 |#2|)))) (-15 -3752 ((-609 |#2|) (-609 |#2|) (-640 (-609 |#2|)) (-1169))) (-15 -2582 ((-640 (-609 |#2|)) (-640 (-609 |#2|)) (-640 (-609 |#2|)))) (-15 -3764 ((-640 (-609 |#2|)) (-640 |#2|) (-1169))) (IF (|has| |#1| (-555)) (-15 -3774 (|#2| |#2| (-1169))) |%noBranch|) (IF (|has| |#1| (-452)) (IF (|has| |#2| (-284)) (PROGN (-15 -3787 (|#2| |#2| (-1169))) (IF (|has| |#1| (-611 (-888 (-563)))) (IF (|has| |#1| (-882 (-563))) (IF (|has| |#2| (-626)) (IF (|has| |#2| (-1034 (-1169))) (-15 -3796 ((-584 |#2|) |#2| (-1169) (-1 (-584 |#2|) |#2| (-1169)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|)) (-846) (-430 |#1|)) (T -572))
+((-3796 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-1 (-584 *3) *3 (-1169))) (-5 *6 (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3 (-1169))) (-4 *3 (-284)) (-4 *3 (-626)) (-4 *3 (-1034 *4)) (-4 *3 (-430 *7)) (-5 *4 (-1169)) (-4 *7 (-611 (-888 (-563)))) (-4 *7 (-452)) (-4 *7 (-882 (-563))) (-4 *7 (-846)) (-5 *2 (-584 *3)) (-5 *1 (-572 *7 *3)))) (-3787 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-452)) (-4 *4 (-846)) (-5 *1 (-572 *4 *2)) (-4 *2 (-284)) (-4 *2 (-430 *4)))) (-3774 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-555)) (-4 *4 (-846)) (-5 *1 (-572 *4 *2)) (-4 *2 (-430 *4)))) (-3764 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *6)) (-5 *4 (-1169)) (-4 *6 (-430 *5)) (-4 *5 (-846)) (-5 *2 (-640 (-609 *6))) (-5 *1 (-572 *5 *6)))) (-2582 (*1 *2 *2 *2) (-12 (-5 *2 (-640 (-609 *4))) (-4 *4 (-430 *3)) (-4 *3 (-846)) (-5 *1 (-572 *3 *4)))) (-3752 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-640 (-609 *6))) (-5 *4 (-1169)) (-5 *2 (-609 *6)) (-4 *6 (-430 *5)) (-4 *5 (-846)) (-5 *1 (-572 *5 *6)))) (-3742 (*1 *2 *3) (-12 (-5 *3 (-640 (-609 *5))) (-4 *4 (-846)) (-5 *2 (-609 *5)) (-5 *1 (-572 *4 *5)) (-4 *5 (-430 *4)))) (-3731 (*1 *2 *2 *3) (-12 (-5 *2 (-640 (-609 *5))) (-5 *3 (-1169)) (-4 *5 (-430 *4)) (-4 *4 (-846)) (-5 *1 (-572 *4 *5)))))
+(-10 -7 (-15 -3731 ((-640 (-609 |#2|)) (-640 (-609 |#2|)) (-1169))) (-15 -3742 ((-609 |#2|) (-640 (-609 |#2|)))) (-15 -3752 ((-609 |#2|) (-609 |#2|) (-640 (-609 |#2|)) (-1169))) (-15 -2582 ((-640 (-609 |#2|)) (-640 (-609 |#2|)) (-640 (-609 |#2|)))) (-15 -3764 ((-640 (-609 |#2|)) (-640 |#2|) (-1169))) (IF (|has| |#1| (-555)) (-15 -3774 (|#2| |#2| (-1169))) |%noBranch|) (IF (|has| |#1| (-452)) (IF (|has| |#2| (-284)) (PROGN (-15 -3787 (|#2| |#2| (-1169))) (IF (|has| |#1| (-611 (-888 (-563)))) (IF (|has| |#1| (-882 (-563))) (IF (|has| |#2| (-626)) (IF (|has| |#2| (-1034 (-1169))) (-15 -3796 ((-584 |#2|) |#2| (-1169) (-1 (-584 |#2|) |#2| (-1169)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1169)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|))
+((-2633 (((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-640 |#1|) "failed") (-563) |#1| |#1|)) 172)) (-2661 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|))))))) (|:| |a0| |#1|)) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2840 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-640 (-407 |#2|))) 148)) (-2689 (((-3 (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|)))))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-640 (-407 |#2|))) 145)) (-2697 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2840 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 133)) (-3809 (((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2840 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 158)) (-2680 (((-3 (-2 (|:| -2840 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-407 |#2|)) 175)) (-2643 (((-3 (-2 (|:| |answer| (-407 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2840 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2840 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-407 |#2|)) 178)) (-2717 (((-2 (|:| |ir| (-584 (-407 |#2|))) (|:| |specpart| (-407 |#2|)) (|:| |polypart| |#2|)) (-407 |#2|) (-1 |#2| |#2|)) 84)) (-2728 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 90)) (-2672 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|))))))) (|:| |a0| |#1|)) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1700 |#1|) (|:| |sol?| (-112))) (-563) |#1|) (-640 (-407 |#2|))) 152)) (-2707 (((-3 (-620 |#1| |#2|) "failed") (-620 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1700 |#1|) (|:| |sol?| (-112))) (-563) |#1|)) 137)) (-3821 (((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1700 |#1|) (|:| |sol?| (-112))) (-563) |#1|)) 162)) (-2653 (((-3 (-2 (|:| |answer| (-407 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2840 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1700 |#1|) (|:| |sol?| (-112))) (-563) |#1|) (-407 |#2|)) 183)))
+(((-573 |#1| |#2|) (-10 -7 (-15 -3809 ((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2840 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -3821 ((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1700 |#1|) (|:| |sol?| (-112))) (-563) |#1|))) (-15 -2633 ((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-640 |#1|) "failed") (-563) |#1| |#1|))) (-15 -2643 ((-3 (-2 (|:| |answer| (-407 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2840 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2840 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-407 |#2|))) (-15 -2653 ((-3 (-2 (|:| |answer| (-407 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2840 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1700 |#1|) (|:| |sol?| (-112))) (-563) |#1|) (-407 |#2|))) (-15 -2661 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|))))))) (|:| |a0| |#1|)) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2840 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-640 (-407 |#2|)))) (-15 -2672 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|))))))) (|:| |a0| |#1|)) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1700 |#1|) (|:| |sol?| (-112))) (-563) |#1|) (-640 (-407 |#2|)))) (-15 -2680 ((-3 (-2 (|:| -2840 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-407 |#2|))) (-15 -2689 ((-3 (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|)))))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-640 (-407 |#2|)))) (-15 -2697 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2840 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -2707 ((-3 (-620 |#1| |#2|) "failed") (-620 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1700 |#1|) (|:| |sol?| (-112))) (-563) |#1|))) (-15 -2717 ((-2 (|:| |ir| (-584 (-407 |#2|))) (|:| |specpart| (-407 |#2|)) (|:| |polypart| |#2|)) (-407 |#2|) (-1 |#2| |#2|))) (-15 -2728 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-363) (-1233 |#1|)) (T -573))
+((-2728 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3))) (-5 *1 (-573 *5 *3)))) (-2717 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| |ir| (-584 (-407 *6))) (|:| |specpart| (-407 *6)) (|:| |polypart| *6))) (-5 *1 (-573 *5 *6)) (-5 *3 (-407 *6)))) (-2707 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-620 *4 *5)) (-5 *3 (-1 (-2 (|:| |ans| *4) (|:| -1700 *4) (|:| |sol?| (-112))) (-563) *4)) (-4 *4 (-363)) (-4 *5 (-1233 *4)) (-5 *1 (-573 *4 *5)))) (-2697 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -2840 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-363)) (-5 *1 (-573 *4 *2)) (-4 *2 (-1233 *4)))) (-2689 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-640 (-407 *7))) (-4 *7 (-1233 *6)) (-5 *3 (-407 *7)) (-4 *6 (-363)) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-573 *6 *7)))) (-2680 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| -2840 (-407 *6)) (|:| |coeff| (-407 *6)))) (-5 *1 (-573 *5 *6)) (-5 *3 (-407 *6)))) (-2672 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-2 (|:| |ans| *7) (|:| -1700 *7) (|:| |sol?| (-112))) (-563) *7)) (-5 *6 (-640 (-407 *8))) (-4 *7 (-363)) (-4 *8 (-1233 *7)) (-5 *3 (-407 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-573 *7 *8)))) (-2661 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -2840 *7) (|:| |coeff| *7)) "failed") *7)) (-5 *6 (-640 (-407 *8))) (-4 *7 (-363)) (-4 *8 (-1233 *7)) (-5 *3 (-407 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-573 *7 *8)))) (-2653 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -1700 *6) (|:| |sol?| (-112))) (-563) *6)) (-4 *6 (-363)) (-4 *7 (-1233 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-407 *7)) (|:| |a0| *6)) (-2 (|:| -2840 (-407 *7)) (|:| |coeff| (-407 *7))) "failed")) (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))) (-2643 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -2840 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-363)) (-4 *7 (-1233 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-407 *7)) (|:| |a0| *6)) (-2 (|:| -2840 (-407 *7)) (|:| |coeff| (-407 *7))) "failed")) (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))) (-2633 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-640 *6) "failed") (-563) *6 *6)) (-4 *6 (-363)) (-4 *7 (-1233 *6)) (-5 *2 (-2 (|:| |answer| (-584 (-407 *7))) (|:| |a0| *6))) (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))) (-3821 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -1700 *6) (|:| |sol?| (-112))) (-563) *6)) (-4 *6 (-363)) (-4 *7 (-1233 *6)) (-5 *2 (-2 (|:| |answer| (-584 (-407 *7))) (|:| |a0| *6))) (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))) (-3809 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -2840 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-363)) (-4 *7 (-1233 *6)) (-5 *2 (-2 (|:| |answer| (-584 (-407 *7))) (|:| |a0| *6))) (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))))
+(-10 -7 (-15 -3809 ((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2840 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -3821 ((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1700 |#1|) (|:| |sol?| (-112))) (-563) |#1|))) (-15 -2633 ((-2 (|:| |answer| (-584 (-407 |#2|))) (|:| |a0| |#1|)) (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-640 |#1|) "failed") (-563) |#1| |#1|))) (-15 -2643 ((-3 (-2 (|:| |answer| (-407 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2840 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2840 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-407 |#2|))) (-15 -2653 ((-3 (-2 (|:| |answer| (-407 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2840 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1700 |#1|) (|:| |sol?| (-112))) (-563) |#1|) (-407 |#2|))) (-15 -2661 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|))))))) (|:| |a0| |#1|)) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2840 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-640 (-407 |#2|)))) (-15 -2672 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|))))))) (|:| |a0| |#1|)) "failed") (-407 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1700 |#1|) (|:| |sol?| (-112))) (-563) |#1|) (-640 (-407 |#2|)))) (-15 -2680 ((-3 (-2 (|:| -2840 (-407 |#2|)) (|:| |coeff| (-407 |#2|))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-407 |#2|))) (-15 -2689 ((-3 (-2 (|:| |mainpart| (-407 |#2|)) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| (-407 |#2|)) (|:| |logand| (-407 |#2|)))))) "failed") (-407 |#2|) (-1 |#2| |#2|) (-640 (-407 |#2|)))) (-15 -2697 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2840 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -2707 ((-3 (-620 |#1| |#2|) "failed") (-620 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1700 |#1|) (|:| |sol?| (-112))) (-563) |#1|))) (-15 -2717 ((-2 (|:| |ir| (-584 (-407 |#2|))) (|:| |specpart| (-407 |#2|)) (|:| |polypart| |#2|)) (-407 |#2|) (-1 |#2| |#2|))) (-15 -2728 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
+((-2740 (((-3 |#2| "failed") |#2| (-1169) (-1169)) 10)))
+(((-574 |#1| |#2|) (-10 -7 (-15 -2740 ((-3 |#2| "failed") |#2| (-1169) (-1169)))) (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-955) (-1132) (-29 |#1|))) (T -574))
+((-2740 (*1 *2 *2 *3 *3) (|partial| -12 (-5 *3 (-1169)) (-4 *4 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-574 *4 *2)) (-4 *2 (-13 (-1193) (-955) (-1132) (-29 *4))))))
+(-10 -7 (-15 -2740 ((-3 |#2| "failed") |#2| (-1169) (-1169))))
+((-3233 (((-686 (-1215)) $ (-1215)) 26)) (-3243 (((-686 (-548)) $ (-548)) 25)) (-3225 (((-767) $ (-128)) 27)) (-3254 (((-686 (-129)) $ (-129)) 24)) (-3884 (((-686 (-1215)) $) 12)) (-3848 (((-686 (-1214)) $) 8)) (-3864 (((-686 (-1213)) $) 10)) (-3896 (((-686 (-548)) $) 13)) (-3857 (((-686 (-547)) $) 9)) (-3874 (((-686 (-546)) $) 11)) (-3839 (((-767) $ (-128)) 7)) (-3907 (((-686 (-129)) $) 14)) (-1895 (($ $) 6)))
(((-575) (-140)) (T -575))
NIL
(-13 (-527) (-856))
(((-173) . T) ((-527) . T) ((-856) . T))
-((-2577 (((-686 (-1215)) $ (-1215)) NIL)) (-2871 (((-686 (-548)) $ (-548)) NIL)) (-2910 (((-767) $ (-128)) NIL)) (-1717 (((-686 (-129)) $ (-129)) NIL)) (-2843 (((-686 (-1215)) $) NIL)) (-3262 (((-686 (-1214)) $) NIL)) (-3927 (((-686 (-1213)) $) NIL)) (-3429 (((-686 (-548)) $) NIL)) (-1497 (((-686 (-547)) $) NIL)) (-3351 (((-686 (-546)) $) NIL)) (-2513 (((-767) $ (-128)) NIL)) (-2810 (((-686 (-129)) $) NIL)) (-4080 (((-112) $) NIL)) (-2704 (($ (-388)) 14) (($ (-1151)) 16)) (-1693 (((-858) $) NIL)) (-3004 (($ $) NIL)))
-(((-576) (-13 (-575) (-610 (-858)) (-10 -8 (-15 -2704 ($ (-388))) (-15 -2704 ($ (-1151))) (-15 -4080 ((-112) $))))) (T -576))
-((-2704 (*1 *1 *2) (-12 (-5 *2 (-388)) (-5 *1 (-576)))) (-2704 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-576)))) (-4080 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-576)))))
-(-13 (-575) (-610 (-858)) (-10 -8 (-15 -2704 ($ (-388))) (-15 -2704 ($ (-1151))) (-15 -4080 ((-112) $))))
-((-1677 (((-112) $ $) NIL)) (-1555 (($) 7 T CONST)) (-3573 (((-1151) $) NIL)) (-1520 (($) 6 T CONST)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 14)) (-1920 (($) 8 T CONST)) (-1718 (((-112) $ $) 10)))
-(((-577) (-13 (-1093) (-10 -8 (-15 -1520 ($) -2669) (-15 -1555 ($) -2669) (-15 -1920 ($) -2669)))) (T -577))
-((-1520 (*1 *1) (-5 *1 (-577))) (-1555 (*1 *1) (-5 *1 (-577))) (-1920 (*1 *1) (-5 *1 (-577))))
-(-13 (-1093) (-10 -8 (-15 -1520 ($) -2669) (-15 -1555 ($) -2669) (-15 -1920 ($) -2669)))
-((-1677 (((-112) $ $) NIL)) (-3311 (((-686 $) (-491)) 16)) (-3573 (((-1151) $) NIL)) (-1628 (($ (-1151)) 9)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 31)) (-2022 (((-213 4 (-129)) $) 19)) (-1718 (((-112) $ $) 22)))
-(((-578) (-13 (-1093) (-10 -8 (-15 -1628 ($ (-1151))) (-15 -2022 ((-213 4 (-129)) $)) (-15 -3311 ((-686 $) (-491)))))) (T -578))
-((-1628 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-578)))) (-2022 (*1 *2 *1) (-12 (-5 *2 (-213 4 (-129))) (-5 *1 (-578)))) (-3311 (*1 *2 *3) (-12 (-5 *3 (-491)) (-5 *2 (-686 (-578))) (-5 *1 (-578)))))
-(-13 (-1093) (-10 -8 (-15 -1628 ($ (-1151))) (-15 -2022 ((-213 4 (-129)) $)) (-15 -3311 ((-686 $) (-491)))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2186 (($ $ (-563)) 66)) (-1919 (((-112) $ $) NIL)) (-4239 (($) NIL T CONST)) (-3853 (($ (-1165 (-563)) (-563)) 72)) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) 58)) (-2840 (($ $) 34)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-3254 (((-767) $) 15)) (-3827 (((-112) $) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2995 (((-563)) 29)) (-3553 (((-563) $) 32)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3320 (($ $ (-563)) 21)) (-3008 (((-3 $ "failed") $ $) 59)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) 16)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 61)) (-4113 (((-1149 (-563)) $) 18)) (-1741 (($ $) 23)) (-1693 (((-858) $) 86) (($ (-563)) 52) (($ $) NIL)) (-1675 (((-767)) 14)) (-2126 (((-112) $ $) NIL)) (-1403 (((-563) $ (-563)) 36)) (-2241 (($) 35 T CONST)) (-2254 (($) 19 T CONST)) (-1718 (((-112) $ $) 39)) (-1826 (($ $) 51) (($ $ $) 37)) (-1814 (($ $ $) 50)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 54) (($ $ $) 55)))
+((-3233 (((-686 (-1215)) $ (-1215)) NIL)) (-3243 (((-686 (-548)) $ (-548)) NIL)) (-3225 (((-767) $ (-128)) NIL)) (-3254 (((-686 (-129)) $ (-129)) NIL)) (-3884 (((-686 (-1215)) $) NIL)) (-3848 (((-686 (-1214)) $) NIL)) (-3864 (((-686 (-1213)) $) NIL)) (-3896 (((-686 (-548)) $) NIL)) (-3857 (((-686 (-547)) $) NIL)) (-3874 (((-686 (-546)) $) NIL)) (-3839 (((-767) $ (-128)) NIL)) (-3907 (((-686 (-129)) $) NIL)) (-3170 (((-112) $) NIL)) (-2752 (($ (-388)) 14) (($ (-1151)) 16)) (-1692 (((-858) $) NIL)) (-1895 (($ $) NIL)))
+(((-576) (-13 (-575) (-610 (-858)) (-10 -8 (-15 -2752 ($ (-388))) (-15 -2752 ($ (-1151))) (-15 -3170 ((-112) $))))) (T -576))
+((-2752 (*1 *1 *2) (-12 (-5 *2 (-388)) (-5 *1 (-576)))) (-2752 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-576)))) (-3170 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-576)))))
+(-13 (-575) (-610 (-858)) (-10 -8 (-15 -2752 ($ (-388))) (-15 -2752 ($ (-1151))) (-15 -3170 ((-112) $))))
+((-1677 (((-112) $ $) NIL)) (-1554 (($) 7 T CONST)) (-3854 (((-1151) $) NIL)) (-1516 (($) 6 T CONST)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 14)) (-2762 (($) 8 T CONST)) (-1718 (((-112) $ $) 10)))
+(((-577) (-13 (-1093) (-10 -8 (-15 -1516 ($) -2668) (-15 -1554 ($) -2668) (-15 -2762 ($) -2668)))) (T -577))
+((-1516 (*1 *1) (-5 *1 (-577))) (-1554 (*1 *1) (-5 *1 (-577))) (-2762 (*1 *1) (-5 *1 (-577))))
+(-13 (-1093) (-10 -8 (-15 -1516 ($) -2668) (-15 -1554 ($) -2668) (-15 -2762 ($) -2668)))
+((-1677 (((-112) $ $) NIL)) (-3316 (((-686 $) (-491)) 16)) (-3854 (((-1151) $) NIL)) (-2784 (($ (-1151)) 9)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 31)) (-2773 (((-213 4 (-129)) $) 19)) (-1718 (((-112) $ $) 22)))
+(((-578) (-13 (-1093) (-10 -8 (-15 -2784 ($ (-1151))) (-15 -2773 ((-213 4 (-129)) $)) (-15 -3316 ((-686 $) (-491)))))) (T -578))
+((-2784 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-578)))) (-2773 (*1 *2 *1) (-12 (-5 *2 (-213 4 (-129))) (-5 *1 (-578)))) (-3316 (*1 *2 *3) (-12 (-5 *3 (-491)) (-5 *2 (-686 (-578))) (-5 *1 (-578)))))
+(-13 (-1093) (-10 -8 (-15 -2784 ($ (-1151))) (-15 -2773 ((-213 4 (-129)) $)) (-15 -3316 ((-686 $) (-491)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2185 (($ $ (-563)) 66)) (-2003 (((-112) $ $) NIL)) (-2569 (($) NIL T CONST)) (-3558 (($ (-1165 (-563)) (-563)) 72)) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) 58)) (-3572 (($ $) 34)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-1775 (((-767) $) 15)) (-3401 (((-112) $) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3593 (((-563)) 29)) (-3583 (((-563) $) 32)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1751 (($ $ (-563)) 21)) (-3012 (((-3 $ "failed") $ $) 59)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) 16)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 61)) (-3605 (((-1149 (-563)) $) 18)) (-3369 (($ $) 23)) (-1692 (((-858) $) 86) (($ (-563)) 52) (($ $) NIL)) (-3914 (((-767)) 14)) (-3223 (((-112) $ $) NIL)) (-1402 (((-563) $ (-563)) 36)) (-2239 (($) 35 T CONST)) (-2253 (($) 19 T CONST)) (-1718 (((-112) $ $) 39)) (-1825 (($ $) 51) (($ $ $) 37)) (-1813 (($ $ $) 50)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 54) (($ $ $) 55)))
(((-579 |#1| |#2|) (-865 |#1|) (-563) (-112)) (T -579))
NIL
(-865 |#1|)
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 21)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2388 (((-112) $) NIL)) (-3259 (((-767)) NIL)) (-1733 (($ $ (-917)) NIL (|has| $ (-368))) (($ $) NIL)) (-2752 (((-1181 (-917) (-767)) (-563)) 47)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-3749 (((-767)) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 $ "failed") $) 75)) (-2058 (($ $) 74)) (-3937 (($ (-1257 $)) 73)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) 44)) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) 32)) (-1691 (($) NIL)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-1571 (($) 49)) (-2366 (((-112) $) NIL)) (-1637 (($ $) NIL) (($ $ (-767)) NIL)) (-2468 (((-112) $) NIL)) (-3254 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3827 (((-112) $) NIL)) (-3723 (($) 37 (|has| $ (-368)))) (-2890 (((-112) $) NIL (|has| $ (-368)))) (-3793 (($ $ (-917)) NIL (|has| $ (-368))) (($ $) NIL)) (-2408 (((-3 $ "failed") $) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3941 (((-1165 $) $ (-917)) NIL (|has| $ (-368))) (((-1165 $) $) 83)) (-1476 (((-917) $) 55)) (-2229 (((-1165 $) $) NIL (|has| $ (-368)))) (-1631 (((-3 (-1165 $) "failed") $ $) NIL (|has| $ (-368))) (((-1165 $) $) NIL (|has| $ (-368)))) (-4166 (($ $ (-1165 $)) NIL (|has| $ (-368)))) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL T CONST)) (-2555 (($ (-917)) 48)) (-3013 (((-112) $) 67)) (-1694 (((-1113) $) NIL)) (-4333 (($) 19 (|has| $ (-368)))) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) 42)) (-2174 (((-418 $) $) NIL)) (-1467 (((-917)) 66) (((-829 (-917))) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-1423 (((-3 (-767) "failed") $ $) NIL) (((-767) $) NIL)) (-3533 (((-134)) NIL)) (-4202 (($ $ (-767)) NIL) (($ $) NIL)) (-4167 (((-917) $) 65) (((-829 (-917)) $) NIL)) (-3390 (((-1165 $)) 82)) (-4284 (($) 54)) (-1484 (($) 38 (|has| $ (-368)))) (-1880 (((-684 $) (-1257 $)) NIL) (((-1257 $) $) 71)) (-2220 (((-563) $) 28)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) 30) (($ $) NIL) (($ (-407 (-563))) NIL)) (-2779 (((-3 $ "failed") $) NIL) (($ $) 84)) (-1675 (((-767)) 39)) (-4315 (((-1257 $) (-917)) 77) (((-1257 $)) 76)) (-2126 (((-112) $ $) NIL)) (-3152 (((-112) $) NIL)) (-2241 (($) 22 T CONST)) (-2254 (($) 18 T CONST)) (-2350 (($ $ (-767)) NIL (|has| $ (-368))) (($ $) NIL (|has| $ (-368)))) (-3209 (($ $ (-767)) NIL) (($ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) 26)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 61) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 21)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3761 (((-112) $) NIL)) (-3728 (((-767)) NIL)) (-1731 (($ $ (-917)) NIL (|has| $ (-368))) (($ $) NIL)) (-1597 (((-1181 (-917) (-767)) (-563)) 47)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-3750 (((-767)) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 $ "failed") $) 75)) (-2057 (($ $) 74)) (-3458 (($ (-1257 $)) 73)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) 44)) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) 32)) (-1690 (($) NIL)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-4036 (($) 49)) (-1656 (((-112) $) NIL)) (-3188 (($ $) NIL) (($ $ (-767)) NIL)) (-2560 (((-112) $) NIL)) (-1775 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3401 (((-112) $) NIL)) (-4024 (($) 37 (|has| $ (-368)))) (-4002 (((-112) $) NIL (|has| $ (-368)))) (-3975 (($ $ (-917)) NIL (|has| $ (-368))) (($ $) NIL)) (-1983 (((-3 $ "failed") $) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4035 (((-1165 $) $ (-917)) NIL (|has| $ (-368))) (((-1165 $) $) 83)) (-3990 (((-917) $) 55)) (-2196 (((-1165 $) $) NIL (|has| $ (-368)))) (-2184 (((-3 (-1165 $) "failed") $ $) NIL (|has| $ (-368))) (((-1165 $) $) NIL (|has| $ (-368)))) (-2207 (($ $ (-1165 $)) NIL (|has| $ (-368)))) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL T CONST)) (-2552 (($ (-917)) 48)) (-3751 (((-112) $) 67)) (-1693 (((-1113) $) NIL)) (-4334 (($) 19 (|has| $ (-368)))) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) 42)) (-2173 (((-418 $) $) NIL)) (-3740 (((-917)) 66) (((-829 (-917))) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3196 (((-3 (-767) "failed") $ $) NIL) (((-767) $) NIL)) (-3526 (((-134)) NIL)) (-4203 (($ $ (-767)) NIL) (($ $) NIL)) (-3871 (((-917) $) 65) (((-829 (-917)) $) NIL)) (-3402 (((-1165 $)) 82)) (-1586 (($) 54)) (-2220 (($) 38 (|has| $ (-368)))) (-3759 (((-684 $) (-1257 $)) NIL) (((-1257 $) $) 71)) (-2219 (((-563) $) 28)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) 30) (($ $) NIL) (($ (-407 (-563))) NIL)) (-2047 (((-3 $ "failed") $) NIL) (($ $) 84)) (-3914 (((-767)) 39)) (-4013 (((-1257 $) (-917)) 77) (((-1257 $)) 76)) (-3223 (((-112) $ $) NIL)) (-3772 (((-112) $) NIL)) (-2239 (($) 22 T CONST)) (-2253 (($) 18 T CONST)) (-3715 (($ $ (-767)) NIL (|has| $ (-368))) (($ $) NIL (|has| $ (-368)))) (-3213 (($ $ (-767)) NIL) (($ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) 26)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 61) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
(((-580 |#1|) (-13 (-349) (-329 $) (-611 (-563))) (-917)) (T -580))
NIL
(-13 (-349) (-329 $) (-611 (-563)))
-((-3321 (((-1262) (-1151)) 10)))
-(((-581) (-10 -7 (-15 -3321 ((-1262) (-1151))))) (T -581))
-((-3321 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-581)))))
-(-10 -7 (-15 -3321 ((-1262) (-1151))))
-((-2335 (((-584 |#2|) (-584 |#2|)) 37)) (-2213 (((-640 |#2|) (-584 |#2|)) 39)) (-3912 ((|#2| (-584 |#2|)) 45)))
-(((-582 |#1| |#2|) (-10 -7 (-15 -2335 ((-584 |#2|) (-584 |#2|))) (-15 -2213 ((-640 |#2|) (-584 |#2|))) (-15 -3912 (|#2| (-584 |#2|)))) (-13 (-452) (-1034 (-563)) (-846) (-636 (-563))) (-13 (-29 |#1|) (-1193))) (T -582))
-((-3912 (*1 *2 *3) (-12 (-5 *3 (-584 *2)) (-4 *2 (-13 (-29 *4) (-1193))) (-5 *1 (-582 *4 *2)) (-4 *4 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))))) (-2213 (*1 *2 *3) (-12 (-5 *3 (-584 *5)) (-4 *5 (-13 (-29 *4) (-1193))) (-4 *4 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (-5 *2 (-640 *5)) (-5 *1 (-582 *4 *5)))) (-2335 (*1 *2 *2) (-12 (-5 *2 (-584 *4)) (-4 *4 (-13 (-29 *3) (-1193))) (-4 *3 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (-5 *1 (-582 *3 *4)))))
-(-10 -7 (-15 -2335 ((-584 |#2|) (-584 |#2|))) (-15 -2213 ((-640 |#2|) (-584 |#2|))) (-15 -3912 (|#2| (-584 |#2|))))
-((-2240 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) 44) (((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed")) 11) (((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3646 |#1|) (|:| |coeff| |#1|)) "failed")) 35) (((-584 |#2|) (-1 |#2| |#1|) (-584 |#1|)) 30)))
-(((-583 |#1| |#2|) (-10 -7 (-15 -2240 ((-584 |#2|) (-1 |#2| |#1|) (-584 |#1|))) (-15 -2240 ((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3646 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -2240 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -2240 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")))) (-363) (-363)) (T -583))
-((-2240 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| |mainpart| *5) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *5) (|:| |logand| *5))))) "failed")) (-4 *5 (-363)) (-4 *6 (-363)) (-5 *2 (-2 (|:| |mainpart| *6) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *6) (|:| |logand| *6)))))) (-5 *1 (-583 *5 *6)))) (-2240 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed")) (-4 *5 (-363)) (-4 *2 (-363)) (-5 *1 (-583 *5 *2)))) (-2240 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -3646 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-363)) (-4 *6 (-363)) (-5 *2 (-2 (|:| -3646 *6) (|:| |coeff| *6))) (-5 *1 (-583 *5 *6)))) (-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-584 *5)) (-4 *5 (-363)) (-4 *6 (-363)) (-5 *2 (-584 *6)) (-5 *1 (-583 *5 *6)))))
-(-10 -7 (-15 -2240 ((-584 |#2|) (-1 |#2| |#1|) (-584 |#1|))) (-15 -2240 ((-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3646 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -2240 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -2240 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed"))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) 67)) (-2058 ((|#1| $) NIL)) (-3646 ((|#1| $) 26)) (-3139 (((-640 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 28)) (-2290 (($ |#1| (-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 |#1|)) (|:| |logand| (-1165 |#1|)))) (-640 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 24)) (-3524 (((-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 |#1|)) (|:| |logand| (-1165 |#1|)))) $) 27)) (-3573 (((-1151) $) NIL)) (-1335 (($ |#1| |#1|) 33) (($ |#1| (-1169)) 44 (|has| |#1| (-1034 (-1169))))) (-1694 (((-1113) $) NIL)) (-1378 (((-112) $) 30)) (-4202 ((|#1| $ (-1 |#1| |#1|)) 79) ((|#1| $ (-1169)) 80 (|has| |#1| (-896 (-1169))))) (-1693 (((-858) $) 94) (($ |#1|) 25)) (-2241 (($) 16 T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) 15) (($ $ $) NIL)) (-1814 (($ $ $) 76)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 14) (($ (-407 (-563)) $) 36) (($ $ (-407 (-563))) NIL)))
-(((-584 |#1|) (-13 (-713 (-407 (-563))) (-1034 |#1|) (-10 -8 (-15 -2290 ($ |#1| (-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 |#1|)) (|:| |logand| (-1165 |#1|)))) (-640 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -3646 (|#1| $)) (-15 -3524 ((-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 |#1|)) (|:| |logand| (-1165 |#1|)))) $)) (-15 -3139 ((-640 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -1378 ((-112) $)) (-15 -1335 ($ |#1| |#1|)) (-15 -4202 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-896 (-1169))) (-15 -4202 (|#1| $ (-1169))) |%noBranch|) (IF (|has| |#1| (-1034 (-1169))) (-15 -1335 ($ |#1| (-1169))) |%noBranch|))) (-363)) (T -584))
-((-2290 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 *2)) (|:| |logand| (-1165 *2))))) (-5 *4 (-640 (-2 (|:| |integrand| *2) (|:| |intvar| *2)))) (-4 *2 (-363)) (-5 *1 (-584 *2)))) (-3646 (*1 *2 *1) (-12 (-5 *1 (-584 *2)) (-4 *2 (-363)))) (-3524 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 *3)) (|:| |logand| (-1165 *3))))) (-5 *1 (-584 *3)) (-4 *3 (-363)))) (-3139 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-584 *3)) (-4 *3 (-363)))) (-1378 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-584 *3)) (-4 *3 (-363)))) (-1335 (*1 *1 *2 *2) (-12 (-5 *1 (-584 *2)) (-4 *2 (-363)))) (-4202 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-584 *2)) (-4 *2 (-363)))) (-4202 (*1 *2 *1 *3) (-12 (-4 *2 (-363)) (-4 *2 (-896 *3)) (-5 *1 (-584 *2)) (-5 *3 (-1169)))) (-1335 (*1 *1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *1 (-584 *2)) (-4 *2 (-1034 *3)) (-4 *2 (-363)))))
-(-13 (-713 (-407 (-563))) (-1034 |#1|) (-10 -8 (-15 -2290 ($ |#1| (-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 |#1|)) (|:| |logand| (-1165 |#1|)))) (-640 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -3646 (|#1| $)) (-15 -3524 ((-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 |#1|)) (|:| |logand| (-1165 |#1|)))) $)) (-15 -3139 ((-640 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -1378 ((-112) $)) (-15 -1335 ($ |#1| |#1|)) (-15 -4202 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-896 (-1169))) (-15 -4202 (|#1| $ (-1169))) |%noBranch|) (IF (|has| |#1| (-1034 (-1169))) (-15 -1335 ($ |#1| (-1169))) |%noBranch|)))
-((-3314 (((-112) |#1|) 16)) (-2017 (((-3 |#1| "failed") |#1|) 14)) (-3481 (((-2 (|:| -4211 |#1|) (|:| -1654 (-767))) |#1|) 30) (((-3 |#1| "failed") |#1| (-767)) 18)) (-1310 (((-112) |#1| (-767)) 19)) (-3915 ((|#1| |#1|) 31)) (-3343 ((|#1| |#1| (-767)) 33)))
-(((-585 |#1|) (-10 -7 (-15 -1310 ((-112) |#1| (-767))) (-15 -3481 ((-3 |#1| "failed") |#1| (-767))) (-15 -3481 ((-2 (|:| -4211 |#1|) (|:| -1654 (-767))) |#1|)) (-15 -3343 (|#1| |#1| (-767))) (-15 -3314 ((-112) |#1|)) (-15 -2017 ((-3 |#1| "failed") |#1|)) (-15 -3915 (|#1| |#1|))) (-545)) (T -585))
-((-3915 (*1 *2 *2) (-12 (-5 *1 (-585 *2)) (-4 *2 (-545)))) (-2017 (*1 *2 *2) (|partial| -12 (-5 *1 (-585 *2)) (-4 *2 (-545)))) (-3314 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-585 *3)) (-4 *3 (-545)))) (-3343 (*1 *2 *2 *3) (-12 (-5 *3 (-767)) (-5 *1 (-585 *2)) (-4 *2 (-545)))) (-3481 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -4211 *3) (|:| -1654 (-767)))) (-5 *1 (-585 *3)) (-4 *3 (-545)))) (-3481 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-767)) (-5 *1 (-585 *2)) (-4 *2 (-545)))) (-1310 (*1 *2 *3 *4) (-12 (-5 *4 (-767)) (-5 *2 (-112)) (-5 *1 (-585 *3)) (-4 *3 (-545)))))
-(-10 -7 (-15 -1310 ((-112) |#1| (-767))) (-15 -3481 ((-3 |#1| "failed") |#1| (-767))) (-15 -3481 ((-2 (|:| -4211 |#1|) (|:| -1654 (-767))) |#1|)) (-15 -3343 (|#1| |#1| (-767))) (-15 -3314 ((-112) |#1|)) (-15 -2017 ((-3 |#1| "failed") |#1|)) (-15 -3915 (|#1| |#1|)))
-((-2720 (((-1165 |#1|) (-917)) 26)))
-(((-586 |#1|) (-10 -7 (-15 -2720 ((-1165 |#1|) (-917)))) (-349)) (T -586))
-((-2720 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-586 *4)) (-4 *4 (-349)))))
-(-10 -7 (-15 -2720 ((-1165 |#1|) (-917))))
-((-2335 (((-584 (-407 (-948 |#1|))) (-584 (-407 (-948 |#1|)))) 27)) (-3698 (((-3 (-316 |#1|) (-640 (-316 |#1|))) (-407 (-948 |#1|)) (-1169)) 34 (|has| |#1| (-147)))) (-2213 (((-640 (-316 |#1|)) (-584 (-407 (-948 |#1|)))) 19)) (-2998 (((-316 |#1|) (-407 (-948 |#1|)) (-1169)) 32 (|has| |#1| (-147)))) (-3912 (((-316 |#1|) (-584 (-407 (-948 |#1|)))) 21)))
-(((-587 |#1|) (-10 -7 (-15 -2335 ((-584 (-407 (-948 |#1|))) (-584 (-407 (-948 |#1|))))) (-15 -2213 ((-640 (-316 |#1|)) (-584 (-407 (-948 |#1|))))) (-15 -3912 ((-316 |#1|) (-584 (-407 (-948 |#1|))))) (IF (|has| |#1| (-147)) (PROGN (-15 -3698 ((-3 (-316 |#1|) (-640 (-316 |#1|))) (-407 (-948 |#1|)) (-1169))) (-15 -2998 ((-316 |#1|) (-407 (-948 |#1|)) (-1169)))) |%noBranch|)) (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (T -587))
-((-2998 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-147)) (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (-5 *2 (-316 *5)) (-5 *1 (-587 *5)))) (-3698 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-147)) (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (-5 *2 (-3 (-316 *5) (-640 (-316 *5)))) (-5 *1 (-587 *5)))) (-3912 (*1 *2 *3) (-12 (-5 *3 (-584 (-407 (-948 *4)))) (-4 *4 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (-5 *2 (-316 *4)) (-5 *1 (-587 *4)))) (-2213 (*1 *2 *3) (-12 (-5 *3 (-584 (-407 (-948 *4)))) (-4 *4 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (-5 *2 (-640 (-316 *4))) (-5 *1 (-587 *4)))) (-2335 (*1 *2 *2) (-12 (-5 *2 (-584 (-407 (-948 *3)))) (-4 *3 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (-5 *1 (-587 *3)))))
-(-10 -7 (-15 -2335 ((-584 (-407 (-948 |#1|))) (-584 (-407 (-948 |#1|))))) (-15 -2213 ((-640 (-316 |#1|)) (-584 (-407 (-948 |#1|))))) (-15 -3912 ((-316 |#1|) (-584 (-407 (-948 |#1|))))) (IF (|has| |#1| (-147)) (PROGN (-15 -3698 ((-3 (-316 |#1|) (-640 (-316 |#1|))) (-407 (-948 |#1|)) (-1169))) (-15 -2998 ((-316 |#1|) (-407 (-948 |#1|)) (-1169)))) |%noBranch|))
-((-3378 (((-640 (-684 (-563))) (-640 (-563)) (-640 (-901 (-563)))) 45) (((-640 (-684 (-563))) (-640 (-563))) 46) (((-684 (-563)) (-640 (-563)) (-901 (-563))) 41)) (-3812 (((-767) (-640 (-563))) 39)))
-(((-588) (-10 -7 (-15 -3812 ((-767) (-640 (-563)))) (-15 -3378 ((-684 (-563)) (-640 (-563)) (-901 (-563)))) (-15 -3378 ((-640 (-684 (-563))) (-640 (-563)))) (-15 -3378 ((-640 (-684 (-563))) (-640 (-563)) (-640 (-901 (-563))))))) (T -588))
-((-3378 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-563))) (-5 *4 (-640 (-901 (-563)))) (-5 *2 (-640 (-684 (-563)))) (-5 *1 (-588)))) (-3378 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-640 (-684 (-563)))) (-5 *1 (-588)))) (-3378 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-563))) (-5 *4 (-901 (-563))) (-5 *2 (-684 (-563))) (-5 *1 (-588)))) (-3812 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-767)) (-5 *1 (-588)))))
-(-10 -7 (-15 -3812 ((-767) (-640 (-563)))) (-15 -3378 ((-684 (-563)) (-640 (-563)) (-901 (-563)))) (-15 -3378 ((-640 (-684 (-563))) (-640 (-563)))) (-15 -3378 ((-640 (-684 (-563))) (-640 (-563)) (-640 (-901 (-563))))))
-((-2837 (((-640 |#5|) |#5| (-112)) 72)) (-3484 (((-112) |#5| (-640 |#5|)) 30)))
-(((-589 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2837 ((-640 |#5|) |#5| (-112))) (-15 -3484 ((-112) |#5| (-640 |#5|)))) (-13 (-307) (-147)) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1102 |#1| |#2| |#3| |#4|)) (T -589))
-((-3484 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *3)) (-4 *3 (-1102 *5 *6 *7 *8)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-589 *5 *6 *7 *8 *3)))) (-2837 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-640 *3)) (-5 *1 (-589 *5 *6 *7 *8 *3)) (-4 *3 (-1102 *5 *6 *7 *8)))))
-(-10 -7 (-15 -2837 ((-640 |#5|) |#5| (-112))) (-15 -3484 ((-112) |#5| (-640 |#5|))))
-((-1677 (((-112) $ $) NIL)) (-2351 (((-1128) $) 11)) (-2340 (((-1128) $) 9)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 19) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-590) (-13 (-1076) (-10 -8 (-15 -2340 ((-1128) $)) (-15 -2351 ((-1128) $))))) (T -590))
-((-2340 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-590)))) (-2351 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-590)))))
-(-13 (-1076) (-10 -8 (-15 -2340 ((-1128) $)) (-15 -2351 ((-1128) $))))
-((-1677 (((-112) $ $) NIL (|has| (-144) (-1093)))) (-3700 (($ $) 34)) (-3697 (($ $) NIL)) (-1967 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-2559 (((-112) $ $) 51)) (-2537 (((-112) $ $ (-563)) 46)) (-2335 (((-640 $) $ (-144)) 59) (((-640 $) $ (-141)) 60)) (-3523 (((-112) (-1 (-112) (-144) (-144)) $) NIL) (((-112) $) NIL (|has| (-144) (-846)))) (-2770 (($ (-1 (-112) (-144) (-144)) $) NIL (|has| $ (-6 -4408))) (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-846))))) (-1642 (($ (-1 (-112) (-144) (-144)) $) NIL) (($ $) NIL (|has| (-144) (-846)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 (((-144) $ (-563) (-144)) 45 (|has| $ (-6 -4408))) (((-144) $ (-1224 (-563)) (-144)) NIL (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-2025 (($ $ (-144)) 63) (($ $ (-141)) 64)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-1938 (($ $ (-1224 (-563)) $) 44)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093))))) (-1459 (($ (-144) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093)))) (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407)))) (-2444 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) NIL (|has| $ (-6 -4407))) (((-144) (-1 (-144) (-144) (-144)) $) NIL (|has| $ (-6 -4407)))) (-4355 (((-144) $ (-563) (-144)) NIL (|has| $ (-6 -4408)))) (-4293 (((-144) $ (-563)) NIL)) (-2580 (((-112) $ $) 71)) (-4368 (((-563) (-1 (-112) (-144)) $) NIL) (((-563) (-144) $) NIL (|has| (-144) (-1093))) (((-563) (-144) $ (-563)) 48 (|has| (-144) (-1093))) (((-563) $ $ (-563)) 47) (((-563) (-141) $ (-563)) 50)) (-2659 (((-640 (-144)) $) NIL (|has| $ (-6 -4407)))) (-1566 (($ (-767) (-144)) 9)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) 28 (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (|has| (-144) (-846)))) (-3164 (($ (-1 (-112) (-144) (-144)) $ $) NIL) (($ $ $) NIL (|has| (-144) (-846)))) (-2259 (((-640 (-144)) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093))))) (-3860 (((-563) $) 42 (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| (-144) (-846)))) (-4367 (((-112) $ $ (-144)) 72)) (-1916 (((-767) $ $ (-144)) 69)) (-4345 (($ (-1 (-144) (-144)) $) 33 (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-144) (-144)) $) NIL) (($ (-1 (-144) (-144) (-144)) $ $) NIL)) (-2360 (($ $) 37)) (-1652 (($ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-2036 (($ $ (-144)) 61) (($ $ (-141)) 62)) (-3573 (((-1151) $) 38 (|has| (-144) (-1093)))) (-3396 (($ (-144) $ (-563)) NIL) (($ $ $ (-563)) 23)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-563) $) 68) (((-1113) $) NIL (|has| (-144) (-1093)))) (-3781 (((-144) $) NIL (|has| (-563) (-846)))) (-4203 (((-3 (-144) "failed") (-1 (-112) (-144)) $) NIL)) (-2358 (($ $ (-144)) NIL (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-144)))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-294 (-144))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-144) (-144)) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-640 (-144)) (-640 (-144))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093))))) (-2836 (((-640 (-144)) $) NIL)) (-3756 (((-112) $) 12)) (-3135 (($) 10)) (-2309 (((-144) $ (-563) (-144)) NIL) (((-144) $ (-563)) 52) (($ $ (-1224 (-563))) 21) (($ $ $) NIL)) (-2963 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1709 (((-767) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407))) (((-767) (-144) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093))))) (-3076 (($ $ $ (-563)) 65 (|has| $ (-6 -4408)))) (-1872 (($ $) 17)) (-2220 (((-536) $) NIL (|has| (-144) (-611 (-536))))) (-1707 (($ (-640 (-144))) NIL)) (-2853 (($ $ (-144)) NIL) (($ (-144) $) NIL) (($ $ $) 16) (($ (-640 $)) 66)) (-1693 (($ (-144)) NIL) (((-858) $) 27 (|has| (-144) (-610 (-858))))) (-4383 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) NIL (|has| (-144) (-846)))) (-1756 (((-112) $ $) NIL (|has| (-144) (-846)))) (-1718 (((-112) $ $) 14 (|has| (-144) (-1093)))) (-1768 (((-112) $ $) NIL (|has| (-144) (-846)))) (-1744 (((-112) $ $) 15 (|has| (-144) (-846)))) (-3608 (((-767) $) 13 (|has| $ (-6 -4407)))))
-(((-591 |#1|) (-13 (-1137) (-10 -8 (-15 -1694 ((-563) $)))) (-563)) (T -591))
-((-1694 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-591 *3)) (-14 *3 *2))))
-(-13 (-1137) (-10 -8 (-15 -1694 ((-563) $))))
-((-2236 (((-2 (|:| |num| |#4|) (|:| |den| (-563))) |#4| |#2|) 23) (((-2 (|:| |num| |#4|) (|:| |den| (-563))) |#4| |#2| (-1087 |#4|)) 32)))
-(((-592 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2236 ((-2 (|:| |num| |#4|) (|:| |den| (-563))) |#4| |#2| (-1087 |#4|))) (-15 -2236 ((-2 (|:| |num| |#4|) (|:| |den| (-563))) |#4| |#2|))) (-789) (-846) (-555) (-945 |#3| |#1| |#2|)) (T -592))
-((-2236 (*1 *2 *3 *4) (-12 (-4 *5 (-789)) (-4 *4 (-846)) (-4 *6 (-555)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-563)))) (-5 *1 (-592 *5 *4 *6 *3)) (-4 *3 (-945 *6 *5 *4)))) (-2236 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1087 *3)) (-4 *3 (-945 *7 *6 *4)) (-4 *6 (-789)) (-4 *4 (-846)) (-4 *7 (-555)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-563)))) (-5 *1 (-592 *6 *4 *7 *3)))))
-(-10 -7 (-15 -2236 ((-2 (|:| |num| |#4|) (|:| |den| (-563))) |#4| |#2| (-1087 |#4|))) (-15 -2236 ((-2 (|:| |num| |#4|) (|:| |den| (-563))) |#4| |#2|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 63)) (-2606 (((-640 (-1075)) $) NIL)) (-2518 (((-1169) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-2421 (($ $ (-563)) 54) (($ $ (-563) (-563)) 55)) (-1539 (((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $) 60)) (-2701 (($ $) 99)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3365 (((-858) (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) (-1022 (-839 (-563))) (-1169) |#1| (-407 (-563))) 223)) (-3045 (($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|)))) 34)) (-4239 (($) NIL T CONST)) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-2788 (((-112) $) NIL)) (-3254 (((-563) $) 58) (((-563) $ (-563)) 59)) (-3827 (((-112) $) NIL)) (-1351 (($ $ (-917)) 76)) (-2831 (($ (-1 |#1| (-563)) $) 73)) (-3920 (((-112) $) 25)) (-2588 (($ |#1| (-563)) 22) (($ $ (-1075) (-563)) NIL) (($ $ (-640 (-1075)) (-640 (-563))) NIL)) (-2240 (($ (-1 |#1| |#1|) $) 67)) (-1587 (($ (-1022 (-839 (-563))) (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|)))) 13)) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-3698 (($ $) 149 (|has| |#1| (-38 (-407 (-563)))))) (-1786 (((-3 $ "failed") $ $ (-112)) 98)) (-3149 (($ $ $) 107)) (-1694 (((-1113) $) NIL)) (-3203 (((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $) 15)) (-2639 (((-1022 (-839 (-563))) $) 14)) (-3320 (($ $ (-563)) 45)) (-3008 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1540 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-563)))))) (-2309 ((|#1| $ (-563)) 57) (($ $ $) NIL (|has| (-563) (-1105)))) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-563) |#1|)))) (($ $) 70 (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (-4167 (((-563) $) NIL)) (-1741 (($ $) 46)) (-1693 (((-858) $) NIL) (($ (-563)) 28) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555))) (($ |#1|) 27 (|has| |#1| (-172)))) (-4319 ((|#1| $ (-563)) 56)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) 37)) (-3408 ((|#1| $) NIL)) (-3160 (($ $) 185 (|has| |#1| (-38 (-407 (-563)))))) (-2473 (($ $) 157 (|has| |#1| (-38 (-407 (-563)))))) (-1392 (($ $) 189 (|has| |#1| (-38 (-407 (-563)))))) (-3091 (($ $) 162 (|has| |#1| (-38 (-407 (-563)))))) (-3461 (($ $) 188 (|has| |#1| (-38 (-407 (-563)))))) (-1609 (($ $) 161 (|has| |#1| (-38 (-407 (-563)))))) (-2703 (($ $ (-407 (-563))) 165 (|has| |#1| (-38 (-407 (-563)))))) (-3580 (($ $ |#1|) 145 (|has| |#1| (-38 (-407 (-563)))))) (-3782 (($ $) 191 (|has| |#1| (-38 (-407 (-563)))))) (-1898 (($ $) 148 (|has| |#1| (-38 (-407 (-563)))))) (-1891 (($ $) 190 (|has| |#1| (-38 (-407 (-563)))))) (-1359 (($ $) 163 (|has| |#1| (-38 (-407 (-563)))))) (-2373 (($ $) 186 (|has| |#1| (-38 (-407 (-563)))))) (-2847 (($ $) 159 (|has| |#1| (-38 (-407 (-563)))))) (-2222 (($ $) 187 (|has| |#1| (-38 (-407 (-563)))))) (-1894 (($ $) 160 (|has| |#1| (-38 (-407 (-563)))))) (-1560 (($ $) 196 (|has| |#1| (-38 (-407 (-563)))))) (-1492 (($ $) 172 (|has| |#1| (-38 (-407 (-563)))))) (-2954 (($ $) 193 (|has| |#1| (-38 (-407 (-563)))))) (-2171 (($ $) 167 (|has| |#1| (-38 (-407 (-563)))))) (-1903 (($ $) 200 (|has| |#1| (-38 (-407 (-563)))))) (-3223 (($ $) 176 (|has| |#1| (-38 (-407 (-563)))))) (-1383 (($ $) 202 (|has| |#1| (-38 (-407 (-563)))))) (-1364 (($ $) 178 (|has| |#1| (-38 (-407 (-563)))))) (-2109 (($ $) 198 (|has| |#1| (-38 (-407 (-563)))))) (-1669 (($ $) 174 (|has| |#1| (-38 (-407 (-563)))))) (-3883 (($ $) 195 (|has| |#1| (-38 (-407 (-563)))))) (-3130 (($ $) 170 (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1403 ((|#1| $ (-563)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-563)))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-2241 (($) 29 T CONST)) (-2254 (($) 38 T CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-563) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (-1718 (((-112) $ $) 65)) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1826 (($ $) 84) (($ $ $) 64)) (-1814 (($ $ $) 81)) (** (($ $ (-917)) NIL) (($ $ (-767)) 102)) (* (($ (-917) $) 89) (($ (-767) $) 87) (($ (-563) $) 85) (($ $ $) 95) (($ $ |#1|) NIL) (($ |#1| $) 114) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
-(((-593 |#1|) (-13 (-1235 |#1| (-563)) (-10 -8 (-15 -1587 ($ (-1022 (-839 (-563))) (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))))) (-15 -2639 ((-1022 (-839 (-563))) $)) (-15 -3203 ((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $)) (-15 -3045 ($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))))) (-15 -3920 ((-112) $)) (-15 -2831 ($ (-1 |#1| (-563)) $)) (-15 -1786 ((-3 $ "failed") $ $ (-112))) (-15 -2701 ($ $)) (-15 -3149 ($ $ $)) (-15 -3365 ((-858) (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) (-1022 (-839 (-563))) (-1169) |#1| (-407 (-563)))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -3698 ($ $)) (-15 -3580 ($ $ |#1|)) (-15 -2703 ($ $ (-407 (-563)))) (-15 -1898 ($ $)) (-15 -3782 ($ $)) (-15 -3091 ($ $)) (-15 -1894 ($ $)) (-15 -2473 ($ $)) (-15 -2847 ($ $)) (-15 -1609 ($ $)) (-15 -1359 ($ $)) (-15 -2171 ($ $)) (-15 -3130 ($ $)) (-15 -1492 ($ $)) (-15 -1669 ($ $)) (-15 -3223 ($ $)) (-15 -1364 ($ $)) (-15 -1392 ($ $)) (-15 -2222 ($ $)) (-15 -3160 ($ $)) (-15 -2373 ($ $)) (-15 -3461 ($ $)) (-15 -1891 ($ $)) (-15 -2954 ($ $)) (-15 -3883 ($ $)) (-15 -1560 ($ $)) (-15 -2109 ($ $)) (-15 -1903 ($ $)) (-15 -1383 ($ $))) |%noBranch|))) (-1045)) (T -593))
-((-3920 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-1045)))) (-1587 (*1 *1 *2 *3) (-12 (-5 *2 (-1022 (-839 (-563)))) (-5 *3 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *4)))) (-4 *4 (-1045)) (-5 *1 (-593 *4)))) (-2639 (*1 *2 *1) (-12 (-5 *2 (-1022 (-839 (-563)))) (-5 *1 (-593 *3)) (-4 *3 (-1045)))) (-3203 (*1 *2 *1) (-12 (-5 *2 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *3)))) (-5 *1 (-593 *3)) (-4 *3 (-1045)))) (-3045 (*1 *1 *2) (-12 (-5 *2 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *3)))) (-4 *3 (-1045)) (-5 *1 (-593 *3)))) (-2831 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-563))) (-4 *3 (-1045)) (-5 *1 (-593 *3)))) (-1786 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-1045)))) (-2701 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-1045)))) (-3149 (*1 *1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-1045)))) (-3365 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *6)))) (-5 *4 (-1022 (-839 (-563)))) (-5 *5 (-1169)) (-5 *7 (-407 (-563))) (-4 *6 (-1045)) (-5 *2 (-858)) (-5 *1 (-593 *6)))) (-3698 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3580 (*1 *1 *1 *2) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2703 (*1 *1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-593 *3)) (-4 *3 (-38 *2)) (-4 *3 (-1045)))) (-1898 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3782 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3091 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-1894 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2473 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2847 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-1609 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-1359 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2171 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3130 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-1492 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-1669 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3223 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-1364 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-1392 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2222 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3160 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2373 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3461 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-1891 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2954 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3883 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-1560 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2109 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-1903 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-1383 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(-13 (-1235 |#1| (-563)) (-10 -8 (-15 -1587 ($ (-1022 (-839 (-563))) (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))))) (-15 -2639 ((-1022 (-839 (-563))) $)) (-15 -3203 ((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $)) (-15 -3045 ($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))))) (-15 -3920 ((-112) $)) (-15 -2831 ($ (-1 |#1| (-563)) $)) (-15 -1786 ((-3 $ "failed") $ $ (-112))) (-15 -2701 ($ $)) (-15 -3149 ($ $ $)) (-15 -3365 ((-858) (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) (-1022 (-839 (-563))) (-1169) |#1| (-407 (-563)))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -3698 ($ $)) (-15 -3580 ($ $ |#1|)) (-15 -2703 ($ $ (-407 (-563)))) (-15 -1898 ($ $)) (-15 -3782 ($ $)) (-15 -3091 ($ $)) (-15 -1894 ($ $)) (-15 -2473 ($ $)) (-15 -2847 ($ $)) (-15 -1609 ($ $)) (-15 -1359 ($ $)) (-15 -2171 ($ $)) (-15 -3130 ($ $)) (-15 -1492 ($ $)) (-15 -1669 ($ $)) (-15 -3223 ($ $)) (-15 -1364 ($ $)) (-15 -1392 ($ $)) (-15 -2222 ($ $)) (-15 -3160 ($ $)) (-15 -2373 ($ $)) (-15 -3461 ($ $)) (-15 -1891 ($ $)) (-15 -2954 ($ $)) (-15 -3883 ($ $)) (-15 -1560 ($ $)) (-15 -2109 ($ $)) (-15 -1903 ($ $)) (-15 -1383 ($ $))) |%noBranch|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-3045 (($ (-1149 |#1|)) 9)) (-4239 (($) NIL T CONST)) (-3400 (((-3 $ "failed") $) 42)) (-2788 (((-112) $) 52)) (-3254 (((-767) $) 55) (((-767) $ (-767)) 54)) (-3827 (((-112) $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3008 (((-3 $ "failed") $ $) 44 (|has| |#1| (-555)))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL (|has| |#1| (-555)))) (-1337 (((-1149 |#1|) $) 23)) (-1675 (((-767)) 51)) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2241 (($) 10 T CONST)) (-2254 (($) 14 T CONST)) (-1718 (((-112) $ $) 22)) (-1826 (($ $) 30) (($ $ $) 16)) (-1814 (($ $ $) 25)) (** (($ $ (-917)) NIL) (($ $ (-767)) 49)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 34) (($ $ $) 28) (($ |#1| $) 37) (($ $ |#1|) 38) (($ $ (-563)) 36)))
-(((-594 |#1|) (-13 (-1045) (-10 -8 (-15 -1337 ((-1149 |#1|) $)) (-15 -3045 ($ (-1149 |#1|))) (-15 -2788 ((-112) $)) (-15 -3254 ((-767) $)) (-15 -3254 ((-767) $ (-767))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-563))) (IF (|has| |#1| (-555)) (-6 (-555)) |%noBranch|))) (-1045)) (T -594))
-((-1337 (*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-594 *3)) (-4 *3 (-1045)))) (-3045 (*1 *1 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-594 *3)))) (-2788 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-594 *3)) (-4 *3 (-1045)))) (-3254 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-594 *3)) (-4 *3 (-1045)))) (-3254 (*1 *2 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-594 *3)) (-4 *3 (-1045)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-594 *2)) (-4 *2 (-1045)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-594 *2)) (-4 *2 (-1045)))) (* (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-594 *3)) (-4 *3 (-1045)))))
-(-13 (-1045) (-10 -8 (-15 -1337 ((-1149 |#1|) $)) (-15 -3045 ($ (-1149 |#1|))) (-15 -2788 ((-112) $)) (-15 -3254 ((-767) $)) (-15 -3254 ((-767) $ (-767))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-563))) (IF (|has| |#1| (-555)) (-6 (-555)) |%noBranch|)))
-((-2240 (((-598 |#2|) (-1 |#2| |#1|) (-598 |#1|)) 15)))
-(((-595 |#1| |#2|) (-10 -7 (-15 -2240 ((-598 |#2|) (-1 |#2| |#1|) (-598 |#1|)))) (-1208) (-1208)) (T -595))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-598 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-598 *6)) (-5 *1 (-595 *5 *6)))))
-(-10 -7 (-15 -2240 ((-598 |#2|) (-1 |#2| |#1|) (-598 |#1|))))
-((-2240 (((-1149 |#3|) (-1 |#3| |#1| |#2|) (-598 |#1|) (-1149 |#2|)) 20) (((-1149 |#3|) (-1 |#3| |#1| |#2|) (-1149 |#1|) (-598 |#2|)) 19) (((-598 |#3|) (-1 |#3| |#1| |#2|) (-598 |#1|) (-598 |#2|)) 18)))
-(((-596 |#1| |#2| |#3|) (-10 -7 (-15 -2240 ((-598 |#3|) (-1 |#3| |#1| |#2|) (-598 |#1|) (-598 |#2|))) (-15 -2240 ((-1149 |#3|) (-1 |#3| |#1| |#2|) (-1149 |#1|) (-598 |#2|))) (-15 -2240 ((-1149 |#3|) (-1 |#3| |#1| |#2|) (-598 |#1|) (-1149 |#2|)))) (-1208) (-1208) (-1208)) (T -596))
-((-2240 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-598 *6)) (-5 *5 (-1149 *7)) (-4 *6 (-1208)) (-4 *7 (-1208)) (-4 *8 (-1208)) (-5 *2 (-1149 *8)) (-5 *1 (-596 *6 *7 *8)))) (-2240 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1149 *6)) (-5 *5 (-598 *7)) (-4 *6 (-1208)) (-4 *7 (-1208)) (-4 *8 (-1208)) (-5 *2 (-1149 *8)) (-5 *1 (-596 *6 *7 *8)))) (-2240 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-598 *6)) (-5 *5 (-598 *7)) (-4 *6 (-1208)) (-4 *7 (-1208)) (-4 *8 (-1208)) (-5 *2 (-598 *8)) (-5 *1 (-596 *6 *7 *8)))))
-(-10 -7 (-15 -2240 ((-598 |#3|) (-1 |#3| |#1| |#2|) (-598 |#1|) (-598 |#2|))) (-15 -2240 ((-1149 |#3|) (-1 |#3| |#1| |#2|) (-1149 |#1|) (-598 |#2|))) (-15 -2240 ((-1149 |#3|) (-1 |#3| |#1| |#2|) (-598 |#1|) (-1149 |#2|))))
-((-3445 ((|#3| |#3| (-640 (-609 |#3|)) (-640 (-1169))) 55)) (-1470 (((-169 |#2|) |#3|) 117)) (-2977 ((|#3| (-169 |#2|)) 44)) (-3036 ((|#2| |#3|) 19)) (-3732 ((|#3| |#2|) 33)))
-(((-597 |#1| |#2| |#3|) (-10 -7 (-15 -2977 (|#3| (-169 |#2|))) (-15 -3036 (|#2| |#3|)) (-15 -3732 (|#3| |#2|)) (-15 -1470 ((-169 |#2|) |#3|)) (-15 -3445 (|#3| |#3| (-640 (-609 |#3|)) (-640 (-1169))))) (-13 (-555) (-846)) (-13 (-430 |#1|) (-998) (-1193)) (-13 (-430 (-169 |#1|)) (-998) (-1193))) (T -597))
-((-3445 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-640 (-609 *2))) (-5 *4 (-640 (-1169))) (-4 *2 (-13 (-430 (-169 *5)) (-998) (-1193))) (-4 *5 (-13 (-555) (-846))) (-5 *1 (-597 *5 *6 *2)) (-4 *6 (-13 (-430 *5) (-998) (-1193))))) (-1470 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846))) (-5 *2 (-169 *5)) (-5 *1 (-597 *4 *5 *3)) (-4 *5 (-13 (-430 *4) (-998) (-1193))) (-4 *3 (-13 (-430 (-169 *4)) (-998) (-1193))))) (-3732 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846))) (-4 *2 (-13 (-430 (-169 *4)) (-998) (-1193))) (-5 *1 (-597 *4 *3 *2)) (-4 *3 (-13 (-430 *4) (-998) (-1193))))) (-3036 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846))) (-4 *2 (-13 (-430 *4) (-998) (-1193))) (-5 *1 (-597 *4 *2 *3)) (-4 *3 (-13 (-430 (-169 *4)) (-998) (-1193))))) (-2977 (*1 *2 *3) (-12 (-5 *3 (-169 *5)) (-4 *5 (-13 (-430 *4) (-998) (-1193))) (-4 *4 (-13 (-555) (-846))) (-4 *2 (-13 (-430 (-169 *4)) (-998) (-1193))) (-5 *1 (-597 *4 *5 *2)))))
-(-10 -7 (-15 -2977 (|#3| (-169 |#2|))) (-15 -3036 (|#2| |#3|)) (-15 -3732 (|#3| |#2|)) (-15 -1470 ((-169 |#2|) |#3|)) (-15 -3445 (|#3| |#3| (-640 (-609 |#3|)) (-640 (-1169)))))
-((-2256 (($ (-1 (-112) |#1|) $) 17)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-2177 (($ (-1 |#1| |#1|) |#1|) 9)) (-2225 (($ (-1 (-112) |#1|) $) 13)) (-2242 (($ (-1 (-112) |#1|) $) 15)) (-1707 (((-1149 |#1|) $) 18)) (-1693 (((-858) $) NIL)))
-(((-598 |#1|) (-13 (-610 (-858)) (-10 -8 (-15 -2240 ($ (-1 |#1| |#1|) $)) (-15 -2225 ($ (-1 (-112) |#1|) $)) (-15 -2242 ($ (-1 (-112) |#1|) $)) (-15 -2256 ($ (-1 (-112) |#1|) $)) (-15 -2177 ($ (-1 |#1| |#1|) |#1|)) (-15 -1707 ((-1149 |#1|) $)))) (-1208)) (T -598))
-((-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1208)) (-5 *1 (-598 *3)))) (-2225 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1208)) (-5 *1 (-598 *3)))) (-2242 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1208)) (-5 *1 (-598 *3)))) (-2256 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1208)) (-5 *1 (-598 *3)))) (-2177 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1208)) (-5 *1 (-598 *3)))) (-1707 (*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-598 *3)) (-4 *3 (-1208)))))
-(-13 (-610 (-858)) (-10 -8 (-15 -2240 ($ (-1 |#1| |#1|) $)) (-15 -2225 ($ (-1 (-112) |#1|) $)) (-15 -2242 ($ (-1 (-112) |#1|) $)) (-15 -2256 ($ (-1 (-112) |#1|) $)) (-15 -2177 ($ (-1 |#1| |#1|) |#1|)) (-15 -1707 ((-1149 |#1|) $))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3212 (($ (-767)) NIL (|has| |#1| (-23)))) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-3523 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-2770 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4408))) (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-846))))) (-1642 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) NIL)) (-4368 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-3982 (((-684 |#1|) $ $) NIL (|has| |#1| (-1045)))) (-1566 (($ (-767) |#1|) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) NIL (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-3164 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-846)))) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1607 ((|#1| $) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1045))))) (-2382 (((-112) $ (-767)) NIL)) (-3415 ((|#1| $) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1045))))) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3396 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3781 ((|#1| $) NIL (|has| (-563) (-846)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2358 (($ $ |#1|) NIL (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-4092 ((|#1| $ $) NIL (|has| |#1| (-1045)))) (-2963 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1627 (($ $ $) NIL (|has| |#1| (-1045)))) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3076 (($ $ $ (-563)) NIL (|has| $ (-6 -4408)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) NIL)) (-2853 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1826 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1814 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-563) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-722))) (($ $ |#1|) NIL (|has| |#1| (-722)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
+((-2794 (((-1262) (-1151)) 10)))
+(((-581) (-10 -7 (-15 -2794 ((-1262) (-1151))))) (T -581))
+((-2794 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-581)))))
+(-10 -7 (-15 -2794 ((-1262) (-1151))))
+((-1792 (((-584 |#2|) (-584 |#2|)) 37)) (-2212 (((-640 |#2|) (-584 |#2|)) 39)) (-2924 ((|#2| (-584 |#2|)) 45)))
+(((-582 |#1| |#2|) (-10 -7 (-15 -1792 ((-584 |#2|) (-584 |#2|))) (-15 -2212 ((-640 |#2|) (-584 |#2|))) (-15 -2924 (|#2| (-584 |#2|)))) (-13 (-452) (-1034 (-563)) (-846) (-636 (-563))) (-13 (-29 |#1|) (-1193))) (T -582))
+((-2924 (*1 *2 *3) (-12 (-5 *3 (-584 *2)) (-4 *2 (-13 (-29 *4) (-1193))) (-5 *1 (-582 *4 *2)) (-4 *4 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))))) (-2212 (*1 *2 *3) (-12 (-5 *3 (-584 *5)) (-4 *5 (-13 (-29 *4) (-1193))) (-4 *4 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (-5 *2 (-640 *5)) (-5 *1 (-582 *4 *5)))) (-1792 (*1 *2 *2) (-12 (-5 *2 (-584 *4)) (-4 *4 (-13 (-29 *3) (-1193))) (-4 *3 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (-5 *1 (-582 *3 *4)))))
+(-10 -7 (-15 -1792 ((-584 |#2|) (-584 |#2|))) (-15 -2212 ((-640 |#2|) (-584 |#2|))) (-15 -2924 (|#2| (-584 |#2|))))
+((-2238 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) 44) (((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed")) 11) (((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2840 |#1|) (|:| |coeff| |#1|)) "failed")) 35) (((-584 |#2|) (-1 |#2| |#1|) (-584 |#1|)) 30)))
+(((-583 |#1| |#2|) (-10 -7 (-15 -2238 ((-584 |#2|) (-1 |#2| |#1|) (-584 |#1|))) (-15 -2238 ((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2840 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -2238 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -2238 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")))) (-363) (-363)) (T -583))
+((-2238 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| |mainpart| *5) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *5) (|:| |logand| *5))))) "failed")) (-4 *5 (-363)) (-4 *6 (-363)) (-5 *2 (-2 (|:| |mainpart| *6) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *6) (|:| |logand| *6)))))) (-5 *1 (-583 *5 *6)))) (-2238 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed")) (-4 *5 (-363)) (-4 *2 (-363)) (-5 *1 (-583 *5 *2)))) (-2238 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -2840 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-363)) (-4 *6 (-363)) (-5 *2 (-2 (|:| -2840 *6) (|:| |coeff| *6))) (-5 *1 (-583 *5 *6)))) (-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-584 *5)) (-4 *5 (-363)) (-4 *6 (-363)) (-5 *2 (-584 *6)) (-5 *1 (-583 *5 *6)))))
+(-10 -7 (-15 -2238 ((-584 |#2|) (-1 |#2| |#1|) (-584 |#1|))) (-15 -2238 ((-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2840 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -2238 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -2238 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed"))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) 67)) (-2057 ((|#1| $) NIL)) (-2840 ((|#1| $) 26)) (-2815 (((-640 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 28)) (-2849 (($ |#1| (-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 |#1|)) (|:| |logand| (-1165 |#1|)))) (-640 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 24)) (-2829 (((-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 |#1|)) (|:| |logand| (-1165 |#1|)))) $) 27)) (-3854 (((-1151) $) NIL)) (-4025 (($ |#1| |#1|) 33) (($ |#1| (-1169)) 44 (|has| |#1| (-1034 (-1169))))) (-1693 (((-1113) $) NIL)) (-2804 (((-112) $) 30)) (-4203 ((|#1| $ (-1 |#1| |#1|)) 79) ((|#1| $ (-1169)) 80 (|has| |#1| (-896 (-1169))))) (-1692 (((-858) $) 95) (($ |#1|) 25)) (-2239 (($) 16 T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) 15) (($ $ $) NIL)) (-1813 (($ $ $) 76)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 14) (($ (-407 (-563)) $) 36) (($ $ (-407 (-563))) NIL)))
+(((-584 |#1|) (-13 (-713 (-407 (-563))) (-1034 |#1|) (-10 -8 (-15 -2849 ($ |#1| (-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 |#1|)) (|:| |logand| (-1165 |#1|)))) (-640 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -2840 (|#1| $)) (-15 -2829 ((-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 |#1|)) (|:| |logand| (-1165 |#1|)))) $)) (-15 -2815 ((-640 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -2804 ((-112) $)) (-15 -4025 ($ |#1| |#1|)) (-15 -4203 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-896 (-1169))) (-15 -4203 (|#1| $ (-1169))) |%noBranch|) (IF (|has| |#1| (-1034 (-1169))) (-15 -4025 ($ |#1| (-1169))) |%noBranch|))) (-363)) (T -584))
+((-2849 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 *2)) (|:| |logand| (-1165 *2))))) (-5 *4 (-640 (-2 (|:| |integrand| *2) (|:| |intvar| *2)))) (-4 *2 (-363)) (-5 *1 (-584 *2)))) (-2840 (*1 *2 *1) (-12 (-5 *1 (-584 *2)) (-4 *2 (-363)))) (-2829 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 *3)) (|:| |logand| (-1165 *3))))) (-5 *1 (-584 *3)) (-4 *3 (-363)))) (-2815 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-584 *3)) (-4 *3 (-363)))) (-2804 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-584 *3)) (-4 *3 (-363)))) (-4025 (*1 *1 *2 *2) (-12 (-5 *1 (-584 *2)) (-4 *2 (-363)))) (-4203 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-584 *2)) (-4 *2 (-363)))) (-4203 (*1 *2 *1 *3) (-12 (-4 *2 (-363)) (-4 *2 (-896 *3)) (-5 *1 (-584 *2)) (-5 *3 (-1169)))) (-4025 (*1 *1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *1 (-584 *2)) (-4 *2 (-1034 *3)) (-4 *2 (-363)))))
+(-13 (-713 (-407 (-563))) (-1034 |#1|) (-10 -8 (-15 -2849 ($ |#1| (-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 |#1|)) (|:| |logand| (-1165 |#1|)))) (-640 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -2840 (|#1| $)) (-15 -2829 ((-640 (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 |#1|)) (|:| |logand| (-1165 |#1|)))) $)) (-15 -2815 ((-640 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -2804 ((-112) $)) (-15 -4025 ($ |#1| |#1|)) (-15 -4203 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-896 (-1169))) (-15 -4203 (|#1| $ (-1169))) |%noBranch|) (IF (|has| |#1| (-1034 (-1169))) (-15 -4025 ($ |#1| (-1169))) |%noBranch|)))
+((-2886 (((-112) |#1|) 16)) (-2895 (((-3 |#1| "failed") |#1|) 14)) (-2868 (((-2 (|:| -4212 |#1|) (|:| -3311 (-767))) |#1|) 31) (((-3 |#1| "failed") |#1| (-767)) 18)) (-2859 (((-112) |#1| (-767)) 19)) (-2904 ((|#1| |#1|) 32)) (-2877 ((|#1| |#1| (-767)) 34)))
+(((-585 |#1|) (-10 -7 (-15 -2859 ((-112) |#1| (-767))) (-15 -2868 ((-3 |#1| "failed") |#1| (-767))) (-15 -2868 ((-2 (|:| -4212 |#1|) (|:| -3311 (-767))) |#1|)) (-15 -2877 (|#1| |#1| (-767))) (-15 -2886 ((-112) |#1|)) (-15 -2895 ((-3 |#1| "failed") |#1|)) (-15 -2904 (|#1| |#1|))) (-545)) (T -585))
+((-2904 (*1 *2 *2) (-12 (-5 *1 (-585 *2)) (-4 *2 (-545)))) (-2895 (*1 *2 *2) (|partial| -12 (-5 *1 (-585 *2)) (-4 *2 (-545)))) (-2886 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-585 *3)) (-4 *3 (-545)))) (-2877 (*1 *2 *2 *3) (-12 (-5 *3 (-767)) (-5 *1 (-585 *2)) (-4 *2 (-545)))) (-2868 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -4212 *3) (|:| -3311 (-767)))) (-5 *1 (-585 *3)) (-4 *3 (-545)))) (-2868 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-767)) (-5 *1 (-585 *2)) (-4 *2 (-545)))) (-2859 (*1 *2 *3 *4) (-12 (-5 *4 (-767)) (-5 *2 (-112)) (-5 *1 (-585 *3)) (-4 *3 (-545)))))
+(-10 -7 (-15 -2859 ((-112) |#1| (-767))) (-15 -2868 ((-3 |#1| "failed") |#1| (-767))) (-15 -2868 ((-2 (|:| -4212 |#1|) (|:| -3311 (-767))) |#1|)) (-15 -2877 (|#1| |#1| (-767))) (-15 -2886 ((-112) |#1|)) (-15 -2895 ((-3 |#1| "failed") |#1|)) (-15 -2904 (|#1| |#1|)))
+((-2914 (((-1165 |#1|) (-917)) 26)))
+(((-586 |#1|) (-10 -7 (-15 -2914 ((-1165 |#1|) (-917)))) (-349)) (T -586))
+((-2914 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-586 *4)) (-4 *4 (-349)))))
+(-10 -7 (-15 -2914 ((-1165 |#1|) (-917))))
+((-1792 (((-584 (-407 (-948 |#1|))) (-584 (-407 (-948 |#1|)))) 27)) (-2062 (((-3 (-316 |#1|) (-640 (-316 |#1|))) (-407 (-948 |#1|)) (-1169)) 34 (|has| |#1| (-147)))) (-2212 (((-640 (-316 |#1|)) (-584 (-407 (-948 |#1|)))) 19)) (-2933 (((-316 |#1|) (-407 (-948 |#1|)) (-1169)) 32 (|has| |#1| (-147)))) (-2924 (((-316 |#1|) (-584 (-407 (-948 |#1|)))) 21)))
+(((-587 |#1|) (-10 -7 (-15 -1792 ((-584 (-407 (-948 |#1|))) (-584 (-407 (-948 |#1|))))) (-15 -2212 ((-640 (-316 |#1|)) (-584 (-407 (-948 |#1|))))) (-15 -2924 ((-316 |#1|) (-584 (-407 (-948 |#1|))))) (IF (|has| |#1| (-147)) (PROGN (-15 -2062 ((-3 (-316 |#1|) (-640 (-316 |#1|))) (-407 (-948 |#1|)) (-1169))) (-15 -2933 ((-316 |#1|) (-407 (-948 |#1|)) (-1169)))) |%noBranch|)) (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (T -587))
+((-2933 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-147)) (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (-5 *2 (-316 *5)) (-5 *1 (-587 *5)))) (-2062 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-147)) (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (-5 *2 (-3 (-316 *5) (-640 (-316 *5)))) (-5 *1 (-587 *5)))) (-2924 (*1 *2 *3) (-12 (-5 *3 (-584 (-407 (-948 *4)))) (-4 *4 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (-5 *2 (-316 *4)) (-5 *1 (-587 *4)))) (-2212 (*1 *2 *3) (-12 (-5 *3 (-584 (-407 (-948 *4)))) (-4 *4 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (-5 *2 (-640 (-316 *4))) (-5 *1 (-587 *4)))) (-1792 (*1 *2 *2) (-12 (-5 *2 (-584 (-407 (-948 *3)))) (-4 *3 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563)))) (-5 *1 (-587 *3)))))
+(-10 -7 (-15 -1792 ((-584 (-407 (-948 |#1|))) (-584 (-407 (-948 |#1|))))) (-15 -2212 ((-640 (-316 |#1|)) (-584 (-407 (-948 |#1|))))) (-15 -2924 ((-316 |#1|) (-584 (-407 (-948 |#1|))))) (IF (|has| |#1| (-147)) (PROGN (-15 -2062 ((-3 (-316 |#1|) (-640 (-316 |#1|))) (-407 (-948 |#1|)) (-1169))) (-15 -2933 ((-316 |#1|) (-407 (-948 |#1|)) (-1169)))) |%noBranch|))
+((-2953 (((-640 (-684 (-563))) (-640 (-563)) (-640 (-901 (-563)))) 45) (((-640 (-684 (-563))) (-640 (-563))) 46) (((-684 (-563)) (-640 (-563)) (-901 (-563))) 41)) (-2943 (((-767) (-640 (-563))) 39)))
+(((-588) (-10 -7 (-15 -2943 ((-767) (-640 (-563)))) (-15 -2953 ((-684 (-563)) (-640 (-563)) (-901 (-563)))) (-15 -2953 ((-640 (-684 (-563))) (-640 (-563)))) (-15 -2953 ((-640 (-684 (-563))) (-640 (-563)) (-640 (-901 (-563))))))) (T -588))
+((-2953 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-563))) (-5 *4 (-640 (-901 (-563)))) (-5 *2 (-640 (-684 (-563)))) (-5 *1 (-588)))) (-2953 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-640 (-684 (-563)))) (-5 *1 (-588)))) (-2953 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-563))) (-5 *4 (-901 (-563))) (-5 *2 (-684 (-563))) (-5 *1 (-588)))) (-2943 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-767)) (-5 *1 (-588)))))
+(-10 -7 (-15 -2943 ((-767) (-640 (-563)))) (-15 -2953 ((-684 (-563)) (-640 (-563)) (-901 (-563)))) (-15 -2953 ((-640 (-684 (-563))) (-640 (-563)))) (-15 -2953 ((-640 (-684 (-563))) (-640 (-563)) (-640 (-901 (-563))))))
+((-3653 (((-640 |#5|) |#5| (-112)) 70)) (-2963 (((-112) |#5| (-640 |#5|)) 30)))
+(((-589 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3653 ((-640 |#5|) |#5| (-112))) (-15 -2963 ((-112) |#5| (-640 |#5|)))) (-13 (-307) (-147)) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1102 |#1| |#2| |#3| |#4|)) (T -589))
+((-2963 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *3)) (-4 *3 (-1102 *5 *6 *7 *8)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-589 *5 *6 *7 *8 *3)))) (-3653 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-640 *3)) (-5 *1 (-589 *5 *6 *7 *8 *3)) (-4 *3 (-1102 *5 *6 *7 *8)))))
+(-10 -7 (-15 -3653 ((-640 |#5|) |#5| (-112))) (-15 -2963 ((-112) |#5| (-640 |#5|))))
+((-1677 (((-112) $ $) NIL)) (-2350 (((-1128) $) 11)) (-2339 (((-1128) $) 9)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 19) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-590) (-13 (-1076) (-10 -8 (-15 -2339 ((-1128) $)) (-15 -2350 ((-1128) $))))) (T -590))
+((-2339 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-590)))) (-2350 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-590)))))
+(-13 (-1076) (-10 -8 (-15 -2339 ((-1128) $)) (-15 -2350 ((-1128) $))))
+((-1677 (((-112) $ $) NIL (|has| (-144) (-1093)))) (-1815 (($ $) 34)) (-1827 (($ $) NIL)) (-1782 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-2558 (((-112) $ $) 51)) (-2537 (((-112) $ $ (-563)) 46)) (-1792 (((-640 $) $ (-144)) 59) (((-640 $) $ (-141)) 60)) (-4073 (((-112) (-1 (-112) (-144) (-144)) $) NIL) (((-112) $) NIL (|has| (-144) (-846)))) (-4052 (($ (-1 (-112) (-144) (-144)) $) NIL (|has| $ (-6 -4409))) (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| (-144) (-846))))) (-1640 (($ (-1 (-112) (-144) (-144)) $) NIL) (($ $) NIL (|has| (-144) (-846)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 (((-144) $ (-563) (-144)) 45 (|has| $ (-6 -4409))) (((-144) $ (-1224 (-563)) (-144)) NIL (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-2023 (($ $ (-144)) 63) (($ $ (-141)) 64)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-1804 (($ $ (-1224 (-563)) $) 44)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093))))) (-1459 (($ (-144) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093)))) (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408)))) (-2444 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) NIL (|has| $ (-6 -4408))) (((-144) (-1 (-144) (-144) (-144)) $) NIL (|has| $ (-6 -4408)))) (-4356 (((-144) $ (-563) (-144)) NIL (|has| $ (-6 -4409)))) (-4293 (((-144) $ (-563)) NIL)) (-2578 (((-112) $ $) 71)) (-4369 (((-563) (-1 (-112) (-144)) $) NIL) (((-563) (-144) $) NIL (|has| (-144) (-1093))) (((-563) (-144) $ (-563)) 48 (|has| (-144) (-1093))) (((-563) $ $ (-563)) 47) (((-563) (-141) $ (-563)) 50)) (-2658 (((-640 (-144)) $) NIL (|has| $ (-6 -4408)))) (-1565 (($ (-767) (-144)) 9)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) 28 (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (|has| (-144) (-846)))) (-4300 (($ (-1 (-112) (-144) (-144)) $ $) NIL) (($ $ $) NIL (|has| (-144) (-846)))) (-3523 (((-640 (-144)) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093))))) (-2251 (((-563) $) 42 (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| (-144) (-846)))) (-4368 (((-112) $ $ (-144)) 72)) (-1915 (((-767) $ $ (-144)) 69)) (-4347 (($ (-1 (-144) (-144)) $) 33 (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-144) (-144)) $) NIL) (($ (-1 (-144) (-144) (-144)) $ $) NIL)) (-1838 (($ $) 37)) (-1848 (($ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-2034 (($ $ (-144)) 61) (($ $ (-141)) 62)) (-3854 (((-1151) $) 38 (|has| (-144) (-1093)))) (-3399 (($ (-144) $ (-563)) NIL) (($ $ $ (-563)) 23)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-563) $) 68) (((-1113) $) NIL (|has| (-144) (-1093)))) (-3782 (((-144) $) NIL (|has| (-563) (-846)))) (-1971 (((-3 (-144) "failed") (-1 (-112) (-144)) $) NIL)) (-2221 (($ $ (-144)) NIL (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-144)))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-294 (-144))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-144) (-144)) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-640 (-144)) (-640 (-144))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093))))) (-2295 (((-640 (-144)) $) NIL)) (-1665 (((-112) $) 12)) (-3445 (($) 10)) (-2308 (((-144) $ (-563) (-144)) NIL) (((-144) $ (-563)) 52) (($ $ (-1224 (-563))) 21) (($ $ $) NIL)) (-2967 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1708 (((-767) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408))) (((-767) (-144) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093))))) (-4062 (($ $ $ (-563)) 65 (|has| $ (-6 -4409)))) (-1870 (($ $) 17)) (-2219 (((-536) $) NIL (|has| (-144) (-611 (-536))))) (-1706 (($ (-640 (-144))) NIL)) (-2857 (($ $ (-144)) NIL) (($ (-144) $) NIL) (($ $ $) 16) (($ (-640 $)) 66)) (-1692 (($ (-144)) NIL) (((-858) $) 27 (|has| (-144) (-610 (-858))))) (-1471 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) NIL (|has| (-144) (-846)))) (-1754 (((-112) $ $) NIL (|has| (-144) (-846)))) (-1718 (((-112) $ $) 14 (|has| (-144) (-1093)))) (-1766 (((-112) $ $) NIL (|has| (-144) (-846)))) (-1743 (((-112) $ $) 15 (|has| (-144) (-846)))) (-3610 (((-767) $) 13 (|has| $ (-6 -4408)))))
+(((-591 |#1|) (-13 (-1137) (-10 -8 (-15 -1693 ((-563) $)))) (-563)) (T -591))
+((-1693 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-591 *3)) (-14 *3 *2))))
+(-13 (-1137) (-10 -8 (-15 -1693 ((-563) $))))
+((-2235 (((-2 (|:| |num| |#4|) (|:| |den| (-563))) |#4| |#2|) 23) (((-2 (|:| |num| |#4|) (|:| |den| (-563))) |#4| |#2| (-1087 |#4|)) 32)))
+(((-592 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2235 ((-2 (|:| |num| |#4|) (|:| |den| (-563))) |#4| |#2| (-1087 |#4|))) (-15 -2235 ((-2 (|:| |num| |#4|) (|:| |den| (-563))) |#4| |#2|))) (-789) (-846) (-555) (-945 |#3| |#1| |#2|)) (T -592))
+((-2235 (*1 *2 *3 *4) (-12 (-4 *5 (-789)) (-4 *4 (-846)) (-4 *6 (-555)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-563)))) (-5 *1 (-592 *5 *4 *6 *3)) (-4 *3 (-945 *6 *5 *4)))) (-2235 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1087 *3)) (-4 *3 (-945 *7 *6 *4)) (-4 *6 (-789)) (-4 *4 (-846)) (-4 *7 (-555)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-563)))) (-5 *1 (-592 *6 *4 *7 *3)))))
+(-10 -7 (-15 -2235 ((-2 (|:| |num| |#4|) (|:| |den| (-563))) |#4| |#2| (-1087 |#4|))) (-15 -2235 ((-2 (|:| |num| |#4|) (|:| |den| (-563))) |#4| |#2|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 63)) (-2605 (((-640 (-1075)) $) NIL)) (-2517 (((-1169) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-1763 (($ $ (-563)) 54) (($ $ (-563) (-563)) 55)) (-1787 (((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $) 60)) (-2098 (($ $) 99)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2079 (((-858) (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) (-1022 (-839 (-563))) (-1169) |#1| (-407 (-563))) 224)) (-3049 (($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|)))) 34)) (-2569 (($) NIL T CONST)) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3381 (((-112) $) NIL)) (-1775 (((-563) $) 58) (((-563) $ (-563)) 59)) (-3401 (((-112) $) NIL)) (-1821 (($ $ (-917)) 76)) (-2072 (($ (-1 |#1| (-563)) $) 73)) (-3805 (((-112) $) 25)) (-2587 (($ |#1| (-563)) 22) (($ $ (-1075) (-563)) NIL) (($ $ (-640 (-1075)) (-640 (-563))) NIL)) (-2238 (($ (-1 |#1| |#1|) $) 67)) (-2139 (($ (-1022 (-839 (-563))) (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|)))) 13)) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-2062 (($ $) 149 (|has| |#1| (-38 (-407 (-563)))))) (-2108 (((-3 $ "failed") $ $ (-112)) 98)) (-2087 (($ $ $) 107)) (-1693 (((-1113) $) NIL)) (-2117 (((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $) 15)) (-2128 (((-1022 (-839 (-563))) $) 14)) (-1751 (($ $ (-563)) 45)) (-3012 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1542 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-563)))))) (-2308 ((|#1| $ (-563)) 57) (($ $ $) NIL (|has| (-563) (-1105)))) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-563) |#1|)))) (($ $) 70 (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (-3871 (((-563) $) NIL)) (-3369 (($ $) 46)) (-1692 (((-858) $) NIL) (($ (-563)) 28) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555))) (($ |#1|) 27 (|has| |#1| (-172)))) (-3244 ((|#1| $ (-563)) 56)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) 37)) (-3412 ((|#1| $) NIL)) (-3065 (($ $) 186 (|has| |#1| (-38 (-407 (-563)))))) (-3184 (($ $) 157 (|has| |#1| (-38 (-407 (-563)))))) (-3084 (($ $) 190 (|has| |#1| (-38 (-407 (-563)))))) (-2032 (($ $) 162 (|has| |#1| (-38 (-407 (-563)))))) (-3045 (($ $) 189 (|has| |#1| (-38 (-407 (-563)))))) (-3165 (($ $) 161 (|has| |#1| (-38 (-407 (-563)))))) (-2060 (($ $ (-407 (-563))) 165 (|has| |#1| (-38 (-407 (-563)))))) (-2070 (($ $ |#1|) 145 (|has| |#1| (-38 (-407 (-563)))))) (-2042 (($ $) 192 (|has| |#1| (-38 (-407 (-563)))))) (-2049 (($ $) 148 (|has| |#1| (-38 (-407 (-563)))))) (-3034 (($ $) 191 (|has| |#1| (-38 (-407 (-563)))))) (-3158 (($ $) 163 (|has| |#1| (-38 (-407 (-563)))))) (-3056 (($ $) 187 (|has| |#1| (-38 (-407 (-563)))))) (-3175 (($ $) 159 (|has| |#1| (-38 (-407 (-563)))))) (-3074 (($ $) 188 (|has| |#1| (-38 (-407 (-563)))))) (-2021 (($ $) 160 (|has| |#1| (-38 (-407 (-563)))))) (-3003 (($ $) 197 (|has| |#1| (-38 (-407 (-563)))))) (-3130 (($ $) 173 (|has| |#1| (-38 (-407 (-563)))))) (-3024 (($ $) 194 (|has| |#1| (-38 (-407 (-563)))))) (-3149 (($ $) 168 (|has| |#1| (-38 (-407 (-563)))))) (-2982 (($ $) 201 (|has| |#1| (-38 (-407 (-563)))))) (-3108 (($ $) 177 (|has| |#1| (-38 (-407 (-563)))))) (-2973 (($ $) 203 (|has| |#1| (-38 (-407 (-563)))))) (-3096 (($ $) 179 (|has| |#1| (-38 (-407 (-563)))))) (-2992 (($ $) 199 (|has| |#1| (-38 (-407 (-563)))))) (-3119 (($ $) 175 (|has| |#1| (-38 (-407 (-563)))))) (-3014 (($ $) 196 (|has| |#1| (-38 (-407 (-563)))))) (-3140 (($ $) 171 (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1402 ((|#1| $ (-563)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-563)))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-2239 (($) 29 T CONST)) (-2253 (($) 38 T CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-563) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (-1718 (((-112) $ $) 65)) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1825 (($ $) 84) (($ $ $) 64)) (-1813 (($ $ $) 81)) (** (($ $ (-917)) NIL) (($ $ (-767)) 102)) (* (($ (-917) $) 89) (($ (-767) $) 87) (($ (-563) $) 85) (($ $ $) 95) (($ $ |#1|) NIL) (($ |#1| $) 114) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
+(((-593 |#1|) (-13 (-1235 |#1| (-563)) (-10 -8 (-15 -2139 ($ (-1022 (-839 (-563))) (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))))) (-15 -2128 ((-1022 (-839 (-563))) $)) (-15 -2117 ((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $)) (-15 -3049 ($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))))) (-15 -3805 ((-112) $)) (-15 -2072 ($ (-1 |#1| (-563)) $)) (-15 -2108 ((-3 $ "failed") $ $ (-112))) (-15 -2098 ($ $)) (-15 -2087 ($ $ $)) (-15 -2079 ((-858) (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) (-1022 (-839 (-563))) (-1169) |#1| (-407 (-563)))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -2062 ($ $)) (-15 -2070 ($ $ |#1|)) (-15 -2060 ($ $ (-407 (-563)))) (-15 -2049 ($ $)) (-15 -2042 ($ $)) (-15 -2032 ($ $)) (-15 -2021 ($ $)) (-15 -3184 ($ $)) (-15 -3175 ($ $)) (-15 -3165 ($ $)) (-15 -3158 ($ $)) (-15 -3149 ($ $)) (-15 -3140 ($ $)) (-15 -3130 ($ $)) (-15 -3119 ($ $)) (-15 -3108 ($ $)) (-15 -3096 ($ $)) (-15 -3084 ($ $)) (-15 -3074 ($ $)) (-15 -3065 ($ $)) (-15 -3056 ($ $)) (-15 -3045 ($ $)) (-15 -3034 ($ $)) (-15 -3024 ($ $)) (-15 -3014 ($ $)) (-15 -3003 ($ $)) (-15 -2992 ($ $)) (-15 -2982 ($ $)) (-15 -2973 ($ $))) |%noBranch|))) (-1045)) (T -593))
+((-3805 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-1045)))) (-2139 (*1 *1 *2 *3) (-12 (-5 *2 (-1022 (-839 (-563)))) (-5 *3 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *4)))) (-4 *4 (-1045)) (-5 *1 (-593 *4)))) (-2128 (*1 *2 *1) (-12 (-5 *2 (-1022 (-839 (-563)))) (-5 *1 (-593 *3)) (-4 *3 (-1045)))) (-2117 (*1 *2 *1) (-12 (-5 *2 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *3)))) (-5 *1 (-593 *3)) (-4 *3 (-1045)))) (-3049 (*1 *1 *2) (-12 (-5 *2 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *3)))) (-4 *3 (-1045)) (-5 *1 (-593 *3)))) (-2072 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-563))) (-4 *3 (-1045)) (-5 *1 (-593 *3)))) (-2108 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-1045)))) (-2098 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-1045)))) (-2087 (*1 *1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-1045)))) (-2079 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *6)))) (-5 *4 (-1022 (-839 (-563)))) (-5 *5 (-1169)) (-5 *7 (-407 (-563))) (-4 *6 (-1045)) (-5 *2 (-858)) (-5 *1 (-593 *6)))) (-2062 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2070 (*1 *1 *1 *2) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2060 (*1 *1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-593 *3)) (-4 *3 (-38 *2)) (-4 *3 (-1045)))) (-2049 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2042 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2032 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2021 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3184 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3175 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3165 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3158 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3149 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3140 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3130 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3119 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3108 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3096 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3084 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3074 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3065 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3056 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3045 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3034 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3024 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3014 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-3003 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2992 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2982 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))) (-2973 (*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(-13 (-1235 |#1| (-563)) (-10 -8 (-15 -2139 ($ (-1022 (-839 (-563))) (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))))) (-15 -2128 ((-1022 (-839 (-563))) $)) (-15 -2117 ((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $)) (-15 -3049 ($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))))) (-15 -3805 ((-112) $)) (-15 -2072 ($ (-1 |#1| (-563)) $)) (-15 -2108 ((-3 $ "failed") $ $ (-112))) (-15 -2098 ($ $)) (-15 -2087 ($ $ $)) (-15 -2079 ((-858) (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) (-1022 (-839 (-563))) (-1169) |#1| (-407 (-563)))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -2062 ($ $)) (-15 -2070 ($ $ |#1|)) (-15 -2060 ($ $ (-407 (-563)))) (-15 -2049 ($ $)) (-15 -2042 ($ $)) (-15 -2032 ($ $)) (-15 -2021 ($ $)) (-15 -3184 ($ $)) (-15 -3175 ($ $)) (-15 -3165 ($ $)) (-15 -3158 ($ $)) (-15 -3149 ($ $)) (-15 -3140 ($ $)) (-15 -3130 ($ $)) (-15 -3119 ($ $)) (-15 -3108 ($ $)) (-15 -3096 ($ $)) (-15 -3084 ($ $)) (-15 -3074 ($ $)) (-15 -3065 ($ $)) (-15 -3056 ($ $)) (-15 -3045 ($ $)) (-15 -3034 ($ $)) (-15 -3024 ($ $)) (-15 -3014 ($ $)) (-15 -3003 ($ $)) (-15 -2992 ($ $)) (-15 -2982 ($ $)) (-15 -2973 ($ $))) |%noBranch|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-3049 (($ (-1149 |#1|)) 9)) (-2569 (($) NIL T CONST)) (-3951 (((-3 $ "failed") $) 42)) (-3381 (((-112) $) 52)) (-1775 (((-767) $) 55) (((-767) $ (-767)) 54)) (-3401 (((-112) $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3012 (((-3 $ "failed") $ $) 44 (|has| |#1| (-555)))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL (|has| |#1| (-555)))) (-3955 (((-1149 |#1|) $) 23)) (-3914 (((-767)) 51)) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2239 (($) 10 T CONST)) (-2253 (($) 14 T CONST)) (-1718 (((-112) $ $) 22)) (-1825 (($ $) 30) (($ $ $) 16)) (-1813 (($ $ $) 25)) (** (($ $ (-917)) NIL) (($ $ (-767)) 49)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 34) (($ $ $) 28) (($ |#1| $) 37) (($ $ |#1|) 38) (($ $ (-563)) 36)))
+(((-594 |#1|) (-13 (-1045) (-10 -8 (-15 -3955 ((-1149 |#1|) $)) (-15 -3049 ($ (-1149 |#1|))) (-15 -3381 ((-112) $)) (-15 -1775 ((-767) $)) (-15 -1775 ((-767) $ (-767))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-563))) (IF (|has| |#1| (-555)) (-6 (-555)) |%noBranch|))) (-1045)) (T -594))
+((-3955 (*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-594 *3)) (-4 *3 (-1045)))) (-3049 (*1 *1 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-594 *3)))) (-3381 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-594 *3)) (-4 *3 (-1045)))) (-1775 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-594 *3)) (-4 *3 (-1045)))) (-1775 (*1 *2 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-594 *3)) (-4 *3 (-1045)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-594 *2)) (-4 *2 (-1045)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-594 *2)) (-4 *2 (-1045)))) (* (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-594 *3)) (-4 *3 (-1045)))))
+(-13 (-1045) (-10 -8 (-15 -3955 ((-1149 |#1|) $)) (-15 -3049 ($ (-1149 |#1|))) (-15 -3381 ((-112) $)) (-15 -1775 ((-767) $)) (-15 -1775 ((-767) $ (-767))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-563))) (IF (|has| |#1| (-555)) (-6 (-555)) |%noBranch|)))
+((-2238 (((-598 |#2|) (-1 |#2| |#1|) (-598 |#1|)) 15)))
+(((-595 |#1| |#2|) (-10 -7 (-15 -2238 ((-598 |#2|) (-1 |#2| |#1|) (-598 |#1|)))) (-1208) (-1208)) (T -595))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-598 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-598 *6)) (-5 *1 (-595 *5 *6)))))
+(-10 -7 (-15 -2238 ((-598 |#2|) (-1 |#2| |#1|) (-598 |#1|))))
+((-2238 (((-1149 |#3|) (-1 |#3| |#1| |#2|) (-598 |#1|) (-1149 |#2|)) 20) (((-1149 |#3|) (-1 |#3| |#1| |#2|) (-1149 |#1|) (-598 |#2|)) 19) (((-598 |#3|) (-1 |#3| |#1| |#2|) (-598 |#1|) (-598 |#2|)) 18)))
+(((-596 |#1| |#2| |#3|) (-10 -7 (-15 -2238 ((-598 |#3|) (-1 |#3| |#1| |#2|) (-598 |#1|) (-598 |#2|))) (-15 -2238 ((-1149 |#3|) (-1 |#3| |#1| |#2|) (-1149 |#1|) (-598 |#2|))) (-15 -2238 ((-1149 |#3|) (-1 |#3| |#1| |#2|) (-598 |#1|) (-1149 |#2|)))) (-1208) (-1208) (-1208)) (T -596))
+((-2238 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-598 *6)) (-5 *5 (-1149 *7)) (-4 *6 (-1208)) (-4 *7 (-1208)) (-4 *8 (-1208)) (-5 *2 (-1149 *8)) (-5 *1 (-596 *6 *7 *8)))) (-2238 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1149 *6)) (-5 *5 (-598 *7)) (-4 *6 (-1208)) (-4 *7 (-1208)) (-4 *8 (-1208)) (-5 *2 (-1149 *8)) (-5 *1 (-596 *6 *7 *8)))) (-2238 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-598 *6)) (-5 *5 (-598 *7)) (-4 *6 (-1208)) (-4 *7 (-1208)) (-4 *8 (-1208)) (-5 *2 (-598 *8)) (-5 *1 (-596 *6 *7 *8)))))
+(-10 -7 (-15 -2238 ((-598 |#3|) (-1 |#3| |#1| |#2|) (-598 |#1|) (-598 |#2|))) (-15 -2238 ((-1149 |#3|) (-1 |#3| |#1| |#2|) (-1149 |#1|) (-598 |#2|))) (-15 -2238 ((-1149 |#3|) (-1 |#3| |#1| |#2|) (-598 |#1|) (-1149 |#2|))))
+((-2198 ((|#3| |#3| (-640 (-609 |#3|)) (-640 (-1169))) 55)) (-2186 (((-169 |#2|) |#3|) 117)) (-2149 ((|#3| (-169 |#2|)) 44)) (-2160 ((|#2| |#3|) 19)) (-2171 ((|#3| |#2|) 33)))
+(((-597 |#1| |#2| |#3|) (-10 -7 (-15 -2149 (|#3| (-169 |#2|))) (-15 -2160 (|#2| |#3|)) (-15 -2171 (|#3| |#2|)) (-15 -2186 ((-169 |#2|) |#3|)) (-15 -2198 (|#3| |#3| (-640 (-609 |#3|)) (-640 (-1169))))) (-13 (-555) (-846)) (-13 (-430 |#1|) (-998) (-1193)) (-13 (-430 (-169 |#1|)) (-998) (-1193))) (T -597))
+((-2198 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-640 (-609 *2))) (-5 *4 (-640 (-1169))) (-4 *2 (-13 (-430 (-169 *5)) (-998) (-1193))) (-4 *5 (-13 (-555) (-846))) (-5 *1 (-597 *5 *6 *2)) (-4 *6 (-13 (-430 *5) (-998) (-1193))))) (-2186 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846))) (-5 *2 (-169 *5)) (-5 *1 (-597 *4 *5 *3)) (-4 *5 (-13 (-430 *4) (-998) (-1193))) (-4 *3 (-13 (-430 (-169 *4)) (-998) (-1193))))) (-2171 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846))) (-4 *2 (-13 (-430 (-169 *4)) (-998) (-1193))) (-5 *1 (-597 *4 *3 *2)) (-4 *3 (-13 (-430 *4) (-998) (-1193))))) (-2160 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-846))) (-4 *2 (-13 (-430 *4) (-998) (-1193))) (-5 *1 (-597 *4 *2 *3)) (-4 *3 (-13 (-430 (-169 *4)) (-998) (-1193))))) (-2149 (*1 *2 *3) (-12 (-5 *3 (-169 *5)) (-4 *5 (-13 (-430 *4) (-998) (-1193))) (-4 *4 (-13 (-555) (-846))) (-4 *2 (-13 (-430 (-169 *4)) (-998) (-1193))) (-5 *1 (-597 *4 *5 *2)))))
+(-10 -7 (-15 -2149 (|#3| (-169 |#2|))) (-15 -2160 (|#2| |#3|)) (-15 -2171 (|#3| |#2|)) (-15 -2186 ((-169 |#2|) |#3|)) (-15 -2198 (|#3| |#3| (-640 (-609 |#3|)) (-640 (-1169)))))
+((-2255 (($ (-1 (-112) |#1|) $) 17)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-2175 (($ (-1 |#1| |#1|) |#1|) 9)) (-2223 (($ (-1 (-112) |#1|) $) 13)) (-2240 (($ (-1 (-112) |#1|) $) 15)) (-1706 (((-1149 |#1|) $) 18)) (-1692 (((-858) $) NIL)))
+(((-598 |#1|) (-13 (-610 (-858)) (-10 -8 (-15 -2238 ($ (-1 |#1| |#1|) $)) (-15 -2223 ($ (-1 (-112) |#1|) $)) (-15 -2240 ($ (-1 (-112) |#1|) $)) (-15 -2255 ($ (-1 (-112) |#1|) $)) (-15 -2175 ($ (-1 |#1| |#1|) |#1|)) (-15 -1706 ((-1149 |#1|) $)))) (-1208)) (T -598))
+((-2238 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1208)) (-5 *1 (-598 *3)))) (-2223 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1208)) (-5 *1 (-598 *3)))) (-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1208)) (-5 *1 (-598 *3)))) (-2255 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1208)) (-5 *1 (-598 *3)))) (-2175 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1208)) (-5 *1 (-598 *3)))) (-1706 (*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-598 *3)) (-4 *3 (-1208)))))
+(-13 (-610 (-858)) (-10 -8 (-15 -2238 ($ (-1 |#1| |#1|) $)) (-15 -2223 ($ (-1 (-112) |#1|) $)) (-15 -2240 ($ (-1 (-112) |#1|) $)) (-15 -2255 ($ (-1 (-112) |#1|) $)) (-15 -2175 ($ (-1 |#1| |#1|) |#1|)) (-15 -1706 ((-1149 |#1|) $))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3216 (($ (-767)) NIL (|has| |#1| (-23)))) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4073 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-4052 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4409))) (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| |#1| (-846))))) (-1640 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) NIL)) (-4369 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-3983 (((-684 |#1|) $ $) NIL (|has| |#1| (-1045)))) (-1565 (($ (-767) |#1|) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) NIL (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-4300 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-846)))) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4098 ((|#1| $) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1045))))) (-2481 (((-112) $ (-767)) NIL)) (-3419 ((|#1| $) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1045))))) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3399 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3782 ((|#1| $) NIL (|has| (-563) (-846)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2221 (($ $ |#1|) NIL (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-4121 ((|#1| $ $) NIL (|has| |#1| (-1045)))) (-2967 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-4111 (($ $ $) NIL (|has| |#1| (-1045)))) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4062 (($ $ $ (-563)) NIL (|has| $ (-6 -4409)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) NIL)) (-2857 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1825 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1813 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-563) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-722))) (($ $ |#1|) NIL (|has| |#1| (-722)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
(((-599 |#1| |#2|) (-1255 |#1|) (-1208) (-563)) (T -599))
NIL
(-1255 |#1|)
-((-4378 (((-1262) $ |#2| |#2|) 36)) (-2411 ((|#2| $) 23)) (-3860 ((|#2| $) 21)) (-4345 (($ (-1 |#3| |#3|) $) 32)) (-2240 (($ (-1 |#3| |#3|) $) 30)) (-3781 ((|#3| $) 26)) (-2358 (($ $ |#3|) 33)) (-2105 (((-112) |#3| $) 17)) (-2836 (((-640 |#3|) $) 15)) (-2309 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
-(((-600 |#1| |#2| |#3|) (-10 -8 (-15 -4378 ((-1262) |#1| |#2| |#2|)) (-15 -2358 (|#1| |#1| |#3|)) (-15 -3781 (|#3| |#1|)) (-15 -2411 (|#2| |#1|)) (-15 -3860 (|#2| |#1|)) (-15 -2105 ((-112) |#3| |#1|)) (-15 -2836 ((-640 |#3|) |#1|)) (-15 -2309 (|#3| |#1| |#2|)) (-15 -2309 (|#3| |#1| |#2| |#3|)) (-15 -4345 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2240 (|#1| (-1 |#3| |#3|) |#1|))) (-601 |#2| |#3|) (-1093) (-1208)) (T -600))
+((-2208 (((-1262) $ |#2| |#2|) 36)) (-2236 ((|#2| $) 23)) (-2251 ((|#2| $) 21)) (-4347 (($ (-1 |#3| |#3|) $) 32)) (-2238 (($ (-1 |#3| |#3|) $) 30)) (-3782 ((|#3| $) 26)) (-2221 (($ $ |#3|) 33)) (-2262 (((-112) |#3| $) 17)) (-2295 (((-640 |#3|) $) 15)) (-2308 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
+(((-600 |#1| |#2| |#3|) (-10 -8 (-15 -2208 ((-1262) |#1| |#2| |#2|)) (-15 -2221 (|#1| |#1| |#3|)) (-15 -3782 (|#3| |#1|)) (-15 -2236 (|#2| |#1|)) (-15 -2251 (|#2| |#1|)) (-15 -2262 ((-112) |#3| |#1|)) (-15 -2295 ((-640 |#3|) |#1|)) (-15 -2308 (|#3| |#1| |#2|)) (-15 -2308 (|#3| |#1| |#2| |#3|)) (-15 -4347 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2238 (|#1| (-1 |#3| |#3|) |#1|))) (-601 |#2| |#3|) (-1093) (-1208)) (T -600))
NIL
-(-10 -8 (-15 -4378 ((-1262) |#1| |#2| |#2|)) (-15 -2358 (|#1| |#1| |#3|)) (-15 -3781 (|#3| |#1|)) (-15 -2411 (|#2| |#1|)) (-15 -3860 (|#2| |#1|)) (-15 -2105 ((-112) |#3| |#1|)) (-15 -2836 ((-640 |#3|) |#1|)) (-15 -2309 (|#3| |#1| |#2|)) (-15 -2309 (|#3| |#1| |#2| |#3|)) (-15 -4345 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2240 (|#1| (-1 |#3| |#3|) |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#2| (-1093)))) (-4378 (((-1262) $ |#1| |#1|) 40 (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) 8)) (-1849 ((|#2| $ |#1| |#2|) 52 (|has| $ (-6 -4408)))) (-4239 (($) 7 T CONST)) (-4355 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4408)))) (-4293 ((|#2| $ |#1|) 51)) (-2659 (((-640 |#2|) $) 30 (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) 9)) (-2411 ((|#1| $) 43 (|has| |#1| (-846)))) (-2259 (((-640 |#2|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#2| $) 27 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4407))))) (-3860 ((|#1| $) 44 (|has| |#1| (-846)))) (-4345 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#2| |#2|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#2| (-1093)))) (-4318 (((-640 |#1|) $) 46)) (-3192 (((-112) |#1| $) 47)) (-1694 (((-1113) $) 21 (|has| |#2| (-1093)))) (-3781 ((|#2| $) 42 (|has| |#1| (-846)))) (-2358 (($ $ |#2|) 41 (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#2|))) 26 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) 25 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) 23 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2026 (((-112) $ $) 14)) (-2105 (((-112) |#2| $) 45 (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-2836 (((-640 |#2|) $) 48)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#2| $ |#1| |#2|) 50) ((|#2| $ |#1|) 49)) (-1709 (((-767) (-1 (-112) |#2|) $) 31 (|has| $ (-6 -4407))) (((-767) |#2| $) 28 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-1693 (((-858) $) 18 (|has| |#2| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#2| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+(-10 -8 (-15 -2208 ((-1262) |#1| |#2| |#2|)) (-15 -2221 (|#1| |#1| |#3|)) (-15 -3782 (|#3| |#1|)) (-15 -2236 (|#2| |#1|)) (-15 -2251 (|#2| |#1|)) (-15 -2262 ((-112) |#3| |#1|)) (-15 -2295 ((-640 |#3|) |#1|)) (-15 -2308 (|#3| |#1| |#2|)) (-15 -2308 (|#3| |#1| |#2| |#3|)) (-15 -4347 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2238 (|#1| (-1 |#3| |#3|) |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#2| (-1093)))) (-2208 (((-1262) $ |#1| |#1|) 40 (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) 8)) (-1849 ((|#2| $ |#1| |#2|) 52 (|has| $ (-6 -4409)))) (-2569 (($) 7 T CONST)) (-4356 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4409)))) (-4293 ((|#2| $ |#1|) 51)) (-2658 (((-640 |#2|) $) 30 (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) 9)) (-2236 ((|#1| $) 43 (|has| |#1| (-846)))) (-3523 (((-640 |#2|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#2| $) 27 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4408))))) (-2251 ((|#1| $) 44 (|has| |#1| (-846)))) (-4347 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#2| |#2|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#2| (-1093)))) (-2272 (((-640 |#1|) $) 46)) (-2282 (((-112) |#1| $) 47)) (-1693 (((-1113) $) 21 (|has| |#2| (-1093)))) (-3782 ((|#2| $) 42 (|has| |#1| (-846)))) (-2221 (($ $ |#2|) 41 (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#2|))) 26 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) 25 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) 23 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2941 (((-112) $ $) 14)) (-2262 (((-112) |#2| $) 45 (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2295 (((-640 |#2|) $) 48)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#2| $ |#1| |#2|) 50) ((|#2| $ |#1|) 49)) (-1708 (((-767) (-1 (-112) |#2|) $) 31 (|has| $ (-6 -4408))) (((-767) |#2| $) 28 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-1692 (((-858) $) 18 (|has| |#2| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#2| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-601 |#1| |#2|) (-140) (-1093) (-1208)) (T -601))
-((-2836 (*1 *2 *1) (-12 (-4 *1 (-601 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1208)) (-5 *2 (-640 *4)))) (-3192 (*1 *2 *3 *1) (-12 (-4 *1 (-601 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1208)) (-5 *2 (-112)))) (-4318 (*1 *2 *1) (-12 (-4 *1 (-601 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1208)) (-5 *2 (-640 *3)))) (-2105 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4407)) (-4 *1 (-601 *4 *3)) (-4 *4 (-1093)) (-4 *3 (-1208)) (-4 *3 (-1093)) (-5 *2 (-112)))) (-3860 (*1 *2 *1) (-12 (-4 *1 (-601 *2 *3)) (-4 *3 (-1208)) (-4 *2 (-1093)) (-4 *2 (-846)))) (-2411 (*1 *2 *1) (-12 (-4 *1 (-601 *2 *3)) (-4 *3 (-1208)) (-4 *2 (-1093)) (-4 *2 (-846)))) (-3781 (*1 *2 *1) (-12 (-4 *1 (-601 *3 *2)) (-4 *3 (-1093)) (-4 *3 (-846)) (-4 *2 (-1208)))) (-2358 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-601 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1208)))) (-4378 (*1 *2 *1 *3 *3) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-601 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1208)) (-5 *2 (-1262)))))
-(-13 (-489 |t#2|) (-288 |t#1| |t#2|) (-10 -8 (-15 -2836 ((-640 |t#2|) $)) (-15 -3192 ((-112) |t#1| $)) (-15 -4318 ((-640 |t#1|) $)) (IF (|has| |t#2| (-1093)) (IF (|has| $ (-6 -4407)) (-15 -2105 ((-112) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-846)) (PROGN (-15 -3860 (|t#1| $)) (-15 -2411 (|t#1| $)) (-15 -3781 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4408)) (PROGN (-15 -2358 ($ $ |t#2|)) (-15 -4378 ((-1262) $ |t#1| |t#1|))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#2| (-1093)) ((-610 (-858)) -4032 (|has| |#2| (-1093)) (|has| |#2| (-610 (-858)))) ((-286 |#1| |#2|) . T) ((-288 |#1| |#2|) . T) ((-309 |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-489 |#2|) . T) ((-514 |#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-1093) |has| |#2| (-1093)) ((-1208) . T))
-((-1693 (((-858) $) 17) (($ (-129)) 13) (((-129) $) 14)))
+((-2295 (*1 *2 *1) (-12 (-4 *1 (-601 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1208)) (-5 *2 (-640 *4)))) (-2282 (*1 *2 *3 *1) (-12 (-4 *1 (-601 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1208)) (-5 *2 (-112)))) (-2272 (*1 *2 *1) (-12 (-4 *1 (-601 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1208)) (-5 *2 (-640 *3)))) (-2262 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-601 *4 *3)) (-4 *4 (-1093)) (-4 *3 (-1208)) (-4 *3 (-1093)) (-5 *2 (-112)))) (-2251 (*1 *2 *1) (-12 (-4 *1 (-601 *2 *3)) (-4 *3 (-1208)) (-4 *2 (-1093)) (-4 *2 (-846)))) (-2236 (*1 *2 *1) (-12 (-4 *1 (-601 *2 *3)) (-4 *3 (-1208)) (-4 *2 (-1093)) (-4 *2 (-846)))) (-3782 (*1 *2 *1) (-12 (-4 *1 (-601 *3 *2)) (-4 *3 (-1093)) (-4 *3 (-846)) (-4 *2 (-1208)))) (-2221 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-601 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1208)))) (-2208 (*1 *2 *1 *3 *3) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-601 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1208)) (-5 *2 (-1262)))))
+(-13 (-489 |t#2|) (-288 |t#1| |t#2|) (-10 -8 (-15 -2295 ((-640 |t#2|) $)) (-15 -2282 ((-112) |t#1| $)) (-15 -2272 ((-640 |t#1|) $)) (IF (|has| |t#2| (-1093)) (IF (|has| $ (-6 -4408)) (-15 -2262 ((-112) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-846)) (PROGN (-15 -2251 (|t#1| $)) (-15 -2236 (|t#1| $)) (-15 -3782 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4409)) (PROGN (-15 -2221 ($ $ |t#2|)) (-15 -2208 ((-1262) $ |t#1| |t#1|))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#2| (-1093)) ((-610 (-858)) -4034 (|has| |#2| (-1093)) (|has| |#2| (-610 (-858)))) ((-286 |#1| |#2|) . T) ((-288 |#1| |#2|) . T) ((-309 |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-489 |#2|) . T) ((-514 |#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-1093) |has| |#2| (-1093)) ((-1208) . T))
+((-1692 (((-858) $) 17) (($ (-129)) 13) (((-129) $) 14)))
(((-602) (-13 (-610 (-858)) (-490 (-129)))) (T -602))
NIL
(-13 (-610 (-858)) (-490 (-129)))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL) (($ (-1174)) NIL) (((-1174) $) NIL) (((-1207) $) 14) (($ (-640 (-1207))) 13)) (-2122 (((-640 (-1207)) $) 10)) (-1718 (((-112) $ $) NIL)))
-(((-603) (-13 (-1076) (-610 (-1207)) (-10 -8 (-15 -1693 ($ (-640 (-1207)))) (-15 -2122 ((-640 (-1207)) $))))) (T -603))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-640 (-1207))) (-5 *1 (-603)))) (-2122 (*1 *2 *1) (-12 (-5 *2 (-640 (-1207))) (-5 *1 (-603)))))
-(-13 (-1076) (-610 (-1207)) (-10 -8 (-15 -1693 ($ (-640 (-1207)))) (-15 -2122 ((-640 (-1207)) $))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1414 (((-3 $ "failed")) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-1495 (((-3 $ "failed") $ $) NIL)) (-3507 (((-1257 (-684 |#1|))) NIL (|has| |#2| (-417 |#1|))) (((-1257 (-684 |#1|)) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-1438 (((-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-4239 (($) NIL T CONST)) (-2133 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-2435 (((-3 $ "failed")) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-4220 (((-684 |#1|)) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2480 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-3043 (((-684 |#1|) $) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) $ (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-4154 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-3451 (((-1165 (-948 |#1|))) NIL (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-363))))) (-2300 (($ $ (-917)) NIL)) (-3830 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-3763 (((-1165 |#1|) $) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-1824 ((|#1|) NIL (|has| |#2| (-417 |#1|))) ((|#1| (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2876 (((-1165 |#1|) $) NIL (|has| |#2| (-367 |#1|)))) (-2182 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3937 (($ (-1257 |#1|)) NIL (|has| |#2| (-417 |#1|))) (($ (-1257 |#1|) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-3400 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-2522 (((-917)) NIL (|has| |#2| (-367 |#1|)))) (-2250 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2287 (($ $ (-917)) NIL)) (-3901 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3308 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3104 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2284 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-2508 (((-3 $ "failed")) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-2328 (((-684 |#1|)) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2842 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-1823 (((-684 |#1|) $) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) $ (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-3856 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-3594 (((-1165 (-948 |#1|))) NIL (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-363))))) (-1494 (($ $ (-917)) NIL)) (-2199 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-2604 (((-1165 |#1|) $) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-4111 ((|#1|) NIL (|has| |#2| (-417 |#1|))) ((|#1| (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2665 (((-1165 |#1|) $) NIL (|has| |#2| (-367 |#1|)))) (-4012 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3573 (((-1151) $) NIL)) (-2136 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-1789 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2047 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-1694 (((-1113) $) NIL)) (-4084 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2309 ((|#1| $ (-563)) NIL (|has| |#2| (-417 |#1|)))) (-1880 (((-684 |#1|) (-1257 $)) NIL (|has| |#2| (-417 |#1|))) (((-1257 |#1|) $) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) (-1257 $) (-1257 $)) NIL (|has| |#2| (-367 |#1|))) (((-1257 |#1|) $ (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2220 (($ (-1257 |#1|)) NIL (|has| |#2| (-417 |#1|))) (((-1257 |#1|) $) NIL (|has| |#2| (-417 |#1|)))) (-4152 (((-640 (-948 |#1|))) NIL (|has| |#2| (-417 |#1|))) (((-640 (-948 |#1|)) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2146 (($ $ $) NIL)) (-1936 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-1693 (((-858) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-4315 (((-1257 $)) NIL (|has| |#2| (-417 |#1|)))) (-2138 (((-640 (-1257 |#1|))) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-1361 (($ $ $ $) NIL)) (-1402 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3726 (($ (-684 |#1|) $) NIL (|has| |#2| (-417 |#1|)))) (-3399 (($ $ $) NIL)) (-2483 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3777 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2128 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2241 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) 24)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 20) (($ $ |#1|) 19) (($ |#1| $) NIL)))
-(((-604 |#1| |#2|) (-13 (-740 |#1|) (-610 |#2|) (-10 -8 (-15 -1693 ($ |#2|)) (IF (|has| |#2| (-417 |#1|)) (-6 (-417 |#1|)) |%noBranch|) (IF (|has| |#2| (-367 |#1|)) (-6 (-367 |#1|)) |%noBranch|))) (-172) (-740 |#1|)) (T -604))
-((-1693 (*1 *1 *2) (-12 (-4 *3 (-172)) (-5 *1 (-604 *3 *2)) (-4 *2 (-740 *3)))))
-(-13 (-740 |#1|) (-610 |#2|) (-10 -8 (-15 -1693 ($ |#2|)) (IF (|has| |#2| (-417 |#1|)) (-6 (-417 |#1|)) |%noBranch|) (IF (|has| |#2| (-367 |#1|)) (-6 (-367 |#1|)) |%noBranch|)))
-((-1677 (((-112) $ $) NIL)) (-2056 (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $ (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) 33)) (-1552 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) NIL) (($) NIL)) (-4378 (((-1262) $ (-1151) (-1151)) NIL (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-1151) |#1|) 43)) (-2812 (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407)))) (-1577 (((-3 |#1| "failed") (-1151) $) 46)) (-4239 (($) NIL T CONST)) (-3010 (($ $ (-1151)) 24)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093))))) (-2705 (((-3 |#1| "failed") (-1151) $) 47) (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407))) (($ (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $) NIL (|has| $ (-6 -4407)))) (-1459 (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407))) (($ (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093))))) (-2444 (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407))) (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $ (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) NIL (|has| $ (-6 -4407))) (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $ (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093))))) (-3538 (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $) 32)) (-4355 ((|#1| $ (-1151) |#1|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-1151)) NIL)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407))) (((-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407)))) (-3629 (($ $) 48)) (-3405 (($ (-388)) 22) (($ (-388) (-1151)) 21)) (-3348 (((-388) $) 34)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-1151) $) NIL (|has| (-1151) (-846)))) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407))) (((-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) (((-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093))))) (-3860 (((-1151) $) NIL (|has| (-1151) (-846)))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-1303 (((-640 (-1151)) $) 39)) (-4173 (((-112) (-1151) $) NIL)) (-2302 (((-1151) $) 35)) (-2964 (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $) NIL)) (-1812 (($ (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $) NIL)) (-4318 (((-640 (-1151)) $) NIL)) (-3192 (((-112) (-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3781 ((|#1| $) NIL (|has| (-1151) (-846)))) (-4203 (((-3 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) "failed") (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL)) (-2358 (($ $ |#1|) NIL (|has| $ (-6 -4408)))) (-3755 (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $) NIL)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)))) (($ $ (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)))) (($ $ (-640 (-294 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) 37)) (-2309 ((|#1| $ (-1151) |#1|) NIL) ((|#1| $ (-1151)) 42)) (-3890 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) NIL) (($) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) (((-767) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)))) (((-767) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-611 (-536))))) (-1707 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) NIL)) (-1693 (((-858) $) 20)) (-3004 (($ $) 25)) (-2233 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) NIL)) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 19)) (-3608 (((-767) $) 41 (|has| $ (-6 -4407)))))
-(((-605 |#1|) (-13 (-364 (-388) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) (-1184 (-1151) |#1|) (-10 -8 (-6 -4407) (-15 -3629 ($ $)))) (-1093)) (T -605))
-((-3629 (*1 *1 *1) (-12 (-5 *1 (-605 *2)) (-4 *2 (-1093)))))
-(-13 (-364 (-388) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) (-1184 (-1151) |#1|) (-10 -8 (-6 -4407) (-15 -3629 ($ $))))
-((-1729 (((-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) $) 15)) (-1303 (((-640 |#2|) $) 19)) (-4173 (((-112) |#2| $) 12)))
-(((-606 |#1| |#2| |#3|) (-10 -8 (-15 -1303 ((-640 |#2|) |#1|)) (-15 -4173 ((-112) |#2| |#1|)) (-15 -1729 ((-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) |#1|))) (-607 |#2| |#3|) (-1093) (-1093)) (T -606))
-NIL
-(-10 -8 (-15 -1303 ((-640 |#2|) |#1|)) (-15 -4173 ((-112) |#2| |#1|)) (-15 -1729 ((-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) |#1|)))
-((-1677 (((-112) $ $) 19 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (-2759 (((-112) $ (-767)) 8)) (-2812 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 45 (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 55 (|has| $ (-6 -4407)))) (-1577 (((-3 |#2| "failed") |#1| $) 61)) (-4239 (($) 7 T CONST)) (-3813 (($ $) 58 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407))))) (-2705 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 47 (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 46 (|has| $ (-6 -4407))) (((-3 |#2| "failed") |#1| $) 62)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 54 (|has| $ (-6 -4407)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 56 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407)))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 53 (|has| $ (-6 -4407))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 52 (|has| $ (-6 -4407)))) (-2659 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 30 (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (-1303 (((-640 |#1|) $) 63)) (-4173 (((-112) |#1| $) 64)) (-2964 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 39)) (-1812 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 40)) (-1694 (((-1113) $) 21 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (-4203 (((-3 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 51)) (-3755 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 41)) (-3138 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))))) 26 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 25 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 24 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 23 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-3890 (($) 49) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 48)) (-1709 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 31 (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-2220 (((-536) $) 59 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-611 (-536))))) (-1707 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 50)) (-1693 (((-858) $) 18 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-610 (-858))))) (-2233 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 42)) (-4383 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL) (($ (-1174)) NIL) (((-1174) $) NIL) (((-1207) $) 14) (($ (-640 (-1207))) 13)) (-2121 (((-640 (-1207)) $) 10)) (-1718 (((-112) $ $) NIL)))
+(((-603) (-13 (-1076) (-610 (-1207)) (-10 -8 (-15 -1692 ($ (-640 (-1207)))) (-15 -2121 ((-640 (-1207)) $))))) (T -603))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-640 (-1207))) (-5 *1 (-603)))) (-2121 (*1 *2 *1) (-12 (-5 *2 (-640 (-1207))) (-5 *1 (-603)))))
+(-13 (-1076) (-610 (-1207)) (-10 -8 (-15 -1692 ($ (-640 (-1207)))) (-15 -2121 ((-640 (-1207)) $))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3245 (((-3 $ "failed")) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-3905 (((-3 $ "failed") $ $) NIL)) (-3749 (((-1257 (-684 |#1|))) NIL (|has| |#2| (-417 |#1|))) (((-1257 (-684 |#1|)) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-4039 (((-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2569 (($) NIL T CONST)) (-2288 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-1914 (((-3 $ "failed")) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-3410 (((-684 |#1|)) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-4017 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-3386 (((-684 |#1|) $) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) $ (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-3342 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-2214 (((-1165 (-948 |#1|))) NIL (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-363))))) (-3376 (($ $ (-917)) NIL)) (-3995 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-1938 (((-1165 |#1|) $) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-3436 ((|#1|) NIL (|has| |#2| (-417 |#1|))) ((|#1| (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-3973 (((-1165 |#1|) $) NIL (|has| |#2| (-367 |#1|)))) (-3912 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3458 (($ (-1257 |#1|)) NIL (|has| |#2| (-417 |#1|))) (($ (-1257 |#1|) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-3951 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-2521 (((-917)) NIL (|has| |#2| (-367 |#1|)))) (-3879 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3617 (($ $ (-917)) NIL)) (-3843 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3825 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3861 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2299 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-1927 (((-3 $ "failed")) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-3422 (((-684 |#1|)) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-4028 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-3398 (((-684 |#1|) $) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) $ (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-3353 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-2267 (((-1165 (-948 |#1|))) NIL (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-363))))) (-3364 (($ $ (-917)) NIL)) (-4007 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-3801 (((-1165 |#1|) $) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-3447 ((|#1|) NIL (|has| |#2| (-417 |#1|))) ((|#1| (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-3984 (((-1165 |#1|) $) NIL (|has| |#2| (-367 |#1|)))) (-3923 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3854 (((-1151) $) NIL)) (-3832 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3852 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3868 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-1693 (((-1113) $) NIL)) (-3900 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2308 ((|#1| $ (-563)) NIL (|has| |#2| (-417 |#1|)))) (-3759 (((-684 |#1|) (-1257 $)) NIL (|has| |#2| (-417 |#1|))) (((-1257 |#1|) $) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) (-1257 $) (-1257 $)) NIL (|has| |#2| (-367 |#1|))) (((-1257 |#1|) $ (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2219 (($ (-1257 |#1|)) NIL (|has| |#2| (-417 |#1|))) (((-1257 |#1|) $) NIL (|has| |#2| (-417 |#1|)))) (-2122 (((-640 (-948 |#1|))) NIL (|has| |#2| (-417 |#1|))) (((-640 (-948 |#1|)) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-1745 (($ $ $) NIL)) (-3963 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-1692 (((-858) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-4013 (((-1257 $)) NIL (|has| |#2| (-417 |#1|)))) (-3813 (((-640 (-1257 |#1|))) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-1756 (($ $ $ $) NIL)) (-3942 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3727 (($ (-684 |#1|) $) NIL (|has| |#2| (-417 |#1|)))) (-1729 (($ $ $) NIL)) (-3952 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3933 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3891 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2239 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) 24)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 20) (($ $ |#1|) 19) (($ |#1| $) NIL)))
+(((-604 |#1| |#2|) (-13 (-740 |#1|) (-610 |#2|) (-10 -8 (-15 -1692 ($ |#2|)) (IF (|has| |#2| (-417 |#1|)) (-6 (-417 |#1|)) |%noBranch|) (IF (|has| |#2| (-367 |#1|)) (-6 (-367 |#1|)) |%noBranch|))) (-172) (-740 |#1|)) (T -604))
+((-1692 (*1 *1 *2) (-12 (-4 *3 (-172)) (-5 *1 (-604 *3 *2)) (-4 *2 (-740 *3)))))
+(-13 (-740 |#1|) (-610 |#2|) (-10 -8 (-15 -1692 ($ |#2|)) (IF (|has| |#2| (-417 |#1|)) (-6 (-417 |#1|)) |%noBranch|) (IF (|has| |#2| (-367 |#1|)) (-6 (-367 |#1|)) |%noBranch|)))
+((-1677 (((-112) $ $) NIL)) (-1862 (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $ (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) 33)) (-1551 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) NIL) (($) NIL)) (-2208 (((-1262) $ (-1151) (-1151)) NIL (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-1151) |#1|) 43)) (-3678 (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408)))) (-1576 (((-3 |#1| "failed") (-1151) $) 46)) (-2569 (($) NIL T CONST)) (-1905 (($ $ (-1151)) 24)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093))))) (-1691 (((-3 |#1| "failed") (-1151) $) 47) (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408))) (($ (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $) NIL (|has| $ (-6 -4408)))) (-1459 (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408))) (($ (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093))))) (-2444 (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $ (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $ (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093))))) (-1872 (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $) 32)) (-4356 ((|#1| $ (-1151) |#1|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-1151)) NIL)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408))) (((-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408)))) (-1410 (($ $) 48)) (-3409 (($ (-388)) 22) (($ (-388) (-1151)) 21)) (-3352 (((-388) $) 34)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-1151) $) NIL (|has| (-1151) (-846)))) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408))) (((-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) (((-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093))))) (-2251 (((-1151) $) NIL (|has| (-1151) (-846)))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409))) (($ (-1 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-1304 (((-640 (-1151)) $) 39)) (-2305 (((-112) (-1151) $) NIL)) (-1883 (((-1151) $) 35)) (-2627 (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $) NIL)) (-3867 (($ (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $) NIL)) (-2272 (((-640 (-1151)) $) NIL)) (-2282 (((-112) (-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3782 ((|#1| $) NIL (|has| (-1151) (-846)))) (-1971 (((-3 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) "failed") (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL)) (-2221 (($ $ |#1|) NIL (|has| $ (-6 -4409)))) (-2808 (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $) NIL)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)))) (($ $ (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)))) (($ $ (-640 (-294 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) 37)) (-2308 ((|#1| $ (-1151) |#1|) NIL) ((|#1| $ (-1151)) 42)) (-3863 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) NIL) (($) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) (((-767) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)))) (((-767) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-611 (-536))))) (-1706 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) NIL)) (-1692 (((-858) $) 20)) (-1895 (($ $) 25)) (-2820 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) NIL)) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 19)) (-3610 (((-767) $) 41 (|has| $ (-6 -4408)))))
+(((-605 |#1|) (-13 (-364 (-388) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) (-1184 (-1151) |#1|) (-10 -8 (-6 -4408) (-15 -1410 ($ $)))) (-1093)) (T -605))
+((-1410 (*1 *1 *1) (-12 (-5 *1 (-605 *2)) (-4 *2 (-1093)))))
+(-13 (-364 (-388) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) (-1184 (-1151) |#1|) (-10 -8 (-6 -4408) (-15 -1410 ($ $))))
+((-2667 (((-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) $) 15)) (-1304 (((-640 |#2|) $) 19)) (-2305 (((-112) |#2| $) 12)))
+(((-606 |#1| |#2| |#3|) (-10 -8 (-15 -1304 ((-640 |#2|) |#1|)) (-15 -2305 ((-112) |#2| |#1|)) (-15 -2667 ((-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) |#1|))) (-607 |#2| |#3|) (-1093) (-1093)) (T -606))
+NIL
+(-10 -8 (-15 -1304 ((-640 |#2|) |#1|)) (-15 -2305 ((-112) |#2| |#1|)) (-15 -2667 ((-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) |#1|)))
+((-1677 (((-112) $ $) 19 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (-3001 (((-112) $ (-767)) 8)) (-3678 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 45 (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 55 (|has| $ (-6 -4408)))) (-1576 (((-3 |#2| "failed") |#1| $) 61)) (-2569 (($) 7 T CONST)) (-3814 (($ $) 58 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408))))) (-1691 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 47 (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 46 (|has| $ (-6 -4408))) (((-3 |#2| "failed") |#1| $) 62)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 54 (|has| $ (-6 -4408)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 56 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408)))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 53 (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 52 (|has| $ (-6 -4408)))) (-2658 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 30 (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (-1304 (((-640 |#1|) $) 63)) (-2305 (((-112) |#1| $) 64)) (-2627 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 39)) (-3867 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 40)) (-1693 (((-1113) $) 21 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (-1971 (((-3 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 51)) (-2808 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 41)) (-1458 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))))) 26 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 25 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 24 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 23 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-3863 (($) 49) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 48)) (-1708 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 31 (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-2219 (((-536) $) 59 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-611 (-536))))) (-1706 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 50)) (-1692 (((-858) $) 18 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-610 (-858))))) (-2820 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 42)) (-1471 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-607 |#1| |#2|) (-140) (-1093) (-1093)) (T -607))
-((-4173 (*1 *2 *3 *1) (-12 (-4 *1 (-607 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-5 *2 (-112)))) (-1303 (*1 *2 *1) (-12 (-4 *1 (-607 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-5 *2 (-640 *3)))) (-2705 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-607 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))) (-1577 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-607 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))))
-(-13 (-229 (-2 (|:| -2387 |t#1|) (|:| -2557 |t#2|))) (-10 -8 (-15 -4173 ((-112) |t#1| $)) (-15 -1303 ((-640 |t#1|) $)) (-15 -2705 ((-3 |t#2| "failed") |t#1| $)) (-15 -1577 ((-3 |t#2| "failed") |t#1| $))))
-(((-34) . T) ((-107 #0=(-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T) ((-102) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) ((-610 (-858)) -4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-610 (-858)))) ((-151 #0#) . T) ((-611 (-536)) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-611 (-536))) ((-229 #0#) . T) ((-235 #0#) . T) ((-309 #0#) -12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))) ((-489 #0#) . T) ((-514 #0# #0#) -12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))) ((-1093) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) ((-1208) . T))
-((-2754 (((-609 |#2|) |#1|) 15)) (-2413 (((-3 |#1| "failed") (-609 |#2|)) 19)))
-(((-608 |#1| |#2|) (-10 -7 (-15 -2754 ((-609 |#2|) |#1|)) (-15 -2413 ((-3 |#1| "failed") (-609 |#2|)))) (-846) (-846)) (T -608))
-((-2413 (*1 *2 *3) (|partial| -12 (-5 *3 (-609 *4)) (-4 *4 (-846)) (-4 *2 (-846)) (-5 *1 (-608 *2 *4)))) (-2754 (*1 *2 *3) (-12 (-5 *2 (-609 *4)) (-5 *1 (-608 *3 *4)) (-4 *3 (-846)) (-4 *4 (-846)))))
-(-10 -7 (-15 -2754 ((-609 |#2|) |#1|)) (-15 -2413 ((-3 |#1| "failed") (-609 |#2|))))
-((-1677 (((-112) $ $) NIL)) (-2905 (((-3 (-1169) "failed") $) 37)) (-3052 (((-1262) $ (-767)) 26)) (-4368 (((-767) $) 25)) (-2361 (((-114) $) 12)) (-3348 (((-1169) $) 20)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-2227 (($ (-114) (-640 |#1|) (-767)) 30) (($ (-1169)) 31)) (-2799 (((-112) $ (-114)) 18) (((-112) $ (-1169)) 16)) (-4236 (((-767) $) 22)) (-1694 (((-1113) $) NIL)) (-2220 (((-888 (-563)) $) 77 (|has| |#1| (-611 (-888 (-563))))) (((-888 (-379)) $) 84 (|has| |#1| (-611 (-888 (-379))))) (((-536) $) 69 (|has| |#1| (-611 (-536))))) (-1693 (((-858) $) 55)) (-3237 (((-640 |#1|) $) 24)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 41)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 42)))
-(((-609 |#1|) (-13 (-132) (-880 |#1|) (-10 -8 (-15 -3348 ((-1169) $)) (-15 -2361 ((-114) $)) (-15 -3237 ((-640 |#1|) $)) (-15 -4236 ((-767) $)) (-15 -2227 ($ (-114) (-640 |#1|) (-767))) (-15 -2227 ($ (-1169))) (-15 -2905 ((-3 (-1169) "failed") $)) (-15 -2799 ((-112) $ (-114))) (-15 -2799 ((-112) $ (-1169))) (IF (|has| |#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|))) (-846)) (T -609))
-((-3348 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-609 *3)) (-4 *3 (-846)))) (-2361 (*1 *2 *1) (-12 (-5 *2 (-114)) (-5 *1 (-609 *3)) (-4 *3 (-846)))) (-3237 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-609 *3)) (-4 *3 (-846)))) (-4236 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-609 *3)) (-4 *3 (-846)))) (-2227 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-114)) (-5 *3 (-640 *5)) (-5 *4 (-767)) (-4 *5 (-846)) (-5 *1 (-609 *5)))) (-2227 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-609 *3)) (-4 *3 (-846)))) (-2905 (*1 *2 *1) (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-609 *3)) (-4 *3 (-846)))) (-2799 (*1 *2 *1 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-609 *4)) (-4 *4 (-846)))) (-2799 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-112)) (-5 *1 (-609 *4)) (-4 *4 (-846)))))
-(-13 (-132) (-880 |#1|) (-10 -8 (-15 -3348 ((-1169) $)) (-15 -2361 ((-114) $)) (-15 -3237 ((-640 |#1|) $)) (-15 -4236 ((-767) $)) (-15 -2227 ($ (-114) (-640 |#1|) (-767))) (-15 -2227 ($ (-1169))) (-15 -2905 ((-3 (-1169) "failed") $)) (-15 -2799 ((-112) $ (-114))) (-15 -2799 ((-112) $ (-1169))) (IF (|has| |#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|)))
-((-1693 ((|#1| $) 6)))
+((-2305 (*1 *2 *3 *1) (-12 (-4 *1 (-607 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-5 *2 (-112)))) (-1304 (*1 *2 *1) (-12 (-4 *1 (-607 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-5 *2 (-640 *3)))) (-1691 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-607 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))) (-1576 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-607 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))))
+(-13 (-229 (-2 (|:| -2387 |t#1|) (|:| -2556 |t#2|))) (-10 -8 (-15 -2305 ((-112) |t#1| $)) (-15 -1304 ((-640 |t#1|) $)) (-15 -1691 ((-3 |t#2| "failed") |t#1| $)) (-15 -1576 ((-3 |t#2| "failed") |t#1| $))))
+(((-34) . T) ((-107 #0=(-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T) ((-102) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) ((-610 (-858)) -4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-610 (-858)))) ((-151 #0#) . T) ((-611 (-536)) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-611 (-536))) ((-229 #0#) . T) ((-235 #0#) . T) ((-309 #0#) -12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))) ((-489 #0#) . T) ((-514 #0# #0#) -12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))) ((-1093) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) ((-1208) . T))
+((-2335 (((-609 |#2|) |#1|) 15)) (-2347 (((-3 |#1| "failed") (-609 |#2|)) 19)))
+(((-608 |#1| |#2|) (-10 -7 (-15 -2335 ((-609 |#2|) |#1|)) (-15 -2347 ((-3 |#1| "failed") (-609 |#2|)))) (-846) (-846)) (T -608))
+((-2347 (*1 *2 *3) (|partial| -12 (-5 *3 (-609 *4)) (-4 *4 (-846)) (-4 *2 (-846)) (-5 *1 (-608 *2 *4)))) (-2335 (*1 *2 *3) (-12 (-5 *2 (-609 *4)) (-5 *1 (-608 *3 *4)) (-4 *3 (-846)) (-4 *4 (-846)))))
+(-10 -7 (-15 -2335 ((-609 |#2|) |#1|)) (-15 -2347 ((-3 |#1| "failed") (-609 |#2|))))
+((-1677 (((-112) $ $) NIL)) (-2316 (((-3 (-1169) "failed") $) 37)) (-3916 (((-1262) $ (-767)) 26)) (-4369 (((-767) $) 25)) (-2559 (((-114) $) 12)) (-3352 (((-1169) $) 20)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-2227 (($ (-114) (-640 |#1|) (-767)) 30) (($ (-1169)) 31)) (-2602 (((-112) $ (-114)) 18) (((-112) $ (-1169)) 16)) (-4238 (((-767) $) 22)) (-1693 (((-1113) $) NIL)) (-2219 (((-888 (-563)) $) 77 (|has| |#1| (-611 (-888 (-563))))) (((-888 (-379)) $) 84 (|has| |#1| (-611 (-888 (-379))))) (((-536) $) 69 (|has| |#1| (-611 (-536))))) (-1692 (((-858) $) 55)) (-2326 (((-640 |#1|) $) 24)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 41)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 42)))
+(((-609 |#1|) (-13 (-132) (-880 |#1|) (-10 -8 (-15 -3352 ((-1169) $)) (-15 -2559 ((-114) $)) (-15 -2326 ((-640 |#1|) $)) (-15 -4238 ((-767) $)) (-15 -2227 ($ (-114) (-640 |#1|) (-767))) (-15 -2227 ($ (-1169))) (-15 -2316 ((-3 (-1169) "failed") $)) (-15 -2602 ((-112) $ (-114))) (-15 -2602 ((-112) $ (-1169))) (IF (|has| |#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|))) (-846)) (T -609))
+((-3352 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-609 *3)) (-4 *3 (-846)))) (-2559 (*1 *2 *1) (-12 (-5 *2 (-114)) (-5 *1 (-609 *3)) (-4 *3 (-846)))) (-2326 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-609 *3)) (-4 *3 (-846)))) (-4238 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-609 *3)) (-4 *3 (-846)))) (-2227 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-114)) (-5 *3 (-640 *5)) (-5 *4 (-767)) (-4 *5 (-846)) (-5 *1 (-609 *5)))) (-2227 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-609 *3)) (-4 *3 (-846)))) (-2316 (*1 *2 *1) (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-609 *3)) (-4 *3 (-846)))) (-2602 (*1 *2 *1 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-609 *4)) (-4 *4 (-846)))) (-2602 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-112)) (-5 *1 (-609 *4)) (-4 *4 (-846)))))
+(-13 (-132) (-880 |#1|) (-10 -8 (-15 -3352 ((-1169) $)) (-15 -2559 ((-114) $)) (-15 -2326 ((-640 |#1|) $)) (-15 -4238 ((-767) $)) (-15 -2227 ($ (-114) (-640 |#1|) (-767))) (-15 -2227 ($ (-1169))) (-15 -2316 ((-3 (-1169) "failed") $)) (-15 -2602 ((-112) $ (-114))) (-15 -2602 ((-112) $ (-1169))) (IF (|has| |#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|)))
+((-1692 ((|#1| $) 6)))
(((-610 |#1|) (-140) (-1208)) (T -610))
-((-1693 (*1 *2 *1) (-12 (-4 *1 (-610 *2)) (-4 *2 (-1208)))))
-(-13 (-10 -8 (-15 -1693 (|t#1| $))))
-((-2220 ((|#1| $) 6)))
+((-1692 (*1 *2 *1) (-12 (-4 *1 (-610 *2)) (-4 *2 (-1208)))))
+(-13 (-10 -8 (-15 -1692 (|t#1| $))))
+((-2219 ((|#1| $) 6)))
(((-611 |#1|) (-140) (-1208)) (T -611))
-((-2220 (*1 *2 *1) (-12 (-4 *1 (-611 *2)) (-4 *2 (-1208)))))
-(-13 (-10 -8 (-15 -2220 (|t#1| $))))
-((-3875 (((-3 (-1165 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|) (-1 (-418 |#2|) |#2|)) 15) (((-3 (-1165 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|)) 16)))
-(((-612 |#1| |#2|) (-10 -7 (-15 -3875 ((-3 (-1165 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|))) (-15 -3875 ((-3 (-1165 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|) (-1 (-418 |#2|) |#2|)))) (-13 (-147) (-27) (-1034 (-563)) (-1034 (-407 (-563)))) (-1233 |#1|)) (T -612))
-((-3875 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 (-418 *6) *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-147) (-27) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-1165 (-407 *6))) (-5 *1 (-612 *5 *6)) (-5 *3 (-407 *6)))) (-3875 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-147) (-27) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4)) (-5 *2 (-1165 (-407 *5))) (-5 *1 (-612 *4 *5)) (-5 *3 (-407 *5)))))
-(-10 -7 (-15 -3875 ((-3 (-1165 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|))) (-15 -3875 ((-3 (-1165 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|) (-1 (-418 |#2|) |#2|))))
-((-1693 (($ |#1|) 6)))
+((-2219 (*1 *2 *1) (-12 (-4 *1 (-611 *2)) (-4 *2 (-1208)))))
+(-13 (-10 -8 (-15 -2219 (|t#1| $))))
+((-2357 (((-3 (-1165 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|) (-1 (-418 |#2|) |#2|)) 15) (((-3 (-1165 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|)) 16)))
+(((-612 |#1| |#2|) (-10 -7 (-15 -2357 ((-3 (-1165 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|))) (-15 -2357 ((-3 (-1165 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|) (-1 (-418 |#2|) |#2|)))) (-13 (-147) (-27) (-1034 (-563)) (-1034 (-407 (-563)))) (-1233 |#1|)) (T -612))
+((-2357 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 (-418 *6) *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-147) (-27) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-1165 (-407 *6))) (-5 *1 (-612 *5 *6)) (-5 *3 (-407 *6)))) (-2357 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-147) (-27) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4)) (-5 *2 (-1165 (-407 *5))) (-5 *1 (-612 *4 *5)) (-5 *3 (-407 *5)))))
+(-10 -7 (-15 -2357 ((-3 (-1165 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|))) (-15 -2357 ((-3 (-1165 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|) (-1 (-418 |#2|) |#2|))))
+((-1692 (($ |#1|) 6)))
(((-613 |#1|) (-140) (-1208)) (T -613))
-((-1693 (*1 *1 *2) (-12 (-4 *1 (-613 *2)) (-4 *2 (-1208)))))
-(-13 (-10 -8 (-15 -1693 ($ |t#1|))))
-((-1677 (((-112) $ $) NIL)) (-2484 (($) 8 T CONST)) (-1674 (($) 9 T CONST)) (-2202 (($ $ $) 21)) (-2176 (($ $) 19)) (-3573 (((-1151) $) NIL)) (-3234 (($ $ $) 22)) (-1694 (((-1113) $) NIL)) (-3563 (($) 7 T CONST)) (-2515 (($ $ $) 23)) (-1693 (((-858) $) 27)) (-2226 (((-112) $ (|[\|\|]| -3563)) 16) (((-112) $ (|[\|\|]| -2484)) 18) (((-112) $ (|[\|\|]| -1674)) 14)) (-2190 (($ $ $) 20)) (-1718 (((-112) $ $) 12)))
-(((-614) (-13 (-963) (-10 -8 (-15 -3563 ($) -2669) (-15 -2484 ($) -2669) (-15 -1674 ($) -2669) (-15 -2226 ((-112) $ (|[\|\|]| -3563))) (-15 -2226 ((-112) $ (|[\|\|]| -2484))) (-15 -2226 ((-112) $ (|[\|\|]| -1674)))))) (T -614))
-((-3563 (*1 *1) (-5 *1 (-614))) (-2484 (*1 *1) (-5 *1 (-614))) (-1674 (*1 *1) (-5 *1 (-614))) (-2226 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -3563)) (-5 *2 (-112)) (-5 *1 (-614)))) (-2226 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -2484)) (-5 *2 (-112)) (-5 *1 (-614)))) (-2226 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1674)) (-5 *2 (-112)) (-5 *1 (-614)))))
-(-13 (-963) (-10 -8 (-15 -3563 ($) -2669) (-15 -2484 ($) -2669) (-15 -1674 ($) -2669) (-15 -2226 ((-112) $ (|[\|\|]| -3563))) (-15 -2226 ((-112) $ (|[\|\|]| -2484))) (-15 -2226 ((-112) $ (|[\|\|]| -1674)))))
-((-2220 (($ |#1|) 6)))
+((-1692 (*1 *1 *2) (-12 (-4 *1 (-613 *2)) (-4 *2 (-1208)))))
+(-13 (-10 -8 (-15 -1692 ($ |t#1|))))
+((-1677 (((-112) $ $) NIL)) (-2483 (($) 8 T CONST)) (-1674 (($) 9 T CONST)) (-2200 (($ $ $) 21)) (-2174 (($ $) 19)) (-3854 (((-1151) $) NIL)) (-4252 (($ $ $) 22)) (-1693 (((-1113) $) NIL)) (-3566 (($) 7 T CONST)) (-4240 (($ $ $) 23)) (-1692 (((-858) $) 27)) (-2224 (((-112) $ (|[\|\|]| -3566)) 16) (((-112) $ (|[\|\|]| -2483)) 18) (((-112) $ (|[\|\|]| -1674)) 14)) (-2188 (($ $ $) 20)) (-1718 (((-112) $ $) 12)))
+(((-614) (-13 (-963) (-10 -8 (-15 -3566 ($) -2668) (-15 -2483 ($) -2668) (-15 -1674 ($) -2668) (-15 -2224 ((-112) $ (|[\|\|]| -3566))) (-15 -2224 ((-112) $ (|[\|\|]| -2483))) (-15 -2224 ((-112) $ (|[\|\|]| -1674)))))) (T -614))
+((-3566 (*1 *1) (-5 *1 (-614))) (-2483 (*1 *1) (-5 *1 (-614))) (-1674 (*1 *1) (-5 *1 (-614))) (-2224 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -3566)) (-5 *2 (-112)) (-5 *1 (-614)))) (-2224 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -2483)) (-5 *2 (-112)) (-5 *1 (-614)))) (-2224 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1674)) (-5 *2 (-112)) (-5 *1 (-614)))))
+(-13 (-963) (-10 -8 (-15 -3566 ($) -2668) (-15 -2483 ($) -2668) (-15 -1674 ($) -2668) (-15 -2224 ((-112) $ (|[\|\|]| -3566))) (-15 -2224 ((-112) $ (|[\|\|]| -2483))) (-15 -2224 ((-112) $ (|[\|\|]| -1674)))))
+((-2219 (($ |#1|) 6)))
(((-615 |#1|) (-140) (-1208)) (T -615))
-((-2220 (*1 *1 *2) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1208)))))
-(-13 (-10 -8 (-15 -2220 ($ |t#1|))))
-((-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) 10)))
-(((-616 |#1| |#2|) (-10 -8 (-15 -1693 (|#1| |#2|)) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|))) (-617 |#2|) (-1045)) (T -616))
+((-2219 (*1 *1 *2) (-12 (-4 *1 (-615 *2)) (-4 *2 (-1208)))))
+(-13 (-10 -8 (-15 -2219 ($ |t#1|))))
+((-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) 10)))
+(((-616 |#1| |#2|) (-10 -8 (-15 -1692 (|#1| |#2|)) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|))) (-617 |#2|) (-1045)) (T -616))
NIL
-(-10 -8 (-15 -1693 (|#1| |#2|)) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 36)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ |#1| $) 37)))
+(-10 -8 (-15 -1692 (|#1| |#2|)) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 36)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ |#1| $) 37)))
(((-617 |#1|) (-140) (-1045)) (T -617))
-((-1693 (*1 *1 *2) (-12 (-4 *1 (-617 *2)) (-4 *2 (-1045)))))
-(-13 (-1045) (-643 |t#1|) (-10 -8 (-15 -1693 ($ |t#1|))))
+((-1692 (*1 *1 *2) (-12 (-4 *1 (-617 *2)) (-4 *2 (-1045)))))
+(-13 (-1045) (-643 |t#1|) (-10 -8 (-15 -1692 ($ |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-563)) . T) ((-610 (-858)) . T) ((-643 |#1|) . T) ((-643 $) . T) ((-722) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-1857 (((-563) $) NIL (|has| |#1| (-844)))) (-4239 (($) NIL T CONST)) (-3400 (((-3 $ "failed") $) NIL)) (-3101 (((-112) $) NIL (|has| |#1| (-844)))) (-3827 (((-112) $) NIL)) (-2143 ((|#1| $) 13)) (-1419 (((-112) $) NIL (|has| |#1| (-844)))) (-3084 (($ $ $) NIL (|has| |#1| (-844)))) (-1777 (($ $ $) NIL (|has| |#1| (-844)))) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2154 ((|#3| $) 15)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) NIL)) (-1675 (((-767)) 20)) (-2509 (($ $) NIL (|has| |#1| (-844)))) (-2241 (($) NIL T CONST)) (-2254 (($) 12 T CONST)) (-1778 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1837 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 17) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-618 |#1| |#2| |#3|) (-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-844)) (-6 (-844)) |%noBranch|) (-15 -1837 ($ $ |#3|)) (-15 -1837 ($ |#1| |#3|)) (-15 -2143 (|#1| $)) (-15 -2154 (|#3| $)))) (-38 |#2|) (-172) (|SubsetCategory| (-722) |#2|)) (T -618))
-((-1837 (*1 *1 *1 *2) (-12 (-4 *4 (-172)) (-5 *1 (-618 *3 *4 *2)) (-4 *3 (-38 *4)) (-4 *2 (|SubsetCategory| (-722) *4)))) (-1837 (*1 *1 *2 *3) (-12 (-4 *4 (-172)) (-5 *1 (-618 *2 *4 *3)) (-4 *2 (-38 *4)) (-4 *3 (|SubsetCategory| (-722) *4)))) (-2143 (*1 *2 *1) (-12 (-4 *3 (-172)) (-4 *2 (-38 *3)) (-5 *1 (-618 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-722) *3)))) (-2154 (*1 *2 *1) (-12 (-4 *4 (-172)) (-4 *2 (|SubsetCategory| (-722) *4)) (-5 *1 (-618 *3 *4 *2)) (-4 *3 (-38 *4)))))
-(-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-844)) (-6 (-844)) |%noBranch|) (-15 -1837 ($ $ |#3|)) (-15 -1837 ($ |#1| |#3|)) (-15 -2143 (|#1| $)) (-15 -2154 (|#3| $))))
-((-2622 ((|#2| |#2| (-1169) (-1169)) 16)))
-(((-619 |#1| |#2|) (-10 -7 (-15 -2622 (|#2| |#2| (-1169) (-1169)))) (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-955) (-29 |#1|))) (T -619))
-((-2622 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-619 *4 *2)) (-4 *2 (-13 (-1193) (-955) (-29 *4))))))
-(-10 -7 (-15 -2622 (|#2| |#2| (-1169) (-1169))))
-((-1677 (((-112) $ $) 56)) (-3411 (((-112) $) 52)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2789 ((|#1| $) 49)) (-1495 (((-3 $ "failed") $ $) NIL)) (-1919 (((-112) $ $) NIL (|has| |#1| (-363)))) (-3018 (((-2 (|:| -3773 $) (|:| -3893 (-407 |#2|))) (-407 |#2|)) 97 (|has| |#1| (-363)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 85) (((-3 |#2| "failed") $) 81)) (-2058 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-3090 (($ $ $) NIL (|has| |#1| (-363)))) (-2751 (($ $) 24)) (-3400 (((-3 $ "failed") $) 75)) (-3050 (($ $ $) NIL (|has| |#1| (-363)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-3254 (((-563) $) 19)) (-3827 (((-112) $) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3920 (((-112) $) 36)) (-2588 (($ |#1| (-563)) 21)) (-2726 ((|#1| $) 51)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) 87 (|has| |#1| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 101 (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3008 (((-3 $ "failed") $ $) 79)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-2628 (((-767) $) 100 (|has| |#1| (-363)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 99 (|has| |#1| (-363)))) (-4202 (($ $ (-1 |#2| |#2|)) 66) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-4167 (((-563) $) 34)) (-2220 (((-407 |#2|) $) 42)) (-1693 (((-858) $) 62) (($ (-563)) 32) (($ $) NIL) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) 31) (($ |#2|) 22)) (-4319 ((|#1| $ (-563)) 63)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) 29)) (-2126 (((-112) $ $) NIL)) (-2241 (($) 9 T CONST)) (-2254 (($) 12 T CONST)) (-3209 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-1718 (((-112) $ $) 17)) (-1826 (($ $) 46) (($ $ $) NIL)) (-1814 (($ $ $) 76)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 26) (($ $ $) 44)))
-(((-620 |#1| |#2|) (-13 (-231 |#2|) (-555) (-611 (-407 |#2|)) (-411 |#1|) (-1034 |#2|) (-10 -8 (-15 -3920 ((-112) $)) (-15 -4167 ((-563) $)) (-15 -3254 ((-563) $)) (-15 -2751 ($ $)) (-15 -2726 (|#1| $)) (-15 -2789 (|#1| $)) (-15 -4319 (|#1| $ (-563))) (-15 -2588 ($ |#1| (-563))) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-6 (-307)) (-15 -3018 ((-2 (|:| -3773 $) (|:| -3893 (-407 |#2|))) (-407 |#2|)))) |%noBranch|))) (-555) (-1233 |#1|)) (T -620))
-((-3920 (*1 *2 *1) (-12 (-4 *3 (-555)) (-5 *2 (-112)) (-5 *1 (-620 *3 *4)) (-4 *4 (-1233 *3)))) (-4167 (*1 *2 *1) (-12 (-4 *3 (-555)) (-5 *2 (-563)) (-5 *1 (-620 *3 *4)) (-4 *4 (-1233 *3)))) (-3254 (*1 *2 *1) (-12 (-4 *3 (-555)) (-5 *2 (-563)) (-5 *1 (-620 *3 *4)) (-4 *4 (-1233 *3)))) (-2751 (*1 *1 *1) (-12 (-4 *2 (-555)) (-5 *1 (-620 *2 *3)) (-4 *3 (-1233 *2)))) (-2726 (*1 *2 *1) (-12 (-4 *2 (-555)) (-5 *1 (-620 *2 *3)) (-4 *3 (-1233 *2)))) (-2789 (*1 *2 *1) (-12 (-4 *2 (-555)) (-5 *1 (-620 *2 *3)) (-4 *3 (-1233 *2)))) (-4319 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *2 (-555)) (-5 *1 (-620 *2 *4)) (-4 *4 (-1233 *2)))) (-2588 (*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-4 *2 (-555)) (-5 *1 (-620 *2 *4)) (-4 *4 (-1233 *2)))) (-3018 (*1 *2 *3) (-12 (-4 *4 (-363)) (-4 *4 (-555)) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| -3773 (-620 *4 *5)) (|:| -3893 (-407 *5)))) (-5 *1 (-620 *4 *5)) (-5 *3 (-407 *5)))))
-(-13 (-231 |#2|) (-555) (-611 (-407 |#2|)) (-411 |#1|) (-1034 |#2|) (-10 -8 (-15 -3920 ((-112) $)) (-15 -4167 ((-563) $)) (-15 -3254 ((-563) $)) (-15 -2751 ($ $)) (-15 -2726 (|#1| $)) (-15 -2789 (|#1| $)) (-15 -4319 (|#1| $ (-563))) (-15 -2588 ($ |#1| (-563))) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-6 (-307)) (-15 -3018 ((-2 (|:| -3773 $) (|:| -3893 (-407 |#2|))) (-407 |#2|)))) |%noBranch|)))
-((-3319 (((-640 |#6|) (-640 |#4|) (-112)) 46)) (-2078 ((|#6| |#6|) 39)))
-(((-621 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2078 (|#6| |#6|)) (-15 -3319 ((-640 |#6|) (-640 |#4|) (-112)))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1065 |#1| |#2| |#3| |#4|) (-1102 |#1| |#2| |#3| |#4|)) (T -621))
-((-3319 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 *10)) (-5 *1 (-621 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *10 (-1102 *5 *6 *7 *8)))) (-2078 (*1 *2 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *1 (-621 *3 *4 *5 *6 *7 *2)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *2 (-1102 *3 *4 *5 *6)))))
-(-10 -7 (-15 -2078 (|#6| |#6|)) (-15 -3319 ((-640 |#6|) (-640 |#4|) (-112))))
-((-3610 (((-112) |#3| (-767) (-640 |#3|)) 23)) (-4047 (((-3 (-2 (|:| |polfac| (-640 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-640 (-1165 |#3|)))) "failed") |#3| (-640 (-1165 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2760 (-640 (-2 (|:| |irr| |#4|) (|:| -1650 (-563)))))) (-640 |#3|) (-640 |#1|) (-640 |#3|)) 55)))
-(((-622 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3610 ((-112) |#3| (-767) (-640 |#3|))) (-15 -4047 ((-3 (-2 (|:| |polfac| (-640 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-640 (-1165 |#3|)))) "failed") |#3| (-640 (-1165 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2760 (-640 (-2 (|:| |irr| |#4|) (|:| -1650 (-563)))))) (-640 |#3|) (-640 |#1|) (-640 |#3|)))) (-846) (-789) (-307) (-945 |#3| |#2| |#1|)) (T -622))
-((-4047 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -2760 (-640 (-2 (|:| |irr| *10) (|:| -1650 (-563))))))) (-5 *6 (-640 *3)) (-5 *7 (-640 *8)) (-4 *8 (-846)) (-4 *3 (-307)) (-4 *10 (-945 *3 *9 *8)) (-4 *9 (-789)) (-5 *2 (-2 (|:| |polfac| (-640 *10)) (|:| |correct| *3) (|:| |corrfact| (-640 (-1165 *3))))) (-5 *1 (-622 *8 *9 *3 *10)) (-5 *4 (-640 (-1165 *3))))) (-3610 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-767)) (-5 *5 (-640 *3)) (-4 *3 (-307)) (-4 *6 (-846)) (-4 *7 (-789)) (-5 *2 (-112)) (-5 *1 (-622 *6 *7 *3 *8)) (-4 *8 (-945 *3 *7 *6)))))
-(-10 -7 (-15 -3610 ((-112) |#3| (-767) (-640 |#3|))) (-15 -4047 ((-3 (-2 (|:| |polfac| (-640 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-640 (-1165 |#3|)))) "failed") |#3| (-640 (-1165 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2760 (-640 (-2 (|:| |irr| |#4|) (|:| -1650 (-563)))))) (-640 |#3|) (-640 |#1|) (-640 |#3|))))
-((-1677 (((-112) $ $) NIL)) (-2351 (((-1128) $) 11)) (-2340 (((-1128) $) 9)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 19) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-623) (-13 (-1076) (-10 -8 (-15 -2340 ((-1128) $)) (-15 -2351 ((-1128) $))))) (T -623))
-((-2340 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-623)))) (-2351 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-623)))))
-(-13 (-1076) (-10 -8 (-15 -2340 ((-1128) $)) (-15 -2351 ((-1128) $))))
-((-1677 (((-112) $ $) NIL)) (-3993 (((-640 |#1|) $) NIL)) (-4239 (($) NIL T CONST)) (-3400 (((-3 $ "failed") $) NIL)) (-3827 (((-112) $) NIL)) (-4337 (($ $) 67)) (-4371 (((-659 |#1| |#2|) $) 52)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 70)) (-3227 (((-640 (-294 |#2|)) $ $) 33)) (-1694 (((-1113) $) NIL)) (-3368 (($ (-659 |#1| |#2|)) 48)) (-4339 (($ $ $) NIL)) (-2146 (($ $ $) NIL)) (-1693 (((-858) $) 58) (((-1272 |#1| |#2|) $) NIL) (((-1277 |#1| |#2|) $) 66)) (-2254 (($) 53 T CONST)) (-2375 (((-640 (-2 (|:| |k| (-667 |#1|)) (|:| |c| |#2|))) $) 31)) (-4326 (((-640 (-659 |#1| |#2|)) (-640 |#1|)) 65)) (-1531 (((-640 (-2 (|:| |k| (-889 |#1|)) (|:| |c| |#2|))) $) 37)) (-1718 (((-112) $ $) 54)) (-1837 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ $ $) 44)))
-(((-624 |#1| |#2| |#3|) (-13 (-473) (-10 -8 (-15 -3368 ($ (-659 |#1| |#2|))) (-15 -4371 ((-659 |#1| |#2|) $)) (-15 -1531 ((-640 (-2 (|:| |k| (-889 |#1|)) (|:| |c| |#2|))) $)) (-15 -1693 ((-1272 |#1| |#2|) $)) (-15 -1693 ((-1277 |#1| |#2|) $)) (-15 -4337 ($ $)) (-15 -3993 ((-640 |#1|) $)) (-15 -4326 ((-640 (-659 |#1| |#2|)) (-640 |#1|))) (-15 -2375 ((-640 (-2 (|:| |k| (-667 |#1|)) (|:| |c| |#2|))) $)) (-15 -3227 ((-640 (-294 |#2|)) $ $)))) (-846) (-13 (-172) (-713 (-407 (-563)))) (-917)) (T -624))
-((-3368 (*1 *1 *2) (-12 (-5 *2 (-659 *3 *4)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-5 *1 (-624 *3 *4 *5)) (-14 *5 (-917)))) (-4371 (*1 *2 *1) (-12 (-5 *2 (-659 *3 *4)) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))) (-1531 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |k| (-889 *3)) (|:| |c| *4)))) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-1272 *3 *4)) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-1277 *3 *4)) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))) (-4337 (*1 *1 *1) (-12 (-5 *1 (-624 *2 *3 *4)) (-4 *2 (-846)) (-4 *3 (-13 (-172) (-713 (-407 (-563))))) (-14 *4 (-917)))) (-3993 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))) (-4326 (*1 *2 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-846)) (-5 *2 (-640 (-659 *4 *5))) (-5 *1 (-624 *4 *5 *6)) (-4 *5 (-13 (-172) (-713 (-407 (-563))))) (-14 *6 (-917)))) (-2375 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |k| (-667 *3)) (|:| |c| *4)))) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))) (-3227 (*1 *2 *1 *1) (-12 (-5 *2 (-640 (-294 *4))) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))))
-(-13 (-473) (-10 -8 (-15 -3368 ($ (-659 |#1| |#2|))) (-15 -4371 ((-659 |#1| |#2|) $)) (-15 -1531 ((-640 (-2 (|:| |k| (-889 |#1|)) (|:| |c| |#2|))) $)) (-15 -1693 ((-1272 |#1| |#2|) $)) (-15 -1693 ((-1277 |#1| |#2|) $)) (-15 -4337 ($ $)) (-15 -3993 ((-640 |#1|) $)) (-15 -4326 ((-640 (-659 |#1| |#2|)) (-640 |#1|))) (-15 -2375 ((-640 (-2 (|:| |k| (-667 |#1|)) (|:| |c| |#2|))) $)) (-15 -3227 ((-640 (-294 |#2|)) $ $))))
-((-3319 (((-640 (-1139 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|)))) (-640 (-776 |#1| (-860 |#2|))) (-112)) 71) (((-640 (-1042 |#1| |#2|)) (-640 (-776 |#1| (-860 |#2|))) (-112)) 57)) (-3515 (((-112) (-640 (-776 |#1| (-860 |#2|)))) 23)) (-3492 (((-640 (-1139 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|)))) (-640 (-776 |#1| (-860 |#2|))) (-112)) 70)) (-3991 (((-640 (-1042 |#1| |#2|)) (-640 (-776 |#1| (-860 |#2|))) (-112)) 56)) (-4059 (((-640 (-776 |#1| (-860 |#2|))) (-640 (-776 |#1| (-860 |#2|)))) 27)) (-3122 (((-3 (-640 (-776 |#1| (-860 |#2|))) "failed") (-640 (-776 |#1| (-860 |#2|)))) 26)))
-(((-625 |#1| |#2|) (-10 -7 (-15 -3515 ((-112) (-640 (-776 |#1| (-860 |#2|))))) (-15 -3122 ((-3 (-640 (-776 |#1| (-860 |#2|))) "failed") (-640 (-776 |#1| (-860 |#2|))))) (-15 -4059 ((-640 (-776 |#1| (-860 |#2|))) (-640 (-776 |#1| (-860 |#2|))))) (-15 -3991 ((-640 (-1042 |#1| |#2|)) (-640 (-776 |#1| (-860 |#2|))) (-112))) (-15 -3492 ((-640 (-1139 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|)))) (-640 (-776 |#1| (-860 |#2|))) (-112))) (-15 -3319 ((-640 (-1042 |#1| |#2|)) (-640 (-776 |#1| (-860 |#2|))) (-112))) (-15 -3319 ((-640 (-1139 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|)))) (-640 (-776 |#1| (-860 |#2|))) (-112)))) (-452) (-640 (-1169))) (T -625))
-((-3319 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452)) (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1139 *5 (-531 (-860 *6)) (-860 *6) (-776 *5 (-860 *6))))) (-5 *1 (-625 *5 *6)))) (-3319 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452)) (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1042 *5 *6))) (-5 *1 (-625 *5 *6)))) (-3492 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452)) (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1139 *5 (-531 (-860 *6)) (-860 *6) (-776 *5 (-860 *6))))) (-5 *1 (-625 *5 *6)))) (-3991 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452)) (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1042 *5 *6))) (-5 *1 (-625 *5 *6)))) (-4059 (*1 *2 *2) (-12 (-5 *2 (-640 (-776 *3 (-860 *4)))) (-4 *3 (-452)) (-14 *4 (-640 (-1169))) (-5 *1 (-625 *3 *4)))) (-3122 (*1 *2 *2) (|partial| -12 (-5 *2 (-640 (-776 *3 (-860 *4)))) (-4 *3 (-452)) (-14 *4 (-640 (-1169))) (-5 *1 (-625 *3 *4)))) (-3515 (*1 *2 *3) (-12 (-5 *3 (-640 (-776 *4 (-860 *5)))) (-4 *4 (-452)) (-14 *5 (-640 (-1169))) (-5 *2 (-112)) (-5 *1 (-625 *4 *5)))))
-(-10 -7 (-15 -3515 ((-112) (-640 (-776 |#1| (-860 |#2|))))) (-15 -3122 ((-3 (-640 (-776 |#1| (-860 |#2|))) "failed") (-640 (-776 |#1| (-860 |#2|))))) (-15 -4059 ((-640 (-776 |#1| (-860 |#2|))) (-640 (-776 |#1| (-860 |#2|))))) (-15 -3991 ((-640 (-1042 |#1| |#2|)) (-640 (-776 |#1| (-860 |#2|))) (-112))) (-15 -3492 ((-640 (-1139 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|)))) (-640 (-776 |#1| (-860 |#2|))) (-112))) (-15 -3319 ((-640 (-1042 |#1| |#2|)) (-640 (-776 |#1| (-860 |#2|))) (-112))) (-15 -3319 ((-640 (-1139 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|)))) (-640 (-776 |#1| (-860 |#2|))) (-112))))
-((-1771 (($ $) 38)) (-1619 (($ $) 21)) (-1748 (($ $) 37)) (-1597 (($ $) 22)) (-1794 (($ $) 36)) (-1643 (($ $) 23)) (-2180 (($) 48)) (-4371 (($ $) 45)) (-3108 (($ $) 17)) (-1335 (($ $ (-1085 $)) 7) (($ $ (-1169)) 6)) (-3368 (($ $) 46)) (-2773 (($ $) 15)) (-1586 (($ $) 16)) (-1806 (($ $) 35)) (-1656 (($ $) 24)) (-1784 (($ $) 34)) (-1630 (($ $) 25)) (-1759 (($ $) 33)) (-1608 (($ $) 26)) (-1840 (($ $) 44)) (-1695 (($ $) 32)) (-1817 (($ $) 43)) (-1667 (($ $) 31)) (-1862 (($ $) 42)) (-1722 (($ $) 30)) (-1311 (($ $) 41)) (-1735 (($ $) 29)) (-1851 (($ $) 40)) (-1710 (($ $) 28)) (-1829 (($ $) 39)) (-1680 (($ $) 27)) (-1482 (($ $) 19)) (-1561 (($ $) 20)) (-3525 (($ $) 18)) (** (($ $ $) 47)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2807 (((-563) $) NIL (|has| |#1| (-844)))) (-2569 (($) NIL T CONST)) (-3951 (((-3 $ "failed") $) NIL)) (-3414 (((-112) $) NIL (|has| |#1| (-844)))) (-3401 (((-112) $) NIL)) (-2143 ((|#1| $) 13)) (-3426 (((-112) $) NIL (|has| |#1| (-844)))) (-3088 (($ $ $) NIL (|has| |#1| (-844)))) (-1776 (($ $ $) NIL (|has| |#1| (-844)))) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2153 ((|#3| $) 15)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) NIL)) (-3914 (((-767)) 20)) (-1462 (($ $) NIL (|has| |#1| (-844)))) (-2239 (($) NIL T CONST)) (-2253 (($) 12 T CONST)) (-1779 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1836 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 17) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-618 |#1| |#2| |#3|) (-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-844)) (-6 (-844)) |%noBranch|) (-15 -1836 ($ $ |#3|)) (-15 -1836 ($ |#1| |#3|)) (-15 -2143 (|#1| $)) (-15 -2153 (|#3| $)))) (-38 |#2|) (-172) (|SubsetCategory| (-722) |#2|)) (T -618))
+((-1836 (*1 *1 *1 *2) (-12 (-4 *4 (-172)) (-5 *1 (-618 *3 *4 *2)) (-4 *3 (-38 *4)) (-4 *2 (|SubsetCategory| (-722) *4)))) (-1836 (*1 *1 *2 *3) (-12 (-4 *4 (-172)) (-5 *1 (-618 *2 *4 *3)) (-4 *2 (-38 *4)) (-4 *3 (|SubsetCategory| (-722) *4)))) (-2143 (*1 *2 *1) (-12 (-4 *3 (-172)) (-4 *2 (-38 *3)) (-5 *1 (-618 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-722) *3)))) (-2153 (*1 *2 *1) (-12 (-4 *4 (-172)) (-4 *2 (|SubsetCategory| (-722) *4)) (-5 *1 (-618 *3 *4 *2)) (-4 *3 (-38 *4)))))
+(-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-844)) (-6 (-844)) |%noBranch|) (-15 -1836 ($ $ |#3|)) (-15 -1836 ($ |#1| |#3|)) (-15 -2143 (|#1| $)) (-15 -2153 (|#3| $))))
+((-2366 ((|#2| |#2| (-1169) (-1169)) 16)))
+(((-619 |#1| |#2|) (-10 -7 (-15 -2366 (|#2| |#2| (-1169) (-1169)))) (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-955) (-29 |#1|))) (T -619))
+((-2366 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-619 *4 *2)) (-4 *2 (-13 (-1193) (-955) (-29 *4))))))
+(-10 -7 (-15 -2366 (|#2| |#2| (-1169) (-1169))))
+((-1677 (((-112) $ $) 56)) (-3439 (((-112) $) 52)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-2378 ((|#1| $) 49)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2003 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1550 (((-2 (|:| -3169 $) (|:| -4388 (-407 |#2|))) (-407 |#2|)) 98 (|has| |#1| (-363)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 86) (((-3 |#2| "failed") $) 82)) (-2057 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-3094 (($ $ $) NIL (|has| |#1| (-363)))) (-2750 (($ $) 24)) (-3951 (((-3 $ "failed") $) 76)) (-3054 (($ $ $) NIL (|has| |#1| (-363)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-1775 (((-563) $) 19)) (-3401 (((-112) $) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3805 (((-112) $) 36)) (-2587 (($ |#1| (-563)) 21)) (-2725 ((|#1| $) 51)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) 88 (|has| |#1| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 102 (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-3012 (((-3 $ "failed") $ $) 80)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-1993 (((-767) $) 101 (|has| |#1| (-363)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 100 (|has| |#1| (-363)))) (-4203 (($ $ (-1 |#2| |#2|)) 66) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-3871 (((-563) $) 34)) (-2219 (((-407 |#2|) $) 42)) (-1692 (((-858) $) 62) (($ (-563)) 32) (($ $) NIL) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) 31) (($ |#2|) 22)) (-3244 ((|#1| $ (-563)) 63)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) 29)) (-3223 (((-112) $ $) NIL)) (-2239 (($) 9 T CONST)) (-2253 (($) 12 T CONST)) (-3213 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-1718 (((-112) $ $) 17)) (-1825 (($ $) 46) (($ $ $) NIL)) (-1813 (($ $ $) 77)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 26) (($ $ $) 44)))
+(((-620 |#1| |#2|) (-13 (-231 |#2|) (-555) (-611 (-407 |#2|)) (-411 |#1|) (-1034 |#2|) (-10 -8 (-15 -3805 ((-112) $)) (-15 -3871 ((-563) $)) (-15 -1775 ((-563) $)) (-15 -2750 ($ $)) (-15 -2725 (|#1| $)) (-15 -2378 (|#1| $)) (-15 -3244 (|#1| $ (-563))) (-15 -2587 ($ |#1| (-563))) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-6 (-307)) (-15 -1550 ((-2 (|:| -3169 $) (|:| -4388 (-407 |#2|))) (-407 |#2|)))) |%noBranch|))) (-555) (-1233 |#1|)) (T -620))
+((-3805 (*1 *2 *1) (-12 (-4 *3 (-555)) (-5 *2 (-112)) (-5 *1 (-620 *3 *4)) (-4 *4 (-1233 *3)))) (-3871 (*1 *2 *1) (-12 (-4 *3 (-555)) (-5 *2 (-563)) (-5 *1 (-620 *3 *4)) (-4 *4 (-1233 *3)))) (-1775 (*1 *2 *1) (-12 (-4 *3 (-555)) (-5 *2 (-563)) (-5 *1 (-620 *3 *4)) (-4 *4 (-1233 *3)))) (-2750 (*1 *1 *1) (-12 (-4 *2 (-555)) (-5 *1 (-620 *2 *3)) (-4 *3 (-1233 *2)))) (-2725 (*1 *2 *1) (-12 (-4 *2 (-555)) (-5 *1 (-620 *2 *3)) (-4 *3 (-1233 *2)))) (-2378 (*1 *2 *1) (-12 (-4 *2 (-555)) (-5 *1 (-620 *2 *3)) (-4 *3 (-1233 *2)))) (-3244 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *2 (-555)) (-5 *1 (-620 *2 *4)) (-4 *4 (-1233 *2)))) (-2587 (*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-4 *2 (-555)) (-5 *1 (-620 *2 *4)) (-4 *4 (-1233 *2)))) (-1550 (*1 *2 *3) (-12 (-4 *4 (-363)) (-4 *4 (-555)) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| -3169 (-620 *4 *5)) (|:| -4388 (-407 *5)))) (-5 *1 (-620 *4 *5)) (-5 *3 (-407 *5)))))
+(-13 (-231 |#2|) (-555) (-611 (-407 |#2|)) (-411 |#1|) (-1034 |#2|) (-10 -8 (-15 -3805 ((-112) $)) (-15 -3871 ((-563) $)) (-15 -1775 ((-563) $)) (-15 -2750 ($ $)) (-15 -2725 (|#1| $)) (-15 -2378 (|#1| $)) (-15 -3244 (|#1| $ (-563))) (-15 -2587 ($ |#1| (-563))) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-6 (-307)) (-15 -1550 ((-2 (|:| -3169 $) (|:| -4388 (-407 |#2|))) (-407 |#2|)))) |%noBranch|)))
+((-2119 (((-640 |#6|) (-640 |#4|) (-112)) 46)) (-2389 ((|#6| |#6|) 39)))
+(((-621 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2389 (|#6| |#6|)) (-15 -2119 ((-640 |#6|) (-640 |#4|) (-112)))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1065 |#1| |#2| |#3| |#4|) (-1102 |#1| |#2| |#3| |#4|)) (T -621))
+((-2119 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 *10)) (-5 *1 (-621 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *10 (-1102 *5 *6 *7 *8)))) (-2389 (*1 *2 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *1 (-621 *3 *4 *5 *6 *7 *2)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *2 (-1102 *3 *4 *5 *6)))))
+(-10 -7 (-15 -2389 (|#6| |#6|)) (-15 -2119 ((-640 |#6|) (-640 |#4|) (-112))))
+((-2399 (((-112) |#3| (-767) (-640 |#3|)) 23)) (-2411 (((-3 (-2 (|:| |polfac| (-640 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-640 (-1165 |#3|)))) "failed") |#3| (-640 (-1165 |#3|)) (-2 (|:| |contp| |#3|) (|:| -1337 (-640 (-2 (|:| |irr| |#4|) (|:| -3259 (-563)))))) (-640 |#3|) (-640 |#1|) (-640 |#3|)) 55)))
+(((-622 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2399 ((-112) |#3| (-767) (-640 |#3|))) (-15 -2411 ((-3 (-2 (|:| |polfac| (-640 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-640 (-1165 |#3|)))) "failed") |#3| (-640 (-1165 |#3|)) (-2 (|:| |contp| |#3|) (|:| -1337 (-640 (-2 (|:| |irr| |#4|) (|:| -3259 (-563)))))) (-640 |#3|) (-640 |#1|) (-640 |#3|)))) (-846) (-789) (-307) (-945 |#3| |#2| |#1|)) (T -622))
+((-2411 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -1337 (-640 (-2 (|:| |irr| *10) (|:| -3259 (-563))))))) (-5 *6 (-640 *3)) (-5 *7 (-640 *8)) (-4 *8 (-846)) (-4 *3 (-307)) (-4 *10 (-945 *3 *9 *8)) (-4 *9 (-789)) (-5 *2 (-2 (|:| |polfac| (-640 *10)) (|:| |correct| *3) (|:| |corrfact| (-640 (-1165 *3))))) (-5 *1 (-622 *8 *9 *3 *10)) (-5 *4 (-640 (-1165 *3))))) (-2399 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-767)) (-5 *5 (-640 *3)) (-4 *3 (-307)) (-4 *6 (-846)) (-4 *7 (-789)) (-5 *2 (-112)) (-5 *1 (-622 *6 *7 *3 *8)) (-4 *8 (-945 *3 *7 *6)))))
+(-10 -7 (-15 -2399 ((-112) |#3| (-767) (-640 |#3|))) (-15 -2411 ((-3 (-2 (|:| |polfac| (-640 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-640 (-1165 |#3|)))) "failed") |#3| (-640 (-1165 |#3|)) (-2 (|:| |contp| |#3|) (|:| -1337 (-640 (-2 (|:| |irr| |#4|) (|:| -3259 (-563)))))) (-640 |#3|) (-640 |#1|) (-640 |#3|))))
+((-1677 (((-112) $ $) NIL)) (-2350 (((-1128) $) 11)) (-2339 (((-1128) $) 9)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 19) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-623) (-13 (-1076) (-10 -8 (-15 -2339 ((-1128) $)) (-15 -2350 ((-1128) $))))) (T -623))
+((-2339 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-623)))) (-2350 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-623)))))
+(-13 (-1076) (-10 -8 (-15 -2339 ((-1128) $)) (-15 -2350 ((-1128) $))))
+((-1677 (((-112) $ $) NIL)) (-3994 (((-640 |#1|) $) NIL)) (-2569 (($) NIL T CONST)) (-3951 (((-3 $ "failed") $) NIL)) (-3401 (((-112) $) NIL)) (-3794 (($ $) 67)) (-4372 (((-659 |#1| |#2|) $) 52)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 70)) (-2422 (((-640 (-294 |#2|)) $ $) 33)) (-1693 (((-1113) $) NIL)) (-3372 (($ (-659 |#1| |#2|)) 48)) (-2150 (($ $ $) NIL)) (-1745 (($ $ $) NIL)) (-1692 (((-858) $) 58) (((-1272 |#1| |#2|) $) NIL) (((-1277 |#1| |#2|) $) 66)) (-2253 (($) 53 T CONST)) (-2434 (((-640 (-2 (|:| |k| (-667 |#1|)) (|:| |c| |#2|))) $) 31)) (-2445 (((-640 (-659 |#1| |#2|)) (-640 |#1|)) 65)) (-2891 (((-640 (-2 (|:| |k| (-889 |#1|)) (|:| |c| |#2|))) $) 37)) (-1718 (((-112) $ $) 54)) (-1836 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ $ $) 44)))
+(((-624 |#1| |#2| |#3|) (-13 (-473) (-10 -8 (-15 -3372 ($ (-659 |#1| |#2|))) (-15 -4372 ((-659 |#1| |#2|) $)) (-15 -2891 ((-640 (-2 (|:| |k| (-889 |#1|)) (|:| |c| |#2|))) $)) (-15 -1692 ((-1272 |#1| |#2|) $)) (-15 -1692 ((-1277 |#1| |#2|) $)) (-15 -3794 ($ $)) (-15 -3994 ((-640 |#1|) $)) (-15 -2445 ((-640 (-659 |#1| |#2|)) (-640 |#1|))) (-15 -2434 ((-640 (-2 (|:| |k| (-667 |#1|)) (|:| |c| |#2|))) $)) (-15 -2422 ((-640 (-294 |#2|)) $ $)))) (-846) (-13 (-172) (-713 (-407 (-563)))) (-917)) (T -624))
+((-3372 (*1 *1 *2) (-12 (-5 *2 (-659 *3 *4)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-5 *1 (-624 *3 *4 *5)) (-14 *5 (-917)))) (-4372 (*1 *2 *1) (-12 (-5 *2 (-659 *3 *4)) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))) (-2891 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |k| (-889 *3)) (|:| |c| *4)))) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-1272 *3 *4)) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-1277 *3 *4)) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))) (-3794 (*1 *1 *1) (-12 (-5 *1 (-624 *2 *3 *4)) (-4 *2 (-846)) (-4 *3 (-13 (-172) (-713 (-407 (-563))))) (-14 *4 (-917)))) (-3994 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))) (-2445 (*1 *2 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-846)) (-5 *2 (-640 (-659 *4 *5))) (-5 *1 (-624 *4 *5 *6)) (-4 *5 (-13 (-172) (-713 (-407 (-563))))) (-14 *6 (-917)))) (-2434 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |k| (-667 *3)) (|:| |c| *4)))) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))) (-2422 (*1 *2 *1 *1) (-12 (-5 *2 (-640 (-294 *4))) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846)) (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))))
+(-13 (-473) (-10 -8 (-15 -3372 ($ (-659 |#1| |#2|))) (-15 -4372 ((-659 |#1| |#2|) $)) (-15 -2891 ((-640 (-2 (|:| |k| (-889 |#1|)) (|:| |c| |#2|))) $)) (-15 -1692 ((-1272 |#1| |#2|) $)) (-15 -1692 ((-1277 |#1| |#2|) $)) (-15 -3794 ($ $)) (-15 -3994 ((-640 |#1|) $)) (-15 -2445 ((-640 (-659 |#1| |#2|)) (-640 |#1|))) (-15 -2434 ((-640 (-2 (|:| |k| (-667 |#1|)) (|:| |c| |#2|))) $)) (-15 -2422 ((-640 (-294 |#2|)) $ $))))
+((-2119 (((-640 (-1139 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|)))) (-640 (-776 |#1| (-860 |#2|))) (-112)) 71) (((-640 (-1042 |#1| |#2|)) (-640 (-776 |#1| (-860 |#2|))) (-112)) 57)) (-2455 (((-112) (-640 (-776 |#1| (-860 |#2|)))) 23)) (-2500 (((-640 (-1139 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|)))) (-640 (-776 |#1| (-860 |#2|))) (-112)) 70)) (-2490 (((-640 (-1042 |#1| |#2|)) (-640 (-776 |#1| (-860 |#2|))) (-112)) 56)) (-2478 (((-640 (-776 |#1| (-860 |#2|))) (-640 (-776 |#1| (-860 |#2|)))) 27)) (-2466 (((-3 (-640 (-776 |#1| (-860 |#2|))) "failed") (-640 (-776 |#1| (-860 |#2|)))) 26)))
+(((-625 |#1| |#2|) (-10 -7 (-15 -2455 ((-112) (-640 (-776 |#1| (-860 |#2|))))) (-15 -2466 ((-3 (-640 (-776 |#1| (-860 |#2|))) "failed") (-640 (-776 |#1| (-860 |#2|))))) (-15 -2478 ((-640 (-776 |#1| (-860 |#2|))) (-640 (-776 |#1| (-860 |#2|))))) (-15 -2490 ((-640 (-1042 |#1| |#2|)) (-640 (-776 |#1| (-860 |#2|))) (-112))) (-15 -2500 ((-640 (-1139 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|)))) (-640 (-776 |#1| (-860 |#2|))) (-112))) (-15 -2119 ((-640 (-1042 |#1| |#2|)) (-640 (-776 |#1| (-860 |#2|))) (-112))) (-15 -2119 ((-640 (-1139 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|)))) (-640 (-776 |#1| (-860 |#2|))) (-112)))) (-452) (-640 (-1169))) (T -625))
+((-2119 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452)) (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1139 *5 (-531 (-860 *6)) (-860 *6) (-776 *5 (-860 *6))))) (-5 *1 (-625 *5 *6)))) (-2119 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452)) (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1042 *5 *6))) (-5 *1 (-625 *5 *6)))) (-2500 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452)) (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1139 *5 (-531 (-860 *6)) (-860 *6) (-776 *5 (-860 *6))))) (-5 *1 (-625 *5 *6)))) (-2490 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452)) (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1042 *5 *6))) (-5 *1 (-625 *5 *6)))) (-2478 (*1 *2 *2) (-12 (-5 *2 (-640 (-776 *3 (-860 *4)))) (-4 *3 (-452)) (-14 *4 (-640 (-1169))) (-5 *1 (-625 *3 *4)))) (-2466 (*1 *2 *2) (|partial| -12 (-5 *2 (-640 (-776 *3 (-860 *4)))) (-4 *3 (-452)) (-14 *4 (-640 (-1169))) (-5 *1 (-625 *3 *4)))) (-2455 (*1 *2 *3) (-12 (-5 *3 (-640 (-776 *4 (-860 *5)))) (-4 *4 (-452)) (-14 *5 (-640 (-1169))) (-5 *2 (-112)) (-5 *1 (-625 *4 *5)))))
+(-10 -7 (-15 -2455 ((-112) (-640 (-776 |#1| (-860 |#2|))))) (-15 -2466 ((-3 (-640 (-776 |#1| (-860 |#2|))) "failed") (-640 (-776 |#1| (-860 |#2|))))) (-15 -2478 ((-640 (-776 |#1| (-860 |#2|))) (-640 (-776 |#1| (-860 |#2|))))) (-15 -2490 ((-640 (-1042 |#1| |#2|)) (-640 (-776 |#1| (-860 |#2|))) (-112))) (-15 -2500 ((-640 (-1139 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|)))) (-640 (-776 |#1| (-860 |#2|))) (-112))) (-15 -2119 ((-640 (-1042 |#1| |#2|)) (-640 (-776 |#1| (-860 |#2|))) (-112))) (-15 -2119 ((-640 (-1139 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|)))) (-640 (-776 |#1| (-860 |#2|))) (-112))))
+((-1770 (($ $) 38)) (-1618 (($ $) 21)) (-1747 (($ $) 37)) (-1596 (($ $) 22)) (-1793 (($ $) 36)) (-1642 (($ $) 23)) (-2179 (($) 48)) (-4372 (($ $) 45)) (-3114 (($ $) 17)) (-4025 (($ $ (-1085 $)) 7) (($ $ (-1169)) 6)) (-3372 (($ $) 46)) (-2772 (($ $) 15)) (-1585 (($ $) 16)) (-1805 (($ $) 35)) (-1655 (($ $) 24)) (-1783 (($ $) 34)) (-1629 (($ $) 25)) (-1758 (($ $) 33)) (-1607 (($ $) 26)) (-1839 (($ $) 44)) (-1694 (($ $) 32)) (-1816 (($ $) 43)) (-1666 (($ $) 31)) (-1861 (($ $) 42)) (-1721 (($ $) 30)) (-1311 (($ $) 41)) (-1734 (($ $) 29)) (-1850 (($ $) 40)) (-1709 (($ $) 28)) (-1828 (($ $) 39)) (-1679 (($ $) 27)) (-2536 (($ $) 19)) (-2547 (($ $) 20)) (-2525 (($ $) 18)) (** (($ $ $) 47)))
(((-626) (-140)) (T -626))
-((-1561 (*1 *1 *1) (-4 *1 (-626))) (-1482 (*1 *1 *1) (-4 *1 (-626))) (-3525 (*1 *1 *1) (-4 *1 (-626))) (-3108 (*1 *1 *1) (-4 *1 (-626))) (-1586 (*1 *1 *1) (-4 *1 (-626))) (-2773 (*1 *1 *1) (-4 *1 (-626))))
-(-13 (-955) (-1193) (-10 -8 (-15 -1561 ($ $)) (-15 -1482 ($ $)) (-15 -3525 ($ $)) (-15 -3108 ($ $)) (-15 -1586 ($ $)) (-15 -2773 ($ $))))
+((-2547 (*1 *1 *1) (-4 *1 (-626))) (-2536 (*1 *1 *1) (-4 *1 (-626))) (-2525 (*1 *1 *1) (-4 *1 (-626))) (-3114 (*1 *1 *1) (-4 *1 (-626))) (-1585 (*1 *1 *1) (-4 *1 (-626))) (-2772 (*1 *1 *1) (-4 *1 (-626))))
+(-13 (-955) (-1193) (-10 -8 (-15 -2547 ($ $)) (-15 -2536 ($ $)) (-15 -2525 ($ $)) (-15 -3114 ($ $)) (-15 -1585 ($ $)) (-15 -2772 ($ $))))
(((-35) . T) ((-95) . T) ((-284) . T) ((-493) . T) ((-955) . T) ((-1193) . T) ((-1196) . T))
-((-2361 (((-114) (-114)) 83)) (-3108 ((|#2| |#2|) 28)) (-1335 ((|#2| |#2| (-1085 |#2|)) 79) ((|#2| |#2| (-1169)) 51)) (-2773 ((|#2| |#2|) 27)) (-1586 ((|#2| |#2|) 29)) (-3734 (((-112) (-114)) 33)) (-1482 ((|#2| |#2|) 24)) (-1561 ((|#2| |#2|) 26)) (-3525 ((|#2| |#2|) 25)))
-(((-627 |#1| |#2|) (-10 -7 (-15 -3734 ((-112) (-114))) (-15 -2361 ((-114) (-114))) (-15 -1561 (|#2| |#2|)) (-15 -1482 (|#2| |#2|)) (-15 -3525 (|#2| |#2|)) (-15 -3108 (|#2| |#2|)) (-15 -2773 (|#2| |#2|)) (-15 -1586 (|#2| |#2|)) (-15 -1335 (|#2| |#2| (-1169))) (-15 -1335 (|#2| |#2| (-1085 |#2|)))) (-13 (-846) (-555)) (-13 (-430 |#1|) (-998) (-1193))) (T -627))
-((-1335 (*1 *2 *2 *3) (-12 (-5 *3 (-1085 *2)) (-4 *2 (-13 (-430 *4) (-998) (-1193))) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-627 *4 *2)))) (-1335 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-627 *4 *2)) (-4 *2 (-13 (-430 *4) (-998) (-1193))))) (-1586 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2)) (-4 *2 (-13 (-430 *3) (-998) (-1193))))) (-2773 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2)) (-4 *2 (-13 (-430 *3) (-998) (-1193))))) (-3108 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2)) (-4 *2 (-13 (-430 *3) (-998) (-1193))))) (-3525 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2)) (-4 *2 (-13 (-430 *3) (-998) (-1193))))) (-1482 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2)) (-4 *2 (-13 (-430 *3) (-998) (-1193))))) (-1561 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2)) (-4 *2 (-13 (-430 *3) (-998) (-1193))))) (-2361 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *4)) (-4 *4 (-13 (-430 *3) (-998) (-1193))))) (-3734 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112)) (-5 *1 (-627 *4 *5)) (-4 *5 (-13 (-430 *4) (-998) (-1193))))))
-(-10 -7 (-15 -3734 ((-112) (-114))) (-15 -2361 ((-114) (-114))) (-15 -1561 (|#2| |#2|)) (-15 -1482 (|#2| |#2|)) (-15 -3525 (|#2| |#2|)) (-15 -3108 (|#2| |#2|)) (-15 -2773 (|#2| |#2|)) (-15 -1586 (|#2| |#2|)) (-15 -1335 (|#2| |#2| (-1169))) (-15 -1335 (|#2| |#2| (-1085 |#2|))))
-((-4133 (((-481 |#1| |#2|) (-247 |#1| |#2|)) 53)) (-2990 (((-640 (-247 |#1| |#2|)) (-640 (-481 |#1| |#2|))) 68)) (-3679 (((-481 |#1| |#2|) (-640 (-481 |#1| |#2|)) (-860 |#1|)) 70) (((-481 |#1| |#2|) (-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|)) (-860 |#1|)) 69)) (-1349 (((-2 (|:| |gblist| (-640 (-247 |#1| |#2|))) (|:| |gvlist| (-640 (-563)))) (-640 (-481 |#1| |#2|))) 108)) (-1772 (((-640 (-481 |#1| |#2|)) (-860 |#1|) (-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|))) 83)) (-2862 (((-2 (|:| |glbase| (-640 (-247 |#1| |#2|))) (|:| |glval| (-640 (-563)))) (-640 (-247 |#1| |#2|))) 118)) (-2430 (((-1257 |#2|) (-481 |#1| |#2|) (-640 (-481 |#1| |#2|))) 58)) (-2063 (((-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|))) 41)) (-3367 (((-247 |#1| |#2|) (-247 |#1| |#2|) (-640 (-247 |#1| |#2|))) 50)) (-1498 (((-247 |#1| |#2|) (-640 |#2|) (-247 |#1| |#2|) (-640 (-247 |#1| |#2|))) 91)))
-(((-628 |#1| |#2|) (-10 -7 (-15 -1349 ((-2 (|:| |gblist| (-640 (-247 |#1| |#2|))) (|:| |gvlist| (-640 (-563)))) (-640 (-481 |#1| |#2|)))) (-15 -2862 ((-2 (|:| |glbase| (-640 (-247 |#1| |#2|))) (|:| |glval| (-640 (-563)))) (-640 (-247 |#1| |#2|)))) (-15 -2990 ((-640 (-247 |#1| |#2|)) (-640 (-481 |#1| |#2|)))) (-15 -3679 ((-481 |#1| |#2|) (-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|)) (-860 |#1|))) (-15 -3679 ((-481 |#1| |#2|) (-640 (-481 |#1| |#2|)) (-860 |#1|))) (-15 -2063 ((-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|)))) (-15 -2430 ((-1257 |#2|) (-481 |#1| |#2|) (-640 (-481 |#1| |#2|)))) (-15 -1498 ((-247 |#1| |#2|) (-640 |#2|) (-247 |#1| |#2|) (-640 (-247 |#1| |#2|)))) (-15 -1772 ((-640 (-481 |#1| |#2|)) (-860 |#1|) (-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|)))) (-15 -3367 ((-247 |#1| |#2|) (-247 |#1| |#2|) (-640 (-247 |#1| |#2|)))) (-15 -4133 ((-481 |#1| |#2|) (-247 |#1| |#2|)))) (-640 (-1169)) (-452)) (T -628))
-((-4133 (*1 *2 *3) (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *2 (-481 *4 *5)) (-5 *1 (-628 *4 *5)))) (-3367 (*1 *2 *2 *3) (-12 (-5 *3 (-640 (-247 *4 *5))) (-5 *2 (-247 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *1 (-628 *4 *5)))) (-1772 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-640 (-481 *4 *5))) (-5 *3 (-860 *4)) (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *1 (-628 *4 *5)))) (-1498 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-640 *6)) (-5 *4 (-640 (-247 *5 *6))) (-4 *6 (-452)) (-5 *2 (-247 *5 *6)) (-14 *5 (-640 (-1169))) (-5 *1 (-628 *5 *6)))) (-2430 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-481 *5 *6))) (-5 *3 (-481 *5 *6)) (-14 *5 (-640 (-1169))) (-4 *6 (-452)) (-5 *2 (-1257 *6)) (-5 *1 (-628 *5 *6)))) (-2063 (*1 *2 *2) (-12 (-5 *2 (-640 (-481 *3 *4))) (-14 *3 (-640 (-1169))) (-4 *4 (-452)) (-5 *1 (-628 *3 *4)))) (-3679 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-481 *5 *6))) (-5 *4 (-860 *5)) (-14 *5 (-640 (-1169))) (-5 *2 (-481 *5 *6)) (-5 *1 (-628 *5 *6)) (-4 *6 (-452)))) (-3679 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-640 (-481 *5 *6))) (-5 *4 (-860 *5)) (-14 *5 (-640 (-1169))) (-5 *2 (-481 *5 *6)) (-5 *1 (-628 *5 *6)) (-4 *6 (-452)))) (-2990 (*1 *2 *3) (-12 (-5 *3 (-640 (-481 *4 *5))) (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *2 (-640 (-247 *4 *5))) (-5 *1 (-628 *4 *5)))) (-2862 (*1 *2 *3) (-12 (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *2 (-2 (|:| |glbase| (-640 (-247 *4 *5))) (|:| |glval| (-640 (-563))))) (-5 *1 (-628 *4 *5)) (-5 *3 (-640 (-247 *4 *5))))) (-1349 (*1 *2 *3) (-12 (-5 *3 (-640 (-481 *4 *5))) (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *2 (-2 (|:| |gblist| (-640 (-247 *4 *5))) (|:| |gvlist| (-640 (-563))))) (-5 *1 (-628 *4 *5)))))
-(-10 -7 (-15 -1349 ((-2 (|:| |gblist| (-640 (-247 |#1| |#2|))) (|:| |gvlist| (-640 (-563)))) (-640 (-481 |#1| |#2|)))) (-15 -2862 ((-2 (|:| |glbase| (-640 (-247 |#1| |#2|))) (|:| |glval| (-640 (-563)))) (-640 (-247 |#1| |#2|)))) (-15 -2990 ((-640 (-247 |#1| |#2|)) (-640 (-481 |#1| |#2|)))) (-15 -3679 ((-481 |#1| |#2|) (-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|)) (-860 |#1|))) (-15 -3679 ((-481 |#1| |#2|) (-640 (-481 |#1| |#2|)) (-860 |#1|))) (-15 -2063 ((-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|)))) (-15 -2430 ((-1257 |#2|) (-481 |#1| |#2|) (-640 (-481 |#1| |#2|)))) (-15 -1498 ((-247 |#1| |#2|) (-640 |#2|) (-247 |#1| |#2|) (-640 (-247 |#1| |#2|)))) (-15 -1772 ((-640 (-481 |#1| |#2|)) (-860 |#1|) (-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|)))) (-15 -3367 ((-247 |#1| |#2|) (-247 |#1| |#2|) (-640 (-247 |#1| |#2|)))) (-15 -4133 ((-481 |#1| |#2|) (-247 |#1| |#2|))))
-((-1677 (((-112) $ $) NIL (-4032 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1093))))) (-1552 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))))) NIL)) (-4378 (((-1262) $ (-1151) (-1151)) NIL (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 (((-52) $ (-1151) (-52)) 16) (((-52) $ (-1169) (-52)) 17)) (-2812 (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407)))) (-1577 (((-3 (-52) "failed") (-1151) $) NIL)) (-4239 (($) NIL T CONST)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1093))))) (-2705 (($ (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) $) NIL (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-3 (-52) "failed") (-1151) $) NIL)) (-1459 (($ (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407)))) (-2444 (((-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) $ (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1093)))) (((-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) $ (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) NIL (|has| $ (-6 -4407))) (((-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407)))) (-4355 (((-52) $ (-1151) (-52)) NIL (|has| $ (-6 -4408)))) (-4293 (((-52) $ (-1151)) NIL)) (-2659 (((-640 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-640 (-52)) $) NIL (|has| $ (-6 -4407)))) (-3629 (($ $) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-1151) $) NIL (|has| (-1151) (-846)))) (-2259 (((-640 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-640 (-52)) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1093)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-52) (-1093))))) (-3860 (((-1151) $) NIL (|has| (-1151) (-846)))) (-4345 (($ (-1 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-1533 (($ (-388)) 9)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (-4032 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1093))))) (-1303 (((-640 (-1151)) $) NIL)) (-4173 (((-112) (-1151) $) NIL)) (-2964 (((-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) $) NIL)) (-1812 (($ (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) $) NIL)) (-4318 (((-640 (-1151)) $) NIL)) (-3192 (((-112) (-1151) $) NIL)) (-1694 (((-1113) $) NIL (-4032 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1093))))) (-3781 (((-52) $) NIL (|has| (-1151) (-846)))) (-4203 (((-3 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) "failed") (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) $) NIL)) (-2358 (($ $ (-52)) NIL (|has| $ (-6 -4408)))) (-3755 (((-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) $) NIL)) (-3138 (((-112) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1093)))) (($ $ (-294 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1093)))) (($ $ (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1093)))) (($ $ (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1093)))) (($ $ (-640 (-52)) (-640 (-52))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-294 (-52))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-640 (-294 (-52)))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-52) (-1093))))) (-2836 (((-640 (-52)) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 (((-52) $ (-1151)) 14) (((-52) $ (-1151) (-52)) NIL) (((-52) $ (-1169)) 15)) (-3890 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))))) NIL)) (-1709 (((-767) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1093)))) (((-767) (-52) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-52) (-1093)))) (((-767) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-611 (-536))))) (-1707 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))))) NIL)) (-1693 (((-858) $) NIL (-4032 (|has| (-52) (-610 (-858))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-610 (-858)))))) (-2233 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))))) NIL)) (-4383 (((-112) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (-4032 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 (-52))) (-1093))))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-629) (-13 (-1184 (-1151) (-52)) (-10 -8 (-15 -1533 ($ (-388))) (-15 -3629 ($ $)) (-15 -2309 ((-52) $ (-1169))) (-15 -1849 ((-52) $ (-1169) (-52)))))) (T -629))
-((-1533 (*1 *1 *2) (-12 (-5 *2 (-388)) (-5 *1 (-629)))) (-3629 (*1 *1 *1) (-5 *1 (-629))) (-2309 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-52)) (-5 *1 (-629)))) (-1849 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1169)) (-5 *1 (-629)))))
-(-13 (-1184 (-1151) (-52)) (-10 -8 (-15 -1533 ($ (-388))) (-15 -3629 ($ $)) (-15 -2309 ((-52) $ (-1169))) (-15 -1849 ((-52) $ (-1169) (-52)))))
-((-1837 (($ $ |#2|) 10)))
-(((-630 |#1| |#2|) (-10 -8 (-15 -1837 (|#1| |#1| |#2|))) (-631 |#2|) (-172)) (T -630))
-NIL
-(-10 -8 (-15 -1837 (|#1| |#1| |#2|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1707 (($ $ $) 29)) (-1693 (((-858) $) 11)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1837 (($ $ |#1|) 28 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
+((-2559 (((-114) (-114)) 84)) (-3114 ((|#2| |#2|) 28)) (-4025 ((|#2| |#2| (-1085 |#2|)) 80) ((|#2| |#2| (-1169)) 49)) (-2772 ((|#2| |#2|) 27)) (-1585 ((|#2| |#2|) 29)) (-2512 (((-112) (-114)) 33)) (-2536 ((|#2| |#2|) 24)) (-2547 ((|#2| |#2|) 26)) (-2525 ((|#2| |#2|) 25)))
+(((-627 |#1| |#2|) (-10 -7 (-15 -2512 ((-112) (-114))) (-15 -2559 ((-114) (-114))) (-15 -2547 (|#2| |#2|)) (-15 -2536 (|#2| |#2|)) (-15 -2525 (|#2| |#2|)) (-15 -3114 (|#2| |#2|)) (-15 -2772 (|#2| |#2|)) (-15 -1585 (|#2| |#2|)) (-15 -4025 (|#2| |#2| (-1169))) (-15 -4025 (|#2| |#2| (-1085 |#2|)))) (-13 (-846) (-555)) (-13 (-430 |#1|) (-998) (-1193))) (T -627))
+((-4025 (*1 *2 *2 *3) (-12 (-5 *3 (-1085 *2)) (-4 *2 (-13 (-430 *4) (-998) (-1193))) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-627 *4 *2)))) (-4025 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-627 *4 *2)) (-4 *2 (-13 (-430 *4) (-998) (-1193))))) (-1585 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2)) (-4 *2 (-13 (-430 *3) (-998) (-1193))))) (-2772 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2)) (-4 *2 (-13 (-430 *3) (-998) (-1193))))) (-3114 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2)) (-4 *2 (-13 (-430 *3) (-998) (-1193))))) (-2525 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2)) (-4 *2 (-13 (-430 *3) (-998) (-1193))))) (-2536 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2)) (-4 *2 (-13 (-430 *3) (-998) (-1193))))) (-2547 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2)) (-4 *2 (-13 (-430 *3) (-998) (-1193))))) (-2559 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *4)) (-4 *4 (-13 (-430 *3) (-998) (-1193))))) (-2512 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112)) (-5 *1 (-627 *4 *5)) (-4 *5 (-13 (-430 *4) (-998) (-1193))))))
+(-10 -7 (-15 -2512 ((-112) (-114))) (-15 -2559 ((-114) (-114))) (-15 -2547 (|#2| |#2|)) (-15 -2536 (|#2| |#2|)) (-15 -2525 (|#2| |#2|)) (-15 -3114 (|#2| |#2|)) (-15 -2772 (|#2| |#2|)) (-15 -1585 (|#2| |#2|)) (-15 -4025 (|#2| |#2| (-1169))) (-15 -4025 (|#2| |#2| (-1085 |#2|))))
+((-1399 (((-481 |#1| |#2|) (-247 |#1| |#2|)) 53)) (-2577 (((-640 (-247 |#1| |#2|)) (-640 (-481 |#1| |#2|))) 68)) (-2589 (((-481 |#1| |#2|) (-640 (-481 |#1| |#2|)) (-860 |#1|)) 70) (((-481 |#1| |#2|) (-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|)) (-860 |#1|)) 69)) (-2557 (((-2 (|:| |gblist| (-640 (-247 |#1| |#2|))) (|:| |gvlist| (-640 (-563)))) (-640 (-481 |#1| |#2|))) 108)) (-1378 (((-640 (-481 |#1| |#2|)) (-860 |#1|) (-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|))) 83)) (-2567 (((-2 (|:| |glbase| (-640 (-247 |#1| |#2|))) (|:| |glval| (-640 (-563)))) (-640 (-247 |#1| |#2|))) 118)) (-2607 (((-1257 |#2|) (-481 |#1| |#2|) (-640 (-481 |#1| |#2|))) 58)) (-2597 (((-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|))) 41)) (-1388 (((-247 |#1| |#2|) (-247 |#1| |#2|) (-640 (-247 |#1| |#2|))) 50)) (-2616 (((-247 |#1| |#2|) (-640 |#2|) (-247 |#1| |#2|) (-640 (-247 |#1| |#2|))) 91)))
+(((-628 |#1| |#2|) (-10 -7 (-15 -2557 ((-2 (|:| |gblist| (-640 (-247 |#1| |#2|))) (|:| |gvlist| (-640 (-563)))) (-640 (-481 |#1| |#2|)))) (-15 -2567 ((-2 (|:| |glbase| (-640 (-247 |#1| |#2|))) (|:| |glval| (-640 (-563)))) (-640 (-247 |#1| |#2|)))) (-15 -2577 ((-640 (-247 |#1| |#2|)) (-640 (-481 |#1| |#2|)))) (-15 -2589 ((-481 |#1| |#2|) (-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|)) (-860 |#1|))) (-15 -2589 ((-481 |#1| |#2|) (-640 (-481 |#1| |#2|)) (-860 |#1|))) (-15 -2597 ((-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|)))) (-15 -2607 ((-1257 |#2|) (-481 |#1| |#2|) (-640 (-481 |#1| |#2|)))) (-15 -2616 ((-247 |#1| |#2|) (-640 |#2|) (-247 |#1| |#2|) (-640 (-247 |#1| |#2|)))) (-15 -1378 ((-640 (-481 |#1| |#2|)) (-860 |#1|) (-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|)))) (-15 -1388 ((-247 |#1| |#2|) (-247 |#1| |#2|) (-640 (-247 |#1| |#2|)))) (-15 -1399 ((-481 |#1| |#2|) (-247 |#1| |#2|)))) (-640 (-1169)) (-452)) (T -628))
+((-1399 (*1 *2 *3) (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *2 (-481 *4 *5)) (-5 *1 (-628 *4 *5)))) (-1388 (*1 *2 *2 *3) (-12 (-5 *3 (-640 (-247 *4 *5))) (-5 *2 (-247 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *1 (-628 *4 *5)))) (-1378 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-640 (-481 *4 *5))) (-5 *3 (-860 *4)) (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *1 (-628 *4 *5)))) (-2616 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-640 *6)) (-5 *4 (-640 (-247 *5 *6))) (-4 *6 (-452)) (-5 *2 (-247 *5 *6)) (-14 *5 (-640 (-1169))) (-5 *1 (-628 *5 *6)))) (-2607 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-481 *5 *6))) (-5 *3 (-481 *5 *6)) (-14 *5 (-640 (-1169))) (-4 *6 (-452)) (-5 *2 (-1257 *6)) (-5 *1 (-628 *5 *6)))) (-2597 (*1 *2 *2) (-12 (-5 *2 (-640 (-481 *3 *4))) (-14 *3 (-640 (-1169))) (-4 *4 (-452)) (-5 *1 (-628 *3 *4)))) (-2589 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-481 *5 *6))) (-5 *4 (-860 *5)) (-14 *5 (-640 (-1169))) (-5 *2 (-481 *5 *6)) (-5 *1 (-628 *5 *6)) (-4 *6 (-452)))) (-2589 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-640 (-481 *5 *6))) (-5 *4 (-860 *5)) (-14 *5 (-640 (-1169))) (-5 *2 (-481 *5 *6)) (-5 *1 (-628 *5 *6)) (-4 *6 (-452)))) (-2577 (*1 *2 *3) (-12 (-5 *3 (-640 (-481 *4 *5))) (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *2 (-640 (-247 *4 *5))) (-5 *1 (-628 *4 *5)))) (-2567 (*1 *2 *3) (-12 (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *2 (-2 (|:| |glbase| (-640 (-247 *4 *5))) (|:| |glval| (-640 (-563))))) (-5 *1 (-628 *4 *5)) (-5 *3 (-640 (-247 *4 *5))))) (-2557 (*1 *2 *3) (-12 (-5 *3 (-640 (-481 *4 *5))) (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *2 (-2 (|:| |gblist| (-640 (-247 *4 *5))) (|:| |gvlist| (-640 (-563))))) (-5 *1 (-628 *4 *5)))))
+(-10 -7 (-15 -2557 ((-2 (|:| |gblist| (-640 (-247 |#1| |#2|))) (|:| |gvlist| (-640 (-563)))) (-640 (-481 |#1| |#2|)))) (-15 -2567 ((-2 (|:| |glbase| (-640 (-247 |#1| |#2|))) (|:| |glval| (-640 (-563)))) (-640 (-247 |#1| |#2|)))) (-15 -2577 ((-640 (-247 |#1| |#2|)) (-640 (-481 |#1| |#2|)))) (-15 -2589 ((-481 |#1| |#2|) (-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|)) (-860 |#1|))) (-15 -2589 ((-481 |#1| |#2|) (-640 (-481 |#1| |#2|)) (-860 |#1|))) (-15 -2597 ((-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|)))) (-15 -2607 ((-1257 |#2|) (-481 |#1| |#2|) (-640 (-481 |#1| |#2|)))) (-15 -2616 ((-247 |#1| |#2|) (-640 |#2|) (-247 |#1| |#2|) (-640 (-247 |#1| |#2|)))) (-15 -1378 ((-640 (-481 |#1| |#2|)) (-860 |#1|) (-640 (-481 |#1| |#2|)) (-640 (-481 |#1| |#2|)))) (-15 -1388 ((-247 |#1| |#2|) (-247 |#1| |#2|) (-640 (-247 |#1| |#2|)))) (-15 -1399 ((-481 |#1| |#2|) (-247 |#1| |#2|))))
+((-1677 (((-112) $ $) NIL (-4034 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1093))))) (-1551 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))))) NIL)) (-2208 (((-1262) $ (-1151) (-1151)) NIL (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 (((-52) $ (-1151) (-52)) 16) (((-52) $ (-1169) (-52)) 17)) (-3678 (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408)))) (-1576 (((-3 (-52) "failed") (-1151) $) NIL)) (-2569 (($) NIL T CONST)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1093))))) (-1691 (($ (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-3 (-52) "failed") (-1151) $) NIL)) (-1459 (($ (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408)))) (-2444 (((-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) $ (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1093)))) (((-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) $ (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408)))) (-4356 (((-52) $ (-1151) (-52)) NIL (|has| $ (-6 -4409)))) (-4293 (((-52) $ (-1151)) NIL)) (-2658 (((-640 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-640 (-52)) $) NIL (|has| $ (-6 -4408)))) (-1410 (($ $) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-1151) $) NIL (|has| (-1151) (-846)))) (-3523 (((-640 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-640 (-52)) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1093)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-52) (-1093))))) (-2251 (((-1151) $) NIL (|has| (-1151) (-846)))) (-4347 (($ (-1 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4409))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-1530 (($ (-388)) 9)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (-4034 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1093))))) (-1304 (((-640 (-1151)) $) NIL)) (-2305 (((-112) (-1151) $) NIL)) (-2627 (((-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) $) NIL)) (-3867 (($ (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) $) NIL)) (-2272 (((-640 (-1151)) $) NIL)) (-2282 (((-112) (-1151) $) NIL)) (-1693 (((-1113) $) NIL (-4034 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1093))))) (-3782 (((-52) $) NIL (|has| (-1151) (-846)))) (-1971 (((-3 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) "failed") (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) $) NIL)) (-2221 (($ $ (-52)) NIL (|has| $ (-6 -4409)))) (-2808 (((-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) $) NIL)) (-1458 (((-112) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1093)))) (($ $ (-294 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1093)))) (($ $ (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1093)))) (($ $ (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1093)))) (($ $ (-640 (-52)) (-640 (-52))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-294 (-52))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-640 (-294 (-52)))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-52) (-1093))))) (-2295 (((-640 (-52)) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 (((-52) $ (-1151)) 14) (((-52) $ (-1151) (-52)) NIL) (((-52) $ (-1169)) 15)) (-3863 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))))) NIL)) (-1708 (((-767) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1093)))) (((-767) (-52) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-52) (-1093)))) (((-767) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-611 (-536))))) (-1706 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))))) NIL)) (-1692 (((-858) $) NIL (-4034 (|has| (-52) (-610 (-858))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-610 (-858)))))) (-2820 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))))) NIL)) (-1471 (((-112) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (-4034 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 (-52))) (-1093))))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-629) (-13 (-1184 (-1151) (-52)) (-10 -8 (-15 -1530 ($ (-388))) (-15 -1410 ($ $)) (-15 -2308 ((-52) $ (-1169))) (-15 -1849 ((-52) $ (-1169) (-52)))))) (T -629))
+((-1530 (*1 *1 *2) (-12 (-5 *2 (-388)) (-5 *1 (-629)))) (-1410 (*1 *1 *1) (-5 *1 (-629))) (-2308 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-52)) (-5 *1 (-629)))) (-1849 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1169)) (-5 *1 (-629)))))
+(-13 (-1184 (-1151) (-52)) (-10 -8 (-15 -1530 ($ (-388))) (-15 -1410 ($ $)) (-15 -2308 ((-52) $ (-1169))) (-15 -1849 ((-52) $ (-1169) (-52)))))
+((-1836 (($ $ |#2|) 10)))
+(((-630 |#1| |#2|) (-10 -8 (-15 -1836 (|#1| |#1| |#2|))) (-631 |#2|) (-172)) (T -630))
+NIL
+(-10 -8 (-15 -1836 (|#1| |#1| |#2|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1706 (($ $ $) 29)) (-1692 (((-858) $) 11)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1836 (($ $ |#1|) 28 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
(((-631 |#1|) (-140) (-172)) (T -631))
-((-1707 (*1 *1 *1 *1) (-12 (-4 *1 (-631 *2)) (-4 *2 (-172)))) (-1837 (*1 *1 *1 *2) (-12 (-4 *1 (-631 *2)) (-4 *2 (-172)) (-4 *2 (-363)))))
-(-13 (-713 |t#1|) (-10 -8 (-6 |NullSquare|) (-6 |JacobiIdentity|) (-15 -1707 ($ $ $)) (IF (|has| |t#1| (-363)) (-15 -1837 ($ $ |t#1|)) |%noBranch|)))
+((-1706 (*1 *1 *1 *1) (-12 (-4 *1 (-631 *2)) (-4 *2 (-172)))) (-1836 (*1 *1 *1 *2) (-12 (-4 *1 (-631 *2)) (-4 *2 (-172)) (-4 *2 (-363)))))
+(-13 (-713 |t#1|) (-10 -8 (-6 |NullSquare|) (-6 |JacobiIdentity|) (-15 -1706 ($ $ $)) (IF (|has| |t#1| (-363)) (-15 -1836 ($ $ |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-610 (-858)) . T) ((-643 |#1|) . T) ((-713 |#1|) . T) ((-1051 |#1|) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1414 (((-3 $ "failed")) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-1495 (((-3 $ "failed") $ $) NIL)) (-3507 (((-1257 (-684 |#1|))) NIL (|has| |#2| (-417 |#1|))) (((-1257 (-684 |#1|)) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-1438 (((-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-4239 (($) NIL T CONST)) (-2133 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-2435 (((-3 $ "failed")) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-4220 (((-684 |#1|)) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2480 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-3043 (((-684 |#1|) $) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) $ (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-4154 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-3451 (((-1165 (-948 |#1|))) NIL (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-363))))) (-2300 (($ $ (-917)) NIL)) (-3830 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-3763 (((-1165 |#1|) $) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-1824 ((|#1|) NIL (|has| |#2| (-417 |#1|))) ((|#1| (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2876 (((-1165 |#1|) $) NIL (|has| |#2| (-367 |#1|)))) (-2182 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3937 (($ (-1257 |#1|)) NIL (|has| |#2| (-417 |#1|))) (($ (-1257 |#1|) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-3400 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-2522 (((-917)) NIL (|has| |#2| (-367 |#1|)))) (-2250 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2287 (($ $ (-917)) NIL)) (-3901 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3308 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3104 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2284 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-2508 (((-3 $ "failed")) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-2328 (((-684 |#1|)) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2842 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-1823 (((-684 |#1|) $) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) $ (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-3856 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-3594 (((-1165 (-948 |#1|))) NIL (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-363))))) (-1494 (($ $ (-917)) NIL)) (-2199 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-2604 (((-1165 |#1|) $) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-4111 ((|#1|) NIL (|has| |#2| (-417 |#1|))) ((|#1| (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2665 (((-1165 |#1|) $) NIL (|has| |#2| (-367 |#1|)))) (-4012 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3573 (((-1151) $) NIL)) (-2136 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-1789 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2047 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-1694 (((-1113) $) NIL)) (-4084 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2309 ((|#1| $ (-563)) NIL (|has| |#2| (-417 |#1|)))) (-1880 (((-684 |#1|) (-1257 $)) NIL (|has| |#2| (-417 |#1|))) (((-1257 |#1|) $) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) (-1257 $) (-1257 $)) NIL (|has| |#2| (-367 |#1|))) (((-1257 |#1|) $ (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2220 (($ (-1257 |#1|)) NIL (|has| |#2| (-417 |#1|))) (((-1257 |#1|) $) NIL (|has| |#2| (-417 |#1|)))) (-4152 (((-640 (-948 |#1|))) NIL (|has| |#2| (-417 |#1|))) (((-640 (-948 |#1|)) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2146 (($ $ $) NIL)) (-1936 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-1693 (((-858) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-4315 (((-1257 $)) NIL (|has| |#2| (-417 |#1|)))) (-2138 (((-640 (-1257 |#1|))) NIL (-4032 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-1361 (($ $ $ $) NIL)) (-1402 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3726 (($ (-684 |#1|) $) NIL (|has| |#2| (-417 |#1|)))) (-3399 (($ $ $) NIL)) (-2483 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3777 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2128 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2241 (($) 15 T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) 17)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 11) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-632 |#1| |#2|) (-13 (-740 |#1|) (-610 |#2|) (-10 -8 (-15 -1693 ($ |#2|)) (IF (|has| |#2| (-417 |#1|)) (-6 (-417 |#1|)) |%noBranch|) (IF (|has| |#2| (-367 |#1|)) (-6 (-367 |#1|)) |%noBranch|))) (-172) (-740 |#1|)) (T -632))
-((-1693 (*1 *1 *2) (-12 (-4 *3 (-172)) (-5 *1 (-632 *3 *2)) (-4 *2 (-740 *3)))))
-(-13 (-740 |#1|) (-610 |#2|) (-10 -8 (-15 -1693 ($ |#2|)) (IF (|has| |#2| (-417 |#1|)) (-6 (-417 |#1|)) |%noBranch|) (IF (|has| |#2| (-367 |#1|)) (-6 (-367 |#1|)) |%noBranch|)))
-((-2626 (((-3 (-839 |#2|) "failed") |#2| (-294 |#2|) (-1151)) 81) (((-3 (-839 |#2|) (-2 (|:| |leftHandLimit| (-3 (-839 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-839 |#2|) "failed"))) "failed") |#2| (-294 (-839 |#2|))) 103)) (-3224 (((-3 (-829 |#2|) "failed") |#2| (-294 (-829 |#2|))) 108)))
-(((-633 |#1| |#2|) (-10 -7 (-15 -2626 ((-3 (-839 |#2|) (-2 (|:| |leftHandLimit| (-3 (-839 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-839 |#2|) "failed"))) "failed") |#2| (-294 (-839 |#2|)))) (-15 -3224 ((-3 (-829 |#2|) "failed") |#2| (-294 (-829 |#2|)))) (-15 -2626 ((-3 (-839 |#2|) "failed") |#2| (-294 |#2|) (-1151)))) (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|))) (T -633))
-((-2626 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-294 *3)) (-5 *5 (-1151)) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-839 *3)) (-5 *1 (-633 *6 *3)))) (-3224 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-294 (-829 *3))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-829 *3)) (-5 *1 (-633 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-2626 (*1 *2 *3 *4) (-12 (-5 *4 (-294 (-839 *3))) (-4 *3 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (-839 *3) (-2 (|:| |leftHandLimit| (-3 (-839 *3) "failed")) (|:| |rightHandLimit| (-3 (-839 *3) "failed"))) "failed")) (-5 *1 (-633 *5 *3)))))
-(-10 -7 (-15 -2626 ((-3 (-839 |#2|) (-2 (|:| |leftHandLimit| (-3 (-839 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-839 |#2|) "failed"))) "failed") |#2| (-294 (-839 |#2|)))) (-15 -3224 ((-3 (-829 |#2|) "failed") |#2| (-294 (-829 |#2|)))) (-15 -2626 ((-3 (-839 |#2|) "failed") |#2| (-294 |#2|) (-1151))))
-((-2626 (((-3 (-839 (-407 (-948 |#1|))) "failed") (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))) (-1151)) 80) (((-3 (-839 (-407 (-948 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed"))) "failed") (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|)))) 20) (((-3 (-839 (-407 (-948 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed"))) "failed") (-407 (-948 |#1|)) (-294 (-839 (-948 |#1|)))) 35)) (-3224 (((-829 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|)))) 23) (((-829 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-294 (-829 (-948 |#1|)))) 43)))
-(((-634 |#1|) (-10 -7 (-15 -2626 ((-3 (-839 (-407 (-948 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed"))) "failed") (-407 (-948 |#1|)) (-294 (-839 (-948 |#1|))))) (-15 -2626 ((-3 (-839 (-407 (-948 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed"))) "failed") (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))))) (-15 -3224 ((-829 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-294 (-829 (-948 |#1|))))) (-15 -3224 ((-829 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))))) (-15 -2626 ((-3 (-839 (-407 (-948 |#1|))) "failed") (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))) (-1151)))) (-452)) (T -634))
-((-2626 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-294 (-407 (-948 *6)))) (-5 *5 (-1151)) (-5 *3 (-407 (-948 *6))) (-4 *6 (-452)) (-5 *2 (-839 *3)) (-5 *1 (-634 *6)))) (-3224 (*1 *2 *3 *4) (-12 (-5 *4 (-294 (-407 (-948 *5)))) (-5 *3 (-407 (-948 *5))) (-4 *5 (-452)) (-5 *2 (-829 *3)) (-5 *1 (-634 *5)))) (-3224 (*1 *2 *3 *4) (-12 (-5 *4 (-294 (-829 (-948 *5)))) (-4 *5 (-452)) (-5 *2 (-829 (-407 (-948 *5)))) (-5 *1 (-634 *5)) (-5 *3 (-407 (-948 *5))))) (-2626 (*1 *2 *3 *4) (-12 (-5 *4 (-294 (-407 (-948 *5)))) (-5 *3 (-407 (-948 *5))) (-4 *5 (-452)) (-5 *2 (-3 (-839 *3) (-2 (|:| |leftHandLimit| (-3 (-839 *3) "failed")) (|:| |rightHandLimit| (-3 (-839 *3) "failed"))) "failed")) (-5 *1 (-634 *5)))) (-2626 (*1 *2 *3 *4) (-12 (-5 *4 (-294 (-839 (-948 *5)))) (-4 *5 (-452)) (-5 *2 (-3 (-839 (-407 (-948 *5))) (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 *5))) "failed")) (|:| |rightHandLimit| (-3 (-839 (-407 (-948 *5))) "failed"))) "failed")) (-5 *1 (-634 *5)) (-5 *3 (-407 (-948 *5))))))
-(-10 -7 (-15 -2626 ((-3 (-839 (-407 (-948 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed"))) "failed") (-407 (-948 |#1|)) (-294 (-839 (-948 |#1|))))) (-15 -2626 ((-3 (-839 (-407 (-948 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed"))) "failed") (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))))) (-15 -3224 ((-829 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-294 (-829 (-948 |#1|))))) (-15 -3224 ((-829 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))))) (-15 -2626 ((-3 (-839 (-407 (-948 |#1|))) "failed") (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))) (-1151))))
-((-3654 (((-3 (-1257 (-407 |#1|)) "failed") (-1257 |#2|) |#2|) 57 (-2176 (|has| |#1| (-363)))) (((-3 (-1257 |#1|) "failed") (-1257 |#2|) |#2|) 42 (|has| |#1| (-363)))) (-4301 (((-112) (-1257 |#2|)) 30)) (-3825 (((-3 (-1257 |#1|) "failed") (-1257 |#2|)) 33)))
-(((-635 |#1| |#2|) (-10 -7 (-15 -4301 ((-112) (-1257 |#2|))) (-15 -3825 ((-3 (-1257 |#1|) "failed") (-1257 |#2|))) (IF (|has| |#1| (-363)) (-15 -3654 ((-3 (-1257 |#1|) "failed") (-1257 |#2|) |#2|)) (-15 -3654 ((-3 (-1257 (-407 |#1|)) "failed") (-1257 |#2|) |#2|)))) (-555) (-636 |#1|)) (T -635))
-((-3654 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 *5)) (-2176 (-4 *5 (-363))) (-4 *5 (-555)) (-5 *2 (-1257 (-407 *5))) (-5 *1 (-635 *5 *4)))) (-3654 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 *5)) (-4 *5 (-363)) (-4 *5 (-555)) (-5 *2 (-1257 *5)) (-5 *1 (-635 *5 *4)))) (-3825 (*1 *2 *3) (|partial| -12 (-5 *3 (-1257 *5)) (-4 *5 (-636 *4)) (-4 *4 (-555)) (-5 *2 (-1257 *4)) (-5 *1 (-635 *4 *5)))) (-4301 (*1 *2 *3) (-12 (-5 *3 (-1257 *5)) (-4 *5 (-636 *4)) (-4 *4 (-555)) (-5 *2 (-112)) (-5 *1 (-635 *4 *5)))))
-(-10 -7 (-15 -4301 ((-112) (-1257 |#2|))) (-15 -3825 ((-3 (-1257 |#1|) "failed") (-1257 |#2|))) (IF (|has| |#1| (-363)) (-15 -3654 ((-3 (-1257 |#1|) "failed") (-1257 |#2|) |#2|)) (-15 -3654 ((-3 (-1257 (-407 |#1|)) "failed") (-1257 |#2|) |#2|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-2950 (((-684 |#1|) (-684 $)) 36) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 35)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ (-563)) 29)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3245 (((-3 $ "failed")) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-3905 (((-3 $ "failed") $ $) NIL)) (-3749 (((-1257 (-684 |#1|))) NIL (|has| |#2| (-417 |#1|))) (((-1257 (-684 |#1|)) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-4039 (((-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2569 (($) NIL T CONST)) (-2288 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-1914 (((-3 $ "failed")) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-3410 (((-684 |#1|)) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-4017 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-3386 (((-684 |#1|) $) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) $ (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-3342 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-2214 (((-1165 (-948 |#1|))) NIL (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-363))))) (-3376 (($ $ (-917)) NIL)) (-3995 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-1938 (((-1165 |#1|) $) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-3436 ((|#1|) NIL (|has| |#2| (-417 |#1|))) ((|#1| (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-3973 (((-1165 |#1|) $) NIL (|has| |#2| (-367 |#1|)))) (-3912 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3458 (($ (-1257 |#1|)) NIL (|has| |#2| (-417 |#1|))) (($ (-1257 |#1|) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-3951 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-2521 (((-917)) NIL (|has| |#2| (-367 |#1|)))) (-3879 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3617 (($ $ (-917)) NIL)) (-3843 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3825 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3861 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2299 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-1927 (((-3 $ "failed")) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-3422 (((-684 |#1|)) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-4028 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-3398 (((-684 |#1|) $) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) $ (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-3353 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-2267 (((-1165 (-948 |#1|))) NIL (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-363))))) (-3364 (($ $ (-917)) NIL)) (-4007 ((|#1| $) NIL (|has| |#2| (-367 |#1|)))) (-3801 (((-1165 |#1|) $) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-3447 ((|#1|) NIL (|has| |#2| (-417 |#1|))) ((|#1| (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-3984 (((-1165 |#1|) $) NIL (|has| |#2| (-367 |#1|)))) (-3923 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3854 (((-1151) $) NIL)) (-3832 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3852 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3868 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-1693 (((-1113) $) NIL)) (-3900 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2308 ((|#1| $ (-563)) NIL (|has| |#2| (-417 |#1|)))) (-3759 (((-684 |#1|) (-1257 $)) NIL (|has| |#2| (-417 |#1|))) (((-1257 |#1|) $) NIL (|has| |#2| (-417 |#1|))) (((-684 |#1|) (-1257 $) (-1257 $)) NIL (|has| |#2| (-367 |#1|))) (((-1257 |#1|) $ (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-2219 (($ (-1257 |#1|)) NIL (|has| |#2| (-417 |#1|))) (((-1257 |#1|) $) NIL (|has| |#2| (-417 |#1|)))) (-2122 (((-640 (-948 |#1|))) NIL (|has| |#2| (-417 |#1|))) (((-640 (-948 |#1|)) (-1257 $)) NIL (|has| |#2| (-367 |#1|)))) (-1745 (($ $ $) NIL)) (-3963 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-1692 (((-858) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-4013 (((-1257 $)) NIL (|has| |#2| (-417 |#1|)))) (-3813 (((-640 (-1257 |#1|))) NIL (-4034 (-12 (|has| |#2| (-367 |#1|)) (|has| |#1| (-555))) (-12 (|has| |#2| (-417 |#1|)) (|has| |#1| (-555)))))) (-1756 (($ $ $ $) NIL)) (-3942 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3727 (($ (-684 |#1|) $) NIL (|has| |#2| (-417 |#1|)))) (-1729 (($ $ $) NIL)) (-3952 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3933 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-3891 (((-112)) NIL (|has| |#2| (-367 |#1|)))) (-2239 (($) 15 T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) 17)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 11) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-632 |#1| |#2|) (-13 (-740 |#1|) (-610 |#2|) (-10 -8 (-15 -1692 ($ |#2|)) (IF (|has| |#2| (-417 |#1|)) (-6 (-417 |#1|)) |%noBranch|) (IF (|has| |#2| (-367 |#1|)) (-6 (-367 |#1|)) |%noBranch|))) (-172) (-740 |#1|)) (T -632))
+((-1692 (*1 *1 *2) (-12 (-4 *3 (-172)) (-5 *1 (-632 *3 *2)) (-4 *2 (-740 *3)))))
+(-13 (-740 |#1|) (-610 |#2|) (-10 -8 (-15 -1692 ($ |#2|)) (IF (|has| |#2| (-417 |#1|)) (-6 (-417 |#1|)) |%noBranch|) (IF (|has| |#2| (-367 |#1|)) (-6 (-367 |#1|)) |%noBranch|)))
+((-1433 (((-3 (-839 |#2|) "failed") |#2| (-294 |#2|) (-1151)) 81) (((-3 (-839 |#2|) (-2 (|:| |leftHandLimit| (-3 (-839 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-839 |#2|) "failed"))) "failed") |#2| (-294 (-839 |#2|))) 103)) (-1422 (((-3 (-829 |#2|) "failed") |#2| (-294 (-829 |#2|))) 108)))
+(((-633 |#1| |#2|) (-10 -7 (-15 -1433 ((-3 (-839 |#2|) (-2 (|:| |leftHandLimit| (-3 (-839 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-839 |#2|) "failed"))) "failed") |#2| (-294 (-839 |#2|)))) (-15 -1422 ((-3 (-829 |#2|) "failed") |#2| (-294 (-829 |#2|)))) (-15 -1433 ((-3 (-839 |#2|) "failed") |#2| (-294 |#2|) (-1151)))) (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|))) (T -633))
+((-1433 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-294 *3)) (-5 *5 (-1151)) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-839 *3)) (-5 *1 (-633 *6 *3)))) (-1422 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-294 (-829 *3))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-829 *3)) (-5 *1 (-633 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))) (-1433 (*1 *2 *3 *4) (-12 (-5 *4 (-294 (-839 *3))) (-4 *3 (-13 (-27) (-1193) (-430 *5))) (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-3 (-839 *3) (-2 (|:| |leftHandLimit| (-3 (-839 *3) "failed")) (|:| |rightHandLimit| (-3 (-839 *3) "failed"))) "failed")) (-5 *1 (-633 *5 *3)))))
+(-10 -7 (-15 -1433 ((-3 (-839 |#2|) (-2 (|:| |leftHandLimit| (-3 (-839 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-839 |#2|) "failed"))) "failed") |#2| (-294 (-839 |#2|)))) (-15 -1422 ((-3 (-829 |#2|) "failed") |#2| (-294 (-829 |#2|)))) (-15 -1433 ((-3 (-839 |#2|) "failed") |#2| (-294 |#2|) (-1151))))
+((-1433 (((-3 (-839 (-407 (-948 |#1|))) "failed") (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))) (-1151)) 80) (((-3 (-839 (-407 (-948 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed"))) "failed") (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|)))) 20) (((-3 (-839 (-407 (-948 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed"))) "failed") (-407 (-948 |#1|)) (-294 (-839 (-948 |#1|)))) 35)) (-1422 (((-829 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|)))) 23) (((-829 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-294 (-829 (-948 |#1|)))) 43)))
+(((-634 |#1|) (-10 -7 (-15 -1433 ((-3 (-839 (-407 (-948 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed"))) "failed") (-407 (-948 |#1|)) (-294 (-839 (-948 |#1|))))) (-15 -1433 ((-3 (-839 (-407 (-948 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed"))) "failed") (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))))) (-15 -1422 ((-829 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-294 (-829 (-948 |#1|))))) (-15 -1422 ((-829 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))))) (-15 -1433 ((-3 (-839 (-407 (-948 |#1|))) "failed") (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))) (-1151)))) (-452)) (T -634))
+((-1433 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-294 (-407 (-948 *6)))) (-5 *5 (-1151)) (-5 *3 (-407 (-948 *6))) (-4 *6 (-452)) (-5 *2 (-839 *3)) (-5 *1 (-634 *6)))) (-1422 (*1 *2 *3 *4) (-12 (-5 *4 (-294 (-407 (-948 *5)))) (-5 *3 (-407 (-948 *5))) (-4 *5 (-452)) (-5 *2 (-829 *3)) (-5 *1 (-634 *5)))) (-1422 (*1 *2 *3 *4) (-12 (-5 *4 (-294 (-829 (-948 *5)))) (-4 *5 (-452)) (-5 *2 (-829 (-407 (-948 *5)))) (-5 *1 (-634 *5)) (-5 *3 (-407 (-948 *5))))) (-1433 (*1 *2 *3 *4) (-12 (-5 *4 (-294 (-407 (-948 *5)))) (-5 *3 (-407 (-948 *5))) (-4 *5 (-452)) (-5 *2 (-3 (-839 *3) (-2 (|:| |leftHandLimit| (-3 (-839 *3) "failed")) (|:| |rightHandLimit| (-3 (-839 *3) "failed"))) "failed")) (-5 *1 (-634 *5)))) (-1433 (*1 *2 *3 *4) (-12 (-5 *4 (-294 (-839 (-948 *5)))) (-4 *5 (-452)) (-5 *2 (-3 (-839 (-407 (-948 *5))) (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 *5))) "failed")) (|:| |rightHandLimit| (-3 (-839 (-407 (-948 *5))) "failed"))) "failed")) (-5 *1 (-634 *5)) (-5 *3 (-407 (-948 *5))))))
+(-10 -7 (-15 -1433 ((-3 (-839 (-407 (-948 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed"))) "failed") (-407 (-948 |#1|)) (-294 (-839 (-948 |#1|))))) (-15 -1433 ((-3 (-839 (-407 (-948 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-839 (-407 (-948 |#1|))) "failed"))) "failed") (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))))) (-15 -1422 ((-829 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-294 (-829 (-948 |#1|))))) (-15 -1422 ((-829 (-407 (-948 |#1|))) (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))))) (-15 -1433 ((-3 (-839 (-407 (-948 |#1|))) "failed") (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))) (-1151))))
+((-1466 (((-3 (-1257 (-407 |#1|)) "failed") (-1257 |#2|) |#2|) 57 (-2174 (|has| |#1| (-363)))) (((-3 (-1257 |#1|) "failed") (-1257 |#2|) |#2|) 42 (|has| |#1| (-363)))) (-1444 (((-112) (-1257 |#2|)) 28)) (-1453 (((-3 (-1257 |#1|) "failed") (-1257 |#2|)) 33)))
+(((-635 |#1| |#2|) (-10 -7 (-15 -1444 ((-112) (-1257 |#2|))) (-15 -1453 ((-3 (-1257 |#1|) "failed") (-1257 |#2|))) (IF (|has| |#1| (-363)) (-15 -1466 ((-3 (-1257 |#1|) "failed") (-1257 |#2|) |#2|)) (-15 -1466 ((-3 (-1257 (-407 |#1|)) "failed") (-1257 |#2|) |#2|)))) (-555) (-636 |#1|)) (T -635))
+((-1466 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 *5)) (-2174 (-4 *5 (-363))) (-4 *5 (-555)) (-5 *2 (-1257 (-407 *5))) (-5 *1 (-635 *5 *4)))) (-1466 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 *5)) (-4 *5 (-363)) (-4 *5 (-555)) (-5 *2 (-1257 *5)) (-5 *1 (-635 *5 *4)))) (-1453 (*1 *2 *3) (|partial| -12 (-5 *3 (-1257 *5)) (-4 *5 (-636 *4)) (-4 *4 (-555)) (-5 *2 (-1257 *4)) (-5 *1 (-635 *4 *5)))) (-1444 (*1 *2 *3) (-12 (-5 *3 (-1257 *5)) (-4 *5 (-636 *4)) (-4 *4 (-555)) (-5 *2 (-112)) (-5 *1 (-635 *4 *5)))))
+(-10 -7 (-15 -1444 ((-112) (-1257 |#2|))) (-15 -1453 ((-3 (-1257 |#1|) "failed") (-1257 |#2|))) (IF (|has| |#1| (-363)) (-15 -1466 ((-3 (-1257 |#1|) "failed") (-1257 |#2|) |#2|)) (-15 -1466 ((-3 (-1257 (-407 |#1|)) "failed") (-1257 |#2|) |#2|))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-1476 (((-684 |#1|) (-684 $)) 36) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 35)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ (-563)) 29)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-636 |#1|) (-140) (-1045)) (T -636))
-((-2950 (*1 *2 *3) (-12 (-5 *3 (-684 *1)) (-4 *1 (-636 *4)) (-4 *4 (-1045)) (-5 *2 (-684 *4)))) (-2950 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *1)) (-5 *4 (-1257 *1)) (-4 *1 (-636 *5)) (-4 *5 (-1045)) (-5 *2 (-2 (|:| -2835 (-684 *5)) (|:| |vec| (-1257 *5)))))))
-(-13 (-1045) (-10 -8 (-15 -2950 ((-684 |t#1|) (-684 $))) (-15 -2950 ((-2 (|:| -2835 (-684 |t#1|)) (|:| |vec| (-1257 |t#1|))) (-684 $) (-1257 $)))))
+((-1476 (*1 *2 *3) (-12 (-5 *3 (-684 *1)) (-4 *1 (-636 *4)) (-4 *4 (-1045)) (-5 *2 (-684 *4)))) (-1476 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *1)) (-5 *4 (-1257 *1)) (-4 *1 (-636 *5)) (-4 *5 (-1045)) (-5 *2 (-2 (|:| -1957 (-684 *5)) (|:| |vec| (-1257 *5)))))))
+(-13 (-1045) (-10 -8 (-15 -1476 ((-684 |t#1|) (-684 $))) (-15 -1476 ((-2 (|:| -1957 (-684 |t#1|)) (|:| |vec| (-1257 |t#1|))) (-684 $) (-1257 $)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-563)) . T) ((-610 (-858)) . T) ((-643 $) . T) ((-722) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1916 ((|#2| (-640 |#1|) (-640 |#2|) |#1| (-1 |#2| |#1|)) 18) (((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|) (-1 |#2| |#1|)) 19) ((|#2| (-640 |#1|) (-640 |#2|) |#1| |#2|) 16) (((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|) |#2|) 17) ((|#2| (-640 |#1|) (-640 |#2|) |#1|) 10) (((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|)) 12)))
-(((-637 |#1| |#2|) (-10 -7 (-15 -1916 ((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|))) (-15 -1916 (|#2| (-640 |#1|) (-640 |#2|) |#1|)) (-15 -1916 ((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|) |#2|)) (-15 -1916 (|#2| (-640 |#1|) (-640 |#2|) |#1| |#2|)) (-15 -1916 ((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|) (-1 |#2| |#1|))) (-15 -1916 (|#2| (-640 |#1|) (-640 |#2|) |#1| (-1 |#2| |#1|)))) (-1093) (-1208)) (T -637))
-((-1916 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-640 *5)) (-5 *4 (-640 *2)) (-5 *6 (-1 *2 *5)) (-4 *5 (-1093)) (-4 *2 (-1208)) (-5 *1 (-637 *5 *2)))) (-1916 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-640 *5)) (-5 *4 (-640 *6)) (-4 *5 (-1093)) (-4 *6 (-1208)) (-5 *1 (-637 *5 *6)))) (-1916 (*1 *2 *3 *4 *5 *2) (-12 (-5 *3 (-640 *5)) (-5 *4 (-640 *2)) (-4 *5 (-1093)) (-4 *2 (-1208)) (-5 *1 (-637 *5 *2)))) (-1916 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 *6)) (-5 *4 (-640 *5)) (-4 *6 (-1093)) (-4 *5 (-1208)) (-5 *2 (-1 *5 *6)) (-5 *1 (-637 *6 *5)))) (-1916 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 *5)) (-5 *4 (-640 *2)) (-4 *5 (-1093)) (-4 *2 (-1208)) (-5 *1 (-637 *5 *2)))) (-1916 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *5)) (-5 *4 (-640 *6)) (-4 *5 (-1093)) (-4 *6 (-1208)) (-5 *2 (-1 *6 *5)) (-5 *1 (-637 *5 *6)))))
-(-10 -7 (-15 -1916 ((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|))) (-15 -1916 (|#2| (-640 |#1|) (-640 |#2|) |#1|)) (-15 -1916 ((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|) |#2|)) (-15 -1916 (|#2| (-640 |#1|) (-640 |#2|) |#1| |#2|)) (-15 -1916 ((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|) (-1 |#2| |#1|))) (-15 -1916 (|#2| (-640 |#1|) (-640 |#2|) |#1| (-1 |#2| |#1|))))
-((-1567 (((-640 |#2|) (-1 |#2| |#1| |#2|) (-640 |#1|) |#2|) 16)) (-2444 ((|#2| (-1 |#2| |#1| |#2|) (-640 |#1|) |#2|) 18)) (-2240 (((-640 |#2|) (-1 |#2| |#1|) (-640 |#1|)) 13)))
-(((-638 |#1| |#2|) (-10 -7 (-15 -1567 ((-640 |#2|) (-1 |#2| |#1| |#2|) (-640 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-640 |#1|) |#2|)) (-15 -2240 ((-640 |#2|) (-1 |#2| |#1|) (-640 |#1|)))) (-1208) (-1208)) (T -638))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-640 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-640 *6)) (-5 *1 (-638 *5 *6)))) (-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-640 *5)) (-4 *5 (-1208)) (-4 *2 (-1208)) (-5 *1 (-638 *5 *2)))) (-1567 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-640 *6)) (-4 *6 (-1208)) (-4 *5 (-1208)) (-5 *2 (-640 *5)) (-5 *1 (-638 *6 *5)))))
-(-10 -7 (-15 -1567 ((-640 |#2|) (-1 |#2| |#1| |#2|) (-640 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-640 |#1|) |#2|)) (-15 -2240 ((-640 |#2|) (-1 |#2| |#1|) (-640 |#1|))))
-((-2240 (((-640 |#3|) (-1 |#3| |#1| |#2|) (-640 |#1|) (-640 |#2|)) 13)))
-(((-639 |#1| |#2| |#3|) (-10 -7 (-15 -2240 ((-640 |#3|) (-1 |#3| |#1| |#2|) (-640 |#1|) (-640 |#2|)))) (-1208) (-1208) (-1208)) (T -639))
-((-2240 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-640 *6)) (-5 *5 (-640 *7)) (-4 *6 (-1208)) (-4 *7 (-1208)) (-4 *8 (-1208)) (-5 *2 (-640 *8)) (-5 *1 (-639 *6 *7 *8)))))
-(-10 -7 (-15 -2240 ((-640 |#3|) (-1 |#3| |#1| |#2|) (-640 |#1|) (-640 |#2|))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2619 ((|#1| $) NIL)) (-3442 ((|#1| $) NIL)) (-4302 (($ $) NIL)) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-1624 (($ $ (-563)) NIL (|has| $ (-6 -4408)))) (-3523 (((-112) $) NIL (|has| |#1| (-846))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-2770 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-846)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-1642 (($ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-2936 ((|#1| $ |#1|) NIL (|has| $ (-6 -4408)))) (-3692 (($ $ $) NIL (|has| $ (-6 -4408)))) (-3889 ((|#1| $ |#1|) NIL (|has| $ (-6 -4408)))) (-1543 ((|#1| $ |#1|) NIL (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4408))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4408))) (($ $ "rest" $) NIL (|has| $ (-6 -4408))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4408))) ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) NIL (|has| $ (-6 -4408)))) (-3712 (($ $ $) 31 (|has| |#1| (-1093)))) (-3696 (($ $ $) 33 (|has| |#1| (-1093)))) (-3682 (($ $ $) 36 (|has| |#1| (-1093)))) (-2812 (($ (-1 (-112) |#1|) $) NIL)) (-2256 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-3431 ((|#1| $) NIL)) (-4239 (($) NIL T CONST)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-3792 (($ $) NIL) (($ $ (-767)) NIL)) (-4005 (($ $) NIL (|has| |#1| (-1093)))) (-3813 (($ $) 30 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2705 (($ |#1| $) NIL (|has| |#1| (-1093))) (($ (-1 (-112) |#1|) $) NIL)) (-1459 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-4355 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) NIL)) (-2018 (((-112) $) NIL)) (-4368 (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093))) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) (-1 (-112) |#1|) $) NIL)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-2160 (((-112) $) 9)) (-2071 (((-640 $) $) NIL)) (-1469 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1370 (($) 7)) (-1566 (($ (-767) |#1|) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) NIL (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-2878 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3164 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 32 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3651 (($ |#1|) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-2512 (((-640 |#1|) $) NIL)) (-2194 (((-112) $) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1481 ((|#1| $) NIL) (($ $ (-767)) NIL)) (-1812 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-3396 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3781 ((|#1| $) NIL) (($ $ (-767)) NIL)) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2358 (($ $ |#1|) NIL (|has| $ (-6 -4408)))) (-2833 (((-112) $) NIL)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1224 (-563))) NIL) ((|#1| $ (-563)) 35) ((|#1| $ (-563) |#1|) NIL)) (-4071 (((-563) $ $) NIL)) (-1314 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-2963 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-1434 (((-112) $) NIL)) (-2749 (($ $) NIL)) (-1322 (($ $) NIL (|has| $ (-6 -4408)))) (-1950 (((-767) $) NIL)) (-3752 (($ $) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3076 (($ $ $ (-563)) NIL (|has| $ (-6 -4408)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) 43 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) NIL)) (-4063 (($ |#1| $) 10)) (-3245 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2853 (($ $ $) 29) (($ |#1| $) NIL) (($ (-640 $)) NIL) (($ $ |#1|) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) NIL)) (-2962 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3536 (($ $ $) 11)) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-3741 (((-1151) $) 25 (|has| |#1| (-824))) (((-1151) $ (-112)) 26 (|has| |#1| (-824))) (((-1262) (-818) $) 27 (|has| |#1| (-824))) (((-1262) (-818) $ (-112)) 28 (|has| |#1| (-824)))) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-640 |#1|) (-13 (-661 |#1|) (-10 -8 (-15 -1370 ($)) (-15 -2160 ((-112) $)) (-15 -4063 ($ |#1| $)) (-15 -3536 ($ $ $)) (IF (|has| |#1| (-1093)) (PROGN (-15 -3712 ($ $ $)) (-15 -3696 ($ $ $)) (-15 -3682 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-824)) (-6 (-824)) |%noBranch|))) (-1208)) (T -640))
-((-1370 (*1 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1208)))) (-2160 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-640 *3)) (-4 *3 (-1208)))) (-4063 (*1 *1 *2 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1208)))) (-3536 (*1 *1 *1 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1208)))) (-3712 (*1 *1 *1 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1093)) (-4 *2 (-1208)))) (-3696 (*1 *1 *1 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1093)) (-4 *2 (-1208)))) (-3682 (*1 *1 *1 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1093)) (-4 *2 (-1208)))))
-(-13 (-661 |#1|) (-10 -8 (-15 -1370 ($)) (-15 -2160 ((-112) $)) (-15 -4063 ($ |#1| $)) (-15 -3536 ($ $ $)) (IF (|has| |#1| (-1093)) (PROGN (-15 -3712 ($ $ $)) (-15 -3696 ($ $ $)) (-15 -3682 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-824)) (-6 (-824)) |%noBranch|)))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 11) (($ (-1174)) NIL) (((-1174) $) NIL) ((|#1| $) 8)) (-1718 (((-112) $ $) NIL)))
+((-1915 ((|#2| (-640 |#1|) (-640 |#2|) |#1| (-1 |#2| |#1|)) 18) (((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|) (-1 |#2| |#1|)) 19) ((|#2| (-640 |#1|) (-640 |#2|) |#1| |#2|) 16) (((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|) |#2|) 17) ((|#2| (-640 |#1|) (-640 |#2|) |#1|) 10) (((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|)) 12)))
+(((-637 |#1| |#2|) (-10 -7 (-15 -1915 ((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|))) (-15 -1915 (|#2| (-640 |#1|) (-640 |#2|) |#1|)) (-15 -1915 ((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|) |#2|)) (-15 -1915 (|#2| (-640 |#1|) (-640 |#2|) |#1| |#2|)) (-15 -1915 ((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|) (-1 |#2| |#1|))) (-15 -1915 (|#2| (-640 |#1|) (-640 |#2|) |#1| (-1 |#2| |#1|)))) (-1093) (-1208)) (T -637))
+((-1915 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-640 *5)) (-5 *4 (-640 *2)) (-5 *6 (-1 *2 *5)) (-4 *5 (-1093)) (-4 *2 (-1208)) (-5 *1 (-637 *5 *2)))) (-1915 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-640 *5)) (-5 *4 (-640 *6)) (-4 *5 (-1093)) (-4 *6 (-1208)) (-5 *1 (-637 *5 *6)))) (-1915 (*1 *2 *3 *4 *5 *2) (-12 (-5 *3 (-640 *5)) (-5 *4 (-640 *2)) (-4 *5 (-1093)) (-4 *2 (-1208)) (-5 *1 (-637 *5 *2)))) (-1915 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 *6)) (-5 *4 (-640 *5)) (-4 *6 (-1093)) (-4 *5 (-1208)) (-5 *2 (-1 *5 *6)) (-5 *1 (-637 *6 *5)))) (-1915 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 *5)) (-5 *4 (-640 *2)) (-4 *5 (-1093)) (-4 *2 (-1208)) (-5 *1 (-637 *5 *2)))) (-1915 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *5)) (-5 *4 (-640 *6)) (-4 *5 (-1093)) (-4 *6 (-1208)) (-5 *2 (-1 *6 *5)) (-5 *1 (-637 *5 *6)))))
+(-10 -7 (-15 -1915 ((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|))) (-15 -1915 (|#2| (-640 |#1|) (-640 |#2|) |#1|)) (-15 -1915 ((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|) |#2|)) (-15 -1915 (|#2| (-640 |#1|) (-640 |#2|) |#1| |#2|)) (-15 -1915 ((-1 |#2| |#1|) (-640 |#1|) (-640 |#2|) (-1 |#2| |#1|))) (-15 -1915 (|#2| (-640 |#1|) (-640 |#2|) |#1| (-1 |#2| |#1|))))
+((-4132 (((-640 |#2|) (-1 |#2| |#1| |#2|) (-640 |#1|) |#2|) 16)) (-2444 ((|#2| (-1 |#2| |#1| |#2|) (-640 |#1|) |#2|) 18)) (-2238 (((-640 |#2|) (-1 |#2| |#1|) (-640 |#1|)) 13)))
+(((-638 |#1| |#2|) (-10 -7 (-15 -4132 ((-640 |#2|) (-1 |#2| |#1| |#2|) (-640 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-640 |#1|) |#2|)) (-15 -2238 ((-640 |#2|) (-1 |#2| |#1|) (-640 |#1|)))) (-1208) (-1208)) (T -638))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-640 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-640 *6)) (-5 *1 (-638 *5 *6)))) (-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-640 *5)) (-4 *5 (-1208)) (-4 *2 (-1208)) (-5 *1 (-638 *5 *2)))) (-4132 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-640 *6)) (-4 *6 (-1208)) (-4 *5 (-1208)) (-5 *2 (-640 *5)) (-5 *1 (-638 *6 *5)))))
+(-10 -7 (-15 -4132 ((-640 |#2|) (-1 |#2| |#1| |#2|) (-640 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-640 |#1|) |#2|)) (-15 -2238 ((-640 |#2|) (-1 |#2| |#1|) (-640 |#1|))))
+((-2238 (((-640 |#3|) (-1 |#3| |#1| |#2|) (-640 |#1|) (-640 |#2|)) 13)))
+(((-639 |#1| |#2| |#3|) (-10 -7 (-15 -2238 ((-640 |#3|) (-1 |#3| |#1| |#2|) (-640 |#1|) (-640 |#2|)))) (-1208) (-1208) (-1208)) (T -639))
+((-2238 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-640 *6)) (-5 *5 (-640 *7)) (-4 *6 (-1208)) (-4 *7 (-1208)) (-4 *8 (-1208)) (-5 *2 (-640 *8)) (-5 *1 (-639 *6 *7 *8)))))
+(-10 -7 (-15 -2238 ((-640 |#3|) (-1 |#3| |#1| |#2|) (-640 |#1|) (-640 |#2|))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2618 ((|#1| $) NIL)) (-3446 ((|#1| $) NIL)) (-4303 (($ $) NIL)) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-1887 (($ $ (-563)) NIL (|has| $ (-6 -4409)))) (-4073 (((-112) $) NIL (|has| |#1| (-846))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-4052 (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| |#1| (-846)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-1640 (($ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-2336 ((|#1| $ |#1|) NIL (|has| $ (-6 -4409)))) (-1909 (($ $ $) NIL (|has| $ (-6 -4409)))) (-1898 ((|#1| $ |#1|) NIL (|has| $ (-6 -4409)))) (-1919 ((|#1| $ |#1|) NIL (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4409))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4409))) (($ $ "rest" $) NIL (|has| $ (-6 -4409))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4409))) ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) NIL (|has| $ (-6 -4409)))) (-3711 (($ $ $) 31 (|has| |#1| (-1093)))) (-3697 (($ $ $) 33 (|has| |#1| (-1093)))) (-3684 (($ $ $) 36 (|has| |#1| (-1093)))) (-3678 (($ (-1 (-112) |#1|) $) NIL)) (-2255 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-3435 ((|#1| $) NIL)) (-2569 (($) NIL T CONST)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-3793 (($ $) NIL) (($ $ (-767)) NIL)) (-4194 (($ $) NIL (|has| |#1| (-1093)))) (-3814 (($ $) 30 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1691 (($ |#1| $) NIL (|has| |#1| (-1093))) (($ (-1 (-112) |#1|) $) NIL)) (-1459 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4356 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) NIL)) (-1966 (((-112) $) NIL)) (-4369 (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093))) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) (-1 (-112) |#1|) $) NIL)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2162 (((-112) $) 9)) (-2390 (((-640 $) $) NIL)) (-2358 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1370 (($) 7)) (-1565 (($ (-767) |#1|) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) NIL (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-4265 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-4300 (($ $ $) NIL (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 32 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3652 (($ |#1|) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-2511 (((-640 |#1|) $) NIL)) (-1298 (((-112) $) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1481 ((|#1| $) NIL) (($ $ (-767)) NIL)) (-3867 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-3399 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3782 ((|#1| $) NIL) (($ $ (-767)) NIL)) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2221 (($ $ |#1|) NIL (|has| $ (-6 -4409)))) (-1976 (((-112) $) NIL)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1224 (-563))) NIL) ((|#1| $ (-563)) 35) ((|#1| $ (-563) |#1|) NIL)) (-2379 (((-563) $ $) NIL)) (-3690 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-2967 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-2889 (((-112) $) NIL)) (-1951 (($ $) NIL)) (-1930 (($ $) NIL (|has| $ (-6 -4409)))) (-1961 (((-767) $) NIL)) (-1970 (($ $) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4062 (($ $ $ (-563)) NIL (|has| $ (-6 -4409)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) 43 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) NIL)) (-4065 (($ |#1| $) 10)) (-1941 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2857 (($ $ $) 29) (($ |#1| $) NIL) (($ (-640 $)) NIL) (($ $ |#1|) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) NIL)) (-2367 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3540 (($ $ $) 11)) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2742 (((-1151) $) 25 (|has| |#1| (-824))) (((-1151) $ (-112)) 26 (|has| |#1| (-824))) (((-1262) (-818) $) 27 (|has| |#1| (-824))) (((-1262) (-818) $ (-112)) 28 (|has| |#1| (-824)))) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-640 |#1|) (-13 (-661 |#1|) (-10 -8 (-15 -1370 ($)) (-15 -2162 ((-112) $)) (-15 -4065 ($ |#1| $)) (-15 -3540 ($ $ $)) (IF (|has| |#1| (-1093)) (PROGN (-15 -3711 ($ $ $)) (-15 -3697 ($ $ $)) (-15 -3684 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-824)) (-6 (-824)) |%noBranch|))) (-1208)) (T -640))
+((-1370 (*1 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1208)))) (-2162 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-640 *3)) (-4 *3 (-1208)))) (-4065 (*1 *1 *2 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1208)))) (-3540 (*1 *1 *1 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1208)))) (-3711 (*1 *1 *1 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1093)) (-4 *2 (-1208)))) (-3697 (*1 *1 *1 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1093)) (-4 *2 (-1208)))) (-3684 (*1 *1 *1 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1093)) (-4 *2 (-1208)))))
+(-13 (-661 |#1|) (-10 -8 (-15 -1370 ($)) (-15 -2162 ((-112) $)) (-15 -4065 ($ |#1| $)) (-15 -3540 ($ $ $)) (IF (|has| |#1| (-1093)) (PROGN (-15 -3711 ($ $ $)) (-15 -3697 ($ $ $)) (-15 -3684 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-824)) (-6 (-824)) |%noBranch|)))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 11) (($ (-1174)) NIL) (((-1174) $) NIL) ((|#1| $) 8)) (-1718 (((-112) $ $) NIL)))
(((-641 |#1|) (-13 (-1076) (-610 |#1|)) (-1093)) (T -641))
NIL
(-13 (-1076) (-610 |#1|))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3802 (($ |#1| |#1| $) 41)) (-2759 (((-112) $ (-767)) NIL)) (-2812 (($ (-1 (-112) |#1|) $) 52 (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-4005 (($ $) 43)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2705 (($ |#1| $) 49 (|has| $ (-6 -4407))) (($ (-1 (-112) |#1|) $) 51 (|has| $ (-6 -4407)))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4407)))) (-2659 (((-640 |#1|) $) 9 (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-4345 (($ (-1 |#1| |#1|) $) 37 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2964 ((|#1| $) 44)) (-1812 (($ |#1| $) 26) (($ |#1| $ (-767)) 40)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3755 ((|#1| $) 46)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) 21)) (-3135 (($) 25)) (-3438 (((-112) $) 47)) (-2757 (((-640 (-2 (|:| -2557 |#1|) (|:| -1709 (-767)))) $) 56)) (-3890 (($) 23) (($ (-640 |#1|)) 18)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) 53 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) 19)) (-2220 (((-536) $) 32 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) NIL)) (-1693 (((-858) $) 14 (|has| |#1| (-610 (-858))))) (-2233 (($ (-640 |#1|)) 22)) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 58 (|has| |#1| (-1093)))) (-3608 (((-767) $) 16 (|has| $ (-6 -4407)))))
-(((-642 |#1|) (-13 (-690 |#1|) (-10 -8 (-6 -4407) (-15 -3438 ((-112) $)) (-15 -3802 ($ |#1| |#1| $)))) (-1093)) (T -642))
-((-3438 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-642 *3)) (-4 *3 (-1093)))) (-3802 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-642 *2)) (-4 *2 (-1093)))))
-(-13 (-690 |#1|) (-10 -8 (-6 -4407) (-15 -3438 ((-112) $)) (-15 -3802 ($ |#1| |#1| $))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#1| $) 23)))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3802 (($ |#1| |#1| $) 41)) (-3001 (((-112) $ (-767)) NIL)) (-3678 (($ (-1 (-112) |#1|) $) 52 (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-4194 (($ $) 43)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1691 (($ |#1| $) 49 (|has| $ (-6 -4408))) (($ (-1 (-112) |#1|) $) 51 (|has| $ (-6 -4408)))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2658 (((-640 |#1|) $) 9 (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4347 (($ (-1 |#1| |#1|) $) 37 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2627 ((|#1| $) 44)) (-3867 (($ |#1| $) 26) (($ |#1| $ (-767)) 40)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2808 ((|#1| $) 46)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) 21)) (-3445 (($) 25)) (-1487 (((-112) $) 47)) (-4182 (((-640 (-2 (|:| -2556 |#1|) (|:| -1708 (-767)))) $) 56)) (-3863 (($) 23) (($ (-640 |#1|)) 18)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) 53 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) 19)) (-2219 (((-536) $) 32 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) NIL)) (-1692 (((-858) $) 14 (|has| |#1| (-610 (-858))))) (-2820 (($ (-640 |#1|)) 22)) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 58 (|has| |#1| (-1093)))) (-3610 (((-767) $) 16 (|has| $ (-6 -4408)))))
+(((-642 |#1|) (-13 (-690 |#1|) (-10 -8 (-6 -4408) (-15 -1487 ((-112) $)) (-15 -3802 ($ |#1| |#1| $)))) (-1093)) (T -642))
+((-1487 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-642 *3)) (-4 *3 (-1093)))) (-3802 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-642 *2)) (-4 *2 (-1093)))))
+(-13 (-690 |#1|) (-10 -8 (-6 -4408) (-15 -1487 ((-112) $)) (-15 -3802 ($ |#1| |#1| $))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#1| $) 23)))
(((-643 |#1|) (-140) (-1052)) (T -643))
((* (*1 *1 *2 *1) (-12 (-4 *1 (-643 *2)) (-4 *2 (-1052)))))
(-13 (-21) (-10 -8 (-15 * ($ |t#1| $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3749 (((-767) $) 15)) (-3979 (($ $ |#1|) 56)) (-2907 (($ $) 32)) (-4382 (($ $) 31)) (-2131 (((-3 |#1| "failed") $) 48)) (-2058 ((|#1| $) NIL)) (-4139 (($ |#1| |#2| $) 62) (($ $ $) 63)) (-2349 (((-858) $ (-1 (-858) (-858) (-858)) (-1 (-858) (-858) (-858)) (-563)) 46)) (-2768 ((|#1| $ (-563)) 30)) (-4208 ((|#2| $ (-563)) 29)) (-1633 (($ (-1 |#1| |#1|) $) 34)) (-2163 (($ (-1 |#2| |#2|) $) 38)) (-3270 (($) 10)) (-2795 (($ |#1| |#2|) 22)) (-3419 (($ (-640 (-2 (|:| |gen| |#1|) (|:| -3368 |#2|)))) 23)) (-1292 (((-640 (-2 (|:| |gen| |#1|) (|:| -3368 |#2|))) $) 13)) (-1978 (($ |#1| $) 57)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1808 (((-112) $ $) 60)) (-1693 (((-858) $) 19) (($ |#1|) 16)) (-1718 (((-112) $ $) 25)))
-(((-644 |#1| |#2| |#3|) (-13 (-1093) (-1034 |#1|) (-10 -8 (-15 -2349 ((-858) $ (-1 (-858) (-858) (-858)) (-1 (-858) (-858) (-858)) (-563))) (-15 -1292 ((-640 (-2 (|:| |gen| |#1|) (|:| -3368 |#2|))) $)) (-15 -2795 ($ |#1| |#2|)) (-15 -3419 ($ (-640 (-2 (|:| |gen| |#1|) (|:| -3368 |#2|))))) (-15 -4208 (|#2| $ (-563))) (-15 -2768 (|#1| $ (-563))) (-15 -4382 ($ $)) (-15 -2907 ($ $)) (-15 -3749 ((-767) $)) (-15 -3270 ($)) (-15 -3979 ($ $ |#1|)) (-15 -1978 ($ |#1| $)) (-15 -4139 ($ |#1| |#2| $)) (-15 -4139 ($ $ $)) (-15 -1808 ((-112) $ $)) (-15 -2163 ($ (-1 |#2| |#2|) $)) (-15 -1633 ($ (-1 |#1| |#1|) $)))) (-1093) (-23) |#2|) (T -644))
-((-2349 (*1 *2 *1 *3 *3 *4) (-12 (-5 *3 (-1 (-858) (-858) (-858))) (-5 *4 (-563)) (-5 *2 (-858)) (-5 *1 (-644 *5 *6 *7)) (-4 *5 (-1093)) (-4 *6 (-23)) (-14 *7 *6))) (-1292 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3368 *4)))) (-5 *1 (-644 *3 *4 *5)) (-4 *3 (-1093)) (-4 *4 (-23)) (-14 *5 *4))) (-2795 (*1 *1 *2 *3) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-3419 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3368 *4)))) (-4 *3 (-1093)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-644 *3 *4 *5)))) (-4208 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *2 (-23)) (-5 *1 (-644 *4 *2 *5)) (-4 *4 (-1093)) (-14 *5 *2))) (-2768 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *2 (-1093)) (-5 *1 (-644 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-4382 (*1 *1 *1) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-2907 (*1 *1 *1) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-3749 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-644 *3 *4 *5)) (-4 *3 (-1093)) (-4 *4 (-23)) (-14 *5 *4))) (-3270 (*1 *1) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-3979 (*1 *1 *1 *2) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-1978 (*1 *1 *2 *1) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-4139 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-4139 (*1 *1 *1 *1) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-1808 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-644 *3 *4 *5)) (-4 *3 (-1093)) (-4 *4 (-23)) (-14 *5 *4))) (-2163 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-644 *3 *4 *5)) (-4 *3 (-1093)))) (-1633 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-644 *3 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))))
-(-13 (-1093) (-1034 |#1|) (-10 -8 (-15 -2349 ((-858) $ (-1 (-858) (-858) (-858)) (-1 (-858) (-858) (-858)) (-563))) (-15 -1292 ((-640 (-2 (|:| |gen| |#1|) (|:| -3368 |#2|))) $)) (-15 -2795 ($ |#1| |#2|)) (-15 -3419 ($ (-640 (-2 (|:| |gen| |#1|) (|:| -3368 |#2|))))) (-15 -4208 (|#2| $ (-563))) (-15 -2768 (|#1| $ (-563))) (-15 -4382 ($ $)) (-15 -2907 ($ $)) (-15 -3749 ((-767) $)) (-15 -3270 ($)) (-15 -3979 ($ $ |#1|)) (-15 -1978 ($ |#1| $)) (-15 -4139 ($ |#1| |#2| $)) (-15 -4139 ($ $ $)) (-15 -1808 ((-112) $ $)) (-15 -2163 ($ (-1 |#2| |#2|) $)) (-15 -1633 ($ (-1 |#1| |#1|) $))))
-((-3860 (((-563) $) 23)) (-3396 (($ |#2| $ (-563)) 21) (($ $ $ (-563)) NIL)) (-4318 (((-640 (-563)) $) 12)) (-3192 (((-112) (-563) $) 14)) (-2853 (($ $ |#2|) 18) (($ |#2| $) 19) (($ $ $) NIL) (($ (-640 $)) NIL)))
-(((-645 |#1| |#2|) (-10 -8 (-15 -3396 (|#1| |#1| |#1| (-563))) (-15 -3396 (|#1| |#2| |#1| (-563))) (-15 -2853 (|#1| (-640 |#1|))) (-15 -2853 (|#1| |#1| |#1|)) (-15 -2853 (|#1| |#2| |#1|)) (-15 -2853 (|#1| |#1| |#2|)) (-15 -3860 ((-563) |#1|)) (-15 -4318 ((-640 (-563)) |#1|)) (-15 -3192 ((-112) (-563) |#1|))) (-646 |#2|) (-1208)) (T -645))
-NIL
-(-10 -8 (-15 -3396 (|#1| |#1| |#1| (-563))) (-15 -3396 (|#1| |#2| |#1| (-563))) (-15 -2853 (|#1| (-640 |#1|))) (-15 -2853 (|#1| |#1| |#1|)) (-15 -2853 (|#1| |#2| |#1|)) (-15 -2853 (|#1| |#1| |#2|)) (-15 -3860 ((-563) |#1|)) (-15 -4318 ((-640 (-563)) |#1|)) (-15 -3192 ((-112) (-563) |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-4378 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) 8)) (-1849 ((|#1| $ (-563) |#1|) 52 (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) 58 (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4407)))) (-4239 (($) 7 T CONST)) (-3813 (($ $) 78 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ |#1| $) 77 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4407)))) (-4355 ((|#1| $ (-563) |#1|) 53 (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) 51)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-1566 (($ (-767) |#1|) 69)) (-2581 (((-112) $ (-767)) 9)) (-2411 (((-563) $) 43 (|has| (-563) (-846)))) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-3860 (((-563) $) 44 (|has| (-563) (-846)))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-3396 (($ |#1| $ (-563)) 60) (($ $ $ (-563)) 59)) (-4318 (((-640 (-563)) $) 46)) (-3192 (((-112) (-563) $) 47)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3781 ((|#1| $) 42 (|has| (-563) (-846)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2358 (($ $ |#1|) 41 (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-2105 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) 48)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ (-563) |#1|) 50) ((|#1| $ (-563)) 49) (($ $ (-1224 (-563))) 63)) (-2963 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-2220 (((-536) $) 79 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 70)) (-2853 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3750 (((-767) $) 15)) (-1548 (($ $ |#1|) 56)) (-1574 (($ $) 32)) (-4383 (($ $) 31)) (-2130 (((-3 |#1| "failed") $) 48)) (-2057 ((|#1| $) NIL)) (-4140 (($ |#1| |#2| $) 62) (($ $ $) 63)) (-1307 (((-858) $ (-1 (-858) (-858) (-858)) (-1 (-858) (-858) (-858)) (-563)) 46)) (-1347 ((|#1| $ (-563)) 30)) (-1357 ((|#2| $ (-563)) 29)) (-1499 (($ (-1 |#1| |#1|) $) 34)) (-1510 (($ (-1 |#2| |#2|) $) 38)) (-1562 (($) 10)) (-1598 (($ |#1| |#2|) 22)) (-1587 (($ (-640 (-2 (|:| |gen| |#1|) (|:| -3372 |#2|)))) 23)) (-1609 (((-640 (-2 (|:| |gen| |#1|) (|:| -3372 |#2|))) $) 13)) (-1536 (($ |#1| $) 57)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1524 (((-112) $ $) 60)) (-1692 (((-858) $) 19) (($ |#1|) 16)) (-1718 (((-112) $ $) 25)))
+(((-644 |#1| |#2| |#3|) (-13 (-1093) (-1034 |#1|) (-10 -8 (-15 -1307 ((-858) $ (-1 (-858) (-858) (-858)) (-1 (-858) (-858) (-858)) (-563))) (-15 -1609 ((-640 (-2 (|:| |gen| |#1|) (|:| -3372 |#2|))) $)) (-15 -1598 ($ |#1| |#2|)) (-15 -1587 ($ (-640 (-2 (|:| |gen| |#1|) (|:| -3372 |#2|))))) (-15 -1357 (|#2| $ (-563))) (-15 -1347 (|#1| $ (-563))) (-15 -4383 ($ $)) (-15 -1574 ($ $)) (-15 -3750 ((-767) $)) (-15 -1562 ($)) (-15 -1548 ($ $ |#1|)) (-15 -1536 ($ |#1| $)) (-15 -4140 ($ |#1| |#2| $)) (-15 -4140 ($ $ $)) (-15 -1524 ((-112) $ $)) (-15 -1510 ($ (-1 |#2| |#2|) $)) (-15 -1499 ($ (-1 |#1| |#1|) $)))) (-1093) (-23) |#2|) (T -644))
+((-1307 (*1 *2 *1 *3 *3 *4) (-12 (-5 *3 (-1 (-858) (-858) (-858))) (-5 *4 (-563)) (-5 *2 (-858)) (-5 *1 (-644 *5 *6 *7)) (-4 *5 (-1093)) (-4 *6 (-23)) (-14 *7 *6))) (-1609 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3372 *4)))) (-5 *1 (-644 *3 *4 *5)) (-4 *3 (-1093)) (-4 *4 (-23)) (-14 *5 *4))) (-1598 (*1 *1 *2 *3) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-1587 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3372 *4)))) (-4 *3 (-1093)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-644 *3 *4 *5)))) (-1357 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *2 (-23)) (-5 *1 (-644 *4 *2 *5)) (-4 *4 (-1093)) (-14 *5 *2))) (-1347 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *2 (-1093)) (-5 *1 (-644 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-4383 (*1 *1 *1) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-1574 (*1 *1 *1) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-3750 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-644 *3 *4 *5)) (-4 *3 (-1093)) (-4 *4 (-23)) (-14 *5 *4))) (-1562 (*1 *1) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-1548 (*1 *1 *1 *2) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-1536 (*1 *1 *2 *1) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-4140 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-4140 (*1 *1 *1 *1) (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23)) (-14 *4 *3))) (-1524 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-644 *3 *4 *5)) (-4 *3 (-1093)) (-4 *4 (-23)) (-14 *5 *4))) (-1510 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-644 *3 *4 *5)) (-4 *3 (-1093)))) (-1499 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-644 *3 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))))
+(-13 (-1093) (-1034 |#1|) (-10 -8 (-15 -1307 ((-858) $ (-1 (-858) (-858) (-858)) (-1 (-858) (-858) (-858)) (-563))) (-15 -1609 ((-640 (-2 (|:| |gen| |#1|) (|:| -3372 |#2|))) $)) (-15 -1598 ($ |#1| |#2|)) (-15 -1587 ($ (-640 (-2 (|:| |gen| |#1|) (|:| -3372 |#2|))))) (-15 -1357 (|#2| $ (-563))) (-15 -1347 (|#1| $ (-563))) (-15 -4383 ($ $)) (-15 -1574 ($ $)) (-15 -3750 ((-767) $)) (-15 -1562 ($)) (-15 -1548 ($ $ |#1|)) (-15 -1536 ($ |#1| $)) (-15 -4140 ($ |#1| |#2| $)) (-15 -4140 ($ $ $)) (-15 -1524 ((-112) $ $)) (-15 -1510 ($ (-1 |#2| |#2|) $)) (-15 -1499 ($ (-1 |#1| |#1|) $))))
+((-2251 (((-563) $) 23)) (-3399 (($ |#2| $ (-563)) 21) (($ $ $ (-563)) NIL)) (-2272 (((-640 (-563)) $) 12)) (-2282 (((-112) (-563) $) 14)) (-2857 (($ $ |#2|) 18) (($ |#2| $) 19) (($ $ $) NIL) (($ (-640 $)) NIL)))
+(((-645 |#1| |#2|) (-10 -8 (-15 -3399 (|#1| |#1| |#1| (-563))) (-15 -3399 (|#1| |#2| |#1| (-563))) (-15 -2857 (|#1| (-640 |#1|))) (-15 -2857 (|#1| |#1| |#1|)) (-15 -2857 (|#1| |#2| |#1|)) (-15 -2857 (|#1| |#1| |#2|)) (-15 -2251 ((-563) |#1|)) (-15 -2272 ((-640 (-563)) |#1|)) (-15 -2282 ((-112) (-563) |#1|))) (-646 |#2|) (-1208)) (T -645))
+NIL
+(-10 -8 (-15 -3399 (|#1| |#1| |#1| (-563))) (-15 -3399 (|#1| |#2| |#1| (-563))) (-15 -2857 (|#1| (-640 |#1|))) (-15 -2857 (|#1| |#1| |#1|)) (-15 -2857 (|#1| |#2| |#1|)) (-15 -2857 (|#1| |#1| |#2|)) (-15 -2251 ((-563) |#1|)) (-15 -2272 ((-640 (-563)) |#1|)) (-15 -2282 ((-112) (-563) |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2208 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) 8)) (-1849 ((|#1| $ (-563) |#1|) 52 (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) 58 (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4408)))) (-2569 (($) 7 T CONST)) (-3814 (($ $) 78 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ |#1| $) 77 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4408)))) (-4356 ((|#1| $ (-563) |#1|) 53 (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) 51)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-1565 (($ (-767) |#1|) 69)) (-2514 (((-112) $ (-767)) 9)) (-2236 (((-563) $) 43 (|has| (-563) (-846)))) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-2251 (((-563) $) 44 (|has| (-563) (-846)))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-3399 (($ |#1| $ (-563)) 60) (($ $ $ (-563)) 59)) (-2272 (((-640 (-563)) $) 46)) (-2282 (((-112) (-563) $) 47)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3782 ((|#1| $) 42 (|has| (-563) (-846)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2221 (($ $ |#1|) 41 (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) 48)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ (-563) |#1|) 50) ((|#1| $ (-563)) 49) (($ $ (-1224 (-563))) 63)) (-2967 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-2219 (((-536) $) 79 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 70)) (-2857 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-646 |#1|) (-140) (-1208)) (T -646))
-((-1566 (*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-4 *1 (-646 *3)) (-4 *3 (-1208)))) (-2853 (*1 *1 *1 *2) (-12 (-4 *1 (-646 *2)) (-4 *2 (-1208)))) (-2853 (*1 *1 *2 *1) (-12 (-4 *1 (-646 *2)) (-4 *2 (-1208)))) (-2853 (*1 *1 *1 *1) (-12 (-4 *1 (-646 *2)) (-4 *2 (-1208)))) (-2853 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-646 *3)) (-4 *3 (-1208)))) (-2240 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-646 *3)) (-4 *3 (-1208)))) (-2309 (*1 *1 *1 *2) (-12 (-5 *2 (-1224 (-563))) (-4 *1 (-646 *3)) (-4 *3 (-1208)))) (-2963 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-646 *3)) (-4 *3 (-1208)))) (-2963 (*1 *1 *1 *2) (-12 (-5 *2 (-1224 (-563))) (-4 *1 (-646 *3)) (-4 *3 (-1208)))) (-3396 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-646 *2)) (-4 *2 (-1208)))) (-3396 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-646 *3)) (-4 *3 (-1208)))) (-1849 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-1224 (-563))) (|has| *1 (-6 -4408)) (-4 *1 (-646 *2)) (-4 *2 (-1208)))))
-(-13 (-601 (-563) |t#1|) (-151 |t#1|) (-10 -8 (-15 -1566 ($ (-767) |t#1|)) (-15 -2853 ($ $ |t#1|)) (-15 -2853 ($ |t#1| $)) (-15 -2853 ($ $ $)) (-15 -2853 ($ (-640 $))) (-15 -2240 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -2309 ($ $ (-1224 (-563)))) (-15 -2963 ($ $ (-563))) (-15 -2963 ($ $ (-1224 (-563)))) (-15 -3396 ($ |t#1| $ (-563))) (-15 -3396 ($ $ $ (-563))) (IF (|has| $ (-6 -4408)) (-15 -1849 (|t#1| $ (-1224 (-563)) |t#1|)) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-1793 (((-3 |#2| "failed") |#3| |#2| (-1169) |#2| (-640 |#2|)) 160) (((-3 (-2 (|:| |particular| |#2|) (|:| -4315 (-640 |#2|))) "failed") |#3| |#2| (-1169)) 44)))
-(((-647 |#1| |#2| |#3|) (-10 -7 (-15 -1793 ((-3 (-2 (|:| |particular| |#2|) (|:| -4315 (-640 |#2|))) "failed") |#3| |#2| (-1169))) (-15 -1793 ((-3 |#2| "failed") |#3| |#2| (-1169) |#2| (-640 |#2|)))) (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)) (-13 (-29 |#1|) (-1193) (-955)) (-651 |#2|)) (T -647))
-((-1793 (*1 *2 *3 *2 *4 *2 *5) (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-640 *2)) (-4 *2 (-13 (-29 *6) (-1193) (-955))) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *1 (-647 *6 *2 *3)) (-4 *3 (-651 *2)))) (-1793 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1169)) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-4 *4 (-13 (-29 *6) (-1193) (-955))) (-5 *2 (-2 (|:| |particular| *4) (|:| -4315 (-640 *4)))) (-5 *1 (-647 *6 *4 *3)) (-4 *3 (-651 *4)))))
-(-10 -7 (-15 -1793 ((-3 (-2 (|:| |particular| |#2|) (|:| -4315 (-640 |#2|))) "failed") |#3| |#2| (-1169))) (-15 -1793 ((-3 |#2| "failed") |#3| |#2| (-1169) |#2| (-640 |#2|))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1925 (($ $) NIL (|has| |#1| (-363)))) (-3849 (($ $ $) NIL (|has| |#1| (-363)))) (-2798 (($ $ (-767)) NIL (|has| |#1| (-363)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-4006 (($ $ $) NIL (|has| |#1| (-363)))) (-3737 (($ $ $) NIL (|has| |#1| (-363)))) (-1523 (($ $ $) NIL (|has| |#1| (-363)))) (-2237 (($ $ $) NIL (|has| |#1| (-363)))) (-3621 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-1599 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-1490 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2058 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1300 (($ $) NIL (|has| |#1| (-452)))) (-3827 (((-112) $) NIL)) (-2588 (($ |#1| (-767)) NIL)) (-1293 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-555)))) (-3552 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-555)))) (-2048 (((-767) $) NIL)) (-3861 (($ $ $) NIL (|has| |#1| (-363)))) (-3911 (($ $ $) NIL (|has| |#1| (-363)))) (-1909 (($ $ $) NIL (|has| |#1| (-363)))) (-1511 (($ $ $) NIL (|has| |#1| (-363)))) (-3214 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3121 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-4262 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3008 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-2309 ((|#1| $ |#1|) NIL)) (-3891 (($ $ $) NIL (|has| |#1| (-363)))) (-4167 (((-767) $) NIL)) (-1836 ((|#1| $) NIL (|has| |#1| (-452)))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) NIL)) (-1337 (((-640 |#1|) $) NIL)) (-4319 ((|#1| $ (-767)) NIL)) (-1675 (((-767)) NIL)) (-3726 ((|#1| $ |#1| |#1|) NIL)) (-3831 (($ $) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($) NIL)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-1565 (*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-4 *1 (-646 *3)) (-4 *3 (-1208)))) (-2857 (*1 *1 *1 *2) (-12 (-4 *1 (-646 *2)) (-4 *2 (-1208)))) (-2857 (*1 *1 *2 *1) (-12 (-4 *1 (-646 *2)) (-4 *2 (-1208)))) (-2857 (*1 *1 *1 *1) (-12 (-4 *1 (-646 *2)) (-4 *2 (-1208)))) (-2857 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-646 *3)) (-4 *3 (-1208)))) (-2238 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-646 *3)) (-4 *3 (-1208)))) (-2308 (*1 *1 *1 *2) (-12 (-5 *2 (-1224 (-563))) (-4 *1 (-646 *3)) (-4 *3 (-1208)))) (-2967 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-646 *3)) (-4 *3 (-1208)))) (-2967 (*1 *1 *1 *2) (-12 (-5 *2 (-1224 (-563))) (-4 *1 (-646 *3)) (-4 *3 (-1208)))) (-3399 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-646 *2)) (-4 *2 (-1208)))) (-3399 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-646 *3)) (-4 *3 (-1208)))) (-1849 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-1224 (-563))) (|has| *1 (-6 -4409)) (-4 *1 (-646 *2)) (-4 *2 (-1208)))))
+(-13 (-601 (-563) |t#1|) (-151 |t#1|) (-10 -8 (-15 -1565 ($ (-767) |t#1|)) (-15 -2857 ($ $ |t#1|)) (-15 -2857 ($ |t#1| $)) (-15 -2857 ($ $ $)) (-15 -2857 ($ (-640 $))) (-15 -2238 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -2308 ($ $ (-1224 (-563)))) (-15 -2967 ($ $ (-563))) (-15 -2967 ($ $ (-1224 (-563)))) (-15 -3399 ($ |t#1| $ (-563))) (-15 -3399 ($ $ $ (-563))) (IF (|has| $ (-6 -4409)) (-15 -1849 (|t#1| $ (-1224 (-563)) |t#1|)) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-3510 (((-3 |#2| "failed") |#3| |#2| (-1169) |#2| (-640 |#2|)) 160) (((-3 (-2 (|:| |particular| |#2|) (|:| -4013 (-640 |#2|))) "failed") |#3| |#2| (-1169)) 44)))
+(((-647 |#1| |#2| |#3|) (-10 -7 (-15 -3510 ((-3 (-2 (|:| |particular| |#2|) (|:| -4013 (-640 |#2|))) "failed") |#3| |#2| (-1169))) (-15 -3510 ((-3 |#2| "failed") |#3| |#2| (-1169) |#2| (-640 |#2|)))) (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)) (-13 (-29 |#1|) (-1193) (-955)) (-651 |#2|)) (T -647))
+((-3510 (*1 *2 *3 *2 *4 *2 *5) (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-640 *2)) (-4 *2 (-13 (-29 *6) (-1193) (-955))) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *1 (-647 *6 *2 *3)) (-4 *3 (-651 *2)))) (-3510 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1169)) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-4 *4 (-13 (-29 *6) (-1193) (-955))) (-5 *2 (-2 (|:| |particular| *4) (|:| -4013 (-640 *4)))) (-5 *1 (-647 *6 *4 *3)) (-4 *3 (-651 *4)))))
+(-10 -7 (-15 -3510 ((-3 (-2 (|:| |particular| |#2|) (|:| -4013 (-640 |#2|))) "failed") |#3| |#2| (-1169))) (-15 -3510 ((-3 |#2| "failed") |#3| |#2| (-1169) |#2| (-640 |#2|))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-1620 (($ $) NIL (|has| |#1| (-363)))) (-1645 (($ $ $) NIL (|has| |#1| (-363)))) (-1657 (($ $ (-767)) NIL (|has| |#1| (-363)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-3076 (($ $ $) NIL (|has| |#1| (-363)))) (-3086 (($ $ $) NIL (|has| |#1| (-363)))) (-3098 (($ $ $) NIL (|has| |#1| (-363)))) (-3058 (($ $ $) NIL (|has| |#1| (-363)))) (-3047 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-3067 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-3186 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2057 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-4151 (($ $) NIL (|has| |#1| (-452)))) (-3401 (((-112) $) NIL)) (-2587 (($ |#1| (-767)) NIL)) (-3167 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-555)))) (-3160 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-555)))) (-3908 (((-767) $) NIL)) (-3142 (($ $ $) NIL (|has| |#1| (-363)))) (-3151 (($ $ $) NIL (|has| |#1| (-363)))) (-3036 (($ $ $) NIL (|has| |#1| (-363)))) (-3121 (($ $ $) NIL (|has| |#1| (-363)))) (-3110 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-3132 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-3177 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3012 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-2308 ((|#1| $ |#1|) NIL)) (-1668 (($ $ $) NIL (|has| |#1| (-363)))) (-3871 (((-767) $) NIL)) (-3885 ((|#1| $) NIL (|has| |#1| (-452)))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) NIL)) (-3955 (((-640 |#1|) $) NIL)) (-3244 ((|#1| $ (-767)) NIL)) (-3914 (((-767)) NIL)) (-3727 ((|#1| $ |#1| |#1|) NIL)) (-2926 (($ $) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($) NIL)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-648 |#1|) (-651 |#1|) (-233)) (T -648))
NIL
(-651 |#1|)
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1925 (($ $) NIL (|has| |#1| (-363)))) (-3849 (($ $ $) NIL (|has| |#1| (-363)))) (-2798 (($ $ (-767)) NIL (|has| |#1| (-363)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-4006 (($ $ $) NIL (|has| |#1| (-363)))) (-3737 (($ $ $) NIL (|has| |#1| (-363)))) (-1523 (($ $ $) NIL (|has| |#1| (-363)))) (-2237 (($ $ $) NIL (|has| |#1| (-363)))) (-3621 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-1599 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-1490 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2058 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1300 (($ $) NIL (|has| |#1| (-452)))) (-3827 (((-112) $) NIL)) (-2588 (($ |#1| (-767)) NIL)) (-1293 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-555)))) (-3552 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-555)))) (-2048 (((-767) $) NIL)) (-3861 (($ $ $) NIL (|has| |#1| (-363)))) (-3911 (($ $ $) NIL (|has| |#1| (-363)))) (-1909 (($ $ $) NIL (|has| |#1| (-363)))) (-1511 (($ $ $) NIL (|has| |#1| (-363)))) (-3214 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3121 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-4262 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3008 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-2309 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-3891 (($ $ $) NIL (|has| |#1| (-363)))) (-4167 (((-767) $) NIL)) (-1836 ((|#1| $) NIL (|has| |#1| (-452)))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) NIL)) (-1337 (((-640 |#1|) $) NIL)) (-4319 ((|#1| $ (-767)) NIL)) (-1675 (((-767)) NIL)) (-3726 ((|#1| $ |#1| |#1|) NIL)) (-3831 (($ $) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($) NIL)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-649 |#1| |#2|) (-13 (-651 |#1|) (-286 |#2| |#2|)) (-233) (-13 (-643 |#1|) (-10 -8 (-15 -4202 ($ $))))) (T -649))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-1620 (($ $) NIL (|has| |#1| (-363)))) (-1645 (($ $ $) NIL (|has| |#1| (-363)))) (-1657 (($ $ (-767)) NIL (|has| |#1| (-363)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-3076 (($ $ $) NIL (|has| |#1| (-363)))) (-3086 (($ $ $) NIL (|has| |#1| (-363)))) (-3098 (($ $ $) NIL (|has| |#1| (-363)))) (-3058 (($ $ $) NIL (|has| |#1| (-363)))) (-3047 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-3067 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-3186 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2057 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-4151 (($ $) NIL (|has| |#1| (-452)))) (-3401 (((-112) $) NIL)) (-2587 (($ |#1| (-767)) NIL)) (-3167 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-555)))) (-3160 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-555)))) (-3908 (((-767) $) NIL)) (-3142 (($ $ $) NIL (|has| |#1| (-363)))) (-3151 (($ $ $) NIL (|has| |#1| (-363)))) (-3036 (($ $ $) NIL (|has| |#1| (-363)))) (-3121 (($ $ $) NIL (|has| |#1| (-363)))) (-3110 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-3132 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-3177 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3012 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-2308 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-1668 (($ $ $) NIL (|has| |#1| (-363)))) (-3871 (((-767) $) NIL)) (-3885 ((|#1| $) NIL (|has| |#1| (-452)))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) NIL)) (-3955 (((-640 |#1|) $) NIL)) (-3244 ((|#1| $ (-767)) NIL)) (-3914 (((-767)) NIL)) (-3727 ((|#1| $ |#1| |#1|) NIL)) (-2926 (($ $) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($) NIL)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-649 |#1| |#2|) (-13 (-651 |#1|) (-286 |#2| |#2|)) (-233) (-13 (-643 |#1|) (-10 -8 (-15 -4203 ($ $))))) (T -649))
NIL
(-13 (-651 |#1|) (-286 |#2| |#2|))
-((-1925 (($ $) 26)) (-3831 (($ $) 24)) (-3209 (($) 12)))
-(((-650 |#1| |#2|) (-10 -8 (-15 -1925 (|#1| |#1|)) (-15 -3831 (|#1| |#1|)) (-15 -3209 (|#1|))) (-651 |#2|) (-1045)) (T -650))
+((-1620 (($ $) 26)) (-2926 (($ $) 24)) (-3213 (($) 12)))
+(((-650 |#1| |#2|) (-10 -8 (-15 -1620 (|#1| |#1|)) (-15 -2926 (|#1| |#1|)) (-15 -3213 (|#1|))) (-651 |#2|) (-1045)) (T -650))
NIL
-(-10 -8 (-15 -1925 (|#1| |#1|)) (-15 -3831 (|#1| |#1|)) (-15 -3209 (|#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1925 (($ $) 81 (|has| |#1| (-363)))) (-3849 (($ $ $) 83 (|has| |#1| (-363)))) (-2798 (($ $ (-767)) 82 (|has| |#1| (-363)))) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-4006 (($ $ $) 44 (|has| |#1| (-363)))) (-3737 (($ $ $) 45 (|has| |#1| (-363)))) (-1523 (($ $ $) 47 (|has| |#1| (-363)))) (-2237 (($ $ $) 42 (|has| |#1| (-363)))) (-3621 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 41 (|has| |#1| (-363)))) (-1599 (((-3 $ "failed") $ $) 43 (|has| |#1| (-363)))) (-1490 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 46 (|has| |#1| (-363)))) (-2131 (((-3 (-563) "failed") $) 74 (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 71 (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 68)) (-2058 (((-563) $) 73 (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) 70 (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 69)) (-2751 (($ $) 63)) (-3400 (((-3 $ "failed") $) 33)) (-1300 (($ $) 54 (|has| |#1| (-452)))) (-3827 (((-112) $) 31)) (-2588 (($ |#1| (-767)) 61)) (-1293 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 56 (|has| |#1| (-555)))) (-3552 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 57 (|has| |#1| (-555)))) (-2048 (((-767) $) 65)) (-3861 (($ $ $) 51 (|has| |#1| (-363)))) (-3911 (($ $ $) 52 (|has| |#1| (-363)))) (-1909 (($ $ $) 40 (|has| |#1| (-363)))) (-1511 (($ $ $) 49 (|has| |#1| (-363)))) (-3214 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 48 (|has| |#1| (-363)))) (-3121 (((-3 $ "failed") $ $) 50 (|has| |#1| (-363)))) (-4262 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 53 (|has| |#1| (-363)))) (-2726 ((|#1| $) 64)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3008 (((-3 $ "failed") $ |#1|) 58 (|has| |#1| (-555)))) (-2309 ((|#1| $ |#1|) 86)) (-3891 (($ $ $) 80 (|has| |#1| (-363)))) (-4167 (((-767) $) 66)) (-1836 ((|#1| $) 55 (|has| |#1| (-452)))) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 72 (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) 67)) (-1337 (((-640 |#1|) $) 60)) (-4319 ((|#1| $ (-767)) 62)) (-1675 (((-767)) 28)) (-3726 ((|#1| $ |#1| |#1|) 59)) (-3831 (($ $) 84)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($) 85)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 76) (($ |#1| $) 75)))
+(-10 -8 (-15 -1620 (|#1| |#1|)) (-15 -2926 (|#1| |#1|)) (-15 -3213 (|#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-1620 (($ $) 81 (|has| |#1| (-363)))) (-1645 (($ $ $) 83 (|has| |#1| (-363)))) (-1657 (($ $ (-767)) 82 (|has| |#1| (-363)))) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3076 (($ $ $) 44 (|has| |#1| (-363)))) (-3086 (($ $ $) 45 (|has| |#1| (-363)))) (-3098 (($ $ $) 47 (|has| |#1| (-363)))) (-3058 (($ $ $) 42 (|has| |#1| (-363)))) (-3047 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 41 (|has| |#1| (-363)))) (-3067 (((-3 $ "failed") $ $) 43 (|has| |#1| (-363)))) (-3186 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 46 (|has| |#1| (-363)))) (-2130 (((-3 (-563) "failed") $) 74 (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 71 (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 68)) (-2057 (((-563) $) 73 (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) 70 (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 69)) (-2750 (($ $) 63)) (-3951 (((-3 $ "failed") $) 33)) (-4151 (($ $) 54 (|has| |#1| (-452)))) (-3401 (((-112) $) 31)) (-2587 (($ |#1| (-767)) 61)) (-3167 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 56 (|has| |#1| (-555)))) (-3160 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 57 (|has| |#1| (-555)))) (-3908 (((-767) $) 65)) (-3142 (($ $ $) 51 (|has| |#1| (-363)))) (-3151 (($ $ $) 52 (|has| |#1| (-363)))) (-3036 (($ $ $) 40 (|has| |#1| (-363)))) (-3121 (($ $ $) 49 (|has| |#1| (-363)))) (-3110 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 48 (|has| |#1| (-363)))) (-3132 (((-3 $ "failed") $ $) 50 (|has| |#1| (-363)))) (-3177 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 53 (|has| |#1| (-363)))) (-2725 ((|#1| $) 64)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-3012 (((-3 $ "failed") $ |#1|) 58 (|has| |#1| (-555)))) (-2308 ((|#1| $ |#1|) 86)) (-1668 (($ $ $) 80 (|has| |#1| (-363)))) (-3871 (((-767) $) 66)) (-3885 ((|#1| $) 55 (|has| |#1| (-452)))) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 72 (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) 67)) (-3955 (((-640 |#1|) $) 60)) (-3244 ((|#1| $ (-767)) 62)) (-3914 (((-767)) 28)) (-3727 ((|#1| $ |#1| |#1|) 59)) (-2926 (($ $) 84)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($) 85)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 76) (($ |#1| $) 75)))
(((-651 |#1|) (-140) (-1045)) (T -651))
-((-3209 (*1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)))) (-3831 (*1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)))) (-3849 (*1 *1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-2798 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-651 *3)) (-4 *3 (-1045)) (-4 *3 (-363)))) (-1925 (*1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3891 (*1 *1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
-(-13 (-848 |t#1|) (-286 |t#1| |t#1|) (-10 -8 (-15 -3209 ($)) (-15 -3831 ($ $)) (IF (|has| |t#1| (-363)) (PROGN (-15 -3849 ($ $ $)) (-15 -2798 ($ $ (-767))) (-15 -1925 ($ $)) (-15 -3891 ($ $ $))) |%noBranch|)))
+((-3213 (*1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)))) (-2926 (*1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)))) (-1645 (*1 *1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-1657 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-651 *3)) (-4 *3 (-1045)) (-4 *3 (-363)))) (-1620 (*1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-1668 (*1 *1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
+(-13 (-848 |t#1|) (-286 |t#1| |t#1|) (-10 -8 (-15 -3213 ($)) (-15 -2926 ($ $)) (IF (|has| |t#1| (-363)) (PROGN (-15 -1645 ($ $ $)) (-15 -1657 ($ $ (-767))) (-15 -1620 ($ $)) (-15 -1668 ($ $ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-172)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-613 #0=(-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-610 (-858)) . T) ((-286 |#1| |#1|) . T) ((-411 |#1|) . T) ((-643 |#1|) . T) ((-643 $) . T) ((-713 |#1|) |has| |#1| (-172)) ((-722) . T) ((-1034 #0#) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1051 |#1|) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-848 |#1|) . T))
-((-2046 (((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|))) 74 (|has| |#1| (-27)))) (-2174 (((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|))) 73 (|has| |#1| (-27))) (((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|)) 17)))
-(((-652 |#1| |#2|) (-10 -7 (-15 -2174 ((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2174 ((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|)))) (-15 -2046 ((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|))))) |%noBranch|)) (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))) (-1233 |#1|)) (T -652))
-((-2046 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4)) (-5 *2 (-640 (-648 (-407 *5)))) (-5 *1 (-652 *4 *5)) (-5 *3 (-648 (-407 *5))))) (-2174 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4)) (-5 *2 (-640 (-648 (-407 *5)))) (-5 *1 (-652 *4 *5)) (-5 *3 (-648 (-407 *5))))) (-2174 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-640 *5) *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-5 *2 (-640 (-648 (-407 *6)))) (-5 *1 (-652 *5 *6)) (-5 *3 (-648 (-407 *6))))))
-(-10 -7 (-15 -2174 ((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2174 ((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|)))) (-15 -2046 ((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|))))) |%noBranch|))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1925 (($ $) NIL (|has| |#1| (-363)))) (-3849 (($ $ $) 28 (|has| |#1| (-363)))) (-2798 (($ $ (-767)) 31 (|has| |#1| (-363)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-4006 (($ $ $) NIL (|has| |#1| (-363)))) (-3737 (($ $ $) NIL (|has| |#1| (-363)))) (-1523 (($ $ $) NIL (|has| |#1| (-363)))) (-2237 (($ $ $) NIL (|has| |#1| (-363)))) (-3621 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-1599 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-1490 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2058 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1300 (($ $) NIL (|has| |#1| (-452)))) (-3827 (((-112) $) NIL)) (-2588 (($ |#1| (-767)) NIL)) (-1293 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-555)))) (-3552 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-555)))) (-2048 (((-767) $) NIL)) (-3861 (($ $ $) NIL (|has| |#1| (-363)))) (-3911 (($ $ $) NIL (|has| |#1| (-363)))) (-1909 (($ $ $) NIL (|has| |#1| (-363)))) (-1511 (($ $ $) NIL (|has| |#1| (-363)))) (-3214 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3121 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-4262 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3008 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-2309 ((|#1| $ |#1|) 24)) (-3891 (($ $ $) 33 (|has| |#1| (-363)))) (-4167 (((-767) $) NIL)) (-1836 ((|#1| $) NIL (|has| |#1| (-452)))) (-1693 (((-858) $) 20) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) NIL)) (-1337 (((-640 |#1|) $) NIL)) (-4319 ((|#1| $ (-767)) NIL)) (-1675 (((-767)) NIL)) (-3726 ((|#1| $ |#1| |#1|) 23)) (-3831 (($ $) NIL)) (-2241 (($) 21 T CONST)) (-2254 (($) 8 T CONST)) (-3209 (($) NIL)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-1631 (((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|))) 73 (|has| |#1| (-27)))) (-2173 (((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|))) 72 (|has| |#1| (-27))) (((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|)) 17)))
+(((-652 |#1| |#2|) (-10 -7 (-15 -2173 ((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2173 ((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|)))) (-15 -1631 ((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|))))) |%noBranch|)) (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))) (-1233 |#1|)) (T -652))
+((-1631 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4)) (-5 *2 (-640 (-648 (-407 *5)))) (-5 *1 (-652 *4 *5)) (-5 *3 (-648 (-407 *5))))) (-2173 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4)) (-5 *2 (-640 (-648 (-407 *5)))) (-5 *1 (-652 *4 *5)) (-5 *3 (-648 (-407 *5))))) (-2173 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-640 *5) *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-5 *2 (-640 (-648 (-407 *6)))) (-5 *1 (-652 *5 *6)) (-5 *3 (-648 (-407 *6))))))
+(-10 -7 (-15 -2173 ((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2173 ((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|)))) (-15 -1631 ((-640 (-648 (-407 |#2|))) (-648 (-407 |#2|))))) |%noBranch|))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-1620 (($ $) NIL (|has| |#1| (-363)))) (-1645 (($ $ $) 28 (|has| |#1| (-363)))) (-1657 (($ $ (-767)) 31 (|has| |#1| (-363)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-3076 (($ $ $) NIL (|has| |#1| (-363)))) (-3086 (($ $ $) NIL (|has| |#1| (-363)))) (-3098 (($ $ $) NIL (|has| |#1| (-363)))) (-3058 (($ $ $) NIL (|has| |#1| (-363)))) (-3047 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-3067 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-3186 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2057 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-4151 (($ $) NIL (|has| |#1| (-452)))) (-3401 (((-112) $) NIL)) (-2587 (($ |#1| (-767)) NIL)) (-3167 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-555)))) (-3160 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-555)))) (-3908 (((-767) $) NIL)) (-3142 (($ $ $) NIL (|has| |#1| (-363)))) (-3151 (($ $ $) NIL (|has| |#1| (-363)))) (-3036 (($ $ $) NIL (|has| |#1| (-363)))) (-3121 (($ $ $) NIL (|has| |#1| (-363)))) (-3110 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-3132 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-3177 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3012 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-2308 ((|#1| $ |#1|) 24)) (-1668 (($ $ $) 33 (|has| |#1| (-363)))) (-3871 (((-767) $) NIL)) (-3885 ((|#1| $) NIL (|has| |#1| (-452)))) (-1692 (((-858) $) 20) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) NIL)) (-3955 (((-640 |#1|) $) NIL)) (-3244 ((|#1| $ (-767)) NIL)) (-3914 (((-767)) NIL)) (-3727 ((|#1| $ |#1| |#1|) 23)) (-2926 (($ $) NIL)) (-2239 (($) 21 T CONST)) (-2253 (($) 8 T CONST)) (-3213 (($) NIL)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-653 |#1| |#2|) (-651 |#1|) (-1045) (-1 |#1| |#1|)) (T -653))
NIL
(-651 |#1|)
-((-3849 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 59)) (-2798 ((|#2| |#2| (-767) (-1 |#1| |#1|)) 40)) (-3891 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 61)))
-(((-654 |#1| |#2|) (-10 -7 (-15 -3849 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -2798 (|#2| |#2| (-767) (-1 |#1| |#1|))) (-15 -3891 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-363) (-651 |#1|)) (T -654))
-((-3891 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-363)) (-5 *1 (-654 *4 *2)) (-4 *2 (-651 *4)))) (-2798 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-767)) (-5 *4 (-1 *5 *5)) (-4 *5 (-363)) (-5 *1 (-654 *5 *2)) (-4 *2 (-651 *5)))) (-3849 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-363)) (-5 *1 (-654 *4 *2)) (-4 *2 (-651 *4)))))
-(-10 -7 (-15 -3849 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -2798 (|#2| |#2| (-767) (-1 |#1| |#1|))) (-15 -3891 (|#2| |#2| |#2| (-1 |#1| |#1|))))
-((-1534 (($ $ $) 9)))
-(((-655 |#1|) (-10 -8 (-15 -1534 (|#1| |#1| |#1|))) (-656)) (T -655))
-NIL
-(-10 -8 (-15 -1534 (|#1| |#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3380 (($ $) 10)) (-1534 (($ $ $) 8)) (-1718 (((-112) $ $) 6)) (-1521 (($ $ $) 9)))
+((-1645 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 59)) (-1657 ((|#2| |#2| (-767) (-1 |#1| |#1|)) 40)) (-1668 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 61)))
+(((-654 |#1| |#2|) (-10 -7 (-15 -1645 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -1657 (|#2| |#2| (-767) (-1 |#1| |#1|))) (-15 -1668 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-363) (-651 |#1|)) (T -654))
+((-1668 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-363)) (-5 *1 (-654 *4 *2)) (-4 *2 (-651 *4)))) (-1657 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-767)) (-5 *4 (-1 *5 *5)) (-4 *5 (-363)) (-5 *1 (-654 *5 *2)) (-4 *2 (-651 *5)))) (-1645 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-363)) (-5 *1 (-654 *4 *2)) (-4 *2 (-651 *4)))))
+(-10 -7 (-15 -1645 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -1657 (|#2| |#2| (-767) (-1 |#1| |#1|))) (-15 -1668 (|#2| |#2| |#2| (-1 |#1| |#1|))))
+((-1531 (($ $ $) 9)))
+(((-655 |#1|) (-10 -8 (-15 -1531 (|#1| |#1| |#1|))) (-656)) (T -655))
+NIL
+(-10 -8 (-15 -1531 (|#1| |#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3384 (($ $) 10)) (-1531 (($ $ $) 8)) (-1718 (((-112) $ $) 6)) (-1517 (($ $ $) 9)))
(((-656) (-140)) (T -656))
-((-3380 (*1 *1 *1) (-4 *1 (-656))) (-1521 (*1 *1 *1 *1) (-4 *1 (-656))) (-1534 (*1 *1 *1 *1) (-4 *1 (-656))))
-(-13 (-102) (-10 -8 (-15 -3380 ($ $)) (-15 -1521 ($ $ $)) (-15 -1534 ($ $ $))))
+((-3384 (*1 *1 *1) (-4 *1 (-656))) (-1517 (*1 *1 *1 *1) (-4 *1 (-656))) (-1531 (*1 *1 *1 *1) (-4 *1 (-656))))
+(-13 (-102) (-10 -8 (-15 -3384 ($ $)) (-15 -1517 ($ $ $)) (-15 -1531 ($ $ $))))
(((-102) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 15)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2143 ((|#1| $) 21)) (-3084 (($ $ $) NIL (|has| |#1| (-787)))) (-1777 (($ $ $) NIL (|has| |#1| (-787)))) (-3573 (((-1151) $) 46)) (-1694 (((-1113) $) NIL)) (-2154 ((|#3| $) 22)) (-1693 (((-858) $) 42)) (-2241 (($) 10 T CONST)) (-1778 (((-112) $ $) NIL (|has| |#1| (-787)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-787)))) (-1718 (((-112) $ $) 20)) (-1768 (((-112) $ $) NIL (|has| |#1| (-787)))) (-1744 (((-112) $ $) 24 (|has| |#1| (-787)))) (-1837 (($ $ |#3|) 34) (($ |#1| |#3|) 35)) (-1826 (($ $) 17) (($ $ $) NIL)) (-1814 (($ $ $) 27)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 30) (($ |#2| $) 32) (($ $ |#2|) NIL)))
-(((-657 |#1| |#2| |#3|) (-13 (-713 |#2|) (-10 -8 (IF (|has| |#1| (-787)) (-6 (-787)) |%noBranch|) (-15 -1837 ($ $ |#3|)) (-15 -1837 ($ |#1| |#3|)) (-15 -2143 (|#1| $)) (-15 -2154 (|#3| $)))) (-713 |#2|) (-172) (|SubsetCategory| (-722) |#2|)) (T -657))
-((-1837 (*1 *1 *1 *2) (-12 (-4 *4 (-172)) (-5 *1 (-657 *3 *4 *2)) (-4 *3 (-713 *4)) (-4 *2 (|SubsetCategory| (-722) *4)))) (-1837 (*1 *1 *2 *3) (-12 (-4 *4 (-172)) (-5 *1 (-657 *2 *4 *3)) (-4 *2 (-713 *4)) (-4 *3 (|SubsetCategory| (-722) *4)))) (-2143 (*1 *2 *1) (-12 (-4 *3 (-172)) (-4 *2 (-713 *3)) (-5 *1 (-657 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-722) *3)))) (-2154 (*1 *2 *1) (-12 (-4 *4 (-172)) (-4 *2 (|SubsetCategory| (-722) *4)) (-5 *1 (-657 *3 *4 *2)) (-4 *3 (-713 *4)))))
-(-13 (-713 |#2|) (-10 -8 (IF (|has| |#1| (-787)) (-6 (-787)) |%noBranch|) (-15 -1837 ($ $ |#3|)) (-15 -1837 ($ |#1| |#3|)) (-15 -2143 (|#1| $)) (-15 -2154 (|#3| $))))
-((-2764 (((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|)) 33)))
-(((-658 |#1|) (-10 -7 (-15 -2764 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|)))) (-905)) (T -658))
-((-2764 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 (-1165 *4))) (-5 *3 (-1165 *4)) (-4 *4 (-905)) (-5 *1 (-658 *4)))))
-(-10 -7 (-15 -2764 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3993 (((-640 |#1|) $) 82)) (-2872 (($ $ (-767)) 90)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-3181 (((-1281 |#1| |#2|) (-1281 |#1| |#2|) $) 48)) (-2131 (((-3 (-667 |#1|) "failed") $) NIL)) (-2058 (((-667 |#1|) $) NIL)) (-2751 (($ $) 89)) (-4096 (((-767) $) NIL)) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-4222 (($ (-667 |#1|) |#2|) 68)) (-4337 (($ $) 86)) (-2240 (($ (-1 |#2| |#2|) $) NIL)) (-3439 (((-1281 |#1| |#2|) (-1281 |#1| |#2|) $) 47)) (-3115 (((-2 (|:| |k| (-667 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2716 (((-667 |#1|) $) NIL)) (-2726 ((|#2| $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1540 (($ $ |#1| $) 30) (($ $ (-640 |#1|) (-640 $)) 32)) (-4167 (((-767) $) 88)) (-1707 (($ $ $) 20) (($ (-667 |#1|) (-667 |#1|)) 77) (($ (-667 |#1|) $) 75) (($ $ (-667 |#1|)) 76)) (-1693 (((-858) $) NIL) (($ |#1|) 74) (((-1272 |#1| |#2|) $) 58) (((-1281 |#1| |#2|) $) 41) (($ (-667 |#1|)) 25)) (-1337 (((-640 |#2|) $) NIL)) (-4319 ((|#2| $ (-667 |#1|)) NIL)) (-2311 ((|#2| (-1281 |#1| |#2|) $) 43)) (-2241 (($) 23 T CONST)) (-1531 (((-640 (-2 (|:| |k| (-667 |#1|)) (|:| |c| |#2|))) $) NIL)) (-2343 (((-3 $ "failed") (-1272 |#1| |#2|)) 60)) (-3657 (($ (-667 |#1|)) 14)) (-1718 (((-112) $ $) 44)) (-1837 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1826 (($ $) 66) (($ $ $) NIL)) (-1814 (($ $ $) 29)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ |#2| $) 28) (($ $ |#2|) NIL) (($ |#2| (-667 |#1|)) NIL)))
-(((-659 |#1| |#2|) (-13 (-374 |#1| |#2|) (-382 |#2| (-667 |#1|)) (-10 -8 (-15 -2343 ((-3 $ "failed") (-1272 |#1| |#2|))) (-15 -1707 ($ (-667 |#1|) (-667 |#1|))) (-15 -1707 ($ (-667 |#1|) $)) (-15 -1707 ($ $ (-667 |#1|))))) (-846) (-172)) (T -659))
-((-2343 (*1 *1 *2) (|partial| -12 (-5 *2 (-1272 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)) (-5 *1 (-659 *3 *4)))) (-1707 (*1 *1 *2 *2) (-12 (-5 *2 (-667 *3)) (-4 *3 (-846)) (-5 *1 (-659 *3 *4)) (-4 *4 (-172)))) (-1707 (*1 *1 *2 *1) (-12 (-5 *2 (-667 *3)) (-4 *3 (-846)) (-5 *1 (-659 *3 *4)) (-4 *4 (-172)))) (-1707 (*1 *1 *1 *2) (-12 (-5 *2 (-667 *3)) (-4 *3 (-846)) (-5 *1 (-659 *3 *4)) (-4 *4 (-172)))))
-(-13 (-374 |#1| |#2|) (-382 |#2| (-667 |#1|)) (-10 -8 (-15 -2343 ((-3 $ "failed") (-1272 |#1| |#2|))) (-15 -1707 ($ (-667 |#1|) (-667 |#1|))) (-15 -1707 ($ (-667 |#1|) $)) (-15 -1707 ($ $ (-667 |#1|)))))
-((-3523 (((-112) $) NIL) (((-112) (-1 (-112) |#2| |#2|) $) 49)) (-2770 (($ $) NIL) (($ (-1 (-112) |#2| |#2|) $) 12)) (-2812 (($ (-1 (-112) |#2|) $) 27)) (-2907 (($ $) 55)) (-4005 (($ $) 63)) (-2705 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 36)) (-2444 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 50) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 52)) (-4368 (((-563) |#2| $ (-563)) 60) (((-563) |#2| $) NIL) (((-563) (-1 (-112) |#2|) $) 46)) (-1566 (($ (-767) |#2|) 53)) (-2878 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 29)) (-3164 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 24)) (-2240 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 54)) (-3651 (($ |#2|) 15)) (-1812 (($ $ $ (-563)) 35) (($ |#2| $ (-563)) 33)) (-4203 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 45)) (-1314 (($ $ (-1224 (-563))) 43) (($ $ (-563)) 37)) (-3076 (($ $ $ (-563)) 59)) (-1872 (($ $) 57)) (-1744 (((-112) $ $) 65)))
-(((-660 |#1| |#2|) (-10 -8 (-15 -3651 (|#1| |#2|)) (-15 -1314 (|#1| |#1| (-563))) (-15 -1314 (|#1| |#1| (-1224 (-563)))) (-15 -2705 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1812 (|#1| |#2| |#1| (-563))) (-15 -1812 (|#1| |#1| |#1| (-563))) (-15 -2878 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2812 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2705 (|#1| |#2| |#1|)) (-15 -4005 (|#1| |#1|)) (-15 -2878 (|#1| |#1| |#1|)) (-15 -3164 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3523 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4368 ((-563) (-1 (-112) |#2|) |#1|)) (-15 -4368 ((-563) |#2| |#1|)) (-15 -4368 ((-563) |#2| |#1| (-563))) (-15 -3164 (|#1| |#1| |#1|)) (-15 -3523 ((-112) |#1|)) (-15 -3076 (|#1| |#1| |#1| (-563))) (-15 -2907 (|#1| |#1|)) (-15 -2770 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2770 (|#1| |#1|)) (-15 -1744 ((-112) |#1| |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -4203 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1566 (|#1| (-767) |#2|)) (-15 -2240 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1872 (|#1| |#1|))) (-661 |#2|) (-1208)) (T -660))
-NIL
-(-10 -8 (-15 -3651 (|#1| |#2|)) (-15 -1314 (|#1| |#1| (-563))) (-15 -1314 (|#1| |#1| (-1224 (-563)))) (-15 -2705 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1812 (|#1| |#2| |#1| (-563))) (-15 -1812 (|#1| |#1| |#1| (-563))) (-15 -2878 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2812 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2705 (|#1| |#2| |#1|)) (-15 -4005 (|#1| |#1|)) (-15 -2878 (|#1| |#1| |#1|)) (-15 -3164 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3523 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4368 ((-563) (-1 (-112) |#2|) |#1|)) (-15 -4368 ((-563) |#2| |#1|)) (-15 -4368 ((-563) |#2| |#1| (-563))) (-15 -3164 (|#1| |#1| |#1|)) (-15 -3523 ((-112) |#1|)) (-15 -3076 (|#1| |#1| |#1| (-563))) (-15 -2907 (|#1| |#1|)) (-15 -2770 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2770 (|#1| |#1|)) (-15 -1744 ((-112) |#1| |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -4203 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1566 (|#1| (-767) |#2|)) (-15 -2240 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1872 (|#1| |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2619 ((|#1| $) 48)) (-3442 ((|#1| $) 65)) (-4302 (($ $) 67)) (-4378 (((-1262) $ (-563) (-563)) 97 (|has| $ (-6 -4408)))) (-1624 (($ $ (-563)) 52 (|has| $ (-6 -4408)))) (-3523 (((-112) $) 142 (|has| |#1| (-846))) (((-112) (-1 (-112) |#1| |#1|) $) 136)) (-2770 (($ $) 146 (-12 (|has| |#1| (-846)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#1| |#1|) $) 145 (|has| $ (-6 -4408)))) (-1642 (($ $) 141 (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $) 135)) (-2759 (((-112) $ (-767)) 8)) (-2936 ((|#1| $ |#1|) 39 (|has| $ (-6 -4408)))) (-3692 (($ $ $) 56 (|has| $ (-6 -4408)))) (-3889 ((|#1| $ |#1|) 54 (|has| $ (-6 -4408)))) (-1543 ((|#1| $ |#1|) 58 (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4408))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4408))) (($ $ "rest" $) 55 (|has| $ (-6 -4408))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) 117 (|has| $ (-6 -4408))) ((|#1| $ (-563) |#1|) 86 (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) 41 (|has| $ (-6 -4408)))) (-2812 (($ (-1 (-112) |#1|) $) 129)) (-2256 (($ (-1 (-112) |#1|) $) 102 (|has| $ (-6 -4407)))) (-3431 ((|#1| $) 66)) (-4239 (($) 7 T CONST)) (-2907 (($ $) 144 (|has| $ (-6 -4408)))) (-4382 (($ $) 134)) (-3792 (($ $) 73) (($ $ (-767)) 71)) (-4005 (($ $) 131 (|has| |#1| (-1093)))) (-3813 (($ $) 99 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-2705 (($ |#1| $) 130 (|has| |#1| (-1093))) (($ (-1 (-112) |#1|) $) 125)) (-1459 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4407))) (($ |#1| $) 100 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4355 ((|#1| $ (-563) |#1|) 85 (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) 87)) (-2018 (((-112) $) 83)) (-4368 (((-563) |#1| $ (-563)) 139 (|has| |#1| (-1093))) (((-563) |#1| $) 138 (|has| |#1| (-1093))) (((-563) (-1 (-112) |#1|) $) 137)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) 50)) (-1469 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-1566 (($ (-767) |#1|) 108)) (-2581 (((-112) $ (-767)) 9)) (-2411 (((-563) $) 95 (|has| (-563) (-846)))) (-3084 (($ $ $) 147 (|has| |#1| (-846)))) (-2878 (($ $ $) 132 (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) 128)) (-3164 (($ $ $) 140 (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) 133)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-3860 (((-563) $) 94 (|has| (-563) (-846)))) (-1777 (($ $ $) 148 (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-3651 (($ |#1|) 122)) (-2382 (((-112) $ (-767)) 10)) (-2512 (((-640 |#1|) $) 45)) (-2194 (((-112) $) 49)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1481 ((|#1| $) 70) (($ $ (-767)) 68)) (-1812 (($ $ $ (-563)) 127) (($ |#1| $ (-563)) 126)) (-3396 (($ $ $ (-563)) 116) (($ |#1| $ (-563)) 115)) (-4318 (((-640 (-563)) $) 92)) (-3192 (((-112) (-563) $) 91)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3781 ((|#1| $) 76) (($ $ (-767)) 74)) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-2358 (($ $ |#1|) 96 (|has| $ (-6 -4408)))) (-2833 (((-112) $) 84)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-2105 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) 90)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1224 (-563))) 112) ((|#1| $ (-563)) 89) ((|#1| $ (-563) |#1|) 88)) (-4071 (((-563) $ $) 44)) (-1314 (($ $ (-1224 (-563))) 124) (($ $ (-563)) 123)) (-2963 (($ $ (-1224 (-563))) 114) (($ $ (-563)) 113)) (-1434 (((-112) $) 46)) (-2749 (($ $) 62)) (-1322 (($ $) 59 (|has| $ (-6 -4408)))) (-1950 (((-767) $) 63)) (-3752 (($ $) 64)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-3076 (($ $ $ (-563)) 143 (|has| $ (-6 -4408)))) (-1872 (($ $) 13)) (-2220 (((-536) $) 98 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 107)) (-3245 (($ $ $) 61) (($ $ |#1|) 60)) (-2853 (($ $ $) 78) (($ |#1| $) 77) (($ (-640 $)) 110) (($ $ |#1|) 109)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) 51)) (-2962 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) 150 (|has| |#1| (-846)))) (-1756 (((-112) $ $) 151 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-1768 (((-112) $ $) 149 (|has| |#1| (-846)))) (-1744 (((-112) $ $) 152 (|has| |#1| (-846)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 15)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2143 ((|#1| $) 21)) (-3088 (($ $ $) NIL (|has| |#1| (-787)))) (-1776 (($ $ $) NIL (|has| |#1| (-787)))) (-3854 (((-1151) $) 45)) (-1693 (((-1113) $) NIL)) (-2153 ((|#3| $) 22)) (-1692 (((-858) $) 41)) (-2239 (($) 10 T CONST)) (-1779 (((-112) $ $) NIL (|has| |#1| (-787)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-787)))) (-1718 (((-112) $ $) 20)) (-1766 (((-112) $ $) NIL (|has| |#1| (-787)))) (-1743 (((-112) $ $) 24 (|has| |#1| (-787)))) (-1836 (($ $ |#3|) 34) (($ |#1| |#3|) 35)) (-1825 (($ $) 17) (($ $ $) NIL)) (-1813 (($ $ $) 27)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 30) (($ |#2| $) 32) (($ $ |#2|) NIL)))
+(((-657 |#1| |#2| |#3|) (-13 (-713 |#2|) (-10 -8 (IF (|has| |#1| (-787)) (-6 (-787)) |%noBranch|) (-15 -1836 ($ $ |#3|)) (-15 -1836 ($ |#1| |#3|)) (-15 -2143 (|#1| $)) (-15 -2153 (|#3| $)))) (-713 |#2|) (-172) (|SubsetCategory| (-722) |#2|)) (T -657))
+((-1836 (*1 *1 *1 *2) (-12 (-4 *4 (-172)) (-5 *1 (-657 *3 *4 *2)) (-4 *3 (-713 *4)) (-4 *2 (|SubsetCategory| (-722) *4)))) (-1836 (*1 *1 *2 *3) (-12 (-4 *4 (-172)) (-5 *1 (-657 *2 *4 *3)) (-4 *2 (-713 *4)) (-4 *3 (|SubsetCategory| (-722) *4)))) (-2143 (*1 *2 *1) (-12 (-4 *3 (-172)) (-4 *2 (-713 *3)) (-5 *1 (-657 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-722) *3)))) (-2153 (*1 *2 *1) (-12 (-4 *4 (-172)) (-4 *2 (|SubsetCategory| (-722) *4)) (-5 *1 (-657 *3 *4 *2)) (-4 *3 (-713 *4)))))
+(-13 (-713 |#2|) (-10 -8 (IF (|has| |#1| (-787)) (-6 (-787)) |%noBranch|) (-15 -1836 ($ $ |#3|)) (-15 -1836 ($ |#1| |#3|)) (-15 -2143 (|#1| $)) (-15 -2153 (|#3| $))))
+((-1682 (((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|)) 33)))
+(((-658 |#1|) (-10 -7 (-15 -1682 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|)))) (-905)) (T -658))
+((-1682 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 (-1165 *4))) (-5 *3 (-1165 *4)) (-4 *4 (-905)) (-5 *1 (-658 *4)))))
+(-10 -7 (-15 -1682 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3994 (((-640 |#1|) $) 82)) (-3862 (($ $ (-767)) 90)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-3817 (((-1281 |#1| |#2|) (-1281 |#1| |#2|) $) 48)) (-2130 (((-3 (-667 |#1|) "failed") $) NIL)) (-2057 (((-667 |#1|) $) NIL)) (-2750 (($ $) 89)) (-3481 (((-767) $) NIL)) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-4223 (($ (-667 |#1|) |#2|) 68)) (-3794 (($ $) 86)) (-2238 (($ (-1 |#2| |#2|) $) NIL)) (-3828 (((-1281 |#1| |#2|) (-1281 |#1| |#2|) $) 47)) (-4243 (((-2 (|:| |k| (-667 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2715 (((-667 |#1|) $) NIL)) (-2725 ((|#2| $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1542 (($ $ |#1| $) 30) (($ $ (-640 |#1|) (-640 $)) 32)) (-3871 (((-767) $) 88)) (-1706 (($ $ $) 20) (($ (-667 |#1|) (-667 |#1|)) 77) (($ (-667 |#1|) $) 75) (($ $ (-667 |#1|)) 76)) (-1692 (((-858) $) NIL) (($ |#1|) 74) (((-1272 |#1| |#2|) $) 58) (((-1281 |#1| |#2|) $) 41) (($ (-667 |#1|)) 25)) (-3955 (((-640 |#2|) $) NIL)) (-3244 ((|#2| $ (-667 |#1|)) NIL)) (-2310 ((|#2| (-1281 |#1| |#2|) $) 43)) (-2239 (($) 23 T CONST)) (-2891 (((-640 (-2 (|:| |k| (-667 |#1|)) (|:| |c| |#2|))) $) NIL)) (-3855 (((-3 $ "failed") (-1272 |#1| |#2|)) 60)) (-4084 (($ (-667 |#1|)) 14)) (-1718 (((-112) $ $) 44)) (-1836 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1825 (($ $) 66) (($ $ $) NIL)) (-1813 (($ $ $) 29)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ |#2| $) 28) (($ $ |#2|) NIL) (($ |#2| (-667 |#1|)) NIL)))
+(((-659 |#1| |#2|) (-13 (-374 |#1| |#2|) (-382 |#2| (-667 |#1|)) (-10 -8 (-15 -3855 ((-3 $ "failed") (-1272 |#1| |#2|))) (-15 -1706 ($ (-667 |#1|) (-667 |#1|))) (-15 -1706 ($ (-667 |#1|) $)) (-15 -1706 ($ $ (-667 |#1|))))) (-846) (-172)) (T -659))
+((-3855 (*1 *1 *2) (|partial| -12 (-5 *2 (-1272 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)) (-5 *1 (-659 *3 *4)))) (-1706 (*1 *1 *2 *2) (-12 (-5 *2 (-667 *3)) (-4 *3 (-846)) (-5 *1 (-659 *3 *4)) (-4 *4 (-172)))) (-1706 (*1 *1 *2 *1) (-12 (-5 *2 (-667 *3)) (-4 *3 (-846)) (-5 *1 (-659 *3 *4)) (-4 *4 (-172)))) (-1706 (*1 *1 *1 *2) (-12 (-5 *2 (-667 *3)) (-4 *3 (-846)) (-5 *1 (-659 *3 *4)) (-4 *4 (-172)))))
+(-13 (-374 |#1| |#2|) (-382 |#2| (-667 |#1|)) (-10 -8 (-15 -3855 ((-3 $ "failed") (-1272 |#1| |#2|))) (-15 -1706 ($ (-667 |#1|) (-667 |#1|))) (-15 -1706 ($ (-667 |#1|) $)) (-15 -1706 ($ $ (-667 |#1|)))))
+((-4073 (((-112) $) NIL) (((-112) (-1 (-112) |#2| |#2|) $) 49)) (-4052 (($ $) NIL) (($ (-1 (-112) |#2| |#2|) $) 12)) (-3678 (($ (-1 (-112) |#2|) $) 27)) (-1574 (($ $) 55)) (-4194 (($ $) 63)) (-1691 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 36)) (-2444 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 50) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 52)) (-4369 (((-563) |#2| $ (-563)) 60) (((-563) |#2| $) NIL) (((-563) (-1 (-112) |#2|) $) 46)) (-1565 (($ (-767) |#2|) 53)) (-4265 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 29)) (-4300 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 24)) (-2238 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 54)) (-3652 (($ |#2|) 15)) (-3867 (($ $ $ (-563)) 35) (($ |#2| $ (-563)) 33)) (-1971 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 45)) (-3690 (($ $ (-1224 (-563))) 43) (($ $ (-563)) 37)) (-4062 (($ $ $ (-563)) 59)) (-1870 (($ $) 57)) (-1743 (((-112) $ $) 65)))
+(((-660 |#1| |#2|) (-10 -8 (-15 -3652 (|#1| |#2|)) (-15 -3690 (|#1| |#1| (-563))) (-15 -3690 (|#1| |#1| (-1224 (-563)))) (-15 -1691 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3867 (|#1| |#2| |#1| (-563))) (-15 -3867 (|#1| |#1| |#1| (-563))) (-15 -4265 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3678 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1691 (|#1| |#2| |#1|)) (-15 -4194 (|#1| |#1|)) (-15 -4265 (|#1| |#1| |#1|)) (-15 -4300 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4073 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4369 ((-563) (-1 (-112) |#2|) |#1|)) (-15 -4369 ((-563) |#2| |#1|)) (-15 -4369 ((-563) |#2| |#1| (-563))) (-15 -4300 (|#1| |#1| |#1|)) (-15 -4073 ((-112) |#1|)) (-15 -4062 (|#1| |#1| |#1| (-563))) (-15 -1574 (|#1| |#1|)) (-15 -4052 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4052 (|#1| |#1|)) (-15 -1743 ((-112) |#1| |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1971 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1565 (|#1| (-767) |#2|)) (-15 -2238 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1870 (|#1| |#1|))) (-661 |#2|) (-1208)) (T -660))
+NIL
+(-10 -8 (-15 -3652 (|#1| |#2|)) (-15 -3690 (|#1| |#1| (-563))) (-15 -3690 (|#1| |#1| (-1224 (-563)))) (-15 -1691 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3867 (|#1| |#2| |#1| (-563))) (-15 -3867 (|#1| |#1| |#1| (-563))) (-15 -4265 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3678 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1691 (|#1| |#2| |#1|)) (-15 -4194 (|#1| |#1|)) (-15 -4265 (|#1| |#1| |#1|)) (-15 -4300 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4073 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4369 ((-563) (-1 (-112) |#2|) |#1|)) (-15 -4369 ((-563) |#2| |#1|)) (-15 -4369 ((-563) |#2| |#1| (-563))) (-15 -4300 (|#1| |#1| |#1|)) (-15 -4073 ((-112) |#1|)) (-15 -4062 (|#1| |#1| |#1| (-563))) (-15 -1574 (|#1| |#1|)) (-15 -4052 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4052 (|#1| |#1|)) (-15 -1743 ((-112) |#1| |#1|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2444 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1971 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1565 (|#1| (-767) |#2|)) (-15 -2238 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1870 (|#1| |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2618 ((|#1| $) 48)) (-3446 ((|#1| $) 65)) (-4303 (($ $) 67)) (-2208 (((-1262) $ (-563) (-563)) 97 (|has| $ (-6 -4409)))) (-1887 (($ $ (-563)) 52 (|has| $ (-6 -4409)))) (-4073 (((-112) $) 142 (|has| |#1| (-846))) (((-112) (-1 (-112) |#1| |#1|) $) 136)) (-4052 (($ $) 146 (-12 (|has| |#1| (-846)) (|has| $ (-6 -4409)))) (($ (-1 (-112) |#1| |#1|) $) 145 (|has| $ (-6 -4409)))) (-1640 (($ $) 141 (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $) 135)) (-3001 (((-112) $ (-767)) 8)) (-2336 ((|#1| $ |#1|) 39 (|has| $ (-6 -4409)))) (-1909 (($ $ $) 56 (|has| $ (-6 -4409)))) (-1898 ((|#1| $ |#1|) 54 (|has| $ (-6 -4409)))) (-1919 ((|#1| $ |#1|) 58 (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4409))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4409))) (($ $ "rest" $) 55 (|has| $ (-6 -4409))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) 117 (|has| $ (-6 -4409))) ((|#1| $ (-563) |#1|) 86 (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) 41 (|has| $ (-6 -4409)))) (-3678 (($ (-1 (-112) |#1|) $) 129)) (-2255 (($ (-1 (-112) |#1|) $) 102 (|has| $ (-6 -4408)))) (-3435 ((|#1| $) 66)) (-2569 (($) 7 T CONST)) (-1574 (($ $) 144 (|has| $ (-6 -4409)))) (-4383 (($ $) 134)) (-3793 (($ $) 73) (($ $ (-767)) 71)) (-4194 (($ $) 131 (|has| |#1| (-1093)))) (-3814 (($ $) 99 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1691 (($ |#1| $) 130 (|has| |#1| (-1093))) (($ (-1 (-112) |#1|) $) 125)) (-1459 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4408))) (($ |#1| $) 100 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4356 ((|#1| $ (-563) |#1|) 85 (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) 87)) (-1966 (((-112) $) 83)) (-4369 (((-563) |#1| $ (-563)) 139 (|has| |#1| (-1093))) (((-563) |#1| $) 138 (|has| |#1| (-1093))) (((-563) (-1 (-112) |#1|) $) 137)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) 50)) (-2358 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-1565 (($ (-767) |#1|) 108)) (-2514 (((-112) $ (-767)) 9)) (-2236 (((-563) $) 95 (|has| (-563) (-846)))) (-3088 (($ $ $) 147 (|has| |#1| (-846)))) (-4265 (($ $ $) 132 (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) 128)) (-4300 (($ $ $) 140 (|has| |#1| (-846))) (($ (-1 (-112) |#1| |#1|) $ $) 133)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-2251 (((-563) $) 94 (|has| (-563) (-846)))) (-1776 (($ $ $) 148 (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-3652 (($ |#1|) 122)) (-2481 (((-112) $ (-767)) 10)) (-2511 (((-640 |#1|) $) 45)) (-1298 (((-112) $) 49)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1481 ((|#1| $) 70) (($ $ (-767)) 68)) (-3867 (($ $ $ (-563)) 127) (($ |#1| $ (-563)) 126)) (-3399 (($ $ $ (-563)) 116) (($ |#1| $ (-563)) 115)) (-2272 (((-640 (-563)) $) 92)) (-2282 (((-112) (-563) $) 91)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3782 ((|#1| $) 76) (($ $ (-767)) 74)) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-2221 (($ $ |#1|) 96 (|has| $ (-6 -4409)))) (-1976 (((-112) $) 84)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) 90)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1224 (-563))) 112) ((|#1| $ (-563)) 89) ((|#1| $ (-563) |#1|) 88)) (-2379 (((-563) $ $) 44)) (-3690 (($ $ (-1224 (-563))) 124) (($ $ (-563)) 123)) (-2967 (($ $ (-1224 (-563))) 114) (($ $ (-563)) 113)) (-2889 (((-112) $) 46)) (-1951 (($ $) 62)) (-1930 (($ $) 59 (|has| $ (-6 -4409)))) (-1961 (((-767) $) 63)) (-1970 (($ $) 64)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4062 (($ $ $ (-563)) 143 (|has| $ (-6 -4409)))) (-1870 (($ $) 13)) (-2219 (((-536) $) 98 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 107)) (-1941 (($ $ $) 61) (($ $ |#1|) 60)) (-2857 (($ $ $) 78) (($ |#1| $) 77) (($ (-640 $)) 110) (($ $ |#1|) 109)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) 51)) (-2367 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) 150 (|has| |#1| (-846)))) (-1754 (((-112) $ $) 151 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-1766 (((-112) $ $) 149 (|has| |#1| (-846)))) (-1743 (((-112) $ $) 152 (|has| |#1| (-846)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-661 |#1|) (-140) (-1208)) (T -661))
-((-3651 (*1 *1 *2) (-12 (-4 *1 (-661 *2)) (-4 *2 (-1208)))))
-(-13 (-1142 |t#1|) (-373 |t#1|) (-282 |t#1|) (-10 -8 (-15 -3651 ($ |t#1|))))
-(((-34) . T) ((-102) -4032 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-846)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-282 |#1|) . T) ((-373 |#1|) . T) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-846) |has| |#1| (-846)) ((-1006 |#1|) . T) ((-1093) -4032 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-1142 |#1|) . T) ((-1208) . T) ((-1245 |#1|) . T))
-((-1793 (((-640 (-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4315 (-640 (-1257 |#1|))))) (-640 (-640 |#1|)) (-640 (-1257 |#1|))) 22) (((-640 (-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4315 (-640 (-1257 |#1|))))) (-684 |#1|) (-640 (-1257 |#1|))) 21) (((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4315 (-640 (-1257 |#1|)))) (-640 (-640 |#1|)) (-1257 |#1|)) 18) (((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4315 (-640 (-1257 |#1|)))) (-684 |#1|) (-1257 |#1|)) 14)) (-2522 (((-767) (-684 |#1|) (-1257 |#1|)) 30)) (-2635 (((-3 (-1257 |#1|) "failed") (-684 |#1|) (-1257 |#1|)) 24)) (-3962 (((-112) (-684 |#1|) (-1257 |#1|)) 27)))
-(((-662 |#1|) (-10 -7 (-15 -1793 ((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4315 (-640 (-1257 |#1|)))) (-684 |#1|) (-1257 |#1|))) (-15 -1793 ((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4315 (-640 (-1257 |#1|)))) (-640 (-640 |#1|)) (-1257 |#1|))) (-15 -1793 ((-640 (-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4315 (-640 (-1257 |#1|))))) (-684 |#1|) (-640 (-1257 |#1|)))) (-15 -1793 ((-640 (-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4315 (-640 (-1257 |#1|))))) (-640 (-640 |#1|)) (-640 (-1257 |#1|)))) (-15 -2635 ((-3 (-1257 |#1|) "failed") (-684 |#1|) (-1257 |#1|))) (-15 -3962 ((-112) (-684 |#1|) (-1257 |#1|))) (-15 -2522 ((-767) (-684 |#1|) (-1257 |#1|)))) (-363)) (T -662))
-((-2522 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *5)) (-5 *4 (-1257 *5)) (-4 *5 (-363)) (-5 *2 (-767)) (-5 *1 (-662 *5)))) (-3962 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *5)) (-5 *4 (-1257 *5)) (-4 *5 (-363)) (-5 *2 (-112)) (-5 *1 (-662 *5)))) (-2635 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1257 *4)) (-5 *3 (-684 *4)) (-4 *4 (-363)) (-5 *1 (-662 *4)))) (-1793 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-640 *5))) (-4 *5 (-363)) (-5 *2 (-640 (-2 (|:| |particular| (-3 (-1257 *5) "failed")) (|:| -4315 (-640 (-1257 *5)))))) (-5 *1 (-662 *5)) (-5 *4 (-640 (-1257 *5))))) (-1793 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *5)) (-4 *5 (-363)) (-5 *2 (-640 (-2 (|:| |particular| (-3 (-1257 *5) "failed")) (|:| -4315 (-640 (-1257 *5)))))) (-5 *1 (-662 *5)) (-5 *4 (-640 (-1257 *5))))) (-1793 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-640 *5))) (-4 *5 (-363)) (-5 *2 (-2 (|:| |particular| (-3 (-1257 *5) "failed")) (|:| -4315 (-640 (-1257 *5))))) (-5 *1 (-662 *5)) (-5 *4 (-1257 *5)))) (-1793 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| |particular| (-3 (-1257 *5) "failed")) (|:| -4315 (-640 (-1257 *5))))) (-5 *1 (-662 *5)) (-5 *4 (-1257 *5)))))
-(-10 -7 (-15 -1793 ((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4315 (-640 (-1257 |#1|)))) (-684 |#1|) (-1257 |#1|))) (-15 -1793 ((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4315 (-640 (-1257 |#1|)))) (-640 (-640 |#1|)) (-1257 |#1|))) (-15 -1793 ((-640 (-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4315 (-640 (-1257 |#1|))))) (-684 |#1|) (-640 (-1257 |#1|)))) (-15 -1793 ((-640 (-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4315 (-640 (-1257 |#1|))))) (-640 (-640 |#1|)) (-640 (-1257 |#1|)))) (-15 -2635 ((-3 (-1257 |#1|) "failed") (-684 |#1|) (-1257 |#1|))) (-15 -3962 ((-112) (-684 |#1|) (-1257 |#1|))) (-15 -2522 ((-767) (-684 |#1|) (-1257 |#1|))))
-((-1793 (((-640 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4315 (-640 |#3|)))) |#4| (-640 |#3|)) 47) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4315 (-640 |#3|))) |#4| |#3|) 45)) (-2522 (((-767) |#4| |#3|) 17)) (-2635 (((-3 |#3| "failed") |#4| |#3|) 20)) (-3962 (((-112) |#4| |#3|) 13)))
-(((-663 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1793 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4315 (-640 |#3|))) |#4| |#3|)) (-15 -1793 ((-640 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4315 (-640 |#3|)))) |#4| (-640 |#3|))) (-15 -2635 ((-3 |#3| "failed") |#4| |#3|)) (-15 -3962 ((-112) |#4| |#3|)) (-15 -2522 ((-767) |#4| |#3|))) (-363) (-13 (-373 |#1|) (-10 -7 (-6 -4408))) (-13 (-373 |#1|) (-10 -7 (-6 -4408))) (-682 |#1| |#2| |#3|)) (T -663))
-((-2522 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4408)))) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4408)))) (-5 *2 (-767)) (-5 *1 (-663 *5 *6 *4 *3)) (-4 *3 (-682 *5 *6 *4)))) (-3962 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4408)))) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4408)))) (-5 *2 (-112)) (-5 *1 (-663 *5 *6 *4 *3)) (-4 *3 (-682 *5 *6 *4)))) (-2635 (*1 *2 *3 *2) (|partial| -12 (-4 *4 (-363)) (-4 *5 (-13 (-373 *4) (-10 -7 (-6 -4408)))) (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4408)))) (-5 *1 (-663 *4 *5 *2 *3)) (-4 *3 (-682 *4 *5 *2)))) (-1793 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4408)))) (-4 *7 (-13 (-373 *5) (-10 -7 (-6 -4408)))) (-5 *2 (-640 (-2 (|:| |particular| (-3 *7 "failed")) (|:| -4315 (-640 *7))))) (-5 *1 (-663 *5 *6 *7 *3)) (-5 *4 (-640 *7)) (-4 *3 (-682 *5 *6 *7)))) (-1793 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4408)))) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4408)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4)))) (-5 *1 (-663 *5 *6 *4 *3)) (-4 *3 (-682 *5 *6 *4)))))
-(-10 -7 (-15 -1793 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4315 (-640 |#3|))) |#4| |#3|)) (-15 -1793 ((-640 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4315 (-640 |#3|)))) |#4| (-640 |#3|))) (-15 -2635 ((-3 |#3| "failed") |#4| |#3|)) (-15 -3962 ((-112) |#4| |#3|)) (-15 -2522 ((-767) |#4| |#3|)))
-((-2956 (((-2 (|:| |particular| (-3 (-1257 (-407 |#4|)) "failed")) (|:| -4315 (-640 (-1257 (-407 |#4|))))) (-640 |#4|) (-640 |#3|)) 45)))
-(((-664 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2956 ((-2 (|:| |particular| (-3 (-1257 (-407 |#4|)) "failed")) (|:| -4315 (-640 (-1257 (-407 |#4|))))) (-640 |#4|) (-640 |#3|)))) (-555) (-789) (-846) (-945 |#1| |#2| |#3|)) (T -664))
-((-2956 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *7)) (-4 *7 (-846)) (-4 *8 (-945 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-5 *2 (-2 (|:| |particular| (-3 (-1257 (-407 *8)) "failed")) (|:| -4315 (-640 (-1257 (-407 *8)))))) (-5 *1 (-664 *5 *6 *7 *8)))))
-(-10 -7 (-15 -2956 ((-2 (|:| |particular| (-3 (-1257 (-407 |#4|)) "failed")) (|:| -4315 (-640 (-1257 (-407 |#4|))))) (-640 |#4|) (-640 |#3|))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1414 (((-3 $ "failed")) NIL (|has| |#2| (-555)))) (-1733 ((|#2| $) NIL)) (-3129 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3507 (((-1257 (-684 |#2|))) NIL) (((-1257 (-684 |#2|)) (-1257 $)) NIL)) (-1937 (((-112) $) NIL)) (-1438 (((-1257 $)) 37)) (-2759 (((-112) $ (-767)) NIL)) (-3845 (($ |#2|) NIL)) (-4239 (($) NIL T CONST)) (-4069 (($ $) NIL (|has| |#2| (-307)))) (-2368 (((-240 |#1| |#2|) $ (-563)) NIL)) (-2133 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) NIL (|has| |#2| (-555)))) (-2435 (((-3 $ "failed")) NIL (|has| |#2| (-555)))) (-4220 (((-684 |#2|)) NIL) (((-684 |#2|) (-1257 $)) NIL)) (-2480 ((|#2| $) NIL)) (-3043 (((-684 |#2|) $) NIL) (((-684 |#2|) $ (-1257 $)) NIL)) (-4154 (((-3 $ "failed") $) NIL (|has| |#2| (-555)))) (-3451 (((-1165 (-948 |#2|))) NIL (|has| |#2| (-363)))) (-2300 (($ $ (-917)) NIL)) (-3830 ((|#2| $) NIL)) (-3763 (((-1165 |#2|) $) NIL (|has| |#2| (-555)))) (-1824 ((|#2|) NIL) ((|#2| (-1257 $)) NIL)) (-2876 (((-1165 |#2|) $) NIL)) (-2182 (((-112)) NIL)) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 |#2| "failed") $) NIL)) (-2058 (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) ((|#2| $) NIL)) (-3937 (($ (-1257 |#2|)) NIL) (($ (-1257 |#2|) (-1257 $)) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-2522 (((-767) $) NIL (|has| |#2| (-555))) (((-917)) 38)) (-4293 ((|#2| $ (-563) (-563)) NIL)) (-2250 (((-112)) NIL)) (-2287 (($ $ (-917)) NIL)) (-2659 (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-3827 (((-112) $) NIL)) (-1997 (((-767) $) NIL (|has| |#2| (-555)))) (-2345 (((-640 (-240 |#1| |#2|)) $) NIL (|has| |#2| (-555)))) (-2381 (((-767) $) NIL)) (-3901 (((-112)) NIL)) (-2393 (((-767) $) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-3977 ((|#2| $) NIL (|has| |#2| (-6 (-4409 "*"))))) (-2013 (((-563) $) NIL)) (-3650 (((-563) $) NIL)) (-2259 (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-1859 (((-563) $) NIL)) (-2207 (((-563) $) NIL)) (-4038 (($ (-640 (-640 |#2|))) NIL)) (-4345 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-4136 (((-640 (-640 |#2|)) $) NIL)) (-3308 (((-112)) NIL)) (-3104 (((-112)) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-2284 (((-3 (-2 (|:| |particular| $) (|:| -4315 (-640 $))) "failed")) NIL (|has| |#2| (-555)))) (-2508 (((-3 $ "failed")) NIL (|has| |#2| (-555)))) (-2328 (((-684 |#2|)) NIL) (((-684 |#2|) (-1257 $)) NIL)) (-2842 ((|#2| $) NIL)) (-1823 (((-684 |#2|) $) NIL) (((-684 |#2|) $ (-1257 $)) NIL)) (-3856 (((-3 $ "failed") $) NIL (|has| |#2| (-555)))) (-3594 (((-1165 (-948 |#2|))) NIL (|has| |#2| (-363)))) (-1494 (($ $ (-917)) NIL)) (-2199 ((|#2| $) NIL)) (-2604 (((-1165 |#2|) $) NIL (|has| |#2| (-555)))) (-4111 ((|#2|) NIL) ((|#2| (-1257 $)) NIL)) (-2665 (((-1165 |#2|) $) NIL)) (-4012 (((-112)) NIL)) (-3573 (((-1151) $) NIL)) (-2136 (((-112)) NIL)) (-1789 (((-112)) NIL)) (-2047 (((-112)) NIL)) (-2591 (((-3 $ "failed") $) NIL (|has| |#2| (-363)))) (-1694 (((-1113) $) NIL)) (-4084 (((-112)) NIL)) (-3008 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555)))) (-3138 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#2| $ (-563) (-563) |#2|) NIL) ((|#2| $ (-563) (-563)) 22) ((|#2| $ (-563)) NIL)) (-4202 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-3327 ((|#2| $) NIL)) (-2104 (($ (-640 |#2|)) NIL)) (-2717 (((-112) $) NIL)) (-3154 (((-240 |#1| |#2|) $) NIL)) (-3848 ((|#2| $) NIL (|has| |#2| (-6 (-4409 "*"))))) (-1709 (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-1872 (($ $) NIL)) (-1880 (((-684 |#2|) (-1257 $)) NIL) (((-1257 |#2|) $) NIL) (((-684 |#2|) (-1257 $) (-1257 $)) NIL) (((-1257 |#2|) $ (-1257 $)) 25)) (-2220 (($ (-1257 |#2|)) NIL) (((-1257 |#2|) $) NIL)) (-4152 (((-640 (-948 |#2|))) NIL) (((-640 (-948 |#2|)) (-1257 $)) NIL)) (-2146 (($ $ $) NIL)) (-1936 (((-112)) NIL)) (-1912 (((-240 |#1| |#2|) $ (-563)) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#2| (-1034 (-407 (-563))))) (($ |#2|) NIL) (((-684 |#2|) $) NIL)) (-1675 (((-767)) NIL)) (-4315 (((-1257 $)) 36)) (-2138 (((-640 (-1257 |#2|))) NIL (|has| |#2| (-555)))) (-1361 (($ $ $ $) NIL)) (-1402 (((-112)) NIL)) (-3726 (($ (-684 |#2|) $) NIL)) (-4383 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-3280 (((-112) $) NIL)) (-3399 (($ $ $) NIL)) (-2483 (((-112)) NIL)) (-3777 (((-112)) NIL)) (-2128 (((-112)) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#2| (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-240 |#1| |#2|) $ (-240 |#1| |#2|)) NIL) (((-240 |#1| |#2|) (-240 |#1| |#2|) $) NIL)) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
+((-3652 (*1 *1 *2) (-12 (-4 *1 (-661 *2)) (-4 *2 (-1208)))))
+(-13 (-1142 |t#1|) (-373 |t#1|) (-282 |t#1|) (-10 -8 (-15 -3652 ($ |t#1|))))
+(((-34) . T) ((-102) -4034 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-846)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-282 |#1|) . T) ((-373 |#1|) . T) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-846) |has| |#1| (-846)) ((-1006 |#1|) . T) ((-1093) -4034 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-1142 |#1|) . T) ((-1208) . T) ((-1245 |#1|) . T))
+((-3510 (((-640 (-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4013 (-640 (-1257 |#1|))))) (-640 (-640 |#1|)) (-640 (-1257 |#1|))) 22) (((-640 (-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4013 (-640 (-1257 |#1|))))) (-684 |#1|) (-640 (-1257 |#1|))) 21) (((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4013 (-640 (-1257 |#1|)))) (-640 (-640 |#1|)) (-1257 |#1|)) 18) (((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4013 (-640 (-1257 |#1|)))) (-684 |#1|) (-1257 |#1|)) 14)) (-2521 (((-767) (-684 |#1|) (-1257 |#1|)) 30)) (-2302 (((-3 (-1257 |#1|) "failed") (-684 |#1|) (-1257 |#1|)) 24)) (-1697 (((-112) (-684 |#1|) (-1257 |#1|)) 27)))
+(((-662 |#1|) (-10 -7 (-15 -3510 ((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4013 (-640 (-1257 |#1|)))) (-684 |#1|) (-1257 |#1|))) (-15 -3510 ((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4013 (-640 (-1257 |#1|)))) (-640 (-640 |#1|)) (-1257 |#1|))) (-15 -3510 ((-640 (-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4013 (-640 (-1257 |#1|))))) (-684 |#1|) (-640 (-1257 |#1|)))) (-15 -3510 ((-640 (-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4013 (-640 (-1257 |#1|))))) (-640 (-640 |#1|)) (-640 (-1257 |#1|)))) (-15 -2302 ((-3 (-1257 |#1|) "failed") (-684 |#1|) (-1257 |#1|))) (-15 -1697 ((-112) (-684 |#1|) (-1257 |#1|))) (-15 -2521 ((-767) (-684 |#1|) (-1257 |#1|)))) (-363)) (T -662))
+((-2521 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *5)) (-5 *4 (-1257 *5)) (-4 *5 (-363)) (-5 *2 (-767)) (-5 *1 (-662 *5)))) (-1697 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *5)) (-5 *4 (-1257 *5)) (-4 *5 (-363)) (-5 *2 (-112)) (-5 *1 (-662 *5)))) (-2302 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1257 *4)) (-5 *3 (-684 *4)) (-4 *4 (-363)) (-5 *1 (-662 *4)))) (-3510 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-640 *5))) (-4 *5 (-363)) (-5 *2 (-640 (-2 (|:| |particular| (-3 (-1257 *5) "failed")) (|:| -4013 (-640 (-1257 *5)))))) (-5 *1 (-662 *5)) (-5 *4 (-640 (-1257 *5))))) (-3510 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *5)) (-4 *5 (-363)) (-5 *2 (-640 (-2 (|:| |particular| (-3 (-1257 *5) "failed")) (|:| -4013 (-640 (-1257 *5)))))) (-5 *1 (-662 *5)) (-5 *4 (-640 (-1257 *5))))) (-3510 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-640 *5))) (-4 *5 (-363)) (-5 *2 (-2 (|:| |particular| (-3 (-1257 *5) "failed")) (|:| -4013 (-640 (-1257 *5))))) (-5 *1 (-662 *5)) (-5 *4 (-1257 *5)))) (-3510 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| |particular| (-3 (-1257 *5) "failed")) (|:| -4013 (-640 (-1257 *5))))) (-5 *1 (-662 *5)) (-5 *4 (-1257 *5)))))
+(-10 -7 (-15 -3510 ((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4013 (-640 (-1257 |#1|)))) (-684 |#1|) (-1257 |#1|))) (-15 -3510 ((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4013 (-640 (-1257 |#1|)))) (-640 (-640 |#1|)) (-1257 |#1|))) (-15 -3510 ((-640 (-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4013 (-640 (-1257 |#1|))))) (-684 |#1|) (-640 (-1257 |#1|)))) (-15 -3510 ((-640 (-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4013 (-640 (-1257 |#1|))))) (-640 (-640 |#1|)) (-640 (-1257 |#1|)))) (-15 -2302 ((-3 (-1257 |#1|) "failed") (-684 |#1|) (-1257 |#1|))) (-15 -1697 ((-112) (-684 |#1|) (-1257 |#1|))) (-15 -2521 ((-767) (-684 |#1|) (-1257 |#1|))))
+((-3510 (((-640 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4013 (-640 |#3|)))) |#4| (-640 |#3|)) 47) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4013 (-640 |#3|))) |#4| |#3|) 45)) (-2521 (((-767) |#4| |#3|) 17)) (-2302 (((-3 |#3| "failed") |#4| |#3|) 20)) (-1697 (((-112) |#4| |#3|) 13)))
+(((-663 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3510 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4013 (-640 |#3|))) |#4| |#3|)) (-15 -3510 ((-640 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4013 (-640 |#3|)))) |#4| (-640 |#3|))) (-15 -2302 ((-3 |#3| "failed") |#4| |#3|)) (-15 -1697 ((-112) |#4| |#3|)) (-15 -2521 ((-767) |#4| |#3|))) (-363) (-13 (-373 |#1|) (-10 -7 (-6 -4409))) (-13 (-373 |#1|) (-10 -7 (-6 -4409))) (-682 |#1| |#2| |#3|)) (T -663))
+((-2521 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4409)))) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4409)))) (-5 *2 (-767)) (-5 *1 (-663 *5 *6 *4 *3)) (-4 *3 (-682 *5 *6 *4)))) (-1697 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4409)))) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4409)))) (-5 *2 (-112)) (-5 *1 (-663 *5 *6 *4 *3)) (-4 *3 (-682 *5 *6 *4)))) (-2302 (*1 *2 *3 *2) (|partial| -12 (-4 *4 (-363)) (-4 *5 (-13 (-373 *4) (-10 -7 (-6 -4409)))) (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4409)))) (-5 *1 (-663 *4 *5 *2 *3)) (-4 *3 (-682 *4 *5 *2)))) (-3510 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4409)))) (-4 *7 (-13 (-373 *5) (-10 -7 (-6 -4409)))) (-5 *2 (-640 (-2 (|:| |particular| (-3 *7 "failed")) (|:| -4013 (-640 *7))))) (-5 *1 (-663 *5 *6 *7 *3)) (-5 *4 (-640 *7)) (-4 *3 (-682 *5 *6 *7)))) (-3510 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4409)))) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4409)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4)))) (-5 *1 (-663 *5 *6 *4 *3)) (-4 *3 (-682 *5 *6 *4)))))
+(-10 -7 (-15 -3510 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4013 (-640 |#3|))) |#4| |#3|)) (-15 -3510 ((-640 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4013 (-640 |#3|)))) |#4| (-640 |#3|))) (-15 -2302 ((-3 |#3| "failed") |#4| |#3|)) (-15 -1697 ((-112) |#4| |#3|)) (-15 -2521 ((-767) |#4| |#3|)))
+((-1711 (((-2 (|:| |particular| (-3 (-1257 (-407 |#4|)) "failed")) (|:| -4013 (-640 (-1257 (-407 |#4|))))) (-640 |#4|) (-640 |#3|)) 45)))
+(((-664 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1711 ((-2 (|:| |particular| (-3 (-1257 (-407 |#4|)) "failed")) (|:| -4013 (-640 (-1257 (-407 |#4|))))) (-640 |#4|) (-640 |#3|)))) (-555) (-789) (-846) (-945 |#1| |#2| |#3|)) (T -664))
+((-1711 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *7)) (-4 *7 (-846)) (-4 *8 (-945 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-5 *2 (-2 (|:| |particular| (-3 (-1257 (-407 *8)) "failed")) (|:| -4013 (-640 (-1257 (-407 *8)))))) (-5 *1 (-664 *5 *6 *7 *8)))))
+(-10 -7 (-15 -1711 ((-2 (|:| |particular| (-3 (-1257 (-407 |#4|)) "failed")) (|:| -4013 (-640 (-1257 (-407 |#4|))))) (-640 |#4|) (-640 |#3|))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3245 (((-3 $ "failed")) NIL (|has| |#2| (-555)))) (-1731 ((|#2| $) NIL)) (-3870 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-3749 (((-1257 (-684 |#2|))) NIL) (((-1257 (-684 |#2|)) (-1257 $)) NIL)) (-3893 (((-112) $) NIL)) (-4039 (((-1257 $)) 37)) (-3001 (((-112) $ (-767)) NIL)) (-2217 (($ |#2|) NIL)) (-2569 (($) NIL T CONST)) (-1940 (($ $) NIL (|has| |#2| (-307)))) (-1960 (((-240 |#1| |#2|) $ (-563)) NIL)) (-2288 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) NIL (|has| |#2| (-555)))) (-1914 (((-3 $ "failed")) NIL (|has| |#2| (-555)))) (-3410 (((-684 |#2|)) NIL) (((-684 |#2|) (-1257 $)) NIL)) (-4017 ((|#2| $) NIL)) (-3386 (((-684 |#2|) $) NIL) (((-684 |#2|) $ (-1257 $)) NIL)) (-3342 (((-3 $ "failed") $) NIL (|has| |#2| (-555)))) (-2214 (((-1165 (-948 |#2|))) NIL (|has| |#2| (-363)))) (-3376 (($ $ (-917)) NIL)) (-3995 ((|#2| $) NIL)) (-1938 (((-1165 |#2|) $) NIL (|has| |#2| (-555)))) (-3436 ((|#2|) NIL) ((|#2| (-1257 $)) NIL)) (-3973 (((-1165 |#2|) $) NIL)) (-3912 (((-112)) NIL)) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 |#2| "failed") $) NIL)) (-2057 (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) ((|#2| $) NIL)) (-3458 (($ (-1257 |#2|)) NIL) (($ (-1257 |#2|) (-1257 $)) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-2521 (((-767) $) NIL (|has| |#2| (-555))) (((-917)) 38)) (-4293 ((|#2| $ (-563) (-563)) NIL)) (-3879 (((-112)) NIL)) (-3617 (($ $ (-917)) NIL)) (-2658 (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-3401 (((-112) $) NIL)) (-1929 (((-767) $) NIL (|has| |#2| (-555)))) (-1917 (((-640 (-240 |#1| |#2|)) $) NIL (|has| |#2| (-555)))) (-2380 (((-767) $) NIL)) (-3843 (((-112)) NIL)) (-2391 (((-767) $) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2157 ((|#2| $) NIL (|has| |#2| (-6 (-4410 "*"))))) (-1995 (((-563) $) NIL)) (-1979 (((-563) $) NIL)) (-3523 (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-1986 (((-563) $) NIL)) (-1969 (((-563) $) NIL)) (-4040 (($ (-640 (-640 |#2|))) NIL)) (-4347 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-3734 (((-640 (-640 |#2|)) $) NIL)) (-3825 (((-112)) NIL)) (-3861 (((-112)) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-2299 (((-3 (-2 (|:| |particular| $) (|:| -4013 (-640 $))) "failed")) NIL (|has| |#2| (-555)))) (-1927 (((-3 $ "failed")) NIL (|has| |#2| (-555)))) (-3422 (((-684 |#2|)) NIL) (((-684 |#2|) (-1257 $)) NIL)) (-4028 ((|#2| $) NIL)) (-3398 (((-684 |#2|) $) NIL) (((-684 |#2|) $ (-1257 $)) NIL)) (-3353 (((-3 $ "failed") $) NIL (|has| |#2| (-555)))) (-2267 (((-1165 (-948 |#2|))) NIL (|has| |#2| (-363)))) (-3364 (($ $ (-917)) NIL)) (-4007 ((|#2| $) NIL)) (-3801 (((-1165 |#2|) $) NIL (|has| |#2| (-555)))) (-3447 ((|#2|) NIL) ((|#2| (-1257 $)) NIL)) (-3984 (((-1165 |#2|) $) NIL)) (-3923 (((-112)) NIL)) (-3854 (((-1151) $) NIL)) (-3832 (((-112)) NIL)) (-3852 (((-112)) NIL)) (-3868 (((-112)) NIL)) (-3694 (((-3 $ "failed") $) NIL (|has| |#2| (-363)))) (-1693 (((-1113) $) NIL)) (-3900 (((-112)) NIL)) (-3012 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555)))) (-1458 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#2| $ (-563) (-563) |#2|) NIL) ((|#2| $ (-563) (-563)) 22) ((|#2| $ (-563)) NIL)) (-4203 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-2183 ((|#2| $) NIL)) (-2206 (($ (-640 |#2|)) NIL)) (-3881 (((-112) $) NIL)) (-2195 (((-240 |#1| |#2|) $) NIL)) (-2168 ((|#2| $) NIL (|has| |#2| (-6 (-4410 "*"))))) (-1708 (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-1870 (($ $) NIL)) (-3759 (((-684 |#2|) (-1257 $)) NIL) (((-1257 |#2|) $) NIL) (((-684 |#2|) (-1257 $) (-1257 $)) NIL) (((-1257 |#2|) $ (-1257 $)) 25)) (-2219 (($ (-1257 |#2|)) NIL) (((-1257 |#2|) $) NIL)) (-2122 (((-640 (-948 |#2|))) NIL) (((-640 (-948 |#2|)) (-1257 $)) NIL)) (-1745 (($ $ $) NIL)) (-3963 (((-112)) NIL)) (-1950 (((-240 |#1| |#2|) $ (-563)) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#2| (-1034 (-407 (-563))))) (($ |#2|) NIL) (((-684 |#2|) $) NIL)) (-3914 (((-767)) NIL)) (-4013 (((-1257 $)) 36)) (-3813 (((-640 (-1257 |#2|))) NIL (|has| |#2| (-555)))) (-1756 (($ $ $ $) NIL)) (-3942 (((-112)) NIL)) (-3727 (($ (-684 |#2|) $) NIL)) (-1471 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-2005 (((-112) $) NIL)) (-1729 (($ $ $) NIL)) (-3952 (((-112)) NIL)) (-3933 (((-112)) NIL)) (-3891 (((-112)) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#2| (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-240 |#1| |#2|) $ (-240 |#1| |#2|)) NIL) (((-240 |#1| |#2|) (-240 |#1| |#2|) $) NIL)) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
(((-665 |#1| |#2|) (-13 (-1116 |#1| |#2| (-240 |#1| |#2|) (-240 |#1| |#2|)) (-610 (-684 |#2|)) (-417 |#2|)) (-917) (-172)) (T -665))
NIL
(-13 (-1116 |#1| |#2| (-240 |#1| |#2|) (-240 |#1| |#2|)) (-610 (-684 |#2|)) (-417 |#2|))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2666 (((-640 (-1128)) $) 10)) (-1693 (((-858) $) 18) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-666) (-13 (-1076) (-10 -8 (-15 -2666 ((-640 (-1128)) $))))) (T -666))
-((-2666 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-666)))))
-(-13 (-1076) (-10 -8 (-15 -2666 ((-640 (-1128)) $))))
-((-1677 (((-112) $ $) NIL)) (-3993 (((-640 |#1|) $) NIL)) (-1701 (($ $) 51)) (-4134 (((-112) $) NIL)) (-2131 (((-3 |#1| "failed") $) NIL)) (-2058 ((|#1| $) NIL)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-2101 (((-3 $ "failed") (-815 |#1|)) 23)) (-2123 (((-112) (-815 |#1|)) 15)) (-2782 (($ (-815 |#1|)) 24)) (-1550 (((-112) $ $) 29)) (-3415 (((-917) $) 36)) (-1686 (($ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2174 (((-640 $) (-815 |#1|)) 17)) (-1693 (((-858) $) 42) (($ |#1|) 33) (((-815 |#1|) $) 38) (((-672 |#1|) $) 43)) (-3494 (((-59 (-640 $)) (-640 |#1|) (-917)) 56)) (-1458 (((-640 $) (-640 |#1|) (-917)) 59)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 52)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 37)))
-(((-667 |#1|) (-13 (-846) (-1034 |#1|) (-10 -8 (-15 -4134 ((-112) $)) (-15 -1686 ($ $)) (-15 -1701 ($ $)) (-15 -3415 ((-917) $)) (-15 -1550 ((-112) $ $)) (-15 -1693 ((-815 |#1|) $)) (-15 -1693 ((-672 |#1|) $)) (-15 -2174 ((-640 $) (-815 |#1|))) (-15 -2123 ((-112) (-815 |#1|))) (-15 -2782 ($ (-815 |#1|))) (-15 -2101 ((-3 $ "failed") (-815 |#1|))) (-15 -3993 ((-640 |#1|) $)) (-15 -3494 ((-59 (-640 $)) (-640 |#1|) (-917))) (-15 -1458 ((-640 $) (-640 |#1|) (-917))))) (-846)) (T -667))
-((-4134 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-667 *3)) (-4 *3 (-846)))) (-1686 (*1 *1 *1) (-12 (-5 *1 (-667 *2)) (-4 *2 (-846)))) (-1701 (*1 *1 *1) (-12 (-5 *1 (-667 *2)) (-4 *2 (-846)))) (-3415 (*1 *2 *1) (-12 (-5 *2 (-917)) (-5 *1 (-667 *3)) (-4 *3 (-846)))) (-1550 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-667 *3)) (-4 *3 (-846)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-815 *3)) (-5 *1 (-667 *3)) (-4 *3 (-846)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-672 *3)) (-5 *1 (-667 *3)) (-4 *3 (-846)))) (-2174 (*1 *2 *3) (-12 (-5 *3 (-815 *4)) (-4 *4 (-846)) (-5 *2 (-640 (-667 *4))) (-5 *1 (-667 *4)))) (-2123 (*1 *2 *3) (-12 (-5 *3 (-815 *4)) (-4 *4 (-846)) (-5 *2 (-112)) (-5 *1 (-667 *4)))) (-2782 (*1 *1 *2) (-12 (-5 *2 (-815 *3)) (-4 *3 (-846)) (-5 *1 (-667 *3)))) (-2101 (*1 *1 *2) (|partial| -12 (-5 *2 (-815 *3)) (-4 *3 (-846)) (-5 *1 (-667 *3)))) (-3993 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-667 *3)) (-4 *3 (-846)))) (-3494 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *5)) (-5 *4 (-917)) (-4 *5 (-846)) (-5 *2 (-59 (-640 (-667 *5)))) (-5 *1 (-667 *5)))) (-1458 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *5)) (-5 *4 (-917)) (-4 *5 (-846)) (-5 *2 (-640 (-667 *5))) (-5 *1 (-667 *5)))))
-(-13 (-846) (-1034 |#1|) (-10 -8 (-15 -4134 ((-112) $)) (-15 -1686 ($ $)) (-15 -1701 ($ $)) (-15 -3415 ((-917) $)) (-15 -1550 ((-112) $ $)) (-15 -1693 ((-815 |#1|) $)) (-15 -1693 ((-672 |#1|) $)) (-15 -2174 ((-640 $) (-815 |#1|))) (-15 -2123 ((-112) (-815 |#1|))) (-15 -2782 ($ (-815 |#1|))) (-15 -2101 ((-3 $ "failed") (-815 |#1|))) (-15 -3993 ((-640 |#1|) $)) (-15 -3494 ((-59 (-640 $)) (-640 |#1|) (-917))) (-15 -1458 ((-640 $) (-640 |#1|) (-917)))))
-((-2619 ((|#2| $) 76)) (-4302 (($ $) 96)) (-2759 (((-112) $ (-767)) 26)) (-3792 (($ $) 85) (($ $ (-767)) 88)) (-2018 (((-112) $) 97)) (-2071 (((-640 $) $) 72)) (-1469 (((-112) $ $) 71)) (-2581 (((-112) $ (-767)) 24)) (-2411 (((-563) $) 46)) (-3860 (((-563) $) 45)) (-2382 (((-112) $ (-767)) 22)) (-2194 (((-112) $) 74)) (-1481 ((|#2| $) 89) (($ $ (-767)) 92)) (-3396 (($ $ $ (-563)) 62) (($ |#2| $ (-563)) 61)) (-4318 (((-640 (-563)) $) 44)) (-3192 (((-112) (-563) $) 42)) (-3781 ((|#2| $) NIL) (($ $ (-767)) 84)) (-3320 (($ $ (-563)) 99)) (-2833 (((-112) $) 98)) (-3138 (((-112) (-1 (-112) |#2|) $) 32)) (-2836 (((-640 |#2|) $) 33)) (-2309 ((|#2| $ "value") NIL) ((|#2| $ "first") 83) (($ $ "rest") 87) ((|#2| $ "last") 95) (($ $ (-1224 (-563))) 58) ((|#2| $ (-563)) 40) ((|#2| $ (-563) |#2|) 41)) (-4071 (((-563) $ $) 70)) (-2963 (($ $ (-1224 (-563))) 57) (($ $ (-563)) 51)) (-1434 (((-112) $) 66)) (-2749 (($ $) 81)) (-1950 (((-767) $) 80)) (-3752 (($ $) 79)) (-1707 (($ (-640 |#2|)) 37)) (-1741 (($ $) 100)) (-4258 (((-640 $) $) 69)) (-2962 (((-112) $ $) 68)) (-4383 (((-112) (-1 (-112) |#2|) $) 31)) (-1718 (((-112) $ $) 18)) (-3608 (((-767) $) 29)))
-(((-668 |#1| |#2|) (-10 -8 (-15 -1741 (|#1| |#1|)) (-15 -3320 (|#1| |#1| (-563))) (-15 -2018 ((-112) |#1|)) (-15 -2833 ((-112) |#1|)) (-15 -2309 (|#2| |#1| (-563) |#2|)) (-15 -2309 (|#2| |#1| (-563))) (-15 -2836 ((-640 |#2|) |#1|)) (-15 -3192 ((-112) (-563) |#1|)) (-15 -4318 ((-640 (-563)) |#1|)) (-15 -3860 ((-563) |#1|)) (-15 -2411 ((-563) |#1|)) (-15 -1707 (|#1| (-640 |#2|))) (-15 -2309 (|#1| |#1| (-1224 (-563)))) (-15 -2963 (|#1| |#1| (-563))) (-15 -2963 (|#1| |#1| (-1224 (-563)))) (-15 -3396 (|#1| |#2| |#1| (-563))) (-15 -3396 (|#1| |#1| |#1| (-563))) (-15 -2749 (|#1| |#1|)) (-15 -1950 ((-767) |#1|)) (-15 -3752 (|#1| |#1|)) (-15 -4302 (|#1| |#1|)) (-15 -1481 (|#1| |#1| (-767))) (-15 -2309 (|#2| |#1| "last")) (-15 -1481 (|#2| |#1|)) (-15 -3792 (|#1| |#1| (-767))) (-15 -2309 (|#1| |#1| "rest")) (-15 -3792 (|#1| |#1|)) (-15 -3781 (|#1| |#1| (-767))) (-15 -2309 (|#2| |#1| "first")) (-15 -3781 (|#2| |#1|)) (-15 -1469 ((-112) |#1| |#1|)) (-15 -2962 ((-112) |#1| |#1|)) (-15 -4071 ((-563) |#1| |#1|)) (-15 -1434 ((-112) |#1|)) (-15 -2309 (|#2| |#1| "value")) (-15 -2619 (|#2| |#1|)) (-15 -2194 ((-112) |#1|)) (-15 -2071 ((-640 |#1|) |#1|)) (-15 -4258 ((-640 |#1|) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -3138 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4383 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3608 ((-767) |#1|)) (-15 -2759 ((-112) |#1| (-767))) (-15 -2581 ((-112) |#1| (-767))) (-15 -2382 ((-112) |#1| (-767)))) (-669 |#2|) (-1208)) (T -668))
-NIL
-(-10 -8 (-15 -1741 (|#1| |#1|)) (-15 -3320 (|#1| |#1| (-563))) (-15 -2018 ((-112) |#1|)) (-15 -2833 ((-112) |#1|)) (-15 -2309 (|#2| |#1| (-563) |#2|)) (-15 -2309 (|#2| |#1| (-563))) (-15 -2836 ((-640 |#2|) |#1|)) (-15 -3192 ((-112) (-563) |#1|)) (-15 -4318 ((-640 (-563)) |#1|)) (-15 -3860 ((-563) |#1|)) (-15 -2411 ((-563) |#1|)) (-15 -1707 (|#1| (-640 |#2|))) (-15 -2309 (|#1| |#1| (-1224 (-563)))) (-15 -2963 (|#1| |#1| (-563))) (-15 -2963 (|#1| |#1| (-1224 (-563)))) (-15 -3396 (|#1| |#2| |#1| (-563))) (-15 -3396 (|#1| |#1| |#1| (-563))) (-15 -2749 (|#1| |#1|)) (-15 -1950 ((-767) |#1|)) (-15 -3752 (|#1| |#1|)) (-15 -4302 (|#1| |#1|)) (-15 -1481 (|#1| |#1| (-767))) (-15 -2309 (|#2| |#1| "last")) (-15 -1481 (|#2| |#1|)) (-15 -3792 (|#1| |#1| (-767))) (-15 -2309 (|#1| |#1| "rest")) (-15 -3792 (|#1| |#1|)) (-15 -3781 (|#1| |#1| (-767))) (-15 -2309 (|#2| |#1| "first")) (-15 -3781 (|#2| |#1|)) (-15 -1469 ((-112) |#1| |#1|)) (-15 -2962 ((-112) |#1| |#1|)) (-15 -4071 ((-563) |#1| |#1|)) (-15 -1434 ((-112) |#1|)) (-15 -2309 (|#2| |#1| "value")) (-15 -2619 (|#2| |#1|)) (-15 -2194 ((-112) |#1|)) (-15 -2071 ((-640 |#1|) |#1|)) (-15 -4258 ((-640 |#1|) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -3138 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4383 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3608 ((-767) |#1|)) (-15 -2759 ((-112) |#1| (-767))) (-15 -2581 ((-112) |#1| (-767))) (-15 -2382 ((-112) |#1| (-767))))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2619 ((|#1| $) 48)) (-3442 ((|#1| $) 65)) (-4302 (($ $) 67)) (-4378 (((-1262) $ (-563) (-563)) 97 (|has| $ (-6 -4408)))) (-1624 (($ $ (-563)) 52 (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) 8)) (-2936 ((|#1| $ |#1|) 39 (|has| $ (-6 -4408)))) (-3692 (($ $ $) 56 (|has| $ (-6 -4408)))) (-3889 ((|#1| $ |#1|) 54 (|has| $ (-6 -4408)))) (-1543 ((|#1| $ |#1|) 58 (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4408))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4408))) (($ $ "rest" $) 55 (|has| $ (-6 -4408))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) 117 (|has| $ (-6 -4408))) ((|#1| $ (-563) |#1|) 86 (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) 41 (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) |#1|) $) 102)) (-3431 ((|#1| $) 66)) (-4239 (($) 7 T CONST)) (-2310 (($ $) 124)) (-3792 (($ $) 73) (($ $ (-767)) 71)) (-3813 (($ $) 99 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ |#1| $) 100 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#1|) $) 103)) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4355 ((|#1| $ (-563) |#1|) 85 (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) 87)) (-2018 (((-112) $) 83)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2808 (((-767) $) 123)) (-2071 (((-640 $) $) 50)) (-1469 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-1566 (($ (-767) |#1|) 108)) (-2581 (((-112) $ (-767)) 9)) (-2411 (((-563) $) 95 (|has| (-563) (-846)))) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-3860 (((-563) $) 94 (|has| (-563) (-846)))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-2382 (((-112) $ (-767)) 10)) (-2512 (((-640 |#1|) $) 45)) (-2194 (((-112) $) 49)) (-1785 (($ $) 126)) (-3858 (((-112) $) 127)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1481 ((|#1| $) 70) (($ $ (-767)) 68)) (-3396 (($ $ $ (-563)) 116) (($ |#1| $ (-563)) 115)) (-4318 (((-640 (-563)) $) 92)) (-3192 (((-112) (-563) $) 91)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-2548 ((|#1| $) 125)) (-3781 ((|#1| $) 76) (($ $ (-767)) 74)) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-2358 (($ $ |#1|) 96 (|has| $ (-6 -4408)))) (-3320 (($ $ (-563)) 122)) (-2833 (((-112) $) 84)) (-4122 (((-112) $) 128)) (-3063 (((-112) $) 129)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-2105 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) 90)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1224 (-563))) 112) ((|#1| $ (-563)) 89) ((|#1| $ (-563) |#1|) 88)) (-4071 (((-563) $ $) 44)) (-2963 (($ $ (-1224 (-563))) 114) (($ $ (-563)) 113)) (-1434 (((-112) $) 46)) (-2749 (($ $) 62)) (-1322 (($ $) 59 (|has| $ (-6 -4408)))) (-1950 (((-767) $) 63)) (-3752 (($ $) 64)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-2220 (((-536) $) 98 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 107)) (-3245 (($ $ $) 61 (|has| $ (-6 -4408))) (($ $ |#1|) 60 (|has| $ (-6 -4408)))) (-2853 (($ $ $) 78) (($ |#1| $) 77) (($ (-640 $)) 110) (($ $ |#1|) 109)) (-1741 (($ $) 121)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) 51)) (-2962 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2694 (((-640 (-1128)) $) 10)) (-1692 (((-858) $) 18) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-666) (-13 (-1076) (-10 -8 (-15 -2694 ((-640 (-1128)) $))))) (T -666))
+((-2694 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-666)))))
+(-13 (-1076) (-10 -8 (-15 -2694 ((-640 (-1128)) $))))
+((-1677 (((-112) $ $) NIL)) (-3994 (((-640 |#1|) $) NIL)) (-1700 (($ $) 51)) (-2882 (((-112) $) NIL)) (-2130 (((-3 |#1| "failed") $) NIL)) (-2057 ((|#1| $) NIL)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-1749 (((-3 $ "failed") (-815 |#1|)) 23)) (-1772 (((-112) (-815 |#1|)) 15)) (-1760 (($ (-815 |#1|)) 24)) (-1396 (((-112) $ $) 29)) (-3419 (((-917) $) 36)) (-1685 (($ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2173 (((-640 $) (-815 |#1|)) 17)) (-1692 (((-858) $) 42) (($ |#1|) 33) (((-815 |#1|) $) 38) (((-672 |#1|) $) 43)) (-1737 (((-59 (-640 $)) (-640 |#1|) (-917)) 56)) (-1723 (((-640 $) (-640 |#1|) (-917)) 59)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 52)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 37)))
+(((-667 |#1|) (-13 (-846) (-1034 |#1|) (-10 -8 (-15 -2882 ((-112) $)) (-15 -1685 ($ $)) (-15 -1700 ($ $)) (-15 -3419 ((-917) $)) (-15 -1396 ((-112) $ $)) (-15 -1692 ((-815 |#1|) $)) (-15 -1692 ((-672 |#1|) $)) (-15 -2173 ((-640 $) (-815 |#1|))) (-15 -1772 ((-112) (-815 |#1|))) (-15 -1760 ($ (-815 |#1|))) (-15 -1749 ((-3 $ "failed") (-815 |#1|))) (-15 -3994 ((-640 |#1|) $)) (-15 -1737 ((-59 (-640 $)) (-640 |#1|) (-917))) (-15 -1723 ((-640 $) (-640 |#1|) (-917))))) (-846)) (T -667))
+((-2882 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-667 *3)) (-4 *3 (-846)))) (-1685 (*1 *1 *1) (-12 (-5 *1 (-667 *2)) (-4 *2 (-846)))) (-1700 (*1 *1 *1) (-12 (-5 *1 (-667 *2)) (-4 *2 (-846)))) (-3419 (*1 *2 *1) (-12 (-5 *2 (-917)) (-5 *1 (-667 *3)) (-4 *3 (-846)))) (-1396 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-667 *3)) (-4 *3 (-846)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-815 *3)) (-5 *1 (-667 *3)) (-4 *3 (-846)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-672 *3)) (-5 *1 (-667 *3)) (-4 *3 (-846)))) (-2173 (*1 *2 *3) (-12 (-5 *3 (-815 *4)) (-4 *4 (-846)) (-5 *2 (-640 (-667 *4))) (-5 *1 (-667 *4)))) (-1772 (*1 *2 *3) (-12 (-5 *3 (-815 *4)) (-4 *4 (-846)) (-5 *2 (-112)) (-5 *1 (-667 *4)))) (-1760 (*1 *1 *2) (-12 (-5 *2 (-815 *3)) (-4 *3 (-846)) (-5 *1 (-667 *3)))) (-1749 (*1 *1 *2) (|partial| -12 (-5 *2 (-815 *3)) (-4 *3 (-846)) (-5 *1 (-667 *3)))) (-3994 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-667 *3)) (-4 *3 (-846)))) (-1737 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *5)) (-5 *4 (-917)) (-4 *5 (-846)) (-5 *2 (-59 (-640 (-667 *5)))) (-5 *1 (-667 *5)))) (-1723 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *5)) (-5 *4 (-917)) (-4 *5 (-846)) (-5 *2 (-640 (-667 *5))) (-5 *1 (-667 *5)))))
+(-13 (-846) (-1034 |#1|) (-10 -8 (-15 -2882 ((-112) $)) (-15 -1685 ($ $)) (-15 -1700 ($ $)) (-15 -3419 ((-917) $)) (-15 -1396 ((-112) $ $)) (-15 -1692 ((-815 |#1|) $)) (-15 -1692 ((-672 |#1|) $)) (-15 -2173 ((-640 $) (-815 |#1|))) (-15 -1772 ((-112) (-815 |#1|))) (-15 -1760 ($ (-815 |#1|))) (-15 -1749 ((-3 $ "failed") (-815 |#1|))) (-15 -3994 ((-640 |#1|) $)) (-15 -1737 ((-59 (-640 $)) (-640 |#1|) (-917))) (-15 -1723 ((-640 $) (-640 |#1|) (-917)))))
+((-2618 ((|#2| $) 76)) (-4303 (($ $) 96)) (-3001 (((-112) $ (-767)) 26)) (-3793 (($ $) 85) (($ $ (-767)) 88)) (-1966 (((-112) $) 97)) (-2390 (((-640 $) $) 72)) (-2358 (((-112) $ $) 71)) (-2514 (((-112) $ (-767)) 24)) (-2236 (((-563) $) 46)) (-2251 (((-563) $) 45)) (-2481 (((-112) $ (-767)) 22)) (-1298 (((-112) $) 74)) (-1481 ((|#2| $) 89) (($ $ (-767)) 92)) (-3399 (($ $ $ (-563)) 62) (($ |#2| $ (-563)) 61)) (-2272 (((-640 (-563)) $) 44)) (-2282 (((-112) (-563) $) 42)) (-3782 ((|#2| $) NIL) (($ $ (-767)) 84)) (-1751 (($ $ (-563)) 99)) (-1976 (((-112) $) 98)) (-1458 (((-112) (-1 (-112) |#2|) $) 32)) (-2295 (((-640 |#2|) $) 33)) (-2308 ((|#2| $ "value") NIL) ((|#2| $ "first") 83) (($ $ "rest") 87) ((|#2| $ "last") 95) (($ $ (-1224 (-563))) 58) ((|#2| $ (-563)) 40) ((|#2| $ (-563) |#2|) 41)) (-2379 (((-563) $ $) 70)) (-2967 (($ $ (-1224 (-563))) 57) (($ $ (-563)) 51)) (-2889 (((-112) $) 66)) (-1951 (($ $) 81)) (-1961 (((-767) $) 80)) (-1970 (($ $) 79)) (-1706 (($ (-640 |#2|)) 37)) (-3369 (($ $) 100)) (-4345 (((-640 $) $) 69)) (-2367 (((-112) $ $) 68)) (-1471 (((-112) (-1 (-112) |#2|) $) 31)) (-1718 (((-112) $ $) 18)) (-3610 (((-767) $) 29)))
+(((-668 |#1| |#2|) (-10 -8 (-15 -3369 (|#1| |#1|)) (-15 -1751 (|#1| |#1| (-563))) (-15 -1966 ((-112) |#1|)) (-15 -1976 ((-112) |#1|)) (-15 -2308 (|#2| |#1| (-563) |#2|)) (-15 -2308 (|#2| |#1| (-563))) (-15 -2295 ((-640 |#2|) |#1|)) (-15 -2282 ((-112) (-563) |#1|)) (-15 -2272 ((-640 (-563)) |#1|)) (-15 -2251 ((-563) |#1|)) (-15 -2236 ((-563) |#1|)) (-15 -1706 (|#1| (-640 |#2|))) (-15 -2308 (|#1| |#1| (-1224 (-563)))) (-15 -2967 (|#1| |#1| (-563))) (-15 -2967 (|#1| |#1| (-1224 (-563)))) (-15 -3399 (|#1| |#2| |#1| (-563))) (-15 -3399 (|#1| |#1| |#1| (-563))) (-15 -1951 (|#1| |#1|)) (-15 -1961 ((-767) |#1|)) (-15 -1970 (|#1| |#1|)) (-15 -4303 (|#1| |#1|)) (-15 -1481 (|#1| |#1| (-767))) (-15 -2308 (|#2| |#1| "last")) (-15 -1481 (|#2| |#1|)) (-15 -3793 (|#1| |#1| (-767))) (-15 -2308 (|#1| |#1| "rest")) (-15 -3793 (|#1| |#1|)) (-15 -3782 (|#1| |#1| (-767))) (-15 -2308 (|#2| |#1| "first")) (-15 -3782 (|#2| |#1|)) (-15 -2358 ((-112) |#1| |#1|)) (-15 -2367 ((-112) |#1| |#1|)) (-15 -2379 ((-563) |#1| |#1|)) (-15 -2889 ((-112) |#1|)) (-15 -2308 (|#2| |#1| "value")) (-15 -2618 (|#2| |#1|)) (-15 -1298 ((-112) |#1|)) (-15 -2390 ((-640 |#1|) |#1|)) (-15 -4345 ((-640 |#1|) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -1458 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1471 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3610 ((-767) |#1|)) (-15 -3001 ((-112) |#1| (-767))) (-15 -2514 ((-112) |#1| (-767))) (-15 -2481 ((-112) |#1| (-767)))) (-669 |#2|) (-1208)) (T -668))
+NIL
+(-10 -8 (-15 -3369 (|#1| |#1|)) (-15 -1751 (|#1| |#1| (-563))) (-15 -1966 ((-112) |#1|)) (-15 -1976 ((-112) |#1|)) (-15 -2308 (|#2| |#1| (-563) |#2|)) (-15 -2308 (|#2| |#1| (-563))) (-15 -2295 ((-640 |#2|) |#1|)) (-15 -2282 ((-112) (-563) |#1|)) (-15 -2272 ((-640 (-563)) |#1|)) (-15 -2251 ((-563) |#1|)) (-15 -2236 ((-563) |#1|)) (-15 -1706 (|#1| (-640 |#2|))) (-15 -2308 (|#1| |#1| (-1224 (-563)))) (-15 -2967 (|#1| |#1| (-563))) (-15 -2967 (|#1| |#1| (-1224 (-563)))) (-15 -3399 (|#1| |#2| |#1| (-563))) (-15 -3399 (|#1| |#1| |#1| (-563))) (-15 -1951 (|#1| |#1|)) (-15 -1961 ((-767) |#1|)) (-15 -1970 (|#1| |#1|)) (-15 -4303 (|#1| |#1|)) (-15 -1481 (|#1| |#1| (-767))) (-15 -2308 (|#2| |#1| "last")) (-15 -1481 (|#2| |#1|)) (-15 -3793 (|#1| |#1| (-767))) (-15 -2308 (|#1| |#1| "rest")) (-15 -3793 (|#1| |#1|)) (-15 -3782 (|#1| |#1| (-767))) (-15 -2308 (|#2| |#1| "first")) (-15 -3782 (|#2| |#1|)) (-15 -2358 ((-112) |#1| |#1|)) (-15 -2367 ((-112) |#1| |#1|)) (-15 -2379 ((-563) |#1| |#1|)) (-15 -2889 ((-112) |#1|)) (-15 -2308 (|#2| |#1| "value")) (-15 -2618 (|#2| |#1|)) (-15 -1298 ((-112) |#1|)) (-15 -2390 ((-640 |#1|) |#1|)) (-15 -4345 ((-640 |#1|) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -1458 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1471 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3610 ((-767) |#1|)) (-15 -3001 ((-112) |#1| (-767))) (-15 -2514 ((-112) |#1| (-767))) (-15 -2481 ((-112) |#1| (-767))))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2618 ((|#1| $) 48)) (-3446 ((|#1| $) 65)) (-4303 (($ $) 67)) (-2208 (((-1262) $ (-563) (-563)) 97 (|has| $ (-6 -4409)))) (-1887 (($ $ (-563)) 52 (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) 8)) (-2336 ((|#1| $ |#1|) 39 (|has| $ (-6 -4409)))) (-1909 (($ $ $) 56 (|has| $ (-6 -4409)))) (-1898 ((|#1| $ |#1|) 54 (|has| $ (-6 -4409)))) (-1919 ((|#1| $ |#1|) 58 (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4409))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4409))) (($ $ "rest" $) 55 (|has| $ (-6 -4409))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) 117 (|has| $ (-6 -4409))) ((|#1| $ (-563) |#1|) 86 (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) 41 (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) |#1|) $) 102)) (-3435 ((|#1| $) 66)) (-2569 (($) 7 T CONST)) (-1796 (($ $) 124)) (-3793 (($ $) 73) (($ $ (-767)) 71)) (-3814 (($ $) 99 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ |#1| $) 100 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#1|) $) 103)) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4356 ((|#1| $ (-563) |#1|) 85 (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) 87)) (-1966 (((-112) $) 83)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-1785 (((-767) $) 123)) (-2390 (((-640 $) $) 50)) (-2358 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-1565 (($ (-767) |#1|) 108)) (-2514 (((-112) $ (-767)) 9)) (-2236 (((-563) $) 95 (|has| (-563) (-846)))) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-2251 (((-563) $) 94 (|has| (-563) (-846)))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-2481 (((-112) $ (-767)) 10)) (-2511 (((-640 |#1|) $) 45)) (-1298 (((-112) $) 49)) (-1819 (($ $) 126)) (-1830 (((-112) $) 127)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1481 ((|#1| $) 70) (($ $ (-767)) 68)) (-3399 (($ $ $ (-563)) 116) (($ |#1| $ (-563)) 115)) (-2272 (((-640 (-563)) $) 92)) (-2282 (((-112) (-563) $) 91)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-1807 ((|#1| $) 125)) (-3782 ((|#1| $) 76) (($ $ (-767)) 74)) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-2221 (($ $ |#1|) 96 (|has| $ (-6 -4409)))) (-1751 (($ $ (-563)) 122)) (-1976 (((-112) $) 84)) (-1841 (((-112) $) 128)) (-1852 (((-112) $) 129)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) 90)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1224 (-563))) 112) ((|#1| $ (-563)) 89) ((|#1| $ (-563) |#1|) 88)) (-2379 (((-563) $ $) 44)) (-2967 (($ $ (-1224 (-563))) 114) (($ $ (-563)) 113)) (-2889 (((-112) $) 46)) (-1951 (($ $) 62)) (-1930 (($ $) 59 (|has| $ (-6 -4409)))) (-1961 (((-767) $) 63)) (-1970 (($ $) 64)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-2219 (((-536) $) 98 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 107)) (-1941 (($ $ $) 61 (|has| $ (-6 -4409))) (($ $ |#1|) 60 (|has| $ (-6 -4409)))) (-2857 (($ $ $) 78) (($ |#1| $) 77) (($ (-640 $)) 110) (($ $ |#1|) 109)) (-3369 (($ $) 121)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) 51)) (-2367 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-669 |#1|) (-140) (-1208)) (T -669))
-((-1459 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-669 *3)) (-4 *3 (-1208)))) (-2256 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-669 *3)) (-4 *3 (-1208)))) (-3063 (*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))) (-4122 (*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))) (-3858 (*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))) (-1785 (*1 *1 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208)))) (-2548 (*1 *2 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208)))) (-2310 (*1 *1 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208)))) (-2808 (*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-767)))) (-3320 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-669 *3)) (-4 *3 (-1208)))) (-1741 (*1 *1 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208)))))
-(-13 (-1142 |t#1|) (-10 -8 (-15 -1459 ($ (-1 (-112) |t#1|) $)) (-15 -2256 ($ (-1 (-112) |t#1|) $)) (-15 -3063 ((-112) $)) (-15 -4122 ((-112) $)) (-15 -3858 ((-112) $)) (-15 -1785 ($ $)) (-15 -2548 (|t#1| $)) (-15 -2310 ($ $)) (-15 -2808 ((-767) $)) (-15 -3320 ($ $ (-563))) (-15 -1741 ($ $))))
-(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-1006 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1142 |#1|) . T) ((-1208) . T) ((-1245 |#1|) . T))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4255 (($ (-767) (-767) (-767)) 33 (|has| |#1| (-1045)))) (-2759 (((-112) $ (-767)) NIL)) (-3739 ((|#1| $ (-767) (-767) (-767) |#1|) 27)) (-4239 (($) NIL T CONST)) (-4139 (($ $ $) 37 (|has| |#1| (-1045)))) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2988 (((-1257 (-767)) $) 9)) (-1436 (($ (-1169) $ $) 22)) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3073 (($ (-767)) 35 (|has| |#1| (-1045)))) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#1| $ (-767) (-767) (-767)) 25)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) NIL)) (-1707 (($ (-640 (-640 (-640 |#1|)))) 44)) (-1693 (($ (-954 (-954 (-954 |#1|)))) 15) (((-954 (-954 (-954 |#1|))) $) 12) (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-670 |#1|) (-13 (-489 |#1|) (-10 -8 (IF (|has| |#1| (-1045)) (PROGN (-15 -4255 ($ (-767) (-767) (-767))) (-15 -3073 ($ (-767))) (-15 -4139 ($ $ $))) |%noBranch|) (-15 -1707 ($ (-640 (-640 (-640 |#1|))))) (-15 -2309 (|#1| $ (-767) (-767) (-767))) (-15 -3739 (|#1| $ (-767) (-767) (-767) |#1|)) (-15 -1693 ($ (-954 (-954 (-954 |#1|))))) (-15 -1693 ((-954 (-954 (-954 |#1|))) $)) (-15 -1436 ($ (-1169) $ $)) (-15 -2988 ((-1257 (-767)) $)))) (-1093)) (T -670))
-((-4255 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-767)) (-5 *1 (-670 *3)) (-4 *3 (-1045)) (-4 *3 (-1093)))) (-3073 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-670 *3)) (-4 *3 (-1045)) (-4 *3 (-1093)))) (-4139 (*1 *1 *1 *1) (-12 (-5 *1 (-670 *2)) (-4 *2 (-1045)) (-4 *2 (-1093)))) (-1707 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 (-640 *3)))) (-4 *3 (-1093)) (-5 *1 (-670 *3)))) (-2309 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-767)) (-5 *1 (-670 *2)) (-4 *2 (-1093)))) (-3739 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-670 *2)) (-4 *2 (-1093)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-954 (-954 (-954 *3)))) (-4 *3 (-1093)) (-5 *1 (-670 *3)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-954 (-954 (-954 *3)))) (-5 *1 (-670 *3)) (-4 *3 (-1093)))) (-1436 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-670 *3)) (-4 *3 (-1093)))) (-2988 (*1 *2 *1) (-12 (-5 *2 (-1257 (-767))) (-5 *1 (-670 *3)) (-4 *3 (-1093)))))
-(-13 (-489 |#1|) (-10 -8 (IF (|has| |#1| (-1045)) (PROGN (-15 -4255 ($ (-767) (-767) (-767))) (-15 -3073 ($ (-767))) (-15 -4139 ($ $ $))) |%noBranch|) (-15 -1707 ($ (-640 (-640 (-640 |#1|))))) (-15 -2309 (|#1| $ (-767) (-767) (-767))) (-15 -3739 (|#1| $ (-767) (-767) (-767) |#1|)) (-15 -1693 ($ (-954 (-954 (-954 |#1|))))) (-15 -1693 ((-954 (-954 (-954 |#1|))) $)) (-15 -1436 ($ (-1169) $ $)) (-15 -2988 ((-1257 (-767)) $))))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-2917 (((-483) $) 10)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 21) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3359 (((-1128) $) 12)) (-1718 (((-112) $ $) NIL)))
-(((-671) (-13 (-1076) (-10 -8 (-15 -2917 ((-483) $)) (-15 -3359 ((-1128) $))))) (T -671))
-((-2917 (*1 *2 *1) (-12 (-5 *2 (-483)) (-5 *1 (-671)))) (-3359 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-671)))))
-(-13 (-1076) (-10 -8 (-15 -2917 ((-483) $)) (-15 -3359 ((-1128) $))))
-((-1677 (((-112) $ $) NIL)) (-3993 (((-640 |#1|) $) 14)) (-1701 (($ $) 18)) (-4134 (((-112) $) 19)) (-2131 (((-3 |#1| "failed") $) 22)) (-2058 ((|#1| $) 20)) (-3792 (($ $) 36)) (-4337 (($ $) 24)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-1550 (((-112) $ $) 41)) (-3415 (((-917) $) 38)) (-1686 (($ $) 17)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3781 ((|#1| $) 35)) (-1693 (((-858) $) 31) (($ |#1|) 23) (((-815 |#1|) $) 27)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 12)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 40)) (* (($ $ $) 34)))
-(((-672 |#1|) (-13 (-846) (-1034 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -1693 ((-815 |#1|) $)) (-15 -3781 (|#1| $)) (-15 -1686 ($ $)) (-15 -3415 ((-917) $)) (-15 -1550 ((-112) $ $)) (-15 -4337 ($ $)) (-15 -3792 ($ $)) (-15 -4134 ((-112) $)) (-15 -1701 ($ $)) (-15 -3993 ((-640 |#1|) $)))) (-846)) (T -672))
-((* (*1 *1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-815 *3)) (-5 *1 (-672 *3)) (-4 *3 (-846)))) (-3781 (*1 *2 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846)))) (-1686 (*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846)))) (-3415 (*1 *2 *1) (-12 (-5 *2 (-917)) (-5 *1 (-672 *3)) (-4 *3 (-846)))) (-1550 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-846)))) (-4337 (*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846)))) (-3792 (*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846)))) (-4134 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-846)))) (-1701 (*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846)))) (-3993 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-672 *3)) (-4 *3 (-846)))))
-(-13 (-846) (-1034 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -1693 ((-815 |#1|) $)) (-15 -3781 (|#1| $)) (-15 -1686 ($ $)) (-15 -3415 ((-917) $)) (-15 -1550 ((-112) $ $)) (-15 -4337 ($ $)) (-15 -3792 ($ $)) (-15 -4134 ((-112) $)) (-15 -1701 ($ $)) (-15 -3993 ((-640 |#1|) $))))
-((-3350 ((|#1| (-1 |#1| (-767) |#1|) (-767) |#1|) 11)) (-1431 ((|#1| (-1 |#1| |#1|) (-767) |#1|) 9)))
-(((-673 |#1|) (-10 -7 (-15 -1431 (|#1| (-1 |#1| |#1|) (-767) |#1|)) (-15 -3350 (|#1| (-1 |#1| (-767) |#1|) (-767) |#1|))) (-1093)) (T -673))
-((-3350 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-767) *2)) (-5 *4 (-767)) (-4 *2 (-1093)) (-5 *1 (-673 *2)))) (-1431 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-767)) (-4 *2 (-1093)) (-5 *1 (-673 *2)))))
-(-10 -7 (-15 -1431 (|#1| (-1 |#1| |#1|) (-767) |#1|)) (-15 -3350 (|#1| (-1 |#1| (-767) |#1|) (-767) |#1|)))
+((-1459 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-669 *3)) (-4 *3 (-1208)))) (-2255 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-669 *3)) (-4 *3 (-1208)))) (-1852 (*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))) (-1841 (*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))) (-1830 (*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))) (-1819 (*1 *1 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208)))) (-1807 (*1 *2 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208)))) (-1796 (*1 *1 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208)))) (-1785 (*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-767)))) (-1751 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-669 *3)) (-4 *3 (-1208)))) (-3369 (*1 *1 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208)))))
+(-13 (-1142 |t#1|) (-10 -8 (-15 -1459 ($ (-1 (-112) |t#1|) $)) (-15 -2255 ($ (-1 (-112) |t#1|) $)) (-15 -1852 ((-112) $)) (-15 -1841 ((-112) $)) (-15 -1830 ((-112) $)) (-15 -1819 ($ $)) (-15 -1807 (|t#1| $)) (-15 -1796 ($ $)) (-15 -1785 ((-767) $)) (-15 -1751 ($ $ (-563))) (-15 -3369 ($ $))))
+(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-1006 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1142 |#1|) . T) ((-1208) . T) ((-1245 |#1|) . T))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1907 (($ (-767) (-767) (-767)) 33 (|has| |#1| (-1045)))) (-3001 (((-112) $ (-767)) NIL)) (-1885 ((|#1| $ (-767) (-767) (-767) |#1|) 27)) (-2569 (($) NIL T CONST)) (-4140 (($ $ $) 37 (|has| |#1| (-1045)))) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1863 (((-1257 (-767)) $) 9)) (-1874 (($ (-1169) $ $) 22)) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1896 (($ (-767)) 35 (|has| |#1| (-1045)))) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#1| $ (-767) (-767) (-767)) 25)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) NIL)) (-1706 (($ (-640 (-640 (-640 |#1|)))) 44)) (-1692 (($ (-954 (-954 (-954 |#1|)))) 15) (((-954 (-954 (-954 |#1|))) $) 12) (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-670 |#1|) (-13 (-489 |#1|) (-10 -8 (IF (|has| |#1| (-1045)) (PROGN (-15 -1907 ($ (-767) (-767) (-767))) (-15 -1896 ($ (-767))) (-15 -4140 ($ $ $))) |%noBranch|) (-15 -1706 ($ (-640 (-640 (-640 |#1|))))) (-15 -2308 (|#1| $ (-767) (-767) (-767))) (-15 -1885 (|#1| $ (-767) (-767) (-767) |#1|)) (-15 -1692 ($ (-954 (-954 (-954 |#1|))))) (-15 -1692 ((-954 (-954 (-954 |#1|))) $)) (-15 -1874 ($ (-1169) $ $)) (-15 -1863 ((-1257 (-767)) $)))) (-1093)) (T -670))
+((-1907 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-767)) (-5 *1 (-670 *3)) (-4 *3 (-1045)) (-4 *3 (-1093)))) (-1896 (*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-670 *3)) (-4 *3 (-1045)) (-4 *3 (-1093)))) (-4140 (*1 *1 *1 *1) (-12 (-5 *1 (-670 *2)) (-4 *2 (-1045)) (-4 *2 (-1093)))) (-1706 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 (-640 *3)))) (-4 *3 (-1093)) (-5 *1 (-670 *3)))) (-2308 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-767)) (-5 *1 (-670 *2)) (-4 *2 (-1093)))) (-1885 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-670 *2)) (-4 *2 (-1093)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-954 (-954 (-954 *3)))) (-4 *3 (-1093)) (-5 *1 (-670 *3)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-954 (-954 (-954 *3)))) (-5 *1 (-670 *3)) (-4 *3 (-1093)))) (-1874 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-670 *3)) (-4 *3 (-1093)))) (-1863 (*1 *2 *1) (-12 (-5 *2 (-1257 (-767))) (-5 *1 (-670 *3)) (-4 *3 (-1093)))))
+(-13 (-489 |#1|) (-10 -8 (IF (|has| |#1| (-1045)) (PROGN (-15 -1907 ($ (-767) (-767) (-767))) (-15 -1896 ($ (-767))) (-15 -4140 ($ $ $))) |%noBranch|) (-15 -1706 ($ (-640 (-640 (-640 |#1|))))) (-15 -2308 (|#1| $ (-767) (-767) (-767))) (-15 -1885 (|#1| $ (-767) (-767) (-767) |#1|)) (-15 -1692 ($ (-954 (-954 (-954 |#1|))))) (-15 -1692 ((-954 (-954 (-954 |#1|))) $)) (-15 -1874 ($ (-1169) $ $)) (-15 -1863 ((-1257 (-767)) $))))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-3333 (((-483) $) 10)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 21) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3363 (((-1128) $) 12)) (-1718 (((-112) $ $) NIL)))
+(((-671) (-13 (-1076) (-10 -8 (-15 -3333 ((-483) $)) (-15 -3363 ((-1128) $))))) (T -671))
+((-3333 (*1 *2 *1) (-12 (-5 *2 (-483)) (-5 *1 (-671)))) (-3363 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-671)))))
+(-13 (-1076) (-10 -8 (-15 -3333 ((-483) $)) (-15 -3363 ((-1128) $))))
+((-1677 (((-112) $ $) NIL)) (-3994 (((-640 |#1|) $) 14)) (-1700 (($ $) 18)) (-2882 (((-112) $) 19)) (-2130 (((-3 |#1| "failed") $) 22)) (-2057 ((|#1| $) 20)) (-3793 (($ $) 36)) (-3794 (($ $) 24)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-1396 (((-112) $ $) 41)) (-3419 (((-917) $) 38)) (-1685 (($ $) 17)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3782 ((|#1| $) 35)) (-1692 (((-858) $) 31) (($ |#1|) 23) (((-815 |#1|) $) 27)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 12)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 40)) (* (($ $ $) 34)))
+(((-672 |#1|) (-13 (-846) (-1034 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -1692 ((-815 |#1|) $)) (-15 -3782 (|#1| $)) (-15 -1685 ($ $)) (-15 -3419 ((-917) $)) (-15 -1396 ((-112) $ $)) (-15 -3794 ($ $)) (-15 -3793 ($ $)) (-15 -2882 ((-112) $)) (-15 -1700 ($ $)) (-15 -3994 ((-640 |#1|) $)))) (-846)) (T -672))
+((* (*1 *1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-815 *3)) (-5 *1 (-672 *3)) (-4 *3 (-846)))) (-3782 (*1 *2 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846)))) (-1685 (*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846)))) (-3419 (*1 *2 *1) (-12 (-5 *2 (-917)) (-5 *1 (-672 *3)) (-4 *3 (-846)))) (-1396 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-846)))) (-3794 (*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846)))) (-3793 (*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846)))) (-2882 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-846)))) (-1700 (*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846)))) (-3994 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-672 *3)) (-4 *3 (-846)))))
+(-13 (-846) (-1034 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -1692 ((-815 |#1|) $)) (-15 -3782 (|#1| $)) (-15 -1685 ($ $)) (-15 -3419 ((-917) $)) (-15 -1396 ((-112) $ $)) (-15 -3794 ($ $)) (-15 -3793 ($ $)) (-15 -2882 ((-112) $)) (-15 -1700 ($ $)) (-15 -3994 ((-640 |#1|) $))))
+((-1949 ((|#1| (-1 |#1| (-767) |#1|) (-767) |#1|) 11)) (-1431 ((|#1| (-1 |#1| |#1|) (-767) |#1|) 9)))
+(((-673 |#1|) (-10 -7 (-15 -1431 (|#1| (-1 |#1| |#1|) (-767) |#1|)) (-15 -1949 (|#1| (-1 |#1| (-767) |#1|) (-767) |#1|))) (-1093)) (T -673))
+((-1949 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-767) *2)) (-5 *4 (-767)) (-4 *2 (-1093)) (-5 *1 (-673 *2)))) (-1431 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-767)) (-4 *2 (-1093)) (-5 *1 (-673 *2)))))
+(-10 -7 (-15 -1431 (|#1| (-1 |#1| |#1|) (-767) |#1|)) (-15 -1949 (|#1| (-1 |#1| (-767) |#1|) (-767) |#1|)))
((-1884 ((|#2| |#1| |#2|) 9)) (-1873 ((|#1| |#1| |#2|) 8)))
(((-674 |#1| |#2|) (-10 -7 (-15 -1873 (|#1| |#1| |#2|)) (-15 -1884 (|#2| |#1| |#2|))) (-1093) (-1093)) (T -674))
((-1884 (*1 *2 *3 *2) (-12 (-5 *1 (-674 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))) (-1873 (*1 *2 *2 *3) (-12 (-5 *1 (-674 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))))
(-10 -7 (-15 -1873 (|#1| |#1| |#2|)) (-15 -1884 (|#2| |#1| |#2|)))
-((-3555 ((|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|) 11)))
-(((-675 |#1| |#2| |#3|) (-10 -7 (-15 -3555 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|))) (-1093) (-1093) (-1093)) (T -675))
-((-3555 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)) (-5 *1 (-675 *5 *6 *2)))))
-(-10 -7 (-15 -3555 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|)))
-((-1677 (((-112) $ $) NIL)) (-4183 (((-1207) $) 20)) (-4130 (((-640 (-1207)) $) 18)) (-4286 (($ (-640 (-1207)) (-1207)) 13)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 29) (($ (-1174)) NIL) (((-1174) $) NIL) (((-1207) $) 21) (($ (-1111)) 10)) (-1718 (((-112) $ $) NIL)))
-(((-676) (-13 (-1076) (-610 (-1207)) (-10 -8 (-15 -1693 ($ (-1111))) (-15 -4286 ($ (-640 (-1207)) (-1207))) (-15 -4130 ((-640 (-1207)) $)) (-15 -4183 ((-1207) $))))) (T -676))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1111)) (-5 *1 (-676)))) (-4286 (*1 *1 *2 *3) (-12 (-5 *2 (-640 (-1207))) (-5 *3 (-1207)) (-5 *1 (-676)))) (-4130 (*1 *2 *1) (-12 (-5 *2 (-640 (-1207))) (-5 *1 (-676)))) (-4183 (*1 *2 *1) (-12 (-5 *2 (-1207)) (-5 *1 (-676)))))
-(-13 (-1076) (-610 (-1207)) (-10 -8 (-15 -1693 ($ (-1111))) (-15 -4286 ($ (-640 (-1207)) (-1207))) (-15 -4130 ((-640 (-1207)) $)) (-15 -4183 ((-1207) $))))
-((-3350 (((-1 |#1| (-767) |#1|) (-1 |#1| (-767) |#1|)) 23)) (-4108 (((-1 |#1|) |#1|) 8)) (-1524 ((|#1| |#1|) 16)) (-1986 (((-640 |#1|) (-1 (-640 |#1|) (-640 |#1|)) (-563)) 15) ((|#1| (-1 |#1| |#1|)) 11)) (-1693 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-767)) 20)))
-(((-677 |#1|) (-10 -7 (-15 -4108 ((-1 |#1|) |#1|)) (-15 -1693 ((-1 |#1|) |#1|)) (-15 -1986 (|#1| (-1 |#1| |#1|))) (-15 -1986 ((-640 |#1|) (-1 (-640 |#1|) (-640 |#1|)) (-563))) (-15 -1524 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-767))) (-15 -3350 ((-1 |#1| (-767) |#1|) (-1 |#1| (-767) |#1|)))) (-1093)) (T -677))
-((-3350 (*1 *2 *2) (-12 (-5 *2 (-1 *3 (-767) *3)) (-4 *3 (-1093)) (-5 *1 (-677 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-767)) (-4 *4 (-1093)) (-5 *1 (-677 *4)))) (-1524 (*1 *2 *2) (-12 (-5 *1 (-677 *2)) (-4 *2 (-1093)))) (-1986 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-640 *5) (-640 *5))) (-5 *4 (-563)) (-5 *2 (-640 *5)) (-5 *1 (-677 *5)) (-4 *5 (-1093)))) (-1986 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-677 *2)) (-4 *2 (-1093)))) (-1693 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-677 *3)) (-4 *3 (-1093)))) (-4108 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-677 *3)) (-4 *3 (-1093)))))
-(-10 -7 (-15 -4108 ((-1 |#1|) |#1|)) (-15 -1693 ((-1 |#1|) |#1|)) (-15 -1986 (|#1| (-1 |#1| |#1|))) (-15 -1986 ((-640 |#1|) (-1 (-640 |#1|) (-640 |#1|)) (-563))) (-15 -1524 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-767))) (-15 -3350 ((-1 |#1| (-767) |#1|) (-1 |#1| (-767) |#1|))))
-((-3783 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-2796 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-2669 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-1410 (((-1 |#2| |#1|) |#2|) 11)))
-(((-678 |#1| |#2|) (-10 -7 (-15 -1410 ((-1 |#2| |#1|) |#2|)) (-15 -2796 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2669 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -3783 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1093) (-1093)) (T -678))
-((-3783 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-5 *2 (-1 *5 *4)) (-5 *1 (-678 *4 *5)))) (-2669 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1093)) (-5 *2 (-1 *5 *4)) (-5 *1 (-678 *4 *5)) (-4 *4 (-1093)))) (-2796 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-5 *2 (-1 *5)) (-5 *1 (-678 *4 *5)))) (-1410 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-678 *4 *3)) (-4 *4 (-1093)) (-4 *3 (-1093)))))
-(-10 -7 (-15 -1410 ((-1 |#2| |#1|) |#2|)) (-15 -2796 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2669 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -3783 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
-((-3922 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-1982 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-3838 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-1926 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-3939 (((-1 |#3| |#1| |#2|) (-1 |#3| |#2|)) 15)) (* (((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)) 21)))
-(((-679 |#1| |#2| |#3|) (-10 -7 (-15 -1982 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -3838 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -1926 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -3939 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3922 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)))) (-1093) (-1093) (-1093)) (T -679))
-((* (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-1 *7 *5)) (-5 *1 (-679 *5 *6 *7)))) (-3922 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-679 *4 *5 *6)))) (-3939 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-679 *4 *5 *6)) (-4 *4 (-1093)))) (-1926 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1093)) (-4 *6 (-1093)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-679 *4 *5 *6)) (-4 *5 (-1093)))) (-3838 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *2 (-1 *6 *5)) (-5 *1 (-679 *4 *5 *6)))) (-1982 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1093)) (-4 *4 (-1093)) (-4 *6 (-1093)) (-5 *2 (-1 *6 *5)) (-5 *1 (-679 *5 *4 *6)))))
-(-10 -7 (-15 -1982 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -3838 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -1926 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -3939 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3922 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
-((-2444 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-2240 (((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|) 37) ((|#8| (-1 |#5| |#1|) |#4|) 31)))
-(((-680 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2240 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -2240 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -2444 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|))) (-1045) (-373 |#1|) (-373 |#1|) (-682 |#1| |#2| |#3|) (-1045) (-373 |#5|) (-373 |#5|) (-682 |#5| |#6| |#7|)) (T -680))
-((-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1045)) (-4 *2 (-1045)) (-4 *6 (-373 *5)) (-4 *7 (-373 *5)) (-4 *8 (-373 *2)) (-4 *9 (-373 *2)) (-5 *1 (-680 *5 *6 *7 *4 *2 *8 *9 *10)) (-4 *4 (-682 *5 *6 *7)) (-4 *10 (-682 *2 *8 *9)))) (-2240 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-1045)) (-4 *8 (-1045)) (-4 *6 (-373 *5)) (-4 *7 (-373 *5)) (-4 *2 (-682 *8 *9 *10)) (-5 *1 (-680 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-682 *5 *6 *7)) (-4 *9 (-373 *8)) (-4 *10 (-373 *8)))) (-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1045)) (-4 *8 (-1045)) (-4 *6 (-373 *5)) (-4 *7 (-373 *5)) (-4 *2 (-682 *8 *9 *10)) (-5 *1 (-680 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-682 *5 *6 *7)) (-4 *9 (-373 *8)) (-4 *10 (-373 *8)))))
-(-10 -7 (-15 -2240 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -2240 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -2444 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
-((-3212 (($ (-767) (-767)) 33)) (-3888 (($ $ $) 56)) (-3493 (($ |#3|) 52) (($ $) 53)) (-3129 (((-112) $) 28)) (-4311 (($ $ (-563) (-563)) 58)) (-4004 (($ $ (-563) (-563)) 59)) (-1461 (($ $ (-563) (-563) (-563) (-563)) 63)) (-2767 (($ $) 54)) (-1937 (((-112) $) 14)) (-4356 (($ $ (-563) (-563) $) 64)) (-1849 ((|#2| $ (-563) (-563) |#2|) NIL) (($ $ (-640 (-563)) (-640 (-563)) $) 62)) (-3845 (($ (-767) |#2|) 39)) (-4038 (($ (-640 (-640 |#2|))) 37)) (-4136 (((-640 (-640 |#2|)) $) 57)) (-3757 (($ $ $) 55)) (-3008 (((-3 $ "failed") $ |#2|) 91)) (-2309 ((|#2| $ (-563) (-563)) NIL) ((|#2| $ (-563) (-563) |#2|) NIL) (($ $ (-640 (-563)) (-640 (-563))) 61)) (-2104 (($ (-640 |#2|)) 40) (($ (-640 $)) 42)) (-2717 (((-112) $) 24)) (-1693 (($ |#4|) 47) (((-858) $) NIL)) (-3280 (((-112) $) 30)) (-1837 (($ $ |#2|) 93)) (-1826 (($ $ $) 68) (($ $) 71)) (-1814 (($ $ $) 66)) (** (($ $ (-767)) 80) (($ $ (-563)) 96)) (* (($ $ $) 77) (($ |#2| $) 73) (($ $ |#2|) 74) (($ (-563) $) 76) ((|#4| $ |#4|) 84) ((|#3| |#3| $) 88)))
-(((-681 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1693 ((-858) |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 -1837 (|#1| |#1| |#2|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-767))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 -1826 (|#1| |#1| |#1|)) (-15 -1814 (|#1| |#1| |#1|)) (-15 -4356 (|#1| |#1| (-563) (-563) |#1|)) (-15 -1461 (|#1| |#1| (-563) (-563) (-563) (-563))) (-15 -4004 (|#1| |#1| (-563) (-563))) (-15 -4311 (|#1| |#1| (-563) (-563))) (-15 -1849 (|#1| |#1| (-640 (-563)) (-640 (-563)) |#1|)) (-15 -2309 (|#1| |#1| (-640 (-563)) (-640 (-563)))) (-15 -4136 ((-640 (-640 |#2|)) |#1|)) (-15 -3888 (|#1| |#1| |#1|)) (-15 -3757 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#1|)) (-15 -3493 (|#1| |#1|)) (-15 -3493 (|#1| |#3|)) (-15 -1693 (|#1| |#4|)) (-15 -2104 (|#1| (-640 |#1|))) (-15 -2104 (|#1| (-640 |#2|))) (-15 -3845 (|#1| (-767) |#2|)) (-15 -4038 (|#1| (-640 (-640 |#2|)))) (-15 -3212 (|#1| (-767) (-767))) (-15 -3280 ((-112) |#1|)) (-15 -3129 ((-112) |#1|)) (-15 -2717 ((-112) |#1|)) (-15 -1937 ((-112) |#1|)) (-15 -1849 (|#2| |#1| (-563) (-563) |#2|)) (-15 -2309 (|#2| |#1| (-563) (-563) |#2|)) (-15 -2309 (|#2| |#1| (-563) (-563)))) (-682 |#2| |#3| |#4|) (-1045) (-373 |#2|) (-373 |#2|)) (T -681))
-NIL
-(-10 -8 (-15 -1693 ((-858) |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 -1837 (|#1| |#1| |#2|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-767))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 -1826 (|#1| |#1| |#1|)) (-15 -1814 (|#1| |#1| |#1|)) (-15 -4356 (|#1| |#1| (-563) (-563) |#1|)) (-15 -1461 (|#1| |#1| (-563) (-563) (-563) (-563))) (-15 -4004 (|#1| |#1| (-563) (-563))) (-15 -4311 (|#1| |#1| (-563) (-563))) (-15 -1849 (|#1| |#1| (-640 (-563)) (-640 (-563)) |#1|)) (-15 -2309 (|#1| |#1| (-640 (-563)) (-640 (-563)))) (-15 -4136 ((-640 (-640 |#2|)) |#1|)) (-15 -3888 (|#1| |#1| |#1|)) (-15 -3757 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#1|)) (-15 -3493 (|#1| |#1|)) (-15 -3493 (|#1| |#3|)) (-15 -1693 (|#1| |#4|)) (-15 -2104 (|#1| (-640 |#1|))) (-15 -2104 (|#1| (-640 |#2|))) (-15 -3845 (|#1| (-767) |#2|)) (-15 -4038 (|#1| (-640 (-640 |#2|)))) (-15 -3212 (|#1| (-767) (-767))) (-15 -3280 ((-112) |#1|)) (-15 -3129 ((-112) |#1|)) (-15 -2717 ((-112) |#1|)) (-15 -1937 ((-112) |#1|)) (-15 -1849 (|#2| |#1| (-563) (-563) |#2|)) (-15 -2309 (|#2| |#1| (-563) (-563) |#2|)) (-15 -2309 (|#2| |#1| (-563) (-563))))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-3212 (($ (-767) (-767)) 97)) (-3888 (($ $ $) 87)) (-3493 (($ |#2|) 91) (($ $) 90)) (-3129 (((-112) $) 99)) (-4311 (($ $ (-563) (-563)) 83)) (-4004 (($ $ (-563) (-563)) 82)) (-1461 (($ $ (-563) (-563) (-563) (-563)) 81)) (-2767 (($ $) 89)) (-1937 (((-112) $) 101)) (-2759 (((-112) $ (-767)) 8)) (-4356 (($ $ (-563) (-563) $) 80)) (-1849 ((|#1| $ (-563) (-563) |#1|) 44) (($ $ (-640 (-563)) (-640 (-563)) $) 84)) (-4327 (($ $ (-563) |#2|) 42)) (-4175 (($ $ (-563) |#3|) 41)) (-3845 (($ (-767) |#1|) 95)) (-4239 (($) 7 T CONST)) (-4069 (($ $) 67 (|has| |#1| (-307)))) (-2368 ((|#2| $ (-563)) 46)) (-2522 (((-767) $) 66 (|has| |#1| (-555)))) (-4355 ((|#1| $ (-563) (-563) |#1|) 43)) (-4293 ((|#1| $ (-563) (-563)) 48)) (-2659 (((-640 |#1|) $) 30)) (-1997 (((-767) $) 65 (|has| |#1| (-555)))) (-2345 (((-640 |#3|) $) 64 (|has| |#1| (-555)))) (-2381 (((-767) $) 51)) (-1566 (($ (-767) (-767) |#1|) 57)) (-2393 (((-767) $) 50)) (-2581 (((-112) $ (-767)) 9)) (-3977 ((|#1| $) 62 (|has| |#1| (-6 (-4409 "*"))))) (-2013 (((-563) $) 55)) (-3650 (((-563) $) 53)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1859 (((-563) $) 54)) (-2207 (((-563) $) 52)) (-4038 (($ (-640 (-640 |#1|))) 96)) (-4345 (($ (-1 |#1| |#1|) $) 34)) (-2240 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-4136 (((-640 (-640 |#1|)) $) 86)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2591 (((-3 $ "failed") $) 61 (|has| |#1| (-363)))) (-3757 (($ $ $) 88)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-2358 (($ $ |#1|) 56)) (-3008 (((-3 $ "failed") $ |#1|) 69 (|has| |#1| (-555)))) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ (-563) (-563)) 49) ((|#1| $ (-563) (-563) |#1|) 47) (($ $ (-640 (-563)) (-640 (-563))) 85)) (-2104 (($ (-640 |#1|)) 94) (($ (-640 $)) 93)) (-2717 (((-112) $) 100)) (-3848 ((|#1| $) 63 (|has| |#1| (-6 (-4409 "*"))))) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-1912 ((|#3| $ (-563)) 45)) (-1693 (($ |#3|) 92) (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-3280 (((-112) $) 98)) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-1837 (($ $ |#1|) 68 (|has| |#1| (-363)))) (-1826 (($ $ $) 78) (($ $) 77)) (-1814 (($ $ $) 79)) (** (($ $ (-767)) 70) (($ $ (-563)) 60 (|has| |#1| (-363)))) (* (($ $ $) 76) (($ |#1| $) 75) (($ $ |#1|) 74) (($ (-563) $) 73) ((|#3| $ |#3|) 72) ((|#2| |#2| $) 71)) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-3557 ((|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|) 11)))
+(((-675 |#1| |#2| |#3|) (-10 -7 (-15 -3557 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|))) (-1093) (-1093) (-1093)) (T -675))
+((-3557 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)) (-5 *1 (-675 *5 *6 *2)))))
+(-10 -7 (-15 -3557 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|)))
+((-1677 (((-112) $ $) NIL)) (-4184 (((-1207) $) 20)) (-4131 (((-640 (-1207)) $) 18)) (-1916 (($ (-640 (-1207)) (-1207)) 13)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 29) (($ (-1174)) NIL) (((-1174) $) NIL) (((-1207) $) 21) (($ (-1111)) 10)) (-1718 (((-112) $ $) NIL)))
+(((-676) (-13 (-1076) (-610 (-1207)) (-10 -8 (-15 -1692 ($ (-1111))) (-15 -1916 ($ (-640 (-1207)) (-1207))) (-15 -4131 ((-640 (-1207)) $)) (-15 -4184 ((-1207) $))))) (T -676))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1111)) (-5 *1 (-676)))) (-1916 (*1 *1 *2 *3) (-12 (-5 *2 (-640 (-1207))) (-5 *3 (-1207)) (-5 *1 (-676)))) (-4131 (*1 *2 *1) (-12 (-5 *2 (-640 (-1207))) (-5 *1 (-676)))) (-4184 (*1 *2 *1) (-12 (-5 *2 (-1207)) (-5 *1 (-676)))))
+(-13 (-1076) (-610 (-1207)) (-10 -8 (-15 -1692 ($ (-1111))) (-15 -1916 ($ (-640 (-1207)) (-1207))) (-15 -4131 ((-640 (-1207)) $)) (-15 -4184 ((-1207) $))))
+((-1949 (((-1 |#1| (-767) |#1|) (-1 |#1| (-767) |#1|)) 23)) (-1928 (((-1 |#1|) |#1|) 8)) (-1526 ((|#1| |#1|) 16)) (-1939 (((-640 |#1|) (-1 (-640 |#1|) (-640 |#1|)) (-563)) 15) ((|#1| (-1 |#1| |#1|)) 11)) (-1692 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-767)) 20)))
+(((-677 |#1|) (-10 -7 (-15 -1928 ((-1 |#1|) |#1|)) (-15 -1692 ((-1 |#1|) |#1|)) (-15 -1939 (|#1| (-1 |#1| |#1|))) (-15 -1939 ((-640 |#1|) (-1 (-640 |#1|) (-640 |#1|)) (-563))) (-15 -1526 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-767))) (-15 -1949 ((-1 |#1| (-767) |#1|) (-1 |#1| (-767) |#1|)))) (-1093)) (T -677))
+((-1949 (*1 *2 *2) (-12 (-5 *2 (-1 *3 (-767) *3)) (-4 *3 (-1093)) (-5 *1 (-677 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-767)) (-4 *4 (-1093)) (-5 *1 (-677 *4)))) (-1526 (*1 *2 *2) (-12 (-5 *1 (-677 *2)) (-4 *2 (-1093)))) (-1939 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-640 *5) (-640 *5))) (-5 *4 (-563)) (-5 *2 (-640 *5)) (-5 *1 (-677 *5)) (-4 *5 (-1093)))) (-1939 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-677 *2)) (-4 *2 (-1093)))) (-1692 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-677 *3)) (-4 *3 (-1093)))) (-1928 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-677 *3)) (-4 *3 (-1093)))))
+(-10 -7 (-15 -1928 ((-1 |#1|) |#1|)) (-15 -1692 ((-1 |#1|) |#1|)) (-15 -1939 (|#1| (-1 |#1| |#1|))) (-15 -1939 ((-640 |#1|) (-1 (-640 |#1|) (-640 |#1|)) (-563))) (-15 -1526 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-767))) (-15 -1949 ((-1 |#1| (-767) |#1|) (-1 |#1| (-767) |#1|))))
+((-1978 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-1968 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-2668 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-1959 (((-1 |#2| |#1|) |#2|) 11)))
+(((-678 |#1| |#2|) (-10 -7 (-15 -1959 ((-1 |#2| |#1|) |#2|)) (-15 -1968 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2668 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -1978 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1093) (-1093)) (T -678))
+((-1978 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-5 *2 (-1 *5 *4)) (-5 *1 (-678 *4 *5)))) (-2668 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1093)) (-5 *2 (-1 *5 *4)) (-5 *1 (-678 *4 *5)) (-4 *4 (-1093)))) (-1968 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-5 *2 (-1 *5)) (-5 *1 (-678 *4 *5)))) (-1959 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-678 *4 *3)) (-4 *4 (-1093)) (-4 *3 (-1093)))))
+(-10 -7 (-15 -1959 ((-1 |#2| |#1|) |#2|)) (-15 -1968 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2668 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -1978 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
+((-3880 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-1985 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-1994 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-2004 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-3869 (((-1 |#3| |#1| |#2|) (-1 |#3| |#2|)) 15)) (* (((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)) 21)))
+(((-679 |#1| |#2| |#3|) (-10 -7 (-15 -1985 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -1994 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2004 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -3869 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3880 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)))) (-1093) (-1093) (-1093)) (T -679))
+((* (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-1 *7 *5)) (-5 *1 (-679 *5 *6 *7)))) (-3880 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-679 *4 *5 *6)))) (-3869 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-679 *4 *5 *6)) (-4 *4 (-1093)))) (-2004 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1093)) (-4 *6 (-1093)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-679 *4 *5 *6)) (-4 *5 (-1093)))) (-1994 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *2 (-1 *6 *5)) (-5 *1 (-679 *4 *5 *6)))) (-1985 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1093)) (-4 *4 (-1093)) (-4 *6 (-1093)) (-5 *2 (-1 *6 *5)) (-5 *1 (-679 *5 *4 *6)))))
+(-10 -7 (-15 -1985 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -1994 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2004 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -3869 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3880 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
+((-2444 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-2238 (((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|) 37) ((|#8| (-1 |#5| |#1|) |#4|) 31)))
+(((-680 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2238 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -2238 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -2444 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|))) (-1045) (-373 |#1|) (-373 |#1|) (-682 |#1| |#2| |#3|) (-1045) (-373 |#5|) (-373 |#5|) (-682 |#5| |#6| |#7|)) (T -680))
+((-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1045)) (-4 *2 (-1045)) (-4 *6 (-373 *5)) (-4 *7 (-373 *5)) (-4 *8 (-373 *2)) (-4 *9 (-373 *2)) (-5 *1 (-680 *5 *6 *7 *4 *2 *8 *9 *10)) (-4 *4 (-682 *5 *6 *7)) (-4 *10 (-682 *2 *8 *9)))) (-2238 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-1045)) (-4 *8 (-1045)) (-4 *6 (-373 *5)) (-4 *7 (-373 *5)) (-4 *2 (-682 *8 *9 *10)) (-5 *1 (-680 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-682 *5 *6 *7)) (-4 *9 (-373 *8)) (-4 *10 (-373 *8)))) (-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1045)) (-4 *8 (-1045)) (-4 *6 (-373 *5)) (-4 *7 (-373 *5)) (-4 *2 (-682 *8 *9 *10)) (-5 *1 (-680 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-682 *5 *6 *7)) (-4 *9 (-373 *8)) (-4 *10 (-373 *8)))))
+(-10 -7 (-15 -2238 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -2238 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -2444 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
+((-3216 (($ (-767) (-767)) 33)) (-3934 (($ $ $) 56)) (-1769 (($ |#3|) 52) (($ $) 53)) (-3870 (((-112) $) 28)) (-3924 (($ $ (-563) (-563)) 58)) (-3913 (($ $ (-563) (-563)) 59)) (-3901 (($ $ (-563) (-563) (-563) (-563)) 63)) (-3953 (($ $) 54)) (-3893 (((-112) $) 14)) (-3892 (($ $ (-563) (-563) $) 64)) (-1849 ((|#2| $ (-563) (-563) |#2|) NIL) (($ $ (-640 (-563)) (-640 (-563)) $) 62)) (-2217 (($ (-767) |#2|) 39)) (-4040 (($ (-640 (-640 |#2|))) 37)) (-3734 (((-640 (-640 |#2|)) $) 57)) (-3943 (($ $ $) 55)) (-3012 (((-3 $ "failed") $ |#2|) 91)) (-2308 ((|#2| $ (-563) (-563)) NIL) ((|#2| $ (-563) (-563) |#2|) NIL) (($ $ (-640 (-563)) (-640 (-563))) 61)) (-2206 (($ (-640 |#2|)) 40) (($ (-640 $)) 42)) (-3881 (((-112) $) 24)) (-1692 (($ |#4|) 47) (((-858) $) NIL)) (-2005 (((-112) $) 30)) (-1836 (($ $ |#2|) 93)) (-1825 (($ $ $) 68) (($ $) 71)) (-1813 (($ $ $) 66)) (** (($ $ (-767)) 80) (($ $ (-563)) 96)) (* (($ $ $) 77) (($ |#2| $) 73) (($ $ |#2|) 74) (($ (-563) $) 76) ((|#4| $ |#4|) 84) ((|#3| |#3| $) 88)))
+(((-681 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1692 ((-858) |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 -1836 (|#1| |#1| |#2|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-767))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 -1825 (|#1| |#1| |#1|)) (-15 -1813 (|#1| |#1| |#1|)) (-15 -3892 (|#1| |#1| (-563) (-563) |#1|)) (-15 -3901 (|#1| |#1| (-563) (-563) (-563) (-563))) (-15 -3913 (|#1| |#1| (-563) (-563))) (-15 -3924 (|#1| |#1| (-563) (-563))) (-15 -1849 (|#1| |#1| (-640 (-563)) (-640 (-563)) |#1|)) (-15 -2308 (|#1| |#1| (-640 (-563)) (-640 (-563)))) (-15 -3734 ((-640 (-640 |#2|)) |#1|)) (-15 -3934 (|#1| |#1| |#1|)) (-15 -3943 (|#1| |#1| |#1|)) (-15 -3953 (|#1| |#1|)) (-15 -1769 (|#1| |#1|)) (-15 -1769 (|#1| |#3|)) (-15 -1692 (|#1| |#4|)) (-15 -2206 (|#1| (-640 |#1|))) (-15 -2206 (|#1| (-640 |#2|))) (-15 -2217 (|#1| (-767) |#2|)) (-15 -4040 (|#1| (-640 (-640 |#2|)))) (-15 -3216 (|#1| (-767) (-767))) (-15 -2005 ((-112) |#1|)) (-15 -3870 ((-112) |#1|)) (-15 -3881 ((-112) |#1|)) (-15 -3893 ((-112) |#1|)) (-15 -1849 (|#2| |#1| (-563) (-563) |#2|)) (-15 -2308 (|#2| |#1| (-563) (-563) |#2|)) (-15 -2308 (|#2| |#1| (-563) (-563)))) (-682 |#2| |#3| |#4|) (-1045) (-373 |#2|) (-373 |#2|)) (T -681))
+NIL
+(-10 -8 (-15 -1692 ((-858) |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 -1836 (|#1| |#1| |#2|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-767))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 -1825 (|#1| |#1| |#1|)) (-15 -1813 (|#1| |#1| |#1|)) (-15 -3892 (|#1| |#1| (-563) (-563) |#1|)) (-15 -3901 (|#1| |#1| (-563) (-563) (-563) (-563))) (-15 -3913 (|#1| |#1| (-563) (-563))) (-15 -3924 (|#1| |#1| (-563) (-563))) (-15 -1849 (|#1| |#1| (-640 (-563)) (-640 (-563)) |#1|)) (-15 -2308 (|#1| |#1| (-640 (-563)) (-640 (-563)))) (-15 -3734 ((-640 (-640 |#2|)) |#1|)) (-15 -3934 (|#1| |#1| |#1|)) (-15 -3943 (|#1| |#1| |#1|)) (-15 -3953 (|#1| |#1|)) (-15 -1769 (|#1| |#1|)) (-15 -1769 (|#1| |#3|)) (-15 -1692 (|#1| |#4|)) (-15 -2206 (|#1| (-640 |#1|))) (-15 -2206 (|#1| (-640 |#2|))) (-15 -2217 (|#1| (-767) |#2|)) (-15 -4040 (|#1| (-640 (-640 |#2|)))) (-15 -3216 (|#1| (-767) (-767))) (-15 -2005 ((-112) |#1|)) (-15 -3870 ((-112) |#1|)) (-15 -3881 ((-112) |#1|)) (-15 -3893 ((-112) |#1|)) (-15 -1849 (|#2| |#1| (-563) (-563) |#2|)) (-15 -2308 (|#2| |#1| (-563) (-563) |#2|)) (-15 -2308 (|#2| |#1| (-563) (-563))))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-3216 (($ (-767) (-767)) 97)) (-3934 (($ $ $) 87)) (-1769 (($ |#2|) 91) (($ $) 90)) (-3870 (((-112) $) 99)) (-3924 (($ $ (-563) (-563)) 83)) (-3913 (($ $ (-563) (-563)) 82)) (-3901 (($ $ (-563) (-563) (-563) (-563)) 81)) (-3953 (($ $) 89)) (-3893 (((-112) $) 101)) (-3001 (((-112) $ (-767)) 8)) (-3892 (($ $ (-563) (-563) $) 80)) (-1849 ((|#1| $ (-563) (-563) |#1|) 44) (($ $ (-640 (-563)) (-640 (-563)) $) 84)) (-1589 (($ $ (-563) |#2|) 42)) (-1572 (($ $ (-563) |#3|) 41)) (-2217 (($ (-767) |#1|) 95)) (-2569 (($) 7 T CONST)) (-1940 (($ $) 67 (|has| |#1| (-307)))) (-1960 ((|#2| $ (-563)) 46)) (-2521 (((-767) $) 66 (|has| |#1| (-555)))) (-4356 ((|#1| $ (-563) (-563) |#1|) 43)) (-4293 ((|#1| $ (-563) (-563)) 48)) (-2658 (((-640 |#1|) $) 30)) (-1929 (((-767) $) 65 (|has| |#1| (-555)))) (-1917 (((-640 |#3|) $) 64 (|has| |#1| (-555)))) (-2380 (((-767) $) 51)) (-1565 (($ (-767) (-767) |#1|) 57)) (-2391 (((-767) $) 50)) (-2514 (((-112) $ (-767)) 9)) (-2157 ((|#1| $) 62 (|has| |#1| (-6 (-4410 "*"))))) (-1995 (((-563) $) 55)) (-1979 (((-563) $) 53)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1986 (((-563) $) 54)) (-1969 (((-563) $) 52)) (-4040 (($ (-640 (-640 |#1|))) 96)) (-4347 (($ (-1 |#1| |#1|) $) 34)) (-2238 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-3734 (((-640 (-640 |#1|)) $) 86)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-3694 (((-3 $ "failed") $) 61 (|has| |#1| (-363)))) (-3943 (($ $ $) 88)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-2221 (($ $ |#1|) 56)) (-3012 (((-3 $ "failed") $ |#1|) 69 (|has| |#1| (-555)))) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ (-563) (-563)) 49) ((|#1| $ (-563) (-563) |#1|) 47) (($ $ (-640 (-563)) (-640 (-563))) 85)) (-2206 (($ (-640 |#1|)) 94) (($ (-640 $)) 93)) (-3881 (((-112) $) 100)) (-2168 ((|#1| $) 63 (|has| |#1| (-6 (-4410 "*"))))) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-1950 ((|#3| $ (-563)) 45)) (-1692 (($ |#3|) 92) (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-2005 (((-112) $) 98)) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-1836 (($ $ |#1|) 68 (|has| |#1| (-363)))) (-1825 (($ $ $) 78) (($ $) 77)) (-1813 (($ $ $) 79)) (** (($ $ (-767)) 70) (($ $ (-563)) 60 (|has| |#1| (-363)))) (* (($ $ $) 76) (($ |#1| $) 75) (($ $ |#1|) 74) (($ (-563) $) 73) ((|#3| $ |#3|) 72) ((|#2| |#2| $) 71)) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-682 |#1| |#2| |#3|) (-140) (-1045) (-373 |t#1|) (-373 |t#1|)) (T -682))
-((-1937 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-112)))) (-2717 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-112)))) (-3129 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-112)))) (-3280 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-112)))) (-3212 (*1 *1 *2 *2) (-12 (-5 *2 (-767)) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-4038 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-3845 (*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-2104 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-2104 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-1693 (*1 *1 *2) (-12 (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *2)) (-4 *4 (-373 *3)) (-4 *2 (-373 *3)))) (-3493 (*1 *1 *2) (-12 (-4 *3 (-1045)) (-4 *1 (-682 *3 *2 *4)) (-4 *2 (-373 *3)) (-4 *4 (-373 *3)))) (-3493 (*1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (-2767 (*1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (-3757 (*1 *1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (-3888 (*1 *1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (-4136 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-640 (-640 *3))))) (-2309 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-640 (-563))) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-1849 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-640 (-563))) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-4311 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-4004 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-1461 (*1 *1 *1 *2 *2 *2 *2) (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-4356 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-1814 (*1 *1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (-1826 (*1 *1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (-1826 (*1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (* (*1 *1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-682 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *2 (-373 *3)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-682 *3 *2 *4)) (-4 *3 (-1045)) (-4 *2 (-373 *3)) (-4 *4 (-373 *3)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-3008 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)) (-4 *2 (-555)))) (-1837 (*1 *1 *1 *2) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)) (-4 *2 (-363)))) (-4069 (*1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)) (-4 *2 (-307)))) (-2522 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-4 *3 (-555)) (-5 *2 (-767)))) (-1997 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-4 *3 (-555)) (-5 *2 (-767)))) (-2345 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-4 *3 (-555)) (-5 *2 (-640 *5)))) (-3848 (*1 *2 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)) (|has| *2 (-6 (-4409 "*"))) (-4 *2 (-1045)))) (-3977 (*1 *2 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)) (|has| *2 (-6 (-4409 "*"))) (-4 *2 (-1045)))) (-2591 (*1 *1 *1) (|partial| -12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)) (-4 *2 (-363)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-4 *3 (-363)))))
-(-13 (-57 |t#1| |t#2| |t#3|) (-10 -8 (-6 -4408) (-6 -4407) (-15 -1937 ((-112) $)) (-15 -2717 ((-112) $)) (-15 -3129 ((-112) $)) (-15 -3280 ((-112) $)) (-15 -3212 ($ (-767) (-767))) (-15 -4038 ($ (-640 (-640 |t#1|)))) (-15 -3845 ($ (-767) |t#1|)) (-15 -2104 ($ (-640 |t#1|))) (-15 -2104 ($ (-640 $))) (-15 -1693 ($ |t#3|)) (-15 -3493 ($ |t#2|)) (-15 -3493 ($ $)) (-15 -2767 ($ $)) (-15 -3757 ($ $ $)) (-15 -3888 ($ $ $)) (-15 -4136 ((-640 (-640 |t#1|)) $)) (-15 -2309 ($ $ (-640 (-563)) (-640 (-563)))) (-15 -1849 ($ $ (-640 (-563)) (-640 (-563)) $)) (-15 -4311 ($ $ (-563) (-563))) (-15 -4004 ($ $ (-563) (-563))) (-15 -1461 ($ $ (-563) (-563) (-563) (-563))) (-15 -4356 ($ $ (-563) (-563) $)) (-15 -1814 ($ $ $)) (-15 -1826 ($ $ $)) (-15 -1826 ($ $)) (-15 * ($ $ $)) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 * ($ (-563) $)) (-15 * (|t#3| $ |t#3|)) (-15 * (|t#2| |t#2| $)) (-15 ** ($ $ (-767))) (IF (|has| |t#1| (-555)) (-15 -3008 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-363)) (-15 -1837 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-307)) (-15 -4069 ($ $)) |%noBranch|) (IF (|has| |t#1| (-555)) (PROGN (-15 -2522 ((-767) $)) (-15 -1997 ((-767) $)) (-15 -2345 ((-640 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4409 "*"))) (PROGN (-15 -3848 (|t#1| $)) (-15 -3977 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-363)) (PROGN (-15 -2591 ((-3 $ "failed") $)) (-15 ** ($ $ (-563)))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-57 |#1| |#2| |#3|) . T) ((-1208) . T))
-((-4069 ((|#4| |#4|) 71 (|has| |#1| (-307)))) (-2522 (((-767) |#4|) 98 (|has| |#1| (-555)))) (-1997 (((-767) |#4|) 75 (|has| |#1| (-555)))) (-2345 (((-640 |#3|) |#4|) 82 (|has| |#1| (-555)))) (-3612 (((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|) 110 (|has| |#1| (-307)))) (-3977 ((|#1| |#4|) 34)) (-2485 (((-3 |#4| "failed") |#4|) 63 (|has| |#1| (-555)))) (-2591 (((-3 |#4| "failed") |#4|) 79 (|has| |#1| (-363)))) (-3147 ((|#4| |#4|) 67 (|has| |#1| (-555)))) (-1843 ((|#4| |#4| |#1| (-563) (-563)) 42)) (-1796 ((|#4| |#4| (-563) (-563)) 37)) (-1698 ((|#4| |#4| |#1| (-563) (-563)) 47)) (-3848 ((|#1| |#4|) 77)) (-3831 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 68 (|has| |#1| (-555)))))
-(((-683 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3848 (|#1| |#4|)) (-15 -3977 (|#1| |#4|)) (-15 -1796 (|#4| |#4| (-563) (-563))) (-15 -1843 (|#4| |#4| |#1| (-563) (-563))) (-15 -1698 (|#4| |#4| |#1| (-563) (-563))) (IF (|has| |#1| (-555)) (PROGN (-15 -2522 ((-767) |#4|)) (-15 -1997 ((-767) |#4|)) (-15 -2345 ((-640 |#3|) |#4|)) (-15 -3147 (|#4| |#4|)) (-15 -2485 ((-3 |#4| "failed") |#4|)) (-15 -3831 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-307)) (PROGN (-15 -4069 (|#4| |#4|)) (-15 -3612 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -2591 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-172) (-373 |#1|) (-373 |#1|) (-682 |#1| |#2| |#3|)) (T -683))
-((-2591 (*1 *2 *2) (|partial| -12 (-4 *3 (-363)) (-4 *3 (-172)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-3612 (*1 *2 *3 *3) (-12 (-4 *3 (-307)) (-4 *3 (-172)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-683 *3 *4 *5 *6)) (-4 *6 (-682 *3 *4 *5)))) (-4069 (*1 *2 *2) (-12 (-4 *3 (-307)) (-4 *3 (-172)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-3831 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *4 (-172)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4))) (-5 *1 (-683 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-2485 (*1 *2 *2) (|partial| -12 (-4 *3 (-555)) (-4 *3 (-172)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-3147 (*1 *2 *2) (-12 (-4 *3 (-555)) (-4 *3 (-172)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-2345 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *4 (-172)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-640 *6)) (-5 *1 (-683 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-1997 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *4 (-172)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-767)) (-5 *1 (-683 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-2522 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *4 (-172)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-767)) (-5 *1 (-683 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-1698 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-563)) (-4 *3 (-172)) (-4 *5 (-373 *3)) (-4 *6 (-373 *3)) (-5 *1 (-683 *3 *5 *6 *2)) (-4 *2 (-682 *3 *5 *6)))) (-1843 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-563)) (-4 *3 (-172)) (-4 *5 (-373 *3)) (-4 *6 (-373 *3)) (-5 *1 (-683 *3 *5 *6 *2)) (-4 *2 (-682 *3 *5 *6)))) (-1796 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-563)) (-4 *4 (-172)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *1 (-683 *4 *5 *6 *2)) (-4 *2 (-682 *4 *5 *6)))) (-3977 (*1 *2 *3) (-12 (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-172)) (-5 *1 (-683 *2 *4 *5 *3)) (-4 *3 (-682 *2 *4 *5)))) (-3848 (*1 *2 *3) (-12 (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-172)) (-5 *1 (-683 *2 *4 *5 *3)) (-4 *3 (-682 *2 *4 *5)))))
-(-10 -7 (-15 -3848 (|#1| |#4|)) (-15 -3977 (|#1| |#4|)) (-15 -1796 (|#4| |#4| (-563) (-563))) (-15 -1843 (|#4| |#4| |#1| (-563) (-563))) (-15 -1698 (|#4| |#4| |#1| (-563) (-563))) (IF (|has| |#1| (-555)) (PROGN (-15 -2522 ((-767) |#4|)) (-15 -1997 ((-767) |#4|)) (-15 -2345 ((-640 |#3|) |#4|)) (-15 -3147 (|#4| |#4|)) (-15 -2485 ((-3 |#4| "failed") |#4|)) (-15 -3831 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-307)) (PROGN (-15 -4069 (|#4| |#4|)) (-15 -3612 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -2591 ((-3 |#4| "failed") |#4|)) |%noBranch|))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3212 (($ (-767) (-767)) 47)) (-3888 (($ $ $) NIL)) (-3493 (($ (-1257 |#1|)) NIL) (($ $) NIL)) (-3129 (((-112) $) NIL)) (-4311 (($ $ (-563) (-563)) 12)) (-4004 (($ $ (-563) (-563)) NIL)) (-1461 (($ $ (-563) (-563) (-563) (-563)) NIL)) (-2767 (($ $) NIL)) (-1937 (((-112) $) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-4356 (($ $ (-563) (-563) $) NIL)) (-1849 ((|#1| $ (-563) (-563) |#1|) NIL) (($ $ (-640 (-563)) (-640 (-563)) $) NIL)) (-4327 (($ $ (-563) (-1257 |#1|)) NIL)) (-4175 (($ $ (-563) (-1257 |#1|)) NIL)) (-3845 (($ (-767) |#1|) 22)) (-4239 (($) NIL T CONST)) (-4069 (($ $) 31 (|has| |#1| (-307)))) (-2368 (((-1257 |#1|) $ (-563)) NIL)) (-2522 (((-767) $) 33 (|has| |#1| (-555)))) (-4355 ((|#1| $ (-563) (-563) |#1|) 51)) (-4293 ((|#1| $ (-563) (-563)) NIL)) (-2659 (((-640 |#1|) $) NIL)) (-1997 (((-767) $) 35 (|has| |#1| (-555)))) (-2345 (((-640 (-1257 |#1|)) $) 38 (|has| |#1| (-555)))) (-2381 (((-767) $) 20)) (-1566 (($ (-767) (-767) |#1|) 16)) (-2393 (((-767) $) 21)) (-2581 (((-112) $ (-767)) NIL)) (-3977 ((|#1| $) 29 (|has| |#1| (-6 (-4409 "*"))))) (-2013 (((-563) $) 9)) (-3650 (((-563) $) 10)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1859 (((-563) $) 11)) (-2207 (((-563) $) 48)) (-4038 (($ (-640 (-640 |#1|))) NIL)) (-4345 (($ (-1 |#1| |#1|) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-4136 (((-640 (-640 |#1|)) $) 58)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2591 (((-3 $ "failed") $) 45 (|has| |#1| (-363)))) (-3757 (($ $ $) NIL)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2358 (($ $ |#1|) NIL)) (-3008 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#1| $ (-563) (-563)) NIL) ((|#1| $ (-563) (-563) |#1|) NIL) (($ $ (-640 (-563)) (-640 (-563))) NIL)) (-2104 (($ (-640 |#1|)) NIL) (($ (-640 $)) NIL) (($ (-1257 |#1|)) 52)) (-2717 (((-112) $) NIL)) (-3848 ((|#1| $) 27 (|has| |#1| (-6 (-4409 "*"))))) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) NIL)) (-2220 (((-536) $) 62 (|has| |#1| (-611 (-536))))) (-1912 (((-1257 |#1|) $ (-563)) NIL)) (-1693 (($ (-1257 |#1|)) NIL) (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-3280 (((-112) $) NIL)) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1826 (($ $ $) NIL) (($ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-767)) 23) (($ $ (-563)) 46 (|has| |#1| (-363)))) (* (($ $ $) 13) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-563) $) NIL) (((-1257 |#1|) $ (-1257 |#1|)) NIL) (((-1257 |#1|) (-1257 |#1|) $) NIL)) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-684 |#1|) (-13 (-682 |#1| (-1257 |#1|) (-1257 |#1|)) (-10 -8 (-15 -2104 ($ (-1257 |#1|))) (IF (|has| |#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -2591 ((-3 $ "failed") $)) |%noBranch|))) (-1045)) (T -684))
-((-2591 (*1 *1 *1) (|partial| -12 (-5 *1 (-684 *2)) (-4 *2 (-363)) (-4 *2 (-1045)))) (-2104 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1045)) (-5 *1 (-684 *3)))))
-(-13 (-682 |#1| (-1257 |#1|) (-1257 |#1|)) (-10 -8 (-15 -2104 ($ (-1257 |#1|))) (IF (|has| |#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -2591 ((-3 $ "failed") $)) |%noBranch|)))
-((-2624 (((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|)) 25)) (-1949 (((-684 |#1|) (-684 |#1|) (-684 |#1|) |#1|) 21)) (-3790 (((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|) (-767)) 26)) (-1513 (((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|)) 14)) (-3312 (((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|)) 18) (((-684 |#1|) (-684 |#1|) (-684 |#1|)) 16)) (-2712 (((-684 |#1|) (-684 |#1|) |#1| (-684 |#1|)) 20)) (-4054 (((-684 |#1|) (-684 |#1|) (-684 |#1|)) 12)) (** (((-684 |#1|) (-684 |#1|) (-767)) 30)))
-(((-685 |#1|) (-10 -7 (-15 -4054 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -1513 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -3312 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -3312 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -2712 ((-684 |#1|) (-684 |#1|) |#1| (-684 |#1|))) (-15 -1949 ((-684 |#1|) (-684 |#1|) (-684 |#1|) |#1|)) (-15 -2624 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -3790 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|) (-767))) (-15 ** ((-684 |#1|) (-684 |#1|) (-767)))) (-1045)) (T -685))
-((** (*1 *2 *2 *3) (-12 (-5 *2 (-684 *4)) (-5 *3 (-767)) (-4 *4 (-1045)) (-5 *1 (-685 *4)))) (-3790 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-684 *4)) (-5 *3 (-767)) (-4 *4 (-1045)) (-5 *1 (-685 *4)))) (-2624 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))) (-1949 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))) (-2712 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))) (-3312 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))) (-3312 (*1 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))) (-1513 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))) (-4054 (*1 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))))
-(-10 -7 (-15 -4054 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -1513 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -3312 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -3312 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -2712 ((-684 |#1|) (-684 |#1|) |#1| (-684 |#1|))) (-15 -1949 ((-684 |#1|) (-684 |#1|) (-684 |#1|) |#1|)) (-15 -2624 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -3790 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|) (-767))) (-15 ** ((-684 |#1|) (-684 |#1|) (-767))))
-((-2131 (((-3 |#1| "failed") $) 17)) (-2058 ((|#1| $) NIL)) (-2598 (($) 7 T CONST)) (-4370 (($ |#1|) 8)) (-1693 (($ |#1|) 15) (((-858) $) 22)) (-2226 (((-112) $ (|[\|\|]| |#1|)) 13) (((-112) $ (|[\|\|]| -2598)) 11)) (-1905 ((|#1| $) 14)))
-(((-686 |#1|) (-13 (-1252) (-1034 |#1|) (-610 (-858)) (-10 -8 (-15 -4370 ($ |#1|)) (-15 -2226 ((-112) $ (|[\|\|]| |#1|))) (-15 -2226 ((-112) $ (|[\|\|]| -2598))) (-15 -1905 (|#1| $)) (-15 -2598 ($) -2669))) (-610 (-858))) (T -686))
-((-4370 (*1 *1 *2) (-12 (-5 *1 (-686 *2)) (-4 *2 (-610 (-858))))) (-2226 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| *4)) (-4 *4 (-610 (-858))) (-5 *2 (-112)) (-5 *1 (-686 *4)))) (-2226 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -2598)) (-5 *2 (-112)) (-5 *1 (-686 *4)) (-4 *4 (-610 (-858))))) (-1905 (*1 *2 *1) (-12 (-5 *1 (-686 *2)) (-4 *2 (-610 (-858))))) (-2598 (*1 *1) (-12 (-5 *1 (-686 *2)) (-4 *2 (-610 (-858))))))
-(-13 (-1252) (-1034 |#1|) (-610 (-858)) (-10 -8 (-15 -4370 ($ |#1|)) (-15 -2226 ((-112) $ (|[\|\|]| |#1|))) (-15 -2226 ((-112) $ (|[\|\|]| -2598))) (-15 -1905 (|#1| $)) (-15 -2598 ($) -2669)))
-((-2648 ((|#2| |#2| |#4|) 25)) (-4312 (((-684 |#2|) |#3| |#4|) 31)) (-2245 (((-684 |#2|) |#2| |#4|) 30)) (-3894 (((-1257 |#2|) |#2| |#4|) 16)) (-1658 ((|#2| |#3| |#4|) 24)) (-3471 (((-684 |#2|) |#3| |#4| (-767) (-767)) 38)) (-2179 (((-684 |#2|) |#2| |#4| (-767)) 37)))
-(((-687 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3894 ((-1257 |#2|) |#2| |#4|)) (-15 -1658 (|#2| |#3| |#4|)) (-15 -2648 (|#2| |#2| |#4|)) (-15 -2245 ((-684 |#2|) |#2| |#4|)) (-15 -2179 ((-684 |#2|) |#2| |#4| (-767))) (-15 -4312 ((-684 |#2|) |#3| |#4|)) (-15 -3471 ((-684 |#2|) |#3| |#4| (-767) (-767)))) (-1093) (-896 |#1|) (-373 |#2|) (-13 (-373 |#1|) (-10 -7 (-6 -4407)))) (T -687))
-((-3471 (*1 *2 *3 *4 *5 *5) (-12 (-5 *5 (-767)) (-4 *6 (-1093)) (-4 *7 (-896 *6)) (-5 *2 (-684 *7)) (-5 *1 (-687 *6 *7 *3 *4)) (-4 *3 (-373 *7)) (-4 *4 (-13 (-373 *6) (-10 -7 (-6 -4407)))))) (-4312 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-4 *6 (-896 *5)) (-5 *2 (-684 *6)) (-5 *1 (-687 *5 *6 *3 *4)) (-4 *3 (-373 *6)) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4407)))))) (-2179 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-767)) (-4 *6 (-1093)) (-4 *3 (-896 *6)) (-5 *2 (-684 *3)) (-5 *1 (-687 *6 *3 *7 *4)) (-4 *7 (-373 *3)) (-4 *4 (-13 (-373 *6) (-10 -7 (-6 -4407)))))) (-2245 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-4 *3 (-896 *5)) (-5 *2 (-684 *3)) (-5 *1 (-687 *5 *3 *6 *4)) (-4 *6 (-373 *3)) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4407)))))) (-2648 (*1 *2 *2 *3) (-12 (-4 *4 (-1093)) (-4 *2 (-896 *4)) (-5 *1 (-687 *4 *2 *5 *3)) (-4 *5 (-373 *2)) (-4 *3 (-13 (-373 *4) (-10 -7 (-6 -4407)))))) (-1658 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-4 *2 (-896 *5)) (-5 *1 (-687 *5 *2 *3 *4)) (-4 *3 (-373 *2)) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4407)))))) (-3894 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-4 *3 (-896 *5)) (-5 *2 (-1257 *3)) (-5 *1 (-687 *5 *3 *6 *4)) (-4 *6 (-373 *3)) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4407)))))))
-(-10 -7 (-15 -3894 ((-1257 |#2|) |#2| |#4|)) (-15 -1658 (|#2| |#3| |#4|)) (-15 -2648 (|#2| |#2| |#4|)) (-15 -2245 ((-684 |#2|) |#2| |#4|)) (-15 -2179 ((-684 |#2|) |#2| |#4| (-767))) (-15 -4312 ((-684 |#2|) |#3| |#4|)) (-15 -3471 ((-684 |#2|) |#3| |#4| (-767) (-767))))
-((-3266 (((-2 (|:| |num| (-684 |#1|)) (|:| |den| |#1|)) (-684 |#2|)) 20)) (-1417 ((|#1| (-684 |#2|)) 9)) (-2119 (((-684 |#1|) (-684 |#2|)) 18)))
-(((-688 |#1| |#2|) (-10 -7 (-15 -1417 (|#1| (-684 |#2|))) (-15 -2119 ((-684 |#1|) (-684 |#2|))) (-15 -3266 ((-2 (|:| |num| (-684 |#1|)) (|:| |den| |#1|)) (-684 |#2|)))) (-555) (-988 |#1|)) (T -688))
-((-3266 (*1 *2 *3) (-12 (-5 *3 (-684 *5)) (-4 *5 (-988 *4)) (-4 *4 (-555)) (-5 *2 (-2 (|:| |num| (-684 *4)) (|:| |den| *4))) (-5 *1 (-688 *4 *5)))) (-2119 (*1 *2 *3) (-12 (-5 *3 (-684 *5)) (-4 *5 (-988 *4)) (-4 *4 (-555)) (-5 *2 (-684 *4)) (-5 *1 (-688 *4 *5)))) (-1417 (*1 *2 *3) (-12 (-5 *3 (-684 *4)) (-4 *4 (-988 *2)) (-4 *2 (-555)) (-5 *1 (-688 *2 *4)))))
-(-10 -7 (-15 -1417 (|#1| (-684 |#2|))) (-15 -2119 ((-684 |#1|) (-684 |#2|))) (-15 -3266 ((-2 (|:| |num| (-684 |#1|)) (|:| |den| |#1|)) (-684 |#2|))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-3561 (((-684 (-694))) NIL) (((-684 (-694)) (-1257 $)) NIL)) (-1733 (((-694) $) NIL)) (-1771 (($ $) NIL (|has| (-694) (-1193)))) (-1619 (($ $) NIL (|has| (-694) (-1193)))) (-2752 (((-1181 (-917) (-767)) (-563)) NIL (|has| (-694) (-349)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-694) (-307)) (|has| (-694) (-905))))) (-4335 (($ $) NIL (-4032 (-12 (|has| (-694) (-307)) (|has| (-694) (-905))) (|has| (-694) (-363))))) (-3205 (((-418 $) $) NIL (-4032 (-12 (|has| (-694) (-307)) (|has| (-694) (-905))) (|has| (-694) (-363))))) (-2186 (($ $) NIL (-12 (|has| (-694) (-998)) (|has| (-694) (-1193))))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-694) (-307)) (|has| (-694) (-905))))) (-1919 (((-112) $ $) NIL (|has| (-694) (-307)))) (-3749 (((-767)) NIL (|has| (-694) (-368)))) (-1748 (($ $) NIL (|has| (-694) (-1193)))) (-1597 (($ $) NIL (|has| (-694) (-1193)))) (-1794 (($ $) NIL (|has| (-694) (-1193)))) (-1643 (($ $) NIL (|has| (-694) (-1193)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL) (((-3 (-694) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-694) (-1034 (-407 (-563)))))) (-2058 (((-563) $) NIL) (((-694) $) NIL) (((-407 (-563)) $) NIL (|has| (-694) (-1034 (-407 (-563)))))) (-3937 (($ (-1257 (-694))) NIL) (($ (-1257 (-694)) (-1257 $)) NIL)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-694) (-349)))) (-3090 (($ $ $) NIL (|has| (-694) (-307)))) (-3914 (((-684 (-694)) $) NIL) (((-684 (-694)) $ (-1257 $)) NIL)) (-2950 (((-684 (-694)) (-684 $)) NIL) (((-2 (|:| -2835 (-684 (-694))) (|:| |vec| (-1257 (-694)))) (-684 $) (-1257 $)) NIL) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-694) (-636 (-563)))) (((-684 (-563)) (-684 $)) NIL (|has| (-694) (-636 (-563))))) (-2444 (((-3 $ "failed") (-407 (-1165 (-694)))) NIL (|has| (-694) (-363))) (($ (-1165 (-694))) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-2489 (((-694) $) 29)) (-3909 (((-3 (-407 (-563)) "failed") $) NIL (|has| (-694) (-545)))) (-2239 (((-112) $) NIL (|has| (-694) (-545)))) (-2651 (((-407 (-563)) $) NIL (|has| (-694) (-545)))) (-2522 (((-917)) NIL)) (-1691 (($) NIL (|has| (-694) (-368)))) (-3050 (($ $ $) NIL (|has| (-694) (-307)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| (-694) (-307)))) (-1571 (($) NIL (|has| (-694) (-349)))) (-2366 (((-112) $) NIL (|has| (-694) (-349)))) (-1637 (($ $) NIL (|has| (-694) (-349))) (($ $ (-767)) NIL (|has| (-694) (-349)))) (-2468 (((-112) $) NIL (-4032 (-12 (|has| (-694) (-307)) (|has| (-694) (-905))) (|has| (-694) (-363))))) (-3032 (((-2 (|:| |r| (-694)) (|:| |phi| (-694))) $) NIL (-12 (|has| (-694) (-1054)) (|has| (-694) (-1193))))) (-2180 (($) NIL (|has| (-694) (-1193)))) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-694) (-882 (-379)))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-694) (-882 (-563))))) (-3254 (((-829 (-917)) $) NIL (|has| (-694) (-349))) (((-917) $) NIL (|has| (-694) (-349)))) (-3827 (((-112) $) NIL)) (-1645 (($ $ (-563)) NIL (-12 (|has| (-694) (-998)) (|has| (-694) (-1193))))) (-3793 (((-694) $) NIL)) (-2408 (((-3 $ "failed") $) NIL (|has| (-694) (-349)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| (-694) (-307)))) (-3941 (((-1165 (-694)) $) NIL (|has| (-694) (-363)))) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-2240 (($ (-1 (-694) (-694)) $) NIL)) (-1476 (((-917) $) NIL (|has| (-694) (-368)))) (-4371 (($ $) NIL (|has| (-694) (-1193)))) (-2433 (((-1165 (-694)) $) NIL)) (-3513 (($ (-640 $)) NIL (|has| (-694) (-307))) (($ $ $) NIL (|has| (-694) (-307)))) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL (|has| (-694) (-363)))) (-2523 (($) NIL (|has| (-694) (-349)) CONST)) (-2555 (($ (-917)) NIL (|has| (-694) (-368)))) (-3127 (($) NIL)) (-2499 (((-694) $) 31)) (-1694 (((-1113) $) NIL)) (-4333 (($) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| (-694) (-307)))) (-3548 (($ (-640 $)) NIL (|has| (-694) (-307))) (($ $ $) NIL (|has| (-694) (-307)))) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) NIL (|has| (-694) (-349)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-694) (-307)) (|has| (-694) (-905))))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-694) (-307)) (|has| (-694) (-905))))) (-2174 (((-418 $) $) NIL (-4032 (-12 (|has| (-694) (-307)) (|has| (-694) (-905))) (|has| (-694) (-363))))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-694) (-307))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| (-694) (-307)))) (-3008 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-694)) NIL (|has| (-694) (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| (-694) (-307)))) (-3368 (($ $) NIL (|has| (-694) (-1193)))) (-1540 (($ $ (-1169) (-694)) NIL (|has| (-694) (-514 (-1169) (-694)))) (($ $ (-640 (-1169)) (-640 (-694))) NIL (|has| (-694) (-514 (-1169) (-694)))) (($ $ (-640 (-294 (-694)))) NIL (|has| (-694) (-309 (-694)))) (($ $ (-294 (-694))) NIL (|has| (-694) (-309 (-694)))) (($ $ (-694) (-694)) NIL (|has| (-694) (-309 (-694)))) (($ $ (-640 (-694)) (-640 (-694))) NIL (|has| (-694) (-309 (-694))))) (-2628 (((-767) $) NIL (|has| (-694) (-307)))) (-2309 (($ $ (-694)) NIL (|has| (-694) (-286 (-694) (-694))))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| (-694) (-307)))) (-2315 (((-694)) NIL) (((-694) (-1257 $)) NIL)) (-1423 (((-3 (-767) "failed") $ $) NIL (|has| (-694) (-349))) (((-767) $) NIL (|has| (-694) (-349)))) (-4202 (($ $ (-1 (-694) (-694))) NIL) (($ $ (-1 (-694) (-694)) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-1169)) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-767)) NIL (|has| (-694) (-233))) (($ $) NIL (|has| (-694) (-233)))) (-3974 (((-684 (-694)) (-1257 $) (-1 (-694) (-694))) NIL (|has| (-694) (-363)))) (-3390 (((-1165 (-694))) NIL)) (-1806 (($ $) NIL (|has| (-694) (-1193)))) (-1656 (($ $) NIL (|has| (-694) (-1193)))) (-4284 (($) NIL (|has| (-694) (-349)))) (-1784 (($ $) NIL (|has| (-694) (-1193)))) (-1630 (($ $) NIL (|has| (-694) (-1193)))) (-1759 (($ $) NIL (|has| (-694) (-1193)))) (-1608 (($ $) NIL (|has| (-694) (-1193)))) (-1880 (((-684 (-694)) (-1257 $)) NIL) (((-1257 (-694)) $) NIL) (((-684 (-694)) (-1257 $) (-1257 $)) NIL) (((-1257 (-694)) $ (-1257 $)) NIL)) (-2220 (((-536) $) NIL (|has| (-694) (-611 (-536)))) (((-169 (-225)) $) NIL (|has| (-694) (-1018))) (((-169 (-379)) $) NIL (|has| (-694) (-1018))) (((-888 (-379)) $) NIL (|has| (-694) (-611 (-888 (-379))))) (((-888 (-563)) $) NIL (|has| (-694) (-611 (-888 (-563))))) (($ (-1165 (-694))) NIL) (((-1165 (-694)) $) NIL) (($ (-1257 (-694))) NIL) (((-1257 (-694)) $) NIL)) (-4339 (($ $) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-4032 (-12 (|has| (-694) (-307)) (|has| $ (-145)) (|has| (-694) (-905))) (|has| (-694) (-349))))) (-1413 (($ (-694) (-694)) 12)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-563)) NIL) (($ (-694)) NIL) (($ (-169 (-379))) 13) (($ (-169 (-563))) 19) (($ (-169 (-694))) 28) (($ (-169 (-696))) 25) (((-169 (-379)) $) 33) (($ (-407 (-563))) NIL (-4032 (|has| (-694) (-1034 (-407 (-563)))) (|has| (-694) (-363))))) (-2779 (($ $) NIL (|has| (-694) (-349))) (((-3 $ "failed") $) NIL (-4032 (-12 (|has| (-694) (-307)) (|has| $ (-145)) (|has| (-694) (-905))) (|has| (-694) (-145))))) (-3421 (((-1165 (-694)) $) NIL)) (-1675 (((-767)) NIL)) (-4315 (((-1257 $)) NIL)) (-1840 (($ $) NIL (|has| (-694) (-1193)))) (-1695 (($ $) NIL (|has| (-694) (-1193)))) (-2126 (((-112) $ $) NIL)) (-1817 (($ $) NIL (|has| (-694) (-1193)))) (-1667 (($ $) NIL (|has| (-694) (-1193)))) (-1862 (($ $) NIL (|has| (-694) (-1193)))) (-1722 (($ $) NIL (|has| (-694) (-1193)))) (-3237 (((-694) $) NIL (|has| (-694) (-1193)))) (-1311 (($ $) NIL (|has| (-694) (-1193)))) (-1735 (($ $) NIL (|has| (-694) (-1193)))) (-1851 (($ $) NIL (|has| (-694) (-1193)))) (-1710 (($ $) NIL (|has| (-694) (-1193)))) (-1829 (($ $) NIL (|has| (-694) (-1193)))) (-1680 (($ $) NIL (|has| (-694) (-1193)))) (-2509 (($ $) NIL (|has| (-694) (-1054)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ (-1 (-694) (-694))) NIL) (($ $ (-1 (-694) (-694)) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-1169)) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-767)) NIL (|has| (-694) (-233))) (($ $) NIL (|has| (-694) (-233)))) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL (|has| (-694) (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ $) NIL (|has| (-694) (-1193))) (($ $ (-407 (-563))) NIL (-12 (|has| (-694) (-998)) (|has| (-694) (-1193)))) (($ $ (-563)) NIL (|has| (-694) (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ (-694) $) NIL) (($ $ (-694)) NIL) (($ (-407 (-563)) $) NIL (|has| (-694) (-363))) (($ $ (-407 (-563))) NIL (|has| (-694) (-363)))))
-(((-689) (-13 (-387) (-166 (-694)) (-10 -8 (-15 -1693 ($ (-169 (-379)))) (-15 -1693 ($ (-169 (-563)))) (-15 -1693 ($ (-169 (-694)))) (-15 -1693 ($ (-169 (-696)))) (-15 -1693 ((-169 (-379)) $))))) (T -689))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-169 (-379))) (-5 *1 (-689)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-169 (-563))) (-5 *1 (-689)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-169 (-694))) (-5 *1 (-689)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-169 (-696))) (-5 *1 (-689)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-169 (-379))) (-5 *1 (-689)))))
-(-13 (-387) (-166 (-694)) (-10 -8 (-15 -1693 ($ (-169 (-379)))) (-15 -1693 ($ (-169 (-563)))) (-15 -1693 ($ (-169 (-694)))) (-15 -1693 ($ (-169 (-696)))) (-15 -1693 ((-169 (-379)) $))))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2759 (((-112) $ (-767)) 8)) (-2812 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4407)))) (-4239 (($) 7 T CONST)) (-4005 (($ $) 62)) (-3813 (($ $) 58 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-2705 (($ |#1| $) 47 (|has| $ (-6 -4407))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4407)))) (-1459 (($ |#1| $) 57 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4407)))) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2964 ((|#1| $) 39)) (-1812 (($ |#1| $) 40) (($ |#1| $ (-767)) 63)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3755 ((|#1| $) 41)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2757 (((-640 (-2 (|:| -2557 |#1|) (|:| -1709 (-767)))) $) 61)) (-3890 (($) 49) (($ (-640 |#1|)) 48)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-2220 (((-536) $) 59 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 50)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-2233 (($ (-640 |#1|)) 42)) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-3893 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-112)))) (-3881 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-112)))) (-3870 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-112)))) (-2005 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-112)))) (-3216 (*1 *1 *2 *2) (-12 (-5 *2 (-767)) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-4040 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-2217 (*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-2206 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-2206 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-1692 (*1 *1 *2) (-12 (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *2)) (-4 *4 (-373 *3)) (-4 *2 (-373 *3)))) (-1769 (*1 *1 *2) (-12 (-4 *3 (-1045)) (-4 *1 (-682 *3 *2 *4)) (-4 *2 (-373 *3)) (-4 *4 (-373 *3)))) (-1769 (*1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (-3953 (*1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (-3943 (*1 *1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (-3934 (*1 *1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (-3734 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-640 (-640 *3))))) (-2308 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-640 (-563))) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-1849 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-640 (-563))) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-3924 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-3913 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-3901 (*1 *1 *1 *2 *2 *2 *2) (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-3892 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-1813 (*1 *1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (-1825 (*1 *1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (-1825 (*1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (* (*1 *1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-682 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *2 (-373 *3)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-682 *3 *2 *4)) (-4 *3 (-1045)) (-4 *2 (-373 *3)) (-4 *4 (-373 *3)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))) (-3012 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)) (-4 *2 (-555)))) (-1836 (*1 *1 *1 *2) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)) (-4 *2 (-363)))) (-1940 (*1 *1 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)) (-4 *2 (-307)))) (-2521 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-4 *3 (-555)) (-5 *2 (-767)))) (-1929 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-4 *3 (-555)) (-5 *2 (-767)))) (-1917 (*1 *2 *1) (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-4 *3 (-555)) (-5 *2 (-640 *5)))) (-2168 (*1 *2 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)) (|has| *2 (-6 (-4410 "*"))) (-4 *2 (-1045)))) (-2157 (*1 *2 *1) (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)) (|has| *2 (-6 (-4410 "*"))) (-4 *2 (-1045)))) (-3694 (*1 *1 *1) (|partial| -12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2)) (-4 *2 (-363)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-4 *3 (-363)))))
+(-13 (-57 |t#1| |t#2| |t#3|) (-10 -8 (-6 -4409) (-6 -4408) (-15 -3893 ((-112) $)) (-15 -3881 ((-112) $)) (-15 -3870 ((-112) $)) (-15 -2005 ((-112) $)) (-15 -3216 ($ (-767) (-767))) (-15 -4040 ($ (-640 (-640 |t#1|)))) (-15 -2217 ($ (-767) |t#1|)) (-15 -2206 ($ (-640 |t#1|))) (-15 -2206 ($ (-640 $))) (-15 -1692 ($ |t#3|)) (-15 -1769 ($ |t#2|)) (-15 -1769 ($ $)) (-15 -3953 ($ $)) (-15 -3943 ($ $ $)) (-15 -3934 ($ $ $)) (-15 -3734 ((-640 (-640 |t#1|)) $)) (-15 -2308 ($ $ (-640 (-563)) (-640 (-563)))) (-15 -1849 ($ $ (-640 (-563)) (-640 (-563)) $)) (-15 -3924 ($ $ (-563) (-563))) (-15 -3913 ($ $ (-563) (-563))) (-15 -3901 ($ $ (-563) (-563) (-563) (-563))) (-15 -3892 ($ $ (-563) (-563) $)) (-15 -1813 ($ $ $)) (-15 -1825 ($ $ $)) (-15 -1825 ($ $)) (-15 * ($ $ $)) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 * ($ (-563) $)) (-15 * (|t#3| $ |t#3|)) (-15 * (|t#2| |t#2| $)) (-15 ** ($ $ (-767))) (IF (|has| |t#1| (-555)) (-15 -3012 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-363)) (-15 -1836 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-307)) (-15 -1940 ($ $)) |%noBranch|) (IF (|has| |t#1| (-555)) (PROGN (-15 -2521 ((-767) $)) (-15 -1929 ((-767) $)) (-15 -1917 ((-640 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4410 "*"))) (PROGN (-15 -2168 (|t#1| $)) (-15 -2157 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-363)) (PROGN (-15 -3694 ((-3 $ "failed") $)) (-15 ** ($ $ (-563)))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-57 |#1| |#2| |#3|) . T) ((-1208) . T))
+((-1940 ((|#4| |#4|) 71 (|has| |#1| (-307)))) (-2521 (((-767) |#4|) 98 (|has| |#1| (-555)))) (-1929 (((-767) |#4|) 75 (|has| |#1| (-555)))) (-1917 (((-640 |#3|) |#4|) 82 (|has| |#1| (-555)))) (-4348 (((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|) 110 (|has| |#1| (-307)))) (-2157 ((|#1| |#4|) 34)) (-4008 (((-3 |#4| "failed") |#4|) 63 (|has| |#1| (-555)))) (-3694 (((-3 |#4| "failed") |#4|) 79 (|has| |#1| (-363)))) (-3997 ((|#4| |#4|) 67 (|has| |#1| (-555)))) (-3974 ((|#4| |#4| |#1| (-563) (-563)) 42)) (-3964 ((|#4| |#4| (-563) (-563)) 37)) (-3985 ((|#4| |#4| |#1| (-563) (-563)) 47)) (-2168 ((|#1| |#4|) 77)) (-2926 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 68 (|has| |#1| (-555)))))
+(((-683 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2168 (|#1| |#4|)) (-15 -2157 (|#1| |#4|)) (-15 -3964 (|#4| |#4| (-563) (-563))) (-15 -3974 (|#4| |#4| |#1| (-563) (-563))) (-15 -3985 (|#4| |#4| |#1| (-563) (-563))) (IF (|has| |#1| (-555)) (PROGN (-15 -2521 ((-767) |#4|)) (-15 -1929 ((-767) |#4|)) (-15 -1917 ((-640 |#3|) |#4|)) (-15 -3997 (|#4| |#4|)) (-15 -4008 ((-3 |#4| "failed") |#4|)) (-15 -2926 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-307)) (PROGN (-15 -1940 (|#4| |#4|)) (-15 -4348 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -3694 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-172) (-373 |#1|) (-373 |#1|) (-682 |#1| |#2| |#3|)) (T -683))
+((-3694 (*1 *2 *2) (|partial| -12 (-4 *3 (-363)) (-4 *3 (-172)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-4348 (*1 *2 *3 *3) (-12 (-4 *3 (-307)) (-4 *3 (-172)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-683 *3 *4 *5 *6)) (-4 *6 (-682 *3 *4 *5)))) (-1940 (*1 *2 *2) (-12 (-4 *3 (-307)) (-4 *3 (-172)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-2926 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *4 (-172)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4))) (-5 *1 (-683 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-4008 (*1 *2 *2) (|partial| -12 (-4 *3 (-555)) (-4 *3 (-172)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-3997 (*1 *2 *2) (-12 (-4 *3 (-555)) (-4 *3 (-172)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-1917 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *4 (-172)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-640 *6)) (-5 *1 (-683 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-1929 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *4 (-172)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-767)) (-5 *1 (-683 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-2521 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *4 (-172)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-767)) (-5 *1 (-683 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-3985 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-563)) (-4 *3 (-172)) (-4 *5 (-373 *3)) (-4 *6 (-373 *3)) (-5 *1 (-683 *3 *5 *6 *2)) (-4 *2 (-682 *3 *5 *6)))) (-3974 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-563)) (-4 *3 (-172)) (-4 *5 (-373 *3)) (-4 *6 (-373 *3)) (-5 *1 (-683 *3 *5 *6 *2)) (-4 *2 (-682 *3 *5 *6)))) (-3964 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-563)) (-4 *4 (-172)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *1 (-683 *4 *5 *6 *2)) (-4 *2 (-682 *4 *5 *6)))) (-2157 (*1 *2 *3) (-12 (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-172)) (-5 *1 (-683 *2 *4 *5 *3)) (-4 *3 (-682 *2 *4 *5)))) (-2168 (*1 *2 *3) (-12 (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-172)) (-5 *1 (-683 *2 *4 *5 *3)) (-4 *3 (-682 *2 *4 *5)))))
+(-10 -7 (-15 -2168 (|#1| |#4|)) (-15 -2157 (|#1| |#4|)) (-15 -3964 (|#4| |#4| (-563) (-563))) (-15 -3974 (|#4| |#4| |#1| (-563) (-563))) (-15 -3985 (|#4| |#4| |#1| (-563) (-563))) (IF (|has| |#1| (-555)) (PROGN (-15 -2521 ((-767) |#4|)) (-15 -1929 ((-767) |#4|)) (-15 -1917 ((-640 |#3|) |#4|)) (-15 -3997 (|#4| |#4|)) (-15 -4008 ((-3 |#4| "failed") |#4|)) (-15 -2926 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-307)) (PROGN (-15 -1940 (|#4| |#4|)) (-15 -4348 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -3694 ((-3 |#4| "failed") |#4|)) |%noBranch|))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3216 (($ (-767) (-767)) 47)) (-3934 (($ $ $) NIL)) (-1769 (($ (-1257 |#1|)) NIL) (($ $) NIL)) (-3870 (((-112) $) NIL)) (-3924 (($ $ (-563) (-563)) 12)) (-3913 (($ $ (-563) (-563)) NIL)) (-3901 (($ $ (-563) (-563) (-563) (-563)) NIL)) (-3953 (($ $) NIL)) (-3893 (((-112) $) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-3892 (($ $ (-563) (-563) $) NIL)) (-1849 ((|#1| $ (-563) (-563) |#1|) NIL) (($ $ (-640 (-563)) (-640 (-563)) $) NIL)) (-1589 (($ $ (-563) (-1257 |#1|)) NIL)) (-1572 (($ $ (-563) (-1257 |#1|)) NIL)) (-2217 (($ (-767) |#1|) 22)) (-2569 (($) NIL T CONST)) (-1940 (($ $) 31 (|has| |#1| (-307)))) (-1960 (((-1257 |#1|) $ (-563)) NIL)) (-2521 (((-767) $) 33 (|has| |#1| (-555)))) (-4356 ((|#1| $ (-563) (-563) |#1|) 51)) (-4293 ((|#1| $ (-563) (-563)) NIL)) (-2658 (((-640 |#1|) $) NIL)) (-1929 (((-767) $) 35 (|has| |#1| (-555)))) (-1917 (((-640 (-1257 |#1|)) $) 38 (|has| |#1| (-555)))) (-2380 (((-767) $) 20)) (-1565 (($ (-767) (-767) |#1|) 16)) (-2391 (((-767) $) 21)) (-2514 (((-112) $ (-767)) NIL)) (-2157 ((|#1| $) 29 (|has| |#1| (-6 (-4410 "*"))))) (-1995 (((-563) $) 9)) (-1979 (((-563) $) 10)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1986 (((-563) $) 11)) (-1969 (((-563) $) 48)) (-4040 (($ (-640 (-640 |#1|))) NIL)) (-4347 (($ (-1 |#1| |#1|) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3734 (((-640 (-640 |#1|)) $) 58)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3694 (((-3 $ "failed") $) 45 (|has| |#1| (-363)))) (-3943 (($ $ $) NIL)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2221 (($ $ |#1|) NIL)) (-3012 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#1| $ (-563) (-563)) NIL) ((|#1| $ (-563) (-563) |#1|) NIL) (($ $ (-640 (-563)) (-640 (-563))) NIL)) (-2206 (($ (-640 |#1|)) NIL) (($ (-640 $)) NIL) (($ (-1257 |#1|)) 52)) (-3881 (((-112) $) NIL)) (-2168 ((|#1| $) 27 (|has| |#1| (-6 (-4410 "*"))))) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) NIL)) (-2219 (((-536) $) 62 (|has| |#1| (-611 (-536))))) (-1950 (((-1257 |#1|) $ (-563)) NIL)) (-1692 (($ (-1257 |#1|)) NIL) (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2005 (((-112) $) NIL)) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1825 (($ $ $) NIL) (($ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-767)) 23) (($ $ (-563)) 46 (|has| |#1| (-363)))) (* (($ $ $) 13) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-563) $) NIL) (((-1257 |#1|) $ (-1257 |#1|)) NIL) (((-1257 |#1|) (-1257 |#1|) $) NIL)) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-684 |#1|) (-13 (-682 |#1| (-1257 |#1|) (-1257 |#1|)) (-10 -8 (-15 -2206 ($ (-1257 |#1|))) (IF (|has| |#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -3694 ((-3 $ "failed") $)) |%noBranch|))) (-1045)) (T -684))
+((-3694 (*1 *1 *1) (|partial| -12 (-5 *1 (-684 *2)) (-4 *2 (-363)) (-4 *2 (-1045)))) (-2206 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1045)) (-5 *1 (-684 *3)))))
+(-13 (-682 |#1| (-1257 |#1|) (-1257 |#1|)) (-10 -8 (-15 -2206 ($ (-1257 |#1|))) (IF (|has| |#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -3694 ((-3 $ "failed") $)) |%noBranch|)))
+((-4074 (((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|)) 25)) (-4063 (((-684 |#1|) (-684 |#1|) (-684 |#1|) |#1|) 21)) (-4085 (((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|) (-767)) 26)) (-4029 (((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|)) 14)) (-4041 (((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|)) 18) (((-684 |#1|) (-684 |#1|) (-684 |#1|)) 16)) (-4053 (((-684 |#1|) (-684 |#1|) |#1| (-684 |#1|)) 20)) (-4018 (((-684 |#1|) (-684 |#1|) (-684 |#1|)) 12)) (** (((-684 |#1|) (-684 |#1|) (-767)) 30)))
+(((-685 |#1|) (-10 -7 (-15 -4018 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -4029 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -4041 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -4041 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -4053 ((-684 |#1|) (-684 |#1|) |#1| (-684 |#1|))) (-15 -4063 ((-684 |#1|) (-684 |#1|) (-684 |#1|) |#1|)) (-15 -4074 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -4085 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|) (-767))) (-15 ** ((-684 |#1|) (-684 |#1|) (-767)))) (-1045)) (T -685))
+((** (*1 *2 *2 *3) (-12 (-5 *2 (-684 *4)) (-5 *3 (-767)) (-4 *4 (-1045)) (-5 *1 (-685 *4)))) (-4085 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-684 *4)) (-5 *3 (-767)) (-4 *4 (-1045)) (-5 *1 (-685 *4)))) (-4074 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))) (-4063 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))) (-4053 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))) (-4041 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))) (-4041 (*1 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))) (-4029 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))) (-4018 (*1 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))))
+(-10 -7 (-15 -4018 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -4029 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -4041 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -4041 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -4053 ((-684 |#1|) (-684 |#1|) |#1| (-684 |#1|))) (-15 -4063 ((-684 |#1|) (-684 |#1|) (-684 |#1|) |#1|)) (-15 -4074 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -4085 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|) (-684 |#1|) (-767))) (-15 ** ((-684 |#1|) (-684 |#1|) (-767))))
+((-2130 (((-3 |#1| "failed") $) 17)) (-2057 ((|#1| $) NIL)) (-2598 (($) 7 T CONST)) (-4096 (($ |#1|) 8)) (-1692 (($ |#1|) 15) (((-858) $) 22)) (-2224 (((-112) $ (|[\|\|]| |#1|)) 13) (((-112) $ (|[\|\|]| -2598)) 11)) (-1904 ((|#1| $) 14)))
+(((-686 |#1|) (-13 (-1252) (-1034 |#1|) (-610 (-858)) (-10 -8 (-15 -4096 ($ |#1|)) (-15 -2224 ((-112) $ (|[\|\|]| |#1|))) (-15 -2224 ((-112) $ (|[\|\|]| -2598))) (-15 -1904 (|#1| $)) (-15 -2598 ($) -2668))) (-610 (-858))) (T -686))
+((-4096 (*1 *1 *2) (-12 (-5 *1 (-686 *2)) (-4 *2 (-610 (-858))))) (-2224 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| *4)) (-4 *4 (-610 (-858))) (-5 *2 (-112)) (-5 *1 (-686 *4)))) (-2224 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -2598)) (-5 *2 (-112)) (-5 *1 (-686 *4)) (-4 *4 (-610 (-858))))) (-1904 (*1 *2 *1) (-12 (-5 *1 (-686 *2)) (-4 *2 (-610 (-858))))) (-2598 (*1 *1) (-12 (-5 *1 (-686 *2)) (-4 *2 (-610 (-858))))))
+(-13 (-1252) (-1034 |#1|) (-610 (-858)) (-10 -8 (-15 -4096 ($ |#1|)) (-15 -2224 ((-112) $ (|[\|\|]| |#1|))) (-15 -2224 ((-112) $ (|[\|\|]| -2598))) (-15 -1904 (|#1| $)) (-15 -2598 ($) -2668)))
+((-4129 ((|#2| |#2| |#4|) 25)) (-4163 (((-684 |#2|) |#3| |#4|) 31)) (-4142 (((-684 |#2|) |#2| |#4|) 30)) (-4108 (((-1257 |#2|) |#2| |#4|) 16)) (-4119 ((|#2| |#3| |#4|) 24)) (-4172 (((-684 |#2|) |#3| |#4| (-767) (-767)) 38)) (-4153 (((-684 |#2|) |#2| |#4| (-767)) 37)))
+(((-687 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4108 ((-1257 |#2|) |#2| |#4|)) (-15 -4119 (|#2| |#3| |#4|)) (-15 -4129 (|#2| |#2| |#4|)) (-15 -4142 ((-684 |#2|) |#2| |#4|)) (-15 -4153 ((-684 |#2|) |#2| |#4| (-767))) (-15 -4163 ((-684 |#2|) |#3| |#4|)) (-15 -4172 ((-684 |#2|) |#3| |#4| (-767) (-767)))) (-1093) (-896 |#1|) (-373 |#2|) (-13 (-373 |#1|) (-10 -7 (-6 -4408)))) (T -687))
+((-4172 (*1 *2 *3 *4 *5 *5) (-12 (-5 *5 (-767)) (-4 *6 (-1093)) (-4 *7 (-896 *6)) (-5 *2 (-684 *7)) (-5 *1 (-687 *6 *7 *3 *4)) (-4 *3 (-373 *7)) (-4 *4 (-13 (-373 *6) (-10 -7 (-6 -4408)))))) (-4163 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-4 *6 (-896 *5)) (-5 *2 (-684 *6)) (-5 *1 (-687 *5 *6 *3 *4)) (-4 *3 (-373 *6)) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4408)))))) (-4153 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-767)) (-4 *6 (-1093)) (-4 *3 (-896 *6)) (-5 *2 (-684 *3)) (-5 *1 (-687 *6 *3 *7 *4)) (-4 *7 (-373 *3)) (-4 *4 (-13 (-373 *6) (-10 -7 (-6 -4408)))))) (-4142 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-4 *3 (-896 *5)) (-5 *2 (-684 *3)) (-5 *1 (-687 *5 *3 *6 *4)) (-4 *6 (-373 *3)) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4408)))))) (-4129 (*1 *2 *2 *3) (-12 (-4 *4 (-1093)) (-4 *2 (-896 *4)) (-5 *1 (-687 *4 *2 *5 *3)) (-4 *5 (-373 *2)) (-4 *3 (-13 (-373 *4) (-10 -7 (-6 -4408)))))) (-4119 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-4 *2 (-896 *5)) (-5 *1 (-687 *5 *2 *3 *4)) (-4 *3 (-373 *2)) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4408)))))) (-4108 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-4 *3 (-896 *5)) (-5 *2 (-1257 *3)) (-5 *1 (-687 *5 *3 *6 *4)) (-4 *6 (-373 *3)) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4408)))))))
+(-10 -7 (-15 -4108 ((-1257 |#2|) |#2| |#4|)) (-15 -4119 (|#2| |#3| |#4|)) (-15 -4129 (|#2| |#2| |#4|)) (-15 -4142 ((-684 |#2|) |#2| |#4|)) (-15 -4153 ((-684 |#2|) |#2| |#4| (-767))) (-15 -4163 ((-684 |#2|) |#3| |#4|)) (-15 -4172 ((-684 |#2|) |#3| |#4| (-767) (-767))))
+((-2674 (((-2 (|:| |num| (-684 |#1|)) (|:| |den| |#1|)) (-684 |#2|)) 20)) (-2655 ((|#1| (-684 |#2|)) 9)) (-2663 (((-684 |#1|) (-684 |#2|)) 18)))
+(((-688 |#1| |#2|) (-10 -7 (-15 -2655 (|#1| (-684 |#2|))) (-15 -2663 ((-684 |#1|) (-684 |#2|))) (-15 -2674 ((-2 (|:| |num| (-684 |#1|)) (|:| |den| |#1|)) (-684 |#2|)))) (-555) (-988 |#1|)) (T -688))
+((-2674 (*1 *2 *3) (-12 (-5 *3 (-684 *5)) (-4 *5 (-988 *4)) (-4 *4 (-555)) (-5 *2 (-2 (|:| |num| (-684 *4)) (|:| |den| *4))) (-5 *1 (-688 *4 *5)))) (-2663 (*1 *2 *3) (-12 (-5 *3 (-684 *5)) (-4 *5 (-988 *4)) (-4 *4 (-555)) (-5 *2 (-684 *4)) (-5 *1 (-688 *4 *5)))) (-2655 (*1 *2 *3) (-12 (-5 *3 (-684 *4)) (-4 *4 (-988 *2)) (-4 *2 (-555)) (-5 *1 (-688 *2 *4)))))
+(-10 -7 (-15 -2655 (|#1| (-684 |#2|))) (-15 -2663 ((-684 |#1|) (-684 |#2|))) (-15 -2674 ((-2 (|:| |num| (-684 |#1|)) (|:| |den| |#1|)) (-684 |#2|))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3340 (((-684 (-694))) NIL) (((-684 (-694)) (-1257 $)) NIL)) (-1731 (((-694) $) NIL)) (-1770 (($ $) NIL (|has| (-694) (-1193)))) (-1618 (($ $) NIL (|has| (-694) (-1193)))) (-1597 (((-1181 (-917) (-767)) (-563)) NIL (|has| (-694) (-349)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-694) (-307)) (|has| (-694) (-905))))) (-1798 (($ $) NIL (-4034 (-12 (|has| (-694) (-307)) (|has| (-694) (-905))) (|has| (-694) (-363))))) (-2802 (((-418 $) $) NIL (-4034 (-12 (|has| (-694) (-307)) (|has| (-694) (-905))) (|has| (-694) (-363))))) (-2185 (($ $) NIL (-12 (|has| (-694) (-998)) (|has| (-694) (-1193))))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-694) (-307)) (|has| (-694) (-905))))) (-2003 (((-112) $ $) NIL (|has| (-694) (-307)))) (-3750 (((-767)) NIL (|has| (-694) (-368)))) (-1747 (($ $) NIL (|has| (-694) (-1193)))) (-1596 (($ $) NIL (|has| (-694) (-1193)))) (-1793 (($ $) NIL (|has| (-694) (-1193)))) (-1642 (($ $) NIL (|has| (-694) (-1193)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL) (((-3 (-694) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-694) (-1034 (-407 (-563)))))) (-2057 (((-563) $) NIL) (((-694) $) NIL) (((-407 (-563)) $) NIL (|has| (-694) (-1034 (-407 (-563)))))) (-3458 (($ (-1257 (-694))) NIL) (($ (-1257 (-694)) (-1257 $)) NIL)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-694) (-349)))) (-3094 (($ $ $) NIL (|has| (-694) (-307)))) (-3330 (((-684 (-694)) $) NIL) (((-684 (-694)) $ (-1257 $)) NIL)) (-1476 (((-684 (-694)) (-684 $)) NIL) (((-2 (|:| -1957 (-684 (-694))) (|:| |vec| (-1257 (-694)))) (-684 $) (-1257 $)) NIL) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-694) (-636 (-563)))) (((-684 (-563)) (-684 $)) NIL (|has| (-694) (-636 (-563))))) (-2444 (((-3 $ "failed") (-407 (-1165 (-694)))) NIL (|has| (-694) (-363))) (($ (-1165 (-694))) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-2488 (((-694) $) 29)) (-2327 (((-3 (-407 (-563)) "failed") $) NIL (|has| (-694) (-545)))) (-2317 (((-112) $) NIL (|has| (-694) (-545)))) (-2306 (((-407 (-563)) $) NIL (|has| (-694) (-545)))) (-2521 (((-917)) NIL)) (-1690 (($) NIL (|has| (-694) (-368)))) (-3054 (($ $ $) NIL (|has| (-694) (-307)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| (-694) (-307)))) (-4036 (($) NIL (|has| (-694) (-349)))) (-1656 (((-112) $) NIL (|has| (-694) (-349)))) (-3188 (($ $) NIL (|has| (-694) (-349))) (($ $ (-767)) NIL (|has| (-694) (-349)))) (-2560 (((-112) $) NIL (-4034 (-12 (|has| (-694) (-307)) (|has| (-694) (-905))) (|has| (-694) (-363))))) (-2164 (((-2 (|:| |r| (-694)) (|:| |phi| (-694))) $) NIL (-12 (|has| (-694) (-1054)) (|has| (-694) (-1193))))) (-2179 (($) NIL (|has| (-694) (-1193)))) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-694) (-882 (-379)))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-694) (-882 (-563))))) (-1775 (((-829 (-917)) $) NIL (|has| (-694) (-349))) (((-917) $) NIL (|has| (-694) (-349)))) (-3401 (((-112) $) NIL)) (-2172 (($ $ (-563)) NIL (-12 (|has| (-694) (-998)) (|has| (-694) (-1193))))) (-3975 (((-694) $) NIL)) (-1983 (((-3 $ "failed") $) NIL (|has| (-694) (-349)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| (-694) (-307)))) (-4035 (((-1165 (-694)) $) NIL (|has| (-694) (-363)))) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-2238 (($ (-1 (-694) (-694)) $) NIL)) (-3990 (((-917) $) NIL (|has| (-694) (-368)))) (-4372 (($ $) NIL (|has| (-694) (-1193)))) (-2433 (((-1165 (-694)) $) NIL)) (-3517 (($ (-640 $)) NIL (|has| (-694) (-307))) (($ $ $) NIL (|has| (-694) (-307)))) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL (|has| (-694) (-363)))) (-2522 (($) NIL (|has| (-694) (-349)) CONST)) (-2552 (($ (-917)) NIL (|has| (-694) (-368)))) (-2178 (($) NIL)) (-2498 (((-694) $) 31)) (-1693 (((-1113) $) NIL)) (-4334 (($) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| (-694) (-307)))) (-3551 (($ (-640 $)) NIL (|has| (-694) (-307))) (($ $ $) NIL (|has| (-694) (-307)))) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) NIL (|has| (-694) (-349)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-694) (-307)) (|has| (-694) (-905))))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-694) (-307)) (|has| (-694) (-905))))) (-2173 (((-418 $) $) NIL (-4034 (-12 (|has| (-694) (-307)) (|has| (-694) (-905))) (|has| (-694) (-363))))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-694) (-307))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| (-694) (-307)))) (-3012 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-694)) NIL (|has| (-694) (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| (-694) (-307)))) (-3372 (($ $) NIL (|has| (-694) (-1193)))) (-1542 (($ $ (-1169) (-694)) NIL (|has| (-694) (-514 (-1169) (-694)))) (($ $ (-640 (-1169)) (-640 (-694))) NIL (|has| (-694) (-514 (-1169) (-694)))) (($ $ (-640 (-294 (-694)))) NIL (|has| (-694) (-309 (-694)))) (($ $ (-294 (-694))) NIL (|has| (-694) (-309 (-694)))) (($ $ (-694) (-694)) NIL (|has| (-694) (-309 (-694)))) (($ $ (-640 (-694)) (-640 (-694))) NIL (|has| (-694) (-309 (-694))))) (-1993 (((-767) $) NIL (|has| (-694) (-307)))) (-2308 (($ $ (-694)) NIL (|has| (-694) (-286 (-694) (-694))))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| (-694) (-307)))) (-1623 (((-694)) NIL) (((-694) (-1257 $)) NIL)) (-3196 (((-3 (-767) "failed") $ $) NIL (|has| (-694) (-349))) (((-767) $) NIL (|has| (-694) (-349)))) (-4203 (($ $ (-1 (-694) (-694))) NIL) (($ $ (-1 (-694) (-694)) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-1169)) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-767)) NIL (|has| (-694) (-233))) (($ $) NIL (|has| (-694) (-233)))) (-3388 (((-684 (-694)) (-1257 $) (-1 (-694) (-694))) NIL (|has| (-694) (-363)))) (-3402 (((-1165 (-694))) NIL)) (-1805 (($ $) NIL (|has| (-694) (-1193)))) (-1655 (($ $) NIL (|has| (-694) (-1193)))) (-1586 (($) NIL (|has| (-694) (-349)))) (-1783 (($ $) NIL (|has| (-694) (-1193)))) (-1629 (($ $) NIL (|has| (-694) (-1193)))) (-1758 (($ $) NIL (|has| (-694) (-1193)))) (-1607 (($ $) NIL (|has| (-694) (-1193)))) (-3759 (((-684 (-694)) (-1257 $)) NIL) (((-1257 (-694)) $) NIL) (((-684 (-694)) (-1257 $) (-1257 $)) NIL) (((-1257 (-694)) $ (-1257 $)) NIL)) (-2219 (((-536) $) NIL (|has| (-694) (-611 (-536)))) (((-169 (-225)) $) NIL (|has| (-694) (-1018))) (((-169 (-379)) $) NIL (|has| (-694) (-1018))) (((-888 (-379)) $) NIL (|has| (-694) (-611 (-888 (-379))))) (((-888 (-563)) $) NIL (|has| (-694) (-611 (-888 (-563))))) (($ (-1165 (-694))) NIL) (((-1165 (-694)) $) NIL) (($ (-1257 (-694))) NIL) (((-1257 (-694)) $) NIL)) (-2150 (($ $) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-4034 (-12 (|has| (-694) (-307)) (|has| $ (-145)) (|has| (-694) (-905))) (|has| (-694) (-349))))) (-1413 (($ (-694) (-694)) 12)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-563)) NIL) (($ (-694)) NIL) (($ (-169 (-379))) 13) (($ (-169 (-563))) 19) (($ (-169 (-694))) 28) (($ (-169 (-696))) 25) (((-169 (-379)) $) 33) (($ (-407 (-563))) NIL (-4034 (|has| (-694) (-1034 (-407 (-563)))) (|has| (-694) (-363))))) (-2047 (($ $) NIL (|has| (-694) (-349))) (((-3 $ "failed") $) NIL (-4034 (-12 (|has| (-694) (-307)) (|has| $ (-145)) (|has| (-694) (-905))) (|has| (-694) (-145))))) (-1892 (((-1165 (-694)) $) NIL)) (-3914 (((-767)) NIL)) (-4013 (((-1257 $)) NIL)) (-1839 (($ $) NIL (|has| (-694) (-1193)))) (-1694 (($ $) NIL (|has| (-694) (-1193)))) (-3223 (((-112) $ $) NIL)) (-1816 (($ $) NIL (|has| (-694) (-1193)))) (-1666 (($ $) NIL (|has| (-694) (-1193)))) (-1861 (($ $) NIL (|has| (-694) (-1193)))) (-1721 (($ $) NIL (|has| (-694) (-1193)))) (-2326 (((-694) $) NIL (|has| (-694) (-1193)))) (-1311 (($ $) NIL (|has| (-694) (-1193)))) (-1734 (($ $) NIL (|has| (-694) (-1193)))) (-1850 (($ $) NIL (|has| (-694) (-1193)))) (-1709 (($ $) NIL (|has| (-694) (-1193)))) (-1828 (($ $) NIL (|has| (-694) (-1193)))) (-1679 (($ $) NIL (|has| (-694) (-1193)))) (-1462 (($ $) NIL (|has| (-694) (-1054)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-1 (-694) (-694))) NIL) (($ $ (-1 (-694) (-694)) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-1169)) NIL (|has| (-694) (-896 (-1169)))) (($ $ (-767)) NIL (|has| (-694) (-233))) (($ $) NIL (|has| (-694) (-233)))) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL (|has| (-694) (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ $) NIL (|has| (-694) (-1193))) (($ $ (-407 (-563))) NIL (-12 (|has| (-694) (-998)) (|has| (-694) (-1193)))) (($ $ (-563)) NIL (|has| (-694) (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ (-694) $) NIL) (($ $ (-694)) NIL) (($ (-407 (-563)) $) NIL (|has| (-694) (-363))) (($ $ (-407 (-563))) NIL (|has| (-694) (-363)))))
+(((-689) (-13 (-387) (-166 (-694)) (-10 -8 (-15 -1692 ($ (-169 (-379)))) (-15 -1692 ($ (-169 (-563)))) (-15 -1692 ($ (-169 (-694)))) (-15 -1692 ($ (-169 (-696)))) (-15 -1692 ((-169 (-379)) $))))) (T -689))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-169 (-379))) (-5 *1 (-689)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-169 (-563))) (-5 *1 (-689)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-169 (-694))) (-5 *1 (-689)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-169 (-696))) (-5 *1 (-689)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-169 (-379))) (-5 *1 (-689)))))
+(-13 (-387) (-166 (-694)) (-10 -8 (-15 -1692 ($ (-169 (-379)))) (-15 -1692 ($ (-169 (-563)))) (-15 -1692 ($ (-169 (-694)))) (-15 -1692 ($ (-169 (-696)))) (-15 -1692 ((-169 (-379)) $))))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-3001 (((-112) $ (-767)) 8)) (-3678 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4408)))) (-2569 (($) 7 T CONST)) (-4194 (($ $) 62)) (-3814 (($ $) 58 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1691 (($ |#1| $) 47 (|has| $ (-6 -4408))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4408)))) (-1459 (($ |#1| $) 57 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4408)))) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2627 ((|#1| $) 39)) (-3867 (($ |#1| $) 40) (($ |#1| $ (-767)) 63)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-2808 ((|#1| $) 41)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-4182 (((-640 (-2 (|:| -2556 |#1|) (|:| -1708 (-767)))) $) 61)) (-3863 (($) 49) (($ (-640 |#1|)) 48)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-2219 (((-536) $) 59 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 50)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-2820 (($ (-640 |#1|)) 42)) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-690 |#1|) (-140) (-1093)) (T -690))
-((-1812 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-690 *2)) (-4 *2 (-1093)))) (-4005 (*1 *1 *1) (-12 (-4 *1 (-690 *2)) (-4 *2 (-1093)))) (-2757 (*1 *2 *1) (-12 (-4 *1 (-690 *3)) (-4 *3 (-1093)) (-5 *2 (-640 (-2 (|:| -2557 *3) (|:| -1709 (-767))))))))
-(-13 (-235 |t#1|) (-10 -8 (-15 -1812 ($ |t#1| $ (-767))) (-15 -4005 ($ $)) (-15 -2757 ((-640 (-2 (|:| -2557 |t#1|) (|:| -1709 (-767)))) $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-235 |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-4147 (((-640 |#1|) (-640 (-2 (|:| -2174 |#1|) (|:| -4167 (-563)))) (-563)) 47)) (-2526 ((|#1| |#1| (-563)) 46)) (-3548 ((|#1| |#1| |#1| (-563)) 36)) (-2174 (((-640 |#1|) |#1| (-563)) 39)) (-1704 ((|#1| |#1| (-563) |#1| (-563)) 32)) (-3384 (((-640 (-2 (|:| -2174 |#1|) (|:| -4167 (-563)))) |#1| (-563)) 45)))
-(((-691 |#1|) (-10 -7 (-15 -3548 (|#1| |#1| |#1| (-563))) (-15 -2526 (|#1| |#1| (-563))) (-15 -2174 ((-640 |#1|) |#1| (-563))) (-15 -3384 ((-640 (-2 (|:| -2174 |#1|) (|:| -4167 (-563)))) |#1| (-563))) (-15 -4147 ((-640 |#1|) (-640 (-2 (|:| -2174 |#1|) (|:| -4167 (-563)))) (-563))) (-15 -1704 (|#1| |#1| (-563) |#1| (-563)))) (-1233 (-563))) (T -691))
-((-1704 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-691 *2)) (-4 *2 (-1233 *3)))) (-4147 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-2 (|:| -2174 *5) (|:| -4167 (-563))))) (-5 *4 (-563)) (-4 *5 (-1233 *4)) (-5 *2 (-640 *5)) (-5 *1 (-691 *5)))) (-3384 (*1 *2 *3 *4) (-12 (-5 *4 (-563)) (-5 *2 (-640 (-2 (|:| -2174 *3) (|:| -4167 *4)))) (-5 *1 (-691 *3)) (-4 *3 (-1233 *4)))) (-2174 (*1 *2 *3 *4) (-12 (-5 *4 (-563)) (-5 *2 (-640 *3)) (-5 *1 (-691 *3)) (-4 *3 (-1233 *4)))) (-2526 (*1 *2 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-691 *2)) (-4 *2 (-1233 *3)))) (-3548 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-691 *2)) (-4 *2 (-1233 *3)))))
-(-10 -7 (-15 -3548 (|#1| |#1| |#1| (-563))) (-15 -2526 (|#1| |#1| (-563))) (-15 -2174 ((-640 |#1|) |#1| (-563))) (-15 -3384 ((-640 (-2 (|:| -2174 |#1|) (|:| -4167 (-563)))) |#1| (-563))) (-15 -4147 ((-640 |#1|) (-640 (-2 (|:| -2174 |#1|) (|:| -4167 (-563)))) (-563))) (-15 -1704 (|#1| |#1| (-563) |#1| (-563))))
-((-1315 (((-1 (-939 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225) (-225))) 17)) (-3518 (((-1126 (-225)) (-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-640 (-263))) 40) (((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-640 (-263))) 42) (((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1087 (-225)) (-1087 (-225)) (-640 (-263))) 44)) (-2933 (((-1126 (-225)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-640 (-263))) NIL)) (-2147 (((-1126 (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1087 (-225)) (-1087 (-225)) (-640 (-263))) 45)))
-(((-692) (-10 -7 (-15 -3518 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -3518 ((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -3518 ((-1126 (-225)) (-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -2147 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -2933 ((-1126 (-225)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -1315 ((-1 (-939 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))) (T -692))
-((-1315 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1 (-225) (-225) (-225) (-225))) (-5 *2 (-1 (-939 (-225)) (-225) (-225))) (-5 *1 (-692)))) (-2933 (*1 *2 *3 *3 *3 *4 *5 *6) (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1087 (-225))) (-5 *6 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-692)))) (-2147 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined")) (-5 *5 (-1087 (-225))) (-5 *6 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-692)))) (-3518 (*1 *2 *2 *3 *4 *4 *5) (-12 (-5 *2 (-1126 (-225))) (-5 *3 (-1 (-939 (-225)) (-225) (-225))) (-5 *4 (-1087 (-225))) (-5 *5 (-640 (-263))) (-5 *1 (-692)))) (-3518 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-939 (-225)) (-225) (-225))) (-5 *4 (-1087 (-225))) (-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-692)))) (-3518 (*1 *2 *3 *3 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined")) (-5 *5 (-1087 (-225))) (-5 *6 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-692)))))
-(-10 -7 (-15 -3518 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -3518 ((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -3518 ((-1126 (-225)) (-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -2147 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -2933 ((-1126 (-225)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -1315 ((-1 (-939 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))
-((-2174 (((-418 (-1165 |#4|)) (-1165 |#4|)) 73) (((-418 |#4|) |#4|) 220)))
-(((-693 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2174 ((-418 |#4|) |#4|)) (-15 -2174 ((-418 (-1165 |#4|)) (-1165 |#4|)))) (-846) (-789) (-349) (-945 |#3| |#2| |#1|)) (T -693))
-((-2174 (*1 *2 *3) (-12 (-4 *4 (-846)) (-4 *5 (-789)) (-4 *6 (-349)) (-4 *7 (-945 *6 *5 *4)) (-5 *2 (-418 (-1165 *7))) (-5 *1 (-693 *4 *5 *6 *7)) (-5 *3 (-1165 *7)))) (-2174 (*1 *2 *3) (-12 (-4 *4 (-846)) (-4 *5 (-789)) (-4 *6 (-349)) (-5 *2 (-418 *3)) (-5 *1 (-693 *4 *5 *6 *3)) (-4 *3 (-945 *6 *5 *4)))))
-(-10 -7 (-15 -2174 ((-418 |#4|) |#4|)) (-15 -2174 ((-418 (-1165 |#4|)) (-1165 |#4|))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 84)) (-3401 (((-563) $) 30)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2421 (($ $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-2186 (($ $) NIL)) (-1919 (((-112) $ $) NIL)) (-1857 (((-563) $) NIL)) (-4239 (($) NIL T CONST)) (-3796 (($ $) NIL)) (-2131 (((-3 (-563) "failed") $) 73) (((-3 (-407 (-563)) "failed") $) 26) (((-3 (-379) "failed") $) 70)) (-2058 (((-563) $) 75) (((-407 (-563)) $) 67) (((-379) $) 68)) (-3090 (($ $ $) 96)) (-3400 (((-3 $ "failed") $) 87)) (-3050 (($ $ $) 95)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3102 (((-917)) 77) (((-917) (-917)) 76)) (-3101 (((-112) $) NIL)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL)) (-3254 (((-563) $) NIL)) (-3827 (((-112) $) NIL)) (-1645 (($ $ (-563)) NIL)) (-3793 (($ $) NIL)) (-1419 (((-112) $) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3272 (((-563) (-563)) 81) (((-563)) 82)) (-3084 (($ $ $) NIL) (($) NIL (-12 (-2176 (|has| $ (-6 -4390))) (-2176 (|has| $ (-6 -4398)))))) (-3316 (((-563) (-563)) 79) (((-563)) 80)) (-1777 (($ $ $) NIL) (($) NIL (-12 (-2176 (|has| $ (-6 -4390))) (-2176 (|has| $ (-6 -4398)))))) (-4050 (((-563) $) 16)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 91)) (-3324 (((-917) (-563)) NIL (|has| $ (-6 -4398)))) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-4215 (($ $) NIL)) (-1583 (($ $) NIL)) (-4340 (($ (-563) (-563)) NIL) (($ (-563) (-563) (-917)) NIL)) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) 92)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1654 (((-563) $) 22)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 94)) (-4113 (((-917)) NIL) (((-917) (-917)) NIL (|has| $ (-6 -4398)))) (-3814 (((-917) (-563)) NIL (|has| $ (-6 -4398)))) (-2220 (((-379) $) NIL) (((-225) $) NIL) (((-888 (-379)) $) NIL)) (-1693 (((-858) $) 52) (($ (-563)) 63) (($ $) NIL) (($ (-407 (-563))) 66) (($ (-563)) 63) (($ (-407 (-563))) 66) (($ (-379)) 60) (((-379) $) 50) (($ (-696)) 55)) (-1675 (((-767)) 103)) (-3578 (($ (-563) (-563) (-917)) 44)) (-4194 (($ $) NIL)) (-1734 (((-917)) NIL) (((-917) (-917)) NIL (|has| $ (-6 -4398)))) (-4211 (((-917)) 35) (((-917) (-917)) 78)) (-2126 (((-112) $ $) NIL)) (-2509 (($ $) NIL)) (-2241 (($) 32 T CONST)) (-2254 (($) 17 T CONST)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 83)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 101)) (-1837 (($ $ $) 65)) (-1826 (($ $) 99) (($ $ $) 100)) (-1814 (($ $ $) 98)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL) (($ $ (-407 (-563))) 90)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 97) (($ $ $) 88) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
-(((-694) (-13 (-404) (-387) (-363) (-1034 (-379)) (-1034 (-407 (-563))) (-147) (-10 -8 (-15 -3102 ((-917) (-917))) (-15 -3102 ((-917))) (-15 -4211 ((-917) (-917))) (-15 -3316 ((-563) (-563))) (-15 -3316 ((-563))) (-15 -3272 ((-563) (-563))) (-15 -3272 ((-563))) (-15 -1693 ((-379) $)) (-15 -1693 ($ (-696))) (-15 -4050 ((-563) $)) (-15 -1654 ((-563) $)) (-15 -3578 ($ (-563) (-563) (-917)))))) (T -694))
-((-1654 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-694)))) (-4050 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-694)))) (-3102 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-694)))) (-3102 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-694)))) (-4211 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-694)))) (-3316 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694)))) (-3316 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694)))) (-3272 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694)))) (-3272 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-379)) (-5 *1 (-694)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-696)) (-5 *1 (-694)))) (-3578 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-563)) (-5 *3 (-917)) (-5 *1 (-694)))))
-(-13 (-404) (-387) (-363) (-1034 (-379)) (-1034 (-407 (-563))) (-147) (-10 -8 (-15 -3102 ((-917) (-917))) (-15 -3102 ((-917))) (-15 -4211 ((-917) (-917))) (-15 -3316 ((-563) (-563))) (-15 -3316 ((-563))) (-15 -3272 ((-563) (-563))) (-15 -3272 ((-563))) (-15 -1693 ((-379) $)) (-15 -1693 ($ (-696))) (-15 -4050 ((-563) $)) (-15 -1654 ((-563) $)) (-15 -3578 ($ (-563) (-563) (-917)))))
-((-3511 (((-684 |#1|) (-684 |#1|) |#1| |#1|) 65)) (-4069 (((-684 |#1|) (-684 |#1|) |#1|) 48)) (-2991 (((-684 |#1|) (-684 |#1|) |#1|) 66)) (-3599 (((-684 |#1|) (-684 |#1|)) 49)) (-3612 (((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|) 64)))
-(((-695 |#1|) (-10 -7 (-15 -3599 ((-684 |#1|) (-684 |#1|))) (-15 -4069 ((-684 |#1|) (-684 |#1|) |#1|)) (-15 -2991 ((-684 |#1|) (-684 |#1|) |#1|)) (-15 -3511 ((-684 |#1|) (-684 |#1|) |#1| |#1|)) (-15 -3612 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|))) (-307)) (T -695))
-((-3612 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-695 *3)) (-4 *3 (-307)))) (-3511 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3)))) (-2991 (*1 *2 *2 *3) (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3)))) (-4069 (*1 *2 *2 *3) (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3)))) (-3599 (*1 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3)))))
-(-10 -7 (-15 -3599 ((-684 |#1|) (-684 |#1|))) (-15 -4069 ((-684 |#1|) (-684 |#1|) |#1|)) (-15 -2991 ((-684 |#1|) (-684 |#1|) |#1|)) (-15 -3511 ((-684 |#1|) (-684 |#1|) |#1| |#1|)) (-15 -3612 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1433 (($ $ $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2448 (($ $ $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-1857 (((-563) $) NIL)) (-3458 (($ $ $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) 27)) (-2058 (((-563) $) 25)) (-3090 (($ $ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-3909 (((-3 (-407 (-563)) "failed") $) NIL)) (-2239 (((-112) $) NIL)) (-2651 (((-407 (-563)) $) NIL)) (-1691 (($ $) NIL) (($) NIL)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-4362 (($ $ $ $) NIL)) (-1544 (($ $ $) NIL)) (-3101 (((-112) $) NIL)) (-3972 (($ $ $) NIL)) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL)) (-3827 (((-112) $) NIL)) (-3131 (((-112) $) NIL)) (-2408 (((-3 $ "failed") $) NIL)) (-1419 (((-112) $) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2692 (($ $ $ $) NIL)) (-3084 (($ $ $) NIL)) (-2292 (((-917) (-917)) 10) (((-917)) 9)) (-1777 (($ $ $) NIL)) (-2646 (($ $) NIL)) (-3415 (($ $) NIL)) (-3513 (($ (-640 $)) NIL) (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-3364 (($ $ $) NIL)) (-2523 (($) NIL T CONST)) (-2824 (($ $) NIL)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ (-640 $)) NIL) (($ $ $) NIL)) (-3219 (($ $) NIL)) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2359 (((-112) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-4202 (($ $) NIL) (($ $ (-767)) NIL)) (-3872 (($ $) NIL)) (-1872 (($ $) NIL)) (-2220 (((-225) $) NIL) (((-379) $) NIL) (((-888 (-563)) $) NIL) (((-536) $) NIL) (((-563) $) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) 24) (($ $) NIL) (($ (-563)) 24) (((-316 $) (-316 (-563))) 18)) (-1675 (((-767)) NIL)) (-1570 (((-112) $ $) NIL)) (-2869 (($ $ $) NIL)) (-4211 (($) NIL)) (-2126 (((-112) $ $) NIL)) (-2039 (($ $ $ $) NIL)) (-2509 (($ $) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $) NIL) (($ $ (-767)) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL)))
-(((-696) (-13 (-387) (-545) (-10 -8 (-15 -2292 ((-917) (-917))) (-15 -2292 ((-917))) (-15 -1693 ((-316 $) (-316 (-563))))))) (T -696))
-((-2292 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-696)))) (-2292 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-696)))) (-1693 (*1 *2 *3) (-12 (-5 *3 (-316 (-563))) (-5 *2 (-316 (-696))) (-5 *1 (-696)))))
-(-13 (-387) (-545) (-10 -8 (-15 -2292 ((-917) (-917))) (-15 -2292 ((-917))) (-15 -1693 ((-316 $) (-316 (-563))))))
-((-2376 (((-1 |#4| |#2| |#3|) |#1| (-1169) (-1169)) 19)) (-3329 (((-1 |#4| |#2| |#3|) (-1169)) 12)))
-(((-697 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3329 ((-1 |#4| |#2| |#3|) (-1169))) (-15 -2376 ((-1 |#4| |#2| |#3|) |#1| (-1169) (-1169)))) (-611 (-536)) (-1208) (-1208) (-1208)) (T -697))
-((-2376 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1169)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-697 *3 *5 *6 *7)) (-4 *3 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208)) (-4 *7 (-1208)))) (-3329 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-697 *4 *5 *6 *7)) (-4 *4 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208)) (-4 *7 (-1208)))))
-(-10 -7 (-15 -3329 ((-1 |#4| |#2| |#3|) (-1169))) (-15 -2376 ((-1 |#4| |#2| |#3|) |#1| (-1169) (-1169))))
-((-1677 (((-112) $ $) NIL)) (-3052 (((-1262) $ (-767)) 14)) (-4368 (((-767) $) 12)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 18) (($ |#1|) 23) ((|#1| $) 15)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 25)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 24)))
+((-3867 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-690 *2)) (-4 *2 (-1093)))) (-4194 (*1 *1 *1) (-12 (-4 *1 (-690 *2)) (-4 *2 (-1093)))) (-4182 (*1 *2 *1) (-12 (-4 *1 (-690 *3)) (-4 *3 (-1093)) (-5 *2 (-640 (-2 (|:| -2556 *3) (|:| -1708 (-767))))))))
+(-13 (-235 |t#1|) (-10 -8 (-15 -3867 ($ |t#1| $ (-767))) (-15 -4194 ($ $)) (-15 -4182 ((-640 (-2 (|:| -2556 |t#1|) (|:| -1708 (-767)))) $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-235 |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-4225 (((-640 |#1|) (-640 (-2 (|:| -2173 |#1|) (|:| -3871 (-563)))) (-563)) 47)) (-4205 ((|#1| |#1| (-563)) 46)) (-3551 ((|#1| |#1| |#1| (-563)) 36)) (-2173 (((-640 |#1|) |#1| (-563)) 39)) (-4234 ((|#1| |#1| (-563) |#1| (-563)) 32)) (-4215 (((-640 (-2 (|:| -2173 |#1|) (|:| -3871 (-563)))) |#1| (-563)) 45)))
+(((-691 |#1|) (-10 -7 (-15 -3551 (|#1| |#1| |#1| (-563))) (-15 -4205 (|#1| |#1| (-563))) (-15 -2173 ((-640 |#1|) |#1| (-563))) (-15 -4215 ((-640 (-2 (|:| -2173 |#1|) (|:| -3871 (-563)))) |#1| (-563))) (-15 -4225 ((-640 |#1|) (-640 (-2 (|:| -2173 |#1|) (|:| -3871 (-563)))) (-563))) (-15 -4234 (|#1| |#1| (-563) |#1| (-563)))) (-1233 (-563))) (T -691))
+((-4234 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-691 *2)) (-4 *2 (-1233 *3)))) (-4225 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-2 (|:| -2173 *5) (|:| -3871 (-563))))) (-5 *4 (-563)) (-4 *5 (-1233 *4)) (-5 *2 (-640 *5)) (-5 *1 (-691 *5)))) (-4215 (*1 *2 *3 *4) (-12 (-5 *4 (-563)) (-5 *2 (-640 (-2 (|:| -2173 *3) (|:| -3871 *4)))) (-5 *1 (-691 *3)) (-4 *3 (-1233 *4)))) (-2173 (*1 *2 *3 *4) (-12 (-5 *4 (-563)) (-5 *2 (-640 *3)) (-5 *1 (-691 *3)) (-4 *3 (-1233 *4)))) (-4205 (*1 *2 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-691 *2)) (-4 *2 (-1233 *3)))) (-3551 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-691 *2)) (-4 *2 (-1233 *3)))))
+(-10 -7 (-15 -3551 (|#1| |#1| |#1| (-563))) (-15 -4205 (|#1| |#1| (-563))) (-15 -2173 ((-640 |#1|) |#1| (-563))) (-15 -4215 ((-640 (-2 (|:| -2173 |#1|) (|:| -3871 (-563)))) |#1| (-563))) (-15 -4225 ((-640 |#1|) (-640 (-2 (|:| -2173 |#1|) (|:| -3871 (-563)))) (-563))) (-15 -4234 (|#1| |#1| (-563) |#1| (-563))))
+((-4281 (((-1 (-939 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225) (-225))) 17)) (-4244 (((-1126 (-225)) (-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-640 (-263))) 40) (((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-640 (-263))) 42) (((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1087 (-225)) (-1087 (-225)) (-640 (-263))) 44)) (-4270 (((-1126 (-225)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-640 (-263))) NIL)) (-4257 (((-1126 (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1087 (-225)) (-1087 (-225)) (-640 (-263))) 45)))
+(((-692) (-10 -7 (-15 -4244 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -4244 ((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -4244 ((-1126 (-225)) (-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -4257 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -4270 ((-1126 (-225)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -4281 ((-1 (-939 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))) (T -692))
+((-4281 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1 (-225) (-225) (-225) (-225))) (-5 *2 (-1 (-939 (-225)) (-225) (-225))) (-5 *1 (-692)))) (-4270 (*1 *2 *3 *3 *3 *4 *5 *6) (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1087 (-225))) (-5 *6 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-692)))) (-4257 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined")) (-5 *5 (-1087 (-225))) (-5 *6 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-692)))) (-4244 (*1 *2 *2 *3 *4 *4 *5) (-12 (-5 *2 (-1126 (-225))) (-5 *3 (-1 (-939 (-225)) (-225) (-225))) (-5 *4 (-1087 (-225))) (-5 *5 (-640 (-263))) (-5 *1 (-692)))) (-4244 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-939 (-225)) (-225) (-225))) (-5 *4 (-1087 (-225))) (-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-692)))) (-4244 (*1 *2 *3 *3 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined")) (-5 *5 (-1087 (-225))) (-5 *6 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-692)))))
+(-10 -7 (-15 -4244 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -4244 ((-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -4244 ((-1126 (-225)) (-1126 (-225)) (-1 (-939 (-225)) (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -4257 ((-1126 (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1087 (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -4270 ((-1126 (-225)) (-316 (-563)) (-316 (-563)) (-316 (-563)) (-1 (-225) (-225)) (-1087 (-225)) (-640 (-263)))) (-15 -4281 ((-1 (-939 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))
+((-2173 (((-418 (-1165 |#4|)) (-1165 |#4|)) 73) (((-418 |#4|) |#4|) 220)))
+(((-693 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2173 ((-418 |#4|) |#4|)) (-15 -2173 ((-418 (-1165 |#4|)) (-1165 |#4|)))) (-846) (-789) (-349) (-945 |#3| |#2| |#1|)) (T -693))
+((-2173 (*1 *2 *3) (-12 (-4 *4 (-846)) (-4 *5 (-789)) (-4 *6 (-349)) (-4 *7 (-945 *6 *5 *4)) (-5 *2 (-418 (-1165 *7))) (-5 *1 (-693 *4 *5 *6 *7)) (-5 *3 (-1165 *7)))) (-2173 (*1 *2 *3) (-12 (-4 *4 (-846)) (-4 *5 (-789)) (-4 *6 (-349)) (-5 *2 (-418 *3)) (-5 *1 (-693 *4 *5 *6 *3)) (-4 *3 (-945 *6 *5 *4)))))
+(-10 -7 (-15 -2173 ((-418 |#4|) |#4|)) (-15 -2173 ((-418 (-1165 |#4|)) (-1165 |#4|))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 84)) (-3944 (((-563) $) 30)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-1763 (($ $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2185 (($ $) NIL)) (-2003 (((-112) $ $) NIL)) (-2807 (((-563) $) NIL)) (-2569 (($) NIL T CONST)) (-3925 (($ $) NIL)) (-2130 (((-3 (-563) "failed") $) 73) (((-3 (-407 (-563)) "failed") $) 26) (((-3 (-379) "failed") $) 70)) (-2057 (((-563) $) 75) (((-407 (-563)) $) 67) (((-379) $) 68)) (-3094 (($ $ $) 96)) (-3951 (((-3 $ "failed") $) 87)) (-3054 (($ $ $) 95)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-3107 (((-917)) 77) (((-917) (-917)) 76)) (-3414 (((-112) $) NIL)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL)) (-1775 (((-563) $) NIL)) (-3401 (((-112) $) NIL)) (-2172 (($ $ (-563)) NIL)) (-3975 (($ $) NIL)) (-3426 (((-112) $) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4292 (((-563) (-563)) 81) (((-563)) 82)) (-3088 (($ $ $) NIL) (($) NIL (-12 (-2174 (|has| $ (-6 -4391))) (-2174 (|has| $ (-6 -4399)))))) (-4304 (((-563) (-563)) 79) (((-563)) 80)) (-1776 (($ $ $) NIL) (($) NIL (-12 (-2174 (|has| $ (-6 -4391))) (-2174 (|has| $ (-6 -4399)))))) (-4051 (((-563) $) 16)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 91)) (-3217 (((-917) (-563)) NIL (|has| $ (-6 -4399)))) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3935 (($ $) NIL)) (-3954 (($ $) NIL)) (-4341 (($ (-563) (-563)) NIL) (($ (-563) (-563) (-917)) NIL)) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) 92)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3311 (((-563) $) 22)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 94)) (-3605 (((-917)) NIL) (((-917) (-917)) NIL (|has| $ (-6 -4399)))) (-3206 (((-917) (-563)) NIL (|has| $ (-6 -4399)))) (-2219 (((-379) $) NIL) (((-225) $) NIL) (((-888 (-379)) $) NIL)) (-1692 (((-858) $) 52) (($ (-563)) 63) (($ $) NIL) (($ (-407 (-563))) 66) (($ (-563)) 63) (($ (-407 (-563))) 66) (($ (-379)) 60) (((-379) $) 50) (($ (-696)) 55)) (-3914 (((-767)) 103)) (-2729 (($ (-563) (-563) (-917)) 44)) (-3965 (($ $) NIL)) (-3227 (((-917)) NIL) (((-917) (-917)) NIL (|has| $ (-6 -4399)))) (-4212 (((-917)) 35) (((-917) (-917)) 78)) (-3223 (((-112) $ $) NIL)) (-1462 (($ $) NIL)) (-2239 (($) 32 T CONST)) (-2253 (($) 17 T CONST)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 83)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 101)) (-1836 (($ $ $) 65)) (-1825 (($ $) 99) (($ $ $) 100)) (-1813 (($ $ $) 98)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL) (($ $ (-407 (-563))) 90)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 97) (($ $ $) 88) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
+(((-694) (-13 (-404) (-387) (-363) (-1034 (-379)) (-1034 (-407 (-563))) (-147) (-10 -8 (-15 -3107 ((-917) (-917))) (-15 -3107 ((-917))) (-15 -4212 ((-917) (-917))) (-15 -4304 ((-563) (-563))) (-15 -4304 ((-563))) (-15 -4292 ((-563) (-563))) (-15 -4292 ((-563))) (-15 -1692 ((-379) $)) (-15 -1692 ($ (-696))) (-15 -4051 ((-563) $)) (-15 -3311 ((-563) $)) (-15 -2729 ($ (-563) (-563) (-917)))))) (T -694))
+((-3311 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-694)))) (-4051 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-694)))) (-3107 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-694)))) (-3107 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-694)))) (-4212 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-694)))) (-4304 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694)))) (-4304 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694)))) (-4292 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694)))) (-4292 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-379)) (-5 *1 (-694)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-696)) (-5 *1 (-694)))) (-2729 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-563)) (-5 *3 (-917)) (-5 *1 (-694)))))
+(-13 (-404) (-387) (-363) (-1034 (-379)) (-1034 (-407 (-563))) (-147) (-10 -8 (-15 -3107 ((-917) (-917))) (-15 -3107 ((-917))) (-15 -4212 ((-917) (-917))) (-15 -4304 ((-563) (-563))) (-15 -4304 ((-563))) (-15 -4292 ((-563) (-563))) (-15 -4292 ((-563))) (-15 -1692 ((-379) $)) (-15 -1692 ($ (-696))) (-15 -4051 ((-563) $)) (-15 -3311 ((-563) $)) (-15 -2729 ($ (-563) (-563) (-917)))))
+((-4336 (((-684 |#1|) (-684 |#1|) |#1| |#1|) 65)) (-1940 (((-684 |#1|) (-684 |#1|) |#1|) 48)) (-4324 (((-684 |#1|) (-684 |#1|) |#1|) 66)) (-4313 (((-684 |#1|) (-684 |#1|)) 49)) (-4348 (((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|) 64)))
+(((-695 |#1|) (-10 -7 (-15 -4313 ((-684 |#1|) (-684 |#1|))) (-15 -1940 ((-684 |#1|) (-684 |#1|) |#1|)) (-15 -4324 ((-684 |#1|) (-684 |#1|) |#1|)) (-15 -4336 ((-684 |#1|) (-684 |#1|) |#1| |#1|)) (-15 -4348 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|))) (-307)) (T -695))
+((-4348 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-695 *3)) (-4 *3 (-307)))) (-4336 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3)))) (-4324 (*1 *2 *2 *3) (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3)))) (-1940 (*1 *2 *2 *3) (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3)))) (-4313 (*1 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3)))))
+(-10 -7 (-15 -4313 ((-684 |#1|) (-684 |#1|))) (-15 -1940 ((-684 |#1|) (-684 |#1|) |#1|)) (-15 -4324 ((-684 |#1|) (-684 |#1|) |#1|)) (-15 -4336 ((-684 |#1|) (-684 |#1|) |#1| |#1|)) (-15 -4348 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-4297 (($ $ $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-4275 (($ $ $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-2807 (((-563) $) NIL)) (-3462 (($ $ $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) 27)) (-2057 (((-563) $) 25)) (-3094 (($ $ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-2327 (((-3 (-407 (-563)) "failed") $) NIL)) (-2317 (((-112) $) NIL)) (-2306 (((-407 (-563)) $) NIL)) (-1690 (($ $) NIL) (($) NIL)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-4251 (($ $ $ $) NIL)) (-4308 (($ $ $) NIL)) (-3414 (((-112) $) NIL)) (-2101 (($ $ $) NIL)) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL)) (-3401 (((-112) $) NIL)) (-2959 (((-112) $) NIL)) (-1983 (((-3 $ "failed") $) NIL)) (-3426 (((-112) $) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4264 (($ $ $ $) NIL)) (-3088 (($ $ $) NIL)) (-4358 (((-917) (-917)) 10) (((-917)) 9)) (-1776 (($ $ $) NIL)) (-2645 (($ $) NIL)) (-3419 (($ $) NIL)) (-3517 (($ (-640 $)) NIL) (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-4239 (($ $ $) NIL)) (-2522 (($) NIL T CONST)) (-2827 (($ $) NIL)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ (-640 $)) NIL) (($ $ $) NIL)) (-2081 (($ $) NIL)) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2969 (((-112) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-4203 (($ $) NIL) (($ $ (-767)) NIL)) (-3873 (($ $) NIL)) (-1870 (($ $) NIL)) (-2219 (((-225) $) NIL) (((-379) $) NIL) (((-888 (-563)) $) NIL) (((-536) $) NIL) (((-563) $) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) 24) (($ $) NIL) (($ (-563)) 24) (((-316 $) (-316 (-563))) 18)) (-3914 (((-767)) NIL)) (-4319 (((-112) $ $) NIL)) (-1864 (($ $ $) NIL)) (-4212 (($) NIL)) (-3223 (((-112) $ $) NIL)) (-4287 (($ $ $ $) NIL)) (-1462 (($ $) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $) NIL) (($ $ (-767)) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL)))
+(((-696) (-13 (-387) (-545) (-10 -8 (-15 -4358 ((-917) (-917))) (-15 -4358 ((-917))) (-15 -1692 ((-316 $) (-316 (-563))))))) (T -696))
+((-4358 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-696)))) (-4358 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-696)))) (-1692 (*1 *2 *3) (-12 (-5 *3 (-316 (-563))) (-5 *2 (-316 (-696))) (-5 *1 (-696)))))
+(-13 (-387) (-545) (-10 -8 (-15 -4358 ((-917) (-917))) (-15 -4358 ((-917))) (-15 -1692 ((-316 $) (-316 (-563))))))
+((-1299 (((-1 |#4| |#2| |#3|) |#1| (-1169) (-1169)) 19)) (-4366 (((-1 |#4| |#2| |#3|) (-1169)) 12)))
+(((-697 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4366 ((-1 |#4| |#2| |#3|) (-1169))) (-15 -1299 ((-1 |#4| |#2| |#3|) |#1| (-1169) (-1169)))) (-611 (-536)) (-1208) (-1208) (-1208)) (T -697))
+((-1299 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1169)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-697 *3 *5 *6 *7)) (-4 *3 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208)) (-4 *7 (-1208)))) (-4366 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-697 *4 *5 *6 *7)) (-4 *4 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208)) (-4 *7 (-1208)))))
+(-10 -7 (-15 -4366 ((-1 |#4| |#2| |#3|) (-1169))) (-15 -1299 ((-1 |#4| |#2| |#3|) |#1| (-1169) (-1169))))
+((-1677 (((-112) $ $) NIL)) (-3916 (((-1262) $ (-767)) 14)) (-4369 (((-767) $) 12)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 18) (($ |#1|) 23) ((|#1| $) 15)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 25)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 24)))
(((-698 |#1|) (-13 (-132) (-490 |#1|)) (-1093)) (T -698))
NIL
(-13 (-132) (-490 |#1|))
-((-4137 (((-1 (-225) (-225) (-225)) |#1| (-1169) (-1169)) 34) (((-1 (-225) (-225)) |#1| (-1169)) 39)))
-(((-699 |#1|) (-10 -7 (-15 -4137 ((-1 (-225) (-225)) |#1| (-1169))) (-15 -4137 ((-1 (-225) (-225) (-225)) |#1| (-1169) (-1169)))) (-611 (-536))) (T -699))
-((-4137 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1169)) (-5 *2 (-1 (-225) (-225) (-225))) (-5 *1 (-699 *3)) (-4 *3 (-611 (-536))))) (-4137 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-5 *2 (-1 (-225) (-225))) (-5 *1 (-699 *3)) (-4 *3 (-611 (-536))))))
-(-10 -7 (-15 -4137 ((-1 (-225) (-225)) |#1| (-1169))) (-15 -4137 ((-1 (-225) (-225) (-225)) |#1| (-1169) (-1169))))
-((-1516 (((-1169) |#1| (-1169) (-640 (-1169))) 9) (((-1169) |#1| (-1169) (-1169) (-1169)) 12) (((-1169) |#1| (-1169) (-1169)) 11) (((-1169) |#1| (-1169)) 10)))
-(((-700 |#1|) (-10 -7 (-15 -1516 ((-1169) |#1| (-1169))) (-15 -1516 ((-1169) |#1| (-1169) (-1169))) (-15 -1516 ((-1169) |#1| (-1169) (-1169) (-1169))) (-15 -1516 ((-1169) |#1| (-1169) (-640 (-1169))))) (-611 (-536))) (T -700))
-((-1516 (*1 *2 *3 *2 *4) (-12 (-5 *4 (-640 (-1169))) (-5 *2 (-1169)) (-5 *1 (-700 *3)) (-4 *3 (-611 (-536))))) (-1516 (*1 *2 *3 *2 *2 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-700 *3)) (-4 *3 (-611 (-536))))) (-1516 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-700 *3)) (-4 *3 (-611 (-536))))) (-1516 (*1 *2 *3 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-700 *3)) (-4 *3 (-611 (-536))))))
-(-10 -7 (-15 -1516 ((-1169) |#1| (-1169))) (-15 -1516 ((-1169) |#1| (-1169) (-1169))) (-15 -1516 ((-1169) |#1| (-1169) (-1169) (-1169))) (-15 -1516 ((-1169) |#1| (-1169) (-640 (-1169)))))
-((-2320 (((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) 9)))
-(((-701 |#1| |#2|) (-10 -7 (-15 -2320 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|))) (-1208) (-1208)) (T -701))
-((-2320 (*1 *2 *3 *4) (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4))) (-5 *1 (-701 *3 *4)) (-4 *3 (-1208)) (-4 *4 (-1208)))))
-(-10 -7 (-15 -2320 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|)))
-((-2392 (((-1 |#3| |#2|) (-1169)) 11)) (-2376 (((-1 |#3| |#2|) |#1| (-1169)) 21)))
-(((-702 |#1| |#2| |#3|) (-10 -7 (-15 -2392 ((-1 |#3| |#2|) (-1169))) (-15 -2376 ((-1 |#3| |#2|) |#1| (-1169)))) (-611 (-536)) (-1208) (-1208)) (T -702))
-((-2376 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-5 *2 (-1 *6 *5)) (-5 *1 (-702 *3 *5 *6)) (-4 *3 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208)))) (-2392 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1 *6 *5)) (-5 *1 (-702 *4 *5 *6)) (-4 *4 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208)))))
-(-10 -7 (-15 -2392 ((-1 |#3| |#2|) (-1169))) (-15 -2376 ((-1 |#3| |#2|) |#1| (-1169))))
-((-1471 (((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 (-1165 |#4|)) (-640 |#3|) (-640 |#4|) (-640 (-640 (-2 (|:| -4008 (-767)) (|:| |pcoef| |#4|)))) (-640 (-767)) (-1257 (-640 (-1165 |#3|))) |#3|) 61)) (-3843 (((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 (-1165 |#3|)) (-640 |#3|) (-640 |#4|) (-640 (-767)) |#3|) 74)) (-1374 (((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 |#3|) (-640 (-767)) (-640 (-1165 |#4|)) (-1257 (-640 (-1165 |#3|))) |#3|) 34)))
-(((-703 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1374 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 |#3|) (-640 (-767)) (-640 (-1165 |#4|)) (-1257 (-640 (-1165 |#3|))) |#3|)) (-15 -3843 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 (-1165 |#3|)) (-640 |#3|) (-640 |#4|) (-640 (-767)) |#3|)) (-15 -1471 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 (-1165 |#4|)) (-640 |#3|) (-640 |#4|) (-640 (-640 (-2 (|:| -4008 (-767)) (|:| |pcoef| |#4|)))) (-640 (-767)) (-1257 (-640 (-1165 |#3|))) |#3|))) (-789) (-846) (-307) (-945 |#3| |#1| |#2|)) (T -703))
-((-1471 (*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10) (|partial| -12 (-5 *2 (-640 (-1165 *13))) (-5 *3 (-1165 *13)) (-5 *4 (-640 *12)) (-5 *5 (-640 *10)) (-5 *6 (-640 *13)) (-5 *7 (-640 (-640 (-2 (|:| -4008 (-767)) (|:| |pcoef| *13))))) (-5 *8 (-640 (-767))) (-5 *9 (-1257 (-640 (-1165 *10)))) (-4 *12 (-846)) (-4 *10 (-307)) (-4 *13 (-945 *10 *11 *12)) (-4 *11 (-789)) (-5 *1 (-703 *11 *12 *10 *13)))) (-3843 (*1 *2 *3 *4 *5 *6 *7 *8 *9) (|partial| -12 (-5 *4 (-640 *11)) (-5 *5 (-640 (-1165 *9))) (-5 *6 (-640 *9)) (-5 *7 (-640 *12)) (-5 *8 (-640 (-767))) (-4 *11 (-846)) (-4 *9 (-307)) (-4 *12 (-945 *9 *10 *11)) (-4 *10 (-789)) (-5 *2 (-640 (-1165 *12))) (-5 *1 (-703 *10 *11 *9 *12)) (-5 *3 (-1165 *12)))) (-1374 (*1 *2 *3 *4 *5 *6 *2 *7 *8) (|partial| -12 (-5 *2 (-640 (-1165 *11))) (-5 *3 (-1165 *11)) (-5 *4 (-640 *10)) (-5 *5 (-640 *8)) (-5 *6 (-640 (-767))) (-5 *7 (-1257 (-640 (-1165 *8)))) (-4 *10 (-846)) (-4 *8 (-307)) (-4 *11 (-945 *8 *9 *10)) (-4 *9 (-789)) (-5 *1 (-703 *9 *10 *8 *11)))))
-(-10 -7 (-15 -1374 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 |#3|) (-640 (-767)) (-640 (-1165 |#4|)) (-1257 (-640 (-1165 |#3|))) |#3|)) (-15 -3843 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 (-1165 |#3|)) (-640 |#3|) (-640 |#4|) (-640 (-767)) |#3|)) (-15 -1471 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 (-1165 |#4|)) (-640 |#3|) (-640 |#4|) (-640 (-640 (-2 (|:| -4008 (-767)) (|:| |pcoef| |#4|)))) (-640 (-767)) (-1257 (-640 (-1165 |#3|))) |#3|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-2751 (($ $) 42)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-2588 (($ |#1| (-767)) 40)) (-2048 (((-767) $) 44)) (-2726 ((|#1| $) 43)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-4167 (((-767) $) 45)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 39 (|has| |#1| (-172)))) (-4319 ((|#1| $ (-767)) 41)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 47) (($ |#1| $) 46)))
+((-4378 (((-1 (-225) (-225) (-225)) |#1| (-1169) (-1169)) 34) (((-1 (-225) (-225)) |#1| (-1169)) 39)))
+(((-699 |#1|) (-10 -7 (-15 -4378 ((-1 (-225) (-225)) |#1| (-1169))) (-15 -4378 ((-1 (-225) (-225) (-225)) |#1| (-1169) (-1169)))) (-611 (-536))) (T -699))
+((-4378 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1169)) (-5 *2 (-1 (-225) (-225) (-225))) (-5 *1 (-699 *3)) (-4 *3 (-611 (-536))))) (-4378 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-5 *2 (-1 (-225) (-225))) (-5 *1 (-699 *3)) (-4 *3 (-611 (-536))))))
+(-10 -7 (-15 -4378 ((-1 (-225) (-225)) |#1| (-1169))) (-15 -4378 ((-1 (-225) (-225) (-225)) |#1| (-1169) (-1169))))
+((-1518 (((-1169) |#1| (-1169) (-640 (-1169))) 9) (((-1169) |#1| (-1169) (-1169) (-1169)) 12) (((-1169) |#1| (-1169) (-1169)) 11) (((-1169) |#1| (-1169)) 10)))
+(((-700 |#1|) (-10 -7 (-15 -1518 ((-1169) |#1| (-1169))) (-15 -1518 ((-1169) |#1| (-1169) (-1169))) (-15 -1518 ((-1169) |#1| (-1169) (-1169) (-1169))) (-15 -1518 ((-1169) |#1| (-1169) (-640 (-1169))))) (-611 (-536))) (T -700))
+((-1518 (*1 *2 *3 *2 *4) (-12 (-5 *4 (-640 (-1169))) (-5 *2 (-1169)) (-5 *1 (-700 *3)) (-4 *3 (-611 (-536))))) (-1518 (*1 *2 *3 *2 *2 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-700 *3)) (-4 *3 (-611 (-536))))) (-1518 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-700 *3)) (-4 *3 (-611 (-536))))) (-1518 (*1 *2 *3 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-700 *3)) (-4 *3 (-611 (-536))))))
+(-10 -7 (-15 -1518 ((-1169) |#1| (-1169))) (-15 -1518 ((-1169) |#1| (-1169) (-1169))) (-15 -1518 ((-1169) |#1| (-1169) (-1169) (-1169))) (-15 -1518 ((-1169) |#1| (-1169) (-640 (-1169)))))
+((-2318 (((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) 9)))
+(((-701 |#1| |#2|) (-10 -7 (-15 -2318 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|))) (-1208) (-1208)) (T -701))
+((-2318 (*1 *2 *3 *4) (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4))) (-5 *1 (-701 *3 *4)) (-4 *3 (-1208)) (-4 *4 (-1208)))))
+(-10 -7 (-15 -2318 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|)))
+((-1290 (((-1 |#3| |#2|) (-1169)) 11)) (-1299 (((-1 |#3| |#2|) |#1| (-1169)) 21)))
+(((-702 |#1| |#2| |#3|) (-10 -7 (-15 -1290 ((-1 |#3| |#2|) (-1169))) (-15 -1299 ((-1 |#3| |#2|) |#1| (-1169)))) (-611 (-536)) (-1208) (-1208)) (T -702))
+((-1299 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-5 *2 (-1 *6 *5)) (-5 *1 (-702 *3 *5 *6)) (-4 *3 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208)))) (-1290 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1 *6 *5)) (-5 *1 (-702 *4 *5 *6)) (-4 *4 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208)))))
+(-10 -7 (-15 -1290 ((-1 |#3| |#2|) (-1169))) (-15 -1299 ((-1 |#3| |#2|) |#1| (-1169))))
+((-1331 (((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 (-1165 |#4|)) (-640 |#3|) (-640 |#4|) (-640 (-640 (-2 (|:| -1646 (-767)) (|:| |pcoef| |#4|)))) (-640 (-767)) (-1257 (-640 (-1165 |#3|))) |#3|) 61)) (-1321 (((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 (-1165 |#3|)) (-640 |#3|) (-640 |#4|) (-640 (-767)) |#3|) 74)) (-1310 (((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 |#3|) (-640 (-767)) (-640 (-1165 |#4|)) (-1257 (-640 (-1165 |#3|))) |#3|) 34)))
+(((-703 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1310 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 |#3|) (-640 (-767)) (-640 (-1165 |#4|)) (-1257 (-640 (-1165 |#3|))) |#3|)) (-15 -1321 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 (-1165 |#3|)) (-640 |#3|) (-640 |#4|) (-640 (-767)) |#3|)) (-15 -1331 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 (-1165 |#4|)) (-640 |#3|) (-640 |#4|) (-640 (-640 (-2 (|:| -1646 (-767)) (|:| |pcoef| |#4|)))) (-640 (-767)) (-1257 (-640 (-1165 |#3|))) |#3|))) (-789) (-846) (-307) (-945 |#3| |#1| |#2|)) (T -703))
+((-1331 (*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10) (|partial| -12 (-5 *2 (-640 (-1165 *13))) (-5 *3 (-1165 *13)) (-5 *4 (-640 *12)) (-5 *5 (-640 *10)) (-5 *6 (-640 *13)) (-5 *7 (-640 (-640 (-2 (|:| -1646 (-767)) (|:| |pcoef| *13))))) (-5 *8 (-640 (-767))) (-5 *9 (-1257 (-640 (-1165 *10)))) (-4 *12 (-846)) (-4 *10 (-307)) (-4 *13 (-945 *10 *11 *12)) (-4 *11 (-789)) (-5 *1 (-703 *11 *12 *10 *13)))) (-1321 (*1 *2 *3 *4 *5 *6 *7 *8 *9) (|partial| -12 (-5 *4 (-640 *11)) (-5 *5 (-640 (-1165 *9))) (-5 *6 (-640 *9)) (-5 *7 (-640 *12)) (-5 *8 (-640 (-767))) (-4 *11 (-846)) (-4 *9 (-307)) (-4 *12 (-945 *9 *10 *11)) (-4 *10 (-789)) (-5 *2 (-640 (-1165 *12))) (-5 *1 (-703 *10 *11 *9 *12)) (-5 *3 (-1165 *12)))) (-1310 (*1 *2 *3 *4 *5 *6 *2 *7 *8) (|partial| -12 (-5 *2 (-640 (-1165 *11))) (-5 *3 (-1165 *11)) (-5 *4 (-640 *10)) (-5 *5 (-640 *8)) (-5 *6 (-640 (-767))) (-5 *7 (-1257 (-640 (-1165 *8)))) (-4 *10 (-846)) (-4 *8 (-307)) (-4 *11 (-945 *8 *9 *10)) (-4 *9 (-789)) (-5 *1 (-703 *9 *10 *8 *11)))))
+(-10 -7 (-15 -1310 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 |#3|) (-640 (-767)) (-640 (-1165 |#4|)) (-1257 (-640 (-1165 |#3|))) |#3|)) (-15 -1321 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 (-1165 |#3|)) (-640 |#3|) (-640 |#4|) (-640 (-767)) |#3|)) (-15 -1331 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-640 |#2|) (-640 (-1165 |#4|)) (-640 |#3|) (-640 |#4|) (-640 (-640 (-2 (|:| -1646 (-767)) (|:| |pcoef| |#4|)))) (-640 (-767)) (-1257 (-640 (-1165 |#3|))) |#3|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-2750 (($ $) 42)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-2587 (($ |#1| (-767)) 40)) (-3908 (((-767) $) 44)) (-2725 ((|#1| $) 43)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-3871 (((-767) $) 45)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 39 (|has| |#1| (-172)))) (-3244 ((|#1| $ (-767)) 41)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 47) (($ |#1| $) 46)))
(((-704 |#1|) (-140) (-1045)) (T -704))
-((-4167 (*1 *2 *1) (-12 (-4 *1 (-704 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))) (-2048 (*1 *2 *1) (-12 (-4 *1 (-704 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))) (-2726 (*1 *2 *1) (-12 (-4 *1 (-704 *2)) (-4 *2 (-1045)))) (-2751 (*1 *1 *1) (-12 (-4 *1 (-704 *2)) (-4 *2 (-1045)))) (-4319 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-704 *2)) (-4 *2 (-1045)))) (-2588 (*1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-704 *2)) (-4 *2 (-1045)))))
-(-13 (-1045) (-111 |t#1| |t#1|) (-10 -8 (IF (|has| |t#1| (-172)) (-6 (-38 |t#1|)) |%noBranch|) (-15 -4167 ((-767) $)) (-15 -2048 ((-767) $)) (-15 -2726 (|t#1| $)) (-15 -2751 ($ $)) (-15 -4319 (|t#1| $ (-767))) (-15 -2588 ($ |t#1| (-767)))))
+((-3871 (*1 *2 *1) (-12 (-4 *1 (-704 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))) (-3908 (*1 *2 *1) (-12 (-4 *1 (-704 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))) (-2725 (*1 *2 *1) (-12 (-4 *1 (-704 *2)) (-4 *2 (-1045)))) (-2750 (*1 *1 *1) (-12 (-4 *1 (-704 *2)) (-4 *2 (-1045)))) (-3244 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-704 *2)) (-4 *2 (-1045)))) (-2587 (*1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-704 *2)) (-4 *2 (-1045)))))
+(-13 (-1045) (-111 |t#1| |t#1|) (-10 -8 (IF (|has| |t#1| (-172)) (-6 (-38 |t#1|)) |%noBranch|) (-15 -3871 ((-767) $)) (-15 -3908 ((-767) $)) (-15 -2725 (|t#1| $)) (-15 -2750 ($ $)) (-15 -3244 (|t#1| $ (-767))) (-15 -2587 ($ |t#1| (-767)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-172)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-610 (-858)) . T) ((-643 |#1|) . T) ((-643 $) . T) ((-713 |#1|) |has| |#1| (-172)) ((-722) . T) ((-1051 |#1|) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-2240 ((|#6| (-1 |#4| |#1|) |#3|) 23)))
-(((-705 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2240 (|#6| (-1 |#4| |#1|) |#3|))) (-555) (-1233 |#1|) (-1233 (-407 |#2|)) (-555) (-1233 |#4|) (-1233 (-407 |#5|))) (T -705))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-555)) (-4 *7 (-555)) (-4 *6 (-1233 *5)) (-4 *2 (-1233 (-407 *8))) (-5 *1 (-705 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1233 (-407 *6))) (-4 *8 (-1233 *7)))))
-(-10 -7 (-15 -2240 (|#6| (-1 |#4| |#1|) |#3|)))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2130 (((-1151) (-858)) 31)) (-1463 (((-1262) (-1151)) 28)) (-3190 (((-1151) (-858)) 24)) (-3837 (((-1151) (-858)) 25)) (-1693 (((-858) $) NIL) (((-1151) (-858)) 23)) (-1718 (((-112) $ $) NIL)))
-(((-706) (-13 (-1093) (-10 -7 (-15 -1693 ((-1151) (-858))) (-15 -3190 ((-1151) (-858))) (-15 -3837 ((-1151) (-858))) (-15 -2130 ((-1151) (-858))) (-15 -1463 ((-1262) (-1151)))))) (T -706))
-((-1693 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1151)) (-5 *1 (-706)))) (-3190 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1151)) (-5 *1 (-706)))) (-3837 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1151)) (-5 *1 (-706)))) (-2130 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1151)) (-5 *1 (-706)))) (-1463 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-706)))))
-(-13 (-1093) (-10 -7 (-15 -1693 ((-1151) (-858))) (-15 -3190 ((-1151) (-858))) (-15 -3837 ((-1151) (-858))) (-15 -2130 ((-1151) (-858))) (-15 -1463 ((-1262) (-1151)))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-4239 (($) NIL T CONST)) (-3090 (($ $ $) NIL)) (-2444 (($ |#1| |#2|) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3827 (((-112) $) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2995 ((|#2| $) NIL)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4322 (((-3 $ "failed") $ $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) ((|#1| $) NIL)) (-1675 (((-767)) NIL)) (-2126 (((-112) $ $) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
-(((-707 |#1| |#2| |#3| |#4| |#5|) (-13 (-363) (-10 -8 (-15 -2995 (|#2| $)) (-15 -1693 (|#1| $)) (-15 -2444 ($ |#1| |#2|)) (-15 -4322 ((-3 $ "failed") $ $)))) (-172) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -707))
-((-2995 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-707 *3 *2 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-1693 (*1 *2 *1) (-12 (-4 *2 (-172)) (-5 *1 (-707 *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)))) (-2444 (*1 *1 *2 *3) (-12 (-5 *1 (-707 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-4322 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-707 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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 (-363) (-10 -8 (-15 -2995 (|#2| $)) (-15 -1693 (|#1| $)) (-15 -2444 ($ |#1| |#2|)) (-15 -4322 ((-3 $ "failed") $ $))))
-((-1677 (((-112) $ $) 77)) (-3411 (((-112) $) 30)) (-4030 (((-1257 |#1|) $ (-767)) NIL)) (-2606 (((-640 (-1075)) $) NIL)) (-1787 (($ (-1165 |#1|)) NIL)) (-2139 (((-1165 $) $ (-1075)) NIL) (((-1165 |#1|) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-1779 (((-767) $) NIL) (((-767) $ (-640 (-1075))) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3724 (($ $ $) NIL (|has| |#1| (-555)))) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-4335 (($ $) NIL (|has| |#1| (-452)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-1919 (((-112) $ $) NIL (|has| |#1| (-363)))) (-3749 (((-767)) 46 (|has| |#1| (-368)))) (-3729 (($ $ (-767)) NIL)) (-2618 (($ $ (-767)) NIL)) (-3537 ((|#2| |#2|) 43)) (-3018 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-452)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-1075) "failed") $) NIL)) (-2058 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-1075) $) NIL)) (-2742 (($ $ $ (-1075)) NIL (|has| |#1| (-172))) ((|#1| $ $) NIL (|has| |#1| (-172)))) (-3090 (($ $ $) NIL (|has| |#1| (-363)))) (-2751 (($ $) 33)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-2444 (($ |#2|) 41)) (-3400 (((-3 $ "failed") $) 85)) (-1691 (($) 50 (|has| |#1| (-368)))) (-3050 (($ $ $) NIL (|has| |#1| (-363)))) (-4369 (($ $ $) NIL)) (-2906 (($ $ $) NIL (|has| |#1| (-555)))) (-2521 (((-2 (|:| -2311 |#1|) (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-555)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-1300 (($ $) NIL (|has| |#1| (-452))) (($ $ (-1075)) NIL (|has| |#1| (-452)))) (-2739 (((-640 $) $) NIL)) (-2468 (((-112) $) NIL (|has| |#1| (-905)))) (-1650 (((-954 $)) 79)) (-3554 (($ $ |#1| (-767) $) NIL)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1075) (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1075) (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-3254 (((-767) $ $) NIL (|has| |#1| (-555)))) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) NIL)) (-2408 (((-3 $ "failed") $) NIL (|has| |#1| (-1144)))) (-2596 (($ (-1165 |#1|) (-1075)) NIL) (($ (-1165 $) (-1075)) NIL)) (-1351 (($ $ (-767)) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-767)) 76) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ (-1075)) NIL) (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-2995 ((|#2|) 44)) (-2048 (((-767) $) NIL) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-2803 (($ (-1 (-767) (-767)) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-1580 (((-1165 |#1|) $) NIL)) (-4234 (((-3 (-1075) "failed") $) NIL)) (-1476 (((-917) $) NIL (|has| |#1| (-368)))) (-2433 ((|#2| $) 40)) (-2716 (($ $) NIL)) (-2726 ((|#1| $) 28)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3573 (((-1151) $) NIL)) (-3839 (((-2 (|:| -3490 $) (|:| -1972 $)) $ (-767)) NIL)) (-3733 (((-3 (-640 $) "failed") $) NIL)) (-2919 (((-3 (-640 $) "failed") $) NIL)) (-4086 (((-3 (-2 (|:| |var| (-1075)) (|:| -1654 (-767))) "failed") $) NIL)) (-3698 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2523 (($) NIL (|has| |#1| (-1144)) CONST)) (-2555 (($ (-917)) NIL (|has| |#1| (-368)))) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) NIL)) (-2706 ((|#1| $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3564 (($ $) 78 (|has| |#1| (-349)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2174 (((-418 $) $) NIL (|has| |#1| (-905)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3008 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-1540 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-1075) |#1|) NIL) (($ $ (-640 (-1075)) (-640 |#1|)) NIL) (($ $ (-1075) $) NIL) (($ $ (-640 (-1075)) (-640 $)) NIL)) (-2628 (((-767) $) NIL (|has| |#1| (-363)))) (-2309 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-407 $) (-407 $) (-407 $)) NIL (|has| |#1| (-555))) ((|#1| (-407 $) |#1|) NIL (|has| |#1| (-363))) (((-407 $) $ (-407 $)) NIL (|has| |#1| (-555)))) (-3862 (((-3 $ "failed") $ (-767)) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 86 (|has| |#1| (-363)))) (-2315 (($ $ (-1075)) NIL (|has| |#1| (-172))) ((|#1| $) NIL (|has| |#1| (-172)))) (-4202 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-4167 (((-767) $) 31) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-2220 (((-888 (-379)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-1075) (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-1836 ((|#1| $) NIL (|has| |#1| (-452))) (($ $ (-1075)) NIL (|has| |#1| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-3649 (((-954 $)) 35)) (-1346 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555))) (((-3 (-407 $) "failed") (-407 $) $) NIL (|has| |#1| (-555)))) (-1693 (((-858) $) 60) (($ (-563)) NIL) (($ |#1|) 57) (($ (-1075)) NIL) (($ |#2|) 67) (($ (-407 (-563))) NIL (-4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-1337 (((-640 |#1|) $) NIL)) (-4319 ((|#1| $ (-767)) 62) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-1675 (((-767)) NIL)) (-2793 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2241 (($) 20 T CONST)) (-3248 (((-1257 |#1|) $) 74)) (-3142 (($ (-1257 |#1|)) 49)) (-2254 (($) 8 T CONST)) (-3209 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3795 (((-1257 |#1|) $) NIL)) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) 68)) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1826 (($ $) 71) (($ $ $) NIL)) (-1814 (($ $ $) 32)) (** (($ $ (-917)) NIL) (($ $ (-767)) 80)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 56) (($ $ $) 73) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 54) (($ $ |#1|) NIL)))
-(((-708 |#1| |#2|) (-13 (-1233 |#1|) (-613 |#2|) (-10 -8 (-15 -3537 (|#2| |#2|)) (-15 -2995 (|#2|)) (-15 -2444 ($ |#2|)) (-15 -2433 (|#2| $)) (-15 -3248 ((-1257 |#1|) $)) (-15 -3142 ($ (-1257 |#1|))) (-15 -3795 ((-1257 |#1|) $)) (-15 -1650 ((-954 $))) (-15 -3649 ((-954 $))) (IF (|has| |#1| (-349)) (-15 -3564 ($ $)) |%noBranch|) (IF (|has| |#1| (-368)) (-6 (-368)) |%noBranch|))) (-1045) (-1233 |#1|)) (T -708))
-((-3537 (*1 *2 *2) (-12 (-4 *3 (-1045)) (-5 *1 (-708 *3 *2)) (-4 *2 (-1233 *3)))) (-2995 (*1 *2) (-12 (-4 *2 (-1233 *3)) (-5 *1 (-708 *3 *2)) (-4 *3 (-1045)))) (-2444 (*1 *1 *2) (-12 (-4 *3 (-1045)) (-5 *1 (-708 *3 *2)) (-4 *2 (-1233 *3)))) (-2433 (*1 *2 *1) (-12 (-4 *2 (-1233 *3)) (-5 *1 (-708 *3 *2)) (-4 *3 (-1045)))) (-3248 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-5 *2 (-1257 *3)) (-5 *1 (-708 *3 *4)) (-4 *4 (-1233 *3)))) (-3142 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1045)) (-5 *1 (-708 *3 *4)) (-4 *4 (-1233 *3)))) (-3795 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-5 *2 (-1257 *3)) (-5 *1 (-708 *3 *4)) (-4 *4 (-1233 *3)))) (-1650 (*1 *2) (-12 (-4 *3 (-1045)) (-5 *2 (-954 (-708 *3 *4))) (-5 *1 (-708 *3 *4)) (-4 *4 (-1233 *3)))) (-3649 (*1 *2) (-12 (-4 *3 (-1045)) (-5 *2 (-954 (-708 *3 *4))) (-5 *1 (-708 *3 *4)) (-4 *4 (-1233 *3)))) (-3564 (*1 *1 *1) (-12 (-4 *2 (-349)) (-4 *2 (-1045)) (-5 *1 (-708 *2 *3)) (-4 *3 (-1233 *2)))))
-(-13 (-1233 |#1|) (-613 |#2|) (-10 -8 (-15 -3537 (|#2| |#2|)) (-15 -2995 (|#2|)) (-15 -2444 ($ |#2|)) (-15 -2433 (|#2| $)) (-15 -3248 ((-1257 |#1|) $)) (-15 -3142 ($ (-1257 |#1|))) (-15 -3795 ((-1257 |#1|) $)) (-15 -1650 ((-954 $))) (-15 -3649 ((-954 $))) (IF (|has| |#1| (-349)) (-15 -3564 ($ $)) |%noBranch|) (IF (|has| |#1| (-368)) (-6 (-368)) |%noBranch|)))
-((-1677 (((-112) $ $) NIL)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-2555 ((|#1| $) 13)) (-1694 (((-1113) $) NIL)) (-1654 ((|#2| $) 12)) (-1707 (($ |#1| |#2|) 16)) (-1693 (((-858) $) NIL) (($ (-2 (|:| -2555 |#1|) (|:| -1654 |#2|))) 15) (((-2 (|:| -2555 |#1|) (|:| -1654 |#2|)) $) 14)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 11)))
-(((-709 |#1| |#2| |#3|) (-13 (-846) (-490 (-2 (|:| -2555 |#1|) (|:| -1654 |#2|))) (-10 -8 (-15 -1654 (|#2| $)) (-15 -2555 (|#1| $)) (-15 -1707 ($ |#1| |#2|)))) (-846) (-1093) (-1 (-112) (-2 (|:| -2555 |#1|) (|:| -1654 |#2|)) (-2 (|:| -2555 |#1|) (|:| -1654 |#2|)))) (T -709))
-((-1654 (*1 *2 *1) (-12 (-4 *2 (-1093)) (-5 *1 (-709 *3 *2 *4)) (-4 *3 (-846)) (-14 *4 (-1 (-112) (-2 (|:| -2555 *3) (|:| -1654 *2)) (-2 (|:| -2555 *3) (|:| -1654 *2)))))) (-2555 (*1 *2 *1) (-12 (-4 *2 (-846)) (-5 *1 (-709 *2 *3 *4)) (-4 *3 (-1093)) (-14 *4 (-1 (-112) (-2 (|:| -2555 *2) (|:| -1654 *3)) (-2 (|:| -2555 *2) (|:| -1654 *3)))))) (-1707 (*1 *1 *2 *3) (-12 (-5 *1 (-709 *2 *3 *4)) (-4 *2 (-846)) (-4 *3 (-1093)) (-14 *4 (-1 (-112) (-2 (|:| -2555 *2) (|:| -1654 *3)) (-2 (|:| -2555 *2) (|:| -1654 *3)))))))
-(-13 (-846) (-490 (-2 (|:| -2555 |#1|) (|:| -1654 |#2|))) (-10 -8 (-15 -1654 (|#2| $)) (-15 -2555 (|#1| $)) (-15 -1707 ($ |#1| |#2|))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 59)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) 89) (((-3 (-114) "failed") $) 95)) (-2058 ((|#1| $) NIL) (((-114) $) 39)) (-3400 (((-3 $ "failed") $) 90)) (-2486 ((|#2| (-114) |#2|) 82)) (-3827 (((-112) $) NIL)) (-2488 (($ |#1| (-361 (-114))) 14)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1830 (($ $ (-1 |#2| |#2|)) 58)) (-3934 (($ $ (-1 |#2| |#2|)) 44)) (-2309 ((|#2| $ |#2|) 33)) (-2989 ((|#1| |#1|) 105 (|has| |#1| (-172)))) (-1693 (((-858) $) 66) (($ (-563)) 18) (($ |#1|) 17) (($ (-114)) 23)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) 37)) (-3831 (($ $) 99 (|has| |#1| (-172))) (($ $ $) 103 (|has| |#1| (-172)))) (-2241 (($) 21 T CONST)) (-2254 (($) 9 T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) 48) (($ $ $) NIL)) (-1814 (($ $ $) 73)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ (-114) (-563)) NIL) (($ $ (-563)) 57)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 98) (($ $ $) 50) (($ |#1| $) 96 (|has| |#1| (-172))) (($ $ |#1|) 97 (|has| |#1| (-172)))))
-(((-710 |#1| |#2|) (-13 (-1045) (-1034 |#1|) (-1034 (-114)) (-286 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -3831 ($ $)) (-15 -3831 ($ $ $)) (-15 -2989 (|#1| |#1|))) |%noBranch|) (-15 -3934 ($ $ (-1 |#2| |#2|))) (-15 -1830 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-563))) (-15 ** ($ $ (-563))) (-15 -2486 (|#2| (-114) |#2|)) (-15 -2488 ($ |#1| (-361 (-114)))))) (-1045) (-643 |#1|)) (T -710))
-((-3831 (*1 *1 *1) (-12 (-4 *2 (-172)) (-4 *2 (-1045)) (-5 *1 (-710 *2 *3)) (-4 *3 (-643 *2)))) (-3831 (*1 *1 *1 *1) (-12 (-4 *2 (-172)) (-4 *2 (-1045)) (-5 *1 (-710 *2 *3)) (-4 *3 (-643 *2)))) (-2989 (*1 *2 *2) (-12 (-4 *2 (-172)) (-4 *2 (-1045)) (-5 *1 (-710 *2 *3)) (-4 *3 (-643 *2)))) (-3934 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-643 *3)) (-4 *3 (-1045)) (-5 *1 (-710 *3 *4)))) (-1830 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-643 *3)) (-4 *3 (-1045)) (-5 *1 (-710 *3 *4)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-563)) (-4 *4 (-1045)) (-5 *1 (-710 *4 *5)) (-4 *5 (-643 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *3 (-1045)) (-5 *1 (-710 *3 *4)) (-4 *4 (-643 *3)))) (-2486 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-4 *4 (-1045)) (-5 *1 (-710 *4 *2)) (-4 *2 (-643 *4)))) (-2488 (*1 *1 *2 *3) (-12 (-5 *3 (-361 (-114))) (-4 *2 (-1045)) (-5 *1 (-710 *2 *4)) (-4 *4 (-643 *2)))))
-(-13 (-1045) (-1034 |#1|) (-1034 (-114)) (-286 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -3831 ($ $)) (-15 -3831 ($ $ $)) (-15 -2989 (|#1| |#1|))) |%noBranch|) (-15 -3934 ($ $ (-1 |#2| |#2|))) (-15 -1830 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-563))) (-15 ** ($ $ (-563))) (-15 -2486 (|#2| (-114) |#2|)) (-15 -2488 ($ |#1| (-361 (-114))))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 33)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2444 (($ |#1| |#2|) 25)) (-3400 (((-3 $ "failed") $) 48)) (-3827 (((-112) $) 35)) (-2995 ((|#2| $) 12)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 49)) (-1694 (((-1113) $) NIL)) (-4322 (((-3 $ "failed") $ $) 47)) (-1693 (((-858) $) 24) (($ (-563)) 19) ((|#1| $) 13)) (-1675 (((-767)) 28)) (-2241 (($) 16 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 38)) (-1826 (($ $) 43) (($ $ $) 37)) (-1814 (($ $ $) 40)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 21) (($ $ $) 20)))
-(((-711 |#1| |#2| |#3| |#4| |#5|) (-13 (-1045) (-10 -8 (-15 -2995 (|#2| $)) (-15 -1693 (|#1| $)) (-15 -2444 ($ |#1| |#2|)) (-15 -4322 ((-3 $ "failed") $ $)) (-15 -3400 ((-3 $ "failed") $)) (-15 -2688 ($ $)))) (-172) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -711))
-((-3400 (*1 *1 *1) (|partial| -12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-2995 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-711 *3 *2 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-1693 (*1 *2 *1) (-12 (-4 *2 (-172)) (-5 *1 (-711 *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)))) (-2444 (*1 *1 *2 *3) (-12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-4322 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-2688 (*1 *1 *1) (-12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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 (-1045) (-10 -8 (-15 -2995 (|#2| $)) (-15 -1693 (|#1| $)) (-15 -2444 ($ |#1| |#2|)) (-15 -4322 ((-3 $ "failed") $ $)) (-15 -3400 ((-3 $ "failed") $)) (-15 -2688 ($ $))))
+((-2238 ((|#6| (-1 |#4| |#1|) |#3|) 23)))
+(((-705 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2238 (|#6| (-1 |#4| |#1|) |#3|))) (-555) (-1233 |#1|) (-1233 (-407 |#2|)) (-555) (-1233 |#4|) (-1233 (-407 |#5|))) (T -705))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-555)) (-4 *7 (-555)) (-4 *6 (-1233 *5)) (-4 *2 (-1233 (-407 *8))) (-5 *1 (-705 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1233 (-407 *6))) (-4 *8 (-1233 *7)))))
+(-10 -7 (-15 -2238 (|#6| (-1 |#4| |#1|) |#3|)))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1340 (((-1151) (-858)) 31)) (-1463 (((-1262) (-1151)) 28)) (-1360 (((-1151) (-858)) 24)) (-1350 (((-1151) (-858)) 25)) (-1692 (((-858) $) NIL) (((-1151) (-858)) 23)) (-1718 (((-112) $ $) NIL)))
+(((-706) (-13 (-1093) (-10 -7 (-15 -1692 ((-1151) (-858))) (-15 -1360 ((-1151) (-858))) (-15 -1350 ((-1151) (-858))) (-15 -1340 ((-1151) (-858))) (-15 -1463 ((-1262) (-1151)))))) (T -706))
+((-1692 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1151)) (-5 *1 (-706)))) (-1360 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1151)) (-5 *1 (-706)))) (-1350 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1151)) (-5 *1 (-706)))) (-1340 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1151)) (-5 *1 (-706)))) (-1463 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-706)))))
+(-13 (-1093) (-10 -7 (-15 -1692 ((-1151) (-858))) (-15 -1360 ((-1151) (-858))) (-15 -1350 ((-1151) (-858))) (-15 -1340 ((-1151) (-858))) (-15 -1463 ((-1262) (-1151)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-2569 (($) NIL T CONST)) (-3094 (($ $ $) NIL)) (-2444 (($ |#1| |#2|) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-3401 (((-112) $) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3593 ((|#2| $) NIL)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3322 (((-3 $ "failed") $ $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) ((|#1| $) NIL)) (-3914 (((-767)) NIL)) (-3223 (((-112) $ $) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
+(((-707 |#1| |#2| |#3| |#4| |#5|) (-13 (-363) (-10 -8 (-15 -3593 (|#2| $)) (-15 -1692 (|#1| $)) (-15 -2444 ($ |#1| |#2|)) (-15 -3322 ((-3 $ "failed") $ $)))) (-172) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -707))
+((-3593 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-707 *3 *2 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-1692 (*1 *2 *1) (-12 (-4 *2 (-172)) (-5 *1 (-707 *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)))) (-2444 (*1 *1 *2 *3) (-12 (-5 *1 (-707 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-3322 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-707 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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 (-363) (-10 -8 (-15 -3593 (|#2| $)) (-15 -1692 (|#1| $)) (-15 -2444 ($ |#1| |#2|)) (-15 -3322 ((-3 $ "failed") $ $))))
+((-1677 (((-112) $ $) 77)) (-3439 (((-112) $) 30)) (-1740 (((-1257 |#1|) $ (-767)) NIL)) (-2605 (((-640 (-1075)) $) NIL)) (-1714 (($ (-1165 |#1|)) NIL)) (-2138 (((-1165 $) $ (-1075)) NIL) (((-1165 |#1|) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-3897 (((-767) $) NIL) (((-767) $ (-640 (-1075))) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1601 (($ $ $) NIL (|has| |#1| (-555)))) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-1798 (($ $) NIL (|has| |#1| (-452)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2003 (((-112) $ $) NIL (|has| |#1| (-363)))) (-3750 (((-767)) 46 (|has| |#1| (-368)))) (-1660 (($ $ (-767)) NIL)) (-1647 (($ $ (-767)) NIL)) (-3296 ((|#2| |#2|) 43)) (-1550 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-452)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-1075) "failed") $) NIL)) (-2057 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-1075) $) NIL)) (-1612 (($ $ $ (-1075)) NIL (|has| |#1| (-172))) ((|#1| $ $) NIL (|has| |#1| (-172)))) (-3094 (($ $ $) NIL (|has| |#1| (-363)))) (-2750 (($ $) 33)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-2444 (($ |#2|) 41)) (-3951 (((-3 $ "failed") $) 85)) (-1690 (($) 50 (|has| |#1| (-368)))) (-3054 (($ $ $) NIL (|has| |#1| (-363)))) (-1634 (($ $ $) NIL)) (-1577 (($ $ $) NIL (|has| |#1| (-555)))) (-1564 (((-2 (|:| -2310 |#1|) (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-555)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-4151 (($ $) NIL (|has| |#1| (-452))) (($ $ (-1075)) NIL (|has| |#1| (-452)))) (-2738 (((-640 $) $) NIL)) (-2560 (((-112) $) NIL (|has| |#1| (-905)))) (-3259 (((-954 $)) 79)) (-2159 (($ $ |#1| (-767) $) NIL)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1075) (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1075) (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-1775 (((-767) $ $) NIL (|has| |#1| (-555)))) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) NIL)) (-1983 (((-3 $ "failed") $) NIL (|has| |#1| (-1144)))) (-2595 (($ (-1165 |#1|) (-1075)) NIL) (($ (-1165 $) (-1075)) NIL)) (-1821 (($ $ (-767)) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-767)) 76) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ (-1075)) NIL) (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3593 ((|#2|) 44)) (-3908 (((-767) $) NIL) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-2170 (($ (-1 (-767) (-767)) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-1726 (((-1165 |#1|) $) NIL)) (-1698 (((-3 (-1075) "failed") $) NIL)) (-3990 (((-917) $) NIL (|has| |#1| (-368)))) (-2433 ((|#2| $) 40)) (-2715 (($ $) NIL)) (-2725 ((|#1| $) 28)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3854 (((-1151) $) NIL)) (-1671 (((-2 (|:| -1765 $) (|:| -3443 $)) $ (-767)) NIL)) (-3939 (((-3 (-640 $) "failed") $) NIL)) (-3930 (((-3 (-640 $) "failed") $) NIL)) (-3949 (((-3 (-2 (|:| |var| (-1075)) (|:| -3311 (-767))) "failed") $) NIL)) (-2062 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2522 (($) NIL (|has| |#1| (-1144)) CONST)) (-2552 (($ (-917)) NIL (|has| |#1| (-368)))) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) NIL)) (-2705 ((|#1| $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3238 (($ $) 78 (|has| |#1| (-349)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2173 (((-418 $) $) NIL (|has| |#1| (-905)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-3012 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-1542 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-1075) |#1|) NIL) (($ $ (-640 (-1075)) (-640 |#1|)) NIL) (($ $ (-1075) $) NIL) (($ $ (-640 (-1075)) (-640 $)) NIL)) (-1993 (((-767) $) NIL (|has| |#1| (-363)))) (-2308 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-407 $) (-407 $) (-407 $)) NIL (|has| |#1| (-555))) ((|#1| (-407 $) |#1|) NIL (|has| |#1| (-363))) (((-407 $) $ (-407 $)) NIL (|has| |#1| (-555)))) (-1699 (((-3 $ "failed") $ (-767)) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 86 (|has| |#1| (-363)))) (-1623 (($ $ (-1075)) NIL (|has| |#1| (-172))) ((|#1| $) NIL (|has| |#1| (-172)))) (-4203 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3871 (((-767) $) 31) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-2219 (((-888 (-379)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-1075) (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-3885 ((|#1| $) NIL (|has| |#1| (-452))) (($ $ (-1075)) NIL (|has| |#1| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-3247 (((-954 $)) 35)) (-1590 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555))) (((-3 (-407 $) "failed") (-407 $) $) NIL (|has| |#1| (-555)))) (-1692 (((-858) $) 60) (($ (-563)) NIL) (($ |#1|) 57) (($ (-1075)) NIL) (($ |#2|) 67) (($ (-407 (-563))) NIL (-4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-3955 (((-640 |#1|) $) NIL)) (-3244 ((|#1| $ (-767)) 62) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-3914 (((-767)) NIL)) (-2148 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2239 (($) 20 T CONST)) (-3285 (((-1257 |#1|) $) 74)) (-3276 (($ (-1257 |#1|)) 49)) (-2253 (($) 8 T CONST)) (-3213 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3266 (((-1257 |#1|) $) NIL)) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) 68)) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1825 (($ $) 71) (($ $ $) NIL)) (-1813 (($ $ $) 32)) (** (($ $ (-917)) NIL) (($ $ (-767)) 80)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 56) (($ $ $) 73) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 54) (($ $ |#1|) NIL)))
+(((-708 |#1| |#2|) (-13 (-1233 |#1|) (-613 |#2|) (-10 -8 (-15 -3296 (|#2| |#2|)) (-15 -3593 (|#2|)) (-15 -2444 ($ |#2|)) (-15 -2433 (|#2| $)) (-15 -3285 ((-1257 |#1|) $)) (-15 -3276 ($ (-1257 |#1|))) (-15 -3266 ((-1257 |#1|) $)) (-15 -3259 ((-954 $))) (-15 -3247 ((-954 $))) (IF (|has| |#1| (-349)) (-15 -3238 ($ $)) |%noBranch|) (IF (|has| |#1| (-368)) (-6 (-368)) |%noBranch|))) (-1045) (-1233 |#1|)) (T -708))
+((-3296 (*1 *2 *2) (-12 (-4 *3 (-1045)) (-5 *1 (-708 *3 *2)) (-4 *2 (-1233 *3)))) (-3593 (*1 *2) (-12 (-4 *2 (-1233 *3)) (-5 *1 (-708 *3 *2)) (-4 *3 (-1045)))) (-2444 (*1 *1 *2) (-12 (-4 *3 (-1045)) (-5 *1 (-708 *3 *2)) (-4 *2 (-1233 *3)))) (-2433 (*1 *2 *1) (-12 (-4 *2 (-1233 *3)) (-5 *1 (-708 *3 *2)) (-4 *3 (-1045)))) (-3285 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-5 *2 (-1257 *3)) (-5 *1 (-708 *3 *4)) (-4 *4 (-1233 *3)))) (-3276 (*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1045)) (-5 *1 (-708 *3 *4)) (-4 *4 (-1233 *3)))) (-3266 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-5 *2 (-1257 *3)) (-5 *1 (-708 *3 *4)) (-4 *4 (-1233 *3)))) (-3259 (*1 *2) (-12 (-4 *3 (-1045)) (-5 *2 (-954 (-708 *3 *4))) (-5 *1 (-708 *3 *4)) (-4 *4 (-1233 *3)))) (-3247 (*1 *2) (-12 (-4 *3 (-1045)) (-5 *2 (-954 (-708 *3 *4))) (-5 *1 (-708 *3 *4)) (-4 *4 (-1233 *3)))) (-3238 (*1 *1 *1) (-12 (-4 *2 (-349)) (-4 *2 (-1045)) (-5 *1 (-708 *2 *3)) (-4 *3 (-1233 *2)))))
+(-13 (-1233 |#1|) (-613 |#2|) (-10 -8 (-15 -3296 (|#2| |#2|)) (-15 -3593 (|#2|)) (-15 -2444 ($ |#2|)) (-15 -2433 (|#2| $)) (-15 -3285 ((-1257 |#1|) $)) (-15 -3276 ($ (-1257 |#1|))) (-15 -3266 ((-1257 |#1|) $)) (-15 -3259 ((-954 $))) (-15 -3247 ((-954 $))) (IF (|has| |#1| (-349)) (-15 -3238 ($ $)) |%noBranch|) (IF (|has| |#1| (-368)) (-6 (-368)) |%noBranch|)))
+((-1677 (((-112) $ $) NIL)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-2552 ((|#1| $) 13)) (-1693 (((-1113) $) NIL)) (-3311 ((|#2| $) 12)) (-1706 (($ |#1| |#2|) 16)) (-1692 (((-858) $) NIL) (($ (-2 (|:| -2552 |#1|) (|:| -3311 |#2|))) 15) (((-2 (|:| -2552 |#1|) (|:| -3311 |#2|)) $) 14)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 11)))
+(((-709 |#1| |#2| |#3|) (-13 (-846) (-490 (-2 (|:| -2552 |#1|) (|:| -3311 |#2|))) (-10 -8 (-15 -3311 (|#2| $)) (-15 -2552 (|#1| $)) (-15 -1706 ($ |#1| |#2|)))) (-846) (-1093) (-1 (-112) (-2 (|:| -2552 |#1|) (|:| -3311 |#2|)) (-2 (|:| -2552 |#1|) (|:| -3311 |#2|)))) (T -709))
+((-3311 (*1 *2 *1) (-12 (-4 *2 (-1093)) (-5 *1 (-709 *3 *2 *4)) (-4 *3 (-846)) (-14 *4 (-1 (-112) (-2 (|:| -2552 *3) (|:| -3311 *2)) (-2 (|:| -2552 *3) (|:| -3311 *2)))))) (-2552 (*1 *2 *1) (-12 (-4 *2 (-846)) (-5 *1 (-709 *2 *3 *4)) (-4 *3 (-1093)) (-14 *4 (-1 (-112) (-2 (|:| -2552 *2) (|:| -3311 *3)) (-2 (|:| -2552 *2) (|:| -3311 *3)))))) (-1706 (*1 *1 *2 *3) (-12 (-5 *1 (-709 *2 *3 *4)) (-4 *2 (-846)) (-4 *3 (-1093)) (-14 *4 (-1 (-112) (-2 (|:| -2552 *2) (|:| -3311 *3)) (-2 (|:| -2552 *2) (|:| -3311 *3)))))))
+(-13 (-846) (-490 (-2 (|:| -2552 |#1|) (|:| -3311 |#2|))) (-10 -8 (-15 -3311 (|#2| $)) (-15 -2552 (|#1| $)) (-15 -1706 ($ |#1| |#2|))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 59)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) 89) (((-3 (-114) "failed") $) 95)) (-2057 ((|#1| $) NIL) (((-114) $) 39)) (-3951 (((-3 $ "failed") $) 90)) (-2888 ((|#2| (-114) |#2|) 82)) (-3401 (((-112) $) NIL)) (-2879 (($ |#1| (-361 (-114))) 14)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2897 (($ $ (-1 |#2| |#2|)) 58)) (-2906 (($ $ (-1 |#2| |#2|)) 44)) (-2308 ((|#2| $ |#2|) 33)) (-2916 ((|#1| |#1|) 105 (|has| |#1| (-172)))) (-1692 (((-858) $) 66) (($ (-563)) 18) (($ |#1|) 17) (($ (-114)) 23)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) 37)) (-2926 (($ $) 99 (|has| |#1| (-172))) (($ $ $) 103 (|has| |#1| (-172)))) (-2239 (($) 21 T CONST)) (-2253 (($) 9 T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) 48) (($ $ $) NIL)) (-1813 (($ $ $) 73)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ (-114) (-563)) NIL) (($ $ (-563)) 57)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 98) (($ $ $) 50) (($ |#1| $) 96 (|has| |#1| (-172))) (($ $ |#1|) 97 (|has| |#1| (-172)))))
+(((-710 |#1| |#2|) (-13 (-1045) (-1034 |#1|) (-1034 (-114)) (-286 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -2926 ($ $)) (-15 -2926 ($ $ $)) (-15 -2916 (|#1| |#1|))) |%noBranch|) (-15 -2906 ($ $ (-1 |#2| |#2|))) (-15 -2897 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-563))) (-15 ** ($ $ (-563))) (-15 -2888 (|#2| (-114) |#2|)) (-15 -2879 ($ |#1| (-361 (-114)))))) (-1045) (-643 |#1|)) (T -710))
+((-2926 (*1 *1 *1) (-12 (-4 *2 (-172)) (-4 *2 (-1045)) (-5 *1 (-710 *2 *3)) (-4 *3 (-643 *2)))) (-2926 (*1 *1 *1 *1) (-12 (-4 *2 (-172)) (-4 *2 (-1045)) (-5 *1 (-710 *2 *3)) (-4 *3 (-643 *2)))) (-2916 (*1 *2 *2) (-12 (-4 *2 (-172)) (-4 *2 (-1045)) (-5 *1 (-710 *2 *3)) (-4 *3 (-643 *2)))) (-2906 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-643 *3)) (-4 *3 (-1045)) (-5 *1 (-710 *3 *4)))) (-2897 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-643 *3)) (-4 *3 (-1045)) (-5 *1 (-710 *3 *4)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-563)) (-4 *4 (-1045)) (-5 *1 (-710 *4 *5)) (-4 *5 (-643 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *3 (-1045)) (-5 *1 (-710 *3 *4)) (-4 *4 (-643 *3)))) (-2888 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-4 *4 (-1045)) (-5 *1 (-710 *4 *2)) (-4 *2 (-643 *4)))) (-2879 (*1 *1 *2 *3) (-12 (-5 *3 (-361 (-114))) (-4 *2 (-1045)) (-5 *1 (-710 *2 *4)) (-4 *4 (-643 *2)))))
+(-13 (-1045) (-1034 |#1|) (-1034 (-114)) (-286 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -2926 ($ $)) (-15 -2926 ($ $ $)) (-15 -2916 (|#1| |#1|))) |%noBranch|) (-15 -2906 ($ $ (-1 |#2| |#2|))) (-15 -2897 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-563))) (-15 ** ($ $ (-563))) (-15 -2888 (|#2| (-114) |#2|)) (-15 -2879 ($ |#1| (-361 (-114))))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 33)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2444 (($ |#1| |#2|) 25)) (-3951 (((-3 $ "failed") $) 49)) (-3401 (((-112) $) 35)) (-3593 ((|#2| $) 12)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 50)) (-1693 (((-1113) $) NIL)) (-3322 (((-3 $ "failed") $ $) 48)) (-1692 (((-858) $) 24) (($ (-563)) 19) ((|#1| $) 13)) (-3914 (((-767)) 28)) (-2239 (($) 16 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 39)) (-1825 (($ $) 44) (($ $ $) 38)) (-1813 (($ $ $) 41)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 21) (($ $ $) 20)))
+(((-711 |#1| |#2| |#3| |#4| |#5|) (-13 (-1045) (-10 -8 (-15 -3593 (|#2| $)) (-15 -1692 (|#1| $)) (-15 -2444 ($ |#1| |#2|)) (-15 -3322 ((-3 $ "failed") $ $)) (-15 -3951 ((-3 $ "failed") $)) (-15 -2687 ($ $)))) (-172) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -711))
+((-3951 (*1 *1 *1) (|partial| -12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-3593 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-711 *3 *2 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-1692 (*1 *2 *1) (-12 (-4 *2 (-172)) (-5 *1 (-711 *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)))) (-2444 (*1 *1 *2 *3) (-12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-3322 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-2687 (*1 *1 *1) (-12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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 (-1045) (-10 -8 (-15 -3593 (|#2| $)) (-15 -1692 (|#1| $)) (-15 -2444 ($ |#1| |#2|)) (-15 -3322 ((-3 $ "failed") $ $)) (-15 -3951 ((-3 $ "failed") $)) (-15 -2687 ($ $))))
((* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ |#2| $) NIL) (($ $ |#2|) 9)))
(((-712 |#1| |#2|) (-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|))) (-713 |#2|) (-172)) (T -712))
NIL
(-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
(((-713 |#1|) (-140) (-172)) (T -713))
NIL
(-13 (-111 |t#1| |t#1|))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-610 (-858)) . T) ((-643 |#1|) . T) ((-1051 |#1|) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3458 (($ |#1|) 17) (($ $ |#1|) 20)) (-4346 (($ |#1|) 18) (($ $ |#1|) 21)) (-4239 (($) NIL T CONST)) (-3400 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-3827 (((-112) $) NIL)) (-2969 (($ |#1| |#1| |#1| |#1|) 8)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 16)) (-1694 (((-1113) $) NIL)) (-1540 ((|#1| $ |#1|) 24) (((-829 |#1|) $ (-829 |#1|)) 32)) (-4339 (($ $ $) NIL)) (-2146 (($ $ $) NIL)) (-1693 (((-858) $) 39)) (-2254 (($) 9 T CONST)) (-1718 (((-112) $ $) 44)) (-1837 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ $ $) 14)))
-(((-714 |#1|) (-13 (-473) (-10 -8 (-15 -2969 ($ |#1| |#1| |#1| |#1|)) (-15 -3458 ($ |#1|)) (-15 -4346 ($ |#1|)) (-15 -3400 ($)) (-15 -3458 ($ $ |#1|)) (-15 -4346 ($ $ |#1|)) (-15 -3400 ($ $)) (-15 -1540 (|#1| $ |#1|)) (-15 -1540 ((-829 |#1|) $ (-829 |#1|))))) (-363)) (T -714))
-((-2969 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-3458 (*1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-4346 (*1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-3400 (*1 *1) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-3458 (*1 *1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-4346 (*1 *1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-3400 (*1 *1 *1) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-1540 (*1 *2 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-1540 (*1 *2 *1 *2) (-12 (-5 *2 (-829 *3)) (-4 *3 (-363)) (-5 *1 (-714 *3)))))
-(-13 (-473) (-10 -8 (-15 -2969 ($ |#1| |#1| |#1| |#1|)) (-15 -3458 ($ |#1|)) (-15 -4346 ($ |#1|)) (-15 -3400 ($)) (-15 -3458 ($ $ |#1|)) (-15 -4346 ($ $ |#1|)) (-15 -3400 ($ $)) (-15 -1540 (|#1| $ |#1|)) (-15 -1540 ((-829 |#1|) $ (-829 |#1|)))))
-((-2300 (($ $ (-917)) 12)) (-1494 (($ $ (-917)) 13)) (** (($ $ (-917)) 10)))
-(((-715 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-917))) (-15 -1494 (|#1| |#1| (-917))) (-15 -2300 (|#1| |#1| (-917)))) (-716)) (T -715))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-917))) (-15 -1494 (|#1| |#1| (-917))) (-15 -2300 (|#1| |#1| (-917))))
-((-1677 (((-112) $ $) 7)) (-2300 (($ $ (-917)) 15)) (-1494 (($ $ (-917)) 14)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1718 (((-112) $ $) 6)) (** (($ $ (-917)) 13)) (* (($ $ $) 16)))
+((-1677 (((-112) $ $) NIL)) (-3462 (($ |#1|) 17) (($ $ |#1|) 20)) (-4165 (($ |#1|) 18) (($ $ |#1|) 21)) (-2569 (($) NIL T CONST)) (-3951 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-3401 (((-112) $) NIL)) (-3332 (($ |#1| |#1| |#1| |#1|) 8)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 16)) (-1693 (((-1113) $) NIL)) (-1542 ((|#1| $ |#1|) 24) (((-829 |#1|) $ (-829 |#1|)) 32)) (-2150 (($ $ $) NIL)) (-1745 (($ $ $) NIL)) (-1692 (((-858) $) 39)) (-2253 (($) 9 T CONST)) (-1718 (((-112) $ $) 44)) (-1836 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ $ $) 14)))
+(((-714 |#1|) (-13 (-473) (-10 -8 (-15 -3332 ($ |#1| |#1| |#1| |#1|)) (-15 -3462 ($ |#1|)) (-15 -4165 ($ |#1|)) (-15 -3951 ($)) (-15 -3462 ($ $ |#1|)) (-15 -4165 ($ $ |#1|)) (-15 -3951 ($ $)) (-15 -1542 (|#1| $ |#1|)) (-15 -1542 ((-829 |#1|) $ (-829 |#1|))))) (-363)) (T -714))
+((-3332 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-3462 (*1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-4165 (*1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-3951 (*1 *1) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-3462 (*1 *1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-4165 (*1 *1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-3951 (*1 *1 *1) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-1542 (*1 *2 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))) (-1542 (*1 *2 *1 *2) (-12 (-5 *2 (-829 *3)) (-4 *3 (-363)) (-5 *1 (-714 *3)))))
+(-13 (-473) (-10 -8 (-15 -3332 ($ |#1| |#1| |#1| |#1|)) (-15 -3462 ($ |#1|)) (-15 -4165 ($ |#1|)) (-15 -3951 ($)) (-15 -3462 ($ $ |#1|)) (-15 -4165 ($ $ |#1|)) (-15 -3951 ($ $)) (-15 -1542 (|#1| $ |#1|)) (-15 -1542 ((-829 |#1|) $ (-829 |#1|)))))
+((-3376 (($ $ (-917)) 12)) (-3364 (($ $ (-917)) 13)) (** (($ $ (-917)) 10)))
+(((-715 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-917))) (-15 -3364 (|#1| |#1| (-917))) (-15 -3376 (|#1| |#1| (-917)))) (-716)) (T -715))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-917))) (-15 -3364 (|#1| |#1| (-917))) (-15 -3376 (|#1| |#1| (-917))))
+((-1677 (((-112) $ $) 7)) (-3376 (($ $ (-917)) 15)) (-3364 (($ $ (-917)) 14)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1718 (((-112) $ $) 6)) (** (($ $ (-917)) 13)) (* (($ $ $) 16)))
(((-716) (-140)) (T -716))
-((* (*1 *1 *1 *1) (-4 *1 (-716))) (-2300 (*1 *1 *1 *2) (-12 (-4 *1 (-716)) (-5 *2 (-917)))) (-1494 (*1 *1 *1 *2) (-12 (-4 *1 (-716)) (-5 *2 (-917)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-716)) (-5 *2 (-917)))))
-(-13 (-1093) (-10 -8 (-15 * ($ $ $)) (-15 -2300 ($ $ (-917))) (-15 -1494 ($ $ (-917))) (-15 ** ($ $ (-917)))))
+((* (*1 *1 *1 *1) (-4 *1 (-716))) (-3376 (*1 *1 *1 *2) (-12 (-4 *1 (-716)) (-5 *2 (-917)))) (-3364 (*1 *1 *1 *2) (-12 (-4 *1 (-716)) (-5 *2 (-917)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-716)) (-5 *2 (-917)))))
+(-13 (-1093) (-10 -8 (-15 * ($ $ $)) (-15 -3376 ($ $ (-917))) (-15 -3364 ($ $ (-917))) (-15 ** ($ $ (-917)))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-2300 (($ $ (-917)) NIL) (($ $ (-767)) 17)) (-3827 (((-112) $) 10)) (-1494 (($ $ (-917)) NIL) (($ $ (-767)) 18)) (** (($ $ (-917)) NIL) (($ $ (-767)) 15)))
-(((-717 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-767))) (-15 -1494 (|#1| |#1| (-767))) (-15 -2300 (|#1| |#1| (-767))) (-15 -3827 ((-112) |#1|)) (-15 ** (|#1| |#1| (-917))) (-15 -1494 (|#1| |#1| (-917))) (-15 -2300 (|#1| |#1| (-917)))) (-718)) (T -717))
+((-3376 (($ $ (-917)) NIL) (($ $ (-767)) 17)) (-3401 (((-112) $) 10)) (-3364 (($ $ (-917)) NIL) (($ $ (-767)) 18)) (** (($ $ (-917)) NIL) (($ $ (-767)) 15)))
+(((-717 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-767))) (-15 -3364 (|#1| |#1| (-767))) (-15 -3376 (|#1| |#1| (-767))) (-15 -3401 ((-112) |#1|)) (-15 ** (|#1| |#1| (-917))) (-15 -3364 (|#1| |#1| (-917))) (-15 -3376 (|#1| |#1| (-917)))) (-718)) (T -717))
NIL
-(-10 -8 (-15 ** (|#1| |#1| (-767))) (-15 -1494 (|#1| |#1| (-767))) (-15 -2300 (|#1| |#1| (-767))) (-15 -3827 ((-112) |#1|)) (-15 ** (|#1| |#1| (-917))) (-15 -1494 (|#1| |#1| (-917))) (-15 -2300 (|#1| |#1| (-917))))
-((-1677 (((-112) $ $) 7)) (-4154 (((-3 $ "failed") $) 17)) (-2300 (($ $ (-917)) 15) (($ $ (-767)) 22)) (-3400 (((-3 $ "failed") $) 19)) (-3827 (((-112) $) 23)) (-3856 (((-3 $ "failed") $) 18)) (-1494 (($ $ (-917)) 14) (($ $ (-767)) 21)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-2254 (($) 24 T CONST)) (-1718 (((-112) $ $) 6)) (** (($ $ (-917)) 13) (($ $ (-767)) 20)) (* (($ $ $) 16)))
+(-10 -8 (-15 ** (|#1| |#1| (-767))) (-15 -3364 (|#1| |#1| (-767))) (-15 -3376 (|#1| |#1| (-767))) (-15 -3401 ((-112) |#1|)) (-15 ** (|#1| |#1| (-917))) (-15 -3364 (|#1| |#1| (-917))) (-15 -3376 (|#1| |#1| (-917))))
+((-1677 (((-112) $ $) 7)) (-3342 (((-3 $ "failed") $) 17)) (-3376 (($ $ (-917)) 15) (($ $ (-767)) 22)) (-3951 (((-3 $ "failed") $) 19)) (-3401 (((-112) $) 23)) (-3353 (((-3 $ "failed") $) 18)) (-3364 (($ $ (-917)) 14) (($ $ (-767)) 21)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2253 (($) 24 T CONST)) (-1718 (((-112) $ $) 6)) (** (($ $ (-917)) 13) (($ $ (-767)) 20)) (* (($ $ $) 16)))
(((-718) (-140)) (T -718))
-((-2254 (*1 *1) (-4 *1 (-718))) (-3827 (*1 *2 *1) (-12 (-4 *1 (-718)) (-5 *2 (-112)))) (-2300 (*1 *1 *1 *2) (-12 (-4 *1 (-718)) (-5 *2 (-767)))) (-1494 (*1 *1 *1 *2) (-12 (-4 *1 (-718)) (-5 *2 (-767)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-718)) (-5 *2 (-767)))) (-3400 (*1 *1 *1) (|partial| -4 *1 (-718))) (-3856 (*1 *1 *1) (|partial| -4 *1 (-718))) (-4154 (*1 *1 *1) (|partial| -4 *1 (-718))))
-(-13 (-716) (-10 -8 (-15 (-2254) ($) -2669) (-15 -3827 ((-112) $)) (-15 -2300 ($ $ (-767))) (-15 -1494 ($ $ (-767))) (-15 ** ($ $ (-767))) (-15 -3400 ((-3 $ "failed") $)) (-15 -3856 ((-3 $ "failed") $)) (-15 -4154 ((-3 $ "failed") $))))
+((-2253 (*1 *1) (-4 *1 (-718))) (-3401 (*1 *2 *1) (-12 (-4 *1 (-718)) (-5 *2 (-112)))) (-3376 (*1 *1 *1 *2) (-12 (-4 *1 (-718)) (-5 *2 (-767)))) (-3364 (*1 *1 *1 *2) (-12 (-4 *1 (-718)) (-5 *2 (-767)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-718)) (-5 *2 (-767)))) (-3951 (*1 *1 *1) (|partial| -4 *1 (-718))) (-3353 (*1 *1 *1) (|partial| -4 *1 (-718))) (-3342 (*1 *1 *1) (|partial| -4 *1 (-718))))
+(-13 (-716) (-10 -8 (-15 (-2253) ($) -2668) (-15 -3401 ((-112) $)) (-15 -3376 ($ $ (-767))) (-15 -3364 ($ $ (-767))) (-15 ** ($ $ (-767))) (-15 -3951 ((-3 $ "failed") $)) (-15 -3353 ((-3 $ "failed") $)) (-15 -3342 ((-3 $ "failed") $))))
(((-102) . T) ((-610 (-858)) . T) ((-716) . T) ((-1093) . T))
-((-3749 (((-767)) 35)) (-2131 (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-2058 (((-563) $) NIL) (((-407 (-563)) $) NIL) ((|#2| $) 22)) (-2444 (($ |#3|) NIL) (((-3 $ "failed") (-407 |#3|)) 45)) (-3400 (((-3 $ "failed") $) 65)) (-1691 (($) 39)) (-3793 ((|#2| $) 20)) (-4333 (($) 17)) (-4202 (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) 53) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL) (($ $ (-767)) NIL) (($ $) NIL)) (-3974 (((-684 |#2|) (-1257 $) (-1 |#2| |#2|)) 60)) (-2220 (((-1257 |#2|) $) NIL) (($ (-1257 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-3421 ((|#3| $) 32)) (-4315 (((-1257 $)) 29)))
-(((-719 |#1| |#2| |#3|) (-10 -8 (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -1691 (|#1|)) (-15 -3749 ((-767))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -3974 ((-684 |#2|) (-1257 |#1|) (-1 |#2| |#2|))) (-15 -2444 ((-3 |#1| "failed") (-407 |#3|))) (-15 -2220 (|#1| |#3|)) (-15 -2444 (|#1| |#3|)) (-15 -4333 (|#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2220 (|#3| |#1|)) (-15 -2220 (|#1| (-1257 |#2|))) (-15 -2220 ((-1257 |#2|) |#1|)) (-15 -4315 ((-1257 |#1|))) (-15 -3421 (|#3| |#1|)) (-15 -3793 (|#2| |#1|)) (-15 -3400 ((-3 |#1| "failed") |#1|))) (-720 |#2| |#3|) (-172) (-1233 |#2|)) (T -719))
-((-3749 (*1 *2) (-12 (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-767)) (-5 *1 (-719 *3 *4 *5)) (-4 *3 (-720 *4 *5)))))
-(-10 -8 (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -1691 (|#1|)) (-15 -3749 ((-767))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -3974 ((-684 |#2|) (-1257 |#1|) (-1 |#2| |#2|))) (-15 -2444 ((-3 |#1| "failed") (-407 |#3|))) (-15 -2220 (|#1| |#3|)) (-15 -2444 (|#1| |#3|)) (-15 -4333 (|#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2220 (|#3| |#1|)) (-15 -2220 (|#1| (-1257 |#2|))) (-15 -2220 ((-1257 |#2|) |#1|)) (-15 -4315 ((-1257 |#1|))) (-15 -3421 (|#3| |#1|)) (-15 -3793 (|#2| |#1|)) (-15 -3400 ((-3 |#1| "failed") |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 93 (|has| |#1| (-363)))) (-4223 (($ $) 94 (|has| |#1| (-363)))) (-3156 (((-112) $) 96 (|has| |#1| (-363)))) (-3561 (((-684 |#1|) (-1257 $)) 47) (((-684 |#1|)) 62)) (-1733 ((|#1| $) 53)) (-2752 (((-1181 (-917) (-767)) (-563)) 146 (|has| |#1| (-349)))) (-1495 (((-3 $ "failed") $ $) 19)) (-4335 (($ $) 113 (|has| |#1| (-363)))) (-3205 (((-418 $) $) 114 (|has| |#1| (-363)))) (-1919 (((-112) $ $) 104 (|has| |#1| (-363)))) (-3749 (((-767)) 87 (|has| |#1| (-368)))) (-4239 (($) 17 T CONST)) (-2131 (((-3 (-563) "failed") $) 169 (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 167 (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 164)) (-2058 (((-563) $) 168 (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) 166 (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 165)) (-3937 (($ (-1257 |#1|) (-1257 $)) 49) (($ (-1257 |#1|)) 65)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) 152 (|has| |#1| (-349)))) (-3090 (($ $ $) 108 (|has| |#1| (-363)))) (-3914 (((-684 |#1|) $ (-1257 $)) 54) (((-684 |#1|) $) 60)) (-2950 (((-684 (-563)) (-684 $)) 163 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 162 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 161) (((-684 |#1|) (-684 $)) 160)) (-2444 (($ |#2|) 157) (((-3 $ "failed") (-407 |#2|)) 154 (|has| |#1| (-363)))) (-3400 (((-3 $ "failed") $) 33)) (-2522 (((-917)) 55)) (-1691 (($) 90 (|has| |#1| (-368)))) (-3050 (($ $ $) 107 (|has| |#1| (-363)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 102 (|has| |#1| (-363)))) (-1571 (($) 148 (|has| |#1| (-349)))) (-2366 (((-112) $) 149 (|has| |#1| (-349)))) (-1637 (($ $ (-767)) 140 (|has| |#1| (-349))) (($ $) 139 (|has| |#1| (-349)))) (-2468 (((-112) $) 115 (|has| |#1| (-363)))) (-3254 (((-917) $) 151 (|has| |#1| (-349))) (((-829 (-917)) $) 137 (|has| |#1| (-349)))) (-3827 (((-112) $) 31)) (-3793 ((|#1| $) 52)) (-2408 (((-3 $ "failed") $) 141 (|has| |#1| (-349)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 111 (|has| |#1| (-363)))) (-3941 ((|#2| $) 45 (|has| |#1| (-363)))) (-1476 (((-917) $) 89 (|has| |#1| (-368)))) (-2433 ((|#2| $) 155)) (-3513 (($ (-640 $)) 100 (|has| |#1| (-363))) (($ $ $) 99 (|has| |#1| (-363)))) (-3573 (((-1151) $) 9)) (-2688 (($ $) 116 (|has| |#1| (-363)))) (-2523 (($) 142 (|has| |#1| (-349)) CONST)) (-2555 (($ (-917)) 88 (|has| |#1| (-368)))) (-1694 (((-1113) $) 10)) (-4333 (($) 159)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 101 (|has| |#1| (-363)))) (-3548 (($ (-640 $)) 98 (|has| |#1| (-363))) (($ $ $) 97 (|has| |#1| (-363)))) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) 145 (|has| |#1| (-349)))) (-2174 (((-418 $) $) 112 (|has| |#1| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 109 (|has| |#1| (-363)))) (-3008 (((-3 $ "failed") $ $) 92 (|has| |#1| (-363)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 103 (|has| |#1| (-363)))) (-2628 (((-767) $) 105 (|has| |#1| (-363)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 106 (|has| |#1| (-363)))) (-2315 ((|#1| (-1257 $)) 48) ((|#1|) 61)) (-1423 (((-767) $) 150 (|has| |#1| (-349))) (((-3 (-767) "failed") $ $) 138 (|has| |#1| (-349)))) (-4202 (($ $) 136 (-4032 (-2190 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-767)) 134 (-4032 (-2190 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-1169)) 132 (-2190 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-640 (-1169))) 131 (-2190 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-1169) (-767)) 130 (-2190 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-640 (-1169)) (-640 (-767))) 129 (-2190 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-1 |#1| |#1|) (-767)) 122 (|has| |#1| (-363))) (($ $ (-1 |#1| |#1|)) 121 (|has| |#1| (-363)))) (-3974 (((-684 |#1|) (-1257 $) (-1 |#1| |#1|)) 153 (|has| |#1| (-363)))) (-3390 ((|#2|) 158)) (-4284 (($) 147 (|has| |#1| (-349)))) (-1880 (((-1257 |#1|) $ (-1257 $)) 51) (((-684 |#1|) (-1257 $) (-1257 $)) 50) (((-1257 |#1|) $) 67) (((-684 |#1|) (-1257 $)) 66)) (-2220 (((-1257 |#1|) $) 64) (($ (-1257 |#1|)) 63) ((|#2| $) 170) (($ |#2|) 156)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) 144 (|has| |#1| (-349)))) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 38) (($ $) 91 (|has| |#1| (-363))) (($ (-407 (-563))) 86 (-4032 (|has| |#1| (-363)) (|has| |#1| (-1034 (-407 (-563))))))) (-2779 (($ $) 143 (|has| |#1| (-349))) (((-3 $ "failed") $) 44 (|has| |#1| (-145)))) (-3421 ((|#2| $) 46)) (-1675 (((-767)) 28)) (-4315 (((-1257 $)) 68)) (-2126 (((-112) $ $) 95 (|has| |#1| (-363)))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $) 135 (-4032 (-2190 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-767)) 133 (-4032 (-2190 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-1169)) 128 (-2190 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-640 (-1169))) 127 (-2190 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-1169) (-767)) 126 (-2190 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-640 (-1169)) (-640 (-767))) 125 (-2190 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-1 |#1| |#1|) (-767)) 124 (|has| |#1| (-363))) (($ $ (-1 |#1| |#1|)) 123 (|has| |#1| (-363)))) (-1718 (((-112) $ $) 6)) (-1837 (($ $ $) 120 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 117 (|has| |#1| (-363)))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39) (($ (-407 (-563)) $) 119 (|has| |#1| (-363))) (($ $ (-407 (-563))) 118 (|has| |#1| (-363)))))
+((-3750 (((-767)) 35)) (-2130 (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-2057 (((-563) $) NIL) (((-407 (-563)) $) NIL) ((|#2| $) 22)) (-2444 (($ |#3|) NIL) (((-3 $ "failed") (-407 |#3|)) 45)) (-3951 (((-3 $ "failed") $) 65)) (-1690 (($) 39)) (-3975 ((|#2| $) 20)) (-4334 (($) 17)) (-4203 (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) 53) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL) (($ $ (-767)) NIL) (($ $) NIL)) (-3388 (((-684 |#2|) (-1257 $) (-1 |#2| |#2|)) 60)) (-2219 (((-1257 |#2|) $) NIL) (($ (-1257 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-1892 ((|#3| $) 32)) (-4013 (((-1257 $)) 29)))
+(((-719 |#1| |#2| |#3|) (-10 -8 (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -1690 (|#1|)) (-15 -3750 ((-767))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -3388 ((-684 |#2|) (-1257 |#1|) (-1 |#2| |#2|))) (-15 -2444 ((-3 |#1| "failed") (-407 |#3|))) (-15 -2219 (|#1| |#3|)) (-15 -2444 (|#1| |#3|)) (-15 -4334 (|#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2219 (|#3| |#1|)) (-15 -2219 (|#1| (-1257 |#2|))) (-15 -2219 ((-1257 |#2|) |#1|)) (-15 -4013 ((-1257 |#1|))) (-15 -1892 (|#3| |#1|)) (-15 -3975 (|#2| |#1|)) (-15 -3951 ((-3 |#1| "failed") |#1|))) (-720 |#2| |#3|) (-172) (-1233 |#2|)) (T -719))
+((-3750 (*1 *2) (-12 (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-767)) (-5 *1 (-719 *3 *4 *5)) (-4 *3 (-720 *4 *5)))))
+(-10 -8 (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -1690 (|#1|)) (-15 -3750 ((-767))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -3388 ((-684 |#2|) (-1257 |#1|) (-1 |#2| |#2|))) (-15 -2444 ((-3 |#1| "failed") (-407 |#3|))) (-15 -2219 (|#1| |#3|)) (-15 -2444 (|#1| |#3|)) (-15 -4334 (|#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2219 (|#3| |#1|)) (-15 -2219 (|#1| (-1257 |#2|))) (-15 -2219 ((-1257 |#2|) |#1|)) (-15 -4013 ((-1257 |#1|))) (-15 -1892 (|#3| |#1|)) (-15 -3975 (|#2| |#1|)) (-15 -3951 ((-3 |#1| "failed") |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 93 (|has| |#1| (-363)))) (-3231 (($ $) 94 (|has| |#1| (-363)))) (-3211 (((-112) $) 96 (|has| |#1| (-363)))) (-3340 (((-684 |#1|) (-1257 $)) 47) (((-684 |#1|)) 62)) (-1731 ((|#1| $) 53)) (-1597 (((-1181 (-917) (-767)) (-563)) 146 (|has| |#1| (-349)))) (-3905 (((-3 $ "failed") $ $) 19)) (-1798 (($ $) 113 (|has| |#1| (-363)))) (-2802 (((-418 $) $) 114 (|has| |#1| (-363)))) (-2003 (((-112) $ $) 104 (|has| |#1| (-363)))) (-3750 (((-767)) 87 (|has| |#1| (-368)))) (-2569 (($) 17 T CONST)) (-2130 (((-3 (-563) "failed") $) 169 (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 167 (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 164)) (-2057 (((-563) $) 168 (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) 166 (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 165)) (-3458 (($ (-1257 |#1|) (-1257 $)) 49) (($ (-1257 |#1|)) 65)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) 152 (|has| |#1| (-349)))) (-3094 (($ $ $) 108 (|has| |#1| (-363)))) (-3330 (((-684 |#1|) $ (-1257 $)) 54) (((-684 |#1|) $) 60)) (-1476 (((-684 (-563)) (-684 $)) 163 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 162 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 161) (((-684 |#1|) (-684 $)) 160)) (-2444 (($ |#2|) 157) (((-3 $ "failed") (-407 |#2|)) 154 (|has| |#1| (-363)))) (-3951 (((-3 $ "failed") $) 33)) (-2521 (((-917)) 55)) (-1690 (($) 90 (|has| |#1| (-368)))) (-3054 (($ $ $) 107 (|has| |#1| (-363)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 102 (|has| |#1| (-363)))) (-4036 (($) 148 (|has| |#1| (-349)))) (-1656 (((-112) $) 149 (|has| |#1| (-349)))) (-3188 (($ $ (-767)) 140 (|has| |#1| (-349))) (($ $) 139 (|has| |#1| (-349)))) (-2560 (((-112) $) 115 (|has| |#1| (-363)))) (-1775 (((-917) $) 151 (|has| |#1| (-349))) (((-829 (-917)) $) 137 (|has| |#1| (-349)))) (-3401 (((-112) $) 31)) (-3975 ((|#1| $) 52)) (-1983 (((-3 $ "failed") $) 141 (|has| |#1| (-349)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 111 (|has| |#1| (-363)))) (-4035 ((|#2| $) 45 (|has| |#1| (-363)))) (-3990 (((-917) $) 89 (|has| |#1| (-368)))) (-2433 ((|#2| $) 155)) (-3517 (($ (-640 $)) 100 (|has| |#1| (-363))) (($ $ $) 99 (|has| |#1| (-363)))) (-3854 (((-1151) $) 9)) (-2687 (($ $) 116 (|has| |#1| (-363)))) (-2522 (($) 142 (|has| |#1| (-349)) CONST)) (-2552 (($ (-917)) 88 (|has| |#1| (-368)))) (-1693 (((-1113) $) 10)) (-4334 (($) 159)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 101 (|has| |#1| (-363)))) (-3551 (($ (-640 $)) 98 (|has| |#1| (-363))) (($ $ $) 97 (|has| |#1| (-363)))) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) 145 (|has| |#1| (-349)))) (-2173 (((-418 $) $) 112 (|has| |#1| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 109 (|has| |#1| (-363)))) (-3012 (((-3 $ "failed") $ $) 92 (|has| |#1| (-363)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 103 (|has| |#1| (-363)))) (-1993 (((-767) $) 105 (|has| |#1| (-363)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 106 (|has| |#1| (-363)))) (-1623 ((|#1| (-1257 $)) 48) ((|#1|) 61)) (-3196 (((-767) $) 150 (|has| |#1| (-349))) (((-3 (-767) "failed") $ $) 138 (|has| |#1| (-349)))) (-4203 (($ $) 136 (-4034 (-2188 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-767)) 134 (-4034 (-2188 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-1169)) 132 (-2188 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-640 (-1169))) 131 (-2188 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-1169) (-767)) 130 (-2188 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-640 (-1169)) (-640 (-767))) 129 (-2188 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-1 |#1| |#1|) (-767)) 122 (|has| |#1| (-363))) (($ $ (-1 |#1| |#1|)) 121 (|has| |#1| (-363)))) (-3388 (((-684 |#1|) (-1257 $) (-1 |#1| |#1|)) 153 (|has| |#1| (-363)))) (-3402 ((|#2|) 158)) (-1586 (($) 147 (|has| |#1| (-349)))) (-3759 (((-1257 |#1|) $ (-1257 $)) 51) (((-684 |#1|) (-1257 $) (-1257 $)) 50) (((-1257 |#1|) $) 67) (((-684 |#1|) (-1257 $)) 66)) (-2219 (((-1257 |#1|) $) 64) (($ (-1257 |#1|)) 63) ((|#2| $) 170) (($ |#2|) 156)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) 144 (|has| |#1| (-349)))) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 38) (($ $) 91 (|has| |#1| (-363))) (($ (-407 (-563))) 86 (-4034 (|has| |#1| (-363)) (|has| |#1| (-1034 (-407 (-563))))))) (-2047 (($ $) 143 (|has| |#1| (-349))) (((-3 $ "failed") $) 44 (|has| |#1| (-145)))) (-1892 ((|#2| $) 46)) (-3914 (((-767)) 28)) (-4013 (((-1257 $)) 68)) (-3223 (((-112) $ $) 95 (|has| |#1| (-363)))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $) 135 (-4034 (-2188 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-767)) 133 (-4034 (-2188 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-1169)) 128 (-2188 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-640 (-1169))) 127 (-2188 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-1169) (-767)) 126 (-2188 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-640 (-1169)) (-640 (-767))) 125 (-2188 (|has| |#1| (-896 (-1169))) (|has| |#1| (-363)))) (($ $ (-1 |#1| |#1|) (-767)) 124 (|has| |#1| (-363))) (($ $ (-1 |#1| |#1|)) 123 (|has| |#1| (-363)))) (-1718 (((-112) $ $) 6)) (-1836 (($ $ $) 120 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 117 (|has| |#1| (-363)))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39) (($ (-407 (-563)) $) 119 (|has| |#1| (-363))) (($ $ (-407 (-563))) 118 (|has| |#1| (-363)))))
(((-720 |#1| |#2|) (-140) (-172) (-1233 |t#1|)) (T -720))
-((-4333 (*1 *1) (-12 (-4 *2 (-172)) (-4 *1 (-720 *2 *3)) (-4 *3 (-1233 *2)))) (-3390 (*1 *2) (-12 (-4 *1 (-720 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1233 *3)))) (-2444 (*1 *1 *2) (-12 (-4 *3 (-172)) (-4 *1 (-720 *3 *2)) (-4 *2 (-1233 *3)))) (-2220 (*1 *1 *2) (-12 (-4 *3 (-172)) (-4 *1 (-720 *3 *2)) (-4 *2 (-1233 *3)))) (-2433 (*1 *2 *1) (-12 (-4 *1 (-720 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1233 *3)))) (-2444 (*1 *1 *2) (|partial| -12 (-5 *2 (-407 *4)) (-4 *4 (-1233 *3)) (-4 *3 (-363)) (-4 *3 (-172)) (-4 *1 (-720 *3 *4)))) (-3974 (*1 *2 *3 *4) (-12 (-5 *3 (-1257 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-363)) (-4 *1 (-720 *5 *6)) (-4 *5 (-172)) (-4 *6 (-1233 *5)) (-5 *2 (-684 *5)))))
-(-13 (-409 |t#1| |t#2|) (-172) (-611 |t#2|) (-411 |t#1|) (-377 |t#1|) (-10 -8 (-15 -4333 ($)) (-15 -3390 (|t#2|)) (-15 -2444 ($ |t#2|)) (-15 -2220 ($ |t#2|)) (-15 -2433 (|t#2| $)) (IF (|has| |t#1| (-368)) (-6 (-368)) |%noBranch|) (IF (|has| |t#1| (-363)) (PROGN (-6 (-363)) (-6 (-231 |t#1|)) (-15 -2444 ((-3 $ "failed") (-407 |t#2|))) (-15 -3974 ((-684 |t#1|) (-1257 $) (-1 |t#1| |t#1|)))) |%noBranch|) (IF (|has| |t#1| (-349)) (-6 (-349)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-38 |#1|) . T) ((-38 $) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-102) . T) ((-111 #0# #0#) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-131) . T) ((-145) -4032 (|has| |#1| (-349)) (|has| |#1| (-145))) ((-147) |has| |#1| (-147)) ((-613 #0#) -4032 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-349)) (|has| |#1| (-363))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 $) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-610 (-858)) . T) ((-172) . T) ((-611 |#2|) . T) ((-231 |#1|) |has| |#1| (-363)) ((-233) -4032 (|has| |#1| (-349)) (-12 (|has| |#1| (-233)) (|has| |#1| (-363)))) ((-243) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-290) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-307) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-363) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-402) |has| |#1| (-349)) ((-368) -4032 (|has| |#1| (-368)) (|has| |#1| (-349))) ((-349) |has| |#1| (-349)) ((-370 |#1| |#2|) . T) ((-409 |#1| |#2|) . T) ((-377 |#1|) . T) ((-411 |#1|) . T) ((-452) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-555) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-643 #0#) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #0#) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-713 |#1|) . T) ((-713 $) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-722) . T) ((-896 (-1169)) -12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169)))) ((-916) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1051 #0#) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-1051 |#1|) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) |has| |#1| (-349)) ((-1212) -4032 (|has| |#1| (-349)) (|has| |#1| (-363))))
-((-4239 (($) 11)) (-3400 (((-3 $ "failed") $) 13)) (-3827 (((-112) $) 10)) (** (($ $ (-917)) NIL) (($ $ (-767)) 18)))
-(((-721 |#1|) (-10 -8 (-15 -3400 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-767))) (-15 -3827 ((-112) |#1|)) (-15 -4239 (|#1|)) (-15 ** (|#1| |#1| (-917)))) (-722)) (T -721))
-NIL
-(-10 -8 (-15 -3400 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-767))) (-15 -3827 ((-112) |#1|)) (-15 -4239 (|#1|)) (-15 ** (|#1| |#1| (-917))))
-((-1677 (((-112) $ $) 7)) (-4239 (($) 18 T CONST)) (-3400 (((-3 $ "failed") $) 15)) (-3827 (((-112) $) 17)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-2254 (($) 19 T CONST)) (-1718 (((-112) $ $) 6)) (** (($ $ (-917)) 13) (($ $ (-767)) 16)) (* (($ $ $) 14)))
+((-4334 (*1 *1) (-12 (-4 *2 (-172)) (-4 *1 (-720 *2 *3)) (-4 *3 (-1233 *2)))) (-3402 (*1 *2) (-12 (-4 *1 (-720 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1233 *3)))) (-2444 (*1 *1 *2) (-12 (-4 *3 (-172)) (-4 *1 (-720 *3 *2)) (-4 *2 (-1233 *3)))) (-2219 (*1 *1 *2) (-12 (-4 *3 (-172)) (-4 *1 (-720 *3 *2)) (-4 *2 (-1233 *3)))) (-2433 (*1 *2 *1) (-12 (-4 *1 (-720 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1233 *3)))) (-2444 (*1 *1 *2) (|partial| -12 (-5 *2 (-407 *4)) (-4 *4 (-1233 *3)) (-4 *3 (-363)) (-4 *3 (-172)) (-4 *1 (-720 *3 *4)))) (-3388 (*1 *2 *3 *4) (-12 (-5 *3 (-1257 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-363)) (-4 *1 (-720 *5 *6)) (-4 *5 (-172)) (-4 *6 (-1233 *5)) (-5 *2 (-684 *5)))))
+(-13 (-409 |t#1| |t#2|) (-172) (-611 |t#2|) (-411 |t#1|) (-377 |t#1|) (-10 -8 (-15 -4334 ($)) (-15 -3402 (|t#2|)) (-15 -2444 ($ |t#2|)) (-15 -2219 ($ |t#2|)) (-15 -2433 (|t#2| $)) (IF (|has| |t#1| (-368)) (-6 (-368)) |%noBranch|) (IF (|has| |t#1| (-363)) (PROGN (-6 (-363)) (-6 (-231 |t#1|)) (-15 -2444 ((-3 $ "failed") (-407 |t#2|))) (-15 -3388 ((-684 |t#1|) (-1257 $) (-1 |t#1| |t#1|)))) |%noBranch|) (IF (|has| |t#1| (-349)) (-6 (-349)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-38 |#1|) . T) ((-38 $) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-102) . T) ((-111 #0# #0#) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-131) . T) ((-145) -4034 (|has| |#1| (-349)) (|has| |#1| (-145))) ((-147) |has| |#1| (-147)) ((-613 #0#) -4034 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-349)) (|has| |#1| (-363))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 $) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-610 (-858)) . T) ((-172) . T) ((-611 |#2|) . T) ((-231 |#1|) |has| |#1| (-363)) ((-233) -4034 (|has| |#1| (-349)) (-12 (|has| |#1| (-233)) (|has| |#1| (-363)))) ((-243) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-290) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-307) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-363) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-402) |has| |#1| (-349)) ((-368) -4034 (|has| |#1| (-368)) (|has| |#1| (-349))) ((-349) |has| |#1| (-349)) ((-370 |#1| |#2|) . T) ((-409 |#1| |#2|) . T) ((-377 |#1|) . T) ((-411 |#1|) . T) ((-452) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-555) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-643 #0#) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #0#) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-713 |#1|) . T) ((-713 $) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-722) . T) ((-896 (-1169)) -12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169)))) ((-916) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1051 #0#) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))) ((-1051 |#1|) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) |has| |#1| (-349)) ((-1212) -4034 (|has| |#1| (-349)) (|has| |#1| (-363))))
+((-2569 (($) 11)) (-3951 (((-3 $ "failed") $) 14)) (-3401 (((-112) $) 10)) (** (($ $ (-917)) NIL) (($ $ (-767)) 19)))
+(((-721 |#1|) (-10 -8 (-15 -3951 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-767))) (-15 -3401 ((-112) |#1|)) (-15 -2569 (|#1|)) (-15 ** (|#1| |#1| (-917)))) (-722)) (T -721))
+NIL
+(-10 -8 (-15 -3951 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-767))) (-15 -3401 ((-112) |#1|)) (-15 -2569 (|#1|)) (-15 ** (|#1| |#1| (-917))))
+((-1677 (((-112) $ $) 7)) (-2569 (($) 18 T CONST)) (-3951 (((-3 $ "failed") $) 15)) (-3401 (((-112) $) 17)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2253 (($) 19 T CONST)) (-1718 (((-112) $ $) 6)) (** (($ $ (-917)) 13) (($ $ (-767)) 16)) (* (($ $ $) 14)))
(((-722) (-140)) (T -722))
-((-2254 (*1 *1) (-4 *1 (-722))) (-4239 (*1 *1) (-4 *1 (-722))) (-3827 (*1 *2 *1) (-12 (-4 *1 (-722)) (-5 *2 (-112)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-722)) (-5 *2 (-767)))) (-3400 (*1 *1 *1) (|partial| -4 *1 (-722))))
-(-13 (-1105) (-10 -8 (-15 (-2254) ($) -2669) (-15 -4239 ($) -2669) (-15 -3827 ((-112) $)) (-15 ** ($ $ (-767))) (-15 -3400 ((-3 $ "failed") $))))
+((-2253 (*1 *1) (-4 *1 (-722))) (-2569 (*1 *1) (-4 *1 (-722))) (-3401 (*1 *2 *1) (-12 (-4 *1 (-722)) (-5 *2 (-112)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-722)) (-5 *2 (-767)))) (-3951 (*1 *1 *1) (|partial| -4 *1 (-722))))
+(-13 (-1105) (-10 -8 (-15 (-2253) ($) -2668) (-15 -2569 ($) -2668) (-15 -3401 ((-112) $)) (-15 ** ($ $ (-767))) (-15 -3951 ((-3 $ "failed") $))))
(((-102) . T) ((-610 (-858)) . T) ((-1105) . T) ((-1093) . T))
-((-2316 (((-2 (|:| -2377 (-418 |#2|)) (|:| |special| (-418 |#2|))) |#2| (-1 |#2| |#2|)) 38)) (-2335 (((-2 (|:| -2377 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-2543 ((|#2| (-407 |#2|) (-1 |#2| |#2|)) 13)) (-2927 (((-2 (|:| |poly| |#2|) (|:| -2377 (-407 |#2|)) (|:| |special| (-407 |#2|))) (-407 |#2|) (-1 |#2| |#2|)) 47)))
-(((-723 |#1| |#2|) (-10 -7 (-15 -2335 ((-2 (|:| -2377 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -2316 ((-2 (|:| -2377 (-418 |#2|)) (|:| |special| (-418 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -2543 (|#2| (-407 |#2|) (-1 |#2| |#2|))) (-15 -2927 ((-2 (|:| |poly| |#2|) (|:| -2377 (-407 |#2|)) (|:| |special| (-407 |#2|))) (-407 |#2|) (-1 |#2| |#2|)))) (-363) (-1233 |#1|)) (T -723))
-((-2927 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| |poly| *6) (|:| -2377 (-407 *6)) (|:| |special| (-407 *6)))) (-5 *1 (-723 *5 *6)) (-5 *3 (-407 *6)))) (-2543 (*1 *2 *3 *4) (-12 (-5 *3 (-407 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1233 *5)) (-5 *1 (-723 *5 *2)) (-4 *5 (-363)))) (-2316 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| -2377 (-418 *3)) (|:| |special| (-418 *3)))) (-5 *1 (-723 *5 *3)))) (-2335 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| -2377 *3) (|:| |special| *3))) (-5 *1 (-723 *5 *3)))))
-(-10 -7 (-15 -2335 ((-2 (|:| -2377 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -2316 ((-2 (|:| -2377 (-418 |#2|)) (|:| |special| (-418 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -2543 (|#2| (-407 |#2|) (-1 |#2| |#2|))) (-15 -2927 ((-2 (|:| |poly| |#2|) (|:| -2377 (-407 |#2|)) (|:| |special| (-407 |#2|))) (-407 |#2|) (-1 |#2| |#2|))))
-((-4256 ((|#7| (-640 |#5|) |#6|) NIL)) (-2240 ((|#7| (-1 |#5| |#4|) |#6|) 26)))
-(((-724 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -2240 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -4256 (|#7| (-640 |#5|) |#6|))) (-846) (-789) (-789) (-1045) (-1045) (-945 |#4| |#2| |#1|) (-945 |#5| |#3| |#1|)) (T -724))
-((-4256 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *9)) (-4 *9 (-1045)) (-4 *5 (-846)) (-4 *6 (-789)) (-4 *8 (-1045)) (-4 *2 (-945 *9 *7 *5)) (-5 *1 (-724 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-789)) (-4 *4 (-945 *8 *6 *5)))) (-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-1045)) (-4 *9 (-1045)) (-4 *5 (-846)) (-4 *6 (-789)) (-4 *2 (-945 *9 *7 *5)) (-5 *1 (-724 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-789)) (-4 *4 (-945 *8 *6 *5)))))
-(-10 -7 (-15 -2240 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -4256 (|#7| (-640 |#5|) |#6|)))
-((-2240 ((|#7| (-1 |#2| |#1|) |#6|) 28)))
-(((-725 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -2240 (|#7| (-1 |#2| |#1|) |#6|))) (-846) (-846) (-789) (-789) (-1045) (-945 |#5| |#3| |#1|) (-945 |#5| |#4| |#2|)) (T -725))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-846)) (-4 *6 (-846)) (-4 *7 (-789)) (-4 *9 (-1045)) (-4 *2 (-945 *9 *8 *6)) (-5 *1 (-725 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-789)) (-4 *4 (-945 *9 *7 *5)))))
-(-10 -7 (-15 -2240 (|#7| (-1 |#2| |#1|) |#6|)))
-((-2174 (((-418 |#4|) |#4|) 41)))
-(((-726 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2174 ((-418 |#4|) |#4|))) (-789) (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $)) (-15 -2518 ((-3 $ "failed") (-1169))))) (-307) (-945 (-948 |#3|) |#1| |#2|)) (T -726))
-((-2174 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $)) (-15 -2518 ((-3 $ "failed") (-1169)))))) (-4 *6 (-307)) (-5 *2 (-418 *3)) (-5 *1 (-726 *4 *5 *6 *3)) (-4 *3 (-945 (-948 *6) *4 *5)))))
-(-10 -7 (-15 -2174 ((-418 |#4|) |#4|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2606 (((-640 (-860 |#1|)) $) NIL)) (-2139 (((-1165 $) $ (-860 |#1|)) NIL) (((-1165 |#2|) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#2| (-555)))) (-4223 (($ $) NIL (|has| |#2| (-555)))) (-3156 (((-112) $) NIL (|has| |#2| (-555)))) (-1779 (((-767) $) NIL) (((-767) $ (-640 (-860 |#1|))) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-4335 (($ $) NIL (|has| |#2| (-452)))) (-3205 (((-418 $) $) NIL (|has| |#2| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-860 |#1|) "failed") $) NIL)) (-2058 ((|#2| $) NIL) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-860 |#1|) $) NIL)) (-2742 (($ $ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-2751 (($ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1300 (($ $) NIL (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-2739 (((-640 $) $) NIL)) (-2468 (((-112) $) NIL (|has| |#2| (-905)))) (-3554 (($ $ |#2| (-531 (-860 |#1|)) $) NIL)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-379))) (|has| |#2| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-563))) (|has| |#2| (-882 (-563)))))) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) NIL)) (-2596 (($ (-1165 |#2|) (-860 |#1|)) NIL) (($ (-1165 $) (-860 |#1|)) NIL)) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-2588 (($ |#2| (-531 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ (-860 |#1|)) NIL)) (-2048 (((-531 (-860 |#1|)) $) NIL) (((-767) $ (-860 |#1|)) NIL) (((-640 (-767)) $ (-640 (-860 |#1|))) NIL)) (-3084 (($ $ $) NIL (|has| |#2| (-846)))) (-1777 (($ $ $) NIL (|has| |#2| (-846)))) (-2803 (($ (-1 (-531 (-860 |#1|)) (-531 (-860 |#1|))) $) NIL)) (-2240 (($ (-1 |#2| |#2|) $) NIL)) (-4234 (((-3 (-860 |#1|) "failed") $) NIL)) (-2716 (($ $) NIL)) (-2726 ((|#2| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-3573 (((-1151) $) NIL)) (-3733 (((-3 (-640 $) "failed") $) NIL)) (-2919 (((-3 (-640 $) "failed") $) NIL)) (-4086 (((-3 (-2 (|:| |var| (-860 |#1|)) (|:| -1654 (-767))) "failed") $) NIL)) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) NIL)) (-2706 ((|#2| $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#2| (-452)))) (-3548 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2174 (((-418 $) $) NIL (|has| |#2| (-905)))) (-3008 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-555)))) (-1540 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-860 |#1|) |#2|) NIL) (($ $ (-640 (-860 |#1|)) (-640 |#2|)) NIL) (($ $ (-860 |#1|) $) NIL) (($ $ (-640 (-860 |#1|)) (-640 $)) NIL)) (-2315 (($ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-4202 (($ $ (-860 |#1|)) NIL) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-4167 (((-531 (-860 |#1|)) $) NIL) (((-767) $ (-860 |#1|)) NIL) (((-640 (-767)) $ (-640 (-860 |#1|))) NIL)) (-2220 (((-888 (-379)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-379)))) (|has| |#2| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-563)))) (|has| |#2| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-860 |#1|) (-611 (-536))) (|has| |#2| (-611 (-536)))))) (-1836 ((|#2| $) NIL (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-905))))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) NIL) (($ (-860 |#1|)) NIL) (($ $) NIL (|has| |#2| (-555))) (($ (-407 (-563))) NIL (-4032 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563))))))) (-1337 (((-640 |#2|) $) NIL)) (-4319 ((|#2| $ (-531 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#2| (-905))) (|has| |#2| (-145))))) (-1675 (((-767)) NIL)) (-2793 (($ $ $ (-767)) NIL (|has| |#2| (-172)))) (-2126 (((-112) $ $) NIL (|has| |#2| (-555)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ (-860 |#1|)) NIL) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-1778 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1837 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#2| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#2| (-38 (-407 (-563))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+((-3413 (((-2 (|:| -2376 (-418 |#2|)) (|:| |special| (-418 |#2|))) |#2| (-1 |#2| |#2|)) 38)) (-1792 (((-2 (|:| -2376 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-3425 ((|#2| (-407 |#2|) (-1 |#2| |#2|)) 13)) (-1913 (((-2 (|:| |poly| |#2|) (|:| -2376 (-407 |#2|)) (|:| |special| (-407 |#2|))) (-407 |#2|) (-1 |#2| |#2|)) 47)))
+(((-723 |#1| |#2|) (-10 -7 (-15 -1792 ((-2 (|:| -2376 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -3413 ((-2 (|:| -2376 (-418 |#2|)) (|:| |special| (-418 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3425 (|#2| (-407 |#2|) (-1 |#2| |#2|))) (-15 -1913 ((-2 (|:| |poly| |#2|) (|:| -2376 (-407 |#2|)) (|:| |special| (-407 |#2|))) (-407 |#2|) (-1 |#2| |#2|)))) (-363) (-1233 |#1|)) (T -723))
+((-1913 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| |poly| *6) (|:| -2376 (-407 *6)) (|:| |special| (-407 *6)))) (-5 *1 (-723 *5 *6)) (-5 *3 (-407 *6)))) (-3425 (*1 *2 *3 *4) (-12 (-5 *3 (-407 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1233 *5)) (-5 *1 (-723 *5 *2)) (-4 *5 (-363)))) (-3413 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| -2376 (-418 *3)) (|:| |special| (-418 *3)))) (-5 *1 (-723 *5 *3)))) (-1792 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-363)) (-5 *2 (-2 (|:| -2376 *3) (|:| |special| *3))) (-5 *1 (-723 *5 *3)))))
+(-10 -7 (-15 -1792 ((-2 (|:| -2376 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -3413 ((-2 (|:| -2376 (-418 |#2|)) (|:| |special| (-418 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3425 (|#2| (-407 |#2|) (-1 |#2| |#2|))) (-15 -1913 ((-2 (|:| |poly| |#2|) (|:| -2376 (-407 |#2|)) (|:| |special| (-407 |#2|))) (-407 |#2|) (-1 |#2| |#2|))))
+((-4258 ((|#7| (-640 |#5|) |#6|) NIL)) (-2238 ((|#7| (-1 |#5| |#4|) |#6|) 26)))
+(((-724 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -2238 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -4258 (|#7| (-640 |#5|) |#6|))) (-846) (-789) (-789) (-1045) (-1045) (-945 |#4| |#2| |#1|) (-945 |#5| |#3| |#1|)) (T -724))
+((-4258 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *9)) (-4 *9 (-1045)) (-4 *5 (-846)) (-4 *6 (-789)) (-4 *8 (-1045)) (-4 *2 (-945 *9 *7 *5)) (-5 *1 (-724 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-789)) (-4 *4 (-945 *8 *6 *5)))) (-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-1045)) (-4 *9 (-1045)) (-4 *5 (-846)) (-4 *6 (-789)) (-4 *2 (-945 *9 *7 *5)) (-5 *1 (-724 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-789)) (-4 *4 (-945 *8 *6 *5)))))
+(-10 -7 (-15 -2238 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -4258 (|#7| (-640 |#5|) |#6|)))
+((-2238 ((|#7| (-1 |#2| |#1|) |#6|) 28)))
+(((-725 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -2238 (|#7| (-1 |#2| |#1|) |#6|))) (-846) (-846) (-789) (-789) (-1045) (-945 |#5| |#3| |#1|) (-945 |#5| |#4| |#2|)) (T -725))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-846)) (-4 *6 (-846)) (-4 *7 (-789)) (-4 *9 (-1045)) (-4 *2 (-945 *9 *8 *6)) (-5 *1 (-725 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-789)) (-4 *4 (-945 *9 *7 *5)))))
+(-10 -7 (-15 -2238 (|#7| (-1 |#2| |#1|) |#6|)))
+((-2173 (((-418 |#4|) |#4|) 41)))
+(((-726 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2173 ((-418 |#4|) |#4|))) (-789) (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $)) (-15 -2517 ((-3 $ "failed") (-1169))))) (-307) (-945 (-948 |#3|) |#1| |#2|)) (T -726))
+((-2173 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $)) (-15 -2517 ((-3 $ "failed") (-1169)))))) (-4 *6 (-307)) (-5 *2 (-418 *3)) (-5 *1 (-726 *4 *5 *6 *3)) (-4 *3 (-945 (-948 *6) *4 *5)))))
+(-10 -7 (-15 -2173 ((-418 |#4|) |#4|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2605 (((-640 (-860 |#1|)) $) NIL)) (-2138 (((-1165 $) $ (-860 |#1|)) NIL) (((-1165 |#2|) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#2| (-555)))) (-3231 (($ $) NIL (|has| |#2| (-555)))) (-3211 (((-112) $) NIL (|has| |#2| (-555)))) (-3897 (((-767) $) NIL) (((-767) $ (-640 (-860 |#1|))) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-1798 (($ $) NIL (|has| |#2| (-452)))) (-2802 (((-418 $) $) NIL (|has| |#2| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-860 |#1|) "failed") $) NIL)) (-2057 ((|#2| $) NIL) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-860 |#1|) $) NIL)) (-1612 (($ $ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-2750 (($ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-4151 (($ $) NIL (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-2738 (((-640 $) $) NIL)) (-2560 (((-112) $) NIL (|has| |#2| (-905)))) (-2159 (($ $ |#2| (-531 (-860 |#1|)) $) NIL)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-379))) (|has| |#2| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-860 |#1|) (-882 (-563))) (|has| |#2| (-882 (-563)))))) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) NIL)) (-2595 (($ (-1165 |#2|) (-860 |#1|)) NIL) (($ (-1165 $) (-860 |#1|)) NIL)) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-2587 (($ |#2| (-531 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ (-860 |#1|)) NIL)) (-3908 (((-531 (-860 |#1|)) $) NIL) (((-767) $ (-860 |#1|)) NIL) (((-640 (-767)) $ (-640 (-860 |#1|))) NIL)) (-3088 (($ $ $) NIL (|has| |#2| (-846)))) (-1776 (($ $ $) NIL (|has| |#2| (-846)))) (-2170 (($ (-1 (-531 (-860 |#1|)) (-531 (-860 |#1|))) $) NIL)) (-2238 (($ (-1 |#2| |#2|) $) NIL)) (-1698 (((-3 (-860 |#1|) "failed") $) NIL)) (-2715 (($ $) NIL)) (-2725 ((|#2| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-3854 (((-1151) $) NIL)) (-3939 (((-3 (-640 $) "failed") $) NIL)) (-3930 (((-3 (-640 $) "failed") $) NIL)) (-3949 (((-3 (-2 (|:| |var| (-860 |#1|)) (|:| -3311 (-767))) "failed") $) NIL)) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) NIL)) (-2705 ((|#2| $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#2| (-452)))) (-3551 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2173 (((-418 $) $) NIL (|has| |#2| (-905)))) (-3012 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-555)))) (-1542 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-860 |#1|) |#2|) NIL) (($ $ (-640 (-860 |#1|)) (-640 |#2|)) NIL) (($ $ (-860 |#1|) $) NIL) (($ $ (-640 (-860 |#1|)) (-640 $)) NIL)) (-1623 (($ $ (-860 |#1|)) NIL (|has| |#2| (-172)))) (-4203 (($ $ (-860 |#1|)) NIL) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-3871 (((-531 (-860 |#1|)) $) NIL) (((-767) $ (-860 |#1|)) NIL) (((-640 (-767)) $ (-640 (-860 |#1|))) NIL)) (-2219 (((-888 (-379)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-379)))) (|has| |#2| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-860 |#1|) (-611 (-888 (-563)))) (|has| |#2| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-860 |#1|) (-611 (-536))) (|has| |#2| (-611 (-536)))))) (-3885 ((|#2| $) NIL (|has| |#2| (-452))) (($ $ (-860 |#1|)) NIL (|has| |#2| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-905))))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) NIL) (($ (-860 |#1|)) NIL) (($ $) NIL (|has| |#2| (-555))) (($ (-407 (-563))) NIL (-4034 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563))))))) (-3955 (((-640 |#2|) $) NIL)) (-3244 ((|#2| $ (-531 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#2| (-905))) (|has| |#2| (-145))))) (-3914 (((-767)) NIL)) (-2148 (($ $ $ (-767)) NIL (|has| |#2| (-172)))) (-3223 (((-112) $ $) NIL (|has| |#2| (-555)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-860 |#1|)) NIL) (($ $ (-640 (-860 |#1|))) NIL) (($ $ (-860 |#1|) (-767)) NIL) (($ $ (-640 (-860 |#1|)) (-640 (-767))) NIL)) (-1779 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1836 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#2| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#2| (-38 (-407 (-563))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
(((-727 |#1| |#2|) (-945 |#2| (-531 (-860 |#1|)) (-860 |#1|)) (-640 (-1169)) (-1045)) (T -727))
NIL
(-945 |#2| (-531 (-860 |#1|)) (-860 |#1|))
-((-1411 (((-2 (|:| -1901 (-948 |#3|)) (|:| -3388 (-948 |#3|))) |#4|) 14)) (-2386 ((|#4| |#4| |#2|) 33)) (-4171 ((|#4| (-407 (-948 |#3|)) |#2|) 64)) (-4358 ((|#4| (-1165 (-948 |#3|)) |#2|) 77)) (-4290 ((|#4| (-1165 |#4|) |#2|) 51)) (-2900 ((|#4| |#4| |#2|) 54)) (-2174 (((-418 |#4|) |#4|) 40)))
-(((-728 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1411 ((-2 (|:| -1901 (-948 |#3|)) (|:| -3388 (-948 |#3|))) |#4|)) (-15 -2900 (|#4| |#4| |#2|)) (-15 -4290 (|#4| (-1165 |#4|) |#2|)) (-15 -2386 (|#4| |#4| |#2|)) (-15 -4358 (|#4| (-1165 (-948 |#3|)) |#2|)) (-15 -4171 (|#4| (-407 (-948 |#3|)) |#2|)) (-15 -2174 ((-418 |#4|) |#4|))) (-789) (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $)))) (-555) (-945 (-407 (-948 |#3|)) |#1| |#2|)) (T -728))
-((-2174 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $))))) (-4 *6 (-555)) (-5 *2 (-418 *3)) (-5 *1 (-728 *4 *5 *6 *3)) (-4 *3 (-945 (-407 (-948 *6)) *4 *5)))) (-4171 (*1 *2 *3 *4) (-12 (-4 *6 (-555)) (-4 *2 (-945 *3 *5 *4)) (-5 *1 (-728 *5 *4 *6 *2)) (-5 *3 (-407 (-948 *6))) (-4 *5 (-789)) (-4 *4 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $))))))) (-4358 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 (-948 *6))) (-4 *6 (-555)) (-4 *2 (-945 (-407 (-948 *6)) *5 *4)) (-5 *1 (-728 *5 *4 *6 *2)) (-4 *5 (-789)) (-4 *4 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $))))))) (-2386 (*1 *2 *2 *3) (-12 (-4 *4 (-789)) (-4 *3 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $))))) (-4 *5 (-555)) (-5 *1 (-728 *4 *3 *5 *2)) (-4 *2 (-945 (-407 (-948 *5)) *4 *3)))) (-4290 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 *2)) (-4 *2 (-945 (-407 (-948 *6)) *5 *4)) (-5 *1 (-728 *5 *4 *6 *2)) (-4 *5 (-789)) (-4 *4 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $))))) (-4 *6 (-555)))) (-2900 (*1 *2 *2 *3) (-12 (-4 *4 (-789)) (-4 *3 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $))))) (-4 *5 (-555)) (-5 *1 (-728 *4 *3 *5 *2)) (-4 *2 (-945 (-407 (-948 *5)) *4 *3)))) (-1411 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $))))) (-4 *6 (-555)) (-5 *2 (-2 (|:| -1901 (-948 *6)) (|:| -3388 (-948 *6)))) (-5 *1 (-728 *4 *5 *6 *3)) (-4 *3 (-945 (-407 (-948 *6)) *4 *5)))))
-(-10 -7 (-15 -1411 ((-2 (|:| -1901 (-948 |#3|)) (|:| -3388 (-948 |#3|))) |#4|)) (-15 -2900 (|#4| |#4| |#2|)) (-15 -4290 (|#4| (-1165 |#4|) |#2|)) (-15 -2386 (|#4| |#4| |#2|)) (-15 -4358 (|#4| (-1165 (-948 |#3|)) |#2|)) (-15 -4171 (|#4| (-407 (-948 |#3|)) |#2|)) (-15 -2174 ((-418 |#4|) |#4|)))
-((-2174 (((-418 |#4|) |#4|) 52)))
-(((-729 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2174 ((-418 |#4|) |#4|))) (-789) (-846) (-13 (-307) (-147)) (-945 (-407 |#3|) |#1| |#2|)) (T -729))
-((-2174 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-13 (-307) (-147))) (-5 *2 (-418 *3)) (-5 *1 (-729 *4 *5 *6 *3)) (-4 *3 (-945 (-407 *6) *4 *5)))))
-(-10 -7 (-15 -2174 ((-418 |#4|) |#4|)))
-((-2240 (((-731 |#2| |#3|) (-1 |#2| |#1|) (-731 |#1| |#3|)) 18)))
-(((-730 |#1| |#2| |#3|) (-10 -7 (-15 -2240 ((-731 |#2| |#3|) (-1 |#2| |#1|) (-731 |#1| |#3|)))) (-1045) (-1045) (-722)) (T -730))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-731 *5 *7)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-4 *7 (-722)) (-5 *2 (-731 *6 *7)) (-5 *1 (-730 *5 *6 *7)))))
-(-10 -7 (-15 -2240 ((-731 |#2| |#3|) (-1 |#2| |#1|) (-731 |#1| |#3|))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 28)) (-1539 (((-640 (-2 (|:| -2311 |#1|) (|:| -4222 |#2|))) $) 29)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3749 (((-767)) 20 (-12 (|has| |#2| (-368)) (|has| |#1| (-368))))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#2| "failed") $) 57) (((-3 |#1| "failed") $) 60)) (-2058 ((|#2| $) NIL) ((|#1| $) NIL)) (-2751 (($ $) 79 (|has| |#2| (-846)))) (-3400 (((-3 $ "failed") $) 65)) (-1691 (($) 35 (-12 (|has| |#2| (-368)) (|has| |#1| (-368))))) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) 55)) (-1368 (((-640 $) $) 39)) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| |#2|) 16)) (-2240 (($ (-1 |#1| |#1|) $) 54)) (-1476 (((-917) $) 32 (-12 (|has| |#2| (-368)) (|has| |#1| (-368))))) (-2716 ((|#2| $) 78 (|has| |#2| (-846)))) (-2726 ((|#1| $) 77 (|has| |#2| (-846)))) (-3573 (((-1151) $) NIL)) (-2555 (($ (-917)) 27 (-12 (|has| |#2| (-368)) (|has| |#1| (-368))))) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 76) (($ (-563)) 45) (($ |#2|) 42) (($ |#1|) 43) (($ (-640 (-2 (|:| -2311 |#1|) (|:| -4222 |#2|)))) 11)) (-1337 (((-640 |#1|) $) 41)) (-4319 ((|#1| $ |#2|) 87)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) NIL)) (-2241 (($) 12 T CONST)) (-2254 (($) 33 T CONST)) (-1718 (((-112) $ $) 80)) (-1826 (($ $) 47) (($ $ $) NIL)) (-1814 (($ $ $) 26)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 52) (($ $ $) 89) (($ |#1| $) 49 (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
-(((-731 |#1| |#2|) (-13 (-1045) (-1034 |#2|) (-1034 |#1|) (-10 -8 (-15 -2588 ($ |#1| |#2|)) (-15 -4319 (|#1| $ |#2|)) (-15 -1693 ($ (-640 (-2 (|:| -2311 |#1|) (|:| -4222 |#2|))))) (-15 -1539 ((-640 (-2 (|:| -2311 |#1|) (|:| -4222 |#2|))) $)) (-15 -2240 ($ (-1 |#1| |#1|) $)) (-15 -3920 ((-112) $)) (-15 -1337 ((-640 |#1|) $)) (-15 -1368 ((-640 $) $)) (-15 -4096 ((-767) $)) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-368)) (IF (|has| |#2| (-368)) (-6 (-368)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-846)) (PROGN (-15 -2716 (|#2| $)) (-15 -2726 (|#1| $)) (-15 -2751 ($ $))) |%noBranch|))) (-1045) (-722)) (T -731))
-((-2588 (*1 *1 *2 *3) (-12 (-5 *1 (-731 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-722)))) (-4319 (*1 *2 *1 *3) (-12 (-4 *2 (-1045)) (-5 *1 (-731 *2 *3)) (-4 *3 (-722)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| -2311 *3) (|:| -4222 *4)))) (-4 *3 (-1045)) (-4 *4 (-722)) (-5 *1 (-731 *3 *4)))) (-1539 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| -2311 *3) (|:| -4222 *4)))) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-722)))) (-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-731 *3 *4)) (-4 *4 (-722)))) (-3920 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-722)))) (-1337 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-722)))) (-1368 (*1 *2 *1) (-12 (-5 *2 (-640 (-731 *3 *4))) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-722)))) (-4096 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-722)))) (-2716 (*1 *2 *1) (-12 (-4 *2 (-722)) (-4 *2 (-846)) (-5 *1 (-731 *3 *2)) (-4 *3 (-1045)))) (-2726 (*1 *2 *1) (-12 (-4 *2 (-1045)) (-5 *1 (-731 *2 *3)) (-4 *3 (-846)) (-4 *3 (-722)))) (-2751 (*1 *1 *1) (-12 (-5 *1 (-731 *2 *3)) (-4 *3 (-846)) (-4 *2 (-1045)) (-4 *3 (-722)))))
-(-13 (-1045) (-1034 |#2|) (-1034 |#1|) (-10 -8 (-15 -2588 ($ |#1| |#2|)) (-15 -4319 (|#1| $ |#2|)) (-15 -1693 ($ (-640 (-2 (|:| -2311 |#1|) (|:| -4222 |#2|))))) (-15 -1539 ((-640 (-2 (|:| -2311 |#1|) (|:| -4222 |#2|))) $)) (-15 -2240 ($ (-1 |#1| |#1|) $)) (-15 -3920 ((-112) $)) (-15 -1337 ((-640 |#1|) $)) (-15 -1368 ((-640 $) $)) (-15 -4096 ((-767) $)) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-368)) (IF (|has| |#2| (-368)) (-6 (-368)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-846)) (PROGN (-15 -2716 (|#2| $)) (-15 -2726 (|#1| $)) (-15 -2751 ($ $))) |%noBranch|)))
-((-1677 (((-112) $ $) 19)) (-2583 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-4314 (($ $ $) 72)) (-4149 (((-112) $ $) 73)) (-2759 (((-112) $ (-767)) 8)) (-1584 (($ (-640 |#1|)) 68) (($) 67)) (-2812 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4407)))) (-4239 (($) 7 T CONST)) (-4005 (($ $) 62)) (-3813 (($ $) 58 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-2705 (($ |#1| $) 47 (|has| $ (-6 -4407))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4407)))) (-1459 (($ |#1| $) 57 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4407)))) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2539 (((-112) $ $) 64)) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22)) (-2550 (($ $ $) 69)) (-2964 ((|#1| $) 39)) (-1812 (($ |#1| $) 40) (($ |#1| $ (-767)) 63)) (-1694 (((-1113) $) 21)) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3755 ((|#1| $) 41)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2757 (((-640 (-2 (|:| -2557 |#1|) (|:| -1709 (-767)))) $) 61)) (-1629 (($ $ |#1|) 71) (($ $ $) 70)) (-3890 (($) 49) (($ (-640 |#1|)) 48)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-2220 (((-536) $) 59 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 50)) (-1693 (((-858) $) 18)) (-2534 (($ (-640 |#1|)) 66) (($) 65)) (-2233 (($ (-640 |#1|)) 42)) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20)) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-3438 (((-2 (|:| -4092 (-948 |#3|)) (|:| -1315 (-948 |#3|))) |#4|) 14)) (-3131 ((|#4| |#4| |#2|) 33)) (-3471 ((|#4| (-407 (-948 |#3|)) |#2|) 64)) (-3460 ((|#4| (-1165 (-948 |#3|)) |#2|) 77)) (-3449 ((|#4| (-1165 |#4|) |#2|) 51)) (-3120 ((|#4| |#4| |#2|) 54)) (-2173 (((-418 |#4|) |#4|) 40)))
+(((-728 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3438 ((-2 (|:| -4092 (-948 |#3|)) (|:| -1315 (-948 |#3|))) |#4|)) (-15 -3120 (|#4| |#4| |#2|)) (-15 -3449 (|#4| (-1165 |#4|) |#2|)) (-15 -3131 (|#4| |#4| |#2|)) (-15 -3460 (|#4| (-1165 (-948 |#3|)) |#2|)) (-15 -3471 (|#4| (-407 (-948 |#3|)) |#2|)) (-15 -2173 ((-418 |#4|) |#4|))) (-789) (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $)))) (-555) (-945 (-407 (-948 |#3|)) |#1| |#2|)) (T -728))
+((-2173 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $))))) (-4 *6 (-555)) (-5 *2 (-418 *3)) (-5 *1 (-728 *4 *5 *6 *3)) (-4 *3 (-945 (-407 (-948 *6)) *4 *5)))) (-3471 (*1 *2 *3 *4) (-12 (-4 *6 (-555)) (-4 *2 (-945 *3 *5 *4)) (-5 *1 (-728 *5 *4 *6 *2)) (-5 *3 (-407 (-948 *6))) (-4 *5 (-789)) (-4 *4 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $))))))) (-3460 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 (-948 *6))) (-4 *6 (-555)) (-4 *2 (-945 (-407 (-948 *6)) *5 *4)) (-5 *1 (-728 *5 *4 *6 *2)) (-4 *5 (-789)) (-4 *4 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $))))))) (-3131 (*1 *2 *2 *3) (-12 (-4 *4 (-789)) (-4 *3 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $))))) (-4 *5 (-555)) (-5 *1 (-728 *4 *3 *5 *2)) (-4 *2 (-945 (-407 (-948 *5)) *4 *3)))) (-3449 (*1 *2 *3 *4) (-12 (-5 *3 (-1165 *2)) (-4 *2 (-945 (-407 (-948 *6)) *5 *4)) (-5 *1 (-728 *5 *4 *6 *2)) (-4 *5 (-789)) (-4 *4 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $))))) (-4 *6 (-555)))) (-3120 (*1 *2 *2 *3) (-12 (-4 *4 (-789)) (-4 *3 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $))))) (-4 *5 (-555)) (-5 *1 (-728 *4 *3 *5 *2)) (-4 *2 (-945 (-407 (-948 *5)) *4 *3)))) (-3438 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $))))) (-4 *6 (-555)) (-5 *2 (-2 (|:| -4092 (-948 *6)) (|:| -1315 (-948 *6)))) (-5 *1 (-728 *4 *5 *6 *3)) (-4 *3 (-945 (-407 (-948 *6)) *4 *5)))))
+(-10 -7 (-15 -3438 ((-2 (|:| -4092 (-948 |#3|)) (|:| -1315 (-948 |#3|))) |#4|)) (-15 -3120 (|#4| |#4| |#2|)) (-15 -3449 (|#4| (-1165 |#4|) |#2|)) (-15 -3131 (|#4| |#4| |#2|)) (-15 -3460 (|#4| (-1165 (-948 |#3|)) |#2|)) (-15 -3471 (|#4| (-407 (-948 |#3|)) |#2|)) (-15 -2173 ((-418 |#4|) |#4|)))
+((-2173 (((-418 |#4|) |#4|) 52)))
+(((-729 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2173 ((-418 |#4|) |#4|))) (-789) (-846) (-13 (-307) (-147)) (-945 (-407 |#3|) |#1| |#2|)) (T -729))
+((-2173 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-13 (-307) (-147))) (-5 *2 (-418 *3)) (-5 *1 (-729 *4 *5 *6 *3)) (-4 *3 (-945 (-407 *6) *4 *5)))))
+(-10 -7 (-15 -2173 ((-418 |#4|) |#4|)))
+((-2238 (((-731 |#2| |#3|) (-1 |#2| |#1|) (-731 |#1| |#3|)) 18)))
+(((-730 |#1| |#2| |#3|) (-10 -7 (-15 -2238 ((-731 |#2| |#3|) (-1 |#2| |#1|) (-731 |#1| |#3|)))) (-1045) (-1045) (-722)) (T -730))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-731 *5 *7)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-4 *7 (-722)) (-5 *2 (-731 *6 *7)) (-5 *1 (-730 *5 *6 *7)))))
+(-10 -7 (-15 -2238 ((-731 |#2| |#3|) (-1 |#2| |#1|) (-731 |#1| |#3|))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 28)) (-1787 (((-640 (-2 (|:| -2310 |#1|) (|:| -4223 |#2|))) $) 29)) (-3905 (((-3 $ "failed") $ $) NIL)) (-3750 (((-767)) 20 (-12 (|has| |#2| (-368)) (|has| |#1| (-368))))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#2| "failed") $) 58) (((-3 |#1| "failed") $) 61)) (-2057 ((|#2| $) NIL) ((|#1| $) NIL)) (-2750 (($ $) 81 (|has| |#2| (-846)))) (-3951 (((-3 $ "failed") $) 66)) (-1690 (($) 35 (-12 (|has| |#2| (-368)) (|has| |#1| (-368))))) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) 55)) (-3919 (((-640 $) $) 39)) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| |#2|) 16)) (-2238 (($ (-1 |#1| |#1|) $) 54)) (-3990 (((-917) $) 32 (-12 (|has| |#2| (-368)) (|has| |#1| (-368))))) (-2715 ((|#2| $) 80 (|has| |#2| (-846)))) (-2725 ((|#1| $) 79 (|has| |#2| (-846)))) (-3854 (((-1151) $) NIL)) (-2552 (($ (-917)) 27 (-12 (|has| |#2| (-368)) (|has| |#1| (-368))))) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 78) (($ (-563)) 45) (($ |#2|) 42) (($ |#1|) 43) (($ (-640 (-2 (|:| -2310 |#1|) (|:| -4223 |#2|)))) 11)) (-3955 (((-640 |#1|) $) 41)) (-3244 ((|#1| $ |#2|) 89)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) NIL)) (-2239 (($) 12 T CONST)) (-2253 (($) 33 T CONST)) (-1718 (((-112) $ $) 82)) (-1825 (($ $) 47) (($ $ $) NIL)) (-1813 (($ $ $) 26)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 52) (($ $ $) 91) (($ |#1| $) 49 (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
+(((-731 |#1| |#2|) (-13 (-1045) (-1034 |#2|) (-1034 |#1|) (-10 -8 (-15 -2587 ($ |#1| |#2|)) (-15 -3244 (|#1| $ |#2|)) (-15 -1692 ($ (-640 (-2 (|:| -2310 |#1|) (|:| -4223 |#2|))))) (-15 -1787 ((-640 (-2 (|:| -2310 |#1|) (|:| -4223 |#2|))) $)) (-15 -2238 ($ (-1 |#1| |#1|) $)) (-15 -3805 ((-112) $)) (-15 -3955 ((-640 |#1|) $)) (-15 -3919 ((-640 $) $)) (-15 -3481 ((-767) $)) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-368)) (IF (|has| |#2| (-368)) (-6 (-368)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-846)) (PROGN (-15 -2715 (|#2| $)) (-15 -2725 (|#1| $)) (-15 -2750 ($ $))) |%noBranch|))) (-1045) (-722)) (T -731))
+((-2587 (*1 *1 *2 *3) (-12 (-5 *1 (-731 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-722)))) (-3244 (*1 *2 *1 *3) (-12 (-4 *2 (-1045)) (-5 *1 (-731 *2 *3)) (-4 *3 (-722)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| -2310 *3) (|:| -4223 *4)))) (-4 *3 (-1045)) (-4 *4 (-722)) (-5 *1 (-731 *3 *4)))) (-1787 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| -2310 *3) (|:| -4223 *4)))) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-722)))) (-2238 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-731 *3 *4)) (-4 *4 (-722)))) (-3805 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-722)))) (-3955 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-722)))) (-3919 (*1 *2 *1) (-12 (-5 *2 (-640 (-731 *3 *4))) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-722)))) (-3481 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-722)))) (-2715 (*1 *2 *1) (-12 (-4 *2 (-722)) (-4 *2 (-846)) (-5 *1 (-731 *3 *2)) (-4 *3 (-1045)))) (-2725 (*1 *2 *1) (-12 (-4 *2 (-1045)) (-5 *1 (-731 *2 *3)) (-4 *3 (-846)) (-4 *3 (-722)))) (-2750 (*1 *1 *1) (-12 (-5 *1 (-731 *2 *3)) (-4 *3 (-846)) (-4 *2 (-1045)) (-4 *3 (-722)))))
+(-13 (-1045) (-1034 |#2|) (-1034 |#1|) (-10 -8 (-15 -2587 ($ |#1| |#2|)) (-15 -3244 (|#1| $ |#2|)) (-15 -1692 ($ (-640 (-2 (|:| -2310 |#1|) (|:| -4223 |#2|))))) (-15 -1787 ((-640 (-2 (|:| -2310 |#1|) (|:| -4223 |#2|))) $)) (-15 -2238 ($ (-1 |#1| |#1|) $)) (-15 -3805 ((-112) $)) (-15 -3955 ((-640 |#1|) $)) (-15 -3919 ((-640 $) $)) (-15 -3481 ((-767) $)) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-368)) (IF (|has| |#2| (-368)) (-6 (-368)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-846)) (PROGN (-15 -2715 (|#2| $)) (-15 -2725 (|#1| $)) (-15 -2750 ($ $))) |%noBranch|)))
+((-1677 (((-112) $ $) 19)) (-2582 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-3816 (($ $ $) 72)) (-3804 (((-112) $ $) 73)) (-3001 (((-112) $ (-767)) 8)) (-1582 (($ (-640 |#1|)) 68) (($) 67)) (-3678 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4408)))) (-2569 (($) 7 T CONST)) (-4194 (($ $) 62)) (-3814 (($ $) 58 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1691 (($ |#1| $) 47 (|has| $ (-6 -4408))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4408)))) (-1459 (($ |#1| $) 57 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4408)))) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-3845 (((-112) $ $) 64)) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22)) (-3834 (($ $ $) 69)) (-2627 ((|#1| $) 39)) (-3867 (($ |#1| $) 40) (($ |#1| $ (-767)) 63)) (-1693 (((-1113) $) 21)) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-2808 ((|#1| $) 41)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-4182 (((-640 (-2 (|:| -2556 |#1|) (|:| -1708 (-767)))) $) 61)) (-3827 (($ $ |#1|) 71) (($ $ $) 70)) (-3863 (($) 49) (($ (-640 |#1|)) 48)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-2219 (((-536) $) 59 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 50)) (-1692 (((-858) $) 18)) (-2533 (($ (-640 |#1|)) 66) (($) 65)) (-2820 (($ (-640 |#1|)) 42)) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20)) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-732 |#1|) (-140) (-1093)) (T -732))
NIL
(-13 (-690 |t#1|) (-1091 |t#1|))
(((-34) . T) ((-107 |#1|) . T) ((-102) . T) ((-610 (-858)) . T) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-235 |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-690 |#1|) . T) ((-1091 |#1|) . T) ((-1093) . T) ((-1208) . T))
-((-1677 (((-112) $ $) NIL)) (-2583 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 74)) (-4314 (($ $ $) 77)) (-4149 (((-112) $ $) 81)) (-2759 (((-112) $ (-767)) NIL)) (-1584 (($ (-640 |#1|)) 24) (($) 16)) (-2812 (($ (-1 (-112) |#1|) $) 68 (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-4005 (($ $) 69)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2705 (($ |#1| $) 59 (|has| $ (-6 -4407))) (($ (-1 (-112) |#1|) $) 63 (|has| $ (-6 -4407))) (($ |#1| $ (-563)) 61) (($ (-1 (-112) |#1|) $ (-563)) 64)) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (($ |#1| $ (-563)) 66) (($ (-1 (-112) |#1|) $ (-563)) 67)) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4407)))) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2539 (((-112) $ $) 80)) (-4224 (($) 14) (($ |#1|) 26) (($ (-640 |#1|)) 21)) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#1|) $) 36)) (-1729 (((-112) |#1| $) 56 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-4345 (($ (-1 |#1| |#1|) $) 72 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 73)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-2550 (($ $ $) 75)) (-2964 ((|#1| $) 53)) (-1812 (($ |#1| $) 54) (($ |#1| $ (-767)) 70)) (-1694 (((-1113) $) NIL)) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3755 ((|#1| $) 52)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) 48)) (-3135 (($) 13)) (-2757 (((-640 (-2 (|:| -2557 |#1|) (|:| -1709 (-767)))) $) 46)) (-1629 (($ $ |#1|) NIL) (($ $ $) 76)) (-3890 (($) 15) (($ (-640 |#1|)) 23)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) 58 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) 65)) (-2220 (((-536) $) 34 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 20)) (-1693 (((-858) $) 42)) (-2534 (($ (-640 |#1|)) 25) (($) 17)) (-2233 (($ (-640 |#1|)) 22)) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 79)) (-3608 (((-767) $) 57 (|has| $ (-6 -4407)))))
-(((-733 |#1|) (-13 (-732 |#1|) (-10 -8 (-6 -4407) (-6 -4408) (-15 -4224 ($)) (-15 -4224 ($ |#1|)) (-15 -4224 ($ (-640 |#1|))) (-15 -2259 ((-640 |#1|) $)) (-15 -1459 ($ |#1| $ (-563))) (-15 -1459 ($ (-1 (-112) |#1|) $ (-563))) (-15 -2705 ($ |#1| $ (-563))) (-15 -2705 ($ (-1 (-112) |#1|) $ (-563))))) (-1093)) (T -733))
-((-4224 (*1 *1) (-12 (-5 *1 (-733 *2)) (-4 *2 (-1093)))) (-4224 (*1 *1 *2) (-12 (-5 *1 (-733 *2)) (-4 *2 (-1093)))) (-4224 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-733 *3)))) (-2259 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-733 *3)) (-4 *3 (-1093)))) (-1459 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-733 *2)) (-4 *2 (-1093)))) (-1459 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-563)) (-4 *4 (-1093)) (-5 *1 (-733 *4)))) (-2705 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-733 *2)) (-4 *2 (-1093)))) (-2705 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-563)) (-4 *4 (-1093)) (-5 *1 (-733 *4)))))
-(-13 (-732 |#1|) (-10 -8 (-6 -4407) (-6 -4408) (-15 -4224 ($)) (-15 -4224 ($ |#1|)) (-15 -4224 ($ (-640 |#1|))) (-15 -2259 ((-640 |#1|) $)) (-15 -1459 ($ |#1| $ (-563))) (-15 -1459 ($ (-1 (-112) |#1|) $ (-563))) (-15 -2705 ($ |#1| $ (-563))) (-15 -2705 ($ (-1 (-112) |#1|) $ (-563)))))
+((-1677 (((-112) $ $) NIL)) (-2582 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 74)) (-3816 (($ $ $) 77)) (-3804 (((-112) $ $) 81)) (-3001 (((-112) $ (-767)) NIL)) (-1582 (($ (-640 |#1|)) 24) (($) 16)) (-3678 (($ (-1 (-112) |#1|) $) 68 (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-4194 (($ $) 69)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1691 (($ |#1| $) 59 (|has| $ (-6 -4408))) (($ (-1 (-112) |#1|) $) 63 (|has| $ (-6 -4408))) (($ |#1| $ (-563)) 61) (($ (-1 (-112) |#1|) $ (-563)) 64)) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (($ |#1| $ (-563)) 66) (($ (-1 (-112) |#1|) $ (-563)) 67)) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-3845 (((-112) $ $) 80)) (-3491 (($) 14) (($ |#1|) 26) (($ (-640 |#1|)) 21)) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#1|) $) 36)) (-2667 (((-112) |#1| $) 56 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4347 (($ (-1 |#1| |#1|) $) 72 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 73)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-3834 (($ $ $) 75)) (-2627 ((|#1| $) 53)) (-3867 (($ |#1| $) 54) (($ |#1| $ (-767)) 70)) (-1693 (((-1113) $) NIL)) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2808 ((|#1| $) 52)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) 48)) (-3445 (($) 13)) (-4182 (((-640 (-2 (|:| -2556 |#1|) (|:| -1708 (-767)))) $) 46)) (-3827 (($ $ |#1|) NIL) (($ $ $) 76)) (-3863 (($) 15) (($ (-640 |#1|)) 23)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) 58 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) 65)) (-2219 (((-536) $) 34 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 20)) (-1692 (((-858) $) 42)) (-2533 (($ (-640 |#1|)) 25) (($) 17)) (-2820 (($ (-640 |#1|)) 22)) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 79)) (-3610 (((-767) $) 57 (|has| $ (-6 -4408)))))
+(((-733 |#1|) (-13 (-732 |#1|) (-10 -8 (-6 -4408) (-6 -4409) (-15 -3491 ($)) (-15 -3491 ($ |#1|)) (-15 -3491 ($ (-640 |#1|))) (-15 -3523 ((-640 |#1|) $)) (-15 -1459 ($ |#1| $ (-563))) (-15 -1459 ($ (-1 (-112) |#1|) $ (-563))) (-15 -1691 ($ |#1| $ (-563))) (-15 -1691 ($ (-1 (-112) |#1|) $ (-563))))) (-1093)) (T -733))
+((-3491 (*1 *1) (-12 (-5 *1 (-733 *2)) (-4 *2 (-1093)))) (-3491 (*1 *1 *2) (-12 (-5 *1 (-733 *2)) (-4 *2 (-1093)))) (-3491 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-733 *3)))) (-3523 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-733 *3)) (-4 *3 (-1093)))) (-1459 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-733 *2)) (-4 *2 (-1093)))) (-1459 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-563)) (-4 *4 (-1093)) (-5 *1 (-733 *4)))) (-1691 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-733 *2)) (-4 *2 (-1093)))) (-1691 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-563)) (-4 *4 (-1093)) (-5 *1 (-733 *4)))))
+(-13 (-732 |#1|) (-10 -8 (-6 -4408) (-6 -4409) (-15 -3491 ($)) (-15 -3491 ($ |#1|)) (-15 -3491 ($ (-640 |#1|))) (-15 -3523 ((-640 |#1|) $)) (-15 -1459 ($ |#1| $ (-563))) (-15 -1459 ($ (-1 (-112) |#1|) $ (-563))) (-15 -1691 ($ |#1| $ (-563))) (-15 -1691 ($ (-1 (-112) |#1|) $ (-563)))))
((-2346 (((-1262) (-1151)) 8)))
(((-734) (-10 -7 (-15 -2346 ((-1262) (-1151))))) (T -734))
((-2346 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-734)))))
(-10 -7 (-15 -2346 ((-1262) (-1151))))
-((-1999 (((-640 |#1|) (-640 |#1|) (-640 |#1|)) 10)))
-(((-735 |#1|) (-10 -7 (-15 -1999 ((-640 |#1|) (-640 |#1|) (-640 |#1|)))) (-846)) (T -735))
-((-1999 (*1 *2 *2 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-735 *3)))))
-(-10 -7 (-15 -1999 ((-640 |#1|) (-640 |#1|) (-640 |#1|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-2606 (((-640 |#2|) $) 139)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 132 (|has| |#1| (-555)))) (-4223 (($ $) 131 (|has| |#1| (-555)))) (-3156 (((-112) $) 129 (|has| |#1| (-555)))) (-1771 (($ $) 88 (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) 71 (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) 19)) (-2186 (($ $) 70 (|has| |#1| (-38 (-407 (-563)))))) (-1748 (($ $) 87 (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) 72 (|has| |#1| (-38 (-407 (-563)))))) (-1794 (($ $) 86 (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) 73 (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) 17 T CONST)) (-2751 (($ $) 123)) (-3400 (((-3 $ "failed") $) 33)) (-3619 (((-948 |#1|) $ (-767)) 101) (((-948 |#1|) $ (-767) (-767)) 100)) (-2788 (((-112) $) 140)) (-2180 (($) 98 (|has| |#1| (-38 (-407 (-563)))))) (-3254 (((-767) $ |#2|) 103) (((-767) $ |#2| (-767)) 102)) (-3827 (((-112) $) 31)) (-1645 (($ $ (-563)) 69 (|has| |#1| (-38 (-407 (-563)))))) (-3920 (((-112) $) 121)) (-2588 (($ $ (-640 |#2|) (-640 (-531 |#2|))) 138) (($ $ |#2| (-531 |#2|)) 137) (($ |#1| (-531 |#2|)) 122) (($ $ |#2| (-767)) 105) (($ $ (-640 |#2|) (-640 (-767))) 104)) (-2240 (($ (-1 |#1| |#1|) $) 120)) (-4371 (($ $) 95 (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) 118)) (-2726 ((|#1| $) 117)) (-3573 (((-1151) $) 9)) (-3698 (($ $ |#2|) 99 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (((-1113) $) 10)) (-3320 (($ $ (-767)) 106)) (-3008 (((-3 $ "failed") $ $) 133 (|has| |#1| (-555)))) (-3368 (($ $) 96 (|has| |#1| (-38 (-407 (-563)))))) (-1540 (($ $ |#2| $) 114) (($ $ (-640 |#2|) (-640 $)) 113) (($ $ (-640 (-294 $))) 112) (($ $ (-294 $)) 111) (($ $ $ $) 110) (($ $ (-640 $) (-640 $)) 109)) (-4202 (($ $ |#2|) 42) (($ $ (-640 |#2|)) 41) (($ $ |#2| (-767)) 40) (($ $ (-640 |#2|) (-640 (-767))) 39)) (-4167 (((-531 |#2|) $) 119)) (-1806 (($ $) 85 (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) 74 (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) 84 (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) 75 (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) 83 (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) 76 (|has| |#1| (-38 (-407 (-563)))))) (-1741 (($ $) 141)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 136 (|has| |#1| (-172))) (($ $) 134 (|has| |#1| (-555))) (($ (-407 (-563))) 126 (|has| |#1| (-38 (-407 (-563)))))) (-4319 ((|#1| $ (-531 |#2|)) 124) (($ $ |#2| (-767)) 108) (($ $ (-640 |#2|) (-640 (-767))) 107)) (-2779 (((-3 $ "failed") $) 135 (|has| |#1| (-145)))) (-1675 (((-767)) 28)) (-1840 (($ $) 94 (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) 82 (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) 130 (|has| |#1| (-555)))) (-1817 (($ $) 93 (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) 81 (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) 92 (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) 80 (|has| |#1| (-38 (-407 (-563)))))) (-1311 (($ $) 91 (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) 79 (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) 90 (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) 78 (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) 89 (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) 77 (|has| |#1| (-38 (-407 (-563)))))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ |#2|) 38) (($ $ (-640 |#2|)) 37) (($ $ |#2| (-767)) 36) (($ $ (-640 |#2|) (-640 (-767))) 35)) (-1718 (((-112) $ $) 6)) (-1837 (($ $ |#1|) 125 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ $) 97 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 68 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 128 (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) 127 (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 116) (($ $ |#1|) 115)))
+((-3502 (((-640 |#1|) (-640 |#1|) (-640 |#1|)) 10)))
+(((-735 |#1|) (-10 -7 (-15 -3502 ((-640 |#1|) (-640 |#1|) (-640 |#1|)))) (-846)) (T -735))
+((-3502 (*1 *2 *2 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-735 *3)))))
+(-10 -7 (-15 -3502 ((-640 |#1|) (-640 |#1|) (-640 |#1|))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-2605 (((-640 |#2|) $) 139)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 132 (|has| |#1| (-555)))) (-3231 (($ $) 131 (|has| |#1| (-555)))) (-3211 (((-112) $) 129 (|has| |#1| (-555)))) (-1770 (($ $) 88 (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) 71 (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) 19)) (-2185 (($ $) 70 (|has| |#1| (-38 (-407 (-563)))))) (-1747 (($ $) 87 (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) 72 (|has| |#1| (-38 (-407 (-563)))))) (-1793 (($ $) 86 (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) 73 (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) 17 T CONST)) (-2750 (($ $) 123)) (-3951 (((-3 $ "failed") $) 33)) (-3621 (((-948 |#1|) $ (-767)) 101) (((-948 |#1|) $ (-767) (-767)) 100)) (-3381 (((-112) $) 140)) (-2179 (($) 98 (|has| |#1| (-38 (-407 (-563)))))) (-1775 (((-767) $ |#2|) 103) (((-767) $ |#2| (-767)) 102)) (-3401 (((-112) $) 31)) (-2172 (($ $ (-563)) 69 (|has| |#1| (-38 (-407 (-563)))))) (-3805 (((-112) $) 121)) (-2587 (($ $ (-640 |#2|) (-640 (-531 |#2|))) 138) (($ $ |#2| (-531 |#2|)) 137) (($ |#1| (-531 |#2|)) 122) (($ $ |#2| (-767)) 105) (($ $ (-640 |#2|) (-640 (-767))) 104)) (-2238 (($ (-1 |#1| |#1|) $) 120)) (-4372 (($ $) 95 (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) 118)) (-2725 ((|#1| $) 117)) (-3854 (((-1151) $) 9)) (-2062 (($ $ |#2|) 99 (|has| |#1| (-38 (-407 (-563)))))) (-1693 (((-1113) $) 10)) (-1751 (($ $ (-767)) 106)) (-3012 (((-3 $ "failed") $ $) 133 (|has| |#1| (-555)))) (-3372 (($ $) 96 (|has| |#1| (-38 (-407 (-563)))))) (-1542 (($ $ |#2| $) 114) (($ $ (-640 |#2|) (-640 $)) 113) (($ $ (-640 (-294 $))) 112) (($ $ (-294 $)) 111) (($ $ $ $) 110) (($ $ (-640 $) (-640 $)) 109)) (-4203 (($ $ |#2|) 42) (($ $ (-640 |#2|)) 41) (($ $ |#2| (-767)) 40) (($ $ (-640 |#2|) (-640 (-767))) 39)) (-3871 (((-531 |#2|) $) 119)) (-1805 (($ $) 85 (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) 74 (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) 84 (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) 75 (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) 83 (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) 76 (|has| |#1| (-38 (-407 (-563)))))) (-3369 (($ $) 141)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 136 (|has| |#1| (-172))) (($ $) 134 (|has| |#1| (-555))) (($ (-407 (-563))) 126 (|has| |#1| (-38 (-407 (-563)))))) (-3244 ((|#1| $ (-531 |#2|)) 124) (($ $ |#2| (-767)) 108) (($ $ (-640 |#2|) (-640 (-767))) 107)) (-2047 (((-3 $ "failed") $) 135 (|has| |#1| (-145)))) (-3914 (((-767)) 28)) (-1839 (($ $) 94 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) 82 (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) 130 (|has| |#1| (-555)))) (-1816 (($ $) 93 (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) 81 (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) 92 (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) 80 (|has| |#1| (-38 (-407 (-563)))))) (-1311 (($ $) 91 (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) 79 (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) 90 (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) 78 (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) 89 (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) 77 (|has| |#1| (-38 (-407 (-563)))))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ |#2|) 38) (($ $ (-640 |#2|)) 37) (($ $ |#2| (-767)) 36) (($ $ (-640 |#2|) (-640 (-767))) 35)) (-1718 (((-112) $ $) 6)) (-1836 (($ $ |#1|) 125 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ $) 97 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 68 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 128 (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) 127 (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 116) (($ $ |#1|) 115)))
(((-736 |#1| |#2|) (-140) (-1045) (-846)) (T -736))
-((-4319 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-736 *4 *2)) (-4 *4 (-1045)) (-4 *2 (-846)))) (-4319 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *5)) (-5 *3 (-640 (-767))) (-4 *1 (-736 *4 *5)) (-4 *4 (-1045)) (-4 *5 (-846)))) (-3320 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-736 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-846)))) (-2588 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-736 *4 *2)) (-4 *4 (-1045)) (-4 *2 (-846)))) (-2588 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *5)) (-5 *3 (-640 (-767))) (-4 *1 (-736 *4 *5)) (-4 *4 (-1045)) (-4 *5 (-846)))) (-3254 (*1 *2 *1 *3) (-12 (-4 *1 (-736 *4 *3)) (-4 *4 (-1045)) (-4 *3 (-846)) (-5 *2 (-767)))) (-3254 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-767)) (-4 *1 (-736 *4 *3)) (-4 *4 (-1045)) (-4 *3 (-846)))) (-3619 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-736 *4 *5)) (-4 *4 (-1045)) (-4 *5 (-846)) (-5 *2 (-948 *4)))) (-3619 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-767)) (-4 *1 (-736 *4 *5)) (-4 *4 (-1045)) (-4 *5 (-846)) (-5 *2 (-948 *4)))) (-3698 (*1 *1 *1 *2) (-12 (-4 *1 (-736 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-846)) (-4 *3 (-38 (-407 (-563)))))))
-(-13 (-896 |t#2|) (-969 |t#1| (-531 |t#2|) |t#2|) (-514 |t#2| $) (-309 $) (-10 -8 (-15 -4319 ($ $ |t#2| (-767))) (-15 -4319 ($ $ (-640 |t#2|) (-640 (-767)))) (-15 -3320 ($ $ (-767))) (-15 -2588 ($ $ |t#2| (-767))) (-15 -2588 ($ $ (-640 |t#2|) (-640 (-767)))) (-15 -3254 ((-767) $ |t#2|)) (-15 -3254 ((-767) $ |t#2| (-767))) (-15 -3619 ((-948 |t#1|) $ (-767))) (-15 -3619 ((-948 |t#1|) $ (-767) (-767))) (IF (|has| |t#1| (-38 (-407 (-563)))) (PROGN (-15 -3698 ($ $ |t#2|)) (-6 (-998)) (-6 (-1193))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-531 |#2|)) . T) ((-25) . T) ((-38 #1=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-555)) ((-35) |has| |#1| (-38 (-407 (-563)))) ((-95) |has| |#1| (-38 (-407 (-563)))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #1#) |has| |#1| (-38 (-407 (-563)))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 $) |has| |#1| (-555)) ((-610 (-858)) . T) ((-172) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-284) |has| |#1| (-38 (-407 (-563)))) ((-290) |has| |#1| (-555)) ((-309 $) . T) ((-493) |has| |#1| (-38 (-407 (-563)))) ((-514 |#2| $) . T) ((-514 $ $) . T) ((-555) |has| |#1| (-555)) ((-643 #1#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #1#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) |has| |#1| (-555)) ((-722) . T) ((-896 |#2|) . T) ((-969 |#1| #0# |#2|) . T) ((-998) |has| |#1| (-38 (-407 (-563)))) ((-1051 #1#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1193) |has| |#1| (-38 (-407 (-563)))) ((-1196) |has| |#1| (-38 (-407 (-563)))))
-((-2174 (((-418 (-1165 |#4|)) (-1165 |#4|)) 30) (((-418 |#4|) |#4|) 26)))
-(((-737 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2174 ((-418 |#4|) |#4|)) (-15 -2174 ((-418 (-1165 |#4|)) (-1165 |#4|)))) (-846) (-789) (-13 (-307) (-147)) (-945 |#3| |#2| |#1|)) (T -737))
-((-2174 (*1 *2 *3) (-12 (-4 *4 (-846)) (-4 *5 (-789)) (-4 *6 (-13 (-307) (-147))) (-4 *7 (-945 *6 *5 *4)) (-5 *2 (-418 (-1165 *7))) (-5 *1 (-737 *4 *5 *6 *7)) (-5 *3 (-1165 *7)))) (-2174 (*1 *2 *3) (-12 (-4 *4 (-846)) (-4 *5 (-789)) (-4 *6 (-13 (-307) (-147))) (-5 *2 (-418 *3)) (-5 *1 (-737 *4 *5 *6 *3)) (-4 *3 (-945 *6 *5 *4)))))
-(-10 -7 (-15 -2174 ((-418 |#4|) |#4|)) (-15 -2174 ((-418 (-1165 |#4|)) (-1165 |#4|))))
-((-2425 (((-418 |#4|) |#4| |#2|) 118)) (-3882 (((-418 |#4|) |#4|) NIL)) (-3205 (((-418 (-1165 |#4|)) (-1165 |#4|)) 109) (((-418 |#4|) |#4|) 40)) (-1757 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-640 (-2 (|:| -2174 (-1165 |#4|)) (|:| -1654 (-563)))))) (-1165 |#4|) (-640 |#2|) (-640 (-640 |#3|))) 68)) (-4101 (((-1165 |#3|) (-1165 |#3|) (-563)) 136)) (-2443 (((-640 (-767)) (-1165 |#4|) (-640 |#2|) (-767)) 60)) (-2433 (((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-1165 |#3|) (-1165 |#3|) |#4| (-640 |#2|) (-640 (-767)) (-640 |#3|)) 64)) (-2816 (((-2 (|:| |upol| (-1165 |#3|)) (|:| |Lval| (-640 |#3|)) (|:| |Lfact| (-640 (-2 (|:| -2174 (-1165 |#3|)) (|:| -1654 (-563))))) (|:| |ctpol| |#3|)) (-1165 |#4|) (-640 |#2|) (-640 (-640 |#3|))) 25)) (-1847 (((-2 (|:| -1574 (-1165 |#4|)) (|:| |polval| (-1165 |#3|))) (-1165 |#4|) (-1165 |#3|) (-563)) 56)) (-2153 (((-563) (-640 (-2 (|:| -2174 (-1165 |#3|)) (|:| -1654 (-563))))) 133)) (-1455 ((|#4| (-563) (-418 |#4|)) 57)) (-4350 (((-112) (-640 (-2 (|:| -2174 (-1165 |#3|)) (|:| -1654 (-563)))) (-640 (-2 (|:| -2174 (-1165 |#3|)) (|:| -1654 (-563))))) NIL)))
-(((-738 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3205 ((-418 |#4|) |#4|)) (-15 -3205 ((-418 (-1165 |#4|)) (-1165 |#4|))) (-15 -3882 ((-418 |#4|) |#4|)) (-15 -2153 ((-563) (-640 (-2 (|:| -2174 (-1165 |#3|)) (|:| -1654 (-563)))))) (-15 -2425 ((-418 |#4|) |#4| |#2|)) (-15 -1847 ((-2 (|:| -1574 (-1165 |#4|)) (|:| |polval| (-1165 |#3|))) (-1165 |#4|) (-1165 |#3|) (-563))) (-15 -1757 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-640 (-2 (|:| -2174 (-1165 |#4|)) (|:| -1654 (-563)))))) (-1165 |#4|) (-640 |#2|) (-640 (-640 |#3|)))) (-15 -2816 ((-2 (|:| |upol| (-1165 |#3|)) (|:| |Lval| (-640 |#3|)) (|:| |Lfact| (-640 (-2 (|:| -2174 (-1165 |#3|)) (|:| -1654 (-563))))) (|:| |ctpol| |#3|)) (-1165 |#4|) (-640 |#2|) (-640 (-640 |#3|)))) (-15 -1455 (|#4| (-563) (-418 |#4|))) (-15 -4350 ((-112) (-640 (-2 (|:| -2174 (-1165 |#3|)) (|:| -1654 (-563)))) (-640 (-2 (|:| -2174 (-1165 |#3|)) (|:| -1654 (-563)))))) (-15 -2433 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-1165 |#3|) (-1165 |#3|) |#4| (-640 |#2|) (-640 (-767)) (-640 |#3|))) (-15 -2443 ((-640 (-767)) (-1165 |#4|) (-640 |#2|) (-767))) (-15 -4101 ((-1165 |#3|) (-1165 |#3|) (-563)))) (-789) (-846) (-307) (-945 |#3| |#1| |#2|)) (T -738))
-((-4101 (*1 *2 *2 *3) (-12 (-5 *2 (-1165 *6)) (-5 *3 (-563)) (-4 *6 (-307)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-738 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5)))) (-2443 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1165 *9)) (-5 *4 (-640 *7)) (-4 *7 (-846)) (-4 *9 (-945 *8 *6 *7)) (-4 *6 (-789)) (-4 *8 (-307)) (-5 *2 (-640 (-767))) (-5 *1 (-738 *6 *7 *8 *9)) (-5 *5 (-767)))) (-2433 (*1 *2 *3 *4 *4 *5 *6 *7 *8) (|partial| -12 (-5 *4 (-1165 *11)) (-5 *6 (-640 *10)) (-5 *7 (-640 (-767))) (-5 *8 (-640 *11)) (-4 *10 (-846)) (-4 *11 (-307)) (-4 *9 (-789)) (-4 *5 (-945 *11 *9 *10)) (-5 *2 (-640 (-1165 *5))) (-5 *1 (-738 *9 *10 *11 *5)) (-5 *3 (-1165 *5)))) (-4350 (*1 *2 *3 *3) (-12 (-5 *3 (-640 (-2 (|:| -2174 (-1165 *6)) (|:| -1654 (-563))))) (-4 *6 (-307)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-738 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5)))) (-1455 (*1 *2 *3 *4) (-12 (-5 *3 (-563)) (-5 *4 (-418 *2)) (-4 *2 (-945 *7 *5 *6)) (-5 *1 (-738 *5 *6 *7 *2)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-307)))) (-2816 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1165 *9)) (-5 *4 (-640 *7)) (-5 *5 (-640 (-640 *8))) (-4 *7 (-846)) (-4 *8 (-307)) (-4 *9 (-945 *8 *6 *7)) (-4 *6 (-789)) (-5 *2 (-2 (|:| |upol| (-1165 *8)) (|:| |Lval| (-640 *8)) (|:| |Lfact| (-640 (-2 (|:| -2174 (-1165 *8)) (|:| -1654 (-563))))) (|:| |ctpol| *8))) (-5 *1 (-738 *6 *7 *8 *9)))) (-1757 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-640 *7)) (-5 *5 (-640 (-640 *8))) (-4 *7 (-846)) (-4 *8 (-307)) (-4 *6 (-789)) (-4 *9 (-945 *8 *6 *7)) (-5 *2 (-2 (|:| |unitPart| *9) (|:| |suPart| (-640 (-2 (|:| -2174 (-1165 *9)) (|:| -1654 (-563))))))) (-5 *1 (-738 *6 *7 *8 *9)) (-5 *3 (-1165 *9)))) (-1847 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-563)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-307)) (-4 *9 (-945 *8 *6 *7)) (-5 *2 (-2 (|:| -1574 (-1165 *9)) (|:| |polval| (-1165 *8)))) (-5 *1 (-738 *6 *7 *8 *9)) (-5 *3 (-1165 *9)) (-5 *4 (-1165 *8)))) (-2425 (*1 *2 *3 *4) (-12 (-4 *5 (-789)) (-4 *4 (-846)) (-4 *6 (-307)) (-5 *2 (-418 *3)) (-5 *1 (-738 *5 *4 *6 *3)) (-4 *3 (-945 *6 *5 *4)))) (-2153 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -2174 (-1165 *6)) (|:| -1654 (-563))))) (-4 *6 (-307)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-563)) (-5 *1 (-738 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5)))) (-3882 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)) (-5 *2 (-418 *3)) (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-945 *6 *4 *5)))) (-3205 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-418 (-1165 *7))) (-5 *1 (-738 *4 *5 *6 *7)) (-5 *3 (-1165 *7)))) (-3205 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)) (-5 *2 (-418 *3)) (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-945 *6 *4 *5)))))
-(-10 -7 (-15 -3205 ((-418 |#4|) |#4|)) (-15 -3205 ((-418 (-1165 |#4|)) (-1165 |#4|))) (-15 -3882 ((-418 |#4|) |#4|)) (-15 -2153 ((-563) (-640 (-2 (|:| -2174 (-1165 |#3|)) (|:| -1654 (-563)))))) (-15 -2425 ((-418 |#4|) |#4| |#2|)) (-15 -1847 ((-2 (|:| -1574 (-1165 |#4|)) (|:| |polval| (-1165 |#3|))) (-1165 |#4|) (-1165 |#3|) (-563))) (-15 -1757 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-640 (-2 (|:| -2174 (-1165 |#4|)) (|:| -1654 (-563)))))) (-1165 |#4|) (-640 |#2|) (-640 (-640 |#3|)))) (-15 -2816 ((-2 (|:| |upol| (-1165 |#3|)) (|:| |Lval| (-640 |#3|)) (|:| |Lfact| (-640 (-2 (|:| -2174 (-1165 |#3|)) (|:| -1654 (-563))))) (|:| |ctpol| |#3|)) (-1165 |#4|) (-640 |#2|) (-640 (-640 |#3|)))) (-15 -1455 (|#4| (-563) (-418 |#4|))) (-15 -4350 ((-112) (-640 (-2 (|:| -2174 (-1165 |#3|)) (|:| -1654 (-563)))) (-640 (-2 (|:| -2174 (-1165 |#3|)) (|:| -1654 (-563)))))) (-15 -2433 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-1165 |#3|) (-1165 |#3|) |#4| (-640 |#2|) (-640 (-767)) (-640 |#3|))) (-15 -2443 ((-640 (-767)) (-1165 |#4|) (-640 |#2|) (-767))) (-15 -4101 ((-1165 |#3|) (-1165 |#3|) (-563))))
-((-2287 (($ $ (-917)) 12)))
-(((-739 |#1| |#2|) (-10 -8 (-15 -2287 (|#1| |#1| (-917)))) (-740 |#2|) (-172)) (T -739))
-NIL
-(-10 -8 (-15 -2287 (|#1| |#1| (-917))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-2300 (($ $ (-917)) 28)) (-2287 (($ $ (-917)) 33)) (-1494 (($ $ (-917)) 29)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-2146 (($ $ $) 25)) (-1693 (((-858) $) 11)) (-1361 (($ $ $ $) 26)) (-3399 (($ $ $) 24)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 30)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
+((-3244 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-736 *4 *2)) (-4 *4 (-1045)) (-4 *2 (-846)))) (-3244 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *5)) (-5 *3 (-640 (-767))) (-4 *1 (-736 *4 *5)) (-4 *4 (-1045)) (-4 *5 (-846)))) (-1751 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-736 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-846)))) (-2587 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-736 *4 *2)) (-4 *4 (-1045)) (-4 *2 (-846)))) (-2587 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *5)) (-5 *3 (-640 (-767))) (-4 *1 (-736 *4 *5)) (-4 *4 (-1045)) (-4 *5 (-846)))) (-1775 (*1 *2 *1 *3) (-12 (-4 *1 (-736 *4 *3)) (-4 *4 (-1045)) (-4 *3 (-846)) (-5 *2 (-767)))) (-1775 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-767)) (-4 *1 (-736 *4 *3)) (-4 *4 (-1045)) (-4 *3 (-846)))) (-3621 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-736 *4 *5)) (-4 *4 (-1045)) (-4 *5 (-846)) (-5 *2 (-948 *4)))) (-3621 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-767)) (-4 *1 (-736 *4 *5)) (-4 *4 (-1045)) (-4 *5 (-846)) (-5 *2 (-948 *4)))) (-2062 (*1 *1 *1 *2) (-12 (-4 *1 (-736 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-846)) (-4 *3 (-38 (-407 (-563)))))))
+(-13 (-896 |t#2|) (-969 |t#1| (-531 |t#2|) |t#2|) (-514 |t#2| $) (-309 $) (-10 -8 (-15 -3244 ($ $ |t#2| (-767))) (-15 -3244 ($ $ (-640 |t#2|) (-640 (-767)))) (-15 -1751 ($ $ (-767))) (-15 -2587 ($ $ |t#2| (-767))) (-15 -2587 ($ $ (-640 |t#2|) (-640 (-767)))) (-15 -1775 ((-767) $ |t#2|)) (-15 -1775 ((-767) $ |t#2| (-767))) (-15 -3621 ((-948 |t#1|) $ (-767))) (-15 -3621 ((-948 |t#1|) $ (-767) (-767))) (IF (|has| |t#1| (-38 (-407 (-563)))) (PROGN (-15 -2062 ($ $ |t#2|)) (-6 (-998)) (-6 (-1193))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-531 |#2|)) . T) ((-25) . T) ((-38 #1=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-555)) ((-35) |has| |#1| (-38 (-407 (-563)))) ((-95) |has| |#1| (-38 (-407 (-563)))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #1#) |has| |#1| (-38 (-407 (-563)))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 $) |has| |#1| (-555)) ((-610 (-858)) . T) ((-172) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-284) |has| |#1| (-38 (-407 (-563)))) ((-290) |has| |#1| (-555)) ((-309 $) . T) ((-493) |has| |#1| (-38 (-407 (-563)))) ((-514 |#2| $) . T) ((-514 $ $) . T) ((-555) |has| |#1| (-555)) ((-643 #1#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #1#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) |has| |#1| (-555)) ((-722) . T) ((-896 |#2|) . T) ((-969 |#1| #0# |#2|) . T) ((-998) |has| |#1| (-38 (-407 (-563)))) ((-1051 #1#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1193) |has| |#1| (-38 (-407 (-563)))) ((-1196) |has| |#1| (-38 (-407 (-563)))))
+((-2173 (((-418 (-1165 |#4|)) (-1165 |#4|)) 30) (((-418 |#4|) |#4|) 26)))
+(((-737 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2173 ((-418 |#4|) |#4|)) (-15 -2173 ((-418 (-1165 |#4|)) (-1165 |#4|)))) (-846) (-789) (-13 (-307) (-147)) (-945 |#3| |#2| |#1|)) (T -737))
+((-2173 (*1 *2 *3) (-12 (-4 *4 (-846)) (-4 *5 (-789)) (-4 *6 (-13 (-307) (-147))) (-4 *7 (-945 *6 *5 *4)) (-5 *2 (-418 (-1165 *7))) (-5 *1 (-737 *4 *5 *6 *7)) (-5 *3 (-1165 *7)))) (-2173 (*1 *2 *3) (-12 (-4 *4 (-846)) (-4 *5 (-789)) (-4 *6 (-13 (-307) (-147))) (-5 *2 (-418 *3)) (-5 *1 (-737 *4 *5 *6 *3)) (-4 *3 (-945 *6 *5 *4)))))
+(-10 -7 (-15 -2173 ((-418 |#4|) |#4|)) (-15 -2173 ((-418 (-1165 |#4|)) (-1165 |#4|))))
+((-3535 (((-418 |#4|) |#4| |#2|) 118)) (-3513 (((-418 |#4|) |#4|) NIL)) (-2802 (((-418 (-1165 |#4|)) (-1165 |#4|)) 109) (((-418 |#4|) |#4|) 40)) (-3560 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-640 (-2 (|:| -2173 (-1165 |#4|)) (|:| -3311 (-563)))))) (-1165 |#4|) (-640 |#2|) (-640 (-640 |#3|))) 68)) (-3606 (((-1165 |#3|) (-1165 |#3|) (-563)) 136)) (-3595 (((-640 (-767)) (-1165 |#4|) (-640 |#2|) (-767)) 60)) (-2433 (((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-1165 |#3|) (-1165 |#3|) |#4| (-640 |#2|) (-640 (-767)) (-640 |#3|)) 64)) (-3573 (((-2 (|:| |upol| (-1165 |#3|)) (|:| |Lval| (-640 |#3|)) (|:| |Lfact| (-640 (-2 (|:| -2173 (-1165 |#3|)) (|:| -3311 (-563))))) (|:| |ctpol| |#3|)) (-1165 |#4|) (-640 |#2|) (-640 (-640 |#3|))) 25)) (-3547 (((-2 (|:| -3929 (-1165 |#4|)) (|:| |polval| (-1165 |#3|))) (-1165 |#4|) (-1165 |#3|) (-563)) 56)) (-3524 (((-563) (-640 (-2 (|:| -2173 (-1165 |#3|)) (|:| -3311 (-563))))) 133)) (-3584 ((|#4| (-563) (-418 |#4|)) 57)) (-2476 (((-112) (-640 (-2 (|:| -2173 (-1165 |#3|)) (|:| -3311 (-563)))) (-640 (-2 (|:| -2173 (-1165 |#3|)) (|:| -3311 (-563))))) NIL)))
+(((-738 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2802 ((-418 |#4|) |#4|)) (-15 -2802 ((-418 (-1165 |#4|)) (-1165 |#4|))) (-15 -3513 ((-418 |#4|) |#4|)) (-15 -3524 ((-563) (-640 (-2 (|:| -2173 (-1165 |#3|)) (|:| -3311 (-563)))))) (-15 -3535 ((-418 |#4|) |#4| |#2|)) (-15 -3547 ((-2 (|:| -3929 (-1165 |#4|)) (|:| |polval| (-1165 |#3|))) (-1165 |#4|) (-1165 |#3|) (-563))) (-15 -3560 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-640 (-2 (|:| -2173 (-1165 |#4|)) (|:| -3311 (-563)))))) (-1165 |#4|) (-640 |#2|) (-640 (-640 |#3|)))) (-15 -3573 ((-2 (|:| |upol| (-1165 |#3|)) (|:| |Lval| (-640 |#3|)) (|:| |Lfact| (-640 (-2 (|:| -2173 (-1165 |#3|)) (|:| -3311 (-563))))) (|:| |ctpol| |#3|)) (-1165 |#4|) (-640 |#2|) (-640 (-640 |#3|)))) (-15 -3584 (|#4| (-563) (-418 |#4|))) (-15 -2476 ((-112) (-640 (-2 (|:| -2173 (-1165 |#3|)) (|:| -3311 (-563)))) (-640 (-2 (|:| -2173 (-1165 |#3|)) (|:| -3311 (-563)))))) (-15 -2433 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-1165 |#3|) (-1165 |#3|) |#4| (-640 |#2|) (-640 (-767)) (-640 |#3|))) (-15 -3595 ((-640 (-767)) (-1165 |#4|) (-640 |#2|) (-767))) (-15 -3606 ((-1165 |#3|) (-1165 |#3|) (-563)))) (-789) (-846) (-307) (-945 |#3| |#1| |#2|)) (T -738))
+((-3606 (*1 *2 *2 *3) (-12 (-5 *2 (-1165 *6)) (-5 *3 (-563)) (-4 *6 (-307)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-738 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5)))) (-3595 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1165 *9)) (-5 *4 (-640 *7)) (-4 *7 (-846)) (-4 *9 (-945 *8 *6 *7)) (-4 *6 (-789)) (-4 *8 (-307)) (-5 *2 (-640 (-767))) (-5 *1 (-738 *6 *7 *8 *9)) (-5 *5 (-767)))) (-2433 (*1 *2 *3 *4 *4 *5 *6 *7 *8) (|partial| -12 (-5 *4 (-1165 *11)) (-5 *6 (-640 *10)) (-5 *7 (-640 (-767))) (-5 *8 (-640 *11)) (-4 *10 (-846)) (-4 *11 (-307)) (-4 *9 (-789)) (-4 *5 (-945 *11 *9 *10)) (-5 *2 (-640 (-1165 *5))) (-5 *1 (-738 *9 *10 *11 *5)) (-5 *3 (-1165 *5)))) (-2476 (*1 *2 *3 *3) (-12 (-5 *3 (-640 (-2 (|:| -2173 (-1165 *6)) (|:| -3311 (-563))))) (-4 *6 (-307)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)) (-5 *1 (-738 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5)))) (-3584 (*1 *2 *3 *4) (-12 (-5 *3 (-563)) (-5 *4 (-418 *2)) (-4 *2 (-945 *7 *5 *6)) (-5 *1 (-738 *5 *6 *7 *2)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-307)))) (-3573 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1165 *9)) (-5 *4 (-640 *7)) (-5 *5 (-640 (-640 *8))) (-4 *7 (-846)) (-4 *8 (-307)) (-4 *9 (-945 *8 *6 *7)) (-4 *6 (-789)) (-5 *2 (-2 (|:| |upol| (-1165 *8)) (|:| |Lval| (-640 *8)) (|:| |Lfact| (-640 (-2 (|:| -2173 (-1165 *8)) (|:| -3311 (-563))))) (|:| |ctpol| *8))) (-5 *1 (-738 *6 *7 *8 *9)))) (-3560 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-640 *7)) (-5 *5 (-640 (-640 *8))) (-4 *7 (-846)) (-4 *8 (-307)) (-4 *6 (-789)) (-4 *9 (-945 *8 *6 *7)) (-5 *2 (-2 (|:| |unitPart| *9) (|:| |suPart| (-640 (-2 (|:| -2173 (-1165 *9)) (|:| -3311 (-563))))))) (-5 *1 (-738 *6 *7 *8 *9)) (-5 *3 (-1165 *9)))) (-3547 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-563)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-307)) (-4 *9 (-945 *8 *6 *7)) (-5 *2 (-2 (|:| -3929 (-1165 *9)) (|:| |polval| (-1165 *8)))) (-5 *1 (-738 *6 *7 *8 *9)) (-5 *3 (-1165 *9)) (-5 *4 (-1165 *8)))) (-3535 (*1 *2 *3 *4) (-12 (-4 *5 (-789)) (-4 *4 (-846)) (-4 *6 (-307)) (-5 *2 (-418 *3)) (-5 *1 (-738 *5 *4 *6 *3)) (-4 *3 (-945 *6 *5 *4)))) (-3524 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -2173 (-1165 *6)) (|:| -3311 (-563))))) (-4 *6 (-307)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-563)) (-5 *1 (-738 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5)))) (-3513 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)) (-5 *2 (-418 *3)) (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-945 *6 *4 *5)))) (-2802 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-418 (-1165 *7))) (-5 *1 (-738 *4 *5 *6 *7)) (-5 *3 (-1165 *7)))) (-2802 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)) (-5 *2 (-418 *3)) (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-945 *6 *4 *5)))))
+(-10 -7 (-15 -2802 ((-418 |#4|) |#4|)) (-15 -2802 ((-418 (-1165 |#4|)) (-1165 |#4|))) (-15 -3513 ((-418 |#4|) |#4|)) (-15 -3524 ((-563) (-640 (-2 (|:| -2173 (-1165 |#3|)) (|:| -3311 (-563)))))) (-15 -3535 ((-418 |#4|) |#4| |#2|)) (-15 -3547 ((-2 (|:| -3929 (-1165 |#4|)) (|:| |polval| (-1165 |#3|))) (-1165 |#4|) (-1165 |#3|) (-563))) (-15 -3560 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-640 (-2 (|:| -2173 (-1165 |#4|)) (|:| -3311 (-563)))))) (-1165 |#4|) (-640 |#2|) (-640 (-640 |#3|)))) (-15 -3573 ((-2 (|:| |upol| (-1165 |#3|)) (|:| |Lval| (-640 |#3|)) (|:| |Lfact| (-640 (-2 (|:| -2173 (-1165 |#3|)) (|:| -3311 (-563))))) (|:| |ctpol| |#3|)) (-1165 |#4|) (-640 |#2|) (-640 (-640 |#3|)))) (-15 -3584 (|#4| (-563) (-418 |#4|))) (-15 -2476 ((-112) (-640 (-2 (|:| -2173 (-1165 |#3|)) (|:| -3311 (-563)))) (-640 (-2 (|:| -2173 (-1165 |#3|)) (|:| -3311 (-563)))))) (-15 -2433 ((-3 (-640 (-1165 |#4|)) "failed") (-1165 |#4|) (-1165 |#3|) (-1165 |#3|) |#4| (-640 |#2|) (-640 (-767)) (-640 |#3|))) (-15 -3595 ((-640 (-767)) (-1165 |#4|) (-640 |#2|) (-767))) (-15 -3606 ((-1165 |#3|) (-1165 |#3|) (-563))))
+((-3617 (($ $ (-917)) 12)))
+(((-739 |#1| |#2|) (-10 -8 (-15 -3617 (|#1| |#1| (-917)))) (-740 |#2|) (-172)) (T -739))
+NIL
+(-10 -8 (-15 -3617 (|#1| |#1| (-917))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3376 (($ $ (-917)) 28)) (-3617 (($ $ (-917)) 33)) (-3364 (($ $ (-917)) 29)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1745 (($ $ $) 25)) (-1692 (((-858) $) 11)) (-1756 (($ $ $ $) 26)) (-1729 (($ $ $) 24)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 30)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
(((-740 |#1|) (-140) (-172)) (T -740))
-((-2287 (*1 *1 *1 *2) (-12 (-5 *2 (-917)) (-4 *1 (-740 *3)) (-4 *3 (-172)))))
-(-13 (-757) (-713 |t#1|) (-10 -8 (-15 -2287 ($ $ (-917)))))
+((-3617 (*1 *1 *1 *2) (-12 (-5 *2 (-917)) (-4 *1 (-740 *3)) (-4 *3 (-172)))))
+(-13 (-757) (-713 |t#1|) (-10 -8 (-15 -3617 ($ $ (-917)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-610 (-858)) . T) ((-643 |#1|) . T) ((-713 |#1|) . T) ((-716) . T) ((-757) . T) ((-1051 |#1|) . T) ((-1093) . T))
-((-1611 (((-1031) (-684 (-225)) (-563) (-112) (-563)) 25)) (-1391 (((-1031) (-684 (-225)) (-563) (-112) (-563)) 24)))
-(((-741) (-10 -7 (-15 -1391 ((-1031) (-684 (-225)) (-563) (-112) (-563))) (-15 -1611 ((-1031) (-684 (-225)) (-563) (-112) (-563))))) (T -741))
-((-1611 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-112)) (-5 *2 (-1031)) (-5 *1 (-741)))) (-1391 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-112)) (-5 *2 (-1031)) (-5 *1 (-741)))))
-(-10 -7 (-15 -1391 ((-1031) (-684 (-225)) (-563) (-112) (-563))) (-15 -1611 ((-1031) (-684 (-225)) (-563) (-112) (-563))))
-((-2397 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-74 FCN)))) 43)) (-2894 (((-1031) (-563) (-563) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-81 FCN)))) 39)) (-2856 (((-1031) (-225) (-225) (-225) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191)))) 32)))
-(((-742) (-10 -7 (-15 -2856 ((-1031) (-225) (-225) (-225) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191))))) (-15 -2894 ((-1031) (-563) (-563) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-81 FCN))))) (-15 -2397 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-74 FCN))))))) (T -742))
-((-2397 (*1 *2 *3 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1031)) (-5 *1 (-742)))) (-2894 (*1 *2 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1031)) (-5 *1 (-742)))) (-2856 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191)))) (-5 *2 (-1031)) (-5 *1 (-742)))))
-(-10 -7 (-15 -2856 ((-1031) (-225) (-225) (-225) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191))))) (-15 -2894 ((-1031) (-563) (-563) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-81 FCN))))) (-15 -2397 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-74 FCN))))))
-((-3519 (((-1031) (-563) (-563) (-684 (-225)) (-563)) 34)) (-1588 (((-1031) (-563) (-563) (-684 (-225)) (-563)) 33)) (-3454 (((-1031) (-563) (-684 (-225)) (-563)) 32)) (-3981 (((-1031) (-563) (-684 (-225)) (-563)) 31)) (-1568 (((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 30)) (-3717 (((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 29)) (-4141 (((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-563)) 28)) (-1811 (((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-563)) 27)) (-3794 (((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563)) 24)) (-3430 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563)) 23)) (-3485 (((-1031) (-563) (-684 (-225)) (-563)) 22)) (-1355 (((-1031) (-563) (-684 (-225)) (-563)) 21)))
-(((-743) (-10 -7 (-15 -1355 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -3485 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -3430 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3794 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -1811 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-563))) (-15 -4141 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3717 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -1568 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3981 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -3454 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -1588 ((-1031) (-563) (-563) (-684 (-225)) (-563))) (-15 -3519 ((-1031) (-563) (-563) (-684 (-225)) (-563))))) (T -743))
-((-3519 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-1588 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3454 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3981 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-1568 (*1 *2 *3 *3 *4 *5 *5 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3717 (*1 *2 *3 *3 *4 *5 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-4141 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-1811 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3794 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3430 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3485 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-1355 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))))
-(-10 -7 (-15 -1355 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -3485 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -3430 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3794 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -1811 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-563))) (-15 -4141 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3717 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -1568 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3981 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -3454 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -1588 ((-1031) (-563) (-563) (-684 (-225)) (-563))) (-15 -3519 ((-1031) (-563) (-563) (-684 (-225)) (-563))))
-((-2866 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-225) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN)))) 52)) (-1727 (((-1031) (-684 (-225)) (-684 (-225)) (-563) (-563)) 51)) (-2014 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN)))) 50)) (-3539 (((-1031) (-225) (-225) (-563) (-563) (-563) (-563)) 46)) (-2809 (((-1031) (-225) (-225) (-563) (-225) (-563) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) 45)) (-1554 (((-1031) (-225) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) 44)) (-3247 (((-1031) (-225) (-225) (-225) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) 43)) (-3357 (((-1031) (-225) (-225) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) 42)) (-2079 (((-1031) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191)))) 38)) (-2461 (((-1031) (-225) (-225) (-563) (-684 (-225)) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191)))) 37)) (-1563 (((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191)))) 33)) (-2940 (((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191)))) 32)))
-(((-744) (-10 -7 (-15 -2940 ((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191))))) (-15 -1563 ((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191))))) (-15 -2461 ((-1031) (-225) (-225) (-563) (-684 (-225)) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191))))) (-15 -2079 ((-1031) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191))))) (-15 -3357 ((-1031) (-225) (-225) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -3247 ((-1031) (-225) (-225) (-225) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -1554 ((-1031) (-225) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -2809 ((-1031) (-225) (-225) (-563) (-225) (-563) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -3539 ((-1031) (-225) (-225) (-563) (-563) (-563) (-563))) (-15 -2014 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN))))) (-15 -1727 ((-1031) (-684 (-225)) (-684 (-225)) (-563) (-563))) (-15 -2866 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-225) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN))))))) (T -744))
-((-2866 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-1727 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-744)))) (-2014 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-3539 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-744)))) (-2809 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-1554 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-3247 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-3357 (*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-2079 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-2461 (*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6) (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191)))) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-744)))) (-1563 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-2940 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191)))) (-5 *2 (-1031)) (-5 *1 (-744)))))
-(-10 -7 (-15 -2940 ((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191))))) (-15 -1563 ((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191))))) (-15 -2461 ((-1031) (-225) (-225) (-563) (-684 (-225)) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191))))) (-15 -2079 ((-1031) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191))))) (-15 -3357 ((-1031) (-225) (-225) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -3247 ((-1031) (-225) (-225) (-225) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -1554 ((-1031) (-225) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -2809 ((-1031) (-225) (-225) (-563) (-225) (-563) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -3539 ((-1031) (-225) (-225) (-563) (-563) (-563) (-563))) (-15 -2014 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN))))) (-15 -1727 ((-1031) (-684 (-225)) (-684 (-225)) (-563) (-563))) (-15 -2866 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-225) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN))))))
-((-4268 (((-1031) (-563) (-563) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-388)) (|:| |fp| (-76 G JACOBG JACGEP)))) 76)) (-1742 (((-1031) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL))) (-388) (-388)) 69) (((-1031) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL)))) 68)) (-4070 (((-1031) (-225) (-225) (-563) (-225) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-388)) (|:| |fp| (-85 FCNG)))) 57)) (-1313 (((-1031) (-684 (-225)) (-684 (-225)) (-563) (-225) (-225) (-225) (-563) (-563) (-563) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) 50)) (-1758 (((-1031) (-225) (-563) (-563) (-1151) (-563) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT)))) 49)) (-3826 (((-1031) (-225) (-563) (-563) (-225) (-1151) (-225) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT)))) 45)) (-3677 (((-1031) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) 42)) (-1766 (((-1031) (-225) (-563) (-563) (-563) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT)))) 38)))
-(((-745) (-10 -7 (-15 -1766 ((-1031) (-225) (-563) (-563) (-563) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))) (-15 -3677 ((-1031) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))))) (-15 -3826 ((-1031) (-225) (-563) (-563) (-225) (-1151) (-225) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))) (-15 -1758 ((-1031) (-225) (-563) (-563) (-1151) (-563) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))) (-15 -1313 ((-1031) (-684 (-225)) (-684 (-225)) (-563) (-225) (-225) (-225) (-563) (-563) (-563) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))))) (-15 -4070 ((-1031) (-225) (-225) (-563) (-225) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-388)) (|:| |fp| (-85 FCNG))))) (-15 -1742 ((-1031) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL))))) (-15 -1742 ((-1031) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL))) (-388) (-388))) (-15 -4268 ((-1031) (-563) (-563) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-388)) (|:| |fp| (-76 G JACOBG JACGEP))))))) (T -745))
-((-4268 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-75 FCN JACOBF JACEPS)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-76 G JACOBG JACGEP)))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))) (-1742 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL)))) (-5 *8 (-388)) (-5 *2 (-1031)) (-5 *1 (-745)))) (-1742 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL)))) (-5 *2 (-1031)) (-5 *1 (-745)))) (-4070 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7) (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-84 FCNF)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))) (-1313 (*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1031)) (-5 *1 (-745)))) (-1758 (*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10) (-12 (-5 *4 (-563)) (-5 *5 (-1151)) (-5 *6 (-684 (-225))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-388)) (|:| |fp| (-71 PEDERV)))) (-5 *10 (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))) (-3826 (*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9) (-12 (-5 *4 (-563)) (-5 *5 (-1151)) (-5 *6 (-684 (-225))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))) (-3677 (*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))) (-1766 (*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))))
-(-10 -7 (-15 -1766 ((-1031) (-225) (-563) (-563) (-563) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))) (-15 -3677 ((-1031) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))))) (-15 -3826 ((-1031) (-225) (-563) (-563) (-225) (-1151) (-225) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))) (-15 -1758 ((-1031) (-225) (-563) (-563) (-1151) (-563) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))) (-15 -1313 ((-1031) (-684 (-225)) (-684 (-225)) (-563) (-225) (-225) (-225) (-563) (-563) (-563) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))))) (-15 -4070 ((-1031) (-225) (-225) (-563) (-225) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-388)) (|:| |fp| (-85 FCNG))))) (-15 -1742 ((-1031) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL))))) (-15 -1742 ((-1031) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL))) (-388) (-388))) (-15 -4268 ((-1031) (-563) (-563) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-388)) (|:| |fp| (-76 G JACOBG JACGEP))))))
-((-2500 (((-1031) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-670 (-225)) (-563)) 45)) (-3596 (((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-1151) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-388)) (|:| |fp| (-83 BNDY)))) 41)) (-3331 (((-1031) (-563) (-563) (-563) (-563) (-225) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 23)))
-(((-746) (-10 -7 (-15 -3331 ((-1031) (-563) (-563) (-563) (-563) (-225) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3596 ((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-1151) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-388)) (|:| |fp| (-83 BNDY))))) (-15 -2500 ((-1031) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-670 (-225)) (-563))))) (T -746))
-((-2500 (*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 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-670 (-225))) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-746)))) (-3596 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-1151)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-82 PDEF)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1031)) (-5 *1 (-746)))) (-3331 (*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-746)))))
-(-10 -7 (-15 -3331 ((-1031) (-563) (-563) (-563) (-563) (-225) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3596 ((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-1151) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-388)) (|:| |fp| (-83 BNDY))))) (-15 -2500 ((-1031) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-670 (-225)) (-563))))
-((-1453 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-684 (-225)) (-225) (-225) (-563)) 35)) (-3769 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-225) (-225) (-563)) 34)) (-2157 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-684 (-225)) (-225) (-225) (-563)) 33)) (-1603 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 29)) (-3531 (((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 28)) (-4204 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563)) 27)) (-2439 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-563)) 24)) (-1713 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-563)) 23)) (-3279 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563)) 22)) (-4090 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563)) 21)))
-(((-747) (-10 -7 (-15 -4090 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563))) (-15 -3279 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -1713 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -2439 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -4204 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563))) (-15 -3531 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -1603 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2157 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-684 (-225)) (-225) (-225) (-563))) (-15 -3769 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-225) (-225) (-563))) (-15 -1453 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-684 (-225)) (-225) (-225) (-563))))) (T -747))
-((-1453 (*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *2 (-1031)) (-5 *1 (-747)))) (-3769 (*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *2 (-1031)) (-5 *1 (-747)))) (-2157 (*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3) (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *6 (-225)) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-747)))) (-1603 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-747)))) (-3531 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-747)))) (-4204 (*1 *2 *3 *4 *4 *4 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *2 (-1031)) (-5 *1 (-747)))) (-2439 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-747)))) (-1713 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-747)))) (-3279 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-747)))) (-4090 (*1 *2 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-747)))))
-(-10 -7 (-15 -4090 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563))) (-15 -3279 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -1713 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -2439 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -4204 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563))) (-15 -3531 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -1603 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2157 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-684 (-225)) (-225) (-225) (-563))) (-15 -3769 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-225) (-225) (-563))) (-15 -1453 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-684 (-225)) (-225) (-225) (-563))))
-((-2864 (((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563)) 45)) (-1705 (((-1031) (-563) (-563) (-563) (-225) (-684 (-225)) (-684 (-225)) (-563)) 44)) (-2536 (((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563)) 43)) (-3714 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 42)) (-3601 (((-1031) (-1151) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563)) 41)) (-3437 (((-1031) (-1151) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563)) 40)) (-3290 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563) (-563) (-563) (-225) (-684 (-225)) (-563)) 39)) (-4292 (((-1031) (-1151) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-563))) 38)) (-1518 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563)) 35)) (-2223 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563)) 34)) (-3276 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563)) 33)) (-3880 (((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 32)) (-2579 (((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-225) (-563)) 31)) (-1324 (((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-563)) 30)) (-2234 (((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-563) (-563) (-563)) 29)) (-4200 (((-1031) (-563) (-563) (-563) (-225) (-225) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563) (-684 (-563)) (-563) (-563) (-563)) 28)) (-2187 (((-1031) (-563) (-684 (-225)) (-225) (-563)) 24)) (-1406 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 21)))
-(((-748) (-10 -7 (-15 -1406 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2187 ((-1031) (-563) (-684 (-225)) (-225) (-563))) (-15 -4200 ((-1031) (-563) (-563) (-563) (-225) (-225) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563) (-684 (-563)) (-563) (-563) (-563))) (-15 -2234 ((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-563) (-563) (-563))) (-15 -1324 ((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-563))) (-15 -2579 ((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-225) (-563))) (-15 -3880 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3276 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563))) (-15 -2223 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563))) (-15 -1518 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -4292 ((-1031) (-1151) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-563)))) (-15 -3290 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563) (-563) (-563) (-225) (-684 (-225)) (-563))) (-15 -3437 ((-1031) (-1151) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563))) (-15 -3601 ((-1031) (-1151) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3714 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2536 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563))) (-15 -1705 ((-1031) (-563) (-563) (-563) (-225) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2864 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563))))) (T -748))
-((-2864 (*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-748)))) (-1705 (*1 *2 *3 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-2536 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3714 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3601 (*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3437 (*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4) (-12 (-5 *3 (-1151)) (-5 *5 (-684 (-225))) (-5 *6 (-225)) (-5 *7 (-684 (-563))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3290 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3) (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *6 (-225)) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-4292 (*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7) (-12 (-5 *3 (-1151)) (-5 *5 (-684 (-225))) (-5 *6 (-225)) (-5 *7 (-684 (-563))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-1518 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-748)))) (-2223 (*1 *2 *3 *4 *4 *5 *3 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3276 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3880 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-748)))) (-2579 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-1324 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-2234 (*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-4200 (*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3) (-12 (-5 *5 (-684 (-225))) (-5 *6 (-684 (-563))) (-5 *3 (-563)) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-2187 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-1406 (*1 *2 *3 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-748)))))
-(-10 -7 (-15 -1406 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2187 ((-1031) (-563) (-684 (-225)) (-225) (-563))) (-15 -4200 ((-1031) (-563) (-563) (-563) (-225) (-225) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563) (-684 (-563)) (-563) (-563) (-563))) (-15 -2234 ((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-563) (-563) (-563))) (-15 -1324 ((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-563))) (-15 -2579 ((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-225) (-563))) (-15 -3880 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3276 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563))) (-15 -2223 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563))) (-15 -1518 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -4292 ((-1031) (-1151) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-563)))) (-15 -3290 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563) (-563) (-563) (-225) (-684 (-225)) (-563))) (-15 -3437 ((-1031) (-1151) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563))) (-15 -3601 ((-1031) (-1151) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3714 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2536 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563))) (-15 -1705 ((-1031) (-563) (-563) (-563) (-225) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2864 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563))))
-((-4020 (((-1031) (-563) (-563) (-563) (-225) (-684 (-225)) (-563) (-684 (-225)) (-563)) 63)) (-4384 (((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-112) (-225) (-563) (-225) (-225) (-112) (-225) (-225) (-225) (-225) (-112) (-563) (-563) (-563) (-563) (-563) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-563)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN)))) 62)) (-1290 (((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-225) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-112) (-112) (-112) (-563) (-563) (-684 (-225)) (-684 (-563)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-65 QPHESS)))) 58)) (-4198 (((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-112) (-563) (-563) (-684 (-225)) (-563)) 51)) (-2974 (((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-66 FUNCT1)))) 50)) (-3228 (((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-63 LSFUN2)))) 46)) (-1964 (((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-79 LSFUN1)))) 42)) (-2994 (((-1031) (-563) (-225) (-225) (-563) (-225) (-112) (-225) (-225) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN)))) 38)))
-(((-749) (-10 -7 (-15 -2994 ((-1031) (-563) (-225) (-225) (-563) (-225) (-112) (-225) (-225) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN))))) (-15 -1964 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-79 LSFUN1))))) (-15 -3228 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-63 LSFUN2))))) (-15 -2974 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-66 FUNCT1))))) (-15 -4198 ((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-112) (-563) (-563) (-684 (-225)) (-563))) (-15 -1290 ((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-225) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-112) (-112) (-112) (-563) (-563) (-684 (-225)) (-684 (-563)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-65 QPHESS))))) (-15 -4384 ((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-112) (-225) (-563) (-225) (-225) (-112) (-225) (-225) (-225) (-225) (-112) (-563) (-563) (-563) (-563) (-563) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-563)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN))))) (-15 -4020 ((-1031) (-563) (-563) (-563) (-225) (-684 (-225)) (-563) (-684 (-225)) (-563))))) (T -749))
-((-4020 (*1 *2 *3 *3 *3 *4 *5 *3 *5 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-749)))) (-4384 (*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 (-684 (-225))) (-5 *5 (-112)) (-5 *6 (-225)) (-5 *7 (-684 (-563))) (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-80 CONFUN)))) (-5 *9 (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN)))) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-749)))) (-1290 (*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 (-684 (-225))) (-5 *6 (-112)) (-5 *7 (-684 (-563))) (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-65 QPHESS)))) (-5 *3 (-563)) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-749)))) (-4198 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-112)) (-5 *2 (-1031)) (-5 *1 (-749)))) (-2974 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-66 FUNCT1)))) (-5 *2 (-1031)) (-5 *1 (-749)))) (-3228 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-63 LSFUN2)))) (-5 *2 (-1031)) (-5 *1 (-749)))) (-1964 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-79 LSFUN1)))) (-5 *2 (-1031)) (-5 *1 (-749)))) (-2994 (*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7) (-12 (-5 *3 (-563)) (-5 *5 (-112)) (-5 *6 (-684 (-225))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN)))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-749)))))
-(-10 -7 (-15 -2994 ((-1031) (-563) (-225) (-225) (-563) (-225) (-112) (-225) (-225) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN))))) (-15 -1964 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-79 LSFUN1))))) (-15 -3228 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-63 LSFUN2))))) (-15 -2974 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-66 FUNCT1))))) (-15 -4198 ((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-112) (-563) (-563) (-684 (-225)) (-563))) (-15 -1290 ((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-225) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-112) (-112) (-112) (-563) (-563) (-684 (-225)) (-684 (-563)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-65 QPHESS))))) (-15 -4384 ((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-112) (-225) (-563) (-225) (-225) (-112) (-225) (-225) (-225) (-225) (-112) (-563) (-563) (-563) (-563) (-563) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-563)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN))))) (-15 -4020 ((-1031) (-563) (-563) (-563) (-225) (-684 (-225)) (-563) (-684 (-225)) (-563))))
-((-2961 (((-1031) (-1151) (-563) (-563) (-563) (-563) (-684 (-169 (-225))) (-684 (-169 (-225))) (-563)) 47)) (-2774 (((-1031) (-1151) (-1151) (-563) (-563) (-684 (-169 (-225))) (-563) (-684 (-169 (-225))) (-563) (-563) (-684 (-169 (-225))) (-563)) 46)) (-3989 (((-1031) (-563) (-563) (-563) (-684 (-169 (-225))) (-563)) 45)) (-2934 (((-1031) (-1151) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563)) 40)) (-4120 (((-1031) (-1151) (-1151) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-684 (-225)) (-563)) 39)) (-2124 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-563)) 36)) (-3551 (((-1031) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563)) 35)) (-4219 (((-1031) (-563) (-563) (-563) (-563) (-640 (-112)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-225) (-225) (-563)) 34)) (-3786 (((-1031) (-563) (-563) (-563) (-684 (-563)) (-684 (-563)) (-684 (-563)) (-684 (-563)) (-112) (-225) (-112) (-684 (-563)) (-684 (-225)) (-563)) 33)) (-2406 (((-1031) (-563) (-563) (-563) (-563) (-225) (-112) (-112) (-640 (-112)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-563)) 32)))
-(((-750) (-10 -7 (-15 -2406 ((-1031) (-563) (-563) (-563) (-563) (-225) (-112) (-112) (-640 (-112)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-563))) (-15 -3786 ((-1031) (-563) (-563) (-563) (-684 (-563)) (-684 (-563)) (-684 (-563)) (-684 (-563)) (-112) (-225) (-112) (-684 (-563)) (-684 (-225)) (-563))) (-15 -4219 ((-1031) (-563) (-563) (-563) (-563) (-640 (-112)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-225) (-225) (-563))) (-15 -3551 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563))) (-15 -2124 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-563))) (-15 -4120 ((-1031) (-1151) (-1151) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-684 (-225)) (-563))) (-15 -2934 ((-1031) (-1151) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3989 ((-1031) (-563) (-563) (-563) (-684 (-169 (-225))) (-563))) (-15 -2774 ((-1031) (-1151) (-1151) (-563) (-563) (-684 (-169 (-225))) (-563) (-684 (-169 (-225))) (-563) (-563) (-684 (-169 (-225))) (-563))) (-15 -2961 ((-1031) (-1151) (-563) (-563) (-563) (-563) (-684 (-169 (-225))) (-684 (-169 (-225))) (-563))))) (T -750))
-((-2961 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-169 (-225)))) (-5 *2 (-1031)) (-5 *1 (-750)))) (-2774 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-169 (-225)))) (-5 *2 (-1031)) (-5 *1 (-750)))) (-3989 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-169 (-225)))) (-5 *2 (-1031)) (-5 *1 (-750)))) (-2934 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-750)))) (-4120 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-750)))) (-2124 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-750)))) (-3551 (*1 *2 *3 *4 *3 *5 *3) (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-750)))) (-4219 (*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3) (-12 (-5 *4 (-640 (-112))) (-5 *5 (-684 (-225))) (-5 *6 (-684 (-563))) (-5 *7 (-225)) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-750)))) (-3786 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3) (-12 (-5 *4 (-684 (-563))) (-5 *5 (-112)) (-5 *7 (-684 (-225))) (-5 *3 (-563)) (-5 *6 (-225)) (-5 *2 (-1031)) (-5 *1 (-750)))) (-2406 (*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3) (-12 (-5 *6 (-640 (-112))) (-5 *7 (-684 (-225))) (-5 *8 (-684 (-563))) (-5 *3 (-563)) (-5 *4 (-225)) (-5 *5 (-112)) (-5 *2 (-1031)) (-5 *1 (-750)))))
-(-10 -7 (-15 -2406 ((-1031) (-563) (-563) (-563) (-563) (-225) (-112) (-112) (-640 (-112)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-563))) (-15 -3786 ((-1031) (-563) (-563) (-563) (-684 (-563)) (-684 (-563)) (-684 (-563)) (-684 (-563)) (-112) (-225) (-112) (-684 (-563)) (-684 (-225)) (-563))) (-15 -4219 ((-1031) (-563) (-563) (-563) (-563) (-640 (-112)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-225) (-225) (-563))) (-15 -3551 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563))) (-15 -2124 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-563))) (-15 -4120 ((-1031) (-1151) (-1151) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-684 (-225)) (-563))) (-15 -2934 ((-1031) (-1151) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3989 ((-1031) (-563) (-563) (-563) (-684 (-169 (-225))) (-563))) (-15 -2774 ((-1031) (-1151) (-1151) (-563) (-563) (-684 (-169 (-225))) (-563) (-684 (-169 (-225))) (-563) (-563) (-684 (-169 (-225))) (-563))) (-15 -2961 ((-1031) (-1151) (-563) (-563) (-563) (-563) (-684 (-169 (-225))) (-684 (-169 (-225))) (-563))))
-((-3389 (((-1031) (-563) (-563) (-563) (-563) (-563) (-112) (-563) (-112) (-563) (-684 (-169 (-225))) (-684 (-169 (-225))) (-563)) 66)) (-1676 (((-1031) (-563) (-563) (-563) (-563) (-563) (-112) (-563) (-112) (-563) (-684 (-225)) (-684 (-225)) (-563)) 61)) (-2172 (((-1031) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE))) (-388)) 56) (((-1031) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE)))) 55)) (-1473 (((-1031) (-563) (-563) (-563) (-225) (-112) (-563) (-684 (-225)) (-684 (-225)) (-563)) 37)) (-4163 (((-1031) (-563) (-563) (-225) (-225) (-563) (-563) (-684 (-225)) (-563)) 33)) (-3456 (((-1031) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-563) (-563) (-563)) 30)) (-3690 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563)) 29)) (-2252 (((-1031) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563)) 28)) (-3175 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563)) 27)) (-3334 (((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563)) 26)) (-3169 (((-1031) (-563) (-563) (-684 (-225)) (-563)) 25)) (-3037 (((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563)) 24)) (-2527 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563)) 23)) (-1651 (((-1031) (-684 (-225)) (-563) (-563) (-563) (-563)) 22)) (-3597 (((-1031) (-563) (-563) (-684 (-225)) (-563)) 21)))
-(((-751) (-10 -7 (-15 -3597 ((-1031) (-563) (-563) (-684 (-225)) (-563))) (-15 -1651 ((-1031) (-684 (-225)) (-563) (-563) (-563) (-563))) (-15 -2527 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3037 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3169 ((-1031) (-563) (-563) (-684 (-225)) (-563))) (-15 -3334 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563))) (-15 -3175 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2252 ((-1031) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3690 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3456 ((-1031) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-563) (-563) (-563))) (-15 -4163 ((-1031) (-563) (-563) (-225) (-225) (-563) (-563) (-684 (-225)) (-563))) (-15 -1473 ((-1031) (-563) (-563) (-563) (-225) (-112) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2172 ((-1031) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE))))) (-15 -2172 ((-1031) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE))) (-388))) (-15 -1676 ((-1031) (-563) (-563) (-563) (-563) (-563) (-112) (-563) (-112) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3389 ((-1031) (-563) (-563) (-563) (-563) (-563) (-112) (-563) (-112) (-563) (-684 (-169 (-225))) (-684 (-169 (-225))) (-563))))) (T -751))
-((-3389 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-112)) (-5 *5 (-684 (-169 (-225)))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-1676 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-112)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2172 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-388)) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2172 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-751)))) (-1473 (*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3) (-12 (-5 *3 (-563)) (-5 *5 (-112)) (-5 *6 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-751)))) (-4163 (*1 *2 *3 *3 *4 *4 *3 *3 *5 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-751)))) (-3456 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-751)))) (-3690 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2252 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-3175 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-3334 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-3169 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-3037 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2527 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-1651 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-751)))) (-3597 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))))
-(-10 -7 (-15 -3597 ((-1031) (-563) (-563) (-684 (-225)) (-563))) (-15 -1651 ((-1031) (-684 (-225)) (-563) (-563) (-563) (-563))) (-15 -2527 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3037 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3169 ((-1031) (-563) (-563) (-684 (-225)) (-563))) (-15 -3334 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563))) (-15 -3175 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2252 ((-1031) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3690 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3456 ((-1031) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-563) (-563) (-563))) (-15 -4163 ((-1031) (-563) (-563) (-225) (-225) (-563) (-563) (-684 (-225)) (-563))) (-15 -1473 ((-1031) (-563) (-563) (-563) (-225) (-112) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2172 ((-1031) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE))))) (-15 -2172 ((-1031) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE))) (-388))) (-15 -1676 ((-1031) (-563) (-563) (-563) (-563) (-563) (-112) (-563) (-112) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3389 ((-1031) (-563) (-563) (-563) (-563) (-563) (-112) (-563) (-112) (-563) (-684 (-169 (-225))) (-684 (-169 (-225))) (-563))))
-((-3642 (((-1031) (-563) (-563) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-70 APROD)))) 61)) (-3805 (((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-563)) (-563) (-684 (-225)) (-563) (-563) (-563) (-563)) 57)) (-2547 (((-1031) (-563) (-684 (-225)) (-112) (-225) (-563) (-563) (-563) (-563) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-388)) (|:| |fp| (-73 MSOLVE)))) 56)) (-1942 (((-1031) (-563) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563) (-684 (-563)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563)) 37)) (-4023 (((-1031) (-563) (-563) (-563) (-225) (-563) (-684 (-225)) (-684 (-225)) (-563)) 36)) (-2942 (((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 33)) (-4058 (((-1031) (-563) (-684 (-225)) (-563) (-684 (-563)) (-684 (-563)) (-563) (-684 (-563)) (-684 (-225))) 32)) (-1700 (((-1031) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-563)) 28)) (-2859 (((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563)) 27)) (-3293 (((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563)) 26)) (-3691 (((-1031) (-563) (-684 (-169 (-225))) (-563) (-563) (-563) (-563) (-684 (-169 (-225))) (-563)) 22)))
-(((-752) (-10 -7 (-15 -3691 ((-1031) (-563) (-684 (-169 (-225))) (-563) (-563) (-563) (-563) (-684 (-169 (-225))) (-563))) (-15 -3293 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -2859 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -1700 ((-1031) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-563))) (-15 -4058 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-563)) (-684 (-563)) (-563) (-684 (-563)) (-684 (-225)))) (-15 -2942 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -4023 ((-1031) (-563) (-563) (-563) (-225) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -1942 ((-1031) (-563) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563) (-684 (-563)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563))) (-15 -2547 ((-1031) (-563) (-684 (-225)) (-112) (-225) (-563) (-563) (-563) (-563) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-388)) (|:| |fp| (-73 MSOLVE))))) (-15 -3805 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-563)) (-563) (-684 (-225)) (-563) (-563) (-563) (-563))) (-15 -3642 ((-1031) (-563) (-563) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-70 APROD))))))) (T -752))
-((-3642 (*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-70 APROD)))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-752)))) (-3805 (*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3) (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-752)))) (-2547 (*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-112)) (-5 *6 (-225)) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-68 APROD)))) (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-73 MSOLVE)))) (-5 *2 (-1031)) (-5 *1 (-752)))) (-1942 (*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3) (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-752)))) (-4023 (*1 *2 *3 *3 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-752)))) (-2942 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-752)))) (-4058 (*1 *2 *3 *4 *3 *5 *5 *3 *5 *4) (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-752)))) (-1700 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-752)))) (-2859 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-752)))) (-3293 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-752)))) (-3691 (*1 *2 *3 *4 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-169 (-225)))) (-5 *2 (-1031)) (-5 *1 (-752)))))
-(-10 -7 (-15 -3691 ((-1031) (-563) (-684 (-169 (-225))) (-563) (-563) (-563) (-563) (-684 (-169 (-225))) (-563))) (-15 -3293 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -2859 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -1700 ((-1031) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-563))) (-15 -4058 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-563)) (-684 (-563)) (-563) (-684 (-563)) (-684 (-225)))) (-15 -2942 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -4023 ((-1031) (-563) (-563) (-563) (-225) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -1942 ((-1031) (-563) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563) (-684 (-563)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563))) (-15 -2547 ((-1031) (-563) (-684 (-225)) (-112) (-225) (-563) (-563) (-563) (-563) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-388)) (|:| |fp| (-73 MSOLVE))))) (-15 -3805 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-563)) (-563) (-684 (-225)) (-563) (-563) (-563) (-563))) (-15 -3642 ((-1031) (-563) (-563) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-70 APROD))))))
-((-2928 (((-1031) (-1151) (-563) (-563) (-684 (-225)) (-563) (-563) (-684 (-225))) 29)) (-1387 (((-1031) (-1151) (-563) (-563) (-684 (-225))) 28)) (-4306 (((-1031) (-1151) (-563) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563) (-684 (-225))) 27)) (-4360 (((-1031) (-563) (-563) (-563) (-684 (-225))) 21)))
-(((-753) (-10 -7 (-15 -4360 ((-1031) (-563) (-563) (-563) (-684 (-225)))) (-15 -4306 ((-1031) (-1151) (-563) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563) (-684 (-225)))) (-15 -1387 ((-1031) (-1151) (-563) (-563) (-684 (-225)))) (-15 -2928 ((-1031) (-1151) (-563) (-563) (-684 (-225)) (-563) (-563) (-684 (-225)))))) (T -753))
-((-2928 (*1 *2 *3 *4 *4 *5 *4 *4 *5) (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-753)))) (-1387 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-753)))) (-4306 (*1 *2 *3 *4 *4 *5 *4 *6 *4 *5) (-12 (-5 *3 (-1151)) (-5 *5 (-684 (-225))) (-5 *6 (-684 (-563))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-753)))) (-4360 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-753)))))
-(-10 -7 (-15 -4360 ((-1031) (-563) (-563) (-563) (-684 (-225)))) (-15 -4306 ((-1031) (-1151) (-563) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563) (-684 (-225)))) (-15 -1387 ((-1031) (-1151) (-563) (-563) (-684 (-225)))) (-15 -2928 ((-1031) (-1151) (-563) (-563) (-684 (-225)) (-563) (-563) (-684 (-225)))))
-((-1517 (((-1031) (-225) (-225) (-225) (-225) (-563)) 62)) (-3341 (((-1031) (-225) (-225) (-225) (-563)) 61)) (-3001 (((-1031) (-225) (-225) (-225) (-563)) 60)) (-3998 (((-1031) (-225) (-225) (-563)) 59)) (-3110 (((-1031) (-225) (-563)) 58)) (-2882 (((-1031) (-225) (-563)) 57)) (-4135 (((-1031) (-225) (-563)) 56)) (-2804 (((-1031) (-225) (-563)) 55)) (-3676 (((-1031) (-225) (-563)) 54)) (-4142 (((-1031) (-225) (-563)) 53)) (-2198 (((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563)) 52)) (-3271 (((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563)) 51)) (-1956 (((-1031) (-225) (-563)) 50)) (-2946 (((-1031) (-225) (-563)) 49)) (-4052 (((-1031) (-225) (-563)) 48)) (-2066 (((-1031) (-225) (-563)) 47)) (-3088 (((-1031) (-563) (-225) (-169 (-225)) (-563) (-1151) (-563)) 46)) (-2558 (((-1031) (-1151) (-169 (-225)) (-1151) (-563)) 45)) (-2073 (((-1031) (-1151) (-169 (-225)) (-1151) (-563)) 44)) (-4161 (((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563)) 43)) (-2860 (((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563)) 42)) (-3778 (((-1031) (-225) (-563)) 39)) (-2369 (((-1031) (-225) (-563)) 38)) (-1908 (((-1031) (-225) (-563)) 37)) (-1638 (((-1031) (-225) (-563)) 36)) (-3053 (((-1031) (-225) (-563)) 35)) (-3325 (((-1031) (-225) (-563)) 34)) (-3808 (((-1031) (-225) (-563)) 33)) (-1931 (((-1031) (-225) (-563)) 32)) (-2556 (((-1031) (-225) (-563)) 31)) (-3054 (((-1031) (-225) (-563)) 30)) (-2937 (((-1031) (-225) (-225) (-225) (-563)) 29)) (-1428 (((-1031) (-225) (-563)) 28)) (-3541 (((-1031) (-225) (-563)) 27)) (-2693 (((-1031) (-225) (-563)) 26)) (-4115 (((-1031) (-225) (-563)) 25)) (-3587 (((-1031) (-225) (-563)) 24)) (-3094 (((-1031) (-169 (-225)) (-563)) 21)))
-(((-754) (-10 -7 (-15 -3094 ((-1031) (-169 (-225)) (-563))) (-15 -3587 ((-1031) (-225) (-563))) (-15 -4115 ((-1031) (-225) (-563))) (-15 -2693 ((-1031) (-225) (-563))) (-15 -3541 ((-1031) (-225) (-563))) (-15 -1428 ((-1031) (-225) (-563))) (-15 -2937 ((-1031) (-225) (-225) (-225) (-563))) (-15 -3054 ((-1031) (-225) (-563))) (-15 -2556 ((-1031) (-225) (-563))) (-15 -1931 ((-1031) (-225) (-563))) (-15 -3808 ((-1031) (-225) (-563))) (-15 -3325 ((-1031) (-225) (-563))) (-15 -3053 ((-1031) (-225) (-563))) (-15 -1638 ((-1031) (-225) (-563))) (-15 -1908 ((-1031) (-225) (-563))) (-15 -2369 ((-1031) (-225) (-563))) (-15 -3778 ((-1031) (-225) (-563))) (-15 -2860 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -4161 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -2073 ((-1031) (-1151) (-169 (-225)) (-1151) (-563))) (-15 -2558 ((-1031) (-1151) (-169 (-225)) (-1151) (-563))) (-15 -3088 ((-1031) (-563) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -2066 ((-1031) (-225) (-563))) (-15 -4052 ((-1031) (-225) (-563))) (-15 -2946 ((-1031) (-225) (-563))) (-15 -1956 ((-1031) (-225) (-563))) (-15 -3271 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -2198 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -4142 ((-1031) (-225) (-563))) (-15 -3676 ((-1031) (-225) (-563))) (-15 -2804 ((-1031) (-225) (-563))) (-15 -4135 ((-1031) (-225) (-563))) (-15 -2882 ((-1031) (-225) (-563))) (-15 -3110 ((-1031) (-225) (-563))) (-15 -3998 ((-1031) (-225) (-225) (-563))) (-15 -3001 ((-1031) (-225) (-225) (-225) (-563))) (-15 -3341 ((-1031) (-225) (-225) (-225) (-563))) (-15 -1517 ((-1031) (-225) (-225) (-225) (-225) (-563))))) (T -754))
-((-1517 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-3341 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-3001 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-3998 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-3110 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2882 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-4135 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2804 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-3676 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-4142 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2198 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151)) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-3271 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151)) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1956 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2946 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-4052 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2066 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-3088 (*1 *2 *3 *4 *5 *3 *6 *3) (-12 (-5 *3 (-563)) (-5 *5 (-169 (-225))) (-5 *6 (-1151)) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2558 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1151)) (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2073 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1151)) (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-4161 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151)) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2860 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151)) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-3778 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2369 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1908 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1638 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-3053 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-3325 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-3808 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1931 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2556 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-3054 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2937 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1428 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-3541 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2693 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-4115 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-3587 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-3094 (*1 *2 *3 *4) (-12 (-5 *3 (-169 (-225))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(-10 -7 (-15 -3094 ((-1031) (-169 (-225)) (-563))) (-15 -3587 ((-1031) (-225) (-563))) (-15 -4115 ((-1031) (-225) (-563))) (-15 -2693 ((-1031) (-225) (-563))) (-15 -3541 ((-1031) (-225) (-563))) (-15 -1428 ((-1031) (-225) (-563))) (-15 -2937 ((-1031) (-225) (-225) (-225) (-563))) (-15 -3054 ((-1031) (-225) (-563))) (-15 -2556 ((-1031) (-225) (-563))) (-15 -1931 ((-1031) (-225) (-563))) (-15 -3808 ((-1031) (-225) (-563))) (-15 -3325 ((-1031) (-225) (-563))) (-15 -3053 ((-1031) (-225) (-563))) (-15 -1638 ((-1031) (-225) (-563))) (-15 -1908 ((-1031) (-225) (-563))) (-15 -2369 ((-1031) (-225) (-563))) (-15 -3778 ((-1031) (-225) (-563))) (-15 -2860 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -4161 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -2073 ((-1031) (-1151) (-169 (-225)) (-1151) (-563))) (-15 -2558 ((-1031) (-1151) (-169 (-225)) (-1151) (-563))) (-15 -3088 ((-1031) (-563) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -2066 ((-1031) (-225) (-563))) (-15 -4052 ((-1031) (-225) (-563))) (-15 -2946 ((-1031) (-225) (-563))) (-15 -1956 ((-1031) (-225) (-563))) (-15 -3271 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -2198 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -4142 ((-1031) (-225) (-563))) (-15 -3676 ((-1031) (-225) (-563))) (-15 -2804 ((-1031) (-225) (-563))) (-15 -4135 ((-1031) (-225) (-563))) (-15 -2882 ((-1031) (-225) (-563))) (-15 -3110 ((-1031) (-225) (-563))) (-15 -3998 ((-1031) (-225) (-225) (-563))) (-15 -3001 ((-1031) (-225) (-225) (-225) (-563))) (-15 -3341 ((-1031) (-225) (-225) (-225) (-563))) (-15 -1517 ((-1031) (-225) (-225) (-225) (-225) (-563))))
-((-3133 (((-1262)) 18)) (-1620 (((-1151)) 22)) (-3944 (((-1151)) 21)) (-3884 (((-1097) (-1169) (-684 (-563))) 37) (((-1097) (-1169) (-684 (-225))) 32)) (-2001 (((-112)) 16)) (-2246 (((-1151) (-1151)) 25)))
-(((-755) (-10 -7 (-15 -3944 ((-1151))) (-15 -1620 ((-1151))) (-15 -2246 ((-1151) (-1151))) (-15 -3884 ((-1097) (-1169) (-684 (-225)))) (-15 -3884 ((-1097) (-1169) (-684 (-563)))) (-15 -2001 ((-112))) (-15 -3133 ((-1262))))) (T -755))
-((-3133 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-755)))) (-2001 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-755)))) (-3884 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-684 (-563))) (-5 *2 (-1097)) (-5 *1 (-755)))) (-3884 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-684 (-225))) (-5 *2 (-1097)) (-5 *1 (-755)))) (-2246 (*1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-755)))) (-1620 (*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-755)))) (-3944 (*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-755)))))
-(-10 -7 (-15 -3944 ((-1151))) (-15 -1620 ((-1151))) (-15 -2246 ((-1151) (-1151))) (-15 -3884 ((-1097) (-1169) (-684 (-225)))) (-15 -3884 ((-1097) (-1169) (-684 (-563)))) (-15 -2001 ((-112))) (-15 -3133 ((-1262))))
-((-2146 (($ $ $) 10)) (-1361 (($ $ $ $) 9)) (-3399 (($ $ $) 12)))
-(((-756 |#1|) (-10 -8 (-15 -3399 (|#1| |#1| |#1|)) (-15 -2146 (|#1| |#1| |#1|)) (-15 -1361 (|#1| |#1| |#1| |#1|))) (-757)) (T -756))
-NIL
-(-10 -8 (-15 -3399 (|#1| |#1| |#1|)) (-15 -2146 (|#1| |#1| |#1|)) (-15 -1361 (|#1| |#1| |#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-2300 (($ $ (-917)) 28)) (-1494 (($ $ (-917)) 29)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-2146 (($ $ $) 25)) (-1693 (((-858) $) 11)) (-1361 (($ $ $ $) 26)) (-3399 (($ $ $) 24)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 30)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 27)))
+((-3641 (((-1031) (-684 (-225)) (-563) (-112) (-563)) 25)) (-3629 (((-1031) (-684 (-225)) (-563) (-112) (-563)) 24)))
+(((-741) (-10 -7 (-15 -3629 ((-1031) (-684 (-225)) (-563) (-112) (-563))) (-15 -3641 ((-1031) (-684 (-225)) (-563) (-112) (-563))))) (T -741))
+((-3641 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-112)) (-5 *2 (-1031)) (-5 *1 (-741)))) (-3629 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-112)) (-5 *2 (-1031)) (-5 *1 (-741)))))
+(-10 -7 (-15 -3629 ((-1031) (-684 (-225)) (-563) (-112) (-563))) (-15 -3641 ((-1031) (-684 (-225)) (-563) (-112) (-563))))
+((-3672 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-74 FCN)))) 43)) (-3661 (((-1031) (-563) (-563) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-81 FCN)))) 39)) (-3650 (((-1031) (-225) (-225) (-225) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195)))) 32)))
+(((-742) (-10 -7 (-15 -3650 ((-1031) (-225) (-225) (-225) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195))))) (-15 -3661 ((-1031) (-563) (-563) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-81 FCN))))) (-15 -3672 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-74 FCN))))))) (T -742))
+((-3672 (*1 *2 *3 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1031)) (-5 *1 (-742)))) (-3661 (*1 *2 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1031)) (-5 *1 (-742)))) (-3650 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195)))) (-5 *2 (-1031)) (-5 *1 (-742)))))
+(-10 -7 (-15 -3650 ((-1031) (-225) (-225) (-225) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195))))) (-15 -3661 ((-1031) (-563) (-563) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-81 FCN))))) (-15 -3672 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-74 FCN))))))
+((-3815 (((-1031) (-563) (-563) (-684 (-225)) (-563)) 34)) (-3803 (((-1031) (-563) (-563) (-684 (-225)) (-563)) 33)) (-3791 (((-1031) (-563) (-684 (-225)) (-563)) 32)) (-3779 (((-1031) (-563) (-684 (-225)) (-563)) 31)) (-3770 (((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 30)) (-3758 (((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 29)) (-3747 (((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-563)) 28)) (-3738 (((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-563)) 27)) (-3724 (((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563)) 24)) (-3713 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563)) 23)) (-3698 (((-1031) (-563) (-684 (-225)) (-563)) 22)) (-3685 (((-1031) (-563) (-684 (-225)) (-563)) 21)))
+(((-743) (-10 -7 (-15 -3685 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -3698 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -3713 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3724 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3738 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3747 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3758 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3770 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3779 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -3791 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -3803 ((-1031) (-563) (-563) (-684 (-225)) (-563))) (-15 -3815 ((-1031) (-563) (-563) (-684 (-225)) (-563))))) (T -743))
+((-3815 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3803 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3791 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3779 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3770 (*1 *2 *3 *3 *4 *5 *5 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3758 (*1 *2 *3 *3 *4 *5 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3747 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3738 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3724 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3713 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3698 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))) (-3685 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-743)))))
+(-10 -7 (-15 -3685 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -3698 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -3713 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3724 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3738 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3747 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3758 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3770 ((-1031) (-563) (-563) (-1151) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3779 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -3791 ((-1031) (-563) (-684 (-225)) (-563))) (-15 -3803 ((-1031) (-563) (-563) (-684 (-225)) (-563))) (-15 -3815 ((-1031) (-563) (-563) (-684 (-225)) (-563))))
+((-2735 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-225) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN)))) 52)) (-2723 (((-1031) (-684 (-225)) (-684 (-225)) (-563) (-563)) 51)) (-2713 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN)))) 50)) (-2703 (((-1031) (-225) (-225) (-563) (-563) (-563) (-563)) 46)) (-2693 (((-1031) (-225) (-225) (-563) (-225) (-563) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) 45)) (-2685 (((-1031) (-225) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) 44)) (-2677 (((-1031) (-225) (-225) (-225) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) 43)) (-2666 (((-1031) (-225) (-225) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) 42)) (-3853 (((-1031) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195)))) 38)) (-3844 (((-1031) (-225) (-225) (-563) (-684 (-225)) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195)))) 37)) (-3833 (((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195)))) 33)) (-3826 (((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195)))) 32)))
+(((-744) (-10 -7 (-15 -3826 ((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195))))) (-15 -3833 ((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195))))) (-15 -3844 ((-1031) (-225) (-225) (-563) (-684 (-225)) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195))))) (-15 -3853 ((-1031) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195))))) (-15 -2666 ((-1031) (-225) (-225) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -2677 ((-1031) (-225) (-225) (-225) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -2685 ((-1031) (-225) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -2693 ((-1031) (-225) (-225) (-563) (-225) (-563) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -2703 ((-1031) (-225) (-225) (-563) (-563) (-563) (-563))) (-15 -2713 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN))))) (-15 -2723 ((-1031) (-684 (-225)) (-684 (-225)) (-563) (-563))) (-15 -2735 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-225) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN))))))) (T -744))
+((-2735 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-2723 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-744)))) (-2713 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-2703 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-744)))) (-2693 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-2685 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-2677 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-2666 (*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-3853 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-3844 (*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6) (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195)))) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-744)))) (-3833 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195)))) (-5 *2 (-1031)) (-5 *1 (-744)))) (-3826 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195)))) (-5 *2 (-1031)) (-5 *1 (-744)))))
+(-10 -7 (-15 -3826 ((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195))))) (-15 -3833 ((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195))))) (-15 -3844 ((-1031) (-225) (-225) (-563) (-684 (-225)) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195))))) (-15 -3853 ((-1031) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195))))) (-15 -2666 ((-1031) (-225) (-225) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -2677 ((-1031) (-225) (-225) (-225) (-225) (-563) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -2685 ((-1031) (-225) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -2693 ((-1031) (-225) (-225) (-563) (-225) (-563) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G))))) (-15 -2703 ((-1031) (-225) (-225) (-563) (-563) (-563) (-563))) (-15 -2713 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-225) (-563) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN))))) (-15 -2723 ((-1031) (-684 (-225)) (-684 (-225)) (-563) (-563))) (-15 -2735 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-225) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN))))))
+((-2823 (((-1031) (-563) (-563) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-388)) (|:| |fp| (-76 G JACOBG JACGEP)))) 76)) (-2811 (((-1031) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL))) (-388) (-388)) 69) (((-1031) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL)))) 68)) (-2800 (((-1031) (-225) (-225) (-563) (-225) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-388)) (|:| |fp| (-85 FCNG)))) 57)) (-2790 (((-1031) (-684 (-225)) (-684 (-225)) (-563) (-225) (-225) (-225) (-563) (-563) (-563) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) 50)) (-2780 (((-1031) (-225) (-563) (-563) (-1151) (-563) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT)))) 49)) (-2768 (((-1031) (-225) (-563) (-563) (-225) (-1151) (-225) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT)))) 45)) (-2758 (((-1031) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) 42)) (-2747 (((-1031) (-225) (-563) (-563) (-563) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT)))) 38)))
+(((-745) (-10 -7 (-15 -2747 ((-1031) (-225) (-563) (-563) (-563) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))) (-15 -2758 ((-1031) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))))) (-15 -2768 ((-1031) (-225) (-563) (-563) (-225) (-1151) (-225) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))) (-15 -2780 ((-1031) (-225) (-563) (-563) (-1151) (-563) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))) (-15 -2790 ((-1031) (-684 (-225)) (-684 (-225)) (-563) (-225) (-225) (-225) (-563) (-563) (-563) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))))) (-15 -2800 ((-1031) (-225) (-225) (-563) (-225) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-388)) (|:| |fp| (-85 FCNG))))) (-15 -2811 ((-1031) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL))))) (-15 -2811 ((-1031) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL))) (-388) (-388))) (-15 -2823 ((-1031) (-563) (-563) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-388)) (|:| |fp| (-76 G JACOBG JACGEP))))))) (T -745))
+((-2823 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-75 FCN JACOBF JACEPS)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-76 G JACOBG JACGEP)))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))) (-2811 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL)))) (-5 *8 (-388)) (-5 *2 (-1031)) (-5 *1 (-745)))) (-2811 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL)))) (-5 *2 (-1031)) (-5 *1 (-745)))) (-2800 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7) (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-84 FCNF)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))) (-2790 (*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1031)) (-5 *1 (-745)))) (-2780 (*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10) (-12 (-5 *4 (-563)) (-5 *5 (-1151)) (-5 *6 (-684 (-225))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-388)) (|:| |fp| (-71 PEDERV)))) (-5 *10 (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))) (-2768 (*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9) (-12 (-5 *4 (-563)) (-5 *5 (-1151)) (-5 *6 (-684 (-225))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))) (-2758 (*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))) (-2747 (*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))))
+(-10 -7 (-15 -2747 ((-1031) (-225) (-563) (-563) (-563) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))) (-15 -2758 ((-1031) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))))) (-15 -2768 ((-1031) (-225) (-563) (-563) (-225) (-1151) (-225) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))) (-15 -2780 ((-1031) (-225) (-563) (-563) (-1151) (-563) (-225) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))) (-15 -2790 ((-1031) (-684 (-225)) (-684 (-225)) (-563) (-225) (-225) (-225) (-563) (-563) (-563) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))))) (-15 -2800 ((-1031) (-225) (-225) (-563) (-225) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-388)) (|:| |fp| (-85 FCNG))))) (-15 -2811 ((-1031) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL))))) (-15 -2811 ((-1031) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL))) (-388) (-388))) (-15 -2823 ((-1031) (-563) (-563) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-388)) (|:| |fp| (-76 G JACOBG JACGEP))))))
+((-2854 (((-1031) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-670 (-225)) (-563)) 45)) (-2846 (((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-1151) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-388)) (|:| |fp| (-83 BNDY)))) 41)) (-2835 (((-1031) (-563) (-563) (-563) (-563) (-225) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 23)))
+(((-746) (-10 -7 (-15 -2835 ((-1031) (-563) (-563) (-563) (-563) (-225) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2846 ((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-1151) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-388)) (|:| |fp| (-83 BNDY))))) (-15 -2854 ((-1031) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-670 (-225)) (-563))))) (T -746))
+((-2854 (*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 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-670 (-225))) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-746)))) (-2846 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-1151)) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-82 PDEF)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1031)) (-5 *1 (-746)))) (-2835 (*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-746)))))
+(-10 -7 (-15 -2835 ((-1031) (-563) (-563) (-563) (-563) (-225) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2846 ((-1031) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-1151) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-388)) (|:| |fp| (-83 BNDY))))) (-15 -2854 ((-1031) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-670 (-225)) (-563))))
+((-2949 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-684 (-225)) (-225) (-225) (-563)) 35)) (-2939 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-225) (-225) (-563)) 34)) (-2930 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-684 (-225)) (-225) (-225) (-563)) 33)) (-2920 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 29)) (-2909 (((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 28)) (-2901 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563)) 27)) (-2892 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-563)) 24)) (-2883 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-563)) 23)) (-2874 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563)) 22)) (-2865 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563)) 21)))
+(((-747) (-10 -7 (-15 -2865 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563))) (-15 -2874 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2883 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -2892 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -2901 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563))) (-15 -2909 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2920 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2930 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-684 (-225)) (-225) (-225) (-563))) (-15 -2939 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-225) (-225) (-563))) (-15 -2949 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-684 (-225)) (-225) (-225) (-563))))) (T -747))
+((-2949 (*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *2 (-1031)) (-5 *1 (-747)))) (-2939 (*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *2 (-1031)) (-5 *1 (-747)))) (-2930 (*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3) (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *6 (-225)) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-747)))) (-2920 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-747)))) (-2909 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-747)))) (-2901 (*1 *2 *3 *4 *4 *4 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *2 (-1031)) (-5 *1 (-747)))) (-2892 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-747)))) (-2883 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-747)))) (-2874 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-747)))) (-2865 (*1 *2 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-747)))))
+(-10 -7 (-15 -2865 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563))) (-15 -2874 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2883 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -2892 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -2901 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-225) (-563))) (-15 -2909 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2920 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2930 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-684 (-225)) (-225) (-225) (-563))) (-15 -2939 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-225) (-225) (-563))) (-15 -2949 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-684 (-225)) (-225) (-225) (-563))))
+((-3136 (((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563)) 45)) (-3126 (((-1031) (-563) (-563) (-563) (-225) (-684 (-225)) (-684 (-225)) (-563)) 44)) (-3116 (((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563)) 43)) (-3104 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 42)) (-3092 (((-1031) (-1151) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563)) 41)) (-3080 (((-1031) (-1151) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563)) 40)) (-3071 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563) (-563) (-563) (-225) (-684 (-225)) (-563)) 39)) (-3062 (((-1031) (-1151) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-563))) 38)) (-3052 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563)) 35)) (-3040 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563)) 34)) (-3030 (((-1031) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563)) 33)) (-3021 (((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 32)) (-3010 (((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-225) (-563)) 31)) (-2999 (((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-563)) 30)) (-2988 (((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-563) (-563) (-563)) 29)) (-2979 (((-1031) (-563) (-563) (-563) (-225) (-225) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563) (-684 (-563)) (-563) (-563) (-563)) 28)) (-2970 (((-1031) (-563) (-684 (-225)) (-225) (-563)) 24)) (-2960 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 21)))
+(((-748) (-10 -7 (-15 -2960 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2970 ((-1031) (-563) (-684 (-225)) (-225) (-563))) (-15 -2979 ((-1031) (-563) (-563) (-563) (-225) (-225) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563) (-684 (-563)) (-563) (-563) (-563))) (-15 -2988 ((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-563) (-563) (-563))) (-15 -2999 ((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-563))) (-15 -3010 ((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-225) (-563))) (-15 -3021 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3030 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563))) (-15 -3040 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563))) (-15 -3052 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3062 ((-1031) (-1151) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-563)))) (-15 -3071 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563) (-563) (-563) (-225) (-684 (-225)) (-563))) (-15 -3080 ((-1031) (-1151) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563))) (-15 -3092 ((-1031) (-1151) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3104 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3116 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563))) (-15 -3126 ((-1031) (-563) (-563) (-563) (-225) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3136 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563))))) (T -748))
+((-3136 (*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3126 (*1 *2 *3 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3116 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3104 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3092 (*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3080 (*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4) (-12 (-5 *3 (-1151)) (-5 *5 (-684 (-225))) (-5 *6 (-225)) (-5 *7 (-684 (-563))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3071 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3) (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *6 (-225)) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3062 (*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7) (-12 (-5 *3 (-1151)) (-5 *5 (-684 (-225))) (-5 *6 (-225)) (-5 *7 (-684 (-563))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3052 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3040 (*1 *2 *3 *4 *4 *5 *3 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3030 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3021 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-748)))) (-3010 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-2999 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-2988 (*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-2979 (*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3) (-12 (-5 *5 (-684 (-225))) (-5 *6 (-684 (-563))) (-5 *3 (-563)) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-2970 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))) (-2960 (*1 *2 *3 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-748)))))
+(-10 -7 (-15 -2960 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2970 ((-1031) (-563) (-684 (-225)) (-225) (-563))) (-15 -2979 ((-1031) (-563) (-563) (-563) (-225) (-225) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563) (-684 (-563)) (-563) (-563) (-563))) (-15 -2988 ((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-563) (-563) (-563))) (-15 -2999 ((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-225) (-563) (-563) (-563))) (-15 -3010 ((-1031) (-563) (-225) (-225) (-684 (-225)) (-563) (-563) (-225) (-563))) (-15 -3021 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3030 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563))) (-15 -3040 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563))) (-15 -3052 ((-1031) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3062 ((-1031) (-1151) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-563)))) (-15 -3071 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563) (-563) (-563) (-225) (-684 (-225)) (-563))) (-15 -3080 ((-1031) (-1151) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563))) (-15 -3092 ((-1031) (-1151) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3104 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3116 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563))) (-15 -3126 ((-1031) (-563) (-563) (-563) (-225) (-684 (-225)) (-684 (-225)) (-563))) (-15 -3136 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563) (-684 (-225)) (-684 (-225)) (-563) (-563) (-563))))
+((-3208 (((-1031) (-563) (-563) (-563) (-225) (-684 (-225)) (-563) (-684 (-225)) (-563)) 63)) (-3198 (((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-112) (-225) (-563) (-225) (-225) (-112) (-225) (-225) (-225) (-225) (-112) (-563) (-563) (-563) (-563) (-563) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-563)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN)))) 62)) (-3190 (((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-225) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-112) (-112) (-112) (-563) (-563) (-684 (-225)) (-684 (-563)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-65 QPHESS)))) 58)) (-3181 (((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-112) (-563) (-563) (-684 (-225)) (-563)) 51)) (-3171 (((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-66 FUNCT1)))) 50)) (-3162 (((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-63 LSFUN2)))) 46)) (-3155 (((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-79 LSFUN1)))) 42)) (-3146 (((-1031) (-563) (-225) (-225) (-563) (-225) (-112) (-225) (-225) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN)))) 38)))
+(((-749) (-10 -7 (-15 -3146 ((-1031) (-563) (-225) (-225) (-563) (-225) (-112) (-225) (-225) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN))))) (-15 -3155 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-79 LSFUN1))))) (-15 -3162 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-63 LSFUN2))))) (-15 -3171 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-66 FUNCT1))))) (-15 -3181 ((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-112) (-563) (-563) (-684 (-225)) (-563))) (-15 -3190 ((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-225) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-112) (-112) (-112) (-563) (-563) (-684 (-225)) (-684 (-563)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-65 QPHESS))))) (-15 -3198 ((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-112) (-225) (-563) (-225) (-225) (-112) (-225) (-225) (-225) (-225) (-112) (-563) (-563) (-563) (-563) (-563) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-563)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN))))) (-15 -3208 ((-1031) (-563) (-563) (-563) (-225) (-684 (-225)) (-563) (-684 (-225)) (-563))))) (T -749))
+((-3208 (*1 *2 *3 *3 *3 *4 *5 *3 *5 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-749)))) (-3198 (*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 (-684 (-225))) (-5 *5 (-112)) (-5 *6 (-225)) (-5 *7 (-684 (-563))) (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-80 CONFUN)))) (-5 *9 (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN)))) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-749)))) (-3190 (*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 (-684 (-225))) (-5 *6 (-112)) (-5 *7 (-684 (-563))) (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-65 QPHESS)))) (-5 *3 (-563)) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-749)))) (-3181 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-112)) (-5 *2 (-1031)) (-5 *1 (-749)))) (-3171 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-66 FUNCT1)))) (-5 *2 (-1031)) (-5 *1 (-749)))) (-3162 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-63 LSFUN2)))) (-5 *2 (-1031)) (-5 *1 (-749)))) (-3155 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-79 LSFUN1)))) (-5 *2 (-1031)) (-5 *1 (-749)))) (-3146 (*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7) (-12 (-5 *3 (-563)) (-5 *5 (-112)) (-5 *6 (-684 (-225))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN)))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-749)))))
+(-10 -7 (-15 -3146 ((-1031) (-563) (-225) (-225) (-563) (-225) (-112) (-225) (-225) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN))))) (-15 -3155 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-79 LSFUN1))))) (-15 -3162 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-63 LSFUN2))))) (-15 -3171 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-66 FUNCT1))))) (-15 -3181 ((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-112) (-563) (-563) (-684 (-225)) (-563))) (-15 -3190 ((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-225) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-112) (-112) (-112) (-563) (-563) (-684 (-225)) (-684 (-563)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-65 QPHESS))))) (-15 -3198 ((-1031) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-563) (-112) (-225) (-563) (-225) (-225) (-112) (-225) (-225) (-225) (-225) (-112) (-563) (-563) (-563) (-563) (-563) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-563) (-684 (-563)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN))))) (-15 -3208 ((-1031) (-563) (-563) (-563) (-225) (-684 (-225)) (-563) (-684 (-225)) (-563))))
+((-2135 (((-1031) (-1151) (-563) (-563) (-563) (-563) (-684 (-169 (-225))) (-684 (-169 (-225))) (-563)) 47)) (-2124 (((-1031) (-1151) (-1151) (-563) (-563) (-684 (-169 (-225))) (-563) (-684 (-169 (-225))) (-563) (-563) (-684 (-169 (-225))) (-563)) 46)) (-2114 (((-1031) (-563) (-563) (-563) (-684 (-169 (-225))) (-563)) 45)) (-2104 (((-1031) (-1151) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563)) 40)) (-2094 (((-1031) (-1151) (-1151) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-684 (-225)) (-563)) 39)) (-2084 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-563)) 36)) (-2076 (((-1031) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563)) 35)) (-2067 (((-1031) (-563) (-563) (-563) (-563) (-640 (-112)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-225) (-225) (-563)) 34)) (-2055 (((-1031) (-563) (-563) (-563) (-684 (-563)) (-684 (-563)) (-684 (-563)) (-684 (-563)) (-112) (-225) (-112) (-684 (-563)) (-684 (-225)) (-563)) 33)) (-3219 (((-1031) (-563) (-563) (-563) (-563) (-225) (-112) (-112) (-640 (-112)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-563)) 32)))
+(((-750) (-10 -7 (-15 -3219 ((-1031) (-563) (-563) (-563) (-563) (-225) (-112) (-112) (-640 (-112)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-563))) (-15 -2055 ((-1031) (-563) (-563) (-563) (-684 (-563)) (-684 (-563)) (-684 (-563)) (-684 (-563)) (-112) (-225) (-112) (-684 (-563)) (-684 (-225)) (-563))) (-15 -2067 ((-1031) (-563) (-563) (-563) (-563) (-640 (-112)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-225) (-225) (-563))) (-15 -2076 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563))) (-15 -2084 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-563))) (-15 -2094 ((-1031) (-1151) (-1151) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-684 (-225)) (-563))) (-15 -2104 ((-1031) (-1151) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2114 ((-1031) (-563) (-563) (-563) (-684 (-169 (-225))) (-563))) (-15 -2124 ((-1031) (-1151) (-1151) (-563) (-563) (-684 (-169 (-225))) (-563) (-684 (-169 (-225))) (-563) (-563) (-684 (-169 (-225))) (-563))) (-15 -2135 ((-1031) (-1151) (-563) (-563) (-563) (-563) (-684 (-169 (-225))) (-684 (-169 (-225))) (-563))))) (T -750))
+((-2135 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-169 (-225)))) (-5 *2 (-1031)) (-5 *1 (-750)))) (-2124 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-169 (-225)))) (-5 *2 (-1031)) (-5 *1 (-750)))) (-2114 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-169 (-225)))) (-5 *2 (-1031)) (-5 *1 (-750)))) (-2104 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-750)))) (-2094 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-750)))) (-2084 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-750)))) (-2076 (*1 *2 *3 *4 *3 *5 *3) (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-750)))) (-2067 (*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3) (-12 (-5 *4 (-640 (-112))) (-5 *5 (-684 (-225))) (-5 *6 (-684 (-563))) (-5 *7 (-225)) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-750)))) (-2055 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3) (-12 (-5 *4 (-684 (-563))) (-5 *5 (-112)) (-5 *7 (-684 (-225))) (-5 *3 (-563)) (-5 *6 (-225)) (-5 *2 (-1031)) (-5 *1 (-750)))) (-3219 (*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3) (-12 (-5 *6 (-640 (-112))) (-5 *7 (-684 (-225))) (-5 *8 (-684 (-563))) (-5 *3 (-563)) (-5 *4 (-225)) (-5 *5 (-112)) (-5 *2 (-1031)) (-5 *1 (-750)))))
+(-10 -7 (-15 -3219 ((-1031) (-563) (-563) (-563) (-563) (-225) (-112) (-112) (-640 (-112)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-563))) (-15 -2055 ((-1031) (-563) (-563) (-563) (-684 (-563)) (-684 (-563)) (-684 (-563)) (-684 (-563)) (-112) (-225) (-112) (-684 (-563)) (-684 (-225)) (-563))) (-15 -2067 ((-1031) (-563) (-563) (-563) (-563) (-640 (-112)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-225) (-225) (-563))) (-15 -2076 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563))) (-15 -2084 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-563))) (-15 -2094 ((-1031) (-1151) (-1151) (-563) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-684 (-225)) (-563))) (-15 -2104 ((-1031) (-1151) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2114 ((-1031) (-563) (-563) (-563) (-684 (-169 (-225))) (-563))) (-15 -2124 ((-1031) (-1151) (-1151) (-563) (-563) (-684 (-169 (-225))) (-563) (-684 (-169 (-225))) (-563) (-563) (-684 (-169 (-225))) (-563))) (-15 -2135 ((-1031) (-1151) (-563) (-563) (-563) (-563) (-684 (-169 (-225))) (-684 (-169 (-225))) (-563))))
+((-2313 (((-1031) (-563) (-563) (-563) (-563) (-563) (-112) (-563) (-112) (-563) (-684 (-169 (-225))) (-684 (-169 (-225))) (-563)) 66)) (-2301 (((-1031) (-563) (-563) (-563) (-563) (-563) (-112) (-563) (-112) (-563) (-684 (-225)) (-684 (-225)) (-563)) 61)) (-2290 (((-1031) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE))) (-388)) 56) (((-1031) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE)))) 55)) (-2279 (((-1031) (-563) (-563) (-563) (-225) (-112) (-563) (-684 (-225)) (-684 (-225)) (-563)) 37)) (-2269 (((-1031) (-563) (-563) (-225) (-225) (-563) (-563) (-684 (-225)) (-563)) 33)) (-2259 (((-1031) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-563) (-563) (-563)) 30)) (-2246 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563)) 29)) (-2230 (((-1031) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563)) 28)) (-2216 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563)) 27)) (-2205 (((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563)) 26)) (-2194 (((-1031) (-563) (-563) (-684 (-225)) (-563)) 25)) (-2182 (((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563)) 24)) (-2167 (((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563)) 23)) (-2156 (((-1031) (-684 (-225)) (-563) (-563) (-563) (-563)) 22)) (-2146 (((-1031) (-563) (-563) (-684 (-225)) (-563)) 21)))
+(((-751) (-10 -7 (-15 -2146 ((-1031) (-563) (-563) (-684 (-225)) (-563))) (-15 -2156 ((-1031) (-684 (-225)) (-563) (-563) (-563) (-563))) (-15 -2167 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2182 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2194 ((-1031) (-563) (-563) (-684 (-225)) (-563))) (-15 -2205 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563))) (-15 -2216 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2230 ((-1031) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2246 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2259 ((-1031) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-563) (-563) (-563))) (-15 -2269 ((-1031) (-563) (-563) (-225) (-225) (-563) (-563) (-684 (-225)) (-563))) (-15 -2279 ((-1031) (-563) (-563) (-563) (-225) (-112) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2290 ((-1031) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE))))) (-15 -2290 ((-1031) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE))) (-388))) (-15 -2301 ((-1031) (-563) (-563) (-563) (-563) (-563) (-112) (-563) (-112) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2313 ((-1031) (-563) (-563) (-563) (-563) (-563) (-112) (-563) (-112) (-563) (-684 (-169 (-225))) (-684 (-169 (-225))) (-563))))) (T -751))
+((-2313 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-112)) (-5 *5 (-684 (-169 (-225)))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2301 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *4 (-112)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2290 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-388)) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2290 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2279 (*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3) (-12 (-5 *3 (-563)) (-5 *5 (-112)) (-5 *6 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2269 (*1 *2 *3 *3 *4 *4 *3 *3 *5 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2259 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2246 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2230 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2216 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2205 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2194 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2182 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2167 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2156 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-751)))) (-2146 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-751)))))
+(-10 -7 (-15 -2146 ((-1031) (-563) (-563) (-684 (-225)) (-563))) (-15 -2156 ((-1031) (-684 (-225)) (-563) (-563) (-563) (-563))) (-15 -2167 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2182 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2194 ((-1031) (-563) (-563) (-684 (-225)) (-563))) (-15 -2205 ((-1031) (-563) (-563) (-563) (-563) (-684 (-225)) (-563))) (-15 -2216 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2230 ((-1031) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2246 ((-1031) (-563) (-563) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2259 ((-1031) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-563) (-563) (-563))) (-15 -2269 ((-1031) (-563) (-563) (-225) (-225) (-563) (-563) (-684 (-225)) (-563))) (-15 -2279 ((-1031) (-563) (-563) (-563) (-225) (-112) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2290 ((-1031) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE))))) (-15 -2290 ((-1031) (-563) (-563) (-225) (-563) (-563) (-563) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE))) (-388))) (-15 -2301 ((-1031) (-563) (-563) (-563) (-563) (-563) (-112) (-563) (-112) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2313 ((-1031) (-563) (-563) (-563) (-563) (-563) (-112) (-563) (-112) (-563) (-684 (-169 (-225))) (-684 (-169 (-225))) (-563))))
+((-2428 (((-1031) (-563) (-563) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-70 APROD)))) 61)) (-2417 (((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-563)) (-563) (-684 (-225)) (-563) (-563) (-563) (-563)) 57)) (-2407 (((-1031) (-563) (-684 (-225)) (-112) (-225) (-563) (-563) (-563) (-563) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-388)) (|:| |fp| (-73 MSOLVE)))) 56)) (-2396 (((-1031) (-563) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563) (-684 (-563)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563)) 37)) (-2384 (((-1031) (-563) (-563) (-563) (-225) (-563) (-684 (-225)) (-684 (-225)) (-563)) 36)) (-2373 (((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563)) 33)) (-2363 (((-1031) (-563) (-684 (-225)) (-563) (-684 (-563)) (-684 (-563)) (-563) (-684 (-563)) (-684 (-225))) 32)) (-2354 (((-1031) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-563)) 28)) (-2343 (((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563)) 27)) (-2332 (((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563)) 26)) (-2323 (((-1031) (-563) (-684 (-169 (-225))) (-563) (-563) (-563) (-563) (-684 (-169 (-225))) (-563)) 22)))
+(((-752) (-10 -7 (-15 -2323 ((-1031) (-563) (-684 (-169 (-225))) (-563) (-563) (-563) (-563) (-684 (-169 (-225))) (-563))) (-15 -2332 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -2343 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -2354 ((-1031) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-563))) (-15 -2363 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-563)) (-684 (-563)) (-563) (-684 (-563)) (-684 (-225)))) (-15 -2373 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2384 ((-1031) (-563) (-563) (-563) (-225) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2396 ((-1031) (-563) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563) (-684 (-563)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563))) (-15 -2407 ((-1031) (-563) (-684 (-225)) (-112) (-225) (-563) (-563) (-563) (-563) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-388)) (|:| |fp| (-73 MSOLVE))))) (-15 -2417 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-563)) (-563) (-684 (-225)) (-563) (-563) (-563) (-563))) (-15 -2428 ((-1031) (-563) (-563) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-70 APROD))))))) (T -752))
+((-2428 (*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-70 APROD)))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-752)))) (-2417 (*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3) (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-752)))) (-2407 (*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-112)) (-5 *6 (-225)) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-68 APROD)))) (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-73 MSOLVE)))) (-5 *2 (-1031)) (-5 *1 (-752)))) (-2396 (*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3) (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-752)))) (-2384 (*1 *2 *3 *3 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-752)))) (-2373 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-752)))) (-2363 (*1 *2 *3 *4 *3 *5 *5 *3 *5 *4) (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-752)))) (-2354 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-752)))) (-2343 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-752)))) (-2332 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-752)))) (-2323 (*1 *2 *3 *4 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-169 (-225)))) (-5 *2 (-1031)) (-5 *1 (-752)))))
+(-10 -7 (-15 -2323 ((-1031) (-563) (-684 (-169 (-225))) (-563) (-563) (-563) (-563) (-684 (-169 (-225))) (-563))) (-15 -2332 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -2343 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-563))) (-15 -2354 ((-1031) (-684 (-225)) (-563) (-684 (-225)) (-563) (-563) (-563))) (-15 -2363 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-563)) (-684 (-563)) (-563) (-684 (-563)) (-684 (-225)))) (-15 -2373 ((-1031) (-563) (-563) (-684 (-225)) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2384 ((-1031) (-563) (-563) (-563) (-225) (-563) (-684 (-225)) (-684 (-225)) (-563))) (-15 -2396 ((-1031) (-563) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563) (-684 (-563)) (-684 (-225)) (-684 (-563)) (-684 (-563)) (-684 (-225)) (-684 (-225)) (-684 (-563)) (-563))) (-15 -2407 ((-1031) (-563) (-684 (-225)) (-112) (-225) (-563) (-563) (-563) (-563) (-225) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-388)) (|:| |fp| (-73 MSOLVE))))) (-15 -2417 ((-1031) (-563) (-684 (-225)) (-563) (-684 (-225)) (-684 (-563)) (-563) (-684 (-225)) (-563) (-563) (-563) (-563))) (-15 -2428 ((-1031) (-563) (-563) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-684 (-225)) (-563) (-3 (|:| |fn| (-388)) (|:| |fp| (-70 APROD))))))
+((-2475 (((-1031) (-1151) (-563) (-563) (-684 (-225)) (-563) (-563) (-684 (-225))) 29)) (-2462 (((-1031) (-1151) (-563) (-563) (-684 (-225))) 28)) (-2452 (((-1031) (-1151) (-563) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563) (-684 (-225))) 27)) (-2441 (((-1031) (-563) (-563) (-563) (-684 (-225))) 21)))
+(((-753) (-10 -7 (-15 -2441 ((-1031) (-563) (-563) (-563) (-684 (-225)))) (-15 -2452 ((-1031) (-1151) (-563) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563) (-684 (-225)))) (-15 -2462 ((-1031) (-1151) (-563) (-563) (-684 (-225)))) (-15 -2475 ((-1031) (-1151) (-563) (-563) (-684 (-225)) (-563) (-563) (-684 (-225)))))) (T -753))
+((-2475 (*1 *2 *3 *4 *4 *5 *4 *4 *5) (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-753)))) (-2462 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-753)))) (-2452 (*1 *2 *3 *4 *4 *5 *4 *6 *4 *5) (-12 (-5 *3 (-1151)) (-5 *5 (-684 (-225))) (-5 *6 (-684 (-563))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-753)))) (-2441 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031)) (-5 *1 (-753)))))
+(-10 -7 (-15 -2441 ((-1031) (-563) (-563) (-563) (-684 (-225)))) (-15 -2452 ((-1031) (-1151) (-563) (-563) (-684 (-225)) (-563) (-684 (-563)) (-563) (-684 (-225)))) (-15 -2462 ((-1031) (-1151) (-563) (-563) (-684 (-225)))) (-15 -2475 ((-1031) (-1151) (-563) (-563) (-684 (-225)) (-563) (-563) (-684 (-225)))))
+((-1653 (((-1031) (-225) (-225) (-225) (-225) (-563)) 62)) (-1638 (((-1031) (-225) (-225) (-225) (-563)) 61)) (-1627 (((-1031) (-225) (-225) (-225) (-563)) 60)) (-1616 (((-1031) (-225) (-225) (-563)) 59)) (-1605 (((-1031) (-225) (-563)) 58)) (-1594 (((-1031) (-225) (-563)) 57)) (-1580 (((-1031) (-225) (-563)) 56)) (-1569 (((-1031) (-225) (-563)) 55)) (-1557 (((-1031) (-225) (-563)) 54)) (-1544 (((-1031) (-225) (-563)) 53)) (-1533 (((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563)) 52)) (-1520 (((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563)) 51)) (-1506 (((-1031) (-225) (-563)) 50)) (-1495 (((-1031) (-225) (-563)) 49)) (-1484 (((-1031) (-225) (-563)) 48)) (-1473 (((-1031) (-225) (-563)) 47)) (-1460 (((-1031) (-563) (-225) (-169 (-225)) (-563) (-1151) (-563)) 46)) (-1450 (((-1031) (-1151) (-169 (-225)) (-1151) (-563)) 45)) (-1439 (((-1031) (-1151) (-169 (-225)) (-1151) (-563)) 44)) (-1429 (((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563)) 43)) (-1418 (((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563)) 42)) (-2649 (((-1031) (-225) (-563)) 39)) (-2640 (((-1031) (-225) (-563)) 38)) (-2630 (((-1031) (-225) (-563)) 37)) (-2623 (((-1031) (-225) (-563)) 36)) (-2612 (((-1031) (-225) (-563)) 35)) (-2603 (((-1031) (-225) (-563)) 34)) (-2592 (((-1031) (-225) (-563)) 33)) (-2583 (((-1031) (-225) (-563)) 32)) (-2573 (((-1031) (-225) (-563)) 31)) (-2564 (((-1031) (-225) (-563)) 30)) (-2554 (((-1031) (-225) (-225) (-225) (-563)) 29)) (-2543 (((-1031) (-225) (-563)) 28)) (-2531 (((-1031) (-225) (-563)) 27)) (-2519 (((-1031) (-225) (-563)) 26)) (-2507 (((-1031) (-225) (-563)) 25)) (-2496 (((-1031) (-225) (-563)) 24)) (-2486 (((-1031) (-169 (-225)) (-563)) 21)))
+(((-754) (-10 -7 (-15 -2486 ((-1031) (-169 (-225)) (-563))) (-15 -2496 ((-1031) (-225) (-563))) (-15 -2507 ((-1031) (-225) (-563))) (-15 -2519 ((-1031) (-225) (-563))) (-15 -2531 ((-1031) (-225) (-563))) (-15 -2543 ((-1031) (-225) (-563))) (-15 -2554 ((-1031) (-225) (-225) (-225) (-563))) (-15 -2564 ((-1031) (-225) (-563))) (-15 -2573 ((-1031) (-225) (-563))) (-15 -2583 ((-1031) (-225) (-563))) (-15 -2592 ((-1031) (-225) (-563))) (-15 -2603 ((-1031) (-225) (-563))) (-15 -2612 ((-1031) (-225) (-563))) (-15 -2623 ((-1031) (-225) (-563))) (-15 -2630 ((-1031) (-225) (-563))) (-15 -2640 ((-1031) (-225) (-563))) (-15 -2649 ((-1031) (-225) (-563))) (-15 -1418 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -1429 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -1439 ((-1031) (-1151) (-169 (-225)) (-1151) (-563))) (-15 -1450 ((-1031) (-1151) (-169 (-225)) (-1151) (-563))) (-15 -1460 ((-1031) (-563) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -1473 ((-1031) (-225) (-563))) (-15 -1484 ((-1031) (-225) (-563))) (-15 -1495 ((-1031) (-225) (-563))) (-15 -1506 ((-1031) (-225) (-563))) (-15 -1520 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -1533 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -1544 ((-1031) (-225) (-563))) (-15 -1557 ((-1031) (-225) (-563))) (-15 -1569 ((-1031) (-225) (-563))) (-15 -1580 ((-1031) (-225) (-563))) (-15 -1594 ((-1031) (-225) (-563))) (-15 -1605 ((-1031) (-225) (-563))) (-15 -1616 ((-1031) (-225) (-225) (-563))) (-15 -1627 ((-1031) (-225) (-225) (-225) (-563))) (-15 -1638 ((-1031) (-225) (-225) (-225) (-563))) (-15 -1653 ((-1031) (-225) (-225) (-225) (-225) (-563))))) (T -754))
+((-1653 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1638 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1627 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1616 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1605 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1594 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1580 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1569 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1557 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1544 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1533 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151)) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1520 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151)) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1506 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1495 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1484 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1473 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1460 (*1 *2 *3 *4 *5 *3 *6 *3) (-12 (-5 *3 (-563)) (-5 *5 (-169 (-225))) (-5 *6 (-1151)) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1450 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1151)) (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1439 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1151)) (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1429 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151)) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-1418 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151)) (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2649 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2640 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2630 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2623 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2612 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2603 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2592 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2583 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2573 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2564 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2554 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2543 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2531 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2519 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2507 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2496 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))) (-2486 (*1 *2 *3 *4) (-12 (-5 *3 (-169 (-225))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(-10 -7 (-15 -2486 ((-1031) (-169 (-225)) (-563))) (-15 -2496 ((-1031) (-225) (-563))) (-15 -2507 ((-1031) (-225) (-563))) (-15 -2519 ((-1031) (-225) (-563))) (-15 -2531 ((-1031) (-225) (-563))) (-15 -2543 ((-1031) (-225) (-563))) (-15 -2554 ((-1031) (-225) (-225) (-225) (-563))) (-15 -2564 ((-1031) (-225) (-563))) (-15 -2573 ((-1031) (-225) (-563))) (-15 -2583 ((-1031) (-225) (-563))) (-15 -2592 ((-1031) (-225) (-563))) (-15 -2603 ((-1031) (-225) (-563))) (-15 -2612 ((-1031) (-225) (-563))) (-15 -2623 ((-1031) (-225) (-563))) (-15 -2630 ((-1031) (-225) (-563))) (-15 -2640 ((-1031) (-225) (-563))) (-15 -2649 ((-1031) (-225) (-563))) (-15 -1418 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -1429 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -1439 ((-1031) (-1151) (-169 (-225)) (-1151) (-563))) (-15 -1450 ((-1031) (-1151) (-169 (-225)) (-1151) (-563))) (-15 -1460 ((-1031) (-563) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -1473 ((-1031) (-225) (-563))) (-15 -1484 ((-1031) (-225) (-563))) (-15 -1495 ((-1031) (-225) (-563))) (-15 -1506 ((-1031) (-225) (-563))) (-15 -1520 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -1533 ((-1031) (-225) (-169 (-225)) (-563) (-1151) (-563))) (-15 -1544 ((-1031) (-225) (-563))) (-15 -1557 ((-1031) (-225) (-563))) (-15 -1569 ((-1031) (-225) (-563))) (-15 -1580 ((-1031) (-225) (-563))) (-15 -1594 ((-1031) (-225) (-563))) (-15 -1605 ((-1031) (-225) (-563))) (-15 -1616 ((-1031) (-225) (-225) (-563))) (-15 -1627 ((-1031) (-225) (-225) (-225) (-563))) (-15 -1638 ((-1031) (-225) (-225) (-225) (-563))) (-15 -1653 ((-1031) (-225) (-225) (-225) (-225) (-563))))
+((-1719 (((-1262)) 18)) (-1675 (((-1151)) 22)) (-1664 (((-1151)) 21)) (-1703 (((-1097) (-1169) (-684 (-563))) 37) (((-1097) (-1169) (-684 (-225))) 32)) (-2000 (((-112)) 16)) (-1688 (((-1151) (-1151)) 25)))
+(((-755) (-10 -7 (-15 -1664 ((-1151))) (-15 -1675 ((-1151))) (-15 -1688 ((-1151) (-1151))) (-15 -1703 ((-1097) (-1169) (-684 (-225)))) (-15 -1703 ((-1097) (-1169) (-684 (-563)))) (-15 -2000 ((-112))) (-15 -1719 ((-1262))))) (T -755))
+((-1719 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-755)))) (-2000 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-755)))) (-1703 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-684 (-563))) (-5 *2 (-1097)) (-5 *1 (-755)))) (-1703 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-684 (-225))) (-5 *2 (-1097)) (-5 *1 (-755)))) (-1688 (*1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-755)))) (-1675 (*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-755)))) (-1664 (*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-755)))))
+(-10 -7 (-15 -1664 ((-1151))) (-15 -1675 ((-1151))) (-15 -1688 ((-1151) (-1151))) (-15 -1703 ((-1097) (-1169) (-684 (-225)))) (-15 -1703 ((-1097) (-1169) (-684 (-563)))) (-15 -2000 ((-112))) (-15 -1719 ((-1262))))
+((-1745 (($ $ $) 10)) (-1756 (($ $ $ $) 9)) (-1729 (($ $ $) 12)))
+(((-756 |#1|) (-10 -8 (-15 -1729 (|#1| |#1| |#1|)) (-15 -1745 (|#1| |#1| |#1|)) (-15 -1756 (|#1| |#1| |#1| |#1|))) (-757)) (T -756))
+NIL
+(-10 -8 (-15 -1729 (|#1| |#1| |#1|)) (-15 -1745 (|#1| |#1| |#1|)) (-15 -1756 (|#1| |#1| |#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3376 (($ $ (-917)) 28)) (-3364 (($ $ (-917)) 29)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1745 (($ $ $) 25)) (-1692 (((-858) $) 11)) (-1756 (($ $ $ $) 26)) (-1729 (($ $ $) 24)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 30)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 27)))
(((-757) (-140)) (T -757))
-((-1361 (*1 *1 *1 *1 *1) (-4 *1 (-757))) (-2146 (*1 *1 *1 *1) (-4 *1 (-757))) (-3399 (*1 *1 *1 *1) (-4 *1 (-757))))
-(-13 (-21) (-716) (-10 -8 (-15 -1361 ($ $ $ $)) (-15 -2146 ($ $ $)) (-15 -3399 ($ $ $))))
+((-1756 (*1 *1 *1 *1 *1) (-4 *1 (-757))) (-1745 (*1 *1 *1 *1) (-4 *1 (-757))) (-1729 (*1 *1 *1 *1) (-4 *1 (-757))))
+(-13 (-21) (-716) (-10 -8 (-15 -1756 ($ $ $ $)) (-15 -1745 ($ $ $)) (-15 -1729 ($ $ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-610 (-858)) . T) ((-716) . T) ((-1093) . T))
-((-1693 (((-858) $) NIL) (($ (-563)) 10)))
-(((-758 |#1|) (-10 -8 (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|))) (-759)) (T -758))
+((-1692 (((-858) $) NIL) (($ (-563)) 10)))
+(((-758 |#1|) (-10 -8 (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|))) (-759)) (T -758))
NIL
-(-10 -8 (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-4154 (((-3 $ "failed") $) 40)) (-2300 (($ $ (-917)) 28) (($ $ (-767)) 35)) (-3400 (((-3 $ "failed") $) 38)) (-3827 (((-112) $) 34)) (-3856 (((-3 $ "failed") $) 39)) (-1494 (($ $ (-917)) 29) (($ $ (-767)) 36)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-2146 (($ $ $) 25)) (-1693 (((-858) $) 11) (($ (-563)) 31)) (-1675 (((-767)) 32)) (-1361 (($ $ $ $) 26)) (-3399 (($ $ $) 24)) (-2241 (($) 18 T CONST)) (-2254 (($) 33 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 30) (($ $ (-767)) 37)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 27)))
+(-10 -8 (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3342 (((-3 $ "failed") $) 40)) (-3376 (($ $ (-917)) 28) (($ $ (-767)) 35)) (-3951 (((-3 $ "failed") $) 38)) (-3401 (((-112) $) 34)) (-3353 (((-3 $ "failed") $) 39)) (-3364 (($ $ (-917)) 29) (($ $ (-767)) 36)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1745 (($ $ $) 25)) (-1692 (((-858) $) 11) (($ (-563)) 31)) (-3914 (((-767)) 32)) (-1756 (($ $ $ $) 26)) (-1729 (($ $ $) 24)) (-2239 (($) 18 T CONST)) (-2253 (($) 33 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 30) (($ $ (-767)) 37)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 27)))
(((-759) (-140)) (T -759))
-((-1675 (*1 *2) (-12 (-4 *1 (-759)) (-5 *2 (-767)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-759)))))
-(-13 (-757) (-718) (-10 -8 (-15 -1675 ((-767))) (-15 -1693 ($ (-563)))))
+((-3914 (*1 *2) (-12 (-4 *1 (-759)) (-5 *2 (-767)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-759)))))
+(-13 (-757) (-718) (-10 -8 (-15 -3914 ((-767))) (-15 -1692 ($ (-563)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-610 (-858)) . T) ((-716) . T) ((-718) . T) ((-757) . T) ((-1093) . T))
-((-1870 (((-640 (-2 (|:| |outval| (-169 |#1|)) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 (-169 |#1|)))))) (-684 (-169 (-407 (-563)))) |#1|) 33)) (-3957 (((-640 (-169 |#1|)) (-684 (-169 (-407 (-563)))) |#1|) 23)) (-3421 (((-948 (-169 (-407 (-563)))) (-684 (-169 (-407 (-563)))) (-1169)) 20) (((-948 (-169 (-407 (-563)))) (-684 (-169 (-407 (-563))))) 19)))
-(((-760 |#1|) (-10 -7 (-15 -3421 ((-948 (-169 (-407 (-563)))) (-684 (-169 (-407 (-563)))))) (-15 -3421 ((-948 (-169 (-407 (-563)))) (-684 (-169 (-407 (-563)))) (-1169))) (-15 -3957 ((-640 (-169 |#1|)) (-684 (-169 (-407 (-563)))) |#1|)) (-15 -1870 ((-640 (-2 (|:| |outval| (-169 |#1|)) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 (-169 |#1|)))))) (-684 (-169 (-407 (-563)))) |#1|))) (-13 (-363) (-844))) (T -760))
-((-1870 (*1 *2 *3 *4) (-12 (-5 *3 (-684 (-169 (-407 (-563))))) (-5 *2 (-640 (-2 (|:| |outval| (-169 *4)) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 (-169 *4))))))) (-5 *1 (-760 *4)) (-4 *4 (-13 (-363) (-844))))) (-3957 (*1 *2 *3 *4) (-12 (-5 *3 (-684 (-169 (-407 (-563))))) (-5 *2 (-640 (-169 *4))) (-5 *1 (-760 *4)) (-4 *4 (-13 (-363) (-844))))) (-3421 (*1 *2 *3 *4) (-12 (-5 *3 (-684 (-169 (-407 (-563))))) (-5 *4 (-1169)) (-5 *2 (-948 (-169 (-407 (-563))))) (-5 *1 (-760 *5)) (-4 *5 (-13 (-363) (-844))))) (-3421 (*1 *2 *3) (-12 (-5 *3 (-684 (-169 (-407 (-563))))) (-5 *2 (-948 (-169 (-407 (-563))))) (-5 *1 (-760 *4)) (-4 *4 (-13 (-363) (-844))))))
-(-10 -7 (-15 -3421 ((-948 (-169 (-407 (-563)))) (-684 (-169 (-407 (-563)))))) (-15 -3421 ((-948 (-169 (-407 (-563)))) (-684 (-169 (-407 (-563)))) (-1169))) (-15 -3957 ((-640 (-169 |#1|)) (-684 (-169 (-407 (-563)))) |#1|)) (-15 -1870 ((-640 (-2 (|:| |outval| (-169 |#1|)) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 (-169 |#1|)))))) (-684 (-169 (-407 (-563)))) |#1|)))
-((-2192 (((-174 (-563)) |#1|) 25)))
-(((-761 |#1|) (-10 -7 (-15 -2192 ((-174 (-563)) |#1|))) (-404)) (T -761))
-((-2192 (*1 *2 *3) (-12 (-5 *2 (-174 (-563))) (-5 *1 (-761 *3)) (-4 *3 (-404)))))
-(-10 -7 (-15 -2192 ((-174 (-563)) |#1|)))
-((-3861 ((|#1| |#1| |#1|) 24)) (-3911 ((|#1| |#1| |#1|) 23)) (-1909 ((|#1| |#1| |#1|) 32)) (-1511 ((|#1| |#1| |#1|) 28)) (-3121 (((-3 |#1| "failed") |#1| |#1|) 27)) (-4262 (((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|) 22)))
-(((-762 |#1| |#2|) (-10 -7 (-15 -4262 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -3911 (|#1| |#1| |#1|)) (-15 -3861 (|#1| |#1| |#1|)) (-15 -3121 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1511 (|#1| |#1| |#1|)) (-15 -1909 (|#1| |#1| |#1|))) (-704 |#2|) (-363)) (T -762))
-((-1909 (*1 *2 *2 *2) (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3)))) (-1511 (*1 *2 *2 *2) (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3)))) (-3121 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3)))) (-3861 (*1 *2 *2 *2) (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3)))) (-3911 (*1 *2 *2 *2) (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3)))) (-4262 (*1 *2 *3 *3) (-12 (-4 *4 (-363)) (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-762 *3 *4)) (-4 *3 (-704 *4)))))
-(-10 -7 (-15 -4262 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -3911 (|#1| |#1| |#1|)) (-15 -3861 (|#1| |#1| |#1|)) (-15 -3121 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1511 (|#1| |#1| |#1|)) (-15 -1909 (|#1| |#1| |#1|)))
-((-2577 (((-686 (-1215)) $ (-1215)) 26)) (-2871 (((-686 (-548)) $ (-548)) 25)) (-2910 (((-767) $ (-128)) 27)) (-1717 (((-686 (-129)) $ (-129)) 24)) (-2843 (((-686 (-1215)) $) 12)) (-3262 (((-686 (-1214)) $) 8)) (-3927 (((-686 (-1213)) $) 10)) (-3429 (((-686 (-548)) $) 13)) (-1497 (((-686 (-547)) $) 9)) (-3351 (((-686 (-546)) $) 11)) (-2513 (((-767) $ (-128)) 7)) (-2810 (((-686 (-129)) $) 14)) (-2791 (((-112) $) 31)) (-2755 (((-686 $) |#1| (-950)) 32)) (-3004 (($ $) 6)))
+((-1781 (((-640 (-2 (|:| |outval| (-169 |#1|)) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 (-169 |#1|)))))) (-684 (-169 (-407 (-563)))) |#1|) 33)) (-1768 (((-640 (-169 |#1|)) (-684 (-169 (-407 (-563)))) |#1|) 23)) (-1892 (((-948 (-169 (-407 (-563)))) (-684 (-169 (-407 (-563)))) (-1169)) 20) (((-948 (-169 (-407 (-563)))) (-684 (-169 (-407 (-563))))) 19)))
+(((-760 |#1|) (-10 -7 (-15 -1892 ((-948 (-169 (-407 (-563)))) (-684 (-169 (-407 (-563)))))) (-15 -1892 ((-948 (-169 (-407 (-563)))) (-684 (-169 (-407 (-563)))) (-1169))) (-15 -1768 ((-640 (-169 |#1|)) (-684 (-169 (-407 (-563)))) |#1|)) (-15 -1781 ((-640 (-2 (|:| |outval| (-169 |#1|)) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 (-169 |#1|)))))) (-684 (-169 (-407 (-563)))) |#1|))) (-13 (-363) (-844))) (T -760))
+((-1781 (*1 *2 *3 *4) (-12 (-5 *3 (-684 (-169 (-407 (-563))))) (-5 *2 (-640 (-2 (|:| |outval| (-169 *4)) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 (-169 *4))))))) (-5 *1 (-760 *4)) (-4 *4 (-13 (-363) (-844))))) (-1768 (*1 *2 *3 *4) (-12 (-5 *3 (-684 (-169 (-407 (-563))))) (-5 *2 (-640 (-169 *4))) (-5 *1 (-760 *4)) (-4 *4 (-13 (-363) (-844))))) (-1892 (*1 *2 *3 *4) (-12 (-5 *3 (-684 (-169 (-407 (-563))))) (-5 *4 (-1169)) (-5 *2 (-948 (-169 (-407 (-563))))) (-5 *1 (-760 *5)) (-4 *5 (-13 (-363) (-844))))) (-1892 (*1 *2 *3) (-12 (-5 *3 (-684 (-169 (-407 (-563))))) (-5 *2 (-948 (-169 (-407 (-563))))) (-5 *1 (-760 *4)) (-4 *4 (-13 (-363) (-844))))))
+(-10 -7 (-15 -1892 ((-948 (-169 (-407 (-563)))) (-684 (-169 (-407 (-563)))))) (-15 -1892 ((-948 (-169 (-407 (-563)))) (-684 (-169 (-407 (-563)))) (-1169))) (-15 -1768 ((-640 (-169 |#1|)) (-684 (-169 (-407 (-563)))) |#1|)) (-15 -1781 ((-640 (-2 (|:| |outval| (-169 |#1|)) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 (-169 |#1|)))))) (-684 (-169 (-407 (-563)))) |#1|)))
+((-3616 (((-174 (-563)) |#1|) 25)))
+(((-761 |#1|) (-10 -7 (-15 -3616 ((-174 (-563)) |#1|))) (-404)) (T -761))
+((-3616 (*1 *2 *3) (-12 (-5 *2 (-174 (-563))) (-5 *1 (-761 *3)) (-4 *3 (-404)))))
+(-10 -7 (-15 -3616 ((-174 (-563)) |#1|)))
+((-3142 ((|#1| |#1| |#1|) 24)) (-3151 ((|#1| |#1| |#1|) 23)) (-3036 ((|#1| |#1| |#1|) 32)) (-3121 ((|#1| |#1| |#1|) 28)) (-3132 (((-3 |#1| "failed") |#1| |#1|) 27)) (-3177 (((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|) 22)))
+(((-762 |#1| |#2|) (-10 -7 (-15 -3177 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -3151 (|#1| |#1| |#1|)) (-15 -3142 (|#1| |#1| |#1|)) (-15 -3132 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3121 (|#1| |#1| |#1|)) (-15 -3036 (|#1| |#1| |#1|))) (-704 |#2|) (-363)) (T -762))
+((-3036 (*1 *2 *2 *2) (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3)))) (-3121 (*1 *2 *2 *2) (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3)))) (-3132 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3)))) (-3142 (*1 *2 *2 *2) (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3)))) (-3151 (*1 *2 *2 *2) (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3)))) (-3177 (*1 *2 *3 *3) (-12 (-4 *4 (-363)) (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-762 *3 *4)) (-4 *3 (-704 *4)))))
+(-10 -7 (-15 -3177 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -3151 (|#1| |#1| |#1|)) (-15 -3142 (|#1| |#1| |#1|)) (-15 -3132 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3121 (|#1| |#1| |#1|)) (-15 -3036 (|#1| |#1| |#1|)))
+((-3233 (((-686 (-1215)) $ (-1215)) 26)) (-3243 (((-686 (-548)) $ (-548)) 25)) (-3225 (((-767) $ (-128)) 27)) (-3254 (((-686 (-129)) $ (-129)) 24)) (-3884 (((-686 (-1215)) $) 12)) (-3848 (((-686 (-1214)) $) 8)) (-3864 (((-686 (-1213)) $) 10)) (-3896 (((-686 (-548)) $) 13)) (-3857 (((-686 (-547)) $) 9)) (-3874 (((-686 (-546)) $) 11)) (-3839 (((-767) $ (-128)) 7)) (-3907 (((-686 (-129)) $) 14)) (-1791 (((-112) $) 31)) (-1803 (((-686 $) |#1| (-950)) 32)) (-1895 (($ $) 6)))
(((-763 |#1|) (-140) (-1093)) (T -763))
-((-2755 (*1 *2 *3 *4) (-12 (-5 *4 (-950)) (-4 *3 (-1093)) (-5 *2 (-686 *1)) (-4 *1 (-763 *3)))) (-2791 (*1 *2 *1) (-12 (-4 *1 (-763 *3)) (-4 *3 (-1093)) (-5 *2 (-112)))))
-(-13 (-575) (-10 -8 (-15 -2755 ((-686 $) |t#1| (-950))) (-15 -2791 ((-112) $))))
+((-1803 (*1 *2 *3 *4) (-12 (-5 *4 (-950)) (-4 *3 (-1093)) (-5 *2 (-686 *1)) (-4 *1 (-763 *3)))) (-1791 (*1 *2 *1) (-12 (-4 *1 (-763 *3)) (-4 *3 (-1093)) (-5 *2 (-112)))))
+(-13 (-575) (-10 -8 (-15 -1803 ((-686 $) |t#1| (-950))) (-15 -1791 ((-112) $))))
(((-173) . T) ((-527) . T) ((-575) . T) ((-856) . T))
-((-3435 (((-2 (|:| -4315 (-684 (-563))) (|:| |basisDen| (-563)) (|:| |basisInv| (-684 (-563)))) (-563)) 59)) (-3815 (((-2 (|:| -4315 (-684 (-563))) (|:| |basisDen| (-563)) (|:| |basisInv| (-684 (-563))))) 57)) (-2315 (((-563)) 70)))
-(((-764 |#1| |#2|) (-10 -7 (-15 -2315 ((-563))) (-15 -3815 ((-2 (|:| -4315 (-684 (-563))) (|:| |basisDen| (-563)) (|:| |basisInv| (-684 (-563)))))) (-15 -3435 ((-2 (|:| -4315 (-684 (-563))) (|:| |basisDen| (-563)) (|:| |basisInv| (-684 (-563)))) (-563)))) (-1233 (-563)) (-409 (-563) |#1|)) (T -764))
-((-3435 (*1 *2 *3) (-12 (-5 *3 (-563)) (-4 *4 (-1233 *3)) (-5 *2 (-2 (|:| -4315 (-684 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-684 *3)))) (-5 *1 (-764 *4 *5)) (-4 *5 (-409 *3 *4)))) (-3815 (*1 *2) (-12 (-4 *3 (-1233 (-563))) (-5 *2 (-2 (|:| -4315 (-684 (-563))) (|:| |basisDen| (-563)) (|:| |basisInv| (-684 (-563))))) (-5 *1 (-764 *3 *4)) (-4 *4 (-409 (-563) *3)))) (-2315 (*1 *2) (-12 (-4 *3 (-1233 *2)) (-5 *2 (-563)) (-5 *1 (-764 *3 *4)) (-4 *4 (-409 *2 *3)))))
-(-10 -7 (-15 -2315 ((-563))) (-15 -3815 ((-2 (|:| -4315 (-684 (-563))) (|:| |basisDen| (-563)) (|:| |basisInv| (-684 (-563)))))) (-15 -3435 ((-2 (|:| -4315 (-684 (-563))) (|:| |basisDen| (-563)) (|:| |basisInv| (-684 (-563)))) (-563))))
-((-1677 (((-112) $ $) NIL)) (-2058 (((-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) $) 21)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 20) (($ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 13) (($ (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 16) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) 18)) (-1718 (((-112) $ $) NIL)))
-(((-765) (-13 (-1093) (-10 -8 (-15 -1693 ($ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1693 ($ (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1693 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (-15 -2058 ((-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) $))))) (T -765))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-765)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-765)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) (-5 *1 (-765)))) (-2058 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) (-5 *1 (-765)))))
-(-13 (-1093) (-10 -8 (-15 -1693 ($ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1693 ($ (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1693 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (-15 -2058 ((-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) $))))
-((-4062 (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|))) 18) (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)) (-640 (-1169))) 17)) (-1793 (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|))) 20) (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)) (-640 (-1169))) 19)))
-(((-766 |#1|) (-10 -7 (-15 -4062 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -4062 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)))) (-15 -1793 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -1793 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|))))) (-555)) (T -766))
-((-1793 (*1 *2 *3) (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *4)))))) (-5 *1 (-766 *4)))) (-1793 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-640 (-1169))) (-4 *5 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *5)))))) (-5 *1 (-766 *5)))) (-4062 (*1 *2 *3) (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *4)))))) (-5 *1 (-766 *4)))) (-4062 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-640 (-1169))) (-4 *5 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *5)))))) (-5 *1 (-766 *5)))))
-(-10 -7 (-15 -4062 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -4062 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)))) (-15 -1793 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -1793 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1901 (($ $ $) 6)) (-1495 (((-3 $ "failed") $ $) 9)) (-3458 (($ $ (-563)) 7)) (-4239 (($) NIL T CONST)) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($ $) NIL)) (-3050 (($ $ $) NIL)) (-3827 (((-112) $) NIL)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3548 (($ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-1693 (((-858) $) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-767)) NIL) (($ $ (-917)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ $ $) NIL)))
-(((-767) (-13 (-789) (-722) (-10 -8 (-15 -3050 ($ $ $)) (-15 -3090 ($ $ $)) (-15 -3548 ($ $ $)) (-15 -2452 ((-2 (|:| -3490 $) (|:| -1972 $)) $ $)) (-15 -3008 ((-3 $ "failed") $ $)) (-15 -3458 ($ $ (-563))) (-15 -1691 ($ $)) (-6 (-4409 "*"))))) (T -767))
-((-3050 (*1 *1 *1 *1) (-5 *1 (-767))) (-3090 (*1 *1 *1 *1) (-5 *1 (-767))) (-3548 (*1 *1 *1 *1) (-5 *1 (-767))) (-2452 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3490 (-767)) (|:| -1972 (-767)))) (-5 *1 (-767)))) (-3008 (*1 *1 *1 *1) (|partial| -5 *1 (-767))) (-3458 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-767)))) (-1691 (*1 *1 *1) (-5 *1 (-767))))
-(-13 (-789) (-722) (-10 -8 (-15 -3050 ($ $ $)) (-15 -3090 ($ $ $)) (-15 -3548 ($ $ $)) (-15 -2452 ((-2 (|:| -3490 $) (|:| -1972 $)) $ $)) (-15 -3008 ((-3 $ "failed") $ $)) (-15 -3458 ($ $ (-563))) (-15 -1691 ($ $)) (-6 (-4409 "*"))))
+((-3619 (((-2 (|:| -4013 (-684 (-563))) (|:| |basisDen| (-563)) (|:| |basisInv| (-684 (-563)))) (-563)) 59)) (-3608 (((-2 (|:| -4013 (-684 (-563))) (|:| |basisDen| (-563)) (|:| |basisInv| (-684 (-563))))) 57)) (-1623 (((-563)) 70)))
+(((-764 |#1| |#2|) (-10 -7 (-15 -1623 ((-563))) (-15 -3608 ((-2 (|:| -4013 (-684 (-563))) (|:| |basisDen| (-563)) (|:| |basisInv| (-684 (-563)))))) (-15 -3619 ((-2 (|:| -4013 (-684 (-563))) (|:| |basisDen| (-563)) (|:| |basisInv| (-684 (-563)))) (-563)))) (-1233 (-563)) (-409 (-563) |#1|)) (T -764))
+((-3619 (*1 *2 *3) (-12 (-5 *3 (-563)) (-4 *4 (-1233 *3)) (-5 *2 (-2 (|:| -4013 (-684 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-684 *3)))) (-5 *1 (-764 *4 *5)) (-4 *5 (-409 *3 *4)))) (-3608 (*1 *2) (-12 (-4 *3 (-1233 (-563))) (-5 *2 (-2 (|:| -4013 (-684 (-563))) (|:| |basisDen| (-563)) (|:| |basisInv| (-684 (-563))))) (-5 *1 (-764 *3 *4)) (-4 *4 (-409 (-563) *3)))) (-1623 (*1 *2) (-12 (-4 *3 (-1233 *2)) (-5 *2 (-563)) (-5 *1 (-764 *3 *4)) (-4 *4 (-409 *2 *3)))))
+(-10 -7 (-15 -1623 ((-563))) (-15 -3608 ((-2 (|:| -4013 (-684 (-563))) (|:| |basisDen| (-563)) (|:| |basisInv| (-684 (-563)))))) (-15 -3619 ((-2 (|:| -4013 (-684 (-563))) (|:| |basisDen| (-563)) (|:| |basisInv| (-684 (-563)))) (-563))))
+((-1677 (((-112) $ $) NIL)) (-2057 (((-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) $) 21)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 20) (($ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 13) (($ (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 16) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) 18)) (-1718 (((-112) $ $) NIL)))
+(((-765) (-13 (-1093) (-10 -8 (-15 -1692 ($ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1692 ($ (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1692 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (-15 -2057 ((-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) $))))) (T -765))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-765)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-765)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) (-5 *1 (-765)))) (-2057 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) (-5 *1 (-765)))))
+(-13 (-1093) (-10 -8 (-15 -1692 ($ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1692 ($ (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1692 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (-15 -2057 ((-3 (|:| |nia| (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) $))))
+((-1306 (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|))) 18) (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)) (-640 (-1169))) 17)) (-3510 (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|))) 20) (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)) (-640 (-1169))) 19)))
+(((-766 |#1|) (-10 -7 (-15 -1306 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -1306 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)))) (-15 -3510 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -3510 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|))))) (-555)) (T -766))
+((-3510 (*1 *2 *3) (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *4)))))) (-5 *1 (-766 *4)))) (-3510 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-640 (-1169))) (-4 *5 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *5)))))) (-5 *1 (-766 *5)))) (-1306 (*1 *2 *3) (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *4)))))) (-5 *1 (-766 *4)))) (-1306 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-640 (-1169))) (-4 *5 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *5)))))) (-5 *1 (-766 *5)))))
+(-10 -7 (-15 -1306 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -1306 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)))) (-15 -3510 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -3510 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-948 |#1|)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-4092 (($ $ $) 6)) (-3905 (((-3 $ "failed") $ $) 9)) (-3462 (($ $ (-563)) 7)) (-2569 (($) NIL T CONST)) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($ $) NIL)) (-3054 (($ $ $) NIL)) (-3401 (((-112) $) NIL)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3551 (($ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-1692 (((-858) $) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-767)) NIL) (($ $ (-917)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ $ $) NIL)))
+(((-767) (-13 (-789) (-722) (-10 -8 (-15 -3054 ($ $ $)) (-15 -3094 ($ $ $)) (-15 -3551 ($ $ $)) (-15 -3263 ((-2 (|:| -1765 $) (|:| -3443 $)) $ $)) (-15 -3012 ((-3 $ "failed") $ $)) (-15 -3462 ($ $ (-563))) (-15 -1690 ($ $)) (-6 (-4410 "*"))))) (T -767))
+((-3054 (*1 *1 *1 *1) (-5 *1 (-767))) (-3094 (*1 *1 *1 *1) (-5 *1 (-767))) (-3551 (*1 *1 *1 *1) (-5 *1 (-767))) (-3263 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1765 (-767)) (|:| -3443 (-767)))) (-5 *1 (-767)))) (-3012 (*1 *1 *1 *1) (|partial| -5 *1 (-767))) (-3462 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-767)))) (-1690 (*1 *1 *1) (-5 *1 (-767))))
+(-13 (-789) (-722) (-10 -8 (-15 -3054 ($ $ $)) (-15 -3094 ($ $ $)) (-15 -3551 ($ $ $)) (-15 -3263 ((-2 (|:| -1765 $) (|:| -3443 $)) $ $)) (-15 -3012 ((-3 $ "failed") $ $)) (-15 -3462 ($ $ (-563))) (-15 -1690 ($ $)) (-6 (-4410 "*"))))
((|Integer|) (COND ((< |#1| 0) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-1793 (((-3 |#2| "failed") |#2| |#2| (-114) (-1169)) 35)))
-(((-768 |#1| |#2|) (-10 -7 (-15 -1793 ((-3 |#2| "failed") |#2| |#2| (-114) (-1169)))) (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)) (-13 (-29 |#1|) (-1193) (-955))) (T -768))
-((-1793 (*1 *2 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1169)) (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *1 (-768 *5 *2)) (-4 *2 (-13 (-29 *5) (-1193) (-955))))))
-(-10 -7 (-15 -1793 ((-3 |#2| "failed") |#2| |#2| (-114) (-1169))))
-((-1693 (((-770) |#1|) 8)))
-(((-769 |#1|) (-10 -7 (-15 -1693 ((-770) |#1|))) (-1208)) (T -769))
-((-1693 (*1 *2 *3) (-12 (-5 *2 (-770)) (-5 *1 (-769 *3)) (-4 *3 (-1208)))))
-(-10 -7 (-15 -1693 ((-770) |#1|)))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 7)) (-1718 (((-112) $ $) 9)))
+((-3510 (((-3 |#2| "failed") |#2| |#2| (-114) (-1169)) 35)))
+(((-768 |#1| |#2|) (-10 -7 (-15 -3510 ((-3 |#2| "failed") |#2| |#2| (-114) (-1169)))) (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)) (-13 (-29 |#1|) (-1193) (-955))) (T -768))
+((-3510 (*1 *2 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1169)) (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *1 (-768 *5 *2)) (-4 *2 (-13 (-29 *5) (-1193) (-955))))))
+(-10 -7 (-15 -3510 ((-3 |#2| "failed") |#2| |#2| (-114) (-1169))))
+((-1692 (((-770) |#1|) 8)))
+(((-769 |#1|) (-10 -7 (-15 -1692 ((-770) |#1|))) (-1208)) (T -769))
+((-1692 (*1 *2 *3) (-12 (-5 *2 (-770)) (-5 *1 (-769 *3)) (-4 *3 (-1208)))))
+(-10 -7 (-15 -1692 ((-770) |#1|)))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 7)) (-1718 (((-112) $ $) 9)))
(((-770) (-1093)) (T -770))
NIL
(-1093)
-((-3793 ((|#2| |#4|) 35)))
-(((-771 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3793 (|#2| |#4|))) (-452) (-1233 |#1|) (-720 |#1| |#2|) (-1233 |#3|)) (T -771))
-((-3793 (*1 *2 *3) (-12 (-4 *4 (-452)) (-4 *5 (-720 *4 *2)) (-4 *2 (-1233 *4)) (-5 *1 (-771 *4 *2 *5 *3)) (-4 *3 (-1233 *5)))))
-(-10 -7 (-15 -3793 (|#2| |#4|)))
-((-3400 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 56)) (-1487 (((-1262) (-1151) (-1151) |#4| |#5|) 33)) (-3166 ((|#4| |#4| |#5|) 72)) (-2441 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#5|) 76)) (-3803 (((-640 (-2 (|:| |val| (-112)) (|:| -2059 |#5|))) |#4| |#5|) 16)))
-(((-772 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3400 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -3166 (|#4| |#4| |#5|)) (-15 -2441 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#5|)) (-15 -1487 ((-1262) (-1151) (-1151) |#4| |#5|)) (-15 -3803 ((-640 (-2 (|:| |val| (-112)) (|:| -2059 |#5|))) |#4| |#5|))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1065 |#1| |#2| |#3| |#4|)) (T -772))
-((-3803 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2059 *4)))) (-5 *1 (-772 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-1487 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-1151)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *4 (-1059 *6 *7 *8)) (-5 *2 (-1262)) (-5 *1 (-772 *6 *7 *8 *4 *5)) (-4 *5 (-1065 *6 *7 *8 *4)))) (-2441 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4)))) (-5 *1 (-772 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3166 (*1 *2 *2 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *2 (-1059 *4 *5 *6)) (-5 *1 (-772 *4 *5 *6 *2 *3)) (-4 *3 (-1065 *4 *5 *6 *2)))) (-3400 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3))) (-5 *1 (-772 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(-10 -7 (-15 -3400 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -3166 (|#4| |#4| |#5|)) (-15 -2441 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#5|)) (-15 -1487 ((-1262) (-1151) (-1151) |#4| |#5|)) (-15 -3803 ((-640 (-2 (|:| |val| (-112)) (|:| -2059 |#5|))) |#4| |#5|)))
-((-2131 (((-3 (-1165 (-1165 |#1|)) "failed") |#4|) 43)) (-3414 (((-640 |#4|) |#4|) 15)) (-2350 ((|#4| |#4|) 11)))
-(((-773 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3414 ((-640 |#4|) |#4|)) (-15 -2131 ((-3 (-1165 (-1165 |#1|)) "failed") |#4|)) (-15 -2350 (|#4| |#4|))) (-349) (-329 |#1|) (-1233 |#2|) (-1233 |#3|) (-917)) (T -773))
-((-2350 (*1 *2 *2) (-12 (-4 *3 (-349)) (-4 *4 (-329 *3)) (-4 *5 (-1233 *4)) (-5 *1 (-773 *3 *4 *5 *2 *6)) (-4 *2 (-1233 *5)) (-14 *6 (-917)))) (-2131 (*1 *2 *3) (|partial| -12 (-4 *4 (-349)) (-4 *5 (-329 *4)) (-4 *6 (-1233 *5)) (-5 *2 (-1165 (-1165 *4))) (-5 *1 (-773 *4 *5 *6 *3 *7)) (-4 *3 (-1233 *6)) (-14 *7 (-917)))) (-3414 (*1 *2 *3) (-12 (-4 *4 (-349)) (-4 *5 (-329 *4)) (-4 *6 (-1233 *5)) (-5 *2 (-640 *3)) (-5 *1 (-773 *4 *5 *6 *3 *7)) (-4 *3 (-1233 *6)) (-14 *7 (-917)))))
-(-10 -7 (-15 -3414 ((-640 |#4|) |#4|)) (-15 -2131 ((-3 (-1165 (-1165 |#1|)) "failed") |#4|)) (-15 -2350 (|#4| |#4|)))
-((-3176 (((-2 (|:| |deter| (-640 (-1165 |#5|))) (|:| |dterm| (-640 (-640 (-2 (|:| -4008 (-767)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-640 |#1|)) (|:| |nlead| (-640 |#5|))) (-1165 |#5|) (-640 |#1|) (-640 |#5|)) 53)) (-2943 (((-640 (-767)) |#1|) 13)))
-(((-774 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3176 ((-2 (|:| |deter| (-640 (-1165 |#5|))) (|:| |dterm| (-640 (-640 (-2 (|:| -4008 (-767)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-640 |#1|)) (|:| |nlead| (-640 |#5|))) (-1165 |#5|) (-640 |#1|) (-640 |#5|))) (-15 -2943 ((-640 (-767)) |#1|))) (-1233 |#4|) (-789) (-846) (-307) (-945 |#4| |#2| |#3|)) (T -774))
-((-2943 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)) (-5 *2 (-640 (-767))) (-5 *1 (-774 *3 *4 *5 *6 *7)) (-4 *3 (-1233 *6)) (-4 *7 (-945 *6 *4 *5)))) (-3176 (*1 *2 *3 *4 *5) (-12 (-4 *6 (-1233 *9)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *9 (-307)) (-4 *10 (-945 *9 *7 *8)) (-5 *2 (-2 (|:| |deter| (-640 (-1165 *10))) (|:| |dterm| (-640 (-640 (-2 (|:| -4008 (-767)) (|:| |pcoef| *10))))) (|:| |nfacts| (-640 *6)) (|:| |nlead| (-640 *10)))) (-5 *1 (-774 *6 *7 *8 *9 *10)) (-5 *3 (-1165 *10)) (-5 *4 (-640 *6)) (-5 *5 (-640 *10)))))
-(-10 -7 (-15 -3176 ((-2 (|:| |deter| (-640 (-1165 |#5|))) (|:| |dterm| (-640 (-640 (-2 (|:| -4008 (-767)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-640 |#1|)) (|:| |nlead| (-640 |#5|))) (-1165 |#5|) (-640 |#1|) (-640 |#5|))) (-15 -2943 ((-640 (-767)) |#1|)))
-((-2491 (((-640 (-2 (|:| |outval| |#1|) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 |#1|))))) (-684 (-407 (-563))) |#1|) 31)) (-4128 (((-640 |#1|) (-684 (-407 (-563))) |#1|) 21)) (-3421 (((-948 (-407 (-563))) (-684 (-407 (-563))) (-1169)) 18) (((-948 (-407 (-563))) (-684 (-407 (-563)))) 17)))
-(((-775 |#1|) (-10 -7 (-15 -3421 ((-948 (-407 (-563))) (-684 (-407 (-563))))) (-15 -3421 ((-948 (-407 (-563))) (-684 (-407 (-563))) (-1169))) (-15 -4128 ((-640 |#1|) (-684 (-407 (-563))) |#1|)) (-15 -2491 ((-640 (-2 (|:| |outval| |#1|) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 |#1|))))) (-684 (-407 (-563))) |#1|))) (-13 (-363) (-844))) (T -775))
-((-2491 (*1 *2 *3 *4) (-12 (-5 *3 (-684 (-407 (-563)))) (-5 *2 (-640 (-2 (|:| |outval| *4) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 *4)))))) (-5 *1 (-775 *4)) (-4 *4 (-13 (-363) (-844))))) (-4128 (*1 *2 *3 *4) (-12 (-5 *3 (-684 (-407 (-563)))) (-5 *2 (-640 *4)) (-5 *1 (-775 *4)) (-4 *4 (-13 (-363) (-844))))) (-3421 (*1 *2 *3 *4) (-12 (-5 *3 (-684 (-407 (-563)))) (-5 *4 (-1169)) (-5 *2 (-948 (-407 (-563)))) (-5 *1 (-775 *5)) (-4 *5 (-13 (-363) (-844))))) (-3421 (*1 *2 *3) (-12 (-5 *3 (-684 (-407 (-563)))) (-5 *2 (-948 (-407 (-563)))) (-5 *1 (-775 *4)) (-4 *4 (-13 (-363) (-844))))))
-(-10 -7 (-15 -3421 ((-948 (-407 (-563))) (-684 (-407 (-563))))) (-15 -3421 ((-948 (-407 (-563))) (-684 (-407 (-563))) (-1169))) (-15 -4128 ((-640 |#1|) (-684 (-407 (-563))) |#1|)) (-15 -2491 ((-640 (-2 (|:| |outval| |#1|) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 |#1|))))) (-684 (-407 (-563))) |#1|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 34)) (-2606 (((-640 |#2|) $) NIL)) (-2139 (((-1165 $) $ |#2|) NIL) (((-1165 |#1|) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-1779 (((-767) $) NIL) (((-767) $ (-640 |#2|)) NIL)) (-4302 (($ $) 28)) (-2645 (((-112) $ $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3724 (($ $ $) 92 (|has| |#1| (-555)))) (-1623 (((-640 $) $ $) 105 (|has| |#1| (-555)))) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-4335 (($ $) NIL (|has| |#1| (-452)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 |#2| "failed") $) NIL) (((-3 $ "failed") (-948 (-407 (-563)))) NIL (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169))))) (((-3 $ "failed") (-948 (-563))) NIL (-4032 (-12 (|has| |#1| (-38 (-563))) (|has| |#2| (-611 (-1169))) (-2176 (|has| |#1| (-38 (-407 (-563)))))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169)))))) (((-3 $ "failed") (-948 |#1|)) NIL (-4032 (-12 (|has| |#2| (-611 (-1169))) (-2176 (|has| |#1| (-38 (-407 (-563))))) (-2176 (|has| |#1| (-38 (-563))))) (-12 (|has| |#1| (-38 (-563))) (|has| |#2| (-611 (-1169))) (-2176 (|has| |#1| (-38 (-407 (-563))))) (-2176 (|has| |#1| (-545)))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169))) (-2176 (|has| |#1| (-988 (-563))))))) (((-3 (-1118 |#1| |#2|) "failed") $) 18)) (-2058 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) ((|#2| $) NIL) (($ (-948 (-407 (-563)))) NIL (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169))))) (($ (-948 (-563))) NIL (-4032 (-12 (|has| |#1| (-38 (-563))) (|has| |#2| (-611 (-1169))) (-2176 (|has| |#1| (-38 (-407 (-563)))))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169)))))) (($ (-948 |#1|)) NIL (-4032 (-12 (|has| |#2| (-611 (-1169))) (-2176 (|has| |#1| (-38 (-407 (-563))))) (-2176 (|has| |#1| (-38 (-563))))) (-12 (|has| |#1| (-38 (-563))) (|has| |#2| (-611 (-1169))) (-2176 (|has| |#1| (-38 (-407 (-563))))) (-2176 (|has| |#1| (-545)))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169))) (-2176 (|has| |#1| (-988 (-563))))))) (((-1118 |#1| |#2|) $) NIL)) (-2742 (($ $ $ |#2|) NIL (|has| |#1| (-172))) (($ $ $) 103 (|has| |#1| (-555)))) (-2751 (($ $) NIL) (($ $ |#2|) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3990 (((-112) $ $) NIL) (((-112) $ (-640 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-2921 (((-112) $) NIL)) (-2521 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 69)) (-2060 (($ $) 118 (|has| |#1| (-452)))) (-1300 (($ $) NIL (|has| |#1| (-452))) (($ $ |#2|) NIL (|has| |#1| (-452)))) (-2739 (((-640 $) $) NIL)) (-2468 (((-112) $) NIL (|has| |#1| (-905)))) (-2003 (($ $) NIL (|has| |#1| (-555)))) (-2253 (($ $) NIL (|has| |#1| (-555)))) (-4189 (($ $ $) 64) (($ $ $ |#2|) NIL)) (-2110 (($ $ $) 67) (($ $ $ |#2|) NIL)) (-3554 (($ $ |#1| (-531 |#2|) $) NIL)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| |#1| (-882 (-379))) (|has| |#2| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| |#1| (-882 (-563))) (|has| |#2| (-882 (-563)))))) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) NIL)) (-2299 (((-112) $ $) NIL) (((-112) $ (-640 $)) NIL)) (-2398 (($ $ $ $ $) 89 (|has| |#1| (-555)))) (-2957 ((|#2| $) 19)) (-2596 (($ (-1165 |#1|) |#2|) NIL) (($ (-1165 $) |#2|) NIL)) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-531 |#2|)) NIL) (($ $ |#2| (-767)) 36) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-1421 (($ $ $) 60)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ |#2|) NIL)) (-2792 (((-112) $) NIL)) (-2048 (((-531 |#2|) $) NIL) (((-767) $ |#2|) NIL) (((-640 (-767)) $ (-640 |#2|)) NIL)) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-3064 (((-767) $) 20)) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-2803 (($ (-1 (-531 |#2|) (-531 |#2|)) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-4234 (((-3 |#2| "failed") $) NIL)) (-2216 (($ $) NIL (|has| |#1| (-452)))) (-3208 (($ $) NIL (|has| |#1| (-452)))) (-2305 (((-640 $) $) NIL)) (-2196 (($ $) 37)) (-4099 (($ $) NIL (|has| |#1| (-452)))) (-2120 (((-640 $) $) 41)) (-4216 (($ $) 39)) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL) (($ $ |#2|) 45)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3206 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -2269 (-767))) $ $) 81)) (-2365 (((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -3490 $) (|:| -1972 $)) $ $) 66) (((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -3490 $) (|:| -1972 $)) $ $ |#2|) NIL)) (-4227 (((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -1972 $)) $ $) NIL) (((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -1972 $)) $ $ |#2|) NIL)) (-2173 (($ $ $) 71) (($ $ $ |#2|) NIL)) (-2679 (($ $ $) 74) (($ $ $ |#2|) NIL)) (-3573 (((-1151) $) NIL)) (-2898 (($ $ $) 107 (|has| |#1| (-555)))) (-2134 (((-640 $) $) 30)) (-3733 (((-3 (-640 $) "failed") $) NIL)) (-2919 (((-3 (-640 $) "failed") $) NIL)) (-4086 (((-3 (-2 (|:| |var| |#2|) (|:| -1654 (-767))) "failed") $) NIL)) (-4197 (((-112) $ $) NIL) (((-112) $ (-640 $)) NIL)) (-2715 (($ $ $) NIL)) (-2523 (($ $) 21)) (-3009 (((-112) $ $) NIL)) (-2031 (((-112) $ $) NIL) (((-112) $ (-640 $)) NIL)) (-4056 (($ $ $) NIL)) (-2917 (($ $) 23)) (-1694 (((-1113) $) NIL)) (-4110 (((-2 (|:| -3548 $) (|:| |coef2| $)) $ $) 98 (|has| |#1| (-555)))) (-3183 (((-2 (|:| -3548 $) (|:| |coef1| $)) $ $) 95 (|has| |#1| (-555)))) (-2696 (((-112) $) 52)) (-2706 ((|#1| $) 55)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3548 ((|#1| |#1| $) 115 (|has| |#1| (-452))) (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2174 (((-418 $) $) NIL (|has| |#1| (-905)))) (-2758 (((-2 (|:| -3548 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 101 (|has| |#1| (-555)))) (-3008 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) 83 (|has| |#1| (-555)))) (-2307 (($ $ |#1|) 111 (|has| |#1| (-555))) (($ $ $) NIL (|has| |#1| (-555)))) (-1327 (($ $ |#1|) 110 (|has| |#1| (-555))) (($ $ $) NIL (|has| |#1| (-555)))) (-1540 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-640 |#2|) (-640 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-640 |#2|) (-640 $)) NIL)) (-2315 (($ $ |#2|) NIL (|has| |#1| (-172)))) (-4202 (($ $ |#2|) NIL) (($ $ (-640 |#2|)) NIL) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-4167 (((-531 |#2|) $) NIL) (((-767) $ |#2|) 43) (((-640 (-767)) $ (-640 |#2|)) NIL)) (-1935 (($ $) NIL)) (-3938 (($ $) 33)) (-2220 (((-888 (-379)) $) NIL (-12 (|has| |#1| (-611 (-888 (-379)))) (|has| |#2| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| |#1| (-611 (-888 (-563)))) (|has| |#2| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| |#1| (-611 (-536))) (|has| |#2| (-611 (-536))))) (($ (-948 (-407 (-563)))) NIL (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169))))) (($ (-948 (-563))) NIL (-4032 (-12 (|has| |#1| (-38 (-563))) (|has| |#2| (-611 (-1169))) (-2176 (|has| |#1| (-38 (-407 (-563)))))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169)))))) (($ (-948 |#1|)) NIL (|has| |#2| (-611 (-1169)))) (((-1151) $) NIL (-12 (|has| |#1| (-1034 (-563))) (|has| |#2| (-611 (-1169))))) (((-948 |#1|) $) NIL (|has| |#2| (-611 (-1169))))) (-1836 ((|#1| $) 114 (|has| |#1| (-452))) (($ $ |#2|) NIL (|has| |#1| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ |#2|) NIL) (((-948 |#1|) $) NIL (|has| |#2| (-611 (-1169)))) (((-1118 |#1| |#2|) $) 15) (($ (-1118 |#1| |#2|)) 16) (($ (-407 (-563))) NIL (-4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-1337 (((-640 |#1|) $) NIL)) (-4319 ((|#1| $ (-531 |#2|)) NIL) (($ $ |#2| (-767)) 44) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-1675 (((-767)) NIL)) (-2793 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2241 (($) 13 T CONST)) (-3738 (((-3 (-112) "failed") $ $) NIL)) (-2254 (($) 35 T CONST)) (-1298 (($ $ $ $ (-767)) 87 (|has| |#1| (-555)))) (-2771 (($ $ $ (-767)) 86 (|has| |#1| (-555)))) (-3209 (($ $ |#2|) NIL) (($ $ (-640 |#2|)) NIL) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) 54)) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) 63)) (-1814 (($ $ $) 73)) (** (($ $ (-917)) NIL) (($ $ (-767)) 61)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 59) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 58) (($ $ |#1|) NIL)))
+((-3975 ((|#2| |#4|) 35)))
+(((-771 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3975 (|#2| |#4|))) (-452) (-1233 |#1|) (-720 |#1| |#2|) (-1233 |#3|)) (T -771))
+((-3975 (*1 *2 *3) (-12 (-4 *4 (-452)) (-4 *5 (-720 *4 *2)) (-4 *2 (-1233 *4)) (-5 *1 (-771 *4 *2 *5 *3)) (-4 *3 (-1233 *5)))))
+(-10 -7 (-15 -3975 (|#2| |#4|)))
+((-3951 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 56)) (-1837 (((-1262) (-1151) (-1151) |#4| |#5|) 33)) (-1814 ((|#4| |#4| |#5|) 72)) (-1826 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#5|) 76)) (-1846 (((-640 (-2 (|:| |val| (-112)) (|:| -2058 |#5|))) |#4| |#5|) 16)))
+(((-772 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3951 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -1814 (|#4| |#4| |#5|)) (-15 -1826 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#5|)) (-15 -1837 ((-1262) (-1151) (-1151) |#4| |#5|)) (-15 -1846 ((-640 (-2 (|:| |val| (-112)) (|:| -2058 |#5|))) |#4| |#5|))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1065 |#1| |#2| |#3| |#4|)) (T -772))
+((-1846 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2058 *4)))) (-5 *1 (-772 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-1837 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-1151)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *4 (-1059 *6 *7 *8)) (-5 *2 (-1262)) (-5 *1 (-772 *6 *7 *8 *4 *5)) (-4 *5 (-1065 *6 *7 *8 *4)))) (-1826 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4)))) (-5 *1 (-772 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-1814 (*1 *2 *2 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *2 (-1059 *4 *5 *6)) (-5 *1 (-772 *4 *5 *6 *2 *3)) (-4 *3 (-1065 *4 *5 *6 *2)))) (-3951 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3))) (-5 *1 (-772 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(-10 -7 (-15 -3951 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -1814 (|#4| |#4| |#5|)) (-15 -1826 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#5|)) (-15 -1837 ((-1262) (-1151) (-1151) |#4| |#5|)) (-15 -1846 ((-640 (-2 (|:| |val| (-112)) (|:| -2058 |#5|))) |#4| |#5|)))
+((-2130 (((-3 (-1165 (-1165 |#1|)) "failed") |#4|) 43)) (-1859 (((-640 |#4|) |#4|) 15)) (-3715 ((|#4| |#4|) 11)))
+(((-773 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1859 ((-640 |#4|) |#4|)) (-15 -2130 ((-3 (-1165 (-1165 |#1|)) "failed") |#4|)) (-15 -3715 (|#4| |#4|))) (-349) (-329 |#1|) (-1233 |#2|) (-1233 |#3|) (-917)) (T -773))
+((-3715 (*1 *2 *2) (-12 (-4 *3 (-349)) (-4 *4 (-329 *3)) (-4 *5 (-1233 *4)) (-5 *1 (-773 *3 *4 *5 *2 *6)) (-4 *2 (-1233 *5)) (-14 *6 (-917)))) (-2130 (*1 *2 *3) (|partial| -12 (-4 *4 (-349)) (-4 *5 (-329 *4)) (-4 *6 (-1233 *5)) (-5 *2 (-1165 (-1165 *4))) (-5 *1 (-773 *4 *5 *6 *3 *7)) (-4 *3 (-1233 *6)) (-14 *7 (-917)))) (-1859 (*1 *2 *3) (-12 (-4 *4 (-349)) (-4 *5 (-329 *4)) (-4 *6 (-1233 *5)) (-5 *2 (-640 *3)) (-5 *1 (-773 *4 *5 *6 *3 *7)) (-4 *3 (-1233 *6)) (-14 *7 (-917)))))
+(-10 -7 (-15 -1859 ((-640 |#4|) |#4|)) (-15 -2130 ((-3 (-1165 (-1165 |#1|)) "failed") |#4|)) (-15 -3715 (|#4| |#4|)))
+((-1868 (((-2 (|:| |deter| (-640 (-1165 |#5|))) (|:| |dterm| (-640 (-640 (-2 (|:| -1646 (-767)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-640 |#1|)) (|:| |nlead| (-640 |#5|))) (-1165 |#5|) (-640 |#1|) (-640 |#5|)) 53)) (-1880 (((-640 (-767)) |#1|) 13)))
+(((-774 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1868 ((-2 (|:| |deter| (-640 (-1165 |#5|))) (|:| |dterm| (-640 (-640 (-2 (|:| -1646 (-767)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-640 |#1|)) (|:| |nlead| (-640 |#5|))) (-1165 |#5|) (-640 |#1|) (-640 |#5|))) (-15 -1880 ((-640 (-767)) |#1|))) (-1233 |#4|) (-789) (-846) (-307) (-945 |#4| |#2| |#3|)) (T -774))
+((-1880 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)) (-5 *2 (-640 (-767))) (-5 *1 (-774 *3 *4 *5 *6 *7)) (-4 *3 (-1233 *6)) (-4 *7 (-945 *6 *4 *5)))) (-1868 (*1 *2 *3 *4 *5) (-12 (-4 *6 (-1233 *9)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *9 (-307)) (-4 *10 (-945 *9 *7 *8)) (-5 *2 (-2 (|:| |deter| (-640 (-1165 *10))) (|:| |dterm| (-640 (-640 (-2 (|:| -1646 (-767)) (|:| |pcoef| *10))))) (|:| |nfacts| (-640 *6)) (|:| |nlead| (-640 *10)))) (-5 *1 (-774 *6 *7 *8 *9 *10)) (-5 *3 (-1165 *10)) (-5 *4 (-640 *6)) (-5 *5 (-640 *10)))))
+(-10 -7 (-15 -1868 ((-2 (|:| |deter| (-640 (-1165 |#5|))) (|:| |dterm| (-640 (-640 (-2 (|:| -1646 (-767)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-640 |#1|)) (|:| |nlead| (-640 |#5|))) (-1165 |#5|) (-640 |#1|) (-640 |#5|))) (-15 -1880 ((-640 (-767)) |#1|)))
+((-1912 (((-640 (-2 (|:| |outval| |#1|) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 |#1|))))) (-684 (-407 (-563))) |#1|) 31)) (-1901 (((-640 |#1|) (-684 (-407 (-563))) |#1|) 21)) (-1892 (((-948 (-407 (-563))) (-684 (-407 (-563))) (-1169)) 18) (((-948 (-407 (-563))) (-684 (-407 (-563)))) 17)))
+(((-775 |#1|) (-10 -7 (-15 -1892 ((-948 (-407 (-563))) (-684 (-407 (-563))))) (-15 -1892 ((-948 (-407 (-563))) (-684 (-407 (-563))) (-1169))) (-15 -1901 ((-640 |#1|) (-684 (-407 (-563))) |#1|)) (-15 -1912 ((-640 (-2 (|:| |outval| |#1|) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 |#1|))))) (-684 (-407 (-563))) |#1|))) (-13 (-363) (-844))) (T -775))
+((-1912 (*1 *2 *3 *4) (-12 (-5 *3 (-684 (-407 (-563)))) (-5 *2 (-640 (-2 (|:| |outval| *4) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 *4)))))) (-5 *1 (-775 *4)) (-4 *4 (-13 (-363) (-844))))) (-1901 (*1 *2 *3 *4) (-12 (-5 *3 (-684 (-407 (-563)))) (-5 *2 (-640 *4)) (-5 *1 (-775 *4)) (-4 *4 (-13 (-363) (-844))))) (-1892 (*1 *2 *3 *4) (-12 (-5 *3 (-684 (-407 (-563)))) (-5 *4 (-1169)) (-5 *2 (-948 (-407 (-563)))) (-5 *1 (-775 *5)) (-4 *5 (-13 (-363) (-844))))) (-1892 (*1 *2 *3) (-12 (-5 *3 (-684 (-407 (-563)))) (-5 *2 (-948 (-407 (-563)))) (-5 *1 (-775 *4)) (-4 *4 (-13 (-363) (-844))))))
+(-10 -7 (-15 -1892 ((-948 (-407 (-563))) (-684 (-407 (-563))))) (-15 -1892 ((-948 (-407 (-563))) (-684 (-407 (-563))) (-1169))) (-15 -1901 ((-640 |#1|) (-684 (-407 (-563))) |#1|)) (-15 -1912 ((-640 (-2 (|:| |outval| |#1|) (|:| |outmult| (-563)) (|:| |outvect| (-640 (-684 |#1|))))) (-684 (-407 (-563))) |#1|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 34)) (-2605 (((-640 |#2|) $) NIL)) (-2138 (((-1165 $) $ |#2|) NIL) (((-1165 |#1|) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-3897 (((-767) $) NIL) (((-767) $ (-640 |#2|)) NIL)) (-4303 (($ $) 28)) (-1351 (((-112) $ $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1601 (($ $ $) 92 (|has| |#1| (-555)))) (-4282 (((-640 $) $ $) 105 (|has| |#1| (-555)))) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-1798 (($ $) NIL (|has| |#1| (-452)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 |#2| "failed") $) NIL) (((-3 $ "failed") (-948 (-407 (-563)))) NIL (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169))))) (((-3 $ "failed") (-948 (-563))) NIL (-4034 (-12 (|has| |#1| (-38 (-563))) (|has| |#2| (-611 (-1169))) (-2174 (|has| |#1| (-38 (-407 (-563)))))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169)))))) (((-3 $ "failed") (-948 |#1|)) NIL (-4034 (-12 (|has| |#2| (-611 (-1169))) (-2174 (|has| |#1| (-38 (-407 (-563))))) (-2174 (|has| |#1| (-38 (-563))))) (-12 (|has| |#1| (-38 (-563))) (|has| |#2| (-611 (-1169))) (-2174 (|has| |#1| (-38 (-407 (-563))))) (-2174 (|has| |#1| (-545)))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169))) (-2174 (|has| |#1| (-988 (-563))))))) (((-3 (-1118 |#1| |#2|) "failed") $) 18)) (-2057 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) ((|#2| $) NIL) (($ (-948 (-407 (-563)))) NIL (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169))))) (($ (-948 (-563))) NIL (-4034 (-12 (|has| |#1| (-38 (-563))) (|has| |#2| (-611 (-1169))) (-2174 (|has| |#1| (-38 (-407 (-563)))))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169)))))) (($ (-948 |#1|)) NIL (-4034 (-12 (|has| |#2| (-611 (-1169))) (-2174 (|has| |#1| (-38 (-407 (-563))))) (-2174 (|has| |#1| (-38 (-563))))) (-12 (|has| |#1| (-38 (-563))) (|has| |#2| (-611 (-1169))) (-2174 (|has| |#1| (-38 (-407 (-563))))) (-2174 (|has| |#1| (-545)))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169))) (-2174 (|has| |#1| (-988 (-563))))))) (((-1118 |#1| |#2|) $) NIL)) (-1612 (($ $ $ |#2|) NIL (|has| |#1| (-172))) (($ $ $) 103 (|has| |#1| (-555)))) (-2750 (($ $) NIL) (($ $ |#2|) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-2264 (((-112) $ $) NIL) (((-112) $ (-640 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3277 (((-112) $) NIL)) (-1564 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 68)) (-4235 (($ $) 118 (|has| |#1| (-452)))) (-4151 (($ $) NIL (|has| |#1| (-452))) (($ $ |#2|) NIL (|has| |#1| (-452)))) (-2738 (((-640 $) $) NIL)) (-2560 (((-112) $) NIL (|has| |#1| (-905)))) (-4349 (($ $) NIL (|has| |#1| (-555)))) (-4359 (($ $) NIL (|has| |#1| (-555)))) (-1341 (($ $ $) 63) (($ $ $ |#2|) NIL)) (-1332 (($ $ $) 66) (($ $ $ |#2|) NIL)) (-2159 (($ $ |#1| (-531 |#2|) $) NIL)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| |#1| (-882 (-379))) (|has| |#2| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| |#1| (-882 (-563))) (|has| |#2| (-882 (-563)))))) (-3401 (((-112) $) 53)) (-3481 (((-767) $) NIL)) (-2274 (((-112) $ $) NIL) (((-112) $ (-640 $)) NIL)) (-4246 (($ $ $ $ $) 89 (|has| |#1| (-555)))) (-3354 ((|#2| $) 19)) (-2595 (($ (-1165 |#1|) |#2|) NIL) (($ (-1165 $) |#2|) NIL)) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-531 |#2|)) NIL) (($ $ |#2| (-767)) 36) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-4379 (($ $ $) 59)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ |#2|) NIL)) (-3286 (((-112) $) NIL)) (-3908 (((-531 |#2|) $) NIL) (((-767) $ |#2|) NIL) (((-640 (-767)) $ (-640 |#2|)) NIL)) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-3343 (((-767) $) 20)) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-2170 (($ (-1 (-531 |#2|) (-531 |#2|)) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-1698 (((-3 |#2| "failed") $) NIL)) (-4206 (($ $) NIL (|has| |#1| (-452)))) (-4216 (($ $) NIL (|has| |#1| (-452)))) (-3239 (((-640 $) $) NIL)) (-3267 (($ $) 37)) (-4226 (($ $) NIL (|has| |#1| (-452)))) (-3249 (((-640 $) $) 41)) (-3260 (($ $) 39)) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL) (($ $ |#2|) 45)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-4367 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -4104 (-767))) $ $) 81)) (-1291 (((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -1765 $) (|:| -3443 $)) $ $) 65) (((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -1765 $) (|:| -3443 $)) $ $ |#2|) NIL)) (-1300 (((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -3443 $)) $ $) NIL) (((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -3443 $)) $ $ |#2|) NIL)) (-1322 (($ $ $) 70) (($ $ $ |#2|) NIL)) (-1312 (($ $ $) 73) (($ $ $ |#2|) NIL)) (-3854 (((-1151) $) NIL)) (-3461 (($ $ $) 107 (|has| |#1| (-555)))) (-3312 (((-640 $) $) 30)) (-3939 (((-3 (-640 $) "failed") $) NIL)) (-3930 (((-3 (-640 $) "failed") $) NIL)) (-3949 (((-3 (-2 (|:| |var| |#2|) (|:| -3311 (-767))) "failed") $) NIL)) (-2225 (((-112) $ $) NIL) (((-112) $ (-640 $)) NIL)) (-2163 (($ $ $) NIL)) (-2522 (($ $) 21)) (-2319 (((-112) $ $) NIL)) (-2241 (((-112) $ $) NIL) (((-112) $ (-640 $)) NIL)) (-2176 (($ $ $) NIL)) (-3333 (($ $) 23)) (-1693 (((-1113) $) NIL)) (-4294 (((-2 (|:| -3551 $) (|:| |coef2| $)) $ $) 98 (|has| |#1| (-555)))) (-4305 (((-2 (|:| -3551 $) (|:| |coef1| $)) $ $) 95 (|has| |#1| (-555)))) (-2695 (((-112) $) 52)) (-2705 ((|#1| $) 54)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3551 ((|#1| |#1| $) 115 (|has| |#1| (-452))) (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2173 (((-418 $) $) NIL (|has| |#1| (-905)))) (-4315 (((-2 (|:| -3551 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 101 (|has| |#1| (-555)))) (-3012 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) 83 (|has| |#1| (-555)))) (-4326 (($ $ |#1|) 111 (|has| |#1| (-555))) (($ $ $) NIL (|has| |#1| (-555)))) (-4338 (($ $ |#1|) 110 (|has| |#1| (-555))) (($ $ $) NIL (|has| |#1| (-555)))) (-1542 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-640 |#2|) (-640 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-640 |#2|) (-640 $)) NIL)) (-1623 (($ $ |#2|) NIL (|has| |#1| (-172)))) (-4203 (($ $ |#2|) NIL) (($ $ (-640 |#2|)) NIL) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-3871 (((-531 |#2|) $) NIL) (((-767) $ |#2|) 43) (((-640 (-767)) $ (-640 |#2|)) NIL)) (-3323 (($ $) NIL)) (-3297 (($ $) 33)) (-2219 (((-888 (-379)) $) NIL (-12 (|has| |#1| (-611 (-888 (-379)))) (|has| |#2| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| |#1| (-611 (-888 (-563)))) (|has| |#2| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| |#1| (-611 (-536))) (|has| |#2| (-611 (-536))))) (($ (-948 (-407 (-563)))) NIL (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169))))) (($ (-948 (-563))) NIL (-4034 (-12 (|has| |#1| (-38 (-563))) (|has| |#2| (-611 (-1169))) (-2174 (|has| |#1| (-38 (-407 (-563)))))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#2| (-611 (-1169)))))) (($ (-948 |#1|)) NIL (|has| |#2| (-611 (-1169)))) (((-1151) $) NIL (-12 (|has| |#1| (-1034 (-563))) (|has| |#2| (-611 (-1169))))) (((-948 |#1|) $) NIL (|has| |#2| (-611 (-1169))))) (-3885 ((|#1| $) 114 (|has| |#1| (-452))) (($ $ |#2|) NIL (|has| |#1| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ |#2|) NIL) (((-948 |#1|) $) NIL (|has| |#2| (-611 (-1169)))) (((-1118 |#1| |#2|) $) 15) (($ (-1118 |#1| |#2|)) 16) (($ (-407 (-563))) NIL (-4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-3955 (((-640 |#1|) $) NIL)) (-3244 ((|#1| $ (-531 |#2|)) NIL) (($ $ |#2| (-767)) 44) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-3914 (((-767)) NIL)) (-2148 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2239 (($) 13 T CONST)) (-1361 (((-3 (-112) "failed") $ $) NIL)) (-2253 (($) 35 T CONST)) (-4259 (($ $ $ $ (-767)) 87 (|has| |#1| (-555)))) (-4271 (($ $ $ (-767)) 86 (|has| |#1| (-555)))) (-3213 (($ $ |#2|) NIL) (($ $ (-640 |#2|)) NIL) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) 62)) (-1813 (($ $ $) 72)) (** (($ $ (-917)) NIL) (($ $ (-767)) 60)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 58) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 57) (($ $ |#1|) NIL)))
(((-776 |#1| |#2|) (-13 (-1059 |#1| (-531 |#2|) |#2|) (-610 (-1118 |#1| |#2|)) (-1034 (-1118 |#1| |#2|))) (-1045) (-846)) (T -776))
NIL
(-13 (-1059 |#1| (-531 |#2|) |#2|) (-610 (-1118 |#1| |#2|)) (-1034 (-1118 |#1| |#2|)))
-((-2240 (((-778 |#2|) (-1 |#2| |#1|) (-778 |#1|)) 13)))
-(((-777 |#1| |#2|) (-10 -7 (-15 -2240 ((-778 |#2|) (-1 |#2| |#1|) (-778 |#1|)))) (-1045) (-1045)) (T -777))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-778 *5)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-5 *2 (-778 *6)) (-5 *1 (-777 *5 *6)))))
-(-10 -7 (-15 -2240 ((-778 |#2|) (-1 |#2| |#1|) (-778 |#1|))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 12)) (-4030 (((-1257 |#1|) $ (-767)) NIL)) (-2606 (((-640 (-1075)) $) NIL)) (-1787 (($ (-1165 |#1|)) NIL)) (-2139 (((-1165 $) $ (-1075)) NIL) (((-1165 |#1|) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-1779 (((-767) $) NIL) (((-767) $ (-640 (-1075))) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2563 (((-640 $) $ $) 39 (|has| |#1| (-555)))) (-3724 (($ $ $) 35 (|has| |#1| (-555)))) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-4335 (($ $) NIL (|has| |#1| (-452)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-1919 (((-112) $ $) NIL (|has| |#1| (-363)))) (-3729 (($ $ (-767)) NIL)) (-2618 (($ $ (-767)) NIL)) (-3018 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-452)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-1075) "failed") $) NIL) (((-3 (-1165 |#1|) "failed") $) 10)) (-2058 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-1075) $) NIL) (((-1165 |#1|) $) NIL)) (-2742 (($ $ $ (-1075)) NIL (|has| |#1| (-172))) ((|#1| $ $) 43 (|has| |#1| (-172)))) (-3090 (($ $ $) NIL (|has| |#1| (-363)))) (-2751 (($ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-3050 (($ $ $) NIL (|has| |#1| (-363)))) (-4369 (($ $ $) NIL)) (-2906 (($ $ $) 71 (|has| |#1| (-555)))) (-2521 (((-2 (|:| -2311 |#1|) (|:| -3490 $) (|:| -1972 $)) $ $) 70 (|has| |#1| (-555)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-1300 (($ $) NIL (|has| |#1| (-452))) (($ $ (-1075)) NIL (|has| |#1| (-452)))) (-2739 (((-640 $) $) NIL)) (-2468 (((-112) $) NIL (|has| |#1| (-905)))) (-3554 (($ $ |#1| (-767) $) NIL)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1075) (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1075) (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-3254 (((-767) $ $) NIL (|has| |#1| (-555)))) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) NIL)) (-2408 (((-3 $ "failed") $) NIL (|has| |#1| (-1144)))) (-2596 (($ (-1165 |#1|) (-1075)) NIL) (($ (-1165 $) (-1075)) NIL)) (-1351 (($ $ (-767)) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-767)) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-1421 (($ $ $) 20)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ (-1075)) NIL) (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-2048 (((-767) $) NIL) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-2803 (($ (-1 (-767) (-767)) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-1580 (((-1165 |#1|) $) NIL)) (-4234 (((-3 (-1075) "failed") $) NIL)) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3206 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -2269 (-767))) $ $) 26)) (-2458 (($ $ $) 29)) (-2021 (($ $ $) 32)) (-2365 (((-2 (|:| -2311 |#1|) (|:| |gap| (-767)) (|:| -3490 $) (|:| -1972 $)) $ $) 31)) (-3573 (((-1151) $) NIL)) (-2898 (($ $ $) 41 (|has| |#1| (-555)))) (-3839 (((-2 (|:| -3490 $) (|:| -1972 $)) $ (-767)) NIL)) (-3733 (((-3 (-640 $) "failed") $) NIL)) (-2919 (((-3 (-640 $) "failed") $) NIL)) (-4086 (((-3 (-2 (|:| |var| (-1075)) (|:| -1654 (-767))) "failed") $) NIL)) (-3698 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2523 (($) NIL (|has| |#1| (-1144)) CONST)) (-1694 (((-1113) $) NIL)) (-4110 (((-2 (|:| -3548 $) (|:| |coef2| $)) $ $) 67 (|has| |#1| (-555)))) (-3183 (((-2 (|:| -3548 $) (|:| |coef1| $)) $ $) 63 (|has| |#1| (-555)))) (-1472 (((-2 (|:| -2742 |#1|) (|:| |coef2| $)) $ $) 55 (|has| |#1| (-555)))) (-3857 (((-2 (|:| -2742 |#1|) (|:| |coef1| $)) $ $) 51 (|has| |#1| (-555)))) (-2696 (((-112) $) 13)) (-2706 ((|#1| $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3817 (($ $ (-767) |#1| $) 19)) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2174 (((-418 $) $) NIL (|has| |#1| (-905)))) (-2758 (((-2 (|:| -3548 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 59 (|has| |#1| (-555)))) (-3542 (((-2 (|:| -2742 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 47 (|has| |#1| (-555)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3008 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-1540 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-1075) |#1|) NIL) (($ $ (-640 (-1075)) (-640 |#1|)) NIL) (($ $ (-1075) $) NIL) (($ $ (-640 (-1075)) (-640 $)) NIL)) (-2628 (((-767) $) NIL (|has| |#1| (-363)))) (-2309 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-407 $) (-407 $) (-407 $)) NIL (|has| |#1| (-555))) ((|#1| (-407 $) |#1|) NIL (|has| |#1| (-363))) (((-407 $) $ (-407 $)) NIL (|has| |#1| (-555)))) (-3862 (((-3 $ "failed") $ (-767)) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-2315 (($ $ (-1075)) NIL (|has| |#1| (-172))) ((|#1| $) NIL (|has| |#1| (-172)))) (-4202 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-4167 (((-767) $) NIL) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-2220 (((-888 (-379)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-1075) (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-1836 ((|#1| $) NIL (|has| |#1| (-452))) (($ $ (-1075)) NIL (|has| |#1| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1346 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555))) (((-3 (-407 $) "failed") (-407 $) $) NIL (|has| |#1| (-555)))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-1075)) NIL) (((-1165 |#1|) $) 7) (($ (-1165 |#1|)) 8) (($ (-407 (-563))) NIL (-4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-1337 (((-640 |#1|) $) NIL)) (-4319 ((|#1| $ (-767)) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-1675 (((-767)) NIL)) (-2793 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2241 (($) 21 T CONST)) (-2254 (($) 24 T CONST)) (-3209 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1826 (($ $) 28) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 23) (($ $ |#1|) NIL)))
-(((-778 |#1|) (-13 (-1233 |#1|) (-610 (-1165 |#1|)) (-1034 (-1165 |#1|)) (-10 -8 (-15 -3817 ($ $ (-767) |#1| $)) (-15 -1421 ($ $ $)) (-15 -3206 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -2269 (-767))) $ $)) (-15 -2458 ($ $ $)) (-15 -2365 ((-2 (|:| -2311 |#1|) (|:| |gap| (-767)) (|:| -3490 $) (|:| -1972 $)) $ $)) (-15 -2021 ($ $ $)) (IF (|has| |#1| (-555)) (PROGN (-15 -2563 ((-640 $) $ $)) (-15 -2898 ($ $ $)) (-15 -2758 ((-2 (|:| -3548 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3183 ((-2 (|:| -3548 $) (|:| |coef1| $)) $ $)) (-15 -4110 ((-2 (|:| -3548 $) (|:| |coef2| $)) $ $)) (-15 -3542 ((-2 (|:| -2742 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3857 ((-2 (|:| -2742 |#1|) (|:| |coef1| $)) $ $)) (-15 -1472 ((-2 (|:| -2742 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-1045)) (T -778))
-((-3817 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-767)) (-5 *1 (-778 *3)) (-4 *3 (-1045)))) (-1421 (*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-1045)))) (-3206 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-778 *3)) (|:| |polden| *3) (|:| -2269 (-767)))) (-5 *1 (-778 *3)) (-4 *3 (-1045)))) (-2458 (*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-1045)))) (-2365 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2311 *3) (|:| |gap| (-767)) (|:| -3490 (-778 *3)) (|:| -1972 (-778 *3)))) (-5 *1 (-778 *3)) (-4 *3 (-1045)))) (-2021 (*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-1045)))) (-2563 (*1 *2 *1 *1) (-12 (-5 *2 (-640 (-778 *3))) (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))) (-2898 (*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-555)) (-4 *2 (-1045)))) (-2758 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3548 (-778 *3)) (|:| |coef1| (-778 *3)) (|:| |coef2| (-778 *3)))) (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))) (-3183 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3548 (-778 *3)) (|:| |coef1| (-778 *3)))) (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))) (-4110 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3548 (-778 *3)) (|:| |coef2| (-778 *3)))) (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))) (-3542 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2742 *3) (|:| |coef1| (-778 *3)) (|:| |coef2| (-778 *3)))) (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))) (-3857 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2742 *3) (|:| |coef1| (-778 *3)))) (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))) (-1472 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2742 *3) (|:| |coef2| (-778 *3)))) (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))))
-(-13 (-1233 |#1|) (-610 (-1165 |#1|)) (-1034 (-1165 |#1|)) (-10 -8 (-15 -3817 ($ $ (-767) |#1| $)) (-15 -1421 ($ $ $)) (-15 -3206 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -2269 (-767))) $ $)) (-15 -2458 ($ $ $)) (-15 -2365 ((-2 (|:| -2311 |#1|) (|:| |gap| (-767)) (|:| -3490 $) (|:| -1972 $)) $ $)) (-15 -2021 ($ $ $)) (IF (|has| |#1| (-555)) (PROGN (-15 -2563 ((-640 $) $ $)) (-15 -2898 ($ $ $)) (-15 -2758 ((-2 (|:| -3548 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3183 ((-2 (|:| -3548 $) (|:| |coef1| $)) $ $)) (-15 -4110 ((-2 (|:| -3548 $) (|:| |coef2| $)) $ $)) (-15 -3542 ((-2 (|:| -2742 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3857 ((-2 (|:| -2742 |#1|) (|:| |coef1| $)) $ $)) (-15 -1472 ((-2 (|:| -2742 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
-((-4199 ((|#1| (-767) |#1|) 32 (|has| |#1| (-38 (-407 (-563)))))) (-3952 ((|#1| (-767) |#1|) 22)) (-2896 ((|#1| (-767) |#1|) 34 (|has| |#1| (-38 (-407 (-563)))))))
-(((-779 |#1|) (-10 -7 (-15 -3952 (|#1| (-767) |#1|)) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -2896 (|#1| (-767) |#1|)) (-15 -4199 (|#1| (-767) |#1|))) |%noBranch|)) (-172)) (T -779))
-((-4199 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-779 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-172)))) (-2896 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-779 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-172)))) (-3952 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-779 *2)) (-4 *2 (-172)))))
-(-10 -7 (-15 -3952 (|#1| (-767) |#1|)) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -2896 (|#1| (-767) |#1|)) (-15 -4199 (|#1| (-767) |#1|))) |%noBranch|))
-((-1677 (((-112) $ $) 7)) (-1578 (((-640 (-2 (|:| -1442 $) (|:| -3405 (-640 |#4|)))) (-640 |#4|)) 85)) (-3319 (((-640 $) (-640 |#4|)) 86) (((-640 $) (-640 |#4|) (-112)) 111)) (-2606 (((-640 |#3|) $) 33)) (-1706 (((-112) $) 26)) (-3854 (((-112) $) 17 (|has| |#1| (-555)))) (-2620 (((-112) |#4| $) 101) (((-112) $) 97)) (-4053 ((|#4| |#4| $) 92)) (-4335 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 $))) |#4| $) 126)) (-1642 (((-2 (|:| |under| $) (|:| -1583 $) (|:| |upper| $)) $ |#3|) 27)) (-2759 (((-112) $ (-767)) 44)) (-2256 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4407))) (((-3 |#4| "failed") $ |#3|) 79)) (-4239 (($) 45 T CONST)) (-1483 (((-112) $) 22 (|has| |#1| (-555)))) (-1626 (((-112) $ $) 24 (|has| |#1| (-555)))) (-4221 (((-112) $ $) 23 (|has| |#1| (-555)))) (-1763 (((-112) $) 25 (|has| |#1| (-555)))) (-1833 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3746 (((-640 |#4|) (-640 |#4|) $) 18 (|has| |#1| (-555)))) (-1866 (((-640 |#4|) (-640 |#4|) $) 19 (|has| |#1| (-555)))) (-2131 (((-3 $ "failed") (-640 |#4|)) 36)) (-2058 (($ (-640 |#4|)) 35)) (-3792 (((-3 $ "failed") $) 82)) (-1719 ((|#4| |#4| $) 89)) (-3813 (($ $) 68 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ |#4| $) 67 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4407)))) (-1972 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-555)))) (-3990 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-3948 ((|#4| |#4| $) 87)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4407))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4407))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2144 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3405 (-640 |#4|))) $) 105)) (-2313 (((-112) |#4| $) 136)) (-3748 (((-112) |#4| $) 133)) (-1871 (((-112) |#4| $) 137) (((-112) $) 134)) (-2659 (((-640 |#4|) $) 52 (|has| $ (-6 -4407)))) (-2299 (((-112) |#4| $) 104) (((-112) $) 103)) (-2957 ((|#3| $) 34)) (-2581 (((-112) $ (-767)) 43)) (-2259 (((-640 |#4|) $) 53 (|has| $ (-6 -4407)))) (-1729 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#4| |#4|) $) 47)) (-2965 (((-640 |#3|) $) 32)) (-2780 (((-112) |#3| $) 31)) (-2382 (((-112) $ (-767)) 42)) (-3573 (((-1151) $) 9)) (-3083 (((-3 |#4| (-640 $)) |#4| |#4| $) 128)) (-2898 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 $))) |#4| |#4| $) 127)) (-1481 (((-3 |#4| "failed") $) 83)) (-3764 (((-640 $) |#4| $) 129)) (-1334 (((-3 (-112) (-640 $)) |#4| $) 132)) (-2069 (((-640 (-2 (|:| |val| (-112)) (|:| -2059 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-2550 (((-640 $) |#4| $) 125) (((-640 $) (-640 |#4|) $) 124) (((-640 $) (-640 |#4|) (-640 $)) 123) (((-640 $) |#4| (-640 $)) 122)) (-3291 (($ |#4| $) 117) (($ (-640 |#4|) $) 116)) (-2820 (((-640 |#4|) $) 107)) (-4197 (((-112) |#4| $) 99) (((-112) $) 95)) (-2715 ((|#4| |#4| $) 90)) (-3009 (((-112) $ $) 110)) (-2152 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-555)))) (-2031 (((-112) |#4| $) 100) (((-112) $) 96)) (-4056 ((|#4| |#4| $) 91)) (-1694 (((-1113) $) 10)) (-3781 (((-3 |#4| "failed") $) 84)) (-4203 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-3479 (((-3 $ "failed") $ |#4|) 78)) (-3320 (($ $ |#4|) 77) (((-640 $) |#4| $) 115) (((-640 $) |#4| (-640 $)) 114) (((-640 $) (-640 |#4|) $) 113) (((-640 $) (-640 |#4|) (-640 $)) 112)) (-3138 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 |#4|) (-640 |#4|)) 59 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) 57 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) 56 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2026 (((-112) $ $) 38)) (-3756 (((-112) $) 41)) (-3135 (($) 40)) (-4167 (((-767) $) 106)) (-1709 (((-767) |#4| $) 54 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) (((-767) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4407)))) (-1872 (($ $) 39)) (-2220 (((-536) $) 69 (|has| |#4| (-611 (-536))))) (-1707 (($ (-640 |#4|)) 60)) (-3577 (($ $ |#3|) 28)) (-1593 (($ $ |#3|) 30)) (-1924 (($ $) 88)) (-4192 (($ $ |#3|) 29)) (-1693 (((-858) $) 11) (((-640 |#4|) $) 37)) (-2437 (((-767) $) 76 (|has| |#3| (-368)))) (-2540 (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-2691 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) 98)) (-2175 (((-640 $) |#4| $) 121) (((-640 $) |#4| (-640 $)) 120) (((-640 $) (-640 |#4|) $) 119) (((-640 $) (-640 |#4|) (-640 $)) 118)) (-4383 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4407)))) (-1955 (((-640 |#3|) $) 81)) (-4279 (((-112) |#4| $) 135)) (-3152 (((-112) |#3| $) 80)) (-1718 (((-112) $ $) 6)) (-3608 (((-767) $) 46 (|has| $ (-6 -4407)))))
+((-2238 (((-778 |#2|) (-1 |#2| |#1|) (-778 |#1|)) 13)))
+(((-777 |#1| |#2|) (-10 -7 (-15 -2238 ((-778 |#2|) (-1 |#2| |#1|) (-778 |#1|)))) (-1045) (-1045)) (T -777))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-778 *5)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-5 *2 (-778 *6)) (-5 *1 (-777 *5 *6)))))
+(-10 -7 (-15 -2238 ((-778 |#2|) (-1 |#2| |#1|) (-778 |#1|))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 12)) (-1740 (((-1257 |#1|) $ (-767)) NIL)) (-2605 (((-640 (-1075)) $) NIL)) (-1714 (($ (-1165 |#1|)) NIL)) (-2138 (((-1165 $) $ (-1075)) NIL) (((-1165 |#1|) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-3897 (((-767) $) NIL) (((-767) $ (-640 (-1075))) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1955 (((-640 $) $ $) 40 (|has| |#1| (-555)))) (-1601 (($ $ $) 36 (|has| |#1| (-555)))) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-1798 (($ $) NIL (|has| |#1| (-452)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2003 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1660 (($ $ (-767)) NIL)) (-1647 (($ $ (-767)) NIL)) (-1550 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-452)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-1075) "failed") $) NIL) (((-3 (-1165 |#1|) "failed") $) 10)) (-2057 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-1075) $) NIL) (((-1165 |#1|) $) NIL)) (-1612 (($ $ $ (-1075)) NIL (|has| |#1| (-172))) ((|#1| $ $) 44 (|has| |#1| (-172)))) (-3094 (($ $ $) NIL (|has| |#1| (-363)))) (-2750 (($ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3054 (($ $ $) NIL (|has| |#1| (-363)))) (-1634 (($ $ $) NIL)) (-1577 (($ $ $) 72 (|has| |#1| (-555)))) (-1564 (((-2 (|:| -2310 |#1|) (|:| -1765 $) (|:| -3443 $)) $ $) 71 (|has| |#1| (-555)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-4151 (($ $) NIL (|has| |#1| (-452))) (($ $ (-1075)) NIL (|has| |#1| (-452)))) (-2738 (((-640 $) $) NIL)) (-2560 (((-112) $) NIL (|has| |#1| (-905)))) (-2159 (($ $ |#1| (-767) $) NIL)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1075) (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1075) (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-1775 (((-767) $ $) NIL (|has| |#1| (-555)))) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) NIL)) (-1983 (((-3 $ "failed") $) NIL (|has| |#1| (-1144)))) (-2595 (($ (-1165 |#1|) (-1075)) NIL) (($ (-1165 $) (-1075)) NIL)) (-1821 (($ $ (-767)) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-767)) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-4379 (($ $ $) 19)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ (-1075)) NIL) (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3908 (((-767) $) NIL) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-2170 (($ (-1 (-767) (-767)) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-1726 (((-1165 |#1|) $) NIL)) (-1698 (((-3 (-1075) "failed") $) NIL)) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-4367 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -4104 (-767))) $ $) 26)) (-1975 (($ $ $) 30)) (-1965 (($ $ $) 33)) (-1291 (((-2 (|:| -2310 |#1|) (|:| |gap| (-767)) (|:| -1765 $) (|:| -3443 $)) $ $) 32)) (-3854 (((-1151) $) NIL)) (-3461 (($ $ $) 42 (|has| |#1| (-555)))) (-1671 (((-2 (|:| -1765 $) (|:| -3443 $)) $ (-767)) NIL)) (-3939 (((-3 (-640 $) "failed") $) NIL)) (-3930 (((-3 (-640 $) "failed") $) NIL)) (-3949 (((-3 (-2 (|:| |var| (-1075)) (|:| -3311 (-767))) "failed") $) NIL)) (-2062 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2522 (($) NIL (|has| |#1| (-1144)) CONST)) (-1693 (((-1113) $) NIL)) (-4294 (((-2 (|:| -3551 $) (|:| |coef2| $)) $ $) 68 (|has| |#1| (-555)))) (-4305 (((-2 (|:| -3551 $) (|:| |coef1| $)) $ $) 64 (|has| |#1| (-555)))) (-1924 (((-2 (|:| -1612 |#1|) (|:| |coef2| $)) $ $) 56 (|has| |#1| (-555)))) (-1935 (((-2 (|:| -1612 |#1|) (|:| |coef1| $)) $ $) 52 (|has| |#1| (-555)))) (-2695 (((-112) $) 13)) (-2705 ((|#1| $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-2646 (($ $ (-767) |#1| $) 18)) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2173 (((-418 $) $) NIL (|has| |#1| (-905)))) (-4315 (((-2 (|:| -3551 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 60 (|has| |#1| (-555)))) (-1946 (((-2 (|:| -1612 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 48 (|has| |#1| (-555)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-3012 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-1542 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-1075) |#1|) NIL) (($ $ (-640 (-1075)) (-640 |#1|)) NIL) (($ $ (-1075) $) NIL) (($ $ (-640 (-1075)) (-640 $)) NIL)) (-1993 (((-767) $) NIL (|has| |#1| (-363)))) (-2308 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-407 $) (-407 $) (-407 $)) NIL (|has| |#1| (-555))) ((|#1| (-407 $) |#1|) NIL (|has| |#1| (-363))) (((-407 $) $ (-407 $)) NIL (|has| |#1| (-555)))) (-1699 (((-3 $ "failed") $ (-767)) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-1623 (($ $ (-1075)) NIL (|has| |#1| (-172))) ((|#1| $) NIL (|has| |#1| (-172)))) (-4203 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3871 (((-767) $) NIL) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-2219 (((-888 (-379)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-1075) (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-3885 ((|#1| $) NIL (|has| |#1| (-452))) (($ $ (-1075)) NIL (|has| |#1| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1590 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555))) (((-3 (-407 $) "failed") (-407 $) $) NIL (|has| |#1| (-555)))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-1075)) NIL) (((-1165 |#1|) $) 7) (($ (-1165 |#1|)) 8) (($ (-407 (-563))) NIL (-4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-3955 (((-640 |#1|) $) NIL)) (-3244 ((|#1| $ (-767)) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-3914 (((-767)) NIL)) (-2148 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2239 (($) 20 T CONST)) (-2253 (($) 23 T CONST)) (-3213 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1825 (($ $) 29) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 22) (($ $ |#1|) NIL)))
+(((-778 |#1|) (-13 (-1233 |#1|) (-610 (-1165 |#1|)) (-1034 (-1165 |#1|)) (-10 -8 (-15 -2646 ($ $ (-767) |#1| $)) (-15 -4379 ($ $ $)) (-15 -4367 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -4104 (-767))) $ $)) (-15 -1975 ($ $ $)) (-15 -1291 ((-2 (|:| -2310 |#1|) (|:| |gap| (-767)) (|:| -1765 $) (|:| -3443 $)) $ $)) (-15 -1965 ($ $ $)) (IF (|has| |#1| (-555)) (PROGN (-15 -1955 ((-640 $) $ $)) (-15 -3461 ($ $ $)) (-15 -4315 ((-2 (|:| -3551 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -4305 ((-2 (|:| -3551 $) (|:| |coef1| $)) $ $)) (-15 -4294 ((-2 (|:| -3551 $) (|:| |coef2| $)) $ $)) (-15 -1946 ((-2 (|:| -1612 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1935 ((-2 (|:| -1612 |#1|) (|:| |coef1| $)) $ $)) (-15 -1924 ((-2 (|:| -1612 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-1045)) (T -778))
+((-2646 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-767)) (-5 *1 (-778 *3)) (-4 *3 (-1045)))) (-4379 (*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-1045)))) (-4367 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-778 *3)) (|:| |polden| *3) (|:| -4104 (-767)))) (-5 *1 (-778 *3)) (-4 *3 (-1045)))) (-1975 (*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-1045)))) (-1291 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2310 *3) (|:| |gap| (-767)) (|:| -1765 (-778 *3)) (|:| -3443 (-778 *3)))) (-5 *1 (-778 *3)) (-4 *3 (-1045)))) (-1965 (*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-1045)))) (-1955 (*1 *2 *1 *1) (-12 (-5 *2 (-640 (-778 *3))) (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))) (-3461 (*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-555)) (-4 *2 (-1045)))) (-4315 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3551 (-778 *3)) (|:| |coef1| (-778 *3)) (|:| |coef2| (-778 *3)))) (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))) (-4305 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3551 (-778 *3)) (|:| |coef1| (-778 *3)))) (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))) (-4294 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3551 (-778 *3)) (|:| |coef2| (-778 *3)))) (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))) (-1946 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1612 *3) (|:| |coef1| (-778 *3)) (|:| |coef2| (-778 *3)))) (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))) (-1935 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1612 *3) (|:| |coef1| (-778 *3)))) (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))) (-1924 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1612 *3) (|:| |coef2| (-778 *3)))) (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))))
+(-13 (-1233 |#1|) (-610 (-1165 |#1|)) (-1034 (-1165 |#1|)) (-10 -8 (-15 -2646 ($ $ (-767) |#1| $)) (-15 -4379 ($ $ $)) (-15 -4367 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -4104 (-767))) $ $)) (-15 -1975 ($ $ $)) (-15 -1291 ((-2 (|:| -2310 |#1|) (|:| |gap| (-767)) (|:| -1765 $) (|:| -3443 $)) $ $)) (-15 -1965 ($ $ $)) (IF (|has| |#1| (-555)) (PROGN (-15 -1955 ((-640 $) $ $)) (-15 -3461 ($ $ $)) (-15 -4315 ((-2 (|:| -3551 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -4305 ((-2 (|:| -3551 $) (|:| |coef1| $)) $ $)) (-15 -4294 ((-2 (|:| -3551 $) (|:| |coef2| $)) $ $)) (-15 -1946 ((-2 (|:| -1612 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1935 ((-2 (|:| -1612 |#1|) (|:| |coef1| $)) $ $)) (-15 -1924 ((-2 (|:| -1612 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
+((-1991 ((|#1| (-767) |#1|) 32 (|has| |#1| (-38 (-407 (-563)))))) (-1869 ((|#1| (-767) |#1|) 22)) (-1982 ((|#1| (-767) |#1|) 34 (|has| |#1| (-38 (-407 (-563)))))))
+(((-779 |#1|) (-10 -7 (-15 -1869 (|#1| (-767) |#1|)) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -1982 (|#1| (-767) |#1|)) (-15 -1991 (|#1| (-767) |#1|))) |%noBranch|)) (-172)) (T -779))
+((-1991 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-779 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-172)))) (-1982 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-779 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-172)))) (-1869 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-779 *2)) (-4 *2 (-172)))))
+(-10 -7 (-15 -1869 (|#1| (-767) |#1|)) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -1982 (|#1| (-767) |#1|)) (-15 -1991 (|#1| (-767) |#1|))) |%noBranch|))
+((-1677 (((-112) $ $) 7)) (-2110 (((-640 (-2 (|:| -1442 $) (|:| -3409 (-640 |#4|)))) (-640 |#4|)) 85)) (-2119 (((-640 $) (-640 |#4|)) 86) (((-640 $) (-640 |#4|) (-112)) 111)) (-2605 (((-640 |#3|) $) 33)) (-3508 (((-112) $) 26)) (-3406 (((-112) $) 17 (|has| |#1| (-555)))) (-2254 (((-112) |#4| $) 101) (((-112) $) 97)) (-2189 ((|#4| |#4| $) 92)) (-1798 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 $))) |#4| $) 126)) (-1640 (((-2 (|:| |under| $) (|:| -3954 $) (|:| |upper| $)) $ |#3|) 27)) (-3001 (((-112) $ (-767)) 44)) (-2255 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4408))) (((-3 |#4| "failed") $ |#3|) 79)) (-2569 (($) 45 T CONST)) (-3466 (((-112) $) 22 (|has| |#1| (-555)))) (-3486 (((-112) $ $) 24 (|has| |#1| (-555)))) (-3476 (((-112) $ $) 23 (|has| |#1| (-555)))) (-3496 (((-112) $) 25 (|has| |#1| (-555)))) (-2201 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3418 (((-640 |#4|) (-640 |#4|) $) 18 (|has| |#1| (-555)))) (-3431 (((-640 |#4|) (-640 |#4|) $) 19 (|has| |#1| (-555)))) (-2130 (((-3 $ "failed") (-640 |#4|)) 36)) (-2057 (($ (-640 |#4|)) 35)) (-3793 (((-3 $ "failed") $) 82)) (-2151 ((|#4| |#4| $) 89)) (-3814 (($ $) 68 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ |#4| $) 67 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4408)))) (-3443 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-555)))) (-2264 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-2131 ((|#4| |#4| $) 87)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4408))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4408))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2284 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3409 (-640 |#4|))) $) 105)) (-3536 (((-112) |#4| $) 136)) (-3514 (((-112) |#4| $) 133)) (-3548 (((-112) |#4| $) 137) (((-112) $) 134)) (-2658 (((-640 |#4|) $) 52 (|has| $ (-6 -4408)))) (-2274 (((-112) |#4| $) 104) (((-112) $) 103)) (-3354 ((|#3| $) 34)) (-2514 (((-112) $ (-767)) 43)) (-3523 (((-640 |#4|) $) 53 (|has| $ (-6 -4408)))) (-2667 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#4| |#4|) $) 47)) (-3568 (((-640 |#3|) $) 32)) (-3553 (((-112) |#3| $) 31)) (-2481 (((-112) $ (-767)) 42)) (-3854 (((-1151) $) 9)) (-3472 (((-3 |#4| (-640 $)) |#4| |#4| $) 128)) (-3461 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 $))) |#4| |#4| $) 127)) (-1481 (((-3 |#4| "failed") $) 83)) (-3482 (((-640 $) |#4| $) 129)) (-3503 (((-3 (-112) (-640 $)) |#4| $) 132)) (-3492 (((-640 (-2 (|:| |val| (-112)) (|:| -2058 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-3834 (((-640 $) |#4| $) 125) (((-640 $) (-640 |#4|) $) 124) (((-640 $) (-640 |#4|) (-640 $)) 123) (((-640 $) |#4| (-640 $)) 122)) (-1956 (($ |#4| $) 117) (($ (-640 |#4|) $) 116)) (-2297 (((-640 |#4|) $) 107)) (-2225 (((-112) |#4| $) 99) (((-112) $) 95)) (-2163 ((|#4| |#4| $) 90)) (-2319 (((-112) $ $) 110)) (-3454 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-555)))) (-2241 (((-112) |#4| $) 100) (((-112) $) 96)) (-2176 ((|#4| |#4| $) 91)) (-1693 (((-1113) $) 10)) (-3782 (((-3 |#4| "failed") $) 84)) (-1971 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-2089 (((-3 $ "failed") $ |#4|) 78)) (-1751 (($ $ |#4|) 77) (((-640 $) |#4| $) 115) (((-640 $) |#4| (-640 $)) 114) (((-640 $) (-640 |#4|) $) 113) (((-640 $) (-640 |#4|) (-640 $)) 112)) (-1458 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 |#4|) (-640 |#4|)) 59 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) 57 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) 56 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2941 (((-112) $ $) 38)) (-1665 (((-112) $) 41)) (-3445 (($) 40)) (-3871 (((-767) $) 106)) (-1708 (((-767) |#4| $) 54 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) (((-767) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4408)))) (-1870 (($ $) 39)) (-2219 (((-536) $) 69 (|has| |#4| (-611 (-536))))) (-1706 (($ (-640 |#4|)) 60)) (-3519 (($ $ |#3|) 28)) (-3542 (($ $ |#3|) 30)) (-2141 (($ $) 88)) (-3529 (($ $ |#3|) 29)) (-1692 (((-858) $) 11) (((-640 |#4|) $) 37)) (-3255 (((-767) $) 76 (|has| |#3| (-368)))) (-2307 (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-2211 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) 98)) (-3450 (((-640 $) |#4| $) 121) (((-640 $) |#4| (-640 $)) 120) (((-640 $) (-640 |#4|) $) 119) (((-640 $) (-640 |#4|) (-640 $)) 118)) (-1471 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4408)))) (-2100 (((-640 |#3|) $) 81)) (-3525 (((-112) |#4| $) 135)) (-3772 (((-112) |#3| $) 80)) (-1718 (((-112) $ $) 6)) (-3610 (((-767) $) 46 (|has| $ (-6 -4408)))))
(((-780 |#1| |#2| |#3| |#4|) (-140) (-452) (-789) (-846) (-1059 |t#1| |t#2| |t#3|)) (T -780))
NIL
(-13 (-1065 |t#1| |t#2| |t#3| |t#4|))
(((-34) . T) ((-102) . T) ((-610 (-640 |#4|)) . T) ((-610 (-858)) . T) ((-151 |#4|) . T) ((-611 (-536)) |has| |#4| (-611 (-536))) ((-309 |#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))) ((-489 |#4|) . T) ((-514 |#4| |#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))) ((-972 |#1| |#2| |#3| |#4|) . T) ((-1065 |#1| |#2| |#3| |#4|) . T) ((-1093) . T) ((-1201 |#1| |#2| |#3| |#4|) . T) ((-1208) . T))
-((-3403 (((-3 (-379) "failed") (-316 |#1|) (-917)) 62 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-3 (-379) "failed") (-316 |#1|)) 54 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-3 (-379) "failed") (-407 (-948 |#1|)) (-917)) 41 (|has| |#1| (-555))) (((-3 (-379) "failed") (-407 (-948 |#1|))) 40 (|has| |#1| (-555))) (((-3 (-379) "failed") (-948 |#1|) (-917)) 31 (|has| |#1| (-1045))) (((-3 (-379) "failed") (-948 |#1|)) 30 (|has| |#1| (-1045)))) (-3806 (((-379) (-316 |#1|) (-917)) 99 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-379) (-316 |#1|)) 94 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-379) (-407 (-948 |#1|)) (-917)) 91 (|has| |#1| (-555))) (((-379) (-407 (-948 |#1|))) 90 (|has| |#1| (-555))) (((-379) (-948 |#1|) (-917)) 86 (|has| |#1| (-1045))) (((-379) (-948 |#1|)) 85 (|has| |#1| (-1045))) (((-379) |#1| (-917)) 76) (((-379) |#1|) 22)) (-2565 (((-3 (-169 (-379)) "failed") (-316 (-169 |#1|)) (-917)) 71 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-3 (-169 (-379)) "failed") (-316 (-169 |#1|))) 70 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-3 (-169 (-379)) "failed") (-316 |#1|) (-917)) 63 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-3 (-169 (-379)) "failed") (-316 |#1|)) 61 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-3 (-169 (-379)) "failed") (-407 (-948 (-169 |#1|))) (-917)) 46 (|has| |#1| (-555))) (((-3 (-169 (-379)) "failed") (-407 (-948 (-169 |#1|)))) 45 (|has| |#1| (-555))) (((-3 (-169 (-379)) "failed") (-407 (-948 |#1|)) (-917)) 39 (|has| |#1| (-555))) (((-3 (-169 (-379)) "failed") (-407 (-948 |#1|))) 38 (|has| |#1| (-555))) (((-3 (-169 (-379)) "failed") (-948 |#1|) (-917)) 28 (|has| |#1| (-1045))) (((-3 (-169 (-379)) "failed") (-948 |#1|)) 26 (|has| |#1| (-1045))) (((-3 (-169 (-379)) "failed") (-948 (-169 |#1|)) (-917)) 18 (|has| |#1| (-172))) (((-3 (-169 (-379)) "failed") (-948 (-169 |#1|))) 15 (|has| |#1| (-172)))) (-2108 (((-169 (-379)) (-316 (-169 |#1|)) (-917)) 102 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-169 (-379)) (-316 (-169 |#1|))) 101 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-169 (-379)) (-316 |#1|) (-917)) 100 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-169 (-379)) (-316 |#1|)) 98 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-169 (-379)) (-407 (-948 (-169 |#1|))) (-917)) 93 (|has| |#1| (-555))) (((-169 (-379)) (-407 (-948 (-169 |#1|)))) 92 (|has| |#1| (-555))) (((-169 (-379)) (-407 (-948 |#1|)) (-917)) 89 (|has| |#1| (-555))) (((-169 (-379)) (-407 (-948 |#1|))) 88 (|has| |#1| (-555))) (((-169 (-379)) (-948 |#1|) (-917)) 84 (|has| |#1| (-1045))) (((-169 (-379)) (-948 |#1|)) 83 (|has| |#1| (-1045))) (((-169 (-379)) (-948 (-169 |#1|)) (-917)) 78 (|has| |#1| (-172))) (((-169 (-379)) (-948 (-169 |#1|))) 77 (|has| |#1| (-172))) (((-169 (-379)) (-169 |#1|) (-917)) 80 (|has| |#1| (-172))) (((-169 (-379)) (-169 |#1|)) 79 (|has| |#1| (-172))) (((-169 (-379)) |#1| (-917)) 27) (((-169 (-379)) |#1|) 25)))
-(((-781 |#1|) (-10 -7 (-15 -3806 ((-379) |#1|)) (-15 -3806 ((-379) |#1| (-917))) (-15 -2108 ((-169 (-379)) |#1|)) (-15 -2108 ((-169 (-379)) |#1| (-917))) (IF (|has| |#1| (-172)) (PROGN (-15 -2108 ((-169 (-379)) (-169 |#1|))) (-15 -2108 ((-169 (-379)) (-169 |#1|) (-917))) (-15 -2108 ((-169 (-379)) (-948 (-169 |#1|)))) (-15 -2108 ((-169 (-379)) (-948 (-169 |#1|)) (-917)))) |%noBranch|) (IF (|has| |#1| (-1045)) (PROGN (-15 -3806 ((-379) (-948 |#1|))) (-15 -3806 ((-379) (-948 |#1|) (-917))) (-15 -2108 ((-169 (-379)) (-948 |#1|))) (-15 -2108 ((-169 (-379)) (-948 |#1|) (-917)))) |%noBranch|) (IF (|has| |#1| (-555)) (PROGN (-15 -3806 ((-379) (-407 (-948 |#1|)))) (-15 -3806 ((-379) (-407 (-948 |#1|)) (-917))) (-15 -2108 ((-169 (-379)) (-407 (-948 |#1|)))) (-15 -2108 ((-169 (-379)) (-407 (-948 |#1|)) (-917))) (-15 -2108 ((-169 (-379)) (-407 (-948 (-169 |#1|))))) (-15 -2108 ((-169 (-379)) (-407 (-948 (-169 |#1|))) (-917))) (IF (|has| |#1| (-846)) (PROGN (-15 -3806 ((-379) (-316 |#1|))) (-15 -3806 ((-379) (-316 |#1|) (-917))) (-15 -2108 ((-169 (-379)) (-316 |#1|))) (-15 -2108 ((-169 (-379)) (-316 |#1|) (-917))) (-15 -2108 ((-169 (-379)) (-316 (-169 |#1|)))) (-15 -2108 ((-169 (-379)) (-316 (-169 |#1|)) (-917)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-15 -2565 ((-3 (-169 (-379)) "failed") (-948 (-169 |#1|)))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-948 (-169 |#1|)) (-917)))) |%noBranch|) (IF (|has| |#1| (-1045)) (PROGN (-15 -3403 ((-3 (-379) "failed") (-948 |#1|))) (-15 -3403 ((-3 (-379) "failed") (-948 |#1|) (-917))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-948 |#1|))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-948 |#1|) (-917)))) |%noBranch|) (IF (|has| |#1| (-555)) (PROGN (-15 -3403 ((-3 (-379) "failed") (-407 (-948 |#1|)))) (-15 -3403 ((-3 (-379) "failed") (-407 (-948 |#1|)) (-917))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-407 (-948 |#1|)))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-407 (-948 |#1|)) (-917))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-407 (-948 (-169 |#1|))))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-407 (-948 (-169 |#1|))) (-917))) (IF (|has| |#1| (-846)) (PROGN (-15 -3403 ((-3 (-379) "failed") (-316 |#1|))) (-15 -3403 ((-3 (-379) "failed") (-316 |#1|) (-917))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-316 |#1|))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-316 |#1|) (-917))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-316 (-169 |#1|)))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-316 (-169 |#1|)) (-917)))) |%noBranch|)) |%noBranch|)) (-611 (-379))) (T -781))
-((-2565 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-316 (-169 *5))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-846)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2565 (*1 *2 *3) (|partial| -12 (-5 *3 (-316 (-169 *4))) (-4 *4 (-555)) (-4 *4 (-846)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2565 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-316 *5)) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-846)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2565 (*1 *2 *3) (|partial| -12 (-5 *3 (-316 *4)) (-4 *4 (-555)) (-4 *4 (-846)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-3403 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-316 *5)) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-846)) (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5)))) (-3403 (*1 *2 *3) (|partial| -12 (-5 *3 (-316 *4)) (-4 *4 (-555)) (-4 *4 (-846)) (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4)))) (-2565 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-407 (-948 (-169 *5)))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2565 (*1 *2 *3) (|partial| -12 (-5 *3 (-407 (-948 (-169 *4)))) (-4 *4 (-555)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2565 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2565 (*1 *2 *3) (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-3403 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5)))) (-3403 (*1 *2 *3) (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555)) (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4)))) (-2565 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-948 *5)) (-5 *4 (-917)) (-4 *5 (-1045)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2565 (*1 *2 *3) (|partial| -12 (-5 *3 (-948 *4)) (-4 *4 (-1045)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-3403 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-948 *5)) (-5 *4 (-917)) (-4 *5 (-1045)) (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5)))) (-3403 (*1 *2 *3) (|partial| -12 (-5 *3 (-948 *4)) (-4 *4 (-1045)) (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4)))) (-2565 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-948 (-169 *5))) (-5 *4 (-917)) (-4 *5 (-172)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2565 (*1 *2 *3) (|partial| -12 (-5 *3 (-948 (-169 *4))) (-4 *4 (-172)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2108 (*1 *2 *3 *4) (-12 (-5 *3 (-316 (-169 *5))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-846)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2108 (*1 *2 *3) (-12 (-5 *3 (-316 (-169 *4))) (-4 *4 (-555)) (-4 *4 (-846)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2108 (*1 *2 *3 *4) (-12 (-5 *3 (-316 *5)) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-846)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2108 (*1 *2 *3) (-12 (-5 *3 (-316 *4)) (-4 *4 (-555)) (-4 *4 (-846)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-3806 (*1 *2 *3 *4) (-12 (-5 *3 (-316 *5)) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-846)) (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5)))) (-3806 (*1 *2 *3) (-12 (-5 *3 (-316 *4)) (-4 *4 (-555)) (-4 *4 (-846)) (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4)))) (-2108 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 (-169 *5)))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2108 (*1 *2 *3) (-12 (-5 *3 (-407 (-948 (-169 *4)))) (-4 *4 (-555)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2108 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2108 (*1 *2 *3) (-12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-3806 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5)))) (-3806 (*1 *2 *3) (-12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555)) (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4)))) (-2108 (*1 *2 *3 *4) (-12 (-5 *3 (-948 *5)) (-5 *4 (-917)) (-4 *5 (-1045)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2108 (*1 *2 *3) (-12 (-5 *3 (-948 *4)) (-4 *4 (-1045)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-3806 (*1 *2 *3 *4) (-12 (-5 *3 (-948 *5)) (-5 *4 (-917)) (-4 *5 (-1045)) (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5)))) (-3806 (*1 *2 *3) (-12 (-5 *3 (-948 *4)) (-4 *4 (-1045)) (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4)))) (-2108 (*1 *2 *3 *4) (-12 (-5 *3 (-948 (-169 *5))) (-5 *4 (-917)) (-4 *5 (-172)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2108 (*1 *2 *3) (-12 (-5 *3 (-948 (-169 *4))) (-4 *4 (-172)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2108 (*1 *2 *3 *4) (-12 (-5 *3 (-169 *5)) (-5 *4 (-917)) (-4 *5 (-172)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2108 (*1 *2 *3) (-12 (-5 *3 (-169 *4)) (-4 *4 (-172)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2108 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-5 *2 (-169 (-379))) (-5 *1 (-781 *3)) (-4 *3 (-611 (-379))))) (-2108 (*1 *2 *3) (-12 (-5 *2 (-169 (-379))) (-5 *1 (-781 *3)) (-4 *3 (-611 (-379))))) (-3806 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-5 *2 (-379)) (-5 *1 (-781 *3)) (-4 *3 (-611 *2)))) (-3806 (*1 *2 *3) (-12 (-5 *2 (-379)) (-5 *1 (-781 *3)) (-4 *3 (-611 *2)))))
-(-10 -7 (-15 -3806 ((-379) |#1|)) (-15 -3806 ((-379) |#1| (-917))) (-15 -2108 ((-169 (-379)) |#1|)) (-15 -2108 ((-169 (-379)) |#1| (-917))) (IF (|has| |#1| (-172)) (PROGN (-15 -2108 ((-169 (-379)) (-169 |#1|))) (-15 -2108 ((-169 (-379)) (-169 |#1|) (-917))) (-15 -2108 ((-169 (-379)) (-948 (-169 |#1|)))) (-15 -2108 ((-169 (-379)) (-948 (-169 |#1|)) (-917)))) |%noBranch|) (IF (|has| |#1| (-1045)) (PROGN (-15 -3806 ((-379) (-948 |#1|))) (-15 -3806 ((-379) (-948 |#1|) (-917))) (-15 -2108 ((-169 (-379)) (-948 |#1|))) (-15 -2108 ((-169 (-379)) (-948 |#1|) (-917)))) |%noBranch|) (IF (|has| |#1| (-555)) (PROGN (-15 -3806 ((-379) (-407 (-948 |#1|)))) (-15 -3806 ((-379) (-407 (-948 |#1|)) (-917))) (-15 -2108 ((-169 (-379)) (-407 (-948 |#1|)))) (-15 -2108 ((-169 (-379)) (-407 (-948 |#1|)) (-917))) (-15 -2108 ((-169 (-379)) (-407 (-948 (-169 |#1|))))) (-15 -2108 ((-169 (-379)) (-407 (-948 (-169 |#1|))) (-917))) (IF (|has| |#1| (-846)) (PROGN (-15 -3806 ((-379) (-316 |#1|))) (-15 -3806 ((-379) (-316 |#1|) (-917))) (-15 -2108 ((-169 (-379)) (-316 |#1|))) (-15 -2108 ((-169 (-379)) (-316 |#1|) (-917))) (-15 -2108 ((-169 (-379)) (-316 (-169 |#1|)))) (-15 -2108 ((-169 (-379)) (-316 (-169 |#1|)) (-917)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-15 -2565 ((-3 (-169 (-379)) "failed") (-948 (-169 |#1|)))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-948 (-169 |#1|)) (-917)))) |%noBranch|) (IF (|has| |#1| (-1045)) (PROGN (-15 -3403 ((-3 (-379) "failed") (-948 |#1|))) (-15 -3403 ((-3 (-379) "failed") (-948 |#1|) (-917))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-948 |#1|))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-948 |#1|) (-917)))) |%noBranch|) (IF (|has| |#1| (-555)) (PROGN (-15 -3403 ((-3 (-379) "failed") (-407 (-948 |#1|)))) (-15 -3403 ((-3 (-379) "failed") (-407 (-948 |#1|)) (-917))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-407 (-948 |#1|)))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-407 (-948 |#1|)) (-917))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-407 (-948 (-169 |#1|))))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-407 (-948 (-169 |#1|))) (-917))) (IF (|has| |#1| (-846)) (PROGN (-15 -3403 ((-3 (-379) "failed") (-316 |#1|))) (-15 -3403 ((-3 (-379) "failed") (-316 |#1|) (-917))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-316 |#1|))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-316 |#1|) (-917))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-316 (-169 |#1|)))) (-15 -2565 ((-3 (-169 (-379)) "failed") (-316 (-169 |#1|)) (-917)))) |%noBranch|)) |%noBranch|))
-((-3306 (((-917) (-1151)) 64)) (-4248 (((-3 (-379) "failed") (-1151)) 32)) (-3326 (((-379) (-1151)) 30)) (-2384 (((-917) (-1151)) 53)) (-2571 (((-1151) (-917)) 54)) (-3730 (((-1151) (-917)) 52)))
-(((-782) (-10 -7 (-15 -3730 ((-1151) (-917))) (-15 -2384 ((-917) (-1151))) (-15 -2571 ((-1151) (-917))) (-15 -3306 ((-917) (-1151))) (-15 -3326 ((-379) (-1151))) (-15 -4248 ((-3 (-379) "failed") (-1151))))) (T -782))
-((-4248 (*1 *2 *3) (|partial| -12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-782)))) (-3326 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-782)))) (-3306 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-917)) (-5 *1 (-782)))) (-2571 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1151)) (-5 *1 (-782)))) (-2384 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-917)) (-5 *1 (-782)))) (-3730 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1151)) (-5 *1 (-782)))))
-(-10 -7 (-15 -3730 ((-1151) (-917))) (-15 -2384 ((-917) (-1151))) (-15 -2571 ((-1151) (-917))) (-15 -3306 ((-917) (-1151))) (-15 -3326 ((-379) (-1151))) (-15 -4248 ((-3 (-379) "failed") (-1151))))
-((-1677 (((-112) $ $) 7)) (-1807 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 15) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 13)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 16) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 14)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1718 (((-112) $ $) 6)))
+((-2001 (((-3 (-379) "failed") (-316 |#1|) (-917)) 62 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-3 (-379) "failed") (-316 |#1|)) 54 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-3 (-379) "failed") (-407 (-948 |#1|)) (-917)) 41 (|has| |#1| (-555))) (((-3 (-379) "failed") (-407 (-948 |#1|))) 40 (|has| |#1| (-555))) (((-3 (-379) "failed") (-948 |#1|) (-917)) 31 (|has| |#1| (-1045))) (((-3 (-379) "failed") (-948 |#1|)) 30 (|has| |#1| (-1045)))) (-3807 (((-379) (-316 |#1|) (-917)) 99 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-379) (-316 |#1|)) 94 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-379) (-407 (-948 |#1|)) (-917)) 91 (|has| |#1| (-555))) (((-379) (-407 (-948 |#1|))) 90 (|has| |#1| (-555))) (((-379) (-948 |#1|) (-917)) 86 (|has| |#1| (-1045))) (((-379) (-948 |#1|)) 85 (|has| |#1| (-1045))) (((-379) |#1| (-917)) 76) (((-379) |#1|) 22)) (-2010 (((-3 (-169 (-379)) "failed") (-316 (-169 |#1|)) (-917)) 71 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-3 (-169 (-379)) "failed") (-316 (-169 |#1|))) 70 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-3 (-169 (-379)) "failed") (-316 |#1|) (-917)) 63 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-3 (-169 (-379)) "failed") (-316 |#1|)) 61 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-3 (-169 (-379)) "failed") (-407 (-948 (-169 |#1|))) (-917)) 46 (|has| |#1| (-555))) (((-3 (-169 (-379)) "failed") (-407 (-948 (-169 |#1|)))) 45 (|has| |#1| (-555))) (((-3 (-169 (-379)) "failed") (-407 (-948 |#1|)) (-917)) 39 (|has| |#1| (-555))) (((-3 (-169 (-379)) "failed") (-407 (-948 |#1|))) 38 (|has| |#1| (-555))) (((-3 (-169 (-379)) "failed") (-948 |#1|) (-917)) 28 (|has| |#1| (-1045))) (((-3 (-169 (-379)) "failed") (-948 |#1|)) 26 (|has| |#1| (-1045))) (((-3 (-169 (-379)) "failed") (-948 (-169 |#1|)) (-917)) 18 (|has| |#1| (-172))) (((-3 (-169 (-379)) "failed") (-948 (-169 |#1|))) 15 (|has| |#1| (-172)))) (-2107 (((-169 (-379)) (-316 (-169 |#1|)) (-917)) 102 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-169 (-379)) (-316 (-169 |#1|))) 101 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-169 (-379)) (-316 |#1|) (-917)) 100 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-169 (-379)) (-316 |#1|)) 98 (-12 (|has| |#1| (-555)) (|has| |#1| (-846)))) (((-169 (-379)) (-407 (-948 (-169 |#1|))) (-917)) 93 (|has| |#1| (-555))) (((-169 (-379)) (-407 (-948 (-169 |#1|)))) 92 (|has| |#1| (-555))) (((-169 (-379)) (-407 (-948 |#1|)) (-917)) 89 (|has| |#1| (-555))) (((-169 (-379)) (-407 (-948 |#1|))) 88 (|has| |#1| (-555))) (((-169 (-379)) (-948 |#1|) (-917)) 84 (|has| |#1| (-1045))) (((-169 (-379)) (-948 |#1|)) 83 (|has| |#1| (-1045))) (((-169 (-379)) (-948 (-169 |#1|)) (-917)) 78 (|has| |#1| (-172))) (((-169 (-379)) (-948 (-169 |#1|))) 77 (|has| |#1| (-172))) (((-169 (-379)) (-169 |#1|) (-917)) 80 (|has| |#1| (-172))) (((-169 (-379)) (-169 |#1|)) 79 (|has| |#1| (-172))) (((-169 (-379)) |#1| (-917)) 27) (((-169 (-379)) |#1|) 25)))
+(((-781 |#1|) (-10 -7 (-15 -3807 ((-379) |#1|)) (-15 -3807 ((-379) |#1| (-917))) (-15 -2107 ((-169 (-379)) |#1|)) (-15 -2107 ((-169 (-379)) |#1| (-917))) (IF (|has| |#1| (-172)) (PROGN (-15 -2107 ((-169 (-379)) (-169 |#1|))) (-15 -2107 ((-169 (-379)) (-169 |#1|) (-917))) (-15 -2107 ((-169 (-379)) (-948 (-169 |#1|)))) (-15 -2107 ((-169 (-379)) (-948 (-169 |#1|)) (-917)))) |%noBranch|) (IF (|has| |#1| (-1045)) (PROGN (-15 -3807 ((-379) (-948 |#1|))) (-15 -3807 ((-379) (-948 |#1|) (-917))) (-15 -2107 ((-169 (-379)) (-948 |#1|))) (-15 -2107 ((-169 (-379)) (-948 |#1|) (-917)))) |%noBranch|) (IF (|has| |#1| (-555)) (PROGN (-15 -3807 ((-379) (-407 (-948 |#1|)))) (-15 -3807 ((-379) (-407 (-948 |#1|)) (-917))) (-15 -2107 ((-169 (-379)) (-407 (-948 |#1|)))) (-15 -2107 ((-169 (-379)) (-407 (-948 |#1|)) (-917))) (-15 -2107 ((-169 (-379)) (-407 (-948 (-169 |#1|))))) (-15 -2107 ((-169 (-379)) (-407 (-948 (-169 |#1|))) (-917))) (IF (|has| |#1| (-846)) (PROGN (-15 -3807 ((-379) (-316 |#1|))) (-15 -3807 ((-379) (-316 |#1|) (-917))) (-15 -2107 ((-169 (-379)) (-316 |#1|))) (-15 -2107 ((-169 (-379)) (-316 |#1|) (-917))) (-15 -2107 ((-169 (-379)) (-316 (-169 |#1|)))) (-15 -2107 ((-169 (-379)) (-316 (-169 |#1|)) (-917)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-15 -2010 ((-3 (-169 (-379)) "failed") (-948 (-169 |#1|)))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-948 (-169 |#1|)) (-917)))) |%noBranch|) (IF (|has| |#1| (-1045)) (PROGN (-15 -2001 ((-3 (-379) "failed") (-948 |#1|))) (-15 -2001 ((-3 (-379) "failed") (-948 |#1|) (-917))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-948 |#1|))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-948 |#1|) (-917)))) |%noBranch|) (IF (|has| |#1| (-555)) (PROGN (-15 -2001 ((-3 (-379) "failed") (-407 (-948 |#1|)))) (-15 -2001 ((-3 (-379) "failed") (-407 (-948 |#1|)) (-917))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-407 (-948 |#1|)))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-407 (-948 |#1|)) (-917))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-407 (-948 (-169 |#1|))))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-407 (-948 (-169 |#1|))) (-917))) (IF (|has| |#1| (-846)) (PROGN (-15 -2001 ((-3 (-379) "failed") (-316 |#1|))) (-15 -2001 ((-3 (-379) "failed") (-316 |#1|) (-917))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-316 |#1|))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-316 |#1|) (-917))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-316 (-169 |#1|)))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-316 (-169 |#1|)) (-917)))) |%noBranch|)) |%noBranch|)) (-611 (-379))) (T -781))
+((-2010 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-316 (-169 *5))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-846)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2010 (*1 *2 *3) (|partial| -12 (-5 *3 (-316 (-169 *4))) (-4 *4 (-555)) (-4 *4 (-846)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2010 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-316 *5)) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-846)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2010 (*1 *2 *3) (|partial| -12 (-5 *3 (-316 *4)) (-4 *4 (-555)) (-4 *4 (-846)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2001 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-316 *5)) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-846)) (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5)))) (-2001 (*1 *2 *3) (|partial| -12 (-5 *3 (-316 *4)) (-4 *4 (-555)) (-4 *4 (-846)) (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4)))) (-2010 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-407 (-948 (-169 *5)))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2010 (*1 *2 *3) (|partial| -12 (-5 *3 (-407 (-948 (-169 *4)))) (-4 *4 (-555)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2010 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2010 (*1 *2 *3) (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2001 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5)))) (-2001 (*1 *2 *3) (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555)) (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4)))) (-2010 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-948 *5)) (-5 *4 (-917)) (-4 *5 (-1045)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2010 (*1 *2 *3) (|partial| -12 (-5 *3 (-948 *4)) (-4 *4 (-1045)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2001 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-948 *5)) (-5 *4 (-917)) (-4 *5 (-1045)) (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5)))) (-2001 (*1 *2 *3) (|partial| -12 (-5 *3 (-948 *4)) (-4 *4 (-1045)) (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4)))) (-2010 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-948 (-169 *5))) (-5 *4 (-917)) (-4 *5 (-172)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2010 (*1 *2 *3) (|partial| -12 (-5 *3 (-948 (-169 *4))) (-4 *4 (-172)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2107 (*1 *2 *3 *4) (-12 (-5 *3 (-316 (-169 *5))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-846)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2107 (*1 *2 *3) (-12 (-5 *3 (-316 (-169 *4))) (-4 *4 (-555)) (-4 *4 (-846)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2107 (*1 *2 *3 *4) (-12 (-5 *3 (-316 *5)) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-846)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2107 (*1 *2 *3) (-12 (-5 *3 (-316 *4)) (-4 *4 (-555)) (-4 *4 (-846)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-3807 (*1 *2 *3 *4) (-12 (-5 *3 (-316 *5)) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-846)) (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5)))) (-3807 (*1 *2 *3) (-12 (-5 *3 (-316 *4)) (-4 *4 (-555)) (-4 *4 (-846)) (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4)))) (-2107 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 (-169 *5)))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2107 (*1 *2 *3) (-12 (-5 *3 (-407 (-948 (-169 *4)))) (-4 *4 (-555)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2107 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2107 (*1 *2 *3) (-12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-3807 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5)))) (-3807 (*1 *2 *3) (-12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555)) (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4)))) (-2107 (*1 *2 *3 *4) (-12 (-5 *3 (-948 *5)) (-5 *4 (-917)) (-4 *5 (-1045)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2107 (*1 *2 *3) (-12 (-5 *3 (-948 *4)) (-4 *4 (-1045)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-3807 (*1 *2 *3 *4) (-12 (-5 *3 (-948 *5)) (-5 *4 (-917)) (-4 *5 (-1045)) (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5)))) (-3807 (*1 *2 *3) (-12 (-5 *3 (-948 *4)) (-4 *4 (-1045)) (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4)))) (-2107 (*1 *2 *3 *4) (-12 (-5 *3 (-948 (-169 *5))) (-5 *4 (-917)) (-4 *5 (-172)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2107 (*1 *2 *3) (-12 (-5 *3 (-948 (-169 *4))) (-4 *4 (-172)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2107 (*1 *2 *3 *4) (-12 (-5 *3 (-169 *5)) (-5 *4 (-917)) (-4 *5 (-172)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5)))) (-2107 (*1 *2 *3) (-12 (-5 *3 (-169 *4)) (-4 *4 (-172)) (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4)))) (-2107 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-5 *2 (-169 (-379))) (-5 *1 (-781 *3)) (-4 *3 (-611 (-379))))) (-2107 (*1 *2 *3) (-12 (-5 *2 (-169 (-379))) (-5 *1 (-781 *3)) (-4 *3 (-611 (-379))))) (-3807 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-5 *2 (-379)) (-5 *1 (-781 *3)) (-4 *3 (-611 *2)))) (-3807 (*1 *2 *3) (-12 (-5 *2 (-379)) (-5 *1 (-781 *3)) (-4 *3 (-611 *2)))))
+(-10 -7 (-15 -3807 ((-379) |#1|)) (-15 -3807 ((-379) |#1| (-917))) (-15 -2107 ((-169 (-379)) |#1|)) (-15 -2107 ((-169 (-379)) |#1| (-917))) (IF (|has| |#1| (-172)) (PROGN (-15 -2107 ((-169 (-379)) (-169 |#1|))) (-15 -2107 ((-169 (-379)) (-169 |#1|) (-917))) (-15 -2107 ((-169 (-379)) (-948 (-169 |#1|)))) (-15 -2107 ((-169 (-379)) (-948 (-169 |#1|)) (-917)))) |%noBranch|) (IF (|has| |#1| (-1045)) (PROGN (-15 -3807 ((-379) (-948 |#1|))) (-15 -3807 ((-379) (-948 |#1|) (-917))) (-15 -2107 ((-169 (-379)) (-948 |#1|))) (-15 -2107 ((-169 (-379)) (-948 |#1|) (-917)))) |%noBranch|) (IF (|has| |#1| (-555)) (PROGN (-15 -3807 ((-379) (-407 (-948 |#1|)))) (-15 -3807 ((-379) (-407 (-948 |#1|)) (-917))) (-15 -2107 ((-169 (-379)) (-407 (-948 |#1|)))) (-15 -2107 ((-169 (-379)) (-407 (-948 |#1|)) (-917))) (-15 -2107 ((-169 (-379)) (-407 (-948 (-169 |#1|))))) (-15 -2107 ((-169 (-379)) (-407 (-948 (-169 |#1|))) (-917))) (IF (|has| |#1| (-846)) (PROGN (-15 -3807 ((-379) (-316 |#1|))) (-15 -3807 ((-379) (-316 |#1|) (-917))) (-15 -2107 ((-169 (-379)) (-316 |#1|))) (-15 -2107 ((-169 (-379)) (-316 |#1|) (-917))) (-15 -2107 ((-169 (-379)) (-316 (-169 |#1|)))) (-15 -2107 ((-169 (-379)) (-316 (-169 |#1|)) (-917)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-15 -2010 ((-3 (-169 (-379)) "failed") (-948 (-169 |#1|)))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-948 (-169 |#1|)) (-917)))) |%noBranch|) (IF (|has| |#1| (-1045)) (PROGN (-15 -2001 ((-3 (-379) "failed") (-948 |#1|))) (-15 -2001 ((-3 (-379) "failed") (-948 |#1|) (-917))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-948 |#1|))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-948 |#1|) (-917)))) |%noBranch|) (IF (|has| |#1| (-555)) (PROGN (-15 -2001 ((-3 (-379) "failed") (-407 (-948 |#1|)))) (-15 -2001 ((-3 (-379) "failed") (-407 (-948 |#1|)) (-917))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-407 (-948 |#1|)))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-407 (-948 |#1|)) (-917))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-407 (-948 (-169 |#1|))))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-407 (-948 (-169 |#1|))) (-917))) (IF (|has| |#1| (-846)) (PROGN (-15 -2001 ((-3 (-379) "failed") (-316 |#1|))) (-15 -2001 ((-3 (-379) "failed") (-316 |#1|) (-917))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-316 |#1|))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-316 |#1|) (-917))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-316 (-169 |#1|)))) (-15 -2010 ((-3 (-169 (-379)) "failed") (-316 (-169 |#1|)) (-917)))) |%noBranch|)) |%noBranch|))
+((-3909 (((-917) (-1151)) 64)) (-3931 (((-3 (-379) "failed") (-1151)) 32)) (-3920 (((-379) (-1151)) 30)) (-2029 (((-917) (-1151)) 53)) (-2039 (((-1151) (-917)) 54)) (-2018 (((-1151) (-917)) 52)))
+(((-782) (-10 -7 (-15 -2018 ((-1151) (-917))) (-15 -2029 ((-917) (-1151))) (-15 -2039 ((-1151) (-917))) (-15 -3909 ((-917) (-1151))) (-15 -3920 ((-379) (-1151))) (-15 -3931 ((-3 (-379) "failed") (-1151))))) (T -782))
+((-3931 (*1 *2 *3) (|partial| -12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-782)))) (-3920 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-782)))) (-3909 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-917)) (-5 *1 (-782)))) (-2039 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1151)) (-5 *1 (-782)))) (-2029 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-917)) (-5 *1 (-782)))) (-2018 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1151)) (-5 *1 (-782)))))
+(-10 -7 (-15 -2018 ((-1151) (-917))) (-15 -2029 ((-917) (-1151))) (-15 -2039 ((-1151) (-917))) (-15 -3909 ((-917) (-1151))) (-15 -3920 ((-379) (-1151))) (-15 -3931 ((-3 (-379) "failed") (-1151))))
+((-1677 (((-112) $ $) 7)) (-3940 (((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 15) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)) 13)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 16) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 14)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1718 (((-112) $ $) 6)))
(((-783) (-140)) (T -783))
-((-1994 (*1 *2 *3 *4) (-12 (-4 *1 (-783)) (-5 *3 (-1057)) (-5 *4 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031)))))) (-1807 (*1 *2 *3 *2) (-12 (-4 *1 (-783)) (-5 *2 (-1031)) (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) (-1994 (*1 *2 *3 *4) (-12 (-4 *1 (-783)) (-5 *3 (-1057)) (-5 *4 (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031)))))) (-1807 (*1 *2 *3 *2) (-12 (-4 *1 (-783)) (-5 *2 (-1031)) (-5 *3 (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))))
-(-13 (-1093) (-10 -7 (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1807 ((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1807 ((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)))))
+((-2929 (*1 *2 *3 *4) (-12 (-4 *1 (-783)) (-5 *3 (-1057)) (-5 *4 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031)))))) (-3940 (*1 *2 *3 *2) (-12 (-4 *1 (-783)) (-5 *2 (-1031)) (-5 *3 (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) (-2929 (*1 *2 *3 *4) (-12 (-4 *1 (-783)) (-5 *3 (-1057)) (-5 *4 (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031)))))) (-3940 (*1 *2 *3 *2) (-12 (-4 *1 (-783)) (-5 *2 (-1031)) (-5 *3 (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))))
+(-13 (-1093) (-10 -7 (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3940 ((-1031) (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225))) (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)) (|:| |extra| (-1031))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3940 ((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1031)))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-3360 (((-1262) (-1257 (-379)) (-563) (-379) (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))) (-379) (-1257 (-379)) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379))) 44) (((-1262) (-1257 (-379)) (-563) (-379) (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))) (-379) (-1257 (-379)) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379))) 43)) (-3025 (((-1262) (-1257 (-379)) (-563) (-379) (-379) (-563) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379))) 50)) (-1415 (((-1262) (-1257 (-379)) (-563) (-379) (-379) (-379) (-379) (-563) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379))) 41)) (-3576 (((-1262) (-1257 (-379)) (-563) (-379) (-379) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379))) 52) (((-1262) (-1257 (-379)) (-563) (-379) (-379) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379))) 51)))
-(((-784) (-10 -7 (-15 -3576 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))) (-15 -3576 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)))) (-15 -1415 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-379) (-379) (-563) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))) (-15 -3360 ((-1262) (-1257 (-379)) (-563) (-379) (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))) (-379) (-1257 (-379)) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))) (-15 -3360 ((-1262) (-1257 (-379)) (-563) (-379) (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))) (-379) (-1257 (-379)) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)))) (-15 -3025 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-563) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))))) (T -784))
-((-3025 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379))) (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262)) (-5 *1 (-784)))) (-3360 (*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3) (-12 (-5 *4 (-563)) (-5 *6 (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379)))) (-5 *7 (-1 (-1262) (-1257 *5) (-1257 *5) (-379))) (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262)) (-5 *1 (-784)))) (-3360 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-563)) (-5 *6 (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379)))) (-5 *7 (-1 (-1262) (-1257 *5) (-1257 *5) (-379))) (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262)) (-5 *1 (-784)))) (-1415 (*1 *2 *3 *4 *5 *5 *5 *5 *4 *6) (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379))) (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262)) (-5 *1 (-784)))) (-3576 (*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3) (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379))) (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262)) (-5 *1 (-784)))) (-3576 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379))) (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262)) (-5 *1 (-784)))))
-(-10 -7 (-15 -3576 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))) (-15 -3576 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)))) (-15 -1415 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-379) (-379) (-563) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))) (-15 -3360 ((-1262) (-1257 (-379)) (-563) (-379) (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))) (-379) (-1257 (-379)) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))) (-15 -3360 ((-1262) (-1257 (-379)) (-563) (-379) (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))) (-379) (-1257 (-379)) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)))) (-15 -3025 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-563) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))))
-((-1393 (((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563)) 53)) (-2891 (((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563)) 31)) (-3022 (((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563)) 52)) (-3718 (((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563)) 29)) (-3019 (((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563)) 51)) (-2329 (((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563)) 19)) (-3589 (((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563)) 32)) (-3919 (((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563)) 30)) (-3179 (((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563)) 28)))
-(((-785) (-10 -7 (-15 -3179 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563))) (-15 -3919 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563))) (-15 -3589 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563))) (-15 -2329 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -3718 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -2891 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -3019 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -3022 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -1393 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))))) (T -785))
-((-1393 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-3022 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-3019 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-2891 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-3718 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-2329 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-3589 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-3919 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-3179 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))))
-(-10 -7 (-15 -3179 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563))) (-15 -3919 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563))) (-15 -3589 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563))) (-15 -2329 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -3718 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -2891 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -3019 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -3022 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -1393 ((-2 (|:| -2619 (-379)) (|:| -4076 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))))
-((-2357 (((-1203 |#1|) |#1| (-225) (-563)) 46)))
-(((-786 |#1|) (-10 -7 (-15 -2357 ((-1203 |#1|) |#1| (-225) (-563)))) (-970)) (T -786))
-((-2357 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-225)) (-5 *5 (-563)) (-5 *2 (-1203 *3)) (-5 *1 (-786 *3)) (-4 *3 (-970)))))
-(-10 -7 (-15 -2357 ((-1203 |#1|) |#1| (-225) (-563))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 24)) (-1495 (((-3 $ "failed") $ $) 26)) (-4239 (($) 23 T CONST)) (-3084 (($ $ $) 13)) (-1777 (($ $ $) 14)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-2241 (($) 22 T CONST)) (-1778 (((-112) $ $) 16)) (-1756 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 15)) (-1744 (((-112) $ $) 18)) (-1826 (($ $ $) 28) (($ $) 27)) (-1814 (($ $ $) 20)) (* (($ (-917) $) 21) (($ (-767) $) 25) (($ (-563) $) 29)))
+((-3971 (((-1262) (-1257 (-379)) (-563) (-379) (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))) (-379) (-1257 (-379)) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379))) 44) (((-1262) (-1257 (-379)) (-563) (-379) (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))) (-379) (-1257 (-379)) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379))) 43)) (-3981 (((-1262) (-1257 (-379)) (-563) (-379) (-379) (-563) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379))) 50)) (-3961 (((-1262) (-1257 (-379)) (-563) (-379) (-379) (-379) (-379) (-563) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379))) 41)) (-3950 (((-1262) (-1257 (-379)) (-563) (-379) (-379) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379))) 52) (((-1262) (-1257 (-379)) (-563) (-379) (-379) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379))) 51)))
+(((-784) (-10 -7 (-15 -3950 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))) (-15 -3950 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)))) (-15 -3961 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-379) (-379) (-563) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))) (-15 -3971 ((-1262) (-1257 (-379)) (-563) (-379) (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))) (-379) (-1257 (-379)) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))) (-15 -3971 ((-1262) (-1257 (-379)) (-563) (-379) (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))) (-379) (-1257 (-379)) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)))) (-15 -3981 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-563) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))))) (T -784))
+((-3981 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379))) (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262)) (-5 *1 (-784)))) (-3971 (*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3) (-12 (-5 *4 (-563)) (-5 *6 (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379)))) (-5 *7 (-1 (-1262) (-1257 *5) (-1257 *5) (-379))) (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262)) (-5 *1 (-784)))) (-3971 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-563)) (-5 *6 (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379)))) (-5 *7 (-1 (-1262) (-1257 *5) (-1257 *5) (-379))) (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262)) (-5 *1 (-784)))) (-3961 (*1 *2 *3 *4 *5 *5 *5 *5 *4 *6) (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379))) (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262)) (-5 *1 (-784)))) (-3950 (*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3) (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379))) (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262)) (-5 *1 (-784)))) (-3950 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379))) (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262)) (-5 *1 (-784)))))
+(-10 -7 (-15 -3950 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))) (-15 -3950 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)))) (-15 -3961 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-379) (-379) (-563) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))) (-15 -3971 ((-1262) (-1257 (-379)) (-563) (-379) (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))) (-379) (-1257 (-379)) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))) (-15 -3971 ((-1262) (-1257 (-379)) (-563) (-379) (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))) (-379) (-1257 (-379)) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)) (-1257 (-379)))) (-15 -3981 ((-1262) (-1257 (-379)) (-563) (-379) (-379) (-563) (-1 (-1262) (-1257 (-379)) (-1257 (-379)) (-379)))))
+((-4082 (((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563)) 53)) (-4049 (((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563)) 31)) (-4071 (((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563)) 52)) (-4037 (((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563)) 29)) (-4060 (((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563)) 51)) (-4026 (((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563)) 19)) (-4015 (((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563)) 32)) (-4005 (((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563)) 30)) (-3992 (((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563)) 28)))
+(((-785) (-10 -7 (-15 -3992 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563))) (-15 -4005 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563))) (-15 -4015 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563))) (-15 -4026 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -4037 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -4049 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -4060 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -4071 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -4082 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))))) (T -785))
+((-4082 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-4071 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-4060 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-4049 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-4037 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-4026 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-4015 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-4005 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))) (-3992 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379)) (-5 *2 (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563)) (|:| |success| (-112)))) (-5 *1 (-785)) (-5 *5 (-563)))))
+(-10 -7 (-15 -3992 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563))) (-15 -4005 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563))) (-15 -4015 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563) (-563))) (-15 -4026 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -4037 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -4049 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -4060 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -4071 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))) (-15 -4082 ((-2 (|:| -2618 (-379)) (|:| -4079 (-379)) (|:| |totalpts| (-563)) (|:| |success| (-112))) (-1 (-379) (-379)) (-379) (-379) (-379) (-379) (-563) (-563))))
+((-2381 (((-1203 |#1|) |#1| (-225) (-563)) 46)))
+(((-786 |#1|) (-10 -7 (-15 -2381 ((-1203 |#1|) |#1| (-225) (-563)))) (-970)) (T -786))
+((-2381 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-225)) (-5 *5 (-563)) (-5 *2 (-1203 *3)) (-5 *1 (-786 *3)) (-4 *3 (-970)))))
+(-10 -7 (-15 -2381 ((-1203 |#1|) |#1| (-225) (-563))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 24)) (-3905 (((-3 $ "failed") $ $) 26)) (-2569 (($) 23 T CONST)) (-3088 (($ $ $) 13)) (-1776 (($ $ $) 14)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2239 (($) 22 T CONST)) (-1779 (((-112) $ $) 16)) (-1754 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 15)) (-1743 (((-112) $ $) 18)) (-1825 (($ $ $) 28) (($ $) 27)) (-1813 (($ $ $) 20)) (* (($ (-917) $) 21) (($ (-767) $) 25) (($ (-563) $) 29)))
(((-787) (-140)) (T -787))
NIL
(-13 (-791) (-21))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-610 (-858)) . T) ((-788) . T) ((-790) . T) ((-791) . T) ((-846) . T) ((-1093) . T))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 24)) (-4239 (($) 23 T CONST)) (-3084 (($ $ $) 13)) (-1777 (($ $ $) 14)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-2241 (($) 22 T CONST)) (-1778 (((-112) $ $) 16)) (-1756 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 15)) (-1744 (((-112) $ $) 18)) (-1814 (($ $ $) 20)) (* (($ (-917) $) 21) (($ (-767) $) 25)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 24)) (-2569 (($) 23 T CONST)) (-3088 (($ $ $) 13)) (-1776 (($ $ $) 14)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2239 (($) 22 T CONST)) (-1779 (((-112) $ $) 16)) (-1754 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 15)) (-1743 (((-112) $ $) 18)) (-1813 (($ $ $) 20)) (* (($ (-917) $) 21) (($ (-767) $) 25)))
(((-788) (-140)) (T -788))
NIL
(-13 (-790) (-23))
(((-23) . T) ((-25) . T) ((-102) . T) ((-610 (-858)) . T) ((-790) . T) ((-846) . T) ((-1093) . T))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 24)) (-1901 (($ $ $) 27)) (-1495 (((-3 $ "failed") $ $) 26)) (-4239 (($) 23 T CONST)) (-3084 (($ $ $) 13)) (-1777 (($ $ $) 14)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-2241 (($) 22 T CONST)) (-1778 (((-112) $ $) 16)) (-1756 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 15)) (-1744 (((-112) $ $) 18)) (-1814 (($ $ $) 20)) (* (($ (-917) $) 21) (($ (-767) $) 25)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 24)) (-4092 (($ $ $) 27)) (-3905 (((-3 $ "failed") $ $) 26)) (-2569 (($) 23 T CONST)) (-3088 (($ $ $) 13)) (-1776 (($ $ $) 14)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2239 (($) 22 T CONST)) (-1779 (((-112) $ $) 16)) (-1754 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 15)) (-1743 (((-112) $ $) 18)) (-1813 (($ $ $) 20)) (* (($ (-917) $) 21) (($ (-767) $) 25)))
(((-789) (-140)) (T -789))
-((-1901 (*1 *1 *1 *1) (-4 *1 (-789))))
-(-13 (-791) (-10 -8 (-15 -1901 ($ $ $))))
+((-4092 (*1 *1 *1 *1) (-4 *1 (-789))))
+(-13 (-791) (-10 -8 (-15 -4092 ($ $ $))))
(((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-610 (-858)) . T) ((-788) . T) ((-790) . T) ((-791) . T) ((-846) . T) ((-1093) . T))
-((-1677 (((-112) $ $) 7)) (-3084 (($ $ $) 13)) (-1777 (($ $ $) 14)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1778 (((-112) $ $) 16)) (-1756 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 15)) (-1744 (((-112) $ $) 18)) (-1814 (($ $ $) 20)) (* (($ (-917) $) 21)))
+((-1677 (((-112) $ $) 7)) (-3088 (($ $ $) 13)) (-1776 (($ $ $) 14)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1779 (((-112) $ $) 16)) (-1754 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 15)) (-1743 (((-112) $ $) 18)) (-1813 (($ $ $) 20)) (* (($ (-917) $) 21)))
(((-790) (-140)) (T -790))
NIL
(-13 (-846) (-25))
(((-25) . T) ((-102) . T) ((-610 (-858)) . T) ((-846) . T) ((-1093) . T))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 24)) (-1495 (((-3 $ "failed") $ $) 26)) (-4239 (($) 23 T CONST)) (-3084 (($ $ $) 13)) (-1777 (($ $ $) 14)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-2241 (($) 22 T CONST)) (-1778 (((-112) $ $) 16)) (-1756 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 15)) (-1744 (((-112) $ $) 18)) (-1814 (($ $ $) 20)) (* (($ (-917) $) 21) (($ (-767) $) 25)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 24)) (-3905 (((-3 $ "failed") $ $) 26)) (-2569 (($) 23 T CONST)) (-3088 (($ $ $) 13)) (-1776 (($ $ $) 14)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2239 (($) 22 T CONST)) (-1779 (((-112) $ $) 16)) (-1754 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 15)) (-1743 (((-112) $ $) 18)) (-1813 (($ $ $) 20)) (* (($ (-917) $) 21) (($ (-767) $) 25)))
(((-791) (-140)) (T -791))
NIL
(-13 (-788) (-131))
(((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-610 (-858)) . T) ((-788) . T) ((-790) . T) ((-846) . T) ((-1093) . T))
-((-3411 (((-112) $) 41)) (-2131 (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 |#2| "failed") $) 44)) (-2058 (((-563) $) NIL) (((-407 (-563)) $) NIL) ((|#2| $) 42)) (-3909 (((-3 (-407 (-563)) "failed") $) 78)) (-2239 (((-112) $) 72)) (-2651 (((-407 (-563)) $) 76)) (-3793 ((|#2| $) 26)) (-2240 (($ (-1 |#2| |#2|) $) 23)) (-2688 (($ $) 59)) (-2220 (((-536) $) 67)) (-4339 (($ $) 21)) (-1693 (((-858) $) 54) (($ (-563)) 39) (($ |#2|) 37) (($ (-407 (-563))) NIL)) (-1675 (((-767)) 10)) (-2509 ((|#2| $) 71)) (-1718 (((-112) $ $) 29)) (-1744 (((-112) $ $) 69)) (-1826 (($ $) 31) (($ $ $) NIL)) (-1814 (($ $ $) 30)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 35) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 32)))
-(((-792 |#1| |#2|) (-10 -8 (-15 -1744 ((-112) |#1| |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -2688 (|#1| |#1|)) (-15 -3909 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2651 ((-407 (-563)) |#1|)) (-15 -2239 ((-112) |#1|)) (-15 -2509 (|#2| |#1|)) (-15 -3793 (|#2| |#1|)) (-15 -4339 (|#1| |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -1693 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1675 ((-767))) (-15 -1693 (|#1| (-563))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1826 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 -3411 ((-112) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1814 (|#1| |#1| |#1|)) (-15 -1693 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|))) (-793 |#2|) (-172)) (T -792))
-((-1675 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-767)) (-5 *1 (-792 *3 *4)) (-4 *3 (-793 *4)))))
-(-10 -8 (-15 -1744 ((-112) |#1| |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -2688 (|#1| |#1|)) (-15 -3909 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2651 ((-407 (-563)) |#1|)) (-15 -2239 ((-112) |#1|)) (-15 -2509 (|#2| |#1|)) (-15 -3793 (|#2| |#1|)) (-15 -4339 (|#1| |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -1693 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1675 ((-767))) (-15 -1693 (|#1| (-563))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1826 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 -3411 ((-112) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1814 (|#1| |#1| |#1|)) (-15 -1693 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-3749 (((-767)) 52 (|has| |#1| (-368)))) (-4239 (($) 17 T CONST)) (-2131 (((-3 (-563) "failed") $) 94 (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 91 (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 88)) (-2058 (((-563) $) 93 (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) 90 (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 89)) (-3400 (((-3 $ "failed") $) 33)) (-2489 ((|#1| $) 78)) (-3909 (((-3 (-407 (-563)) "failed") $) 65 (|has| |#1| (-545)))) (-2239 (((-112) $) 67 (|has| |#1| (-545)))) (-2651 (((-407 (-563)) $) 66 (|has| |#1| (-545)))) (-1691 (($) 55 (|has| |#1| (-368)))) (-3827 (((-112) $) 31)) (-3174 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 69)) (-3793 ((|#1| $) 70)) (-3084 (($ $ $) 61 (|has| |#1| (-846)))) (-1777 (($ $ $) 60 (|has| |#1| (-846)))) (-2240 (($ (-1 |#1| |#1|) $) 80)) (-1476 (((-917) $) 54 (|has| |#1| (-368)))) (-3573 (((-1151) $) 9)) (-2688 (($ $) 64 (|has| |#1| (-363)))) (-2555 (($ (-917)) 53 (|has| |#1| (-368)))) (-4148 ((|#1| $) 75)) (-3775 ((|#1| $) 76)) (-1890 ((|#1| $) 77)) (-3144 ((|#1| $) 71)) (-1307 ((|#1| $) 72)) (-3908 ((|#1| $) 73)) (-2380 ((|#1| $) 74)) (-1694 (((-1113) $) 10)) (-1540 (($ $ (-640 |#1|) (-640 |#1|)) 86 (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) 85 (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) 84 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) 83 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) 82 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) 81 (|has| |#1| (-514 (-1169) |#1|)))) (-2309 (($ $ |#1|) 87 (|has| |#1| (-286 |#1| |#1|)))) (-2220 (((-536) $) 62 (|has| |#1| (-611 (-536))))) (-4339 (($ $) 79)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 38) (($ (-407 (-563))) 92 (|has| |#1| (-1034 (-407 (-563)))))) (-2779 (((-3 $ "failed") $) 63 (|has| |#1| (-145)))) (-1675 (((-767)) 28)) (-2509 ((|#1| $) 68 (|has| |#1| (-1054)))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1778 (((-112) $ $) 58 (|has| |#1| (-846)))) (-1756 (((-112) $ $) 57 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 59 (|has| |#1| (-846)))) (-1744 (((-112) $ $) 56 (|has| |#1| (-846)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-3439 (((-112) $) 41)) (-2130 (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 |#2| "failed") $) 44)) (-2057 (((-563) $) NIL) (((-407 (-563)) $) NIL) ((|#2| $) 42)) (-2327 (((-3 (-407 (-563)) "failed") $) 78)) (-2317 (((-112) $) 72)) (-2306 (((-407 (-563)) $) 76)) (-3975 ((|#2| $) 26)) (-2238 (($ (-1 |#2| |#2|) $) 23)) (-2687 (($ $) 59)) (-2219 (((-536) $) 67)) (-2150 (($ $) 21)) (-1692 (((-858) $) 54) (($ (-563)) 39) (($ |#2|) 37) (($ (-407 (-563))) NIL)) (-3914 (((-767)) 10)) (-1462 ((|#2| $) 71)) (-1718 (((-112) $ $) 29)) (-1743 (((-112) $ $) 69)) (-1825 (($ $) 31) (($ $ $) NIL)) (-1813 (($ $ $) 30)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 35) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 32)))
+(((-792 |#1| |#2|) (-10 -8 (-15 -1743 ((-112) |#1| |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -2687 (|#1| |#1|)) (-15 -2327 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2306 ((-407 (-563)) |#1|)) (-15 -2317 ((-112) |#1|)) (-15 -1462 (|#2| |#1|)) (-15 -3975 (|#2| |#1|)) (-15 -2150 (|#1| |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -1692 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3914 ((-767))) (-15 -1692 (|#1| (-563))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1825 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 -3439 ((-112) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1813 (|#1| |#1| |#1|)) (-15 -1692 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|))) (-793 |#2|) (-172)) (T -792))
+((-3914 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-767)) (-5 *1 (-792 *3 *4)) (-4 *3 (-793 *4)))))
+(-10 -8 (-15 -1743 ((-112) |#1| |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -2687 (|#1| |#1|)) (-15 -2327 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2306 ((-407 (-563)) |#1|)) (-15 -2317 ((-112) |#1|)) (-15 -1462 (|#2| |#1|)) (-15 -3975 (|#2| |#1|)) (-15 -2150 (|#1| |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -1692 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3914 ((-767))) (-15 -1692 (|#1| (-563))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1825 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 -3439 ((-112) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1813 (|#1| |#1| |#1|)) (-15 -1692 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-3750 (((-767)) 52 (|has| |#1| (-368)))) (-2569 (($) 17 T CONST)) (-2130 (((-3 (-563) "failed") $) 94 (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 91 (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 88)) (-2057 (((-563) $) 93 (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) 90 (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 89)) (-3951 (((-3 $ "failed") $) 33)) (-2488 ((|#1| $) 78)) (-2327 (((-3 (-407 (-563)) "failed") $) 65 (|has| |#1| (-545)))) (-2317 (((-112) $) 67 (|has| |#1| (-545)))) (-2306 (((-407 (-563)) $) 66 (|has| |#1| (-545)))) (-1690 (($) 55 (|has| |#1| (-368)))) (-3401 (((-112) $) 31)) (-4150 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 69)) (-3975 ((|#1| $) 70)) (-3088 (($ $ $) 61 (|has| |#1| (-846)))) (-1776 (($ $ $) 60 (|has| |#1| (-846)))) (-2238 (($ (-1 |#1| |#1|) $) 80)) (-3990 (((-917) $) 54 (|has| |#1| (-368)))) (-3854 (((-1151) $) 9)) (-2687 (($ $) 64 (|has| |#1| (-363)))) (-2552 (($ (-917)) 53 (|has| |#1| (-368)))) (-4116 ((|#1| $) 75)) (-4126 ((|#1| $) 76)) (-4138 ((|#1| $) 77)) (-2118 ((|#1| $) 71)) (-2129 ((|#1| $) 72)) (-2140 ((|#1| $) 73)) (-4103 ((|#1| $) 74)) (-1693 (((-1113) $) 10)) (-1542 (($ $ (-640 |#1|) (-640 |#1|)) 86 (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) 85 (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) 84 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) 83 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) 82 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) 81 (|has| |#1| (-514 (-1169) |#1|)))) (-2308 (($ $ |#1|) 87 (|has| |#1| (-286 |#1| |#1|)))) (-2219 (((-536) $) 62 (|has| |#1| (-611 (-536))))) (-2150 (($ $) 79)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 38) (($ (-407 (-563))) 92 (|has| |#1| (-1034 (-407 (-563)))))) (-2047 (((-3 $ "failed") $) 63 (|has| |#1| (-145)))) (-3914 (((-767)) 28)) (-1462 ((|#1| $) 68 (|has| |#1| (-1054)))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1779 (((-112) $ $) 58 (|has| |#1| (-846)))) (-1754 (((-112) $ $) 57 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 59 (|has| |#1| (-846)))) (-1743 (((-112) $ $) 56 (|has| |#1| (-846)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-793 |#1|) (-140) (-172)) (T -793))
-((-4339 (*1 *1 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-2489 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-1890 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-3775 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-4148 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-2380 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-3908 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-1307 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-3144 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-3793 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-3174 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-2509 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)) (-4 *2 (-1054)))) (-2239 (*1 *2 *1) (-12 (-4 *1 (-793 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-112)))) (-2651 (*1 *2 *1) (-12 (-4 *1 (-793 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-407 (-563))))) (-3909 (*1 *2 *1) (|partial| -12 (-4 *1 (-793 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-407 (-563))))) (-2688 (*1 *1 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)) (-4 *2 (-363)))))
-(-13 (-38 |t#1|) (-411 |t#1|) (-338 |t#1|) (-10 -8 (-15 -4339 ($ $)) (-15 -2489 (|t#1| $)) (-15 -1890 (|t#1| $)) (-15 -3775 (|t#1| $)) (-15 -4148 (|t#1| $)) (-15 -2380 (|t#1| $)) (-15 -3908 (|t#1| $)) (-15 -1307 (|t#1| $)) (-15 -3144 (|t#1| $)) (-15 -3793 (|t#1| $)) (-15 -3174 ($ |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1|)) (IF (|has| |t#1| (-368)) (-6 (-368)) |%noBranch|) (IF (|has| |t#1| (-846)) (-6 (-846)) |%noBranch|) (IF (|has| |t#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1054)) (-15 -2509 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-545)) (PROGN (-15 -2239 ((-112) $)) (-15 -2651 ((-407 (-563)) $)) (-15 -3909 ((-3 (-407 (-563)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-363)) (-15 -2688 ($ $)) |%noBranch|)))
+((-2150 (*1 *1 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-2488 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-4138 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-4126 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-4116 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-4103 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-2140 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-2129 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-2118 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-4150 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))) (-1462 (*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)) (-4 *2 (-1054)))) (-2317 (*1 *2 *1) (-12 (-4 *1 (-793 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-112)))) (-2306 (*1 *2 *1) (-12 (-4 *1 (-793 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-407 (-563))))) (-2327 (*1 *2 *1) (|partial| -12 (-4 *1 (-793 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-407 (-563))))) (-2687 (*1 *1 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)) (-4 *2 (-363)))))
+(-13 (-38 |t#1|) (-411 |t#1|) (-338 |t#1|) (-10 -8 (-15 -2150 ($ $)) (-15 -2488 (|t#1| $)) (-15 -4138 (|t#1| $)) (-15 -4126 (|t#1| $)) (-15 -4116 (|t#1| $)) (-15 -4103 (|t#1| $)) (-15 -2140 (|t#1| $)) (-15 -2129 (|t#1| $)) (-15 -2118 (|t#1| $)) (-15 -3975 (|t#1| $)) (-15 -4150 ($ |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1|)) (IF (|has| |t#1| (-368)) (-6 (-368)) |%noBranch|) (IF (|has| |t#1| (-846)) (-6 (-846)) |%noBranch|) (IF (|has| |t#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1054)) (-15 -1462 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-545)) (PROGN (-15 -2317 ((-112) $)) (-15 -2306 ((-407 (-563)) $)) (-15 -2327 ((-3 (-407 (-563)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-363)) (-15 -2687 ($ $)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0=(-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-610 (-858)) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 |#1| $) |has| |#1| (-286 |#1| |#1|)) ((-309 |#1|) |has| |#1| (-309 |#1|)) ((-368) |has| |#1| (-368)) ((-338 |#1|) . T) ((-411 |#1|) . T) ((-514 (-1169) |#1|) |has| |#1| (-514 (-1169) |#1|)) ((-514 |#1| |#1|) |has| |#1| (-309 |#1|)) ((-643 |#1|) . T) ((-643 $) . T) ((-713 |#1|) . T) ((-722) . T) ((-846) |has| |#1| (-846)) ((-1034 #0#) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1051 |#1|) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-2240 ((|#3| (-1 |#4| |#2|) |#1|) 20)))
-(((-794 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2240 (|#3| (-1 |#4| |#2|) |#1|))) (-793 |#2|) (-172) (-793 |#4|) (-172)) (T -794))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-4 *2 (-793 *6)) (-5 *1 (-794 *4 *5 *2 *6)) (-4 *4 (-793 *5)))))
-(-10 -7 (-15 -2240 (|#3| (-1 |#4| |#2|) |#1|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3749 (((-767)) NIL (|has| |#1| (-368)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL) (((-3 (-995 |#1|) "failed") $) 35) (((-3 (-563) "failed") $) NIL (-4032 (|has| (-995 |#1|) (-1034 (-563))) (|has| |#1| (-1034 (-563))))) (((-3 (-407 (-563)) "failed") $) NIL (-4032 (|has| (-995 |#1|) (-1034 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-2058 ((|#1| $) NIL) (((-995 |#1|) $) 33) (((-563) $) NIL (-4032 (|has| (-995 |#1|) (-1034 (-563))) (|has| |#1| (-1034 (-563))))) (((-407 (-563)) $) NIL (-4032 (|has| (-995 |#1|) (-1034 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-3400 (((-3 $ "failed") $) NIL)) (-2489 ((|#1| $) 16)) (-3909 (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-545)))) (-2239 (((-112) $) NIL (|has| |#1| (-545)))) (-2651 (((-407 (-563)) $) NIL (|has| |#1| (-545)))) (-1691 (($) NIL (|has| |#1| (-368)))) (-3827 (((-112) $) NIL)) (-3174 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-995 |#1|) (-995 |#1|)) 29)) (-3793 ((|#1| $) NIL)) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-1476 (((-917) $) NIL (|has| |#1| (-368)))) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL (|has| |#1| (-363)))) (-2555 (($ (-917)) NIL (|has| |#1| (-368)))) (-4148 ((|#1| $) 22)) (-3775 ((|#1| $) 20)) (-1890 ((|#1| $) 18)) (-3144 ((|#1| $) 26)) (-1307 ((|#1| $) 25)) (-3908 ((|#1| $) 24)) (-2380 ((|#1| $) 23)) (-1694 (((-1113) $) NIL)) (-1540 (($ $ (-640 |#1|) (-640 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) NIL (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-514 (-1169) |#1|)))) (-2309 (($ $ |#1|) NIL (|has| |#1| (-286 |#1| |#1|)))) (-2220 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-4339 (($ $) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-995 |#1|)) 30) (($ (-407 (-563))) NIL (-4032 (|has| (-995 |#1|) (-1034 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) NIL)) (-2509 ((|#1| $) NIL (|has| |#1| (-1054)))) (-2241 (($) 8 T CONST)) (-2254 (($) 12 T CONST)) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 40) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-795 |#1|) (-13 (-793 |#1|) (-411 (-995 |#1|)) (-10 -8 (-15 -3174 ($ (-995 |#1|) (-995 |#1|))))) (-172)) (T -795))
-((-3174 (*1 *1 *2 *2) (-12 (-5 *2 (-995 *3)) (-4 *3 (-172)) (-5 *1 (-795 *3)))))
-(-13 (-793 |#1|) (-411 (-995 |#1|)) (-10 -8 (-15 -3174 ($ (-995 |#1|) (-995 |#1|)))))
-((-1677 (((-112) $ $) 7)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 14)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-3591 (((-1031) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 13)) (-1718 (((-112) $ $) 6)))
+((-2238 ((|#3| (-1 |#4| |#2|) |#1|) 20)))
+(((-794 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2238 (|#3| (-1 |#4| |#2|) |#1|))) (-793 |#2|) (-172) (-793 |#4|) (-172)) (T -794))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-4 *2 (-793 *6)) (-5 *1 (-794 *4 *5 *2 *6)) (-4 *4 (-793 *5)))))
+(-10 -7 (-15 -2238 (|#3| (-1 |#4| |#2|) |#1|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-3750 (((-767)) NIL (|has| |#1| (-368)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL) (((-3 (-995 |#1|) "failed") $) 35) (((-3 (-563) "failed") $) NIL (-4034 (|has| (-995 |#1|) (-1034 (-563))) (|has| |#1| (-1034 (-563))))) (((-3 (-407 (-563)) "failed") $) NIL (-4034 (|has| (-995 |#1|) (-1034 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-2057 ((|#1| $) NIL) (((-995 |#1|) $) 33) (((-563) $) NIL (-4034 (|has| (-995 |#1|) (-1034 (-563))) (|has| |#1| (-1034 (-563))))) (((-407 (-563)) $) NIL (-4034 (|has| (-995 |#1|) (-1034 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-3951 (((-3 $ "failed") $) NIL)) (-2488 ((|#1| $) 16)) (-2327 (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-545)))) (-2317 (((-112) $) NIL (|has| |#1| (-545)))) (-2306 (((-407 (-563)) $) NIL (|has| |#1| (-545)))) (-1690 (($) NIL (|has| |#1| (-368)))) (-3401 (((-112) $) NIL)) (-4150 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-995 |#1|) (-995 |#1|)) 29)) (-3975 ((|#1| $) NIL)) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-3990 (((-917) $) NIL (|has| |#1| (-368)))) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL (|has| |#1| (-363)))) (-2552 (($ (-917)) NIL (|has| |#1| (-368)))) (-4116 ((|#1| $) 22)) (-4126 ((|#1| $) 20)) (-4138 ((|#1| $) 18)) (-2118 ((|#1| $) 26)) (-2129 ((|#1| $) 25)) (-2140 ((|#1| $) 24)) (-4103 ((|#1| $) 23)) (-1693 (((-1113) $) NIL)) (-1542 (($ $ (-640 |#1|) (-640 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) NIL (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-514 (-1169) |#1|)))) (-2308 (($ $ |#1|) NIL (|has| |#1| (-286 |#1| |#1|)))) (-2219 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-2150 (($ $) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-995 |#1|)) 30) (($ (-407 (-563))) NIL (-4034 (|has| (-995 |#1|) (-1034 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) NIL)) (-1462 ((|#1| $) NIL (|has| |#1| (-1054)))) (-2239 (($) 8 T CONST)) (-2253 (($) 12 T CONST)) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 40) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-795 |#1|) (-13 (-793 |#1|) (-411 (-995 |#1|)) (-10 -8 (-15 -4150 ($ (-995 |#1|) (-995 |#1|))))) (-172)) (T -795))
+((-4150 (*1 *1 *2 *2) (-12 (-5 *2 (-995 *3)) (-4 *3 (-172)) (-5 *1 (-795 *3)))))
+(-13 (-793 |#1|) (-411 (-995 |#1|)) (-10 -8 (-15 -4150 ($ (-995 |#1|) (-995 |#1|)))))
+((-1677 (((-112) $ $) 7)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 14)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-4160 (((-1031) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 13)) (-1718 (((-112) $ $) 6)))
(((-796) (-140)) (T -796))
-((-1994 (*1 *2 *3 *4) (-12 (-4 *1 (-796)) (-5 *3 (-1057)) (-5 *4 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)))))) (-3591 (*1 *2 *3) (-12 (-4 *1 (-796)) (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-1031)))))
-(-13 (-1093) (-10 -7 (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3591 ((-1031) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))))
+((-2929 (*1 *2 *3 *4) (-12 (-4 *1 (-796)) (-5 *3 (-1057)) (-5 *4 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)))))) (-4160 (*1 *2 *3) (-12 (-4 *1 (-796)) (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-1031)))))
+(-13 (-1093) (-10 -7 (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -4160 ((-1031) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-1995 (((-2 (|:| |particular| |#2|) (|:| -4315 (-640 |#2|))) |#3| |#2| (-1169)) 19)))
-(((-797 |#1| |#2| |#3|) (-10 -7 (-15 -1995 ((-2 (|:| |particular| |#2|) (|:| -4315 (-640 |#2|))) |#3| |#2| (-1169)))) (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)) (-13 (-29 |#1|) (-1193) (-955)) (-651 |#2|)) (T -797))
-((-1995 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1169)) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-4 *4 (-13 (-29 *6) (-1193) (-955))) (-5 *2 (-2 (|:| |particular| *4) (|:| -4315 (-640 *4)))) (-5 *1 (-797 *6 *4 *3)) (-4 *3 (-651 *4)))))
-(-10 -7 (-15 -1995 ((-2 (|:| |particular| |#2|) (|:| -4315 (-640 |#2|))) |#3| |#2| (-1169))))
-((-1793 (((-3 |#2| "failed") |#2| (-114) (-294 |#2|) (-640 |#2|)) 28) (((-3 |#2| "failed") (-294 |#2|) (-114) (-294 |#2|) (-640 |#2|)) 29) (((-3 (-2 (|:| |particular| |#2|) (|:| -4315 (-640 |#2|))) |#2| "failed") |#2| (-114) (-1169)) 17) (((-3 (-2 (|:| |particular| |#2|) (|:| -4315 (-640 |#2|))) |#2| "failed") (-294 |#2|) (-114) (-1169)) 18) (((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4315 (-640 (-1257 |#2|)))) "failed") (-640 |#2|) (-640 (-114)) (-1169)) 24) (((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4315 (-640 (-1257 |#2|)))) "failed") (-640 (-294 |#2|)) (-640 (-114)) (-1169)) 26) (((-3 (-640 (-1257 |#2|)) "failed") (-684 |#2|) (-1169)) 37) (((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4315 (-640 (-1257 |#2|)))) "failed") (-684 |#2|) (-1257 |#2|) (-1169)) 35)))
-(((-798 |#1| |#2|) (-10 -7 (-15 -1793 ((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4315 (-640 (-1257 |#2|)))) "failed") (-684 |#2|) (-1257 |#2|) (-1169))) (-15 -1793 ((-3 (-640 (-1257 |#2|)) "failed") (-684 |#2|) (-1169))) (-15 -1793 ((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4315 (-640 (-1257 |#2|)))) "failed") (-640 (-294 |#2|)) (-640 (-114)) (-1169))) (-15 -1793 ((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4315 (-640 (-1257 |#2|)))) "failed") (-640 |#2|) (-640 (-114)) (-1169))) (-15 -1793 ((-3 (-2 (|:| |particular| |#2|) (|:| -4315 (-640 |#2|))) |#2| "failed") (-294 |#2|) (-114) (-1169))) (-15 -1793 ((-3 (-2 (|:| |particular| |#2|) (|:| -4315 (-640 |#2|))) |#2| "failed") |#2| (-114) (-1169))) (-15 -1793 ((-3 |#2| "failed") (-294 |#2|) (-114) (-294 |#2|) (-640 |#2|))) (-15 -1793 ((-3 |#2| "failed") |#2| (-114) (-294 |#2|) (-640 |#2|)))) (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)) (-13 (-29 |#1|) (-1193) (-955))) (T -798))
-((-1793 (*1 *2 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-294 *2)) (-5 *5 (-640 *2)) (-4 *2 (-13 (-29 *6) (-1193) (-955))) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *1 (-798 *6 *2)))) (-1793 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-294 *2)) (-5 *4 (-114)) (-5 *5 (-640 *2)) (-4 *2 (-13 (-29 *6) (-1193) (-955))) (-5 *1 (-798 *6 *2)) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))))) (-1793 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-114)) (-5 *5 (-1169)) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-3 (-2 (|:| |particular| *3) (|:| -4315 (-640 *3))) *3 "failed")) (-5 *1 (-798 *6 *3)) (-4 *3 (-13 (-29 *6) (-1193) (-955))))) (-1793 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-294 *7)) (-5 *4 (-114)) (-5 *5 (-1169)) (-4 *7 (-13 (-29 *6) (-1193) (-955))) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-3 (-2 (|:| |particular| *7) (|:| -4315 (-640 *7))) *7 "failed")) (-5 *1 (-798 *6 *7)))) (-1793 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-640 *7)) (-5 *4 (-640 (-114))) (-5 *5 (-1169)) (-4 *7 (-13 (-29 *6) (-1193) (-955))) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-2 (|:| |particular| (-1257 *7)) (|:| -4315 (-640 (-1257 *7))))) (-5 *1 (-798 *6 *7)))) (-1793 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-640 (-294 *7))) (-5 *4 (-640 (-114))) (-5 *5 (-1169)) (-4 *7 (-13 (-29 *6) (-1193) (-955))) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-2 (|:| |particular| (-1257 *7)) (|:| -4315 (-640 (-1257 *7))))) (-5 *1 (-798 *6 *7)))) (-1793 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-684 *6)) (-5 *4 (-1169)) (-4 *6 (-13 (-29 *5) (-1193) (-955))) (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-640 (-1257 *6))) (-5 *1 (-798 *5 *6)))) (-1793 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-684 *7)) (-5 *5 (-1169)) (-4 *7 (-13 (-29 *6) (-1193) (-955))) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-2 (|:| |particular| (-1257 *7)) (|:| -4315 (-640 (-1257 *7))))) (-5 *1 (-798 *6 *7)) (-5 *4 (-1257 *7)))))
-(-10 -7 (-15 -1793 ((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4315 (-640 (-1257 |#2|)))) "failed") (-684 |#2|) (-1257 |#2|) (-1169))) (-15 -1793 ((-3 (-640 (-1257 |#2|)) "failed") (-684 |#2|) (-1169))) (-15 -1793 ((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4315 (-640 (-1257 |#2|)))) "failed") (-640 (-294 |#2|)) (-640 (-114)) (-1169))) (-15 -1793 ((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4315 (-640 (-1257 |#2|)))) "failed") (-640 |#2|) (-640 (-114)) (-1169))) (-15 -1793 ((-3 (-2 (|:| |particular| |#2|) (|:| -4315 (-640 |#2|))) |#2| "failed") (-294 |#2|) (-114) (-1169))) (-15 -1793 ((-3 (-2 (|:| |particular| |#2|) (|:| -4315 (-640 |#2|))) |#2| "failed") |#2| (-114) (-1169))) (-15 -1793 ((-3 |#2| "failed") (-294 |#2|) (-114) (-294 |#2|) (-640 |#2|))) (-15 -1793 ((-3 |#2| "failed") |#2| (-114) (-294 |#2|) (-640 |#2|))))
-((-2204 (($) 9)) (-2585 (((-3 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))) "failed") (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 31)) (-1303 (((-640 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $) 28)) (-1812 (($ (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379)))))) 25)) (-2100 (($ (-640 (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))))))) 23)) (-1439 (((-1262)) 12)))
-(((-799) (-10 -8 (-15 -2204 ($)) (-15 -1439 ((-1262))) (-15 -1303 ((-640 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -2100 ($ (-640 (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379)))))))) (-15 -1812 ($ (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))))))) (-15 -2585 ((-3 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))) "failed") (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -799))
-((-2585 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379)))) (-5 *1 (-799)))) (-1812 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379)))))) (-5 *1 (-799)))) (-2100 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))))))) (-5 *1 (-799)))) (-1303 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-5 *1 (-799)))) (-1439 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-799)))) (-2204 (*1 *1) (-5 *1 (-799))))
-(-10 -8 (-15 -2204 ($)) (-15 -1439 ((-1262))) (-15 -1303 ((-640 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -2100 ($ (-640 (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379)))))))) (-15 -1812 ($ (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2557 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))))))) (-15 -2585 ((-3 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))) "failed") (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
-((-1479 ((|#2| |#2| (-1169)) 16)) (-1934 ((|#2| |#2| (-1169)) 51)) (-3397 (((-1 |#2| |#2|) (-1169)) 11)))
-(((-800 |#1| |#2|) (-10 -7 (-15 -1479 (|#2| |#2| (-1169))) (-15 -1934 (|#2| |#2| (-1169))) (-15 -3397 ((-1 |#2| |#2|) (-1169)))) (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)) (-13 (-29 |#1|) (-1193) (-955))) (T -800))
-((-3397 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-1 *5 *5)) (-5 *1 (-800 *4 *5)) (-4 *5 (-13 (-29 *4) (-1193) (-955))))) (-1934 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *1 (-800 *4 *2)) (-4 *2 (-13 (-29 *4) (-1193) (-955))))) (-1479 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *1 (-800 *4 *2)) (-4 *2 (-13 (-29 *4) (-1193) (-955))))))
-(-10 -7 (-15 -1479 (|#2| |#2| (-1169))) (-15 -1934 (|#2| |#2| (-1169))) (-15 -3397 ((-1 |#2| |#2|) (-1169))))
-((-1793 (((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-640 (-379)) (-379) (-379)) 116) (((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-640 (-379)) (-379)) 117) (((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-640 (-379)) (-379)) 119) (((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-379)) 120) (((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-379)) 121) (((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379))) 122) (((-1031) (-804) (-1057)) 108) (((-1031) (-804)) 109)) (-1994 (((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-804) (-1057)) 75) (((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-804)) 77)))
-(((-801) (-10 -7 (-15 -1793 ((-1031) (-804))) (-15 -1793 ((-1031) (-804) (-1057))) (-15 -1793 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)))) (-15 -1793 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-379))) (-15 -1793 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-379))) (-15 -1793 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-640 (-379)) (-379))) (-15 -1793 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-640 (-379)) (-379))) (-15 -1793 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-640 (-379)) (-379) (-379))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-804))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-804) (-1057))))) (T -801))
-((-1994 (*1 *2 *3 *4) (-12 (-5 *3 (-804)) (-5 *4 (-1057)) (-5 *2 (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))))) (-5 *1 (-801)))) (-1994 (*1 *2 *3) (-12 (-5 *3 (-804)) (-5 *2 (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))))) (-5 *1 (-801)))) (-1793 (*1 *2 *3 *4 *4 *5 *6 *5 *4 *4) (-12 (-5 *3 (-1257 (-316 *4))) (-5 *5 (-640 (-379))) (-5 *6 (-316 (-379))) (-5 *4 (-379)) (-5 *2 (-1031)) (-5 *1 (-801)))) (-1793 (*1 *2 *3 *4 *4 *5 *6 *5 *4) (-12 (-5 *3 (-1257 (-316 *4))) (-5 *5 (-640 (-379))) (-5 *6 (-316 (-379))) (-5 *4 (-379)) (-5 *2 (-1031)) (-5 *1 (-801)))) (-1793 (*1 *2 *3 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1257 (-316 (-379)))) (-5 *4 (-379)) (-5 *5 (-640 *4)) (-5 *2 (-1031)) (-5 *1 (-801)))) (-1793 (*1 *2 *3 *4 *4 *5 *6 *4) (-12 (-5 *3 (-1257 (-316 *4))) (-5 *5 (-640 (-379))) (-5 *6 (-316 (-379))) (-5 *4 (-379)) (-5 *2 (-1031)) (-5 *1 (-801)))) (-1793 (*1 *2 *3 *4 *4 *5 *4) (-12 (-5 *3 (-1257 (-316 (-379)))) (-5 *4 (-379)) (-5 *5 (-640 *4)) (-5 *2 (-1031)) (-5 *1 (-801)))) (-1793 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1257 (-316 (-379)))) (-5 *4 (-379)) (-5 *5 (-640 *4)) (-5 *2 (-1031)) (-5 *1 (-801)))) (-1793 (*1 *2 *3 *4) (-12 (-5 *3 (-804)) (-5 *4 (-1057)) (-5 *2 (-1031)) (-5 *1 (-801)))) (-1793 (*1 *2 *3) (-12 (-5 *3 (-804)) (-5 *2 (-1031)) (-5 *1 (-801)))))
-(-10 -7 (-15 -1793 ((-1031) (-804))) (-15 -1793 ((-1031) (-804) (-1057))) (-15 -1793 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)))) (-15 -1793 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-379))) (-15 -1793 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-379))) (-15 -1793 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-640 (-379)) (-379))) (-15 -1793 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-640 (-379)) (-379))) (-15 -1793 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-640 (-379)) (-379) (-379))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-804))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-804) (-1057))))
-((-2643 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -4315 (-640 |#4|))) (-648 |#4|) |#4|) 35)))
-(((-802 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2643 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -4315 (-640 |#4|))) (-648 |#4|) |#4|))) (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|)) (T -802))
-((-2643 (*1 *2 *3 *4) (-12 (-5 *3 (-648 *4)) (-4 *4 (-342 *5 *6 *7)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4)))) (-5 *1 (-802 *5 *6 *7 *4)))))
-(-10 -7 (-15 -2643 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -4315 (-640 |#4|))) (-648 |#4|) |#4|)))
-((-3266 (((-2 (|:| -1420 |#3|) (|:| |rh| (-640 (-407 |#2|)))) |#4| (-640 (-407 |#2|))) 52)) (-2734 (((-640 (-2 (|:| -3408 |#2|) (|:| -2378 |#2|))) |#4| |#2|) 60) (((-640 (-2 (|:| -3408 |#2|) (|:| -2378 |#2|))) |#4|) 59) (((-640 (-2 (|:| -3408 |#2|) (|:| -2378 |#2|))) |#3| |#2|) 20) (((-640 (-2 (|:| -3408 |#2|) (|:| -2378 |#2|))) |#3|) 21)) (-2797 ((|#2| |#4| |#1|) 61) ((|#2| |#3| |#1|) 27)) (-3288 ((|#2| |#3| (-640 (-407 |#2|))) 94) (((-3 |#2| "failed") |#3| (-407 |#2|)) 91)))
-(((-803 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3288 ((-3 |#2| "failed") |#3| (-407 |#2|))) (-15 -3288 (|#2| |#3| (-640 (-407 |#2|)))) (-15 -2734 ((-640 (-2 (|:| -3408 |#2|) (|:| -2378 |#2|))) |#3|)) (-15 -2734 ((-640 (-2 (|:| -3408 |#2|) (|:| -2378 |#2|))) |#3| |#2|)) (-15 -2797 (|#2| |#3| |#1|)) (-15 -2734 ((-640 (-2 (|:| -3408 |#2|) (|:| -2378 |#2|))) |#4|)) (-15 -2734 ((-640 (-2 (|:| -3408 |#2|) (|:| -2378 |#2|))) |#4| |#2|)) (-15 -2797 (|#2| |#4| |#1|)) (-15 -3266 ((-2 (|:| -1420 |#3|) (|:| |rh| (-640 (-407 |#2|)))) |#4| (-640 (-407 |#2|))))) (-13 (-363) (-147) (-1034 (-407 (-563)))) (-1233 |#1|) (-651 |#2|) (-651 (-407 |#2|))) (T -803))
-((-3266 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-5 *2 (-2 (|:| -1420 *7) (|:| |rh| (-640 (-407 *6))))) (-5 *1 (-803 *5 *6 *7 *3)) (-5 *4 (-640 (-407 *6))) (-4 *7 (-651 *6)) (-4 *3 (-651 (-407 *6))))) (-2797 (*1 *2 *3 *4) (-12 (-4 *2 (-1233 *4)) (-5 *1 (-803 *4 *2 *5 *3)) (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *5 (-651 *2)) (-4 *3 (-651 (-407 *2))))) (-2734 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *4 (-1233 *5)) (-5 *2 (-640 (-2 (|:| -3408 *4) (|:| -2378 *4)))) (-5 *1 (-803 *5 *4 *6 *3)) (-4 *6 (-651 *4)) (-4 *3 (-651 (-407 *4))))) (-2734 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4)) (-5 *2 (-640 (-2 (|:| -3408 *5) (|:| -2378 *5)))) (-5 *1 (-803 *4 *5 *6 *3)) (-4 *6 (-651 *5)) (-4 *3 (-651 (-407 *5))))) (-2797 (*1 *2 *3 *4) (-12 (-4 *2 (-1233 *4)) (-5 *1 (-803 *4 *2 *3 *5)) (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-651 *2)) (-4 *5 (-651 (-407 *2))))) (-2734 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *4 (-1233 *5)) (-5 *2 (-640 (-2 (|:| -3408 *4) (|:| -2378 *4)))) (-5 *1 (-803 *5 *4 *3 *6)) (-4 *3 (-651 *4)) (-4 *6 (-651 (-407 *4))))) (-2734 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4)) (-5 *2 (-640 (-2 (|:| -3408 *5) (|:| -2378 *5)))) (-5 *1 (-803 *4 *5 *3 *6)) (-4 *3 (-651 *5)) (-4 *6 (-651 (-407 *5))))) (-3288 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-407 *2))) (-4 *2 (-1233 *5)) (-5 *1 (-803 *5 *2 *3 *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-651 *2)) (-4 *6 (-651 (-407 *2))))) (-3288 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-407 *2)) (-4 *2 (-1233 *5)) (-5 *1 (-803 *5 *2 *3 *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-651 *2)) (-4 *6 (-651 *4)))))
-(-10 -7 (-15 -3288 ((-3 |#2| "failed") |#3| (-407 |#2|))) (-15 -3288 (|#2| |#3| (-640 (-407 |#2|)))) (-15 -2734 ((-640 (-2 (|:| -3408 |#2|) (|:| -2378 |#2|))) |#3|)) (-15 -2734 ((-640 (-2 (|:| -3408 |#2|) (|:| -2378 |#2|))) |#3| |#2|)) (-15 -2797 (|#2| |#3| |#1|)) (-15 -2734 ((-640 (-2 (|:| -3408 |#2|) (|:| -2378 |#2|))) |#4|)) (-15 -2734 ((-640 (-2 (|:| -3408 |#2|) (|:| -2378 |#2|))) |#4| |#2|)) (-15 -2797 (|#2| |#4| |#1|)) (-15 -3266 ((-2 (|:| -1420 |#3|) (|:| |rh| (-640 (-407 |#2|)))) |#4| (-640 (-407 |#2|)))))
-((-1677 (((-112) $ $) NIL)) (-2058 (((-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) $) 13)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 15) (($ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 12)) (-1718 (((-112) $ $) NIL)))
-(((-804) (-13 (-1093) (-10 -8 (-15 -1693 ($ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2058 ((-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) $))))) (T -804))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-804)))) (-2058 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-804)))))
-(-13 (-1093) (-10 -8 (-15 -1693 ($ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2058 ((-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) $))))
-((-4277 (((-640 (-2 (|:| |frac| (-407 |#2|)) (|:| -1420 |#3|))) |#3| (-1 (-640 |#2|) |#2| (-1165 |#2|)) (-1 (-418 |#2|) |#2|)) 117)) (-2394 (((-640 (-2 (|:| |poly| |#2|) (|:| -1420 |#3|))) |#3| (-1 (-640 |#1|) |#2|)) 46)) (-2740 (((-640 (-2 (|:| |deg| (-767)) (|:| -1420 |#2|))) |#3|) 94)) (-3000 ((|#2| |#3|) 37)) (-1296 (((-640 (-2 (|:| -2669 |#1|) (|:| -1420 |#3|))) |#3| (-1 (-640 |#1|) |#2|)) 81)) (-1440 ((|#3| |#3| (-407 |#2|)) 62) ((|#3| |#3| |#2|) 78)))
-(((-805 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3000 (|#2| |#3|)) (-15 -2740 ((-640 (-2 (|:| |deg| (-767)) (|:| -1420 |#2|))) |#3|)) (-15 -1296 ((-640 (-2 (|:| -2669 |#1|) (|:| -1420 |#3|))) |#3| (-1 (-640 |#1|) |#2|))) (-15 -2394 ((-640 (-2 (|:| |poly| |#2|) (|:| -1420 |#3|))) |#3| (-1 (-640 |#1|) |#2|))) (-15 -4277 ((-640 (-2 (|:| |frac| (-407 |#2|)) (|:| -1420 |#3|))) |#3| (-1 (-640 |#2|) |#2| (-1165 |#2|)) (-1 (-418 |#2|) |#2|))) (-15 -1440 (|#3| |#3| |#2|)) (-15 -1440 (|#3| |#3| (-407 |#2|)))) (-13 (-363) (-147) (-1034 (-407 (-563)))) (-1233 |#1|) (-651 |#2|) (-651 (-407 |#2|))) (T -805))
-((-1440 (*1 *2 *2 *3) (-12 (-5 *3 (-407 *5)) (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4)) (-5 *1 (-805 *4 *5 *2 *6)) (-4 *2 (-651 *5)) (-4 *6 (-651 *3)))) (-1440 (*1 *2 *2 *3) (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-1233 *4)) (-5 *1 (-805 *4 *3 *2 *5)) (-4 *2 (-651 *3)) (-4 *5 (-651 (-407 *3))))) (-4277 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 (-640 *7) *7 (-1165 *7))) (-5 *5 (-1 (-418 *7) *7)) (-4 *7 (-1233 *6)) (-4 *6 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-5 *2 (-640 (-2 (|:| |frac| (-407 *7)) (|:| -1420 *3)))) (-5 *1 (-805 *6 *7 *3 *8)) (-4 *3 (-651 *7)) (-4 *8 (-651 (-407 *7))))) (-2394 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-640 *5) *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-5 *2 (-640 (-2 (|:| |poly| *6) (|:| -1420 *3)))) (-5 *1 (-805 *5 *6 *3 *7)) (-4 *3 (-651 *6)) (-4 *7 (-651 (-407 *6))))) (-1296 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-640 *5) *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-5 *2 (-640 (-2 (|:| -2669 *5) (|:| -1420 *3)))) (-5 *1 (-805 *5 *6 *3 *7)) (-4 *3 (-651 *6)) (-4 *7 (-651 (-407 *6))))) (-2740 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4)) (-5 *2 (-640 (-2 (|:| |deg| (-767)) (|:| -1420 *5)))) (-5 *1 (-805 *4 *5 *3 *6)) (-4 *3 (-651 *5)) (-4 *6 (-651 (-407 *5))))) (-3000 (*1 *2 *3) (-12 (-4 *2 (-1233 *4)) (-5 *1 (-805 *4 *2 *3 *5)) (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-651 *2)) (-4 *5 (-651 (-407 *2))))))
-(-10 -7 (-15 -3000 (|#2| |#3|)) (-15 -2740 ((-640 (-2 (|:| |deg| (-767)) (|:| -1420 |#2|))) |#3|)) (-15 -1296 ((-640 (-2 (|:| -2669 |#1|) (|:| -1420 |#3|))) |#3| (-1 (-640 |#1|) |#2|))) (-15 -2394 ((-640 (-2 (|:| |poly| |#2|) (|:| -1420 |#3|))) |#3| (-1 (-640 |#1|) |#2|))) (-15 -4277 ((-640 (-2 (|:| |frac| (-407 |#2|)) (|:| -1420 |#3|))) |#3| (-1 (-640 |#2|) |#2| (-1165 |#2|)) (-1 (-418 |#2|) |#2|))) (-15 -1440 (|#3| |#3| |#2|)) (-15 -1440 (|#3| |#3| (-407 |#2|))))
-((-2653 (((-2 (|:| -4315 (-640 (-407 |#2|))) (|:| -2835 (-684 |#1|))) (-649 |#2| (-407 |#2|)) (-640 (-407 |#2|))) 122) (((-2 (|:| |particular| (-3 (-407 |#2|) "failed")) (|:| -4315 (-640 (-407 |#2|)))) (-649 |#2| (-407 |#2|)) (-407 |#2|)) 121) (((-2 (|:| -4315 (-640 (-407 |#2|))) (|:| -2835 (-684 |#1|))) (-648 (-407 |#2|)) (-640 (-407 |#2|))) 116) (((-2 (|:| |particular| (-3 (-407 |#2|) "failed")) (|:| -4315 (-640 (-407 |#2|)))) (-648 (-407 |#2|)) (-407 |#2|)) 114)) (-3185 ((|#2| (-649 |#2| (-407 |#2|))) 80) ((|#2| (-648 (-407 |#2|))) 83)))
-(((-806 |#1| |#2|) (-10 -7 (-15 -2653 ((-2 (|:| |particular| (-3 (-407 |#2|) "failed")) (|:| -4315 (-640 (-407 |#2|)))) (-648 (-407 |#2|)) (-407 |#2|))) (-15 -2653 ((-2 (|:| -4315 (-640 (-407 |#2|))) (|:| -2835 (-684 |#1|))) (-648 (-407 |#2|)) (-640 (-407 |#2|)))) (-15 -2653 ((-2 (|:| |particular| (-3 (-407 |#2|) "failed")) (|:| -4315 (-640 (-407 |#2|)))) (-649 |#2| (-407 |#2|)) (-407 |#2|))) (-15 -2653 ((-2 (|:| -4315 (-640 (-407 |#2|))) (|:| -2835 (-684 |#1|))) (-649 |#2| (-407 |#2|)) (-640 (-407 |#2|)))) (-15 -3185 (|#2| (-648 (-407 |#2|)))) (-15 -3185 (|#2| (-649 |#2| (-407 |#2|))))) (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))) (-1233 |#1|)) (T -806))
-((-3185 (*1 *2 *3) (-12 (-5 *3 (-649 *2 (-407 *2))) (-4 *2 (-1233 *4)) (-5 *1 (-806 *4 *2)) (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))))) (-3185 (*1 *2 *3) (-12 (-5 *3 (-648 (-407 *2))) (-4 *2 (-1233 *4)) (-5 *1 (-806 *4 *2)) (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))))) (-2653 (*1 *2 *3 *4) (-12 (-5 *3 (-649 *6 (-407 *6))) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-2 (|:| -4315 (-640 (-407 *6))) (|:| -2835 (-684 *5)))) (-5 *1 (-806 *5 *6)) (-5 *4 (-640 (-407 *6))))) (-2653 (*1 *2 *3 *4) (-12 (-5 *3 (-649 *6 (-407 *6))) (-5 *4 (-407 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4)))) (-5 *1 (-806 *5 *6)))) (-2653 (*1 *2 *3 *4) (-12 (-5 *3 (-648 (-407 *6))) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-2 (|:| -4315 (-640 (-407 *6))) (|:| -2835 (-684 *5)))) (-5 *1 (-806 *5 *6)) (-5 *4 (-640 (-407 *6))))) (-2653 (*1 *2 *3 *4) (-12 (-5 *3 (-648 (-407 *6))) (-5 *4 (-407 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4)))) (-5 *1 (-806 *5 *6)))))
-(-10 -7 (-15 -2653 ((-2 (|:| |particular| (-3 (-407 |#2|) "failed")) (|:| -4315 (-640 (-407 |#2|)))) (-648 (-407 |#2|)) (-407 |#2|))) (-15 -2653 ((-2 (|:| -4315 (-640 (-407 |#2|))) (|:| -2835 (-684 |#1|))) (-648 (-407 |#2|)) (-640 (-407 |#2|)))) (-15 -2653 ((-2 (|:| |particular| (-3 (-407 |#2|) "failed")) (|:| -4315 (-640 (-407 |#2|)))) (-649 |#2| (-407 |#2|)) (-407 |#2|))) (-15 -2653 ((-2 (|:| -4315 (-640 (-407 |#2|))) (|:| -2835 (-684 |#1|))) (-649 |#2| (-407 |#2|)) (-640 (-407 |#2|)))) (-15 -3185 (|#2| (-648 (-407 |#2|)))) (-15 -3185 (|#2| (-649 |#2| (-407 |#2|)))))
-((-3297 (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#1|))) |#5| |#4|) 48)))
-(((-807 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3297 ((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#1|))) |#5| |#4|))) (-363) (-651 |#1|) (-1233 |#1|) (-720 |#1| |#3|) (-651 |#4|)) (T -807))
-((-3297 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-4 *7 (-1233 *5)) (-4 *4 (-720 *5 *7)) (-5 *2 (-2 (|:| -2835 (-684 *6)) (|:| |vec| (-1257 *5)))) (-5 *1 (-807 *5 *6 *7 *4 *3)) (-4 *6 (-651 *5)) (-4 *3 (-651 *4)))))
-(-10 -7 (-15 -3297 ((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#1|))) |#5| |#4|)))
-((-4277 (((-640 (-2 (|:| |frac| (-407 |#2|)) (|:| -1420 (-649 |#2| (-407 |#2|))))) (-649 |#2| (-407 |#2|)) (-1 (-418 |#2|) |#2|)) 47)) (-2297 (((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-418 |#2|) |#2|)) 140 (|has| |#1| (-27))) (((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|))) 137 (|has| |#1| (-27))) (((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-418 |#2|) |#2|)) 141 (|has| |#1| (-27))) (((-640 (-407 |#2|)) (-648 (-407 |#2|))) 139 (|has| |#1| (-27))) (((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|) (-1 (-418 |#2|) |#2|)) 38) (((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|)) 39) (((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|) (-1 (-418 |#2|) |#2|)) 36) (((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|)) 37)) (-2394 (((-640 (-2 (|:| |poly| |#2|) (|:| -1420 (-649 |#2| (-407 |#2|))))) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|)) 83)))
-(((-808 |#1| |#2|) (-10 -7 (-15 -2297 ((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (-15 -2297 ((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|) (-1 (-418 |#2|) |#2|))) (-15 -2297 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (-15 -2297 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|) (-1 (-418 |#2|) |#2|))) (-15 -4277 ((-640 (-2 (|:| |frac| (-407 |#2|)) (|:| -1420 (-649 |#2| (-407 |#2|))))) (-649 |#2| (-407 |#2|)) (-1 (-418 |#2|) |#2|))) (-15 -2394 ((-640 (-2 (|:| |poly| |#2|) (|:| -1420 (-649 |#2| (-407 |#2|))))) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2297 ((-640 (-407 |#2|)) (-648 (-407 |#2|)))) (-15 -2297 ((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-418 |#2|) |#2|))) (-15 -2297 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)))) (-15 -2297 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-418 |#2|) |#2|)))) |%noBranch|)) (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))) (-1233 |#1|)) (T -808))
-((-2297 (*1 *2 *3 *4) (-12 (-5 *3 (-649 *6 (-407 *6))) (-5 *4 (-1 (-418 *6) *6)) (-4 *6 (-1233 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6)))) (-2297 (*1 *2 *3) (-12 (-5 *3 (-649 *5 (-407 *5))) (-4 *5 (-1233 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-640 (-407 *5))) (-5 *1 (-808 *4 *5)))) (-2297 (*1 *2 *3 *4) (-12 (-5 *3 (-648 (-407 *6))) (-5 *4 (-1 (-418 *6) *6)) (-4 *6 (-1233 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6)))) (-2297 (*1 *2 *3) (-12 (-5 *3 (-648 (-407 *5))) (-4 *5 (-1233 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-640 (-407 *5))) (-5 *1 (-808 *4 *5)))) (-2394 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-640 *5) *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-5 *2 (-640 (-2 (|:| |poly| *6) (|:| -1420 (-649 *6 (-407 *6)))))) (-5 *1 (-808 *5 *6)) (-5 *3 (-649 *6 (-407 *6))))) (-4277 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-418 *6) *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-640 (-2 (|:| |frac| (-407 *6)) (|:| -1420 (-649 *6 (-407 *6)))))) (-5 *1 (-808 *5 *6)) (-5 *3 (-649 *6 (-407 *6))))) (-2297 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-649 *7 (-407 *7))) (-5 *4 (-1 (-640 *6) *7)) (-5 *5 (-1 (-418 *7) *7)) (-4 *6 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *7 (-1233 *6)) (-5 *2 (-640 (-407 *7))) (-5 *1 (-808 *6 *7)))) (-2297 (*1 *2 *3 *4) (-12 (-5 *3 (-649 *6 (-407 *6))) (-5 *4 (-1 (-640 *5) *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6)))) (-2297 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-648 (-407 *7))) (-5 *4 (-1 (-640 *6) *7)) (-5 *5 (-1 (-418 *7) *7)) (-4 *6 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *7 (-1233 *6)) (-5 *2 (-640 (-407 *7))) (-5 *1 (-808 *6 *7)))) (-2297 (*1 *2 *3 *4) (-12 (-5 *3 (-648 (-407 *6))) (-5 *4 (-1 (-640 *5) *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6)))))
-(-10 -7 (-15 -2297 ((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (-15 -2297 ((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|) (-1 (-418 |#2|) |#2|))) (-15 -2297 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (-15 -2297 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|) (-1 (-418 |#2|) |#2|))) (-15 -4277 ((-640 (-2 (|:| |frac| (-407 |#2|)) (|:| -1420 (-649 |#2| (-407 |#2|))))) (-649 |#2| (-407 |#2|)) (-1 (-418 |#2|) |#2|))) (-15 -2394 ((-640 (-2 (|:| |poly| |#2|) (|:| -1420 (-649 |#2| (-407 |#2|))))) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2297 ((-640 (-407 |#2|)) (-648 (-407 |#2|)))) (-15 -2297 ((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-418 |#2|) |#2|))) (-15 -2297 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)))) (-15 -2297 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-418 |#2|) |#2|)))) |%noBranch|))
-((-3188 (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#1|))) (-684 |#2|) (-1257 |#1|)) 85) (((-2 (|:| A (-684 |#1|)) (|:| |eqs| (-640 (-2 (|:| C (-684 |#1|)) (|:| |g| (-1257 |#1|)) (|:| -1420 |#2|) (|:| |rh| |#1|))))) (-684 |#1|) (-1257 |#1|)) 15)) (-4062 (((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4315 (-640 (-1257 |#1|)))) (-684 |#2|) (-1257 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -4315 (-640 |#1|))) |#2| |#1|)) 92)) (-1793 (((-3 (-2 (|:| |particular| (-1257 |#1|)) (|:| -4315 (-684 |#1|))) "failed") (-684 |#1|) (-1257 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -4315 (-640 |#1|))) "failed") |#2| |#1|)) 43)))
-(((-809 |#1| |#2|) (-10 -7 (-15 -3188 ((-2 (|:| A (-684 |#1|)) (|:| |eqs| (-640 (-2 (|:| C (-684 |#1|)) (|:| |g| (-1257 |#1|)) (|:| -1420 |#2|) (|:| |rh| |#1|))))) (-684 |#1|) (-1257 |#1|))) (-15 -3188 ((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#1|))) (-684 |#2|) (-1257 |#1|))) (-15 -1793 ((-3 (-2 (|:| |particular| (-1257 |#1|)) (|:| -4315 (-684 |#1|))) "failed") (-684 |#1|) (-1257 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -4315 (-640 |#1|))) "failed") |#2| |#1|))) (-15 -4062 ((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4315 (-640 (-1257 |#1|)))) (-684 |#2|) (-1257 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -4315 (-640 |#1|))) |#2| |#1|)))) (-363) (-651 |#1|)) (T -809))
-((-4062 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-684 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -4315 (-640 *6))) *7 *6)) (-4 *6 (-363)) (-4 *7 (-651 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1257 *6) "failed")) (|:| -4315 (-640 (-1257 *6))))) (-5 *1 (-809 *6 *7)) (-5 *4 (-1257 *6)))) (-1793 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -4315 (-640 *6))) "failed") *7 *6)) (-4 *6 (-363)) (-4 *7 (-651 *6)) (-5 *2 (-2 (|:| |particular| (-1257 *6)) (|:| -4315 (-684 *6)))) (-5 *1 (-809 *6 *7)) (-5 *3 (-684 *6)) (-5 *4 (-1257 *6)))) (-3188 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-4 *6 (-651 *5)) (-5 *2 (-2 (|:| -2835 (-684 *6)) (|:| |vec| (-1257 *5)))) (-5 *1 (-809 *5 *6)) (-5 *3 (-684 *6)) (-5 *4 (-1257 *5)))) (-3188 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-5 *2 (-2 (|:| A (-684 *5)) (|:| |eqs| (-640 (-2 (|:| C (-684 *5)) (|:| |g| (-1257 *5)) (|:| -1420 *6) (|:| |rh| *5)))))) (-5 *1 (-809 *5 *6)) (-5 *3 (-684 *5)) (-5 *4 (-1257 *5)) (-4 *6 (-651 *5)))))
-(-10 -7 (-15 -3188 ((-2 (|:| A (-684 |#1|)) (|:| |eqs| (-640 (-2 (|:| C (-684 |#1|)) (|:| |g| (-1257 |#1|)) (|:| -1420 |#2|) (|:| |rh| |#1|))))) (-684 |#1|) (-1257 |#1|))) (-15 -3188 ((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#1|))) (-684 |#2|) (-1257 |#1|))) (-15 -1793 ((-3 (-2 (|:| |particular| (-1257 |#1|)) (|:| -4315 (-684 |#1|))) "failed") (-684 |#1|) (-1257 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -4315 (-640 |#1|))) "failed") |#2| |#1|))) (-15 -4062 ((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4315 (-640 (-1257 |#1|)))) (-684 |#2|) (-1257 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -4315 (-640 |#1|))) |#2| |#1|))))
-((-3960 (((-684 |#1|) (-640 |#1|) (-767)) 13) (((-684 |#1|) (-640 |#1|)) 14)) (-3816 (((-3 (-1257 |#1|) "failed") |#2| |#1| (-640 |#1|)) 34)) (-2635 (((-3 |#1| "failed") |#2| |#1| (-640 |#1|) (-1 |#1| |#1|)) 42)))
-(((-810 |#1| |#2|) (-10 -7 (-15 -3960 ((-684 |#1|) (-640 |#1|))) (-15 -3960 ((-684 |#1|) (-640 |#1|) (-767))) (-15 -3816 ((-3 (-1257 |#1|) "failed") |#2| |#1| (-640 |#1|))) (-15 -2635 ((-3 |#1| "failed") |#2| |#1| (-640 |#1|) (-1 |#1| |#1|)))) (-363) (-651 |#1|)) (T -810))
-((-2635 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *4 (-640 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-363)) (-5 *1 (-810 *2 *3)) (-4 *3 (-651 *2)))) (-3816 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-640 *4)) (-4 *4 (-363)) (-5 *2 (-1257 *4)) (-5 *1 (-810 *4 *3)) (-4 *3 (-651 *4)))) (-3960 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *5)) (-5 *4 (-767)) (-4 *5 (-363)) (-5 *2 (-684 *5)) (-5 *1 (-810 *5 *6)) (-4 *6 (-651 *5)))) (-3960 (*1 *2 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-363)) (-5 *2 (-684 *4)) (-5 *1 (-810 *4 *5)) (-4 *5 (-651 *4)))))
-(-10 -7 (-15 -3960 ((-684 |#1|) (-640 |#1|))) (-15 -3960 ((-684 |#1|) (-640 |#1|) (-767))) (-15 -3816 ((-3 (-1257 |#1|) "failed") |#2| |#1| (-640 |#1|))) (-15 -2635 ((-3 |#1| "failed") |#2| |#1| (-640 |#1|) (-1 |#1| |#1|))))
-((-1677 (((-112) $ $) NIL (|has| |#2| (-1093)))) (-3411 (((-112) $) NIL (|has| |#2| (-131)))) (-1946 (($ (-917)) NIL (|has| |#2| (-1045)))) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-1901 (($ $ $) NIL (|has| |#2| (-789)))) (-1495 (((-3 $ "failed") $ $) NIL (|has| |#2| (-131)))) (-2759 (((-112) $ (-767)) NIL)) (-3749 (((-767)) NIL (|has| |#2| (-368)))) (-1857 (((-563) $) NIL (|has| |#2| (-844)))) (-1849 ((|#2| $ (-563) |#2|) NIL (|has| $ (-6 -4408)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1093)))) (-2058 (((-563) $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-407 (-563)) $) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) ((|#2| $) NIL (|has| |#2| (-1093)))) (-2950 (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL (|has| |#2| (-1045))) (((-684 |#2|) (-684 $)) NIL (|has| |#2| (-1045)))) (-3400 (((-3 $ "failed") $) NIL (|has| |#2| (-722)))) (-1691 (($) NIL (|has| |#2| (-368)))) (-4355 ((|#2| $ (-563) |#2|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#2| $ (-563)) NIL)) (-3101 (((-112) $) NIL (|has| |#2| (-844)))) (-2659 (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-3827 (((-112) $) NIL (|has| |#2| (-722)))) (-1419 (((-112) $) NIL (|has| |#2| (-844)))) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) NIL (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-2259 (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-4345 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#2| |#2|) $) NIL)) (-1476 (((-917) $) NIL (|has| |#2| (-368)))) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#2| (-1093)))) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-2555 (($ (-917)) NIL (|has| |#2| (-368)))) (-1694 (((-1113) $) NIL (|has| |#2| (-1093)))) (-3781 ((|#2| $) NIL (|has| (-563) (-846)))) (-2358 (($ $ |#2|) NIL (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-2836 (((-640 |#2|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#2| $ (-563) |#2|) NIL) ((|#2| $ (-563)) NIL)) (-4092 ((|#2| $ $) NIL (|has| |#2| (-1045)))) (-2510 (($ (-1257 |#2|)) NIL)) (-3533 (((-134)) NIL (|has| |#2| (-363)))) (-4202 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1045)))) (-1709 (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-1872 (($ $) NIL)) (-1693 (((-1257 |#2|) $) NIL) (($ (-563)) NIL (-4032 (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-1045)))) (($ (-407 (-563))) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (($ |#2|) NIL (|has| |#2| (-1093))) (((-858) $) NIL (|has| |#2| (-610 (-858))))) (-1675 (((-767)) NIL (|has| |#2| (-1045)))) (-4383 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-2509 (($ $) NIL (|has| |#2| (-844)))) (-2241 (($) NIL (|has| |#2| (-131)) CONST)) (-2254 (($) NIL (|has| |#2| (-722)) CONST)) (-3209 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1045)))) (-1778 (((-112) $ $) NIL (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1756 (((-112) $ $) NIL (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1718 (((-112) $ $) NIL (|has| |#2| (-1093)))) (-1768 (((-112) $ $) NIL (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1744 (((-112) $ $) 11 (-4032 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1837 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1826 (($ $ $) NIL (|has| |#2| (-1045))) (($ $) NIL (|has| |#2| (-1045)))) (-1814 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-767)) NIL (|has| |#2| (-722))) (($ $ (-917)) NIL (|has| |#2| (-722)))) (* (($ (-563) $) NIL (|has| |#2| (-1045))) (($ $ $) NIL (|has| |#2| (-722))) (($ $ |#2|) NIL (|has| |#2| (-722))) (($ |#2| $) NIL (|has| |#2| (-722))) (($ (-767) $) NIL (|has| |#2| (-131))) (($ (-917) $) NIL (|has| |#2| (-25)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
+((-4169 (((-2 (|:| |particular| |#2|) (|:| -4013 (-640 |#2|))) |#3| |#2| (-1169)) 19)))
+(((-797 |#1| |#2| |#3|) (-10 -7 (-15 -4169 ((-2 (|:| |particular| |#2|) (|:| -4013 (-640 |#2|))) |#3| |#2| (-1169)))) (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)) (-13 (-29 |#1|) (-1193) (-955)) (-651 |#2|)) (T -797))
+((-4169 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1169)) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-4 *4 (-13 (-29 *6) (-1193) (-955))) (-5 *2 (-2 (|:| |particular| *4) (|:| -4013 (-640 *4)))) (-5 *1 (-797 *6 *4 *3)) (-4 *3 (-651 *4)))))
+(-10 -7 (-15 -4169 ((-2 (|:| |particular| |#2|) (|:| -4013 (-640 |#2|))) |#3| |#2| (-1169))))
+((-3510 (((-3 |#2| "failed") |#2| (-114) (-294 |#2|) (-640 |#2|)) 28) (((-3 |#2| "failed") (-294 |#2|) (-114) (-294 |#2|) (-640 |#2|)) 29) (((-3 (-2 (|:| |particular| |#2|) (|:| -4013 (-640 |#2|))) |#2| "failed") |#2| (-114) (-1169)) 17) (((-3 (-2 (|:| |particular| |#2|) (|:| -4013 (-640 |#2|))) |#2| "failed") (-294 |#2|) (-114) (-1169)) 18) (((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4013 (-640 (-1257 |#2|)))) "failed") (-640 |#2|) (-640 (-114)) (-1169)) 24) (((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4013 (-640 (-1257 |#2|)))) "failed") (-640 (-294 |#2|)) (-640 (-114)) (-1169)) 26) (((-3 (-640 (-1257 |#2|)) "failed") (-684 |#2|) (-1169)) 37) (((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4013 (-640 (-1257 |#2|)))) "failed") (-684 |#2|) (-1257 |#2|) (-1169)) 35)))
+(((-798 |#1| |#2|) (-10 -7 (-15 -3510 ((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4013 (-640 (-1257 |#2|)))) "failed") (-684 |#2|) (-1257 |#2|) (-1169))) (-15 -3510 ((-3 (-640 (-1257 |#2|)) "failed") (-684 |#2|) (-1169))) (-15 -3510 ((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4013 (-640 (-1257 |#2|)))) "failed") (-640 (-294 |#2|)) (-640 (-114)) (-1169))) (-15 -3510 ((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4013 (-640 (-1257 |#2|)))) "failed") (-640 |#2|) (-640 (-114)) (-1169))) (-15 -3510 ((-3 (-2 (|:| |particular| |#2|) (|:| -4013 (-640 |#2|))) |#2| "failed") (-294 |#2|) (-114) (-1169))) (-15 -3510 ((-3 (-2 (|:| |particular| |#2|) (|:| -4013 (-640 |#2|))) |#2| "failed") |#2| (-114) (-1169))) (-15 -3510 ((-3 |#2| "failed") (-294 |#2|) (-114) (-294 |#2|) (-640 |#2|))) (-15 -3510 ((-3 |#2| "failed") |#2| (-114) (-294 |#2|) (-640 |#2|)))) (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)) (-13 (-29 |#1|) (-1193) (-955))) (T -798))
+((-3510 (*1 *2 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-294 *2)) (-5 *5 (-640 *2)) (-4 *2 (-13 (-29 *6) (-1193) (-955))) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *1 (-798 *6 *2)))) (-3510 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-294 *2)) (-5 *4 (-114)) (-5 *5 (-640 *2)) (-4 *2 (-13 (-29 *6) (-1193) (-955))) (-5 *1 (-798 *6 *2)) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))))) (-3510 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-114)) (-5 *5 (-1169)) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-3 (-2 (|:| |particular| *3) (|:| -4013 (-640 *3))) *3 "failed")) (-5 *1 (-798 *6 *3)) (-4 *3 (-13 (-29 *6) (-1193) (-955))))) (-3510 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-294 *7)) (-5 *4 (-114)) (-5 *5 (-1169)) (-4 *7 (-13 (-29 *6) (-1193) (-955))) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-3 (-2 (|:| |particular| *7) (|:| -4013 (-640 *7))) *7 "failed")) (-5 *1 (-798 *6 *7)))) (-3510 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-640 *7)) (-5 *4 (-640 (-114))) (-5 *5 (-1169)) (-4 *7 (-13 (-29 *6) (-1193) (-955))) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-2 (|:| |particular| (-1257 *7)) (|:| -4013 (-640 (-1257 *7))))) (-5 *1 (-798 *6 *7)))) (-3510 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-640 (-294 *7))) (-5 *4 (-640 (-114))) (-5 *5 (-1169)) (-4 *7 (-13 (-29 *6) (-1193) (-955))) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-2 (|:| |particular| (-1257 *7)) (|:| -4013 (-640 (-1257 *7))))) (-5 *1 (-798 *6 *7)))) (-3510 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-684 *6)) (-5 *4 (-1169)) (-4 *6 (-13 (-29 *5) (-1193) (-955))) (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-640 (-1257 *6))) (-5 *1 (-798 *5 *6)))) (-3510 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-684 *7)) (-5 *5 (-1169)) (-4 *7 (-13 (-29 *6) (-1193) (-955))) (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-2 (|:| |particular| (-1257 *7)) (|:| -4013 (-640 (-1257 *7))))) (-5 *1 (-798 *6 *7)) (-5 *4 (-1257 *7)))))
+(-10 -7 (-15 -3510 ((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4013 (-640 (-1257 |#2|)))) "failed") (-684 |#2|) (-1257 |#2|) (-1169))) (-15 -3510 ((-3 (-640 (-1257 |#2|)) "failed") (-684 |#2|) (-1169))) (-15 -3510 ((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4013 (-640 (-1257 |#2|)))) "failed") (-640 (-294 |#2|)) (-640 (-114)) (-1169))) (-15 -3510 ((-3 (-2 (|:| |particular| (-1257 |#2|)) (|:| -4013 (-640 (-1257 |#2|)))) "failed") (-640 |#2|) (-640 (-114)) (-1169))) (-15 -3510 ((-3 (-2 (|:| |particular| |#2|) (|:| -4013 (-640 |#2|))) |#2| "failed") (-294 |#2|) (-114) (-1169))) (-15 -3510 ((-3 (-2 (|:| |particular| |#2|) (|:| -4013 (-640 |#2|))) |#2| "failed") |#2| (-114) (-1169))) (-15 -3510 ((-3 |#2| "failed") (-294 |#2|) (-114) (-294 |#2|) (-640 |#2|))) (-15 -3510 ((-3 |#2| "failed") |#2| (-114) (-294 |#2|) (-640 |#2|))))
+((-4178 (($) 9)) (-4210 (((-3 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))) "failed") (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 31)) (-1304 (((-640 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $) 28)) (-3867 (($ (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379)))))) 25)) (-4199 (($ (-640 (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))))))) 23)) (-4191 (((-1262)) 12)))
+(((-799) (-10 -8 (-15 -4178 ($)) (-15 -4191 ((-1262))) (-15 -1304 ((-640 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -4199 ($ (-640 (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379)))))))) (-15 -3867 ($ (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))))))) (-15 -4210 ((-3 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))) "failed") (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -799))
+((-4210 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379)))) (-5 *1 (-799)))) (-3867 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379)))))) (-5 *1 (-799)))) (-4199 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))))))) (-5 *1 (-799)))) (-1304 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-5 *1 (-799)))) (-4191 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-799)))) (-4178 (*1 *1) (-5 *1 (-799))))
+(-10 -8 (-15 -4178 ($)) (-15 -4191 ((-1262))) (-15 -1304 ((-640 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -4199 ($ (-640 (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379)))))))) (-15 -3867 ($ (-2 (|:| -2387 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2556 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))))))) (-15 -4210 ((-3 (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379)) (|:| |expense| (-379)) (|:| |accuracy| (-379)) (|:| |intermediateResults| (-379))) "failed") (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
+((-3982 ((|#2| |#2| (-1169)) 16)) (-4221 ((|#2| |#2| (-1169)) 51)) (-4231 (((-1 |#2| |#2|) (-1169)) 11)))
+(((-800 |#1| |#2|) (-10 -7 (-15 -3982 (|#2| |#2| (-1169))) (-15 -4221 (|#2| |#2| (-1169))) (-15 -4231 ((-1 |#2| |#2|) (-1169)))) (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)) (-13 (-29 |#1|) (-1193) (-955))) (T -800))
+((-4231 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-1 *5 *5)) (-5 *1 (-800 *4 *5)) (-4 *5 (-13 (-29 *4) (-1193) (-955))))) (-4221 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *1 (-800 *4 *2)) (-4 *2 (-13 (-29 *4) (-1193) (-955))))) (-3982 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *1 (-800 *4 *2)) (-4 *2 (-13 (-29 *4) (-1193) (-955))))))
+(-10 -7 (-15 -3982 (|#2| |#2| (-1169))) (-15 -4221 (|#2| |#2| (-1169))) (-15 -4231 ((-1 |#2| |#2|) (-1169))))
+((-3510 (((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-640 (-379)) (-379) (-379)) 116) (((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-640 (-379)) (-379)) 117) (((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-640 (-379)) (-379)) 119) (((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-379)) 120) (((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-379)) 121) (((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379))) 122) (((-1031) (-804) (-1057)) 108) (((-1031) (-804)) 109)) (-2929 (((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-804) (-1057)) 75) (((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-804)) 77)))
+(((-801) (-10 -7 (-15 -3510 ((-1031) (-804))) (-15 -3510 ((-1031) (-804) (-1057))) (-15 -3510 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)))) (-15 -3510 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-379))) (-15 -3510 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-379))) (-15 -3510 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-640 (-379)) (-379))) (-15 -3510 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-640 (-379)) (-379))) (-15 -3510 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-640 (-379)) (-379) (-379))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-804))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-804) (-1057))))) (T -801))
+((-2929 (*1 *2 *3 *4) (-12 (-5 *3 (-804)) (-5 *4 (-1057)) (-5 *2 (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))))) (-5 *1 (-801)))) (-2929 (*1 *2 *3) (-12 (-5 *3 (-804)) (-5 *2 (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))))) (-5 *1 (-801)))) (-3510 (*1 *2 *3 *4 *4 *5 *6 *5 *4 *4) (-12 (-5 *3 (-1257 (-316 *4))) (-5 *5 (-640 (-379))) (-5 *6 (-316 (-379))) (-5 *4 (-379)) (-5 *2 (-1031)) (-5 *1 (-801)))) (-3510 (*1 *2 *3 *4 *4 *5 *6 *5 *4) (-12 (-5 *3 (-1257 (-316 *4))) (-5 *5 (-640 (-379))) (-5 *6 (-316 (-379))) (-5 *4 (-379)) (-5 *2 (-1031)) (-5 *1 (-801)))) (-3510 (*1 *2 *3 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1257 (-316 (-379)))) (-5 *4 (-379)) (-5 *5 (-640 *4)) (-5 *2 (-1031)) (-5 *1 (-801)))) (-3510 (*1 *2 *3 *4 *4 *5 *6 *4) (-12 (-5 *3 (-1257 (-316 *4))) (-5 *5 (-640 (-379))) (-5 *6 (-316 (-379))) (-5 *4 (-379)) (-5 *2 (-1031)) (-5 *1 (-801)))) (-3510 (*1 *2 *3 *4 *4 *5 *4) (-12 (-5 *3 (-1257 (-316 (-379)))) (-5 *4 (-379)) (-5 *5 (-640 *4)) (-5 *2 (-1031)) (-5 *1 (-801)))) (-3510 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1257 (-316 (-379)))) (-5 *4 (-379)) (-5 *5 (-640 *4)) (-5 *2 (-1031)) (-5 *1 (-801)))) (-3510 (*1 *2 *3 *4) (-12 (-5 *3 (-804)) (-5 *4 (-1057)) (-5 *2 (-1031)) (-5 *1 (-801)))) (-3510 (*1 *2 *3) (-12 (-5 *3 (-804)) (-5 *2 (-1031)) (-5 *1 (-801)))))
+(-10 -7 (-15 -3510 ((-1031) (-804))) (-15 -3510 ((-1031) (-804) (-1057))) (-15 -3510 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)))) (-15 -3510 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-379))) (-15 -3510 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-379))) (-15 -3510 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-640 (-379)) (-379))) (-15 -3510 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-640 (-379)) (-379))) (-15 -3510 ((-1031) (-1257 (-316 (-379))) (-379) (-379) (-640 (-379)) (-316 (-379)) (-640 (-379)) (-379) (-379))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-804))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-804) (-1057))))
+((-4241 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -4013 (-640 |#4|))) (-648 |#4|) |#4|) 35)))
+(((-802 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4241 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -4013 (-640 |#4|))) (-648 |#4|) |#4|))) (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|)) (T -802))
+((-4241 (*1 *2 *3 *4) (-12 (-5 *3 (-648 *4)) (-4 *4 (-342 *5 *6 *7)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4)))) (-5 *1 (-802 *5 *6 *7 *4)))))
+(-10 -7 (-15 -4241 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -4013 (-640 |#4|))) (-648 |#4|) |#4|)))
+((-2674 (((-2 (|:| -1420 |#3|) (|:| |rh| (-640 (-407 |#2|)))) |#4| (-640 (-407 |#2|))) 52)) (-4266 (((-640 (-2 (|:| -3412 |#2|) (|:| -2377 |#2|))) |#4| |#2|) 60) (((-640 (-2 (|:| -3412 |#2|) (|:| -2377 |#2|))) |#4|) 59) (((-640 (-2 (|:| -3412 |#2|) (|:| -2377 |#2|))) |#3| |#2|) 20) (((-640 (-2 (|:| -3412 |#2|) (|:| -2377 |#2|))) |#3|) 21)) (-4277 ((|#2| |#4| |#1|) 61) ((|#2| |#3| |#1|) 27)) (-4253 ((|#2| |#3| (-640 (-407 |#2|))) 94) (((-3 |#2| "failed") |#3| (-407 |#2|)) 91)))
+(((-803 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4253 ((-3 |#2| "failed") |#3| (-407 |#2|))) (-15 -4253 (|#2| |#3| (-640 (-407 |#2|)))) (-15 -4266 ((-640 (-2 (|:| -3412 |#2|) (|:| -2377 |#2|))) |#3|)) (-15 -4266 ((-640 (-2 (|:| -3412 |#2|) (|:| -2377 |#2|))) |#3| |#2|)) (-15 -4277 (|#2| |#3| |#1|)) (-15 -4266 ((-640 (-2 (|:| -3412 |#2|) (|:| -2377 |#2|))) |#4|)) (-15 -4266 ((-640 (-2 (|:| -3412 |#2|) (|:| -2377 |#2|))) |#4| |#2|)) (-15 -4277 (|#2| |#4| |#1|)) (-15 -2674 ((-2 (|:| -1420 |#3|) (|:| |rh| (-640 (-407 |#2|)))) |#4| (-640 (-407 |#2|))))) (-13 (-363) (-147) (-1034 (-407 (-563)))) (-1233 |#1|) (-651 |#2|) (-651 (-407 |#2|))) (T -803))
+((-2674 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-5 *2 (-2 (|:| -1420 *7) (|:| |rh| (-640 (-407 *6))))) (-5 *1 (-803 *5 *6 *7 *3)) (-5 *4 (-640 (-407 *6))) (-4 *7 (-651 *6)) (-4 *3 (-651 (-407 *6))))) (-4277 (*1 *2 *3 *4) (-12 (-4 *2 (-1233 *4)) (-5 *1 (-803 *4 *2 *5 *3)) (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *5 (-651 *2)) (-4 *3 (-651 (-407 *2))))) (-4266 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *4 (-1233 *5)) (-5 *2 (-640 (-2 (|:| -3412 *4) (|:| -2377 *4)))) (-5 *1 (-803 *5 *4 *6 *3)) (-4 *6 (-651 *4)) (-4 *3 (-651 (-407 *4))))) (-4266 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4)) (-5 *2 (-640 (-2 (|:| -3412 *5) (|:| -2377 *5)))) (-5 *1 (-803 *4 *5 *6 *3)) (-4 *6 (-651 *5)) (-4 *3 (-651 (-407 *5))))) (-4277 (*1 *2 *3 *4) (-12 (-4 *2 (-1233 *4)) (-5 *1 (-803 *4 *2 *3 *5)) (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-651 *2)) (-4 *5 (-651 (-407 *2))))) (-4266 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *4 (-1233 *5)) (-5 *2 (-640 (-2 (|:| -3412 *4) (|:| -2377 *4)))) (-5 *1 (-803 *5 *4 *3 *6)) (-4 *3 (-651 *4)) (-4 *6 (-651 (-407 *4))))) (-4266 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4)) (-5 *2 (-640 (-2 (|:| -3412 *5) (|:| -2377 *5)))) (-5 *1 (-803 *4 *5 *3 *6)) (-4 *3 (-651 *5)) (-4 *6 (-651 (-407 *5))))) (-4253 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-407 *2))) (-4 *2 (-1233 *5)) (-5 *1 (-803 *5 *2 *3 *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-651 *2)) (-4 *6 (-651 (-407 *2))))) (-4253 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-407 *2)) (-4 *2 (-1233 *5)) (-5 *1 (-803 *5 *2 *3 *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-651 *2)) (-4 *6 (-651 *4)))))
+(-10 -7 (-15 -4253 ((-3 |#2| "failed") |#3| (-407 |#2|))) (-15 -4253 (|#2| |#3| (-640 (-407 |#2|)))) (-15 -4266 ((-640 (-2 (|:| -3412 |#2|) (|:| -2377 |#2|))) |#3|)) (-15 -4266 ((-640 (-2 (|:| -3412 |#2|) (|:| -2377 |#2|))) |#3| |#2|)) (-15 -4277 (|#2| |#3| |#1|)) (-15 -4266 ((-640 (-2 (|:| -3412 |#2|) (|:| -2377 |#2|))) |#4|)) (-15 -4266 ((-640 (-2 (|:| -3412 |#2|) (|:| -2377 |#2|))) |#4| |#2|)) (-15 -4277 (|#2| |#4| |#1|)) (-15 -2674 ((-2 (|:| -1420 |#3|) (|:| |rh| (-640 (-407 |#2|)))) |#4| (-640 (-407 |#2|)))))
+((-1677 (((-112) $ $) NIL)) (-2057 (((-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) $) 13)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 15) (($ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 12)) (-1718 (((-112) $ $) NIL)))
+(((-804) (-13 (-1093) (-10 -8 (-15 -1692 ($ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2057 ((-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) $))))) (T -804))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-804)))) (-2057 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-804)))))
+(-13 (-1093) (-10 -8 (-15 -1692 ($ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2057 ((-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) $))))
+((-4363 (((-640 (-2 (|:| |frac| (-407 |#2|)) (|:| -1420 |#3|))) |#3| (-1 (-640 |#2|) |#2| (-1165 |#2|)) (-1 (-418 |#2|) |#2|)) 117)) (-4375 (((-640 (-2 (|:| |poly| |#2|) (|:| -1420 |#3|))) |#3| (-1 (-640 |#1|) |#2|)) 46)) (-4299 (((-640 (-2 (|:| |deg| (-767)) (|:| -1420 |#2|))) |#3|) 94)) (-4289 ((|#2| |#3|) 37)) (-4310 (((-640 (-2 (|:| -2668 |#1|) (|:| -1420 |#3|))) |#3| (-1 (-640 |#1|) |#2|)) 81)) (-4321 ((|#3| |#3| (-407 |#2|)) 62) ((|#3| |#3| |#2|) 78)))
+(((-805 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4289 (|#2| |#3|)) (-15 -4299 ((-640 (-2 (|:| |deg| (-767)) (|:| -1420 |#2|))) |#3|)) (-15 -4310 ((-640 (-2 (|:| -2668 |#1|) (|:| -1420 |#3|))) |#3| (-1 (-640 |#1|) |#2|))) (-15 -4375 ((-640 (-2 (|:| |poly| |#2|) (|:| -1420 |#3|))) |#3| (-1 (-640 |#1|) |#2|))) (-15 -4363 ((-640 (-2 (|:| |frac| (-407 |#2|)) (|:| -1420 |#3|))) |#3| (-1 (-640 |#2|) |#2| (-1165 |#2|)) (-1 (-418 |#2|) |#2|))) (-15 -4321 (|#3| |#3| |#2|)) (-15 -4321 (|#3| |#3| (-407 |#2|)))) (-13 (-363) (-147) (-1034 (-407 (-563)))) (-1233 |#1|) (-651 |#2|) (-651 (-407 |#2|))) (T -805))
+((-4321 (*1 *2 *2 *3) (-12 (-5 *3 (-407 *5)) (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4)) (-5 *1 (-805 *4 *5 *2 *6)) (-4 *2 (-651 *5)) (-4 *6 (-651 *3)))) (-4321 (*1 *2 *2 *3) (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-1233 *4)) (-5 *1 (-805 *4 *3 *2 *5)) (-4 *2 (-651 *3)) (-4 *5 (-651 (-407 *3))))) (-4363 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 (-640 *7) *7 (-1165 *7))) (-5 *5 (-1 (-418 *7) *7)) (-4 *7 (-1233 *6)) (-4 *6 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-5 *2 (-640 (-2 (|:| |frac| (-407 *7)) (|:| -1420 *3)))) (-5 *1 (-805 *6 *7 *3 *8)) (-4 *3 (-651 *7)) (-4 *8 (-651 (-407 *7))))) (-4375 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-640 *5) *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-5 *2 (-640 (-2 (|:| |poly| *6) (|:| -1420 *3)))) (-5 *1 (-805 *5 *6 *3 *7)) (-4 *3 (-651 *6)) (-4 *7 (-651 (-407 *6))))) (-4310 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-640 *5) *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-5 *2 (-640 (-2 (|:| -2668 *5) (|:| -1420 *3)))) (-5 *1 (-805 *5 *6 *3 *7)) (-4 *3 (-651 *6)) (-4 *7 (-651 (-407 *6))))) (-4299 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4)) (-5 *2 (-640 (-2 (|:| |deg| (-767)) (|:| -1420 *5)))) (-5 *1 (-805 *4 *5 *3 *6)) (-4 *3 (-651 *5)) (-4 *6 (-651 (-407 *5))))) (-4289 (*1 *2 *3) (-12 (-4 *2 (-1233 *4)) (-5 *1 (-805 *4 *2 *3 *5)) (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-651 *2)) (-4 *5 (-651 (-407 *2))))))
+(-10 -7 (-15 -4289 (|#2| |#3|)) (-15 -4299 ((-640 (-2 (|:| |deg| (-767)) (|:| -1420 |#2|))) |#3|)) (-15 -4310 ((-640 (-2 (|:| -2668 |#1|) (|:| -1420 |#3|))) |#3| (-1 (-640 |#1|) |#2|))) (-15 -4375 ((-640 (-2 (|:| |poly| |#2|) (|:| -1420 |#3|))) |#3| (-1 (-640 |#1|) |#2|))) (-15 -4363 ((-640 (-2 (|:| |frac| (-407 |#2|)) (|:| -1420 |#3|))) |#3| (-1 (-640 |#2|) |#2| (-1165 |#2|)) (-1 (-418 |#2|) |#2|))) (-15 -4321 (|#3| |#3| |#2|)) (-15 -4321 (|#3| |#3| (-407 |#2|))))
+((-4332 (((-2 (|:| -4013 (-640 (-407 |#2|))) (|:| -1957 (-684 |#1|))) (-649 |#2| (-407 |#2|)) (-640 (-407 |#2|))) 122) (((-2 (|:| |particular| (-3 (-407 |#2|) "failed")) (|:| -4013 (-640 (-407 |#2|)))) (-649 |#2| (-407 |#2|)) (-407 |#2|)) 121) (((-2 (|:| -4013 (-640 (-407 |#2|))) (|:| -1957 (-684 |#1|))) (-648 (-407 |#2|)) (-640 (-407 |#2|))) 116) (((-2 (|:| |particular| (-3 (-407 |#2|) "failed")) (|:| -4013 (-640 (-407 |#2|)))) (-648 (-407 |#2|)) (-407 |#2|)) 114)) (-4344 ((|#2| (-649 |#2| (-407 |#2|))) 80) ((|#2| (-648 (-407 |#2|))) 83)))
+(((-806 |#1| |#2|) (-10 -7 (-15 -4332 ((-2 (|:| |particular| (-3 (-407 |#2|) "failed")) (|:| -4013 (-640 (-407 |#2|)))) (-648 (-407 |#2|)) (-407 |#2|))) (-15 -4332 ((-2 (|:| -4013 (-640 (-407 |#2|))) (|:| -1957 (-684 |#1|))) (-648 (-407 |#2|)) (-640 (-407 |#2|)))) (-15 -4332 ((-2 (|:| |particular| (-3 (-407 |#2|) "failed")) (|:| -4013 (-640 (-407 |#2|)))) (-649 |#2| (-407 |#2|)) (-407 |#2|))) (-15 -4332 ((-2 (|:| -4013 (-640 (-407 |#2|))) (|:| -1957 (-684 |#1|))) (-649 |#2| (-407 |#2|)) (-640 (-407 |#2|)))) (-15 -4344 (|#2| (-648 (-407 |#2|)))) (-15 -4344 (|#2| (-649 |#2| (-407 |#2|))))) (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))) (-1233 |#1|)) (T -806))
+((-4344 (*1 *2 *3) (-12 (-5 *3 (-649 *2 (-407 *2))) (-4 *2 (-1233 *4)) (-5 *1 (-806 *4 *2)) (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))))) (-4344 (*1 *2 *3) (-12 (-5 *3 (-648 (-407 *2))) (-4 *2 (-1233 *4)) (-5 *1 (-806 *4 *2)) (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))))) (-4332 (*1 *2 *3 *4) (-12 (-5 *3 (-649 *6 (-407 *6))) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-2 (|:| -4013 (-640 (-407 *6))) (|:| -1957 (-684 *5)))) (-5 *1 (-806 *5 *6)) (-5 *4 (-640 (-407 *6))))) (-4332 (*1 *2 *3 *4) (-12 (-5 *3 (-649 *6 (-407 *6))) (-5 *4 (-407 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4)))) (-5 *1 (-806 *5 *6)))) (-4332 (*1 *2 *3 *4) (-12 (-5 *3 (-648 (-407 *6))) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-2 (|:| -4013 (-640 (-407 *6))) (|:| -1957 (-684 *5)))) (-5 *1 (-806 *5 *6)) (-5 *4 (-640 (-407 *6))))) (-4332 (*1 *2 *3 *4) (-12 (-5 *3 (-648 (-407 *6))) (-5 *4 (-407 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4)))) (-5 *1 (-806 *5 *6)))))
+(-10 -7 (-15 -4332 ((-2 (|:| |particular| (-3 (-407 |#2|) "failed")) (|:| -4013 (-640 (-407 |#2|)))) (-648 (-407 |#2|)) (-407 |#2|))) (-15 -4332 ((-2 (|:| -4013 (-640 (-407 |#2|))) (|:| -1957 (-684 |#1|))) (-648 (-407 |#2|)) (-640 (-407 |#2|)))) (-15 -4332 ((-2 (|:| |particular| (-3 (-407 |#2|) "failed")) (|:| -4013 (-640 (-407 |#2|)))) (-649 |#2| (-407 |#2|)) (-407 |#2|))) (-15 -4332 ((-2 (|:| -4013 (-640 (-407 |#2|))) (|:| -1957 (-684 |#1|))) (-649 |#2| (-407 |#2|)) (-640 (-407 |#2|)))) (-15 -4344 (|#2| (-648 (-407 |#2|)))) (-15 -4344 (|#2| (-649 |#2| (-407 |#2|)))))
+((-4354 (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#1|))) |#5| |#4|) 48)))
+(((-807 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4354 ((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#1|))) |#5| |#4|))) (-363) (-651 |#1|) (-1233 |#1|) (-720 |#1| |#3|) (-651 |#4|)) (T -807))
+((-4354 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-4 *7 (-1233 *5)) (-4 *4 (-720 *5 *7)) (-5 *2 (-2 (|:| -1957 (-684 *6)) (|:| |vec| (-1257 *5)))) (-5 *1 (-807 *5 *6 *7 *4 *3)) (-4 *6 (-651 *5)) (-4 *3 (-651 *4)))))
+(-10 -7 (-15 -4354 ((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#1|))) |#5| |#4|)))
+((-4363 (((-640 (-2 (|:| |frac| (-407 |#2|)) (|:| -1420 (-649 |#2| (-407 |#2|))))) (-649 |#2| (-407 |#2|)) (-1 (-418 |#2|) |#2|)) 47)) (-4386 (((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-418 |#2|) |#2|)) 140 (|has| |#1| (-27))) (((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|))) 137 (|has| |#1| (-27))) (((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-418 |#2|) |#2|)) 141 (|has| |#1| (-27))) (((-640 (-407 |#2|)) (-648 (-407 |#2|))) 139 (|has| |#1| (-27))) (((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|) (-1 (-418 |#2|) |#2|)) 38) (((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|)) 39) (((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|) (-1 (-418 |#2|) |#2|)) 36) (((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|)) 37)) (-4375 (((-640 (-2 (|:| |poly| |#2|) (|:| -1420 (-649 |#2| (-407 |#2|))))) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|)) 83)))
+(((-808 |#1| |#2|) (-10 -7 (-15 -4386 ((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (-15 -4386 ((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|) (-1 (-418 |#2|) |#2|))) (-15 -4386 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (-15 -4386 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|) (-1 (-418 |#2|) |#2|))) (-15 -4363 ((-640 (-2 (|:| |frac| (-407 |#2|)) (|:| -1420 (-649 |#2| (-407 |#2|))))) (-649 |#2| (-407 |#2|)) (-1 (-418 |#2|) |#2|))) (-15 -4375 ((-640 (-2 (|:| |poly| |#2|) (|:| -1420 (-649 |#2| (-407 |#2|))))) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -4386 ((-640 (-407 |#2|)) (-648 (-407 |#2|)))) (-15 -4386 ((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-418 |#2|) |#2|))) (-15 -4386 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)))) (-15 -4386 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-418 |#2|) |#2|)))) |%noBranch|)) (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))) (-1233 |#1|)) (T -808))
+((-4386 (*1 *2 *3 *4) (-12 (-5 *3 (-649 *6 (-407 *6))) (-5 *4 (-1 (-418 *6) *6)) (-4 *6 (-1233 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6)))) (-4386 (*1 *2 *3) (-12 (-5 *3 (-649 *5 (-407 *5))) (-4 *5 (-1233 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-640 (-407 *5))) (-5 *1 (-808 *4 *5)))) (-4386 (*1 *2 *3 *4) (-12 (-5 *3 (-648 (-407 *6))) (-5 *4 (-1 (-418 *6) *6)) (-4 *6 (-1233 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6)))) (-4386 (*1 *2 *3) (-12 (-5 *3 (-648 (-407 *5))) (-4 *5 (-1233 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-640 (-407 *5))) (-5 *1 (-808 *4 *5)))) (-4375 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-640 *5) *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-5 *2 (-640 (-2 (|:| |poly| *6) (|:| -1420 (-649 *6 (-407 *6)))))) (-5 *1 (-808 *5 *6)) (-5 *3 (-649 *6 (-407 *6))))) (-4363 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-418 *6) *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-5 *2 (-640 (-2 (|:| |frac| (-407 *6)) (|:| -1420 (-649 *6 (-407 *6)))))) (-5 *1 (-808 *5 *6)) (-5 *3 (-649 *6 (-407 *6))))) (-4386 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-649 *7 (-407 *7))) (-5 *4 (-1 (-640 *6) *7)) (-5 *5 (-1 (-418 *7) *7)) (-4 *6 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *7 (-1233 *6)) (-5 *2 (-640 (-407 *7))) (-5 *1 (-808 *6 *7)))) (-4386 (*1 *2 *3 *4) (-12 (-5 *3 (-649 *6 (-407 *6))) (-5 *4 (-1 (-640 *5) *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6)))) (-4386 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-648 (-407 *7))) (-5 *4 (-1 (-640 *6) *7)) (-5 *5 (-1 (-418 *7) *7)) (-4 *6 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *7 (-1233 *6)) (-5 *2 (-640 (-407 *7))) (-5 *1 (-808 *6 *7)))) (-4386 (*1 *2 *3 *4) (-12 (-5 *3 (-648 (-407 *6))) (-5 *4 (-1 (-640 *5) *6)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5)) (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6)))))
+(-10 -7 (-15 -4386 ((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (-15 -4386 ((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-640 |#1|) |#2|) (-1 (-418 |#2|) |#2|))) (-15 -4386 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (-15 -4386 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|) (-1 (-418 |#2|) |#2|))) (-15 -4363 ((-640 (-2 (|:| |frac| (-407 |#2|)) (|:| -1420 (-649 |#2| (-407 |#2|))))) (-649 |#2| (-407 |#2|)) (-1 (-418 |#2|) |#2|))) (-15 -4375 ((-640 (-2 (|:| |poly| |#2|) (|:| -1420 (-649 |#2| (-407 |#2|))))) (-649 |#2| (-407 |#2|)) (-1 (-640 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -4386 ((-640 (-407 |#2|)) (-648 (-407 |#2|)))) (-15 -4386 ((-640 (-407 |#2|)) (-648 (-407 |#2|)) (-1 (-418 |#2|) |#2|))) (-15 -4386 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)))) (-15 -4386 ((-640 (-407 |#2|)) (-649 |#2| (-407 |#2|)) (-1 (-418 |#2|) |#2|)))) |%noBranch|))
+((-1297 (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#1|))) (-684 |#2|) (-1257 |#1|)) 85) (((-2 (|:| A (-684 |#1|)) (|:| |eqs| (-640 (-2 (|:| C (-684 |#1|)) (|:| |g| (-1257 |#1|)) (|:| -1420 |#2|) (|:| |rh| |#1|))))) (-684 |#1|) (-1257 |#1|)) 15)) (-1306 (((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4013 (-640 (-1257 |#1|)))) (-684 |#2|) (-1257 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -4013 (-640 |#1|))) |#2| |#1|)) 92)) (-3510 (((-3 (-2 (|:| |particular| (-1257 |#1|)) (|:| -4013 (-684 |#1|))) "failed") (-684 |#1|) (-1257 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -4013 (-640 |#1|))) "failed") |#2| |#1|)) 43)))
+(((-809 |#1| |#2|) (-10 -7 (-15 -1297 ((-2 (|:| A (-684 |#1|)) (|:| |eqs| (-640 (-2 (|:| C (-684 |#1|)) (|:| |g| (-1257 |#1|)) (|:| -1420 |#2|) (|:| |rh| |#1|))))) (-684 |#1|) (-1257 |#1|))) (-15 -1297 ((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#1|))) (-684 |#2|) (-1257 |#1|))) (-15 -3510 ((-3 (-2 (|:| |particular| (-1257 |#1|)) (|:| -4013 (-684 |#1|))) "failed") (-684 |#1|) (-1257 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -4013 (-640 |#1|))) "failed") |#2| |#1|))) (-15 -1306 ((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4013 (-640 (-1257 |#1|)))) (-684 |#2|) (-1257 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -4013 (-640 |#1|))) |#2| |#1|)))) (-363) (-651 |#1|)) (T -809))
+((-1306 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-684 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -4013 (-640 *6))) *7 *6)) (-4 *6 (-363)) (-4 *7 (-651 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1257 *6) "failed")) (|:| -4013 (-640 (-1257 *6))))) (-5 *1 (-809 *6 *7)) (-5 *4 (-1257 *6)))) (-3510 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -4013 (-640 *6))) "failed") *7 *6)) (-4 *6 (-363)) (-4 *7 (-651 *6)) (-5 *2 (-2 (|:| |particular| (-1257 *6)) (|:| -4013 (-684 *6)))) (-5 *1 (-809 *6 *7)) (-5 *3 (-684 *6)) (-5 *4 (-1257 *6)))) (-1297 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-4 *6 (-651 *5)) (-5 *2 (-2 (|:| -1957 (-684 *6)) (|:| |vec| (-1257 *5)))) (-5 *1 (-809 *5 *6)) (-5 *3 (-684 *6)) (-5 *4 (-1257 *5)))) (-1297 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-5 *2 (-2 (|:| A (-684 *5)) (|:| |eqs| (-640 (-2 (|:| C (-684 *5)) (|:| |g| (-1257 *5)) (|:| -1420 *6) (|:| |rh| *5)))))) (-5 *1 (-809 *5 *6)) (-5 *3 (-684 *5)) (-5 *4 (-1257 *5)) (-4 *6 (-651 *5)))))
+(-10 -7 (-15 -1297 ((-2 (|:| A (-684 |#1|)) (|:| |eqs| (-640 (-2 (|:| C (-684 |#1|)) (|:| |g| (-1257 |#1|)) (|:| -1420 |#2|) (|:| |rh| |#1|))))) (-684 |#1|) (-1257 |#1|))) (-15 -1297 ((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#1|))) (-684 |#2|) (-1257 |#1|))) (-15 -3510 ((-3 (-2 (|:| |particular| (-1257 |#1|)) (|:| -4013 (-684 |#1|))) "failed") (-684 |#1|) (-1257 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -4013 (-640 |#1|))) "failed") |#2| |#1|))) (-15 -1306 ((-2 (|:| |particular| (-3 (-1257 |#1|) "failed")) (|:| -4013 (-640 (-1257 |#1|)))) (-684 |#2|) (-1257 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -4013 (-640 |#1|))) |#2| |#1|))))
+((-1317 (((-684 |#1|) (-640 |#1|) (-767)) 13) (((-684 |#1|) (-640 |#1|)) 14)) (-1328 (((-3 (-1257 |#1|) "failed") |#2| |#1| (-640 |#1|)) 34)) (-2302 (((-3 |#1| "failed") |#2| |#1| (-640 |#1|) (-1 |#1| |#1|)) 42)))
+(((-810 |#1| |#2|) (-10 -7 (-15 -1317 ((-684 |#1|) (-640 |#1|))) (-15 -1317 ((-684 |#1|) (-640 |#1|) (-767))) (-15 -1328 ((-3 (-1257 |#1|) "failed") |#2| |#1| (-640 |#1|))) (-15 -2302 ((-3 |#1| "failed") |#2| |#1| (-640 |#1|) (-1 |#1| |#1|)))) (-363) (-651 |#1|)) (T -810))
+((-2302 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *4 (-640 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-363)) (-5 *1 (-810 *2 *3)) (-4 *3 (-651 *2)))) (-1328 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-640 *4)) (-4 *4 (-363)) (-5 *2 (-1257 *4)) (-5 *1 (-810 *4 *3)) (-4 *3 (-651 *4)))) (-1317 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *5)) (-5 *4 (-767)) (-4 *5 (-363)) (-5 *2 (-684 *5)) (-5 *1 (-810 *5 *6)) (-4 *6 (-651 *5)))) (-1317 (*1 *2 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-363)) (-5 *2 (-684 *4)) (-5 *1 (-810 *4 *5)) (-4 *5 (-651 *4)))))
+(-10 -7 (-15 -1317 ((-684 |#1|) (-640 |#1|))) (-15 -1317 ((-684 |#1|) (-640 |#1|) (-767))) (-15 -1328 ((-3 (-1257 |#1|) "failed") |#2| |#1| (-640 |#1|))) (-15 -2302 ((-3 |#1| "failed") |#2| |#1| (-640 |#1|) (-1 |#1| |#1|))))
+((-1677 (((-112) $ $) NIL (|has| |#2| (-1093)))) (-3439 (((-112) $) NIL (|has| |#2| (-131)))) (-2392 (($ (-917)) NIL (|has| |#2| (-1045)))) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4092 (($ $ $) NIL (|has| |#2| (-789)))) (-3905 (((-3 $ "failed") $ $) NIL (|has| |#2| (-131)))) (-3001 (((-112) $ (-767)) NIL)) (-3750 (((-767)) NIL (|has| |#2| (-368)))) (-2807 (((-563) $) NIL (|has| |#2| (-844)))) (-1849 ((|#2| $ (-563) |#2|) NIL (|has| $ (-6 -4409)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1093)))) (-2057 (((-563) $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093)))) (((-407 (-563)) $) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) ((|#2| $) NIL (|has| |#2| (-1093)))) (-1476 (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#2| (-1045)))) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL (|has| |#2| (-1045))) (((-684 |#2|) (-684 $)) NIL (|has| |#2| (-1045)))) (-3951 (((-3 $ "failed") $) NIL (|has| |#2| (-722)))) (-1690 (($) NIL (|has| |#2| (-368)))) (-4356 ((|#2| $ (-563) |#2|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#2| $ (-563)) NIL)) (-3414 (((-112) $) NIL (|has| |#2| (-844)))) (-2658 (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-3401 (((-112) $) NIL (|has| |#2| (-722)))) (-3426 (((-112) $) NIL (|has| |#2| (-844)))) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) NIL (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-3523 (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-4347 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#2| |#2|) $) NIL)) (-3990 (((-917) $) NIL (|has| |#2| (-368)))) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#2| (-1093)))) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-2552 (($ (-917)) NIL (|has| |#2| (-368)))) (-1693 (((-1113) $) NIL (|has| |#2| (-1093)))) (-3782 ((|#2| $) NIL (|has| (-563) (-846)))) (-2221 (($ $ |#2|) NIL (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2295 (((-640 |#2|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#2| $ (-563) |#2|) NIL) ((|#2| $ (-563)) NIL)) (-4121 ((|#2| $ $) NIL (|has| |#2| (-1045)))) (-2509 (($ (-1257 |#2|)) NIL)) (-3526 (((-134)) NIL (|has| |#2| (-363)))) (-4203 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1045)))) (-1708 (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-1870 (($ $) NIL)) (-1692 (((-1257 |#2|) $) NIL) (($ (-563)) NIL (-4034 (-12 (|has| |#2| (-1034 (-563))) (|has| |#2| (-1093))) (|has| |#2| (-1045)))) (($ (-407 (-563))) NIL (-12 (|has| |#2| (-1034 (-407 (-563)))) (|has| |#2| (-1093)))) (($ |#2|) NIL (|has| |#2| (-1093))) (((-858) $) NIL (|has| |#2| (-610 (-858))))) (-3914 (((-767)) NIL (|has| |#2| (-1045)))) (-1471 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1462 (($ $) NIL (|has| |#2| (-844)))) (-2239 (($) NIL (|has| |#2| (-131)) CONST)) (-2253 (($) NIL (|has| |#2| (-722)) CONST)) (-3213 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#2| (-896 (-1169))) (|has| |#2| (-1045)))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#2| (-1045))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1045)))) (-1779 (((-112) $ $) NIL (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1754 (((-112) $ $) NIL (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1718 (((-112) $ $) NIL (|has| |#2| (-1093)))) (-1766 (((-112) $ $) NIL (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1743 (((-112) $ $) 11 (-4034 (|has| |#2| (-789)) (|has| |#2| (-844))))) (-1836 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1825 (($ $ $) NIL (|has| |#2| (-1045))) (($ $) NIL (|has| |#2| (-1045)))) (-1813 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-767)) NIL (|has| |#2| (-722))) (($ $ (-917)) NIL (|has| |#2| (-722)))) (* (($ (-563) $) NIL (|has| |#2| (-1045))) (($ $ $) NIL (|has| |#2| (-722))) (($ $ |#2|) NIL (|has| |#2| (-722))) (($ |#2| $) NIL (|has| |#2| (-722))) (($ (-767) $) NIL (|has| |#2| (-131))) (($ (-917) $) NIL (|has| |#2| (-25)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
(((-811 |#1| |#2| |#3|) (-238 |#1| |#2|) (-767) (-789) (-1 (-112) (-1257 |#2|) (-1257 |#2|))) (T -811))
NIL
(-238 |#1| |#2|)
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2784 (((-640 (-767)) $) NIL) (((-640 (-767)) $ (-1169)) NIL)) (-1326 (((-767) $) NIL) (((-767) $ (-1169)) NIL)) (-2606 (((-640 (-814 (-1169))) $) NIL)) (-2139 (((-1165 $) $ (-814 (-1169))) NIL) (((-1165 |#1|) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-1779 (((-767) $) NIL) (((-767) $ (-640 (-814 (-1169)))) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-4335 (($ $) NIL (|has| |#1| (-452)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-3942 (($ $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-814 (-1169)) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL) (((-3 (-1118 |#1| (-1169)) "failed") $) NIL)) (-2058 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-814 (-1169)) $) NIL) (((-1169) $) NIL) (((-1118 |#1| (-1169)) $) NIL)) (-2742 (($ $ $ (-814 (-1169))) NIL (|has| |#1| (-172)))) (-2751 (($ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1300 (($ $) NIL (|has| |#1| (-452))) (($ $ (-814 (-1169))) NIL (|has| |#1| (-452)))) (-2739 (((-640 $) $) NIL)) (-2468 (((-112) $) NIL (|has| |#1| (-905)))) (-3554 (($ $ |#1| (-531 (-814 (-1169))) $) NIL)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-814 (-1169)) (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-814 (-1169)) (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-3254 (((-767) $ (-1169)) NIL) (((-767) $) NIL)) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) NIL)) (-2596 (($ (-1165 |#1|) (-814 (-1169))) NIL) (($ (-1165 $) (-814 (-1169))) NIL)) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-531 (-814 (-1169)))) NIL) (($ $ (-814 (-1169)) (-767)) NIL) (($ $ (-640 (-814 (-1169))) (-640 (-767))) NIL)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ (-814 (-1169))) NIL)) (-2048 (((-531 (-814 (-1169))) $) NIL) (((-767) $ (-814 (-1169))) NIL) (((-640 (-767)) $ (-640 (-814 (-1169)))) NIL)) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-2803 (($ (-1 (-531 (-814 (-1169))) (-531 (-814 (-1169)))) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-3376 (((-1 $ (-767)) (-1169)) NIL) (((-1 $ (-767)) $) NIL (|has| |#1| (-233)))) (-4234 (((-3 (-814 (-1169)) "failed") $) NIL)) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3759 (((-814 (-1169)) $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3573 (((-1151) $) NIL)) (-3871 (((-112) $) NIL)) (-3733 (((-3 (-640 $) "failed") $) NIL)) (-2919 (((-3 (-640 $) "failed") $) NIL)) (-4086 (((-3 (-2 (|:| |var| (-814 (-1169))) (|:| -1654 (-767))) "failed") $) NIL)) (-3562 (($ $) NIL)) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) NIL)) (-2706 ((|#1| $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2174 (((-418 $) $) NIL (|has| |#1| (-905)))) (-3008 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1540 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-814 (-1169)) |#1|) NIL) (($ $ (-640 (-814 (-1169))) (-640 |#1|)) NIL) (($ $ (-814 (-1169)) $) NIL) (($ $ (-640 (-814 (-1169))) (-640 $)) NIL) (($ $ (-1169) $) NIL (|has| |#1| (-233))) (($ $ (-640 (-1169)) (-640 $)) NIL (|has| |#1| (-233))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-233))) (($ $ (-640 (-1169)) (-640 |#1|)) NIL (|has| |#1| (-233)))) (-2315 (($ $ (-814 (-1169))) NIL (|has| |#1| (-172)))) (-4202 (($ $ (-814 (-1169))) NIL) (($ $ (-640 (-814 (-1169)))) NIL) (($ $ (-814 (-1169)) (-767)) NIL) (($ $ (-640 (-814 (-1169))) (-640 (-767))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3745 (((-640 (-1169)) $) NIL)) (-4167 (((-531 (-814 (-1169))) $) NIL) (((-767) $ (-814 (-1169))) NIL) (((-640 (-767)) $ (-640 (-814 (-1169)))) NIL) (((-767) $ (-1169)) NIL)) (-2220 (((-888 (-379)) $) NIL (-12 (|has| (-814 (-1169)) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-814 (-1169)) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-814 (-1169)) (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-1836 ((|#1| $) NIL (|has| |#1| (-452))) (($ $ (-814 (-1169))) NIL (|has| |#1| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-814 (-1169))) NIL) (($ (-1169)) NIL) (($ (-1118 |#1| (-1169))) NIL) (($ (-407 (-563))) NIL (-4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-1337 (((-640 |#1|) $) NIL)) (-4319 ((|#1| $ (-531 (-814 (-1169)))) NIL) (($ $ (-814 (-1169)) (-767)) NIL) (($ $ (-640 (-814 (-1169))) (-640 (-767))) NIL)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-1675 (((-767)) NIL)) (-2793 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ (-814 (-1169))) NIL) (($ $ (-640 (-814 (-1169)))) NIL) (($ $ (-814 (-1169)) (-767)) NIL) (($ $ (-640 (-814 (-1169))) (-640 (-767))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3989 (((-640 (-767)) $) NIL) (((-640 (-767)) $ (-1169)) NIL)) (-4329 (((-767) $) NIL) (((-767) $ (-1169)) NIL)) (-2605 (((-640 (-814 (-1169))) $) NIL)) (-2138 (((-1165 $) $ (-814 (-1169))) NIL) (((-1165 |#1|) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-3897 (((-767) $) NIL) (((-767) $ (-640 (-814 (-1169)))) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-1798 (($ $) NIL (|has| |#1| (-452)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-3968 (($ $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-814 (-1169)) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL) (((-3 (-1118 |#1| (-1169)) "failed") $) NIL)) (-2057 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-814 (-1169)) $) NIL) (((-1169) $) NIL) (((-1118 |#1| (-1169)) $) NIL)) (-1612 (($ $ $ (-814 (-1169))) NIL (|has| |#1| (-172)))) (-2750 (($ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-4151 (($ $) NIL (|has| |#1| (-452))) (($ $ (-814 (-1169))) NIL (|has| |#1| (-452)))) (-2738 (((-640 $) $) NIL)) (-2560 (((-112) $) NIL (|has| |#1| (-905)))) (-2159 (($ $ |#1| (-531 (-814 (-1169))) $) NIL)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-814 (-1169)) (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-814 (-1169)) (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-1775 (((-767) $ (-1169)) NIL) (((-767) $) NIL)) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) NIL)) (-2595 (($ (-1165 |#1|) (-814 (-1169))) NIL) (($ (-1165 $) (-814 (-1169))) NIL)) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-531 (-814 (-1169)))) NIL) (($ $ (-814 (-1169)) (-767)) NIL) (($ $ (-640 (-814 (-1169))) (-640 (-767))) NIL)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ (-814 (-1169))) NIL)) (-3908 (((-531 (-814 (-1169))) $) NIL) (((-767) $ (-814 (-1169))) NIL) (((-640 (-767)) $ (-640 (-814 (-1169)))) NIL)) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-2170 (($ (-1 (-531 (-814 (-1169))) (-531 (-814 (-1169)))) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-4340 (((-1 $ (-767)) (-1169)) NIL) (((-1 $ (-767)) $) NIL (|has| |#1| (-233)))) (-1698 (((-3 (-814 (-1169)) "failed") $) NIL)) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3760 (((-814 (-1169)) $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3854 (((-1151) $) NIL)) (-3978 (((-112) $) NIL)) (-3939 (((-3 (-640 $) "failed") $) NIL)) (-3930 (((-3 (-640 $) "failed") $) NIL)) (-3949 (((-3 (-2 (|:| |var| (-814 (-1169))) (|:| -3311 (-767))) "failed") $) NIL)) (-3564 (($ $) NIL)) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) NIL)) (-2705 ((|#1| $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2173 (((-418 $) $) NIL (|has| |#1| (-905)))) (-3012 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1542 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-814 (-1169)) |#1|) NIL) (($ $ (-640 (-814 (-1169))) (-640 |#1|)) NIL) (($ $ (-814 (-1169)) $) NIL) (($ $ (-640 (-814 (-1169))) (-640 $)) NIL) (($ $ (-1169) $) NIL (|has| |#1| (-233))) (($ $ (-640 (-1169)) (-640 $)) NIL (|has| |#1| (-233))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-233))) (($ $ (-640 (-1169)) (-640 |#1|)) NIL (|has| |#1| (-233)))) (-1623 (($ $ (-814 (-1169))) NIL (|has| |#1| (-172)))) (-4203 (($ $ (-814 (-1169))) NIL) (($ $ (-640 (-814 (-1169)))) NIL) (($ $ (-814 (-1169)) (-767)) NIL) (($ $ (-640 (-814 (-1169))) (-640 (-767))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4001 (((-640 (-1169)) $) NIL)) (-3871 (((-531 (-814 (-1169))) $) NIL) (((-767) $ (-814 (-1169))) NIL) (((-640 (-767)) $ (-640 (-814 (-1169)))) NIL) (((-767) $ (-1169)) NIL)) (-2219 (((-888 (-379)) $) NIL (-12 (|has| (-814 (-1169)) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-814 (-1169)) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-814 (-1169)) (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-3885 ((|#1| $) NIL (|has| |#1| (-452))) (($ $ (-814 (-1169))) NIL (|has| |#1| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-814 (-1169))) NIL) (($ (-1169)) NIL) (($ (-1118 |#1| (-1169))) NIL) (($ (-407 (-563))) NIL (-4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-3955 (((-640 |#1|) $) NIL)) (-3244 ((|#1| $ (-531 (-814 (-1169)))) NIL) (($ $ (-814 (-1169)) (-767)) NIL) (($ $ (-640 (-814 (-1169))) (-640 (-767))) NIL)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-3914 (((-767)) NIL)) (-2148 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-814 (-1169))) NIL) (($ $ (-640 (-814 (-1169)))) NIL) (($ $ (-814 (-1169)) (-767)) NIL) (($ $ (-640 (-814 (-1169))) (-640 (-767))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
(((-812 |#1|) (-13 (-253 |#1| (-1169) (-814 (-1169)) (-531 (-814 (-1169)))) (-1034 (-1118 |#1| (-1169)))) (-1045)) (T -812))
NIL
(-13 (-253 |#1| (-1169) (-814 (-1169)) (-531 (-814 (-1169)))) (-1034 (-1118 |#1| (-1169))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#2| (-363)))) (-4223 (($ $) NIL (|has| |#2| (-363)))) (-3156 (((-112) $) NIL (|has| |#2| (-363)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL (|has| |#2| (-363)))) (-3205 (((-418 $) $) NIL (|has| |#2| (-363)))) (-1919 (((-112) $ $) NIL (|has| |#2| (-363)))) (-4239 (($) NIL T CONST)) (-3090 (($ $ $) NIL (|has| |#2| (-363)))) (-3400 (((-3 $ "failed") $) NIL)) (-3050 (($ $ $) NIL (|has| |#2| (-363)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#2| (-363)))) (-2468 (((-112) $) NIL (|has| |#2| (-363)))) (-3827 (((-112) $) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#2| (-363)))) (-3513 (($ (-640 $)) NIL (|has| |#2| (-363))) (($ $ $) NIL (|has| |#2| (-363)))) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 20 (|has| |#2| (-363)))) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#2| (-363)))) (-3548 (($ (-640 $)) NIL (|has| |#2| (-363))) (($ $ $) NIL (|has| |#2| (-363)))) (-2174 (((-418 $) $) NIL (|has| |#2| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#2| (-363)))) (-3008 (((-3 $ "failed") $ $) NIL (|has| |#2| (-363)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#2| (-363)))) (-2628 (((-767) $) NIL (|has| |#2| (-363)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#2| (-363)))) (-4202 (($ $ (-767)) NIL) (($ $) 13)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-407 (-563))) NIL (|has| |#2| (-363))) (($ $) NIL (|has| |#2| (-363)))) (-1675 (((-767)) NIL)) (-2126 (((-112) $ $) NIL (|has| |#2| (-363)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ (-767)) NIL) (($ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ $) 15 (|has| |#2| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-767)) NIL) (($ $ (-917)) NIL) (($ $ (-563)) 18 (|has| |#2| (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ $) NIL) (($ (-407 (-563)) $) NIL (|has| |#2| (-363))) (($ $ (-407 (-563))) NIL (|has| |#2| (-363)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#2| (-363)))) (-3231 (($ $) NIL (|has| |#2| (-363)))) (-3211 (((-112) $) NIL (|has| |#2| (-363)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL (|has| |#2| (-363)))) (-2802 (((-418 $) $) NIL (|has| |#2| (-363)))) (-2003 (((-112) $ $) NIL (|has| |#2| (-363)))) (-2569 (($) NIL T CONST)) (-3094 (($ $ $) NIL (|has| |#2| (-363)))) (-3951 (((-3 $ "failed") $) NIL)) (-3054 (($ $ $) NIL (|has| |#2| (-363)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#2| (-363)))) (-2560 (((-112) $) NIL (|has| |#2| (-363)))) (-3401 (((-112) $) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#2| (-363)))) (-3517 (($ (-640 $)) NIL (|has| |#2| (-363))) (($ $ $) NIL (|has| |#2| (-363)))) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 20 (|has| |#2| (-363)))) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#2| (-363)))) (-3551 (($ (-640 $)) NIL (|has| |#2| (-363))) (($ $ $) NIL (|has| |#2| (-363)))) (-2173 (((-418 $) $) NIL (|has| |#2| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#2| (-363)))) (-3012 (((-3 $ "failed") $ $) NIL (|has| |#2| (-363)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#2| (-363)))) (-1993 (((-767) $) NIL (|has| |#2| (-363)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#2| (-363)))) (-4203 (($ $ (-767)) NIL) (($ $) 13)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-407 (-563))) NIL (|has| |#2| (-363))) (($ $) NIL (|has| |#2| (-363)))) (-3914 (((-767)) NIL)) (-3223 (((-112) $ $) NIL (|has| |#2| (-363)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-767)) NIL) (($ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ $) 15 (|has| |#2| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-767)) NIL) (($ $ (-917)) NIL) (($ $ (-563)) 18 (|has| |#2| (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ $) NIL) (($ (-407 (-563)) $) NIL (|has| |#2| (-363))) (($ $ (-407 (-563))) NIL (|has| |#2| (-363)))))
(((-813 |#1| |#2| |#3|) (-13 (-111 $ $) (-233) (-490 |#2|) (-10 -7 (IF (|has| |#2| (-363)) (-6 (-363)) |%noBranch|))) (-1093) (-896 |#1|) |#1|) (T -813))
NIL
(-13 (-111 $ $) (-233) (-490 |#2|) (-10 -7 (IF (|has| |#2| (-363)) (-6 (-363)) |%noBranch|)))
-((-1677 (((-112) $ $) NIL)) (-1326 (((-767) $) NIL)) (-2518 ((|#1| $) 10)) (-2131 (((-3 |#1| "failed") $) NIL)) (-2058 ((|#1| $) NIL)) (-3254 (((-767) $) 11)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3376 (($ |#1| (-767)) 9)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-4202 (($ $) NIL) (($ $ (-767)) NIL)) (-1693 (((-858) $) NIL) (($ |#1|) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-4329 (((-767) $) NIL)) (-2517 ((|#1| $) 10)) (-2130 (((-3 |#1| "failed") $) NIL)) (-2057 ((|#1| $) NIL)) (-1775 (((-767) $) 11)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-4340 (($ |#1| (-767)) 9)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-4203 (($ $) NIL) (($ $ (-767)) NIL)) (-1692 (((-858) $) NIL) (($ |#1|) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)))
(((-814 |#1|) (-266 |#1|) (-846)) (T -814))
NIL
(-266 |#1|)
-((-1677 (((-112) $ $) NIL)) (-3993 (((-640 |#1|) $) 29)) (-3749 (((-767) $) NIL)) (-4239 (($) NIL T CONST)) (-3181 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 20)) (-2131 (((-3 |#1| "failed") $) NIL)) (-2058 ((|#1| $) NIL)) (-3792 (($ $) 31)) (-3400 (((-3 $ "failed") $) NIL)) (-2884 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-3827 (((-112) $) NIL)) (-2768 ((|#1| $ (-563)) NIL)) (-4208 (((-767) $ (-563)) NIL)) (-4337 (($ $) 35)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3439 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 17)) (-1550 (((-112) $ $) 33)) (-3415 (((-767) $) 25)) (-3573 (((-1151) $) NIL)) (-3744 (($ $ $) NIL)) (-3916 (($ $ $) NIL)) (-1694 (((-1113) $) NIL)) (-3781 ((|#1| $) 30)) (-2760 (((-640 (-2 (|:| |gen| |#1|) (|:| -3368 (-767)))) $) NIL)) (-3028 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-1693 (((-858) $) NIL) (($ |#1|) NIL)) (-2254 (($) 15 T CONST)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 34)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ |#1| (-767)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-815 |#1|) (-13 (-842) (-1034 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-767))) (-15 -3781 (|#1| $)) (-15 -3792 ($ $)) (-15 -4337 ($ $)) (-15 -1550 ((-112) $ $)) (-15 -3916 ($ $ $)) (-15 -3744 ($ $ $)) (-15 -3439 ((-3 $ "failed") $ $)) (-15 -3181 ((-3 $ "failed") $ $)) (-15 -3439 ((-3 $ "failed") $ |#1|)) (-15 -3181 ((-3 $ "failed") $ |#1|)) (-15 -3028 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2884 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3749 ((-767) $)) (-15 -4208 ((-767) $ (-563))) (-15 -2768 (|#1| $ (-563))) (-15 -2760 ((-640 (-2 (|:| |gen| |#1|) (|:| -3368 (-767)))) $)) (-15 -3415 ((-767) $)) (-15 -3993 ((-640 |#1|) $)))) (-846)) (T -815))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-767)) (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3781 (*1 *2 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3792 (*1 *1 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-4337 (*1 *1 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-1550 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-815 *3)) (-4 *3 (-846)))) (-3916 (*1 *1 *1 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3744 (*1 *1 *1 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3439 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3181 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3439 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3181 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3028 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-815 *3)) (|:| |rm| (-815 *3)))) (-5 *1 (-815 *3)) (-4 *3 (-846)))) (-2884 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-815 *3)) (|:| |mm| (-815 *3)) (|:| |rm| (-815 *3)))) (-5 *1 (-815 *3)) (-4 *3 (-846)))) (-3749 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-815 *3)) (-4 *3 (-846)))) (-4208 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-767)) (-5 *1 (-815 *4)) (-4 *4 (-846)))) (-2768 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-2760 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3368 (-767))))) (-5 *1 (-815 *3)) (-4 *3 (-846)))) (-3415 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-815 *3)) (-4 *3 (-846)))) (-3993 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-815 *3)) (-4 *3 (-846)))))
-(-13 (-842) (-1034 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-767))) (-15 -3781 (|#1| $)) (-15 -3792 ($ $)) (-15 -4337 ($ $)) (-15 -1550 ((-112) $ $)) (-15 -3916 ($ $ $)) (-15 -3744 ($ $ $)) (-15 -3439 ((-3 $ "failed") $ $)) (-15 -3181 ((-3 $ "failed") $ $)) (-15 -3439 ((-3 $ "failed") $ |#1|)) (-15 -3181 ((-3 $ "failed") $ |#1|)) (-15 -3028 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2884 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3749 ((-767) $)) (-15 -4208 ((-767) $ (-563))) (-15 -2768 (|#1| $ (-563))) (-15 -2760 ((-640 (-2 (|:| |gen| |#1|) (|:| -3368 (-767)))) $)) (-15 -3415 ((-767) $)) (-15 -3993 ((-640 |#1|) $))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-1495 (((-3 $ "failed") $ $) 19)) (-1857 (((-563) $) 54)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3101 (((-112) $) 52)) (-3827 (((-112) $) 31)) (-1419 (((-112) $) 53)) (-3084 (($ $ $) 51)) (-1777 (($ $ $) 50)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3008 (((-3 $ "failed") $ $) 43)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 40)) (-2509 (($ $) 55)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1778 (((-112) $ $) 48)) (-1756 (((-112) $ $) 47)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 49)) (-1744 (((-112) $ $) 46)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-1677 (((-112) $ $) NIL)) (-3994 (((-640 |#1|) $) 29)) (-3750 (((-767) $) NIL)) (-2569 (($) NIL T CONST)) (-3817 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 20)) (-2130 (((-3 |#1| "failed") $) NIL)) (-2057 ((|#1| $) NIL)) (-3793 (($ $) 31)) (-3951 (((-3 $ "failed") $) NIL)) (-1366 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-3401 (((-112) $) NIL)) (-1347 ((|#1| $ (-563)) NIL)) (-1357 (((-767) $ (-563)) NIL)) (-3794 (($ $) 35)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-3828 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 17)) (-1396 (((-112) $ $) 33)) (-3419 (((-767) $) 25)) (-3854 (((-1151) $) NIL)) (-1375 (($ $ $) NIL)) (-1385 (($ $ $) NIL)) (-1693 (((-1113) $) NIL)) (-3782 ((|#1| $) 30)) (-1337 (((-640 (-2 (|:| |gen| |#1|) (|:| -3372 (-767)))) $) NIL)) (-3032 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-1692 (((-858) $) NIL) (($ |#1|) NIL)) (-2253 (($) 15 T CONST)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 34)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ |#1| (-767)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-815 |#1|) (-13 (-842) (-1034 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-767))) (-15 -3782 (|#1| $)) (-15 -3793 ($ $)) (-15 -3794 ($ $)) (-15 -1396 ((-112) $ $)) (-15 -1385 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -3828 ((-3 $ "failed") $ $)) (-15 -3817 ((-3 $ "failed") $ $)) (-15 -3828 ((-3 $ "failed") $ |#1|)) (-15 -3817 ((-3 $ "failed") $ |#1|)) (-15 -3032 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1366 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3750 ((-767) $)) (-15 -1357 ((-767) $ (-563))) (-15 -1347 (|#1| $ (-563))) (-15 -1337 ((-640 (-2 (|:| |gen| |#1|) (|:| -3372 (-767)))) $)) (-15 -3419 ((-767) $)) (-15 -3994 ((-640 |#1|) $)))) (-846)) (T -815))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-767)) (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3782 (*1 *2 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3793 (*1 *1 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3794 (*1 *1 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-1396 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-815 *3)) (-4 *3 (-846)))) (-1385 (*1 *1 *1 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-1375 (*1 *1 *1 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3828 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3817 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3828 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3817 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-3032 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-815 *3)) (|:| |rm| (-815 *3)))) (-5 *1 (-815 *3)) (-4 *3 (-846)))) (-1366 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-815 *3)) (|:| |mm| (-815 *3)) (|:| |rm| (-815 *3)))) (-5 *1 (-815 *3)) (-4 *3 (-846)))) (-3750 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-815 *3)) (-4 *3 (-846)))) (-1357 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-767)) (-5 *1 (-815 *4)) (-4 *4 (-846)))) (-1347 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-815 *2)) (-4 *2 (-846)))) (-1337 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3372 (-767))))) (-5 *1 (-815 *3)) (-4 *3 (-846)))) (-3419 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-815 *3)) (-4 *3 (-846)))) (-3994 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-815 *3)) (-4 *3 (-846)))))
+(-13 (-842) (-1034 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-767))) (-15 -3782 (|#1| $)) (-15 -3793 ($ $)) (-15 -3794 ($ $)) (-15 -1396 ((-112) $ $)) (-15 -1385 ($ $ $)) (-15 -1375 ($ $ $)) (-15 -3828 ((-3 $ "failed") $ $)) (-15 -3817 ((-3 $ "failed") $ $)) (-15 -3828 ((-3 $ "failed") $ |#1|)) (-15 -3817 ((-3 $ "failed") $ |#1|)) (-15 -3032 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1366 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3750 ((-767) $)) (-15 -1357 ((-767) $ (-563))) (-15 -1347 (|#1| $ (-563))) (-15 -1337 ((-640 (-2 (|:| |gen| |#1|) (|:| -3372 (-767)))) $)) (-15 -3419 ((-767) $)) (-15 -3994 ((-640 |#1|) $))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-3905 (((-3 $ "failed") $ $) 19)) (-2807 (((-563) $) 54)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-3414 (((-112) $) 52)) (-3401 (((-112) $) 31)) (-3426 (((-112) $) 53)) (-3088 (($ $ $) 51)) (-1776 (($ $ $) 50)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-3012 (((-3 $ "failed") $ $) 43)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 40)) (-1462 (($ $) 55)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1779 (((-112) $ $) 48)) (-1754 (((-112) $ $) 47)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 49)) (-1743 (((-112) $ $) 46)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-816) (-140)) (T -816))
NIL
(-13 (-555) (-844))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-290) . T) ((-555) . T) ((-643 $) . T) ((-713 $) . T) ((-722) . T) ((-787) . T) ((-788) . T) ((-790) . T) ((-791) . T) ((-844) . T) ((-846) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-2389 (($ (-1113)) 7)) (-1418 (((-112) $ (-1151) (-1113)) 15)) (-3842 (((-818) $) 12)) (-3602 (((-818) $) 11)) (-3425 (((-1262) $) 9)) (-2304 (((-112) $ (-1113)) 16)))
-(((-817) (-10 -8 (-15 -2389 ($ (-1113))) (-15 -3425 ((-1262) $)) (-15 -3602 ((-818) $)) (-15 -3842 ((-818) $)) (-15 -1418 ((-112) $ (-1151) (-1113))) (-15 -2304 ((-112) $ (-1113))))) (T -817))
-((-2304 (*1 *2 *1 *3) (-12 (-5 *3 (-1113)) (-5 *2 (-112)) (-5 *1 (-817)))) (-1418 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-1113)) (-5 *2 (-112)) (-5 *1 (-817)))) (-3842 (*1 *2 *1) (-12 (-5 *2 (-818)) (-5 *1 (-817)))) (-3602 (*1 *2 *1) (-12 (-5 *2 (-818)) (-5 *1 (-817)))) (-3425 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-817)))) (-2389 (*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-817)))))
-(-10 -8 (-15 -2389 ($ (-1113))) (-15 -3425 ((-1262) $)) (-15 -3602 ((-818) $)) (-15 -3842 ((-818) $)) (-15 -1418 ((-112) $ (-1151) (-1113))) (-15 -2304 ((-112) $ (-1113))))
-((-3335 (((-1262) $ (-819)) 12)) (-1653 (((-1262) $ (-1169)) 32)) (-4275 (((-1262) $ (-1151) (-1151)) 34)) (-1625 (((-1262) $ (-1151)) 33)) (-4088 (((-1262) $) 19)) (-3455 (((-1262) $ (-563)) 28)) (-3452 (((-1262) $ (-225)) 30)) (-3151 (((-1262) $) 18)) (-1559 (((-1262) $) 26)) (-2590 (((-1262) $) 25)) (-2023 (((-1262) $) 23)) (-2055 (((-1262) $) 24)) (-1904 (((-1262) $) 22)) (-1767 (((-1262) $) 21)) (-2267 (((-1262) $) 20)) (-3992 (((-1262) $) 16)) (-1819 (((-1262) $) 17)) (-4374 (((-1262) $) 15)) (-1426 (((-1262) $) 14)) (-2599 (((-1262) $) 13)) (-2008 (($ (-1151) (-819)) 9)) (-4143 (($ (-1151) (-1151) (-819)) 8)) (-3157 (((-1169) $) 51)) (-3624 (((-1169) $) 55)) (-2589 (((-2 (|:| |cd| (-1151)) (|:| -3348 (-1151))) $) 54)) (-2958 (((-1151) $) 52)) (-4343 (((-1262) $) 41)) (-2944 (((-563) $) 49)) (-4317 (((-225) $) 50)) (-1342 (((-1262) $) 40)) (-2493 (((-1262) $) 48)) (-3239 (((-1262) $) 47)) (-4238 (((-1262) $) 45)) (-3725 (((-1262) $) 46)) (-2263 (((-1262) $) 44)) (-4241 (((-1262) $) 43)) (-1328 (((-1262) $) 42)) (-1839 (((-1262) $) 38)) (-3613 (((-1262) $) 39)) (-1683 (((-1262) $) 37)) (-2494 (((-1262) $) 36)) (-2342 (((-1262) $) 35)) (-2987 (((-1262) $) 11)))
-(((-818) (-10 -8 (-15 -4143 ($ (-1151) (-1151) (-819))) (-15 -2008 ($ (-1151) (-819))) (-15 -2987 ((-1262) $)) (-15 -3335 ((-1262) $ (-819))) (-15 -2599 ((-1262) $)) (-15 -1426 ((-1262) $)) (-15 -4374 ((-1262) $)) (-15 -3992 ((-1262) $)) (-15 -1819 ((-1262) $)) (-15 -3151 ((-1262) $)) (-15 -4088 ((-1262) $)) (-15 -2267 ((-1262) $)) (-15 -1767 ((-1262) $)) (-15 -1904 ((-1262) $)) (-15 -2023 ((-1262) $)) (-15 -2055 ((-1262) $)) (-15 -2590 ((-1262) $)) (-15 -1559 ((-1262) $)) (-15 -3455 ((-1262) $ (-563))) (-15 -3452 ((-1262) $ (-225))) (-15 -1653 ((-1262) $ (-1169))) (-15 -1625 ((-1262) $ (-1151))) (-15 -4275 ((-1262) $ (-1151) (-1151))) (-15 -2342 ((-1262) $)) (-15 -2494 ((-1262) $)) (-15 -1683 ((-1262) $)) (-15 -1839 ((-1262) $)) (-15 -3613 ((-1262) $)) (-15 -1342 ((-1262) $)) (-15 -4343 ((-1262) $)) (-15 -1328 ((-1262) $)) (-15 -4241 ((-1262) $)) (-15 -2263 ((-1262) $)) (-15 -4238 ((-1262) $)) (-15 -3725 ((-1262) $)) (-15 -3239 ((-1262) $)) (-15 -2493 ((-1262) $)) (-15 -2944 ((-563) $)) (-15 -4317 ((-225) $)) (-15 -3157 ((-1169) $)) (-15 -2958 ((-1151) $)) (-15 -2589 ((-2 (|:| |cd| (-1151)) (|:| -3348 (-1151))) $)) (-15 -3624 ((-1169) $)))) (T -818))
-((-3624 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-818)))) (-2589 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1151)) (|:| -3348 (-1151)))) (-5 *1 (-818)))) (-2958 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-818)))) (-3157 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-818)))) (-4317 (*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-818)))) (-2944 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-818)))) (-2493 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3239 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3725 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-4238 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-2263 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-4241 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-1328 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-4343 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-1342 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3613 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-1839 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-1683 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-2494 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-2342 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-4275 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-818)))) (-1625 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-818)))) (-1653 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-818)))) (-3452 (*1 *2 *1 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1262)) (-5 *1 (-818)))) (-3455 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-818)))) (-1559 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-2590 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-2055 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-2023 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-1904 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-1767 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-2267 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-4088 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3151 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-1819 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3992 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-4374 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-1426 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-2599 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3335 (*1 *2 *1 *3) (-12 (-5 *3 (-819)) (-5 *2 (-1262)) (-5 *1 (-818)))) (-2987 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-2008 (*1 *1 *2 *3) (-12 (-5 *2 (-1151)) (-5 *3 (-819)) (-5 *1 (-818)))) (-4143 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1151)) (-5 *3 (-819)) (-5 *1 (-818)))))
-(-10 -8 (-15 -4143 ($ (-1151) (-1151) (-819))) (-15 -2008 ($ (-1151) (-819))) (-15 -2987 ((-1262) $)) (-15 -3335 ((-1262) $ (-819))) (-15 -2599 ((-1262) $)) (-15 -1426 ((-1262) $)) (-15 -4374 ((-1262) $)) (-15 -3992 ((-1262) $)) (-15 -1819 ((-1262) $)) (-15 -3151 ((-1262) $)) (-15 -4088 ((-1262) $)) (-15 -2267 ((-1262) $)) (-15 -1767 ((-1262) $)) (-15 -1904 ((-1262) $)) (-15 -2023 ((-1262) $)) (-15 -2055 ((-1262) $)) (-15 -2590 ((-1262) $)) (-15 -1559 ((-1262) $)) (-15 -3455 ((-1262) $ (-563))) (-15 -3452 ((-1262) $ (-225))) (-15 -1653 ((-1262) $ (-1169))) (-15 -1625 ((-1262) $ (-1151))) (-15 -4275 ((-1262) $ (-1151) (-1151))) (-15 -2342 ((-1262) $)) (-15 -2494 ((-1262) $)) (-15 -1683 ((-1262) $)) (-15 -1839 ((-1262) $)) (-15 -3613 ((-1262) $)) (-15 -1342 ((-1262) $)) (-15 -4343 ((-1262) $)) (-15 -1328 ((-1262) $)) (-15 -4241 ((-1262) $)) (-15 -2263 ((-1262) $)) (-15 -4238 ((-1262) $)) (-15 -3725 ((-1262) $)) (-15 -3239 ((-1262) $)) (-15 -2493 ((-1262) $)) (-15 -2944 ((-563) $)) (-15 -4317 ((-225) $)) (-15 -3157 ((-1169) $)) (-15 -2958 ((-1151) $)) (-15 -2589 ((-2 (|:| |cd| (-1151)) (|:| -3348 (-1151))) $)) (-15 -3624 ((-1169) $)))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 10)) (-3232 (($) 13)) (-2503 (($) 11)) (-2367 (($) 14)) (-4061 (($) 12)) (-1718 (((-112) $ $) 8)))
-(((-819) (-13 (-1093) (-10 -8 (-15 -2503 ($)) (-15 -3232 ($)) (-15 -2367 ($)) (-15 -4061 ($))))) (T -819))
-((-2503 (*1 *1) (-5 *1 (-819))) (-3232 (*1 *1) (-5 *1 (-819))) (-2367 (*1 *1) (-5 *1 (-819))) (-4061 (*1 *1) (-5 *1 (-819))))
-(-13 (-1093) (-10 -8 (-15 -2503 ($)) (-15 -3232 ($)) (-15 -2367 ($)) (-15 -4061 ($))))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 21) (($ (-1169)) 17)) (-4291 (((-112) $) 10)) (-2694 (((-112) $) 9)) (-1527 (((-112) $) 11)) (-1344 (((-112) $) 8)) (-1718 (((-112) $ $) 19)))
-(((-820) (-13 (-1093) (-10 -8 (-15 -1693 ($ (-1169))) (-15 -1344 ((-112) $)) (-15 -2694 ((-112) $)) (-15 -4291 ((-112) $)) (-15 -1527 ((-112) $))))) (T -820))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-820)))) (-1344 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))) (-2694 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))) (-4291 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))) (-1527 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))))
-(-13 (-1093) (-10 -8 (-15 -1693 ($ (-1169))) (-15 -1344 ((-112) $)) (-15 -2694 ((-112) $)) (-15 -4291 ((-112) $)) (-15 -1527 ((-112) $))))
-((-1677 (((-112) $ $) NIL)) (-2765 (($ (-820) (-640 (-1169))) 24)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3468 (((-820) $) 25)) (-1659 (((-640 (-1169)) $) 26)) (-1693 (((-858) $) 23)) (-1718 (((-112) $ $) NIL)))
-(((-821) (-13 (-1093) (-10 -8 (-15 -3468 ((-820) $)) (-15 -1659 ((-640 (-1169)) $)) (-15 -2765 ($ (-820) (-640 (-1169))))))) (T -821))
-((-3468 (*1 *2 *1) (-12 (-5 *2 (-820)) (-5 *1 (-821)))) (-1659 (*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-821)))) (-2765 (*1 *1 *2 *3) (-12 (-5 *2 (-820)) (-5 *3 (-640 (-1169))) (-5 *1 (-821)))))
-(-13 (-1093) (-10 -8 (-15 -3468 ((-820) $)) (-15 -1659 ((-640 (-1169)) $)) (-15 -2765 ($ (-820) (-640 (-1169))))))
-((-3741 (((-1262) (-818) (-316 |#1|) (-112)) 23) (((-1262) (-818) (-316 |#1|)) 79) (((-1151) (-316 |#1|) (-112)) 78) (((-1151) (-316 |#1|)) 77)))
-(((-822 |#1|) (-10 -7 (-15 -3741 ((-1151) (-316 |#1|))) (-15 -3741 ((-1151) (-316 |#1|) (-112))) (-15 -3741 ((-1262) (-818) (-316 |#1|))) (-15 -3741 ((-1262) (-818) (-316 |#1|) (-112)))) (-13 (-824) (-846) (-1045))) (T -822))
-((-3741 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-818)) (-5 *4 (-316 *6)) (-5 *5 (-112)) (-4 *6 (-13 (-824) (-846) (-1045))) (-5 *2 (-1262)) (-5 *1 (-822 *6)))) (-3741 (*1 *2 *3 *4) (-12 (-5 *3 (-818)) (-5 *4 (-316 *5)) (-4 *5 (-13 (-824) (-846) (-1045))) (-5 *2 (-1262)) (-5 *1 (-822 *5)))) (-3741 (*1 *2 *3 *4) (-12 (-5 *3 (-316 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-824) (-846) (-1045))) (-5 *2 (-1151)) (-5 *1 (-822 *5)))) (-3741 (*1 *2 *3) (-12 (-5 *3 (-316 *4)) (-4 *4 (-13 (-824) (-846) (-1045))) (-5 *2 (-1151)) (-5 *1 (-822 *4)))))
-(-10 -7 (-15 -3741 ((-1151) (-316 |#1|))) (-15 -3741 ((-1151) (-316 |#1|) (-112))) (-15 -3741 ((-1262) (-818) (-316 |#1|))) (-15 -3741 ((-1262) (-818) (-316 |#1|) (-112))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-2405 ((|#1| $) 10)) (-2517 (($ |#1|) 9)) (-3827 (((-112) $) NIL)) (-2588 (($ |#2| (-767)) NIL)) (-2048 (((-767) $) NIL)) (-2726 ((|#2| $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-4202 (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-4167 (((-767) $) NIL)) (-1693 (((-858) $) 17) (($ (-563)) NIL) (($ |#2|) NIL (|has| |#2| (-172)))) (-4319 ((|#2| $ (-767)) NIL)) (-1675 (((-767)) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 12) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-823 |#1| |#2|) (-13 (-704 |#2|) (-10 -8 (IF (|has| |#1| (-233)) (-6 (-233)) |%noBranch|) (-15 -2517 ($ |#1|)) (-15 -2405 (|#1| $)))) (-704 |#2|) (-1045)) (T -823))
-((-2517 (*1 *1 *2) (-12 (-4 *3 (-1045)) (-5 *1 (-823 *2 *3)) (-4 *2 (-704 *3)))) (-2405 (*1 *2 *1) (-12 (-4 *2 (-704 *3)) (-5 *1 (-823 *2 *3)) (-4 *3 (-1045)))))
-(-13 (-704 |#2|) (-10 -8 (IF (|has| |#1| (-233)) (-6 (-233)) |%noBranch|) (-15 -2517 ($ |#1|)) (-15 -2405 (|#1| $))))
-((-3741 (((-1262) (-818) $ (-112)) 9) (((-1262) (-818) $) 8) (((-1151) $ (-112)) 7) (((-1151) $) 6)))
+((-3271 (($ (-1113)) 7)) (-3318 (((-112) $ (-1151) (-1113)) 15)) (-3304 (((-818) $) 12)) (-3292 (((-818) $) 11)) (-3281 (((-1262) $) 9)) (-3328 (((-112) $ (-1113)) 16)))
+(((-817) (-10 -8 (-15 -3271 ($ (-1113))) (-15 -3281 ((-1262) $)) (-15 -3292 ((-818) $)) (-15 -3304 ((-818) $)) (-15 -3318 ((-112) $ (-1151) (-1113))) (-15 -3328 ((-112) $ (-1113))))) (T -817))
+((-3328 (*1 *2 *1 *3) (-12 (-5 *3 (-1113)) (-5 *2 (-112)) (-5 *1 (-817)))) (-3318 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-1113)) (-5 *2 (-112)) (-5 *1 (-817)))) (-3304 (*1 *2 *1) (-12 (-5 *2 (-818)) (-5 *1 (-817)))) (-3292 (*1 *2 *1) (-12 (-5 *2 (-818)) (-5 *1 (-817)))) (-3281 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-817)))) (-3271 (*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-817)))))
+(-10 -8 (-15 -3271 ($ (-1113))) (-15 -3281 ((-1262) $)) (-15 -3292 ((-818) $)) (-15 -3304 ((-818) $)) (-15 -3318 ((-112) $ (-1151) (-1113))) (-15 -3328 ((-112) $ (-1113))))
+((-3370 (((-1262) $ (-819)) 12)) (-3569 (((-1262) $ (-1169)) 32)) (-3590 (((-1262) $ (-1151) (-1151)) 34)) (-3580 (((-1262) $ (-1151)) 33)) (-3455 (((-1262) $) 19)) (-3543 (((-1262) $ (-563)) 28)) (-3554 (((-1262) $ (-225)) 30)) (-3444 (((-1262) $) 18)) (-3530 (((-1262) $) 26)) (-3520 (((-1262) $) 25)) (-3497 (((-1262) $) 23)) (-3509 (((-1262) $) 24)) (-3487 (((-1262) $) 22)) (-3477 (((-1262) $) 21)) (-3467 (((-1262) $) 20)) (-3420 (((-1262) $) 16)) (-3433 (((-1262) $) 17)) (-3407 (((-1262) $) 15)) (-3395 (((-1262) $) 14)) (-3382 (((-1262) $) 13)) (-3348 (($ (-1151) (-819)) 9)) (-3338 (($ (-1151) (-1151) (-819)) 8)) (-3789 (((-1169) $) 51)) (-3823 (((-1169) $) 55)) (-3811 (((-2 (|:| |cd| (-1151)) (|:| -3352 (-1151))) $) 54)) (-3798 (((-1151) $) 52)) (-3669 (((-1262) $) 41)) (-3766 (((-563) $) 49)) (-3776 (((-225) $) 50)) (-3658 (((-1262) $) 40)) (-3754 (((-1262) $) 48)) (-3744 (((-1262) $) 47)) (-3720 (((-1262) $) 45)) (-3733 (((-1262) $) 46)) (-3707 (((-1262) $) 44)) (-3693 (((-1262) $) 43)) (-3681 (((-1262) $) 42)) (-3636 (((-1262) $) 38)) (-3647 (((-1262) $) 39)) (-3624 (((-1262) $) 37)) (-3613 (((-1262) $) 36)) (-3602 (((-1262) $) 35)) (-3359 (((-1262) $) 11)))
+(((-818) (-10 -8 (-15 -3338 ($ (-1151) (-1151) (-819))) (-15 -3348 ($ (-1151) (-819))) (-15 -3359 ((-1262) $)) (-15 -3370 ((-1262) $ (-819))) (-15 -3382 ((-1262) $)) (-15 -3395 ((-1262) $)) (-15 -3407 ((-1262) $)) (-15 -3420 ((-1262) $)) (-15 -3433 ((-1262) $)) (-15 -3444 ((-1262) $)) (-15 -3455 ((-1262) $)) (-15 -3467 ((-1262) $)) (-15 -3477 ((-1262) $)) (-15 -3487 ((-1262) $)) (-15 -3497 ((-1262) $)) (-15 -3509 ((-1262) $)) (-15 -3520 ((-1262) $)) (-15 -3530 ((-1262) $)) (-15 -3543 ((-1262) $ (-563))) (-15 -3554 ((-1262) $ (-225))) (-15 -3569 ((-1262) $ (-1169))) (-15 -3580 ((-1262) $ (-1151))) (-15 -3590 ((-1262) $ (-1151) (-1151))) (-15 -3602 ((-1262) $)) (-15 -3613 ((-1262) $)) (-15 -3624 ((-1262) $)) (-15 -3636 ((-1262) $)) (-15 -3647 ((-1262) $)) (-15 -3658 ((-1262) $)) (-15 -3669 ((-1262) $)) (-15 -3681 ((-1262) $)) (-15 -3693 ((-1262) $)) (-15 -3707 ((-1262) $)) (-15 -3720 ((-1262) $)) (-15 -3733 ((-1262) $)) (-15 -3744 ((-1262) $)) (-15 -3754 ((-1262) $)) (-15 -3766 ((-563) $)) (-15 -3776 ((-225) $)) (-15 -3789 ((-1169) $)) (-15 -3798 ((-1151) $)) (-15 -3811 ((-2 (|:| |cd| (-1151)) (|:| -3352 (-1151))) $)) (-15 -3823 ((-1169) $)))) (T -818))
+((-3823 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-818)))) (-3811 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1151)) (|:| -3352 (-1151)))) (-5 *1 (-818)))) (-3798 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-818)))) (-3789 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-818)))) (-3776 (*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-818)))) (-3766 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-818)))) (-3754 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3744 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3733 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3720 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3707 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3693 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3681 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3669 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3658 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3647 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3636 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3624 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3613 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3602 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3590 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-818)))) (-3580 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-818)))) (-3569 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-818)))) (-3554 (*1 *2 *1 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1262)) (-5 *1 (-818)))) (-3543 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-818)))) (-3530 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3520 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3509 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3497 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3487 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3477 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3467 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3455 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3444 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3433 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3420 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3407 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3395 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3382 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3370 (*1 *2 *1 *3) (-12 (-5 *3 (-819)) (-5 *2 (-1262)) (-5 *1 (-818)))) (-3359 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))) (-3348 (*1 *1 *2 *3) (-12 (-5 *2 (-1151)) (-5 *3 (-819)) (-5 *1 (-818)))) (-3338 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1151)) (-5 *3 (-819)) (-5 *1 (-818)))))
+(-10 -8 (-15 -3338 ($ (-1151) (-1151) (-819))) (-15 -3348 ($ (-1151) (-819))) (-15 -3359 ((-1262) $)) (-15 -3370 ((-1262) $ (-819))) (-15 -3382 ((-1262) $)) (-15 -3395 ((-1262) $)) (-15 -3407 ((-1262) $)) (-15 -3420 ((-1262) $)) (-15 -3433 ((-1262) $)) (-15 -3444 ((-1262) $)) (-15 -3455 ((-1262) $)) (-15 -3467 ((-1262) $)) (-15 -3477 ((-1262) $)) (-15 -3487 ((-1262) $)) (-15 -3497 ((-1262) $)) (-15 -3509 ((-1262) $)) (-15 -3520 ((-1262) $)) (-15 -3530 ((-1262) $)) (-15 -3543 ((-1262) $ (-563))) (-15 -3554 ((-1262) $ (-225))) (-15 -3569 ((-1262) $ (-1169))) (-15 -3580 ((-1262) $ (-1151))) (-15 -3590 ((-1262) $ (-1151) (-1151))) (-15 -3602 ((-1262) $)) (-15 -3613 ((-1262) $)) (-15 -3624 ((-1262) $)) (-15 -3636 ((-1262) $)) (-15 -3647 ((-1262) $)) (-15 -3658 ((-1262) $)) (-15 -3669 ((-1262) $)) (-15 -3681 ((-1262) $)) (-15 -3693 ((-1262) $)) (-15 -3707 ((-1262) $)) (-15 -3720 ((-1262) $)) (-15 -3733 ((-1262) $)) (-15 -3744 ((-1262) $)) (-15 -3754 ((-1262) $)) (-15 -3766 ((-563) $)) (-15 -3776 ((-225) $)) (-15 -3789 ((-1169) $)) (-15 -3798 ((-1151) $)) (-15 -3811 ((-2 (|:| |cd| (-1151)) (|:| -3352 (-1151))) $)) (-15 -3823 ((-1169) $)))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 10)) (-3850 (($) 13)) (-3859 (($) 11)) (-3841 (($) 14)) (-3830 (($) 12)) (-1718 (((-112) $ $) 8)))
+(((-819) (-13 (-1093) (-10 -8 (-15 -3859 ($)) (-15 -3850 ($)) (-15 -3841 ($)) (-15 -3830 ($))))) (T -819))
+((-3859 (*1 *1) (-5 *1 (-819))) (-3850 (*1 *1) (-5 *1 (-819))) (-3841 (*1 *1) (-5 *1 (-819))) (-3830 (*1 *1) (-5 *1 (-819))))
+(-13 (-1093) (-10 -8 (-15 -3859 ($)) (-15 -3850 ($)) (-15 -3841 ($)) (-15 -3830 ($))))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 21) (($ (-1169)) 17)) (-2709 (((-112) $) 10)) (-2719 (((-112) $) 9)) (-2699 (((-112) $) 11)) (-2730 (((-112) $) 8)) (-1718 (((-112) $ $) 19)))
+(((-820) (-13 (-1093) (-10 -8 (-15 -1692 ($ (-1169))) (-15 -2730 ((-112) $)) (-15 -2719 ((-112) $)) (-15 -2709 ((-112) $)) (-15 -2699 ((-112) $))))) (T -820))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-820)))) (-2730 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))) (-2719 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))) (-2709 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))) (-2699 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))))
+(-13 (-1093) (-10 -8 (-15 -1692 ($ (-1169))) (-15 -2730 ((-112) $)) (-15 -2719 ((-112) $)) (-15 -2709 ((-112) $)) (-15 -2699 ((-112) $))))
+((-1677 (((-112) $ $) NIL)) (-3866 (($ (-820) (-640 (-1169))) 24)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3888 (((-820) $) 25)) (-3877 (((-640 (-1169)) $) 26)) (-1692 (((-858) $) 23)) (-1718 (((-112) $ $) NIL)))
+(((-821) (-13 (-1093) (-10 -8 (-15 -3888 ((-820) $)) (-15 -3877 ((-640 (-1169)) $)) (-15 -3866 ($ (-820) (-640 (-1169))))))) (T -821))
+((-3888 (*1 *2 *1) (-12 (-5 *2 (-820)) (-5 *1 (-821)))) (-3877 (*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-821)))) (-3866 (*1 *1 *2 *3) (-12 (-5 *2 (-820)) (-5 *3 (-640 (-1169))) (-5 *1 (-821)))))
+(-13 (-1093) (-10 -8 (-15 -3888 ((-820) $)) (-15 -3877 ((-640 (-1169)) $)) (-15 -3866 ($ (-820) (-640 (-1169))))))
+((-2742 (((-1262) (-818) (-316 |#1|) (-112)) 23) (((-1262) (-818) (-316 |#1|)) 79) (((-1151) (-316 |#1|) (-112)) 78) (((-1151) (-316 |#1|)) 77)))
+(((-822 |#1|) (-10 -7 (-15 -2742 ((-1151) (-316 |#1|))) (-15 -2742 ((-1151) (-316 |#1|) (-112))) (-15 -2742 ((-1262) (-818) (-316 |#1|))) (-15 -2742 ((-1262) (-818) (-316 |#1|) (-112)))) (-13 (-824) (-846) (-1045))) (T -822))
+((-2742 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-818)) (-5 *4 (-316 *6)) (-5 *5 (-112)) (-4 *6 (-13 (-824) (-846) (-1045))) (-5 *2 (-1262)) (-5 *1 (-822 *6)))) (-2742 (*1 *2 *3 *4) (-12 (-5 *3 (-818)) (-5 *4 (-316 *5)) (-4 *5 (-13 (-824) (-846) (-1045))) (-5 *2 (-1262)) (-5 *1 (-822 *5)))) (-2742 (*1 *2 *3 *4) (-12 (-5 *3 (-316 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-824) (-846) (-1045))) (-5 *2 (-1151)) (-5 *1 (-822 *5)))) (-2742 (*1 *2 *3) (-12 (-5 *3 (-316 *4)) (-4 *4 (-13 (-824) (-846) (-1045))) (-5 *2 (-1151)) (-5 *1 (-822 *4)))))
+(-10 -7 (-15 -2742 ((-1151) (-316 |#1|))) (-15 -2742 ((-1151) (-316 |#1|) (-112))) (-15 -2742 ((-1262) (-818) (-316 |#1|))) (-15 -2742 ((-1262) (-818) (-316 |#1|) (-112))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-2754 ((|#1| $) 10)) (-2516 (($ |#1|) 9)) (-3401 (((-112) $) NIL)) (-2587 (($ |#2| (-767)) NIL)) (-3908 (((-767) $) NIL)) (-2725 ((|#2| $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-4203 (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-3871 (((-767) $) NIL)) (-1692 (((-858) $) 17) (($ (-563)) NIL) (($ |#2|) NIL (|has| |#2| (-172)))) (-3244 ((|#2| $ (-767)) NIL)) (-3914 (((-767)) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 12) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-823 |#1| |#2|) (-13 (-704 |#2|) (-10 -8 (IF (|has| |#1| (-233)) (-6 (-233)) |%noBranch|) (-15 -2516 ($ |#1|)) (-15 -2754 (|#1| $)))) (-704 |#2|) (-1045)) (T -823))
+((-2516 (*1 *1 *2) (-12 (-4 *3 (-1045)) (-5 *1 (-823 *2 *3)) (-4 *2 (-704 *3)))) (-2754 (*1 *2 *1) (-12 (-4 *2 (-704 *3)) (-5 *1 (-823 *2 *3)) (-4 *3 (-1045)))))
+(-13 (-704 |#2|) (-10 -8 (IF (|has| |#1| (-233)) (-6 (-233)) |%noBranch|) (-15 -2516 ($ |#1|)) (-15 -2754 (|#1| $))))
+((-2742 (((-1262) (-818) $ (-112)) 9) (((-1262) (-818) $) 8) (((-1151) $ (-112)) 7) (((-1151) $) 6)))
(((-824) (-140)) (T -824))
-((-3741 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-824)) (-5 *3 (-818)) (-5 *4 (-112)) (-5 *2 (-1262)))) (-3741 (*1 *2 *3 *1) (-12 (-4 *1 (-824)) (-5 *3 (-818)) (-5 *2 (-1262)))) (-3741 (*1 *2 *1 *3) (-12 (-4 *1 (-824)) (-5 *3 (-112)) (-5 *2 (-1151)))) (-3741 (*1 *2 *1) (-12 (-4 *1 (-824)) (-5 *2 (-1151)))))
-(-13 (-10 -8 (-15 -3741 ((-1151) $)) (-15 -3741 ((-1151) $ (-112))) (-15 -3741 ((-1262) (-818) $)) (-15 -3741 ((-1262) (-818) $ (-112)))))
-((-2881 (((-312) (-1151) (-1151)) 12)) (-3257 (((-112) (-1151) (-1151)) 33)) (-2235 (((-112) (-1151)) 32)) (-3582 (((-52) (-1151)) 25)) (-1939 (((-52) (-1151)) 23)) (-4242 (((-52) (-818)) 17)) (-4287 (((-640 (-1151)) (-1151)) 28)) (-3026 (((-640 (-1151))) 27)))
-(((-825) (-10 -7 (-15 -4242 ((-52) (-818))) (-15 -1939 ((-52) (-1151))) (-15 -3582 ((-52) (-1151))) (-15 -3026 ((-640 (-1151)))) (-15 -4287 ((-640 (-1151)) (-1151))) (-15 -2235 ((-112) (-1151))) (-15 -3257 ((-112) (-1151) (-1151))) (-15 -2881 ((-312) (-1151) (-1151))))) (T -825))
-((-2881 (*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-312)) (-5 *1 (-825)))) (-3257 (*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-112)) (-5 *1 (-825)))) (-2235 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-112)) (-5 *1 (-825)))) (-4287 (*1 *2 *3) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-825)) (-5 *3 (-1151)))) (-3026 (*1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-825)))) (-3582 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-52)) (-5 *1 (-825)))) (-1939 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-52)) (-5 *1 (-825)))) (-4242 (*1 *2 *3) (-12 (-5 *3 (-818)) (-5 *2 (-52)) (-5 *1 (-825)))))
-(-10 -7 (-15 -4242 ((-52) (-818))) (-15 -1939 ((-52) (-1151))) (-15 -3582 ((-52) (-1151))) (-15 -3026 ((-640 (-1151)))) (-15 -4287 ((-640 (-1151)) (-1151))) (-15 -2235 ((-112) (-1151))) (-15 -3257 ((-112) (-1151) (-1151))) (-15 -2881 ((-312) (-1151) (-1151))))
-((-1677 (((-112) $ $) 19)) (-2583 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-4314 (($ $ $) 72)) (-4149 (((-112) $ $) 73)) (-2759 (((-112) $ (-767)) 8)) (-1584 (($ (-640 |#1|)) 68) (($) 67)) (-2812 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4407)))) (-4239 (($) 7 T CONST)) (-4005 (($ $) 62)) (-3813 (($ $) 58 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-2705 (($ |#1| $) 47 (|has| $ (-6 -4407))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4407)))) (-1459 (($ |#1| $) 57 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4407)))) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2539 (((-112) $ $) 64)) (-2581 (((-112) $ (-767)) 9)) (-3084 ((|#1| $) 78)) (-2878 (($ $ $) 81)) (-3164 (($ $ $) 80)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1777 ((|#1| $) 79)) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22)) (-2550 (($ $ $) 69)) (-2964 ((|#1| $) 39)) (-1812 (($ |#1| $) 40) (($ |#1| $ (-767)) 63)) (-1694 (((-1113) $) 21)) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3755 ((|#1| $) 41)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2757 (((-640 (-2 (|:| -2557 |#1|) (|:| -1709 (-767)))) $) 61)) (-1629 (($ $ |#1|) 71) (($ $ $) 70)) (-3890 (($) 49) (($ (-640 |#1|)) 48)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-2220 (((-536) $) 59 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 50)) (-1693 (((-858) $) 18)) (-2534 (($ (-640 |#1|)) 66) (($) 65)) (-2233 (($ (-640 |#1|)) 42)) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20)) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-2742 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-824)) (-5 *3 (-818)) (-5 *4 (-112)) (-5 *2 (-1262)))) (-2742 (*1 *2 *3 *1) (-12 (-4 *1 (-824)) (-5 *3 (-818)) (-5 *2 (-1262)))) (-2742 (*1 *2 *1 *3) (-12 (-4 *1 (-824)) (-5 *3 (-112)) (-5 *2 (-1151)))) (-2742 (*1 *2 *1) (-12 (-4 *1 (-824)) (-5 *2 (-1151)))))
+(-13 (-10 -8 (-15 -2742 ((-1151) $)) (-15 -2742 ((-1151) $ (-112))) (-15 -2742 ((-1262) (-818) $)) (-15 -2742 ((-1262) (-818) $ (-112)))))
+((-2842 (((-312) (-1151) (-1151)) 12)) (-2831 (((-112) (-1151) (-1151)) 33)) (-2816 (((-112) (-1151)) 32)) (-2786 (((-52) (-1151)) 25)) (-2775 (((-52) (-1151)) 23)) (-2764 (((-52) (-818)) 17)) (-2806 (((-640 (-1151)) (-1151)) 28)) (-2796 (((-640 (-1151))) 27)))
+(((-825) (-10 -7 (-15 -2764 ((-52) (-818))) (-15 -2775 ((-52) (-1151))) (-15 -2786 ((-52) (-1151))) (-15 -2796 ((-640 (-1151)))) (-15 -2806 ((-640 (-1151)) (-1151))) (-15 -2816 ((-112) (-1151))) (-15 -2831 ((-112) (-1151) (-1151))) (-15 -2842 ((-312) (-1151) (-1151))))) (T -825))
+((-2842 (*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-312)) (-5 *1 (-825)))) (-2831 (*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-112)) (-5 *1 (-825)))) (-2816 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-112)) (-5 *1 (-825)))) (-2806 (*1 *2 *3) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-825)) (-5 *3 (-1151)))) (-2796 (*1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-825)))) (-2786 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-52)) (-5 *1 (-825)))) (-2775 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-52)) (-5 *1 (-825)))) (-2764 (*1 *2 *3) (-12 (-5 *3 (-818)) (-5 *2 (-52)) (-5 *1 (-825)))))
+(-10 -7 (-15 -2764 ((-52) (-818))) (-15 -2775 ((-52) (-1151))) (-15 -2786 ((-52) (-1151))) (-15 -2796 ((-640 (-1151)))) (-15 -2806 ((-640 (-1151)) (-1151))) (-15 -2816 ((-112) (-1151))) (-15 -2831 ((-112) (-1151) (-1151))) (-15 -2842 ((-312) (-1151) (-1151))))
+((-1677 (((-112) $ $) 19)) (-2582 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-3816 (($ $ $) 72)) (-3804 (((-112) $ $) 73)) (-3001 (((-112) $ (-767)) 8)) (-1582 (($ (-640 |#1|)) 68) (($) 67)) (-3678 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4408)))) (-2569 (($) 7 T CONST)) (-4194 (($ $) 62)) (-3814 (($ $) 58 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1691 (($ |#1| $) 47 (|has| $ (-6 -4408))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4408)))) (-1459 (($ |#1| $) 57 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4408)))) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-3845 (((-112) $ $) 64)) (-2514 (((-112) $ (-767)) 9)) (-3088 ((|#1| $) 78)) (-4265 (($ $ $) 81)) (-4300 (($ $ $) 80)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1776 ((|#1| $) 79)) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22)) (-3834 (($ $ $) 69)) (-2627 ((|#1| $) 39)) (-3867 (($ |#1| $) 40) (($ |#1| $ (-767)) 63)) (-1693 (((-1113) $) 21)) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-2808 ((|#1| $) 41)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-4182 (((-640 (-2 (|:| -2556 |#1|) (|:| -1708 (-767)))) $) 61)) (-3827 (($ $ |#1|) 71) (($ $ $) 70)) (-3863 (($) 49) (($ (-640 |#1|)) 48)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-2219 (((-536) $) 59 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 50)) (-1692 (((-858) $) 18)) (-2533 (($ (-640 |#1|)) 66) (($) 65)) (-2820 (($ (-640 |#1|)) 42)) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20)) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-826 |#1|) (-140) (-846)) (T -826))
-((-3084 (*1 *2 *1) (-12 (-4 *1 (-826 *2)) (-4 *2 (-846)))))
-(-13 (-732 |t#1|) (-964 |t#1|) (-10 -8 (-15 -3084 (|t#1| $))))
+((-3088 (*1 *2 *1) (-12 (-4 *1 (-826 *2)) (-4 *2 (-846)))))
+(-13 (-732 |t#1|) (-964 |t#1|) (-10 -8 (-15 -3088 (|t#1| $))))
(((-34) . T) ((-107 |#1|) . T) ((-102) . T) ((-610 (-858)) . T) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-235 |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-690 |#1|) . T) ((-732 |#1|) . T) ((-964 |#1|) . T) ((-1091 |#1|) . T) ((-1093) . T) ((-1208) . T))
-((-1929 (((-1262) (-1113) (-1113)) 47)) (-1913 (((-1262) (-817) (-52)) 44)) (-4019 (((-52) (-817)) 16)))
-(((-827) (-10 -7 (-15 -4019 ((-52) (-817))) (-15 -1913 ((-1262) (-817) (-52))) (-15 -1929 ((-1262) (-1113) (-1113))))) (T -827))
-((-1929 (*1 *2 *3 *3) (-12 (-5 *3 (-1113)) (-5 *2 (-1262)) (-5 *1 (-827)))) (-1913 (*1 *2 *3 *4) (-12 (-5 *3 (-817)) (-5 *4 (-52)) (-5 *2 (-1262)) (-5 *1 (-827)))) (-4019 (*1 *2 *3) (-12 (-5 *3 (-817)) (-5 *2 (-52)) (-5 *1 (-827)))))
-(-10 -7 (-15 -4019 ((-52) (-817))) (-15 -1913 ((-1262) (-817) (-52))) (-15 -1929 ((-1262) (-1113) (-1113))))
-((-2240 (((-829 |#2|) (-1 |#2| |#1|) (-829 |#1|) (-829 |#2|)) 12) (((-829 |#2|) (-1 |#2| |#1|) (-829 |#1|)) 13)))
-(((-828 |#1| |#2|) (-10 -7 (-15 -2240 ((-829 |#2|) (-1 |#2| |#1|) (-829 |#1|))) (-15 -2240 ((-829 |#2|) (-1 |#2| |#1|) (-829 |#1|) (-829 |#2|)))) (-1093) (-1093)) (T -828))
-((-2240 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-829 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-829 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *1 (-828 *5 *6)))) (-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-829 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *2 (-829 *6)) (-5 *1 (-828 *5 *6)))))
-(-10 -7 (-15 -2240 ((-829 |#2|) (-1 |#2| |#1|) (-829 |#1|))) (-15 -2240 ((-829 |#2|) (-1 |#2| |#1|) (-829 |#1|) (-829 |#2|))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL (|has| |#1| (-21)))) (-1495 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-1857 (((-563) $) NIL (|has| |#1| (-844)))) (-4239 (($) NIL (|has| |#1| (-21)) CONST)) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 15)) (-2058 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 9)) (-3400 (((-3 $ "failed") $) 40 (|has| |#1| (-844)))) (-3909 (((-3 (-407 (-563)) "failed") $) 49 (|has| |#1| (-545)))) (-2239 (((-112) $) 43 (|has| |#1| (-545)))) (-2651 (((-407 (-563)) $) 46 (|has| |#1| (-545)))) (-3101 (((-112) $) NIL (|has| |#1| (-844)))) (-3827 (((-112) $) NIL (|has| |#1| (-844)))) (-1419 (((-112) $) NIL (|has| |#1| (-844)))) (-3084 (($ $ $) NIL (|has| |#1| (-844)))) (-1777 (($ $ $) NIL (|has| |#1| (-844)))) (-3573 (((-1151) $) NIL)) (-2191 (($) 13)) (-1990 (((-112) $) 12)) (-1694 (((-1113) $) NIL)) (-1376 (((-112) $) 11)) (-1693 (((-858) $) 18) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) 8) (($ (-563)) NIL (-4032 (|has| |#1| (-844)) (|has| |#1| (-1034 (-563)))))) (-1675 (((-767)) 34 (|has| |#1| (-844)))) (-2509 (($ $) NIL (|has| |#1| (-844)))) (-2241 (($) 22 (|has| |#1| (-21)) CONST)) (-2254 (($) 31 (|has| |#1| (-844)) CONST)) (-1778 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1718 (((-112) $ $) 20)) (-1768 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1744 (((-112) $ $) 42 (|has| |#1| (-844)))) (-1826 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 27 (|has| |#1| (-21)))) (-1814 (($ $ $) 29 (|has| |#1| (-21)))) (** (($ $ (-917)) NIL (|has| |#1| (-844))) (($ $ (-767)) NIL (|has| |#1| (-844)))) (* (($ $ $) 37 (|has| |#1| (-844))) (($ (-563) $) 25 (|has| |#1| (-21))) (($ (-767) $) NIL (|has| |#1| (-21))) (($ (-917) $) NIL (|has| |#1| (-21)))))
-(((-829 |#1|) (-13 (-1093) (-411 |#1|) (-10 -8 (-15 -2191 ($)) (-15 -1376 ((-112) $)) (-15 -1990 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-844)) (-6 (-844)) |%noBranch|) (IF (|has| |#1| (-545)) (PROGN (-15 -2239 ((-112) $)) (-15 -2651 ((-407 (-563)) $)) (-15 -3909 ((-3 (-407 (-563)) "failed") $))) |%noBranch|))) (-1093)) (T -829))
-((-2191 (*1 *1) (-12 (-5 *1 (-829 *2)) (-4 *2 (-1093)))) (-1376 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-829 *3)) (-4 *3 (-1093)))) (-1990 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-829 *3)) (-4 *3 (-1093)))) (-2239 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-829 *3)) (-4 *3 (-545)) (-4 *3 (-1093)))) (-2651 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-829 *3)) (-4 *3 (-545)) (-4 *3 (-1093)))) (-3909 (*1 *2 *1) (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-829 *3)) (-4 *3 (-545)) (-4 *3 (-1093)))))
-(-13 (-1093) (-411 |#1|) (-10 -8 (-15 -2191 ($)) (-15 -1376 ((-112) $)) (-15 -1990 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-844)) (-6 (-844)) |%noBranch|) (IF (|has| |#1| (-545)) (PROGN (-15 -2239 ((-112) $)) (-15 -2651 ((-407 (-563)) $)) (-15 -3909 ((-3 (-407 (-563)) "failed") $))) |%noBranch|)))
-((-1693 (((-858) $) 11)))
-(((-830 |#1| |#2|) (-10 -8 (-15 -1693 ((-858) |#1|))) (-831 |#2|) (-1093)) (T -830))
-NIL
-(-10 -8 (-15 -1693 ((-858) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3348 ((|#1| $) 14)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1396 (((-55) $) 13)) (-1718 (((-112) $ $) 6)))
+((-2870 (((-1262) (-1113) (-1113)) 47)) (-2861 (((-1262) (-817) (-52)) 44)) (-2851 (((-52) (-817)) 16)))
+(((-827) (-10 -7 (-15 -2851 ((-52) (-817))) (-15 -2861 ((-1262) (-817) (-52))) (-15 -2870 ((-1262) (-1113) (-1113))))) (T -827))
+((-2870 (*1 *2 *3 *3) (-12 (-5 *3 (-1113)) (-5 *2 (-1262)) (-5 *1 (-827)))) (-2861 (*1 *2 *3 *4) (-12 (-5 *3 (-817)) (-5 *4 (-52)) (-5 *2 (-1262)) (-5 *1 (-827)))) (-2851 (*1 *2 *3) (-12 (-5 *3 (-817)) (-5 *2 (-52)) (-5 *1 (-827)))))
+(-10 -7 (-15 -2851 ((-52) (-817))) (-15 -2861 ((-1262) (-817) (-52))) (-15 -2870 ((-1262) (-1113) (-1113))))
+((-2238 (((-829 |#2|) (-1 |#2| |#1|) (-829 |#1|) (-829 |#2|)) 12) (((-829 |#2|) (-1 |#2| |#1|) (-829 |#1|)) 13)))
+(((-828 |#1| |#2|) (-10 -7 (-15 -2238 ((-829 |#2|) (-1 |#2| |#1|) (-829 |#1|))) (-15 -2238 ((-829 |#2|) (-1 |#2| |#1|) (-829 |#1|) (-829 |#2|)))) (-1093) (-1093)) (T -828))
+((-2238 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-829 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-829 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *1 (-828 *5 *6)))) (-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-829 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *2 (-829 *6)) (-5 *1 (-828 *5 *6)))))
+(-10 -7 (-15 -2238 ((-829 |#2|) (-1 |#2| |#1|) (-829 |#1|))) (-15 -2238 ((-829 |#2|) (-1 |#2| |#1|) (-829 |#1|) (-829 |#2|))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL (|has| |#1| (-21)))) (-3905 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-2807 (((-563) $) NIL (|has| |#1| (-844)))) (-2569 (($) NIL (|has| |#1| (-21)) CONST)) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 15)) (-2057 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 9)) (-3951 (((-3 $ "failed") $) 40 (|has| |#1| (-844)))) (-2327 (((-3 (-407 (-563)) "failed") $) 49 (|has| |#1| (-545)))) (-2317 (((-112) $) 43 (|has| |#1| (-545)))) (-2306 (((-407 (-563)) $) 46 (|has| |#1| (-545)))) (-3414 (((-112) $) NIL (|has| |#1| (-844)))) (-3401 (((-112) $) NIL (|has| |#1| (-844)))) (-3426 (((-112) $) NIL (|has| |#1| (-844)))) (-3088 (($ $ $) NIL (|has| |#1| (-844)))) (-1776 (($ $ $) NIL (|has| |#1| (-844)))) (-3854 (((-1151) $) NIL)) (-2191 (($) 13)) (-2984 (((-112) $) 12)) (-1693 (((-1113) $) NIL)) (-2994 (((-112) $) 11)) (-1692 (((-858) $) 18) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) 8) (($ (-563)) NIL (-4034 (|has| |#1| (-844)) (|has| |#1| (-1034 (-563)))))) (-3914 (((-767)) 34 (|has| |#1| (-844)))) (-1462 (($ $) NIL (|has| |#1| (-844)))) (-2239 (($) 22 (|has| |#1| (-21)) CONST)) (-2253 (($) 31 (|has| |#1| (-844)) CONST)) (-1779 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1718 (((-112) $ $) 20)) (-1766 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1743 (((-112) $ $) 42 (|has| |#1| (-844)))) (-1825 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 27 (|has| |#1| (-21)))) (-1813 (($ $ $) 29 (|has| |#1| (-21)))) (** (($ $ (-917)) NIL (|has| |#1| (-844))) (($ $ (-767)) NIL (|has| |#1| (-844)))) (* (($ $ $) 37 (|has| |#1| (-844))) (($ (-563) $) 25 (|has| |#1| (-21))) (($ (-767) $) NIL (|has| |#1| (-21))) (($ (-917) $) NIL (|has| |#1| (-21)))))
+(((-829 |#1|) (-13 (-1093) (-411 |#1|) (-10 -8 (-15 -2191 ($)) (-15 -2994 ((-112) $)) (-15 -2984 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-844)) (-6 (-844)) |%noBranch|) (IF (|has| |#1| (-545)) (PROGN (-15 -2317 ((-112) $)) (-15 -2306 ((-407 (-563)) $)) (-15 -2327 ((-3 (-407 (-563)) "failed") $))) |%noBranch|))) (-1093)) (T -829))
+((-2191 (*1 *1) (-12 (-5 *1 (-829 *2)) (-4 *2 (-1093)))) (-2994 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-829 *3)) (-4 *3 (-1093)))) (-2984 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-829 *3)) (-4 *3 (-1093)))) (-2317 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-829 *3)) (-4 *3 (-545)) (-4 *3 (-1093)))) (-2306 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-829 *3)) (-4 *3 (-545)) (-4 *3 (-1093)))) (-2327 (*1 *2 *1) (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-829 *3)) (-4 *3 (-545)) (-4 *3 (-1093)))))
+(-13 (-1093) (-411 |#1|) (-10 -8 (-15 -2191 ($)) (-15 -2994 ((-112) $)) (-15 -2984 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-844)) (-6 (-844)) |%noBranch|) (IF (|has| |#1| (-545)) (PROGN (-15 -2317 ((-112) $)) (-15 -2306 ((-407 (-563)) $)) (-15 -2327 ((-3 (-407 (-563)) "failed") $))) |%noBranch|)))
+((-1692 (((-858) $) 11)))
+(((-830 |#1| |#2|) (-10 -8 (-15 -1692 ((-858) |#1|))) (-831 |#2|) (-1093)) (T -830))
+NIL
+(-10 -8 (-15 -1692 ((-858) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3352 ((|#1| $) 14)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2935 (((-55) $) 13)) (-1718 (((-112) $ $) 6)))
(((-831 |#1|) (-140) (-1093)) (T -831))
-((-3348 (*1 *2 *1) (-12 (-4 *1 (-831 *2)) (-4 *2 (-1093)))) (-1396 (*1 *2 *1) (-12 (-4 *1 (-831 *3)) (-4 *3 (-1093)) (-5 *2 (-55)))))
-(-13 (-1093) (-10 -8 (-15 -3348 (|t#1| $)) (-15 -1396 ((-55) $))))
+((-3352 (*1 *2 *1) (-12 (-4 *1 (-831 *2)) (-4 *2 (-1093)))) (-2935 (*1 *2 *1) (-12 (-4 *1 (-831 *3)) (-4 *3 (-1093)) (-5 *2 (-55)))))
+(-13 (-1093) (-10 -8 (-15 -3352 (|t#1| $)) (-15 -2935 ((-55) $))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL) (((-3 (-114) "failed") $) NIL)) (-2058 ((|#1| $) NIL) (((-114) $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-2486 ((|#1| (-114) |#1|) NIL)) (-3827 (((-112) $) NIL)) (-2488 (($ |#1| (-361 (-114))) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1830 (($ $ (-1 |#1| |#1|)) NIL)) (-3934 (($ $ (-1 |#1| |#1|)) NIL)) (-2309 ((|#1| $ |#1|) NIL)) (-2989 ((|#1| |#1|) NIL (|has| |#1| (-172)))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-114)) NIL)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) NIL)) (-3831 (($ $) NIL (|has| |#1| (-172))) (($ $ $) NIL (|has| |#1| (-172)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ (-114) (-563)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
-(((-832 |#1|) (-13 (-1045) (-1034 |#1|) (-1034 (-114)) (-286 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -3831 ($ $)) (-15 -3831 ($ $ $)) (-15 -2989 (|#1| |#1|))) |%noBranch|) (-15 -3934 ($ $ (-1 |#1| |#1|))) (-15 -1830 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-563))) (-15 ** ($ $ (-563))) (-15 -2486 (|#1| (-114) |#1|)) (-15 -2488 ($ |#1| (-361 (-114)))))) (-1045)) (T -832))
-((-3831 (*1 *1 *1) (-12 (-5 *1 (-832 *2)) (-4 *2 (-172)) (-4 *2 (-1045)))) (-3831 (*1 *1 *1 *1) (-12 (-5 *1 (-832 *2)) (-4 *2 (-172)) (-4 *2 (-1045)))) (-2989 (*1 *2 *2) (-12 (-5 *1 (-832 *2)) (-4 *2 (-172)) (-4 *2 (-1045)))) (-3934 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-832 *3)))) (-1830 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-832 *3)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-563)) (-5 *1 (-832 *4)) (-4 *4 (-1045)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-832 *3)) (-4 *3 (-1045)))) (-2486 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-832 *2)) (-4 *2 (-1045)))) (-2488 (*1 *1 *2 *3) (-12 (-5 *3 (-361 (-114))) (-5 *1 (-832 *2)) (-4 *2 (-1045)))))
-(-13 (-1045) (-1034 |#1|) (-1034 (-114)) (-286 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -3831 ($ $)) (-15 -3831 ($ $ $)) (-15 -2989 (|#1| |#1|))) |%noBranch|) (-15 -3934 ($ $ (-1 |#1| |#1|))) (-15 -1830 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-563))) (-15 ** ($ $ (-563))) (-15 -2486 (|#1| (-114) |#1|)) (-15 -2488 ($ |#1| (-361 (-114))))))
-((-4168 (((-214 (-502)) (-1151)) 9)))
-(((-833) (-10 -7 (-15 -4168 ((-214 (-502)) (-1151))))) (T -833))
-((-4168 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-214 (-502))) (-5 *1 (-833)))))
-(-10 -7 (-15 -4168 ((-214 (-502)) (-1151))))
-((-1677 (((-112) $ $) NIL)) (-2918 (((-1111) $) 10)) (-3348 (((-506) $) 9)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1707 (($ (-506) (-1111)) 8)) (-1693 (((-858) $) 26)) (-1396 (((-55) $) 19)) (-1718 (((-112) $ $) 12)))
-(((-834) (-13 (-831 (-506)) (-10 -8 (-15 -2918 ((-1111) $)) (-15 -1707 ($ (-506) (-1111)))))) (T -834))
-((-2918 (*1 *2 *1) (-12 (-5 *2 (-1111)) (-5 *1 (-834)))) (-1707 (*1 *1 *2 *3) (-12 (-5 *2 (-506)) (-5 *3 (-1111)) (-5 *1 (-834)))))
-(-13 (-831 (-506)) (-10 -8 (-15 -2918 ((-1111) $)) (-15 -1707 ($ (-506) (-1111)))))
-((-1677 (((-112) $ $) 7)) (-3422 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) 14) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 13)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 16) (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) 15)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1718 (((-112) $ $) 6)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL) (((-3 (-114) "failed") $) NIL)) (-2057 ((|#1| $) NIL) (((-114) $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-2888 ((|#1| (-114) |#1|) NIL)) (-3401 (((-112) $) NIL)) (-2879 (($ |#1| (-361 (-114))) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2897 (($ $ (-1 |#1| |#1|)) NIL)) (-2906 (($ $ (-1 |#1| |#1|)) NIL)) (-2308 ((|#1| $ |#1|) NIL)) (-2916 ((|#1| |#1|) NIL (|has| |#1| (-172)))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-114)) NIL)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) NIL)) (-2926 (($ $) NIL (|has| |#1| (-172))) (($ $ $) NIL (|has| |#1| (-172)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ (-114) (-563)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
+(((-832 |#1|) (-13 (-1045) (-1034 |#1|) (-1034 (-114)) (-286 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -2926 ($ $)) (-15 -2926 ($ $ $)) (-15 -2916 (|#1| |#1|))) |%noBranch|) (-15 -2906 ($ $ (-1 |#1| |#1|))) (-15 -2897 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-563))) (-15 ** ($ $ (-563))) (-15 -2888 (|#1| (-114) |#1|)) (-15 -2879 ($ |#1| (-361 (-114)))))) (-1045)) (T -832))
+((-2926 (*1 *1 *1) (-12 (-5 *1 (-832 *2)) (-4 *2 (-172)) (-4 *2 (-1045)))) (-2926 (*1 *1 *1 *1) (-12 (-5 *1 (-832 *2)) (-4 *2 (-172)) (-4 *2 (-1045)))) (-2916 (*1 *2 *2) (-12 (-5 *1 (-832 *2)) (-4 *2 (-172)) (-4 *2 (-1045)))) (-2906 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-832 *3)))) (-2897 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-832 *3)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-563)) (-5 *1 (-832 *4)) (-4 *4 (-1045)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-832 *3)) (-4 *3 (-1045)))) (-2888 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-832 *2)) (-4 *2 (-1045)))) (-2879 (*1 *1 *2 *3) (-12 (-5 *3 (-361 (-114))) (-5 *1 (-832 *2)) (-4 *2 (-1045)))))
+(-13 (-1045) (-1034 |#1|) (-1034 (-114)) (-286 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -2926 ($ $)) (-15 -2926 ($ $ $)) (-15 -2916 (|#1| |#1|))) |%noBranch|) (-15 -2906 ($ $ (-1 |#1| |#1|))) (-15 -2897 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-563))) (-15 ** ($ $ (-563))) (-15 -2888 (|#1| (-114) |#1|)) (-15 -2879 ($ |#1| (-361 (-114))))))
+((-2945 (((-214 (-502)) (-1151)) 9)))
+(((-833) (-10 -7 (-15 -2945 ((-214 (-502)) (-1151))))) (T -833))
+((-2945 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-214 (-502))) (-5 *1 (-833)))))
+(-10 -7 (-15 -2945 ((-214 (-502)) (-1151))))
+((-1677 (((-112) $ $) NIL)) (-2922 (((-1111) $) 10)) (-3352 (((-506) $) 9)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1706 (($ (-506) (-1111)) 8)) (-1692 (((-858) $) 26)) (-2935 (((-55) $) 19)) (-1718 (((-112) $ $) 12)))
+(((-834) (-13 (-831 (-506)) (-10 -8 (-15 -2922 ((-1111) $)) (-15 -1706 ($ (-506) (-1111)))))) (T -834))
+((-2922 (*1 *2 *1) (-12 (-5 *2 (-1111)) (-5 *1 (-834)))) (-1706 (*1 *1 *2 *3) (-12 (-5 *2 (-506)) (-5 *3 (-1111)) (-5 *1 (-834)))))
+(-13 (-831 (-506)) (-10 -8 (-15 -2922 ((-1111) $)) (-15 -1706 ($ (-506) (-1111)))))
+((-1677 (((-112) $ $) 7)) (-2955 (((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) 14) (((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 13)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 16) (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) 15)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1718 (((-112) $ $) 6)))
(((-835) (-140)) (T -835))
-((-1994 (*1 *2 *3 *4) (-12 (-4 *1 (-835)) (-5 *3 (-1057)) (-5 *4 (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (-5 *2 (-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)))))) (-1994 (*1 *2 *3 *4) (-12 (-4 *1 (-835)) (-5 *3 (-1057)) (-5 *4 (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) (-5 *2 (-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)))))) (-3422 (*1 *2 *3) (-12 (-4 *1 (-835)) (-5 *3 (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) (-5 *2 (-1031)))) (-3422 (*1 *2 *3) (-12 (-4 *1 (-835)) (-5 *3 (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (-5 *2 (-1031)))))
-(-13 (-1093) (-10 -7 (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))) (-15 -3422 ((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))) (-15 -3422 ((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))))))
+((-2929 (*1 *2 *3 *4) (-12 (-4 *1 (-835)) (-5 *3 (-1057)) (-5 *4 (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (-5 *2 (-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)))))) (-2929 (*1 *2 *3 *4) (-12 (-4 *1 (-835)) (-5 *3 (-1057)) (-5 *4 (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) (-5 *2 (-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)))))) (-2955 (*1 *2 *3) (-12 (-4 *1 (-835)) (-5 *3 (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) (-5 *2 (-1031)))) (-2955 (*1 *2 *3) (-12 (-4 *1 (-835)) (-5 *3 (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (-5 *2 (-1031)))))
+(-13 (-1093) (-10 -7 (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))) (-15 -2955 ((-1031) (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))) (-15 -2955 ((-1031) (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-2908 (((-1031) (-640 (-316 (-379))) (-640 (-379))) 147) (((-1031) (-316 (-379)) (-640 (-379))) 145) (((-1031) (-316 (-379)) (-640 (-379)) (-640 (-839 (-379))) (-640 (-839 (-379)))) 144) (((-1031) (-316 (-379)) (-640 (-379)) (-640 (-839 (-379))) (-640 (-316 (-379))) (-640 (-839 (-379)))) 143) (((-1031) (-837)) 117) (((-1031) (-837) (-1057)) 116)) (-1994 (((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-837) (-1057)) 82) (((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-837)) 84)) (-2050 (((-1031) (-640 (-316 (-379))) (-640 (-379))) 148) (((-1031) (-837)) 133)))
-(((-836) (-10 -7 (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-837))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-837) (-1057))) (-15 -2908 ((-1031) (-837) (-1057))) (-15 -2908 ((-1031) (-837))) (-15 -2050 ((-1031) (-837))) (-15 -2908 ((-1031) (-316 (-379)) (-640 (-379)) (-640 (-839 (-379))) (-640 (-316 (-379))) (-640 (-839 (-379))))) (-15 -2908 ((-1031) (-316 (-379)) (-640 (-379)) (-640 (-839 (-379))) (-640 (-839 (-379))))) (-15 -2908 ((-1031) (-316 (-379)) (-640 (-379)))) (-15 -2908 ((-1031) (-640 (-316 (-379))) (-640 (-379)))) (-15 -2050 ((-1031) (-640 (-316 (-379))) (-640 (-379)))))) (T -836))
-((-2050 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-316 (-379)))) (-5 *4 (-640 (-379))) (-5 *2 (-1031)) (-5 *1 (-836)))) (-2908 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-316 (-379)))) (-5 *4 (-640 (-379))) (-5 *2 (-1031)) (-5 *1 (-836)))) (-2908 (*1 *2 *3 *4) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-379))) (-5 *2 (-1031)) (-5 *1 (-836)))) (-2908 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-379))) (-5 *5 (-640 (-839 (-379)))) (-5 *2 (-1031)) (-5 *1 (-836)))) (-2908 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-640 (-379))) (-5 *5 (-640 (-839 (-379)))) (-5 *6 (-640 (-316 (-379)))) (-5 *3 (-316 (-379))) (-5 *2 (-1031)) (-5 *1 (-836)))) (-2050 (*1 *2 *3) (-12 (-5 *3 (-837)) (-5 *2 (-1031)) (-5 *1 (-836)))) (-2908 (*1 *2 *3) (-12 (-5 *3 (-837)) (-5 *2 (-1031)) (-5 *1 (-836)))) (-2908 (*1 *2 *3 *4) (-12 (-5 *3 (-837)) (-5 *4 (-1057)) (-5 *2 (-1031)) (-5 *1 (-836)))) (-1994 (*1 *2 *3 *4) (-12 (-5 *3 (-837)) (-5 *4 (-1057)) (-5 *2 (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))))) (-5 *1 (-836)))) (-1994 (*1 *2 *3) (-12 (-5 *3 (-837)) (-5 *2 (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))))) (-5 *1 (-836)))))
-(-10 -7 (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-837))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-837) (-1057))) (-15 -2908 ((-1031) (-837) (-1057))) (-15 -2908 ((-1031) (-837))) (-15 -2050 ((-1031) (-837))) (-15 -2908 ((-1031) (-316 (-379)) (-640 (-379)) (-640 (-839 (-379))) (-640 (-316 (-379))) (-640 (-839 (-379))))) (-15 -2908 ((-1031) (-316 (-379)) (-640 (-379)) (-640 (-839 (-379))) (-640 (-839 (-379))))) (-15 -2908 ((-1031) (-316 (-379)) (-640 (-379)))) (-15 -2908 ((-1031) (-640 (-316 (-379))) (-640 (-379)))) (-15 -2050 ((-1031) (-640 (-316 (-379))) (-640 (-379)))))
-((-1677 (((-112) $ $) NIL)) (-2058 (((-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))) $) 21)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 20) (($ (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 14) (($ (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) 16) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))))) 18)) (-1718 (((-112) $ $) NIL)))
-(((-837) (-13 (-1093) (-10 -8 (-15 -1693 ($ (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))))) (-15 -1693 ($ (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))) (-15 -1693 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))))) (-15 -2058 ((-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))) $))))) (T -837))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (-5 *1 (-837)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))) (-5 *1 (-837)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))))) (-5 *1 (-837)))) (-2058 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225))))))) (-5 *1 (-837)))))
-(-13 (-1093) (-10 -8 (-15 -1693 ($ (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))))) (-15 -1693 ($ (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))) (-15 -1693 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))))) (-15 -2058 ((-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))) $))))
-((-2240 (((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|) (-839 |#2|)) 13) (((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|)) 14)))
-(((-838 |#1| |#2|) (-10 -7 (-15 -2240 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|))) (-15 -2240 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|) (-839 |#2|)))) (-1093) (-1093)) (T -838))
-((-2240 (*1 *2 *3 *4 *2 *2) (-12 (-5 *2 (-839 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-839 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *1 (-838 *5 *6)))) (-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-839 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *2 (-839 *6)) (-5 *1 (-838 *5 *6)))))
-(-10 -7 (-15 -2240 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|))) (-15 -2240 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|) (-839 |#2|))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL (|has| |#1| (-21)))) (-3060 (((-1113) $) 24)) (-1495 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-1857 (((-563) $) NIL (|has| |#1| (-844)))) (-4239 (($) NIL (|has| |#1| (-21)) CONST)) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 16)) (-2058 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 9)) (-3400 (((-3 $ "failed") $) 47 (|has| |#1| (-844)))) (-3909 (((-3 (-407 (-563)) "failed") $) 54 (|has| |#1| (-545)))) (-2239 (((-112) $) 49 (|has| |#1| (-545)))) (-2651 (((-407 (-563)) $) 52 (|has| |#1| (-545)))) (-3101 (((-112) $) NIL (|has| |#1| (-844)))) (-3625 (($) 13)) (-3827 (((-112) $) NIL (|has| |#1| (-844)))) (-1419 (((-112) $) NIL (|has| |#1| (-844)))) (-3637 (($) 14)) (-3084 (($ $ $) NIL (|has| |#1| (-844)))) (-1777 (($ $ $) NIL (|has| |#1| (-844)))) (-3573 (((-1151) $) NIL)) (-1990 (((-112) $) 12)) (-1694 (((-1113) $) NIL)) (-1376 (((-112) $) 11)) (-1693 (((-858) $) 22) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) 8) (($ (-563)) NIL (-4032 (|has| |#1| (-844)) (|has| |#1| (-1034 (-563)))))) (-1675 (((-767)) 41 (|has| |#1| (-844)))) (-2509 (($ $) NIL (|has| |#1| (-844)))) (-2241 (($) 29 (|has| |#1| (-21)) CONST)) (-2254 (($) 38 (|has| |#1| (-844)) CONST)) (-1778 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1718 (((-112) $ $) 27)) (-1768 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1744 (((-112) $ $) 48 (|has| |#1| (-844)))) (-1826 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 34 (|has| |#1| (-21)))) (-1814 (($ $ $) 36 (|has| |#1| (-21)))) (** (($ $ (-917)) NIL (|has| |#1| (-844))) (($ $ (-767)) NIL (|has| |#1| (-844)))) (* (($ $ $) 44 (|has| |#1| (-844))) (($ (-563) $) 32 (|has| |#1| (-21))) (($ (-767) $) NIL (|has| |#1| (-21))) (($ (-917) $) NIL (|has| |#1| (-21)))))
-(((-839 |#1|) (-13 (-1093) (-411 |#1|) (-10 -8 (-15 -3625 ($)) (-15 -3637 ($)) (-15 -1376 ((-112) $)) (-15 -1990 ((-112) $)) (-15 -3060 ((-1113) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-844)) (-6 (-844)) |%noBranch|) (IF (|has| |#1| (-545)) (PROGN (-15 -2239 ((-112) $)) (-15 -2651 ((-407 (-563)) $)) (-15 -3909 ((-3 (-407 (-563)) "failed") $))) |%noBranch|))) (-1093)) (T -839))
-((-3625 (*1 *1) (-12 (-5 *1 (-839 *2)) (-4 *2 (-1093)))) (-3637 (*1 *1) (-12 (-5 *1 (-839 *2)) (-4 *2 (-1093)))) (-1376 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1093)))) (-1990 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1093)))) (-3060 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-839 *3)) (-4 *3 (-1093)))) (-2239 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-545)) (-4 *3 (-1093)))) (-2651 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-839 *3)) (-4 *3 (-545)) (-4 *3 (-1093)))) (-3909 (*1 *2 *1) (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-839 *3)) (-4 *3 (-545)) (-4 *3 (-1093)))))
-(-13 (-1093) (-411 |#1|) (-10 -8 (-15 -3625 ($)) (-15 -3637 ($)) (-15 -1376 ((-112) $)) (-15 -1990 ((-112) $)) (-15 -3060 ((-1113) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-844)) (-6 (-844)) |%noBranch|) (IF (|has| |#1| (-545)) (PROGN (-15 -2239 ((-112) $)) (-15 -2651 ((-407 (-563)) $)) (-15 -3909 ((-3 (-407 (-563)) "failed") $))) |%noBranch|)))
-((-1677 (((-112) $ $) 7)) (-3749 (((-767)) 22)) (-1691 (($) 25)) (-3084 (($ $ $) 13) (($) 21 T CONST)) (-1777 (($ $ $) 14) (($) 20 T CONST)) (-1476 (((-917) $) 24)) (-3573 (((-1151) $) 9)) (-2555 (($ (-917)) 23)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1778 (((-112) $ $) 16)) (-1756 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 15)) (-1744 (((-112) $ $) 18)))
+((-2911 (((-1031) (-640 (-316 (-379))) (-640 (-379))) 147) (((-1031) (-316 (-379)) (-640 (-379))) 145) (((-1031) (-316 (-379)) (-640 (-379)) (-640 (-839 (-379))) (-640 (-839 (-379)))) 144) (((-1031) (-316 (-379)) (-640 (-379)) (-640 (-839 (-379))) (-640 (-316 (-379))) (-640 (-839 (-379)))) 143) (((-1031) (-837)) 117) (((-1031) (-837) (-1057)) 116)) (-2929 (((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-837) (-1057)) 82) (((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-837)) 84)) (-2965 (((-1031) (-640 (-316 (-379))) (-640 (-379))) 148) (((-1031) (-837)) 133)))
+(((-836) (-10 -7 (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-837))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-837) (-1057))) (-15 -2911 ((-1031) (-837) (-1057))) (-15 -2911 ((-1031) (-837))) (-15 -2965 ((-1031) (-837))) (-15 -2911 ((-1031) (-316 (-379)) (-640 (-379)) (-640 (-839 (-379))) (-640 (-316 (-379))) (-640 (-839 (-379))))) (-15 -2911 ((-1031) (-316 (-379)) (-640 (-379)) (-640 (-839 (-379))) (-640 (-839 (-379))))) (-15 -2911 ((-1031) (-316 (-379)) (-640 (-379)))) (-15 -2911 ((-1031) (-640 (-316 (-379))) (-640 (-379)))) (-15 -2965 ((-1031) (-640 (-316 (-379))) (-640 (-379)))))) (T -836))
+((-2965 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-316 (-379)))) (-5 *4 (-640 (-379))) (-5 *2 (-1031)) (-5 *1 (-836)))) (-2911 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-316 (-379)))) (-5 *4 (-640 (-379))) (-5 *2 (-1031)) (-5 *1 (-836)))) (-2911 (*1 *2 *3 *4) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-379))) (-5 *2 (-1031)) (-5 *1 (-836)))) (-2911 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-379))) (-5 *5 (-640 (-839 (-379)))) (-5 *2 (-1031)) (-5 *1 (-836)))) (-2911 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-640 (-379))) (-5 *5 (-640 (-839 (-379)))) (-5 *6 (-640 (-316 (-379)))) (-5 *3 (-316 (-379))) (-5 *2 (-1031)) (-5 *1 (-836)))) (-2965 (*1 *2 *3) (-12 (-5 *3 (-837)) (-5 *2 (-1031)) (-5 *1 (-836)))) (-2911 (*1 *2 *3) (-12 (-5 *3 (-837)) (-5 *2 (-1031)) (-5 *1 (-836)))) (-2911 (*1 *2 *3 *4) (-12 (-5 *3 (-837)) (-5 *4 (-1057)) (-5 *2 (-1031)) (-5 *1 (-836)))) (-2929 (*1 *2 *3 *4) (-12 (-5 *3 (-837)) (-5 *4 (-1057)) (-5 *2 (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))))) (-5 *1 (-836)))) (-2929 (*1 *2 *3) (-12 (-5 *3 (-837)) (-5 *2 (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))))) (-5 *1 (-836)))))
+(-10 -7 (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-837))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-837) (-1057))) (-15 -2911 ((-1031) (-837) (-1057))) (-15 -2911 ((-1031) (-837))) (-15 -2965 ((-1031) (-837))) (-15 -2911 ((-1031) (-316 (-379)) (-640 (-379)) (-640 (-839 (-379))) (-640 (-316 (-379))) (-640 (-839 (-379))))) (-15 -2911 ((-1031) (-316 (-379)) (-640 (-379)) (-640 (-839 (-379))) (-640 (-839 (-379))))) (-15 -2911 ((-1031) (-316 (-379)) (-640 (-379)))) (-15 -2911 ((-1031) (-640 (-316 (-379))) (-640 (-379)))) (-15 -2965 ((-1031) (-640 (-316 (-379))) (-640 (-379)))))
+((-1677 (((-112) $ $) NIL)) (-2057 (((-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))) $) 21)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 20) (($ (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) 14) (($ (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) 16) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))))) 18)) (-1718 (((-112) $ $) NIL)))
+(((-837) (-13 (-1093) (-10 -8 (-15 -1692 ($ (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))))) (-15 -1692 ($ (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))) (-15 -1692 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))))) (-15 -2057 ((-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))) $))))) (T -837))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (-5 *1 (-837)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))) (-5 *1 (-837)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))))) (-5 *1 (-837)))) (-2057 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225))))))) (-5 *1 (-837)))))
+(-13 (-1093) (-10 -8 (-15 -1692 ($ (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225))))))) (-15 -1692 ($ (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))) (-15 -1692 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))))) (-15 -2057 ((-3 (|:| |noa| (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225))) (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225)))) (|:| |ub| (-640 (-839 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))) $))))
+((-2238 (((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|) (-839 |#2|)) 13) (((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|)) 14)))
+(((-838 |#1| |#2|) (-10 -7 (-15 -2238 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|))) (-15 -2238 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|) (-839 |#2|)))) (-1093) (-1093)) (T -838))
+((-2238 (*1 *2 *3 *4 *2 *2) (-12 (-5 *2 (-839 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-839 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *1 (-838 *5 *6)))) (-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-839 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *2 (-839 *6)) (-5 *1 (-838 *5 *6)))))
+(-10 -7 (-15 -2238 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|))) (-15 -2238 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|) (-839 |#2|))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL (|has| |#1| (-21)))) (-2975 (((-1113) $) 24)) (-3905 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-2807 (((-563) $) NIL (|has| |#1| (-844)))) (-2569 (($) NIL (|has| |#1| (-21)) CONST)) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 16)) (-2057 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 9)) (-3951 (((-3 $ "failed") $) 47 (|has| |#1| (-844)))) (-2327 (((-3 (-407 (-563)) "failed") $) 54 (|has| |#1| (-545)))) (-2317 (((-112) $) 49 (|has| |#1| (-545)))) (-2306 (((-407 (-563)) $) 52 (|has| |#1| (-545)))) (-3414 (((-112) $) NIL (|has| |#1| (-844)))) (-3626 (($) 13)) (-3401 (((-112) $) NIL (|has| |#1| (-844)))) (-3426 (((-112) $) NIL (|has| |#1| (-844)))) (-3638 (($) 14)) (-3088 (($ $ $) NIL (|has| |#1| (-844)))) (-1776 (($ $ $) NIL (|has| |#1| (-844)))) (-3854 (((-1151) $) NIL)) (-2984 (((-112) $) 12)) (-1693 (((-1113) $) NIL)) (-2994 (((-112) $) 11)) (-1692 (((-858) $) 22) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) 8) (($ (-563)) NIL (-4034 (|has| |#1| (-844)) (|has| |#1| (-1034 (-563)))))) (-3914 (((-767)) 41 (|has| |#1| (-844)))) (-1462 (($ $) NIL (|has| |#1| (-844)))) (-2239 (($) 29 (|has| |#1| (-21)) CONST)) (-2253 (($) 38 (|has| |#1| (-844)) CONST)) (-1779 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1718 (((-112) $ $) 27)) (-1766 (((-112) $ $) NIL (|has| |#1| (-844)))) (-1743 (((-112) $ $) 48 (|has| |#1| (-844)))) (-1825 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 34 (|has| |#1| (-21)))) (-1813 (($ $ $) 36 (|has| |#1| (-21)))) (** (($ $ (-917)) NIL (|has| |#1| (-844))) (($ $ (-767)) NIL (|has| |#1| (-844)))) (* (($ $ $) 44 (|has| |#1| (-844))) (($ (-563) $) 32 (|has| |#1| (-21))) (($ (-767) $) NIL (|has| |#1| (-21))) (($ (-917) $) NIL (|has| |#1| (-21)))))
+(((-839 |#1|) (-13 (-1093) (-411 |#1|) (-10 -8 (-15 -3626 ($)) (-15 -3638 ($)) (-15 -2994 ((-112) $)) (-15 -2984 ((-112) $)) (-15 -2975 ((-1113) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-844)) (-6 (-844)) |%noBranch|) (IF (|has| |#1| (-545)) (PROGN (-15 -2317 ((-112) $)) (-15 -2306 ((-407 (-563)) $)) (-15 -2327 ((-3 (-407 (-563)) "failed") $))) |%noBranch|))) (-1093)) (T -839))
+((-3626 (*1 *1) (-12 (-5 *1 (-839 *2)) (-4 *2 (-1093)))) (-3638 (*1 *1) (-12 (-5 *1 (-839 *2)) (-4 *2 (-1093)))) (-2994 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1093)))) (-2984 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1093)))) (-2975 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-839 *3)) (-4 *3 (-1093)))) (-2317 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-545)) (-4 *3 (-1093)))) (-2306 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-839 *3)) (-4 *3 (-545)) (-4 *3 (-1093)))) (-2327 (*1 *2 *1) (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-839 *3)) (-4 *3 (-545)) (-4 *3 (-1093)))))
+(-13 (-1093) (-411 |#1|) (-10 -8 (-15 -3626 ($)) (-15 -3638 ($)) (-15 -2994 ((-112) $)) (-15 -2984 ((-112) $)) (-15 -2975 ((-1113) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-844)) (-6 (-844)) |%noBranch|) (IF (|has| |#1| (-545)) (PROGN (-15 -2317 ((-112) $)) (-15 -2306 ((-407 (-563)) $)) (-15 -2327 ((-3 (-407 (-563)) "failed") $))) |%noBranch|)))
+((-1677 (((-112) $ $) 7)) (-3750 (((-767)) 22)) (-1690 (($) 25)) (-3088 (($ $ $) 13) (($) 21 T CONST)) (-1776 (($ $ $) 14) (($) 20 T CONST)) (-3990 (((-917) $) 24)) (-3854 (((-1151) $) 9)) (-2552 (($ (-917)) 23)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1779 (((-112) $ $) 16)) (-1754 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 15)) (-1743 (((-112) $ $) 18)))
(((-840) (-140)) (T -840))
-((-3084 (*1 *1) (-4 *1 (-840))) (-1777 (*1 *1) (-4 *1 (-840))))
-(-13 (-846) (-368) (-10 -8 (-15 -3084 ($) -2669) (-15 -1777 ($) -2669)))
+((-3088 (*1 *1) (-4 *1 (-840))) (-1776 (*1 *1) (-4 *1 (-840))))
+(-13 (-846) (-368) (-10 -8 (-15 -3088 ($) -2668) (-15 -1776 ($) -2668)))
(((-102) . T) ((-610 (-858)) . T) ((-368) . T) ((-846) . T) ((-1093) . T))
-((-2477 (((-112) (-1257 |#2|) (-1257 |#2|)) 17)) (-4051 (((-112) (-1257 |#2|) (-1257 |#2|)) 18)) (-3706 (((-112) (-1257 |#2|) (-1257 |#2|)) 14)))
-(((-841 |#1| |#2|) (-10 -7 (-15 -3706 ((-112) (-1257 |#2|) (-1257 |#2|))) (-15 -2477 ((-112) (-1257 |#2|) (-1257 |#2|))) (-15 -4051 ((-112) (-1257 |#2|) (-1257 |#2|)))) (-767) (-788)) (T -841))
-((-4051 (*1 *2 *3 *3) (-12 (-5 *3 (-1257 *5)) (-4 *5 (-788)) (-5 *2 (-112)) (-5 *1 (-841 *4 *5)) (-14 *4 (-767)))) (-2477 (*1 *2 *3 *3) (-12 (-5 *3 (-1257 *5)) (-4 *5 (-788)) (-5 *2 (-112)) (-5 *1 (-841 *4 *5)) (-14 *4 (-767)))) (-3706 (*1 *2 *3 *3) (-12 (-5 *3 (-1257 *5)) (-4 *5 (-788)) (-5 *2 (-112)) (-5 *1 (-841 *4 *5)) (-14 *4 (-767)))))
-(-10 -7 (-15 -3706 ((-112) (-1257 |#2|) (-1257 |#2|))) (-15 -2477 ((-112) (-1257 |#2|) (-1257 |#2|))) (-15 -4051 ((-112) (-1257 |#2|) (-1257 |#2|))))
-((-1677 (((-112) $ $) 7)) (-4239 (($) 23 T CONST)) (-3400 (((-3 $ "failed") $) 26)) (-3827 (((-112) $) 24)) (-3084 (($ $ $) 13)) (-1777 (($ $ $) 14)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-2254 (($) 22 T CONST)) (-1778 (((-112) $ $) 16)) (-1756 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 15)) (-1744 (((-112) $ $) 18)) (** (($ $ (-917)) 21) (($ $ (-767)) 25)) (* (($ $ $) 20)))
+((-3016 (((-112) (-1257 |#2|) (-1257 |#2|)) 17)) (-3026 (((-112) (-1257 |#2|) (-1257 |#2|)) 18)) (-3005 (((-112) (-1257 |#2|) (-1257 |#2|)) 14)))
+(((-841 |#1| |#2|) (-10 -7 (-15 -3005 ((-112) (-1257 |#2|) (-1257 |#2|))) (-15 -3016 ((-112) (-1257 |#2|) (-1257 |#2|))) (-15 -3026 ((-112) (-1257 |#2|) (-1257 |#2|)))) (-767) (-788)) (T -841))
+((-3026 (*1 *2 *3 *3) (-12 (-5 *3 (-1257 *5)) (-4 *5 (-788)) (-5 *2 (-112)) (-5 *1 (-841 *4 *5)) (-14 *4 (-767)))) (-3016 (*1 *2 *3 *3) (-12 (-5 *3 (-1257 *5)) (-4 *5 (-788)) (-5 *2 (-112)) (-5 *1 (-841 *4 *5)) (-14 *4 (-767)))) (-3005 (*1 *2 *3 *3) (-12 (-5 *3 (-1257 *5)) (-4 *5 (-788)) (-5 *2 (-112)) (-5 *1 (-841 *4 *5)) (-14 *4 (-767)))))
+(-10 -7 (-15 -3005 ((-112) (-1257 |#2|) (-1257 |#2|))) (-15 -3016 ((-112) (-1257 |#2|) (-1257 |#2|))) (-15 -3026 ((-112) (-1257 |#2|) (-1257 |#2|))))
+((-1677 (((-112) $ $) 7)) (-2569 (($) 23 T CONST)) (-3951 (((-3 $ "failed") $) 26)) (-3401 (((-112) $) 24)) (-3088 (($ $ $) 13)) (-1776 (($ $ $) 14)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2253 (($) 22 T CONST)) (-1779 (((-112) $ $) 16)) (-1754 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 15)) (-1743 (((-112) $ $) 18)) (** (($ $ (-917)) 21) (($ $ (-767)) 25)) (* (($ $ $) 20)))
(((-842) (-140)) (T -842))
NIL
(-13 (-853) (-722))
(((-102) . T) ((-610 (-858)) . T) ((-722) . T) ((-853) . T) ((-846) . T) ((-1105) . T) ((-1093) . T))
-((-1857 (((-563) $) 17)) (-3101 (((-112) $) 10)) (-1419 (((-112) $) 11)) (-2509 (($ $) 19)))
-(((-843 |#1|) (-10 -8 (-15 -2509 (|#1| |#1|)) (-15 -1857 ((-563) |#1|)) (-15 -1419 ((-112) |#1|)) (-15 -3101 ((-112) |#1|))) (-844)) (T -843))
+((-2807 (((-563) $) 17)) (-3414 (((-112) $) 10)) (-3426 (((-112) $) 11)) (-1462 (($ $) 19)))
+(((-843 |#1|) (-10 -8 (-15 -1462 (|#1| |#1|)) (-15 -2807 ((-563) |#1|)) (-15 -3426 ((-112) |#1|)) (-15 -3414 ((-112) |#1|))) (-844)) (T -843))
NIL
-(-10 -8 (-15 -2509 (|#1| |#1|)) (-15 -1857 ((-563) |#1|)) (-15 -1419 ((-112) |#1|)) (-15 -3101 ((-112) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 24)) (-1495 (((-3 $ "failed") $ $) 26)) (-1857 (((-563) $) 34)) (-4239 (($) 23 T CONST)) (-3400 (((-3 $ "failed") $) 39)) (-3101 (((-112) $) 36)) (-3827 (((-112) $) 41)) (-1419 (((-112) $) 35)) (-3084 (($ $ $) 13)) (-1777 (($ $ $) 14)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ (-563)) 43)) (-1675 (((-767)) 44)) (-2509 (($ $) 33)) (-2241 (($) 22 T CONST)) (-2254 (($) 42 T CONST)) (-1778 (((-112) $ $) 16)) (-1756 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 15)) (-1744 (((-112) $ $) 18)) (-1826 (($ $ $) 28) (($ $) 27)) (-1814 (($ $ $) 20)) (** (($ $ (-767)) 40) (($ $ (-917)) 37)) (* (($ (-917) $) 21) (($ (-767) $) 25) (($ (-563) $) 29) (($ $ $) 38)))
+(-10 -8 (-15 -1462 (|#1| |#1|)) (-15 -2807 ((-563) |#1|)) (-15 -3426 ((-112) |#1|)) (-15 -3414 ((-112) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 24)) (-3905 (((-3 $ "failed") $ $) 26)) (-2807 (((-563) $) 34)) (-2569 (($) 23 T CONST)) (-3951 (((-3 $ "failed") $) 39)) (-3414 (((-112) $) 36)) (-3401 (((-112) $) 41)) (-3426 (((-112) $) 35)) (-3088 (($ $ $) 13)) (-1776 (($ $ $) 14)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ (-563)) 43)) (-3914 (((-767)) 44)) (-1462 (($ $) 33)) (-2239 (($) 22 T CONST)) (-2253 (($) 42 T CONST)) (-1779 (((-112) $ $) 16)) (-1754 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 15)) (-1743 (((-112) $ $) 18)) (-1825 (($ $ $) 28) (($ $) 27)) (-1813 (($ $ $) 20)) (** (($ $ (-767)) 40) (($ $ (-917)) 37)) (* (($ (-917) $) 21) (($ (-767) $) 25) (($ (-563) $) 29) (($ $ $) 38)))
(((-844) (-140)) (T -844))
-((-3101 (*1 *2 *1) (-12 (-4 *1 (-844)) (-5 *2 (-112)))) (-1419 (*1 *2 *1) (-12 (-4 *1 (-844)) (-5 *2 (-112)))) (-1857 (*1 *2 *1) (-12 (-4 *1 (-844)) (-5 *2 (-563)))) (-2509 (*1 *1 *1) (-4 *1 (-844))))
-(-13 (-787) (-1045) (-722) (-10 -8 (-15 -3101 ((-112) $)) (-15 -1419 ((-112) $)) (-15 -1857 ((-563) $)) (-15 -2509 ($ $))))
+((-3414 (*1 *2 *1) (-12 (-4 *1 (-844)) (-5 *2 (-112)))) (-3426 (*1 *2 *1) (-12 (-4 *1 (-844)) (-5 *2 (-112)))) (-2807 (*1 *2 *1) (-12 (-4 *1 (-844)) (-5 *2 (-563)))) (-1462 (*1 *1 *1) (-4 *1 (-844))))
+(-13 (-787) (-1045) (-722) (-10 -8 (-15 -3414 ((-112) $)) (-15 -3426 ((-112) $)) (-15 -2807 ((-563) $)) (-15 -1462 ($ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-563)) . T) ((-610 (-858)) . T) ((-643 $) . T) ((-722) . T) ((-787) . T) ((-788) . T) ((-790) . T) ((-791) . T) ((-846) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-3084 (($ $ $) 10)) (-1777 (($ $ $) 9)) (-1778 (((-112) $ $) 12)) (-1756 (((-112) $ $) 11)) (-1768 (((-112) $ $) 13)))
-(((-845 |#1|) (-10 -8 (-15 -3084 (|#1| |#1| |#1|)) (-15 -1777 (|#1| |#1| |#1|)) (-15 -1768 ((-112) |#1| |#1|)) (-15 -1778 ((-112) |#1| |#1|)) (-15 -1756 ((-112) |#1| |#1|))) (-846)) (T -845))
+((-3088 (($ $ $) 10)) (-1776 (($ $ $) 9)) (-1779 (((-112) $ $) 12)) (-1754 (((-112) $ $) 11)) (-1766 (((-112) $ $) 13)))
+(((-845 |#1|) (-10 -8 (-15 -3088 (|#1| |#1| |#1|)) (-15 -1776 (|#1| |#1| |#1|)) (-15 -1766 ((-112) |#1| |#1|)) (-15 -1779 ((-112) |#1| |#1|)) (-15 -1754 ((-112) |#1| |#1|))) (-846)) (T -845))
NIL
-(-10 -8 (-15 -3084 (|#1| |#1| |#1|)) (-15 -1777 (|#1| |#1| |#1|)) (-15 -1768 ((-112) |#1| |#1|)) (-15 -1778 ((-112) |#1| |#1|)) (-15 -1756 ((-112) |#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3084 (($ $ $) 13)) (-1777 (($ $ $) 14)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1778 (((-112) $ $) 16)) (-1756 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 15)) (-1744 (((-112) $ $) 18)))
+(-10 -8 (-15 -3088 (|#1| |#1| |#1|)) (-15 -1776 (|#1| |#1| |#1|)) (-15 -1766 ((-112) |#1| |#1|)) (-15 -1779 ((-112) |#1| |#1|)) (-15 -1754 ((-112) |#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3088 (($ $ $) 13)) (-1776 (($ $ $) 14)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1779 (((-112) $ $) 16)) (-1754 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 15)) (-1743 (((-112) $ $) 18)))
(((-846) (-140)) (T -846))
-((-1744 (*1 *2 *1 *1) (-12 (-4 *1 (-846)) (-5 *2 (-112)))) (-1756 (*1 *2 *1 *1) (-12 (-4 *1 (-846)) (-5 *2 (-112)))) (-1778 (*1 *2 *1 *1) (-12 (-4 *1 (-846)) (-5 *2 (-112)))) (-1768 (*1 *2 *1 *1) (-12 (-4 *1 (-846)) (-5 *2 (-112)))) (-1777 (*1 *1 *1 *1) (-4 *1 (-846))) (-3084 (*1 *1 *1 *1) (-4 *1 (-846))))
-(-13 (-1093) (-10 -8 (-15 -1744 ((-112) $ $)) (-15 -1756 ((-112) $ $)) (-15 -1778 ((-112) $ $)) (-15 -1768 ((-112) $ $)) (-15 -1777 ($ $ $)) (-15 -3084 ($ $ $))))
+((-1743 (*1 *2 *1 *1) (-12 (-4 *1 (-846)) (-5 *2 (-112)))) (-1754 (*1 *2 *1 *1) (-12 (-4 *1 (-846)) (-5 *2 (-112)))) (-1779 (*1 *2 *1 *1) (-12 (-4 *1 (-846)) (-5 *2 (-112)))) (-1766 (*1 *2 *1 *1) (-12 (-4 *1 (-846)) (-5 *2 (-112)))) (-1776 (*1 *1 *1 *1) (-4 *1 (-846))) (-3088 (*1 *1 *1 *1) (-4 *1 (-846))))
+(-13 (-1093) (-10 -8 (-15 -1743 ((-112) $ $)) (-15 -1754 ((-112) $ $)) (-15 -1779 ((-112) $ $)) (-15 -1766 ((-112) $ $)) (-15 -1776 ($ $ $)) (-15 -3088 ($ $ $))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-4006 (($ $ $) 45)) (-3737 (($ $ $) 44)) (-1523 (($ $ $) 42)) (-2237 (($ $ $) 51)) (-3621 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 46)) (-1599 (((-3 $ "failed") $ $) 49)) (-2131 (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-1300 (($ $) 35)) (-3861 (($ $ $) 39)) (-3911 (($ $ $) 38)) (-1909 (($ $ $) 47)) (-1511 (($ $ $) 53)) (-3214 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 41)) (-3121 (((-3 $ "failed") $ $) 48)) (-3008 (((-3 $ "failed") $ |#2|) 28)) (-1836 ((|#2| $) 32)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 (-563))) NIL) (($ |#2|) 12)) (-1337 (((-640 |#2|) $) 18)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 22)))
-(((-847 |#1| |#2|) (-10 -8 (-15 -1909 (|#1| |#1| |#1|)) (-15 -3621 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4333 |#1|)) |#1| |#1|)) (-15 -2237 (|#1| |#1| |#1|)) (-15 -1599 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4006 (|#1| |#1| |#1|)) (-15 -3737 (|#1| |#1| |#1|)) (-15 -1523 (|#1| |#1| |#1|)) (-15 -3214 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4333 |#1|)) |#1| |#1|)) (-15 -1511 (|#1| |#1| |#1|)) (-15 -3121 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3861 (|#1| |#1| |#1|)) (-15 -3911 (|#1| |#1| |#1|)) (-15 -1300 (|#1| |#1|)) (-15 -1836 (|#2| |#1|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1337 ((-640 |#2|) |#1|)) (-15 -1693 (|#1| |#2|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1693 (|#1| (-563))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1693 ((-858) |#1|))) (-848 |#2|) (-1045)) (T -847))
+((-3076 (($ $ $) 45)) (-3086 (($ $ $) 44)) (-3098 (($ $ $) 42)) (-3058 (($ $ $) 51)) (-3047 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 46)) (-3067 (((-3 $ "failed") $ $) 49)) (-2130 (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-4151 (($ $) 35)) (-3142 (($ $ $) 39)) (-3151 (($ $ $) 38)) (-3036 (($ $ $) 47)) (-3121 (($ $ $) 53)) (-3110 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 41)) (-3132 (((-3 $ "failed") $ $) 48)) (-3012 (((-3 $ "failed") $ |#2|) 28)) (-3885 ((|#2| $) 32)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 (-563))) NIL) (($ |#2|) 12)) (-3955 (((-640 |#2|) $) 18)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 22)))
+(((-847 |#1| |#2|) (-10 -8 (-15 -3036 (|#1| |#1| |#1|)) (-15 -3047 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4334 |#1|)) |#1| |#1|)) (-15 -3058 (|#1| |#1| |#1|)) (-15 -3067 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3076 (|#1| |#1| |#1|)) (-15 -3086 (|#1| |#1| |#1|)) (-15 -3098 (|#1| |#1| |#1|)) (-15 -3110 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4334 |#1|)) |#1| |#1|)) (-15 -3121 (|#1| |#1| |#1|)) (-15 -3132 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3142 (|#1| |#1| |#1|)) (-15 -3151 (|#1| |#1| |#1|)) (-15 -4151 (|#1| |#1|)) (-15 -3885 (|#2| |#1|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3955 ((-640 |#2|) |#1|)) (-15 -1692 (|#1| |#2|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1692 (|#1| (-563))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1692 ((-858) |#1|))) (-848 |#2|) (-1045)) (T -847))
NIL
-(-10 -8 (-15 -1909 (|#1| |#1| |#1|)) (-15 -3621 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4333 |#1|)) |#1| |#1|)) (-15 -2237 (|#1| |#1| |#1|)) (-15 -1599 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4006 (|#1| |#1| |#1|)) (-15 -3737 (|#1| |#1| |#1|)) (-15 -1523 (|#1| |#1| |#1|)) (-15 -3214 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4333 |#1|)) |#1| |#1|)) (-15 -1511 (|#1| |#1| |#1|)) (-15 -3121 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3861 (|#1| |#1| |#1|)) (-15 -3911 (|#1| |#1| |#1|)) (-15 -1300 (|#1| |#1|)) (-15 -1836 (|#2| |#1|)) (-15 -3008 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1337 ((-640 |#2|) |#1|)) (-15 -1693 (|#1| |#2|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1693 (|#1| (-563))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1693 ((-858) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-4006 (($ $ $) 44 (|has| |#1| (-363)))) (-3737 (($ $ $) 45 (|has| |#1| (-363)))) (-1523 (($ $ $) 47 (|has| |#1| (-363)))) (-2237 (($ $ $) 42 (|has| |#1| (-363)))) (-3621 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 41 (|has| |#1| (-363)))) (-1599 (((-3 $ "failed") $ $) 43 (|has| |#1| (-363)))) (-1490 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 46 (|has| |#1| (-363)))) (-2131 (((-3 (-563) "failed") $) 74 (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 71 (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 68)) (-2058 (((-563) $) 73 (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) 70 (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 69)) (-2751 (($ $) 63)) (-3400 (((-3 $ "failed") $) 33)) (-1300 (($ $) 54 (|has| |#1| (-452)))) (-3827 (((-112) $) 31)) (-2588 (($ |#1| (-767)) 61)) (-1293 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 56 (|has| |#1| (-555)))) (-3552 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 57 (|has| |#1| (-555)))) (-2048 (((-767) $) 65)) (-3861 (($ $ $) 51 (|has| |#1| (-363)))) (-3911 (($ $ $) 52 (|has| |#1| (-363)))) (-1909 (($ $ $) 40 (|has| |#1| (-363)))) (-1511 (($ $ $) 49 (|has| |#1| (-363)))) (-3214 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 48 (|has| |#1| (-363)))) (-3121 (((-3 $ "failed") $ $) 50 (|has| |#1| (-363)))) (-4262 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 53 (|has| |#1| (-363)))) (-2726 ((|#1| $) 64)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3008 (((-3 $ "failed") $ |#1|) 58 (|has| |#1| (-555)))) (-4167 (((-767) $) 66)) (-1836 ((|#1| $) 55 (|has| |#1| (-452)))) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 72 (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) 67)) (-1337 (((-640 |#1|) $) 60)) (-4319 ((|#1| $ (-767)) 62)) (-1675 (((-767)) 28)) (-3726 ((|#1| $ |#1| |#1|) 59)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 76) (($ |#1| $) 75)))
+(-10 -8 (-15 -3036 (|#1| |#1| |#1|)) (-15 -3047 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4334 |#1|)) |#1| |#1|)) (-15 -3058 (|#1| |#1| |#1|)) (-15 -3067 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3076 (|#1| |#1| |#1|)) (-15 -3086 (|#1| |#1| |#1|)) (-15 -3098 (|#1| |#1| |#1|)) (-15 -3110 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4334 |#1|)) |#1| |#1|)) (-15 -3121 (|#1| |#1| |#1|)) (-15 -3132 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3142 (|#1| |#1| |#1|)) (-15 -3151 (|#1| |#1| |#1|)) (-15 -4151 (|#1| |#1|)) (-15 -3885 (|#2| |#1|)) (-15 -3012 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3955 ((-640 |#2|) |#1|)) (-15 -1692 (|#1| |#2|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1692 (|#1| (-563))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1692 ((-858) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3076 (($ $ $) 44 (|has| |#1| (-363)))) (-3086 (($ $ $) 45 (|has| |#1| (-363)))) (-3098 (($ $ $) 47 (|has| |#1| (-363)))) (-3058 (($ $ $) 42 (|has| |#1| (-363)))) (-3047 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 41 (|has| |#1| (-363)))) (-3067 (((-3 $ "failed") $ $) 43 (|has| |#1| (-363)))) (-3186 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 46 (|has| |#1| (-363)))) (-2130 (((-3 (-563) "failed") $) 74 (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 71 (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 68)) (-2057 (((-563) $) 73 (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) 70 (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 69)) (-2750 (($ $) 63)) (-3951 (((-3 $ "failed") $) 33)) (-4151 (($ $) 54 (|has| |#1| (-452)))) (-3401 (((-112) $) 31)) (-2587 (($ |#1| (-767)) 61)) (-3167 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 56 (|has| |#1| (-555)))) (-3160 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 57 (|has| |#1| (-555)))) (-3908 (((-767) $) 65)) (-3142 (($ $ $) 51 (|has| |#1| (-363)))) (-3151 (($ $ $) 52 (|has| |#1| (-363)))) (-3036 (($ $ $) 40 (|has| |#1| (-363)))) (-3121 (($ $ $) 49 (|has| |#1| (-363)))) (-3110 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 48 (|has| |#1| (-363)))) (-3132 (((-3 $ "failed") $ $) 50 (|has| |#1| (-363)))) (-3177 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 53 (|has| |#1| (-363)))) (-2725 ((|#1| $) 64)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-3012 (((-3 $ "failed") $ |#1|) 58 (|has| |#1| (-555)))) (-3871 (((-767) $) 66)) (-3885 ((|#1| $) 55 (|has| |#1| (-452)))) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 72 (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) 67)) (-3955 (((-640 |#1|) $) 60)) (-3244 ((|#1| $ (-767)) 62)) (-3914 (((-767)) 28)) (-3727 ((|#1| $ |#1| |#1|) 59)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 76) (($ |#1| $) 75)))
(((-848 |#1|) (-140) (-1045)) (T -848))
-((-4167 (*1 *2 *1) (-12 (-4 *1 (-848 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))) (-2048 (*1 *2 *1) (-12 (-4 *1 (-848 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))) (-2726 (*1 *2 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)))) (-2751 (*1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)))) (-4319 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-848 *2)) (-4 *2 (-1045)))) (-2588 (*1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-848 *2)) (-4 *2 (-1045)))) (-1337 (*1 *2 *1) (-12 (-4 *1 (-848 *3)) (-4 *3 (-1045)) (-5 *2 (-640 *3)))) (-3726 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)))) (-3008 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-555)))) (-3552 (*1 *2 *1 *1) (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-848 *3)))) (-1293 (*1 *2 *1 *1) (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-848 *3)))) (-1836 (*1 *2 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-452)))) (-1300 (*1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-452)))) (-4262 (*1 *2 *1 *1) (-12 (-4 *3 (-363)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-848 *3)))) (-3911 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3861 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3121 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-1511 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3214 (*1 *2 *1 *1) (-12 (-4 *3 (-363)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4333 *1))) (-4 *1 (-848 *3)))) (-1523 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-1490 (*1 *2 *1 *1) (-12 (-4 *3 (-363)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-848 *3)))) (-3737 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-4006 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-1599 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-2237 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3621 (*1 *2 *1 *1) (-12 (-4 *3 (-363)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4333 *1))) (-4 *1 (-848 *3)))) (-1909 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
-(-13 (-1045) (-111 |t#1| |t#1|) (-411 |t#1|) (-10 -8 (-15 -4167 ((-767) $)) (-15 -2048 ((-767) $)) (-15 -2726 (|t#1| $)) (-15 -2751 ($ $)) (-15 -4319 (|t#1| $ (-767))) (-15 -2588 ($ |t#1| (-767))) (-15 -1337 ((-640 |t#1|) $)) (-15 -3726 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-172)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-555)) (PROGN (-15 -3008 ((-3 $ "failed") $ |t#1|)) (-15 -3552 ((-2 (|:| -3490 $) (|:| -1972 $)) $ $)) (-15 -1293 ((-2 (|:| -3490 $) (|:| -1972 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-452)) (PROGN (-15 -1836 (|t#1| $)) (-15 -1300 ($ $))) |%noBranch|) (IF (|has| |t#1| (-363)) (PROGN (-15 -4262 ((-2 (|:| -3490 $) (|:| -1972 $)) $ $)) (-15 -3911 ($ $ $)) (-15 -3861 ($ $ $)) (-15 -3121 ((-3 $ "failed") $ $)) (-15 -1511 ($ $ $)) (-15 -3214 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $)) (-15 -1523 ($ $ $)) (-15 -1490 ((-2 (|:| -3490 $) (|:| -1972 $)) $ $)) (-15 -3737 ($ $ $)) (-15 -4006 ($ $ $)) (-15 -1599 ((-3 $ "failed") $ $)) (-15 -2237 ($ $ $)) (-15 -3621 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $)) (-15 -1909 ($ $ $))) |%noBranch|)))
+((-3871 (*1 *2 *1) (-12 (-4 *1 (-848 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))) (-3908 (*1 *2 *1) (-12 (-4 *1 (-848 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))) (-2725 (*1 *2 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)))) (-2750 (*1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)))) (-3244 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-848 *2)) (-4 *2 (-1045)))) (-2587 (*1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-848 *2)) (-4 *2 (-1045)))) (-3955 (*1 *2 *1) (-12 (-4 *1 (-848 *3)) (-4 *3 (-1045)) (-5 *2 (-640 *3)))) (-3727 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)))) (-3012 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-555)))) (-3160 (*1 *2 *1 *1) (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-848 *3)))) (-3167 (*1 *2 *1 *1) (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-848 *3)))) (-3885 (*1 *2 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-452)))) (-4151 (*1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-452)))) (-3177 (*1 *2 *1 *1) (-12 (-4 *3 (-363)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-848 *3)))) (-3151 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3142 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3132 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3121 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3110 (*1 *2 *1 *1) (-12 (-4 *3 (-363)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4334 *1))) (-4 *1 (-848 *3)))) (-3098 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3186 (*1 *2 *1 *1) (-12 (-4 *3 (-363)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-848 *3)))) (-3086 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3076 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3067 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3058 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3047 (*1 *2 *1 *1) (-12 (-4 *3 (-363)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4334 *1))) (-4 *1 (-848 *3)))) (-3036 (*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
+(-13 (-1045) (-111 |t#1| |t#1|) (-411 |t#1|) (-10 -8 (-15 -3871 ((-767) $)) (-15 -3908 ((-767) $)) (-15 -2725 (|t#1| $)) (-15 -2750 ($ $)) (-15 -3244 (|t#1| $ (-767))) (-15 -2587 ($ |t#1| (-767))) (-15 -3955 ((-640 |t#1|) $)) (-15 -3727 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-172)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-555)) (PROGN (-15 -3012 ((-3 $ "failed") $ |t#1|)) (-15 -3160 ((-2 (|:| -1765 $) (|:| -3443 $)) $ $)) (-15 -3167 ((-2 (|:| -1765 $) (|:| -3443 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-452)) (PROGN (-15 -3885 (|t#1| $)) (-15 -4151 ($ $))) |%noBranch|) (IF (|has| |t#1| (-363)) (PROGN (-15 -3177 ((-2 (|:| -1765 $) (|:| -3443 $)) $ $)) (-15 -3151 ($ $ $)) (-15 -3142 ($ $ $)) (-15 -3132 ((-3 $ "failed") $ $)) (-15 -3121 ($ $ $)) (-15 -3110 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $)) (-15 -3098 ($ $ $)) (-15 -3186 ((-2 (|:| -1765 $) (|:| -3443 $)) $ $)) (-15 -3086 ($ $ $)) (-15 -3076 ($ $ $)) (-15 -3067 ((-3 $ "failed") $ $)) (-15 -3058 ($ $ $)) (-15 -3047 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $)) (-15 -3036 ($ $ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-172)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-613 #0=(-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-610 (-858)) . T) ((-411 |#1|) . T) ((-643 |#1|) . T) ((-643 $) . T) ((-713 |#1|) |has| |#1| (-172)) ((-722) . T) ((-1034 #0#) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1051 |#1|) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-4179 ((|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|)) 20)) (-1490 (((-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2| (-99 |#1|)) 43 (|has| |#1| (-363)))) (-1293 (((-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2| (-99 |#1|)) 40 (|has| |#1| (-555)))) (-3552 (((-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2| (-99 |#1|)) 39 (|has| |#1| (-555)))) (-4262 (((-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2| (-99 |#1|)) 42 (|has| |#1| (-363)))) (-3726 ((|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|)) 31)))
-(((-849 |#1| |#2|) (-10 -7 (-15 -4179 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -3726 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-555)) (PROGN (-15 -3552 ((-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -1293 ((-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-15 -4262 ((-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -1490 ((-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|)) (-1045) (-848 |#1|)) (T -849))
-((-1490 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-363)) (-4 *5 (-1045)) (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-849 *5 *3)) (-4 *3 (-848 *5)))) (-4262 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-363)) (-4 *5 (-1045)) (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-849 *5 *3)) (-4 *3 (-848 *5)))) (-1293 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-555)) (-4 *5 (-1045)) (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-849 *5 *3)) (-4 *3 (-848 *5)))) (-3552 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-555)) (-4 *5 (-1045)) (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-849 *5 *3)) (-4 *3 (-848 *5)))) (-3726 (*1 *2 *3 *2 *2 *4 *5) (-12 (-5 *4 (-99 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1045)) (-5 *1 (-849 *2 *3)) (-4 *3 (-848 *2)))) (-4179 (*1 *2 *2 *2 *3 *4) (-12 (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1045)) (-5 *1 (-849 *5 *2)) (-4 *2 (-848 *5)))))
-(-10 -7 (-15 -4179 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -3726 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-555)) (PROGN (-15 -3552 ((-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -1293 ((-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-15 -4262 ((-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -1490 ((-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-4006 (($ $ $) NIL (|has| |#1| (-363)))) (-3737 (($ $ $) NIL (|has| |#1| (-363)))) (-1523 (($ $ $) NIL (|has| |#1| (-363)))) (-2237 (($ $ $) NIL (|has| |#1| (-363)))) (-3621 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-1599 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-1490 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 32 (|has| |#1| (-363)))) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2058 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1300 (($ $) NIL (|has| |#1| (-452)))) (-2349 (((-858) $ (-858)) NIL)) (-3827 (((-112) $) NIL)) (-2588 (($ |#1| (-767)) NIL)) (-1293 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 28 (|has| |#1| (-555)))) (-3552 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 26 (|has| |#1| (-555)))) (-2048 (((-767) $) NIL)) (-3861 (($ $ $) NIL (|has| |#1| (-363)))) (-3911 (($ $ $) NIL (|has| |#1| (-363)))) (-1909 (($ $ $) NIL (|has| |#1| (-363)))) (-1511 (($ $ $) NIL (|has| |#1| (-363)))) (-3214 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3121 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-4262 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 30 (|has| |#1| (-363)))) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3008 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-4167 (((-767) $) NIL)) (-1836 ((|#1| $) NIL (|has| |#1| (-452)))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) NIL)) (-1337 (((-640 |#1|) $) NIL)) (-4319 ((|#1| $ (-767)) NIL)) (-1675 (((-767)) NIL)) (-3726 ((|#1| $ |#1| |#1|) 15)) (-2241 (($) NIL T CONST)) (-2254 (($) 20 T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) 19) (($ $ (-767)) 22)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 13) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-850 |#1| |#2| |#3|) (-13 (-848 |#1|) (-10 -8 (-15 -2349 ((-858) $ (-858))))) (-1045) (-99 |#1|) (-1 |#1| |#1|)) (T -850))
-((-2349 (*1 *2 *1 *2) (-12 (-5 *2 (-858)) (-5 *1 (-850 *3 *4 *5)) (-4 *3 (-1045)) (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3)))))
-(-13 (-848 |#1|) (-10 -8 (-15 -2349 ((-858) $ (-858)))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-4006 (($ $ $) NIL (|has| |#2| (-363)))) (-3737 (($ $ $) NIL (|has| |#2| (-363)))) (-1523 (($ $ $) NIL (|has| |#2| (-363)))) (-2237 (($ $ $) NIL (|has| |#2| (-363)))) (-3621 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#2| (-363)))) (-1599 (((-3 $ "failed") $ $) NIL (|has| |#2| (-363)))) (-1490 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#2| (-363)))) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 |#2| "failed") $) NIL)) (-2058 (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) ((|#2| $) NIL)) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1300 (($ $) NIL (|has| |#2| (-452)))) (-3827 (((-112) $) NIL)) (-2588 (($ |#2| (-767)) 16)) (-1293 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#2| (-555)))) (-3552 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#2| (-555)))) (-2048 (((-767) $) NIL)) (-3861 (($ $ $) NIL (|has| |#2| (-363)))) (-3911 (($ $ $) NIL (|has| |#2| (-363)))) (-1909 (($ $ $) NIL (|has| |#2| (-363)))) (-1511 (($ $ $) NIL (|has| |#2| (-363)))) (-3214 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#2| (-363)))) (-3121 (((-3 $ "failed") $ $) NIL (|has| |#2| (-363)))) (-4262 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#2| (-363)))) (-2726 ((|#2| $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3008 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555)))) (-4167 (((-767) $) NIL)) (-1836 ((|#2| $) NIL (|has| |#2| (-452)))) (-1693 (((-858) $) 23) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#2| (-1034 (-407 (-563))))) (($ |#2|) NIL) (($ (-1253 |#1|)) 18)) (-1337 (((-640 |#2|) $) NIL)) (-4319 ((|#2| $ (-767)) NIL)) (-1675 (((-767)) NIL)) (-3726 ((|#2| $ |#2| |#2|) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) 13 T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+((-4180 ((|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|)) 20)) (-3186 (((-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2| (-99 |#1|)) 43 (|has| |#1| (-363)))) (-3167 (((-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2| (-99 |#1|)) 40 (|has| |#1| (-555)))) (-3160 (((-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2| (-99 |#1|)) 39 (|has| |#1| (-555)))) (-3177 (((-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2| (-99 |#1|)) 42 (|has| |#1| (-363)))) (-3727 ((|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|)) 31)))
+(((-849 |#1| |#2|) (-10 -7 (-15 -4180 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -3727 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-555)) (PROGN (-15 -3160 ((-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -3167 ((-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-15 -3177 ((-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -3186 ((-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|)) (-1045) (-848 |#1|)) (T -849))
+((-3186 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-363)) (-4 *5 (-1045)) (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-849 *5 *3)) (-4 *3 (-848 *5)))) (-3177 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-363)) (-4 *5 (-1045)) (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-849 *5 *3)) (-4 *3 (-848 *5)))) (-3167 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-555)) (-4 *5 (-1045)) (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-849 *5 *3)) (-4 *3 (-848 *5)))) (-3160 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-555)) (-4 *5 (-1045)) (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-849 *5 *3)) (-4 *3 (-848 *5)))) (-3727 (*1 *2 *3 *2 *2 *4 *5) (-12 (-5 *4 (-99 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1045)) (-5 *1 (-849 *2 *3)) (-4 *3 (-848 *2)))) (-4180 (*1 *2 *2 *2 *3 *4) (-12 (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1045)) (-5 *1 (-849 *5 *2)) (-4 *2 (-848 *5)))))
+(-10 -7 (-15 -4180 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -3727 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-555)) (PROGN (-15 -3160 ((-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -3167 ((-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-15 -3177 ((-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -3186 ((-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-3076 (($ $ $) NIL (|has| |#1| (-363)))) (-3086 (($ $ $) NIL (|has| |#1| (-363)))) (-3098 (($ $ $) NIL (|has| |#1| (-363)))) (-3058 (($ $ $) NIL (|has| |#1| (-363)))) (-3047 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-3067 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-3186 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 32 (|has| |#1| (-363)))) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2057 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-4151 (($ $) NIL (|has| |#1| (-452)))) (-1307 (((-858) $ (-858)) NIL)) (-3401 (((-112) $) NIL)) (-2587 (($ |#1| (-767)) NIL)) (-3167 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 28 (|has| |#1| (-555)))) (-3160 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 26 (|has| |#1| (-555)))) (-3908 (((-767) $) NIL)) (-3142 (($ $ $) NIL (|has| |#1| (-363)))) (-3151 (($ $ $) NIL (|has| |#1| (-363)))) (-3036 (($ $ $) NIL (|has| |#1| (-363)))) (-3121 (($ $ $) NIL (|has| |#1| (-363)))) (-3110 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-3132 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-3177 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 30 (|has| |#1| (-363)))) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3012 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-3871 (((-767) $) NIL)) (-3885 ((|#1| $) NIL (|has| |#1| (-452)))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#1| (-1034 (-407 (-563))))) (($ |#1|) NIL)) (-3955 (((-640 |#1|) $) NIL)) (-3244 ((|#1| $ (-767)) NIL)) (-3914 (((-767)) NIL)) (-3727 ((|#1| $ |#1| |#1|) 15)) (-2239 (($) NIL T CONST)) (-2253 (($) 20 T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) 19) (($ $ (-767)) 22)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 13) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-850 |#1| |#2| |#3|) (-13 (-848 |#1|) (-10 -8 (-15 -1307 ((-858) $ (-858))))) (-1045) (-99 |#1|) (-1 |#1| |#1|)) (T -850))
+((-1307 (*1 *2 *1 *2) (-12 (-5 *2 (-858)) (-5 *1 (-850 *3 *4 *5)) (-4 *3 (-1045)) (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3)))))
+(-13 (-848 |#1|) (-10 -8 (-15 -1307 ((-858) $ (-858)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-3076 (($ $ $) NIL (|has| |#2| (-363)))) (-3086 (($ $ $) NIL (|has| |#2| (-363)))) (-3098 (($ $ $) NIL (|has| |#2| (-363)))) (-3058 (($ $ $) NIL (|has| |#2| (-363)))) (-3047 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#2| (-363)))) (-3067 (((-3 $ "failed") $ $) NIL (|has| |#2| (-363)))) (-3186 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#2| (-363)))) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 |#2| "failed") $) NIL)) (-2057 (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) ((|#2| $) NIL)) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-4151 (($ $) NIL (|has| |#2| (-452)))) (-3401 (((-112) $) NIL)) (-2587 (($ |#2| (-767)) 16)) (-3167 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#2| (-555)))) (-3160 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#2| (-555)))) (-3908 (((-767) $) NIL)) (-3142 (($ $ $) NIL (|has| |#2| (-363)))) (-3151 (($ $ $) NIL (|has| |#2| (-363)))) (-3036 (($ $ $) NIL (|has| |#2| (-363)))) (-3121 (($ $ $) NIL (|has| |#2| (-363)))) (-3110 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#2| (-363)))) (-3132 (((-3 $ "failed") $ $) NIL (|has| |#2| (-363)))) (-3177 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#2| (-363)))) (-2725 ((|#2| $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3012 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555)))) (-3871 (((-767) $) NIL)) (-3885 ((|#2| $) NIL (|has| |#2| (-452)))) (-1692 (((-858) $) 23) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#2| (-1034 (-407 (-563))))) (($ |#2|) NIL) (($ (-1253 |#1|)) 18)) (-3955 (((-640 |#2|) $) NIL)) (-3244 ((|#2| $ (-767)) NIL)) (-3914 (((-767)) NIL)) (-3727 ((|#2| $ |#2| |#2|) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) 13 T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
(((-851 |#1| |#2| |#3| |#4|) (-13 (-848 |#2|) (-613 (-1253 |#1|))) (-1169) (-1045) (-99 |#2|) (-1 |#2| |#2|)) (T -851))
NIL
(-13 (-848 |#2|) (-613 (-1253 |#1|)))
-((-4195 ((|#1| (-767) |#1|) 35 (|has| |#1| (-38 (-407 (-563)))))) (-3566 ((|#1| (-767) (-767) |#1|) 27) ((|#1| (-767) |#1|) 20)) (-3634 ((|#1| (-767) |#1|) 31)) (-3265 ((|#1| (-767) |#1|) 29)) (-3932 ((|#1| (-767) |#1|) 28)))
-(((-852 |#1|) (-10 -7 (-15 -3932 (|#1| (-767) |#1|)) (-15 -3265 (|#1| (-767) |#1|)) (-15 -3634 (|#1| (-767) |#1|)) (-15 -3566 (|#1| (-767) |#1|)) (-15 -3566 (|#1| (-767) (-767) |#1|)) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -4195 (|#1| (-767) |#1|)) |%noBranch|)) (-172)) (T -852))
-((-4195 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-172)))) (-3566 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172)))) (-3566 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172)))) (-3634 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172)))) (-3265 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172)))) (-3932 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172)))))
-(-10 -7 (-15 -3932 (|#1| (-767) |#1|)) (-15 -3265 (|#1| (-767) |#1|)) (-15 -3634 (|#1| (-767) |#1|)) (-15 -3566 (|#1| (-767) |#1|)) (-15 -3566 (|#1| (-767) (-767) |#1|)) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -4195 (|#1| (-767) |#1|)) |%noBranch|))
-((-1677 (((-112) $ $) 7)) (-3084 (($ $ $) 13)) (-1777 (($ $ $) 14)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1778 (((-112) $ $) 16)) (-1756 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 15)) (-1744 (((-112) $ $) 18)) (** (($ $ (-917)) 21)) (* (($ $ $) 20)))
+((-3214 ((|#1| (-767) |#1|) 35 (|has| |#1| (-38 (-407 (-563)))))) (-3204 ((|#1| (-767) (-767) |#1|) 27) ((|#1| (-767) |#1|) 20)) (-3193 ((|#1| (-767) |#1|) 31)) (-1858 ((|#1| (-767) |#1|) 29)) (-1847 ((|#1| (-767) |#1|) 28)))
+(((-852 |#1|) (-10 -7 (-15 -1847 (|#1| (-767) |#1|)) (-15 -1858 (|#1| (-767) |#1|)) (-15 -3193 (|#1| (-767) |#1|)) (-15 -3204 (|#1| (-767) |#1|)) (-15 -3204 (|#1| (-767) (-767) |#1|)) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3214 (|#1| (-767) |#1|)) |%noBranch|)) (-172)) (T -852))
+((-3214 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-172)))) (-3204 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172)))) (-3204 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172)))) (-3193 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172)))) (-1858 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172)))) (-1847 (*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172)))))
+(-10 -7 (-15 -1847 (|#1| (-767) |#1|)) (-15 -1858 (|#1| (-767) |#1|)) (-15 -3193 (|#1| (-767) |#1|)) (-15 -3204 (|#1| (-767) |#1|)) (-15 -3204 (|#1| (-767) (-767) |#1|)) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3214 (|#1| (-767) |#1|)) |%noBranch|))
+((-1677 (((-112) $ $) 7)) (-3088 (($ $ $) 13)) (-1776 (($ $ $) 14)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1779 (((-112) $ $) 16)) (-1754 (((-112) $ $) 17)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 15)) (-1743 (((-112) $ $) 18)) (** (($ $ (-917)) 21)) (* (($ $ $) 20)))
(((-853) (-140)) (T -853))
NIL
(-13 (-846) (-1105))
(((-102) . T) ((-610 (-858)) . T) ((-846) . T) ((-1105) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-2619 (((-563) $) 12)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 18) (($ (-563)) 11)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 8)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 9)))
-(((-854) (-13 (-846) (-10 -8 (-15 -1693 ($ (-563))) (-15 -2619 ((-563) $))))) (T -854))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-854)))) (-2619 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-854)))))
-(-13 (-846) (-10 -8 (-15 -1693 ($ (-563))) (-15 -2619 ((-563) $))))
-((-2577 (((-686 (-1215)) $ (-1215)) 15)) (-2871 (((-686 (-548)) $ (-548)) 12)) (-2910 (((-767) $ (-128)) 24)))
-(((-855 |#1|) (-10 -8 (-15 -2910 ((-767) |#1| (-128))) (-15 -2577 ((-686 (-1215)) |#1| (-1215))) (-15 -2871 ((-686 (-548)) |#1| (-548)))) (-856)) (T -855))
-NIL
-(-10 -8 (-15 -2910 ((-767) |#1| (-128))) (-15 -2577 ((-686 (-1215)) |#1| (-1215))) (-15 -2871 ((-686 (-548)) |#1| (-548))))
-((-2577 (((-686 (-1215)) $ (-1215)) 8)) (-2871 (((-686 (-548)) $ (-548)) 9)) (-2910 (((-767) $ (-128)) 7)) (-1717 (((-686 (-129)) $ (-129)) 10)) (-3004 (($ $) 6)))
+((-1677 (((-112) $ $) NIL)) (-2618 (((-563) $) 12)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 18) (($ (-563)) 11)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 8)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 9)))
+(((-854) (-13 (-846) (-10 -8 (-15 -1692 ($ (-563))) (-15 -2618 ((-563) $))))) (T -854))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-854)))) (-2618 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-854)))))
+(-13 (-846) (-10 -8 (-15 -1692 ($ (-563))) (-15 -2618 ((-563) $))))
+((-3233 (((-686 (-1215)) $ (-1215)) 15)) (-3243 (((-686 (-548)) $ (-548)) 12)) (-3225 (((-767) $ (-128)) 24)))
+(((-855 |#1|) (-10 -8 (-15 -3225 ((-767) |#1| (-128))) (-15 -3233 ((-686 (-1215)) |#1| (-1215))) (-15 -3243 ((-686 (-548)) |#1| (-548)))) (-856)) (T -855))
+NIL
+(-10 -8 (-15 -3225 ((-767) |#1| (-128))) (-15 -3233 ((-686 (-1215)) |#1| (-1215))) (-15 -3243 ((-686 (-548)) |#1| (-548))))
+((-3233 (((-686 (-1215)) $ (-1215)) 8)) (-3243 (((-686 (-548)) $ (-548)) 9)) (-3225 (((-767) $ (-128)) 7)) (-3254 (((-686 (-129)) $ (-129)) 10)) (-1895 (($ $) 6)))
(((-856) (-140)) (T -856))
-((-1717 (*1 *2 *1 *3) (-12 (-4 *1 (-856)) (-5 *2 (-686 (-129))) (-5 *3 (-129)))) (-2871 (*1 *2 *1 *3) (-12 (-4 *1 (-856)) (-5 *2 (-686 (-548))) (-5 *3 (-548)))) (-2577 (*1 *2 *1 *3) (-12 (-4 *1 (-856)) (-5 *2 (-686 (-1215))) (-5 *3 (-1215)))) (-2910 (*1 *2 *1 *3) (-12 (-4 *1 (-856)) (-5 *3 (-128)) (-5 *2 (-767)))))
-(-13 (-173) (-10 -8 (-15 -1717 ((-686 (-129)) $ (-129))) (-15 -2871 ((-686 (-548)) $ (-548))) (-15 -2577 ((-686 (-1215)) $ (-1215))) (-15 -2910 ((-767) $ (-128)))))
+((-3254 (*1 *2 *1 *3) (-12 (-4 *1 (-856)) (-5 *2 (-686 (-129))) (-5 *3 (-129)))) (-3243 (*1 *2 *1 *3) (-12 (-4 *1 (-856)) (-5 *2 (-686 (-548))) (-5 *3 (-548)))) (-3233 (*1 *2 *1 *3) (-12 (-4 *1 (-856)) (-5 *2 (-686 (-1215))) (-5 *3 (-1215)))) (-3225 (*1 *2 *1 *3) (-12 (-4 *1 (-856)) (-5 *3 (-128)) (-5 *2 (-767)))))
+(-13 (-173) (-10 -8 (-15 -3254 ((-686 (-129)) $ (-129))) (-15 -3243 ((-686 (-548)) $ (-548))) (-15 -3233 ((-686 (-1215)) $ (-1215))) (-15 -3225 ((-767) $ (-128)))))
(((-173) . T))
-((-2577 (((-686 (-1215)) $ (-1215)) NIL)) (-2871 (((-686 (-548)) $ (-548)) NIL)) (-2910 (((-767) $ (-128)) NIL)) (-1717 (((-686 (-129)) $ (-129)) 21)) (-1802 (($ (-388)) 12) (($ (-1151)) 14)) (-4080 (((-112) $) 18)) (-1693 (((-858) $) 25)) (-3004 (($ $) 22)))
-(((-857) (-13 (-856) (-610 (-858)) (-10 -8 (-15 -1802 ($ (-388))) (-15 -1802 ($ (-1151))) (-15 -4080 ((-112) $))))) (T -857))
-((-1802 (*1 *1 *2) (-12 (-5 *2 (-388)) (-5 *1 (-857)))) (-1802 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-857)))) (-4080 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-857)))))
-(-13 (-856) (-610 (-858)) (-10 -8 (-15 -1802 ($ (-388))) (-15 -1802 ($ (-1151))) (-15 -4080 ((-112) $))))
-((-1677 (((-112) $ $) NIL) (($ $ $) 77)) (-3162 (($ $ $) 114)) (-3835 (((-563) $) 31) (((-563)) 36)) (-4153 (($ (-563)) 45)) (-2206 (($ $ $) 46) (($ (-640 $)) 76)) (-3627 (($ $ (-640 $)) 74)) (-4351 (((-563) $) 34)) (-3125 (($ $ $) 65)) (-2236 (($ $) 127) (($ $ $) 128) (($ $ $ $) 129)) (-1948 (((-563) $) 33)) (-3799 (($ $ $) 64)) (-3736 (($ $) 104)) (-4328 (($ $ $) 118)) (-2617 (($ (-640 $)) 53)) (-3428 (($ $ (-640 $)) 71)) (-1444 (($ (-563) (-563)) 47)) (-3853 (($ $) 115) (($ $ $) 116)) (-1701 (($ $ (-563)) 41) (($ $) 44)) (-3090 (($ $ $) 89)) (-2326 (($ $ $) 121)) (-2827 (($ $) 105)) (-3050 (($ $ $) 90)) (-2169 (($ $) 130) (($ $ $) 131) (($ $ $ $) 132)) (-3303 (((-1262) $) 10)) (-2858 (($ $) 108) (($ $ (-767)) 111)) (-4259 (($ $ $) 67)) (-3034 (($ $ $) 66)) (-3246 (($ $ (-640 $)) 100)) (-1804 (($ $ $) 103)) (-1762 (($ (-640 $)) 51)) (-3968 (($ $) 62) (($ (-640 $)) 63)) (-3012 (($ $ $) 112)) (-4001 (($ $) 106)) (-4299 (($ $ $) 117)) (-2349 (($ (-563)) 21) (($ (-1169)) 23) (($ (-1151)) 30) (($ (-225)) 25)) (-2202 (($ $ $) 93)) (-2176 (($ $) 94)) (-2640 (((-1262) (-1151)) 15)) (-4002 (($ (-1151)) 14)) (-4038 (($ (-640 (-640 $))) 50)) (-1686 (($ $ (-563)) 40) (($ $) 43)) (-3573 (((-1151) $) NIL)) (-1892 (($ $ $) 120)) (-1479 (($ $) 133) (($ $ $) 134) (($ $ $ $) 135)) (-2637 (((-112) $) 98)) (-1780 (($ $ (-640 $)) 101) (($ $ $ $) 102)) (-2470 (($ (-563)) 37)) (-4236 (((-563) $) 32) (((-563)) 35)) (-2805 (($ $ $) 38) (($ (-640 $)) 75)) (-1694 (((-1113) $) NIL)) (-3008 (($ $ $) 91)) (-3135 (($) 13)) (-2309 (($ $ (-640 $)) 99)) (-1454 (((-1151) (-1151)) 8)) (-4092 (($ $) 107) (($ $ (-767)) 110)) (-3028 (($ $ $) 88)) (-4202 (($ $ (-767)) 126)) (-2885 (($ (-640 $)) 52)) (-1693 (((-858) $) 19)) (-3408 (($ $ (-563)) 39) (($ $) 42)) (-2308 (($ $) 60) (($ (-640 $)) 61)) (-2534 (($ $) 58) (($ (-640 $)) 59)) (-3079 (($ $) 113)) (-4233 (($ (-640 $)) 57)) (-2869 (($ $ $) 97)) (-2085 (($ $ $) 119)) (-2190 (($ $ $) 92)) (-2178 (($ $ $) 95) (($ $) 96)) (-1778 (($ $ $) 81)) (-1756 (($ $ $) 79)) (-1718 (((-112) $ $) 16) (($ $ $) 17)) (-1768 (($ $ $) 80)) (-1744 (($ $ $) 78)) (-1837 (($ $ $) 86)) (-1826 (($ $ $) 83) (($ $) 84)) (-1814 (($ $ $) 82)) (** (($ $ $) 87)) (* (($ $ $) 85)))
-(((-858) (-13 (-1093) (-10 -8 (-15 -3303 ((-1262) $)) (-15 -4002 ($ (-1151))) (-15 -2640 ((-1262) (-1151))) (-15 -2349 ($ (-563))) (-15 -2349 ($ (-1169))) (-15 -2349 ($ (-1151))) (-15 -2349 ($ (-225))) (-15 -3135 ($)) (-15 -1454 ((-1151) (-1151))) (-15 -3835 ((-563) $)) (-15 -4236 ((-563) $)) (-15 -3835 ((-563))) (-15 -4236 ((-563))) (-15 -1948 ((-563) $)) (-15 -4351 ((-563) $)) (-15 -2470 ($ (-563))) (-15 -4153 ($ (-563))) (-15 -1444 ($ (-563) (-563))) (-15 -1686 ($ $ (-563))) (-15 -1701 ($ $ (-563))) (-15 -3408 ($ $ (-563))) (-15 -1686 ($ $)) (-15 -1701 ($ $)) (-15 -3408 ($ $)) (-15 -2805 ($ $ $)) (-15 -2206 ($ $ $)) (-15 -2805 ($ (-640 $))) (-15 -2206 ($ (-640 $))) (-15 -3246 ($ $ (-640 $))) (-15 -1780 ($ $ (-640 $))) (-15 -1780 ($ $ $ $)) (-15 -1804 ($ $ $)) (-15 -2637 ((-112) $)) (-15 -2309 ($ $ (-640 $))) (-15 -3736 ($ $)) (-15 -1892 ($ $ $)) (-15 -3079 ($ $)) (-15 -4038 ($ (-640 (-640 $)))) (-15 -3162 ($ $ $)) (-15 -3853 ($ $)) (-15 -3853 ($ $ $)) (-15 -4299 ($ $ $)) (-15 -4328 ($ $ $)) (-15 -2085 ($ $ $)) (-15 -2326 ($ $ $)) (-15 -4202 ($ $ (-767))) (-15 -2869 ($ $ $)) (-15 -3799 ($ $ $)) (-15 -3125 ($ $ $)) (-15 -3034 ($ $ $)) (-15 -4259 ($ $ $)) (-15 -3428 ($ $ (-640 $))) (-15 -3627 ($ $ (-640 $))) (-15 -2827 ($ $)) (-15 -4092 ($ $)) (-15 -4092 ($ $ (-767))) (-15 -2858 ($ $)) (-15 -2858 ($ $ (-767))) (-15 -4001 ($ $)) (-15 -3012 ($ $ $)) (-15 -2236 ($ $)) (-15 -2236 ($ $ $)) (-15 -2236 ($ $ $ $)) (-15 -2169 ($ $)) (-15 -2169 ($ $ $)) (-15 -2169 ($ $ $ $)) (-15 -1479 ($ $)) (-15 -1479 ($ $ $)) (-15 -1479 ($ $ $ $)) (-15 -2534 ($ $)) (-15 -2534 ($ (-640 $))) (-15 -2308 ($ $)) (-15 -2308 ($ (-640 $))) (-15 -3968 ($ $)) (-15 -3968 ($ (-640 $))) (-15 -1762 ($ (-640 $))) (-15 -2885 ($ (-640 $))) (-15 -2617 ($ (-640 $))) (-15 -4233 ($ (-640 $))) (-15 -1718 ($ $ $)) (-15 -1677 ($ $ $)) (-15 -1744 ($ $ $)) (-15 -1756 ($ $ $)) (-15 -1768 ($ $ $)) (-15 -1778 ($ $ $)) (-15 -1814 ($ $ $)) (-15 -1826 ($ $ $)) (-15 -1826 ($ $)) (-15 * ($ $ $)) (-15 -1837 ($ $ $)) (-15 ** ($ $ $)) (-15 -3028 ($ $ $)) (-15 -3090 ($ $ $)) (-15 -3050 ($ $ $)) (-15 -3008 ($ $ $)) (-15 -2190 ($ $ $)) (-15 -2202 ($ $ $)) (-15 -2176 ($ $)) (-15 -2178 ($ $ $)) (-15 -2178 ($ $))))) (T -858))
-((-3303 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-858)))) (-4002 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-858)))) (-2640 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-858)))) (-2349 (*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-2349 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-858)))) (-2349 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-858)))) (-2349 (*1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-858)))) (-3135 (*1 *1) (-5 *1 (-858))) (-1454 (*1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-858)))) (-3835 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-4236 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-3835 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-4236 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-1948 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-4351 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-2470 (*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-4153 (*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-1444 (*1 *1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-1686 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-1701 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-3408 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-1686 (*1 *1 *1) (-5 *1 (-858))) (-1701 (*1 *1 *1) (-5 *1 (-858))) (-3408 (*1 *1 *1) (-5 *1 (-858))) (-2805 (*1 *1 *1 *1) (-5 *1 (-858))) (-2206 (*1 *1 *1 *1) (-5 *1 (-858))) (-2805 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-2206 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3246 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-1780 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-1780 (*1 *1 *1 *1 *1) (-5 *1 (-858))) (-1804 (*1 *1 *1 *1) (-5 *1 (-858))) (-2637 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-858)))) (-2309 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3736 (*1 *1 *1) (-5 *1 (-858))) (-1892 (*1 *1 *1 *1) (-5 *1 (-858))) (-3079 (*1 *1 *1) (-5 *1 (-858))) (-4038 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 (-858)))) (-5 *1 (-858)))) (-3162 (*1 *1 *1 *1) (-5 *1 (-858))) (-3853 (*1 *1 *1) (-5 *1 (-858))) (-3853 (*1 *1 *1 *1) (-5 *1 (-858))) (-4299 (*1 *1 *1 *1) (-5 *1 (-858))) (-4328 (*1 *1 *1 *1) (-5 *1 (-858))) (-2085 (*1 *1 *1 *1) (-5 *1 (-858))) (-2326 (*1 *1 *1 *1) (-5 *1 (-858))) (-4202 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-858)))) (-2869 (*1 *1 *1 *1) (-5 *1 (-858))) (-3799 (*1 *1 *1 *1) (-5 *1 (-858))) (-3125 (*1 *1 *1 *1) (-5 *1 (-858))) (-3034 (*1 *1 *1 *1) (-5 *1 (-858))) (-4259 (*1 *1 *1 *1) (-5 *1 (-858))) (-3428 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3627 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-2827 (*1 *1 *1) (-5 *1 (-858))) (-4092 (*1 *1 *1) (-5 *1 (-858))) (-4092 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-858)))) (-2858 (*1 *1 *1) (-5 *1 (-858))) (-2858 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-858)))) (-4001 (*1 *1 *1) (-5 *1 (-858))) (-3012 (*1 *1 *1 *1) (-5 *1 (-858))) (-2236 (*1 *1 *1) (-5 *1 (-858))) (-2236 (*1 *1 *1 *1) (-5 *1 (-858))) (-2236 (*1 *1 *1 *1 *1) (-5 *1 (-858))) (-2169 (*1 *1 *1) (-5 *1 (-858))) (-2169 (*1 *1 *1 *1) (-5 *1 (-858))) (-2169 (*1 *1 *1 *1 *1) (-5 *1 (-858))) (-1479 (*1 *1 *1) (-5 *1 (-858))) (-1479 (*1 *1 *1 *1) (-5 *1 (-858))) (-1479 (*1 *1 *1 *1 *1) (-5 *1 (-858))) (-2534 (*1 *1 *1) (-5 *1 (-858))) (-2534 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-2308 (*1 *1 *1) (-5 *1 (-858))) (-2308 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3968 (*1 *1 *1) (-5 *1 (-858))) (-3968 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-1762 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-2885 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-2617 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-4233 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-1718 (*1 *1 *1 *1) (-5 *1 (-858))) (-1677 (*1 *1 *1 *1) (-5 *1 (-858))) (-1744 (*1 *1 *1 *1) (-5 *1 (-858))) (-1756 (*1 *1 *1 *1) (-5 *1 (-858))) (-1768 (*1 *1 *1 *1) (-5 *1 (-858))) (-1778 (*1 *1 *1 *1) (-5 *1 (-858))) (-1814 (*1 *1 *1 *1) (-5 *1 (-858))) (-1826 (*1 *1 *1 *1) (-5 *1 (-858))) (-1826 (*1 *1 *1) (-5 *1 (-858))) (* (*1 *1 *1 *1) (-5 *1 (-858))) (-1837 (*1 *1 *1 *1) (-5 *1 (-858))) (** (*1 *1 *1 *1) (-5 *1 (-858))) (-3028 (*1 *1 *1 *1) (-5 *1 (-858))) (-3090 (*1 *1 *1 *1) (-5 *1 (-858))) (-3050 (*1 *1 *1 *1) (-5 *1 (-858))) (-3008 (*1 *1 *1 *1) (-5 *1 (-858))) (-2190 (*1 *1 *1 *1) (-5 *1 (-858))) (-2202 (*1 *1 *1 *1) (-5 *1 (-858))) (-2176 (*1 *1 *1) (-5 *1 (-858))) (-2178 (*1 *1 *1 *1) (-5 *1 (-858))) (-2178 (*1 *1 *1) (-5 *1 (-858))))
-(-13 (-1093) (-10 -8 (-15 -3303 ((-1262) $)) (-15 -4002 ($ (-1151))) (-15 -2640 ((-1262) (-1151))) (-15 -2349 ($ (-563))) (-15 -2349 ($ (-1169))) (-15 -2349 ($ (-1151))) (-15 -2349 ($ (-225))) (-15 -3135 ($)) (-15 -1454 ((-1151) (-1151))) (-15 -3835 ((-563) $)) (-15 -4236 ((-563) $)) (-15 -3835 ((-563))) (-15 -4236 ((-563))) (-15 -1948 ((-563) $)) (-15 -4351 ((-563) $)) (-15 -2470 ($ (-563))) (-15 -4153 ($ (-563))) (-15 -1444 ($ (-563) (-563))) (-15 -1686 ($ $ (-563))) (-15 -1701 ($ $ (-563))) (-15 -3408 ($ $ (-563))) (-15 -1686 ($ $)) (-15 -1701 ($ $)) (-15 -3408 ($ $)) (-15 -2805 ($ $ $)) (-15 -2206 ($ $ $)) (-15 -2805 ($ (-640 $))) (-15 -2206 ($ (-640 $))) (-15 -3246 ($ $ (-640 $))) (-15 -1780 ($ $ (-640 $))) (-15 -1780 ($ $ $ $)) (-15 -1804 ($ $ $)) (-15 -2637 ((-112) $)) (-15 -2309 ($ $ (-640 $))) (-15 -3736 ($ $)) (-15 -1892 ($ $ $)) (-15 -3079 ($ $)) (-15 -4038 ($ (-640 (-640 $)))) (-15 -3162 ($ $ $)) (-15 -3853 ($ $)) (-15 -3853 ($ $ $)) (-15 -4299 ($ $ $)) (-15 -4328 ($ $ $)) (-15 -2085 ($ $ $)) (-15 -2326 ($ $ $)) (-15 -4202 ($ $ (-767))) (-15 -2869 ($ $ $)) (-15 -3799 ($ $ $)) (-15 -3125 ($ $ $)) (-15 -3034 ($ $ $)) (-15 -4259 ($ $ $)) (-15 -3428 ($ $ (-640 $))) (-15 -3627 ($ $ (-640 $))) (-15 -2827 ($ $)) (-15 -4092 ($ $)) (-15 -4092 ($ $ (-767))) (-15 -2858 ($ $)) (-15 -2858 ($ $ (-767))) (-15 -4001 ($ $)) (-15 -3012 ($ $ $)) (-15 -2236 ($ $)) (-15 -2236 ($ $ $)) (-15 -2236 ($ $ $ $)) (-15 -2169 ($ $)) (-15 -2169 ($ $ $)) (-15 -2169 ($ $ $ $)) (-15 -1479 ($ $)) (-15 -1479 ($ $ $)) (-15 -1479 ($ $ $ $)) (-15 -2534 ($ $)) (-15 -2534 ($ (-640 $))) (-15 -2308 ($ $)) (-15 -2308 ($ (-640 $))) (-15 -3968 ($ $)) (-15 -3968 ($ (-640 $))) (-15 -1762 ($ (-640 $))) (-15 -2885 ($ (-640 $))) (-15 -2617 ($ (-640 $))) (-15 -4233 ($ (-640 $))) (-15 -1718 ($ $ $)) (-15 -1677 ($ $ $)) (-15 -1744 ($ $ $)) (-15 -1756 ($ $ $)) (-15 -1768 ($ $ $)) (-15 -1778 ($ $ $)) (-15 -1814 ($ $ $)) (-15 -1826 ($ $ $)) (-15 -1826 ($ $)) (-15 * ($ $ $)) (-15 -1837 ($ $ $)) (-15 ** ($ $ $)) (-15 -3028 ($ $ $)) (-15 -3090 ($ $ $)) (-15 -3050 ($ $ $)) (-15 -3008 ($ $ $)) (-15 -2190 ($ $ $)) (-15 -2202 ($ $ $)) (-15 -2176 ($ $)) (-15 -2178 ($ $ $)) (-15 -2178 ($ $))))
-((-1922 (((-1262) (-640 (-52))) 24)) (-1555 (((-1262) (-1151) (-858)) 14) (((-1262) (-858)) 9) (((-1262) (-1151)) 11)))
-(((-859) (-10 -7 (-15 -1555 ((-1262) (-1151))) (-15 -1555 ((-1262) (-858))) (-15 -1555 ((-1262) (-1151) (-858))) (-15 -1922 ((-1262) (-640 (-52)))))) (T -859))
-((-1922 (*1 *2 *3) (-12 (-5 *3 (-640 (-52))) (-5 *2 (-1262)) (-5 *1 (-859)))) (-1555 (*1 *2 *3 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-858)) (-5 *2 (-1262)) (-5 *1 (-859)))) (-1555 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-859)))) (-1555 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-859)))))
-(-10 -7 (-15 -1555 ((-1262) (-1151))) (-15 -1555 ((-1262) (-858))) (-15 -1555 ((-1262) (-1151) (-858))) (-15 -1922 ((-1262) (-640 (-52)))))
-((-1677 (((-112) $ $) NIL)) (-2518 (((-3 $ "failed") (-1169)) 33)) (-3749 (((-767)) 31)) (-1691 (($) NIL)) (-3084 (($ $ $) NIL) (($) NIL T CONST)) (-1777 (($ $ $) NIL) (($) NIL T CONST)) (-1476 (((-917) $) 29)) (-3573 (((-1151) $) 39)) (-2555 (($ (-917)) 28)) (-1694 (((-1113) $) NIL)) (-2220 (((-1169) $) 13) (((-536) $) 19) (((-888 (-379)) $) 26) (((-888 (-563)) $) 22)) (-1693 (((-858) $) 16)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 36)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 35)))
-(((-860 |#1|) (-13 (-840) (-611 (-1169)) (-611 (-536)) (-611 (-888 (-379))) (-611 (-888 (-563))) (-10 -8 (-15 -2518 ((-3 $ "failed") (-1169))))) (-640 (-1169))) (T -860))
-((-2518 (*1 *1 *2) (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-860 *3)) (-14 *3 (-640 *2)))))
-(-13 (-840) (-611 (-1169)) (-611 (-536)) (-611 (-888 (-379))) (-611 (-888 (-563))) (-10 -8 (-15 -2518 ((-3 $ "failed") (-1169)))))
-((-1677 (((-112) $ $) NIL)) (-3348 (((-506) $) 9)) (-2259 (((-640 (-439)) $) 13)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 21)) (-1718 (((-112) $ $) 16)))
-(((-861) (-13 (-1093) (-10 -8 (-15 -3348 ((-506) $)) (-15 -2259 ((-640 (-439)) $))))) (T -861))
-((-3348 (*1 *2 *1) (-12 (-5 *2 (-506)) (-5 *1 (-861)))) (-2259 (*1 *2 *1) (-12 (-5 *2 (-640 (-439))) (-5 *1 (-861)))))
-(-13 (-1093) (-10 -8 (-15 -3348 ((-506) $)) (-15 -2259 ((-640 (-439)) $))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-3400 (((-3 $ "failed") $) NIL)) (-3827 (((-112) $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ (-948 |#1|)) NIL) (((-948 |#1|) $) NIL) (($ |#1|) NIL (|has| |#1| (-172)))) (-1675 (((-767)) NIL)) (-1984 (((-1262) (-767)) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1837 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
-(((-862 |#1| |#2| |#3| |#4|) (-13 (-1045) (-490 (-948 |#1|)) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -1837 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1984 ((-1262) (-767))))) (-1045) (-640 (-1169)) (-640 (-767)) (-767)) (T -862))
-((-1837 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-862 *2 *3 *4 *5)) (-4 *2 (-363)) (-4 *2 (-1045)) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-767))) (-14 *5 (-767)))) (-1984 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-862 *4 *5 *6 *7)) (-4 *4 (-1045)) (-14 *5 (-640 (-1169))) (-14 *6 (-640 *3)) (-14 *7 *3))))
-(-13 (-1045) (-490 (-948 |#1|)) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -1837 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1984 ((-1262) (-767)))))
-((-2463 (((-3 (-174 |#3|) "failed") (-767) (-767) |#2| |#2|) 31)) (-3134 (((-3 (-407 |#3|) "failed") (-767) (-767) |#2| |#2|) 24)))
-(((-863 |#1| |#2| |#3|) (-10 -7 (-15 -3134 ((-3 (-407 |#3|) "failed") (-767) (-767) |#2| |#2|)) (-15 -2463 ((-3 (-174 |#3|) "failed") (-767) (-767) |#2| |#2|))) (-363) (-1248 |#1|) (-1233 |#1|)) (T -863))
-((-2463 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-767)) (-4 *5 (-363)) (-5 *2 (-174 *6)) (-5 *1 (-863 *5 *4 *6)) (-4 *4 (-1248 *5)) (-4 *6 (-1233 *5)))) (-3134 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-767)) (-4 *5 (-363)) (-5 *2 (-407 *6)) (-5 *1 (-863 *5 *4 *6)) (-4 *4 (-1248 *5)) (-4 *6 (-1233 *5)))))
-(-10 -7 (-15 -3134 ((-3 (-407 |#3|) "failed") (-767) (-767) |#2| |#2|)) (-15 -2463 ((-3 (-174 |#3|) "failed") (-767) (-767) |#2| |#2|)))
-((-3134 (((-3 (-407 (-1230 |#2| |#1|)) "failed") (-767) (-767) (-1249 |#1| |#2| |#3|)) 28) (((-3 (-407 (-1230 |#2| |#1|)) "failed") (-767) (-767) (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|)) 26)))
-(((-864 |#1| |#2| |#3|) (-10 -7 (-15 -3134 ((-3 (-407 (-1230 |#2| |#1|)) "failed") (-767) (-767) (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|))) (-15 -3134 ((-3 (-407 (-1230 |#2| |#1|)) "failed") (-767) (-767) (-1249 |#1| |#2| |#3|)))) (-363) (-1169) |#1|) (T -864))
-((-3134 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-767)) (-5 *4 (-1249 *5 *6 *7)) (-4 *5 (-363)) (-14 *6 (-1169)) (-14 *7 *5) (-5 *2 (-407 (-1230 *6 *5))) (-5 *1 (-864 *5 *6 *7)))) (-3134 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-767)) (-5 *4 (-1249 *5 *6 *7)) (-4 *5 (-363)) (-14 *6 (-1169)) (-14 *7 *5) (-5 *2 (-407 (-1230 *6 *5))) (-5 *1 (-864 *5 *6 *7)))))
-(-10 -7 (-15 -3134 ((-3 (-407 (-1230 |#2| |#1|)) "failed") (-767) (-767) (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|))) (-15 -3134 ((-3 (-407 (-1230 |#2| |#1|)) "failed") (-767) (-767) (-1249 |#1| |#2| |#3|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-1495 (((-3 $ "failed") $ $) 19)) (-2186 (($ $ (-563)) 63)) (-1919 (((-112) $ $) 60)) (-4239 (($) 17 T CONST)) (-3853 (($ (-1165 (-563)) (-563)) 62)) (-3090 (($ $ $) 56)) (-3400 (((-3 $ "failed") $) 33)) (-2840 (($ $) 65)) (-3050 (($ $ $) 57)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 52)) (-3254 (((-767) $) 70)) (-3827 (((-112) $) 31)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-2995 (((-563)) 67)) (-3553 (((-563) $) 66)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3320 (($ $ (-563)) 69)) (-3008 (((-3 $ "failed") $ $) 43)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-2628 (((-767) $) 59)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 58)) (-4113 (((-1149 (-563)) $) 71)) (-1741 (($ $) 68)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 40)) (-1403 (((-563) $ (-563)) 64)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-3233 (((-686 (-1215)) $ (-1215)) NIL)) (-3243 (((-686 (-548)) $ (-548)) NIL)) (-3225 (((-767) $ (-128)) NIL)) (-3254 (((-686 (-129)) $ (-129)) 21)) (-3180 (($ (-388)) 12) (($ (-1151)) 14)) (-3170 (((-112) $) 18)) (-1692 (((-858) $) 25)) (-1895 (($ $) 22)))
+(((-857) (-13 (-856) (-610 (-858)) (-10 -8 (-15 -3180 ($ (-388))) (-15 -3180 ($ (-1151))) (-15 -3170 ((-112) $))))) (T -857))
+((-3180 (*1 *1 *2) (-12 (-5 *2 (-388)) (-5 *1 (-857)))) (-3180 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-857)))) (-3170 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-857)))))
+(-13 (-856) (-610 (-858)) (-10 -8 (-15 -3180 ($ (-388))) (-15 -3180 ($ (-1151))) (-15 -3170 ((-112) $))))
+((-1677 (((-112) $ $) NIL) (($ $ $) 77)) (-3387 (($ $ $) 114)) (-3835 (((-563) $) 31) (((-563)) 36)) (-3459 (($ (-563)) 45)) (-3423 (($ $ $) 46) (($ (-640 $)) 76)) (-3295 (($ $ (-640 $)) 74)) (-3480 (((-563) $) 34)) (-3129 (($ $ $) 65)) (-2235 (($ $) 127) (($ $ $) 128) (($ $ $ $) 129)) (-3490 (((-563) $) 33)) (-3331 (($ $ $) 64)) (-3737 (($ $) 104)) (-3362 (($ $ $) 118)) (-3197 (($ (-640 $)) 53)) (-3432 (($ $ (-640 $)) 71)) (-3448 (($ (-563) (-563)) 47)) (-3558 (($ $) 115) (($ $ $) 116)) (-1700 (($ $ (-563)) 41) (($ $) 44)) (-3094 (($ $ $) 89)) (-3341 (($ $ $) 121)) (-3284 (($ $) 105)) (-3054 (($ $ $) 90)) (-3248 (($ $) 130) (($ $ $) 131) (($ $ $ $) 132)) (-3307 (((-1262) $) 10)) (-3275 (($ $) 108) (($ $ (-767)) 111)) (-3310 (($ $ $) 67)) (-3321 (($ $ $) 66)) (-3250 (($ $ (-640 $)) 100)) (-3400 (($ $ $) 103)) (-3218 (($ (-640 $)) 51)) (-3228 (($ $) 62) (($ (-640 $)) 63)) (-3258 (($ $ $) 112)) (-3265 (($ $) 106)) (-3375 (($ $ $) 117)) (-1307 (($ (-563)) 21) (($ (-1169)) 23) (($ (-1151)) 30) (($ (-225)) 25)) (-2200 (($ $ $) 93)) (-2174 (($ $) 94)) (-3512 (((-1262) (-1151)) 15)) (-4003 (($ (-1151)) 14)) (-4040 (($ (-640 (-640 $))) 50)) (-1685 (($ $ (-563)) 40) (($ $) 43)) (-3854 (((-1151) $) NIL)) (-1890 (($ $ $) 120)) (-3982 (($ $) 133) (($ $ $) 134) (($ $ $ $) 135)) (-2636 (((-112) $) 98)) (-3411 (($ $ (-640 $)) 101) (($ $ $ $) 102)) (-3470 (($ (-563)) 37)) (-4238 (((-563) $) 32) (((-563)) 35)) (-3437 (($ $ $) 38) (($ (-640 $)) 75)) (-1693 (((-1113) $) NIL)) (-3012 (($ $ $) 91)) (-3445 (($) 13)) (-2308 (($ $ (-640 $)) 99)) (-3501 (((-1151) (-1151)) 8)) (-4121 (($ $) 107) (($ $ (-767)) 110)) (-3032 (($ $ $) 88)) (-4203 (($ $ (-767)) 126)) (-3207 (($ (-640 $)) 52)) (-1692 (((-858) $) 19)) (-3412 (($ $ (-563)) 39) (($ $) 42)) (-3237 (($ $) 60) (($ (-640 $)) 61)) (-2533 (($ $) 58) (($ (-640 $)) 59)) (-3083 (($ $) 113)) (-3189 (($ (-640 $)) 57)) (-1864 (($ $ $) 97)) (-3351 (($ $ $) 119)) (-2188 (($ $ $) 92)) (-2177 (($ $ $) 95) (($ $) 96)) (-1779 (($ $ $) 81)) (-1754 (($ $ $) 79)) (-1718 (((-112) $ $) 16) (($ $ $) 17)) (-1766 (($ $ $) 80)) (-1743 (($ $ $) 78)) (-1836 (($ $ $) 86)) (-1825 (($ $ $) 83) (($ $) 84)) (-1813 (($ $ $) 82)) (** (($ $ $) 87)) (* (($ $ $) 85)))
+(((-858) (-13 (-1093) (-10 -8 (-15 -3307 ((-1262) $)) (-15 -4003 ($ (-1151))) (-15 -3512 ((-1262) (-1151))) (-15 -1307 ($ (-563))) (-15 -1307 ($ (-1169))) (-15 -1307 ($ (-1151))) (-15 -1307 ($ (-225))) (-15 -3445 ($)) (-15 -3501 ((-1151) (-1151))) (-15 -3835 ((-563) $)) (-15 -4238 ((-563) $)) (-15 -3835 ((-563))) (-15 -4238 ((-563))) (-15 -3490 ((-563) $)) (-15 -3480 ((-563) $)) (-15 -3470 ($ (-563))) (-15 -3459 ($ (-563))) (-15 -3448 ($ (-563) (-563))) (-15 -1685 ($ $ (-563))) (-15 -1700 ($ $ (-563))) (-15 -3412 ($ $ (-563))) (-15 -1685 ($ $)) (-15 -1700 ($ $)) (-15 -3412 ($ $)) (-15 -3437 ($ $ $)) (-15 -3423 ($ $ $)) (-15 -3437 ($ (-640 $))) (-15 -3423 ($ (-640 $))) (-15 -3250 ($ $ (-640 $))) (-15 -3411 ($ $ (-640 $))) (-15 -3411 ($ $ $ $)) (-15 -3400 ($ $ $)) (-15 -2636 ((-112) $)) (-15 -2308 ($ $ (-640 $))) (-15 -3737 ($ $)) (-15 -1890 ($ $ $)) (-15 -3083 ($ $)) (-15 -4040 ($ (-640 (-640 $)))) (-15 -3387 ($ $ $)) (-15 -3558 ($ $)) (-15 -3558 ($ $ $)) (-15 -3375 ($ $ $)) (-15 -3362 ($ $ $)) (-15 -3351 ($ $ $)) (-15 -3341 ($ $ $)) (-15 -4203 ($ $ (-767))) (-15 -1864 ($ $ $)) (-15 -3331 ($ $ $)) (-15 -3129 ($ $ $)) (-15 -3321 ($ $ $)) (-15 -3310 ($ $ $)) (-15 -3432 ($ $ (-640 $))) (-15 -3295 ($ $ (-640 $))) (-15 -3284 ($ $)) (-15 -4121 ($ $)) (-15 -4121 ($ $ (-767))) (-15 -3275 ($ $)) (-15 -3275 ($ $ (-767))) (-15 -3265 ($ $)) (-15 -3258 ($ $ $)) (-15 -2235 ($ $)) (-15 -2235 ($ $ $)) (-15 -2235 ($ $ $ $)) (-15 -3248 ($ $)) (-15 -3248 ($ $ $)) (-15 -3248 ($ $ $ $)) (-15 -3982 ($ $)) (-15 -3982 ($ $ $)) (-15 -3982 ($ $ $ $)) (-15 -2533 ($ $)) (-15 -2533 ($ (-640 $))) (-15 -3237 ($ $)) (-15 -3237 ($ (-640 $))) (-15 -3228 ($ $)) (-15 -3228 ($ (-640 $))) (-15 -3218 ($ (-640 $))) (-15 -3207 ($ (-640 $))) (-15 -3197 ($ (-640 $))) (-15 -3189 ($ (-640 $))) (-15 -1718 ($ $ $)) (-15 -1677 ($ $ $)) (-15 -1743 ($ $ $)) (-15 -1754 ($ $ $)) (-15 -1766 ($ $ $)) (-15 -1779 ($ $ $)) (-15 -1813 ($ $ $)) (-15 -1825 ($ $ $)) (-15 -1825 ($ $)) (-15 * ($ $ $)) (-15 -1836 ($ $ $)) (-15 ** ($ $ $)) (-15 -3032 ($ $ $)) (-15 -3094 ($ $ $)) (-15 -3054 ($ $ $)) (-15 -3012 ($ $ $)) (-15 -2188 ($ $ $)) (-15 -2200 ($ $ $)) (-15 -2174 ($ $)) (-15 -2177 ($ $ $)) (-15 -2177 ($ $))))) (T -858))
+((-3307 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-858)))) (-4003 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-858)))) (-3512 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-858)))) (-1307 (*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-1307 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-858)))) (-1307 (*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-858)))) (-1307 (*1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-858)))) (-3445 (*1 *1) (-5 *1 (-858))) (-3501 (*1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-858)))) (-3835 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-4238 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-3835 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-4238 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-3490 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-3480 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-3470 (*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-3459 (*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-3448 (*1 *1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-1685 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-1700 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-3412 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))) (-1685 (*1 *1 *1) (-5 *1 (-858))) (-1700 (*1 *1 *1) (-5 *1 (-858))) (-3412 (*1 *1 *1) (-5 *1 (-858))) (-3437 (*1 *1 *1 *1) (-5 *1 (-858))) (-3423 (*1 *1 *1 *1) (-5 *1 (-858))) (-3437 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3423 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3250 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3411 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3411 (*1 *1 *1 *1 *1) (-5 *1 (-858))) (-3400 (*1 *1 *1 *1) (-5 *1 (-858))) (-2636 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-858)))) (-2308 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3737 (*1 *1 *1) (-5 *1 (-858))) (-1890 (*1 *1 *1 *1) (-5 *1 (-858))) (-3083 (*1 *1 *1) (-5 *1 (-858))) (-4040 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 (-858)))) (-5 *1 (-858)))) (-3387 (*1 *1 *1 *1) (-5 *1 (-858))) (-3558 (*1 *1 *1) (-5 *1 (-858))) (-3558 (*1 *1 *1 *1) (-5 *1 (-858))) (-3375 (*1 *1 *1 *1) (-5 *1 (-858))) (-3362 (*1 *1 *1 *1) (-5 *1 (-858))) (-3351 (*1 *1 *1 *1) (-5 *1 (-858))) (-3341 (*1 *1 *1 *1) (-5 *1 (-858))) (-4203 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-858)))) (-1864 (*1 *1 *1 *1) (-5 *1 (-858))) (-3331 (*1 *1 *1 *1) (-5 *1 (-858))) (-3129 (*1 *1 *1 *1) (-5 *1 (-858))) (-3321 (*1 *1 *1 *1) (-5 *1 (-858))) (-3310 (*1 *1 *1 *1) (-5 *1 (-858))) (-3432 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3295 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3284 (*1 *1 *1) (-5 *1 (-858))) (-4121 (*1 *1 *1) (-5 *1 (-858))) (-4121 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-858)))) (-3275 (*1 *1 *1) (-5 *1 (-858))) (-3275 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-858)))) (-3265 (*1 *1 *1) (-5 *1 (-858))) (-3258 (*1 *1 *1 *1) (-5 *1 (-858))) (-2235 (*1 *1 *1) (-5 *1 (-858))) (-2235 (*1 *1 *1 *1) (-5 *1 (-858))) (-2235 (*1 *1 *1 *1 *1) (-5 *1 (-858))) (-3248 (*1 *1 *1) (-5 *1 (-858))) (-3248 (*1 *1 *1 *1) (-5 *1 (-858))) (-3248 (*1 *1 *1 *1 *1) (-5 *1 (-858))) (-3982 (*1 *1 *1) (-5 *1 (-858))) (-3982 (*1 *1 *1 *1) (-5 *1 (-858))) (-3982 (*1 *1 *1 *1 *1) (-5 *1 (-858))) (-2533 (*1 *1 *1) (-5 *1 (-858))) (-2533 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3237 (*1 *1 *1) (-5 *1 (-858))) (-3237 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3228 (*1 *1 *1) (-5 *1 (-858))) (-3228 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3218 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3207 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3197 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-3189 (*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))) (-1718 (*1 *1 *1 *1) (-5 *1 (-858))) (-1677 (*1 *1 *1 *1) (-5 *1 (-858))) (-1743 (*1 *1 *1 *1) (-5 *1 (-858))) (-1754 (*1 *1 *1 *1) (-5 *1 (-858))) (-1766 (*1 *1 *1 *1) (-5 *1 (-858))) (-1779 (*1 *1 *1 *1) (-5 *1 (-858))) (-1813 (*1 *1 *1 *1) (-5 *1 (-858))) (-1825 (*1 *1 *1 *1) (-5 *1 (-858))) (-1825 (*1 *1 *1) (-5 *1 (-858))) (* (*1 *1 *1 *1) (-5 *1 (-858))) (-1836 (*1 *1 *1 *1) (-5 *1 (-858))) (** (*1 *1 *1 *1) (-5 *1 (-858))) (-3032 (*1 *1 *1 *1) (-5 *1 (-858))) (-3094 (*1 *1 *1 *1) (-5 *1 (-858))) (-3054 (*1 *1 *1 *1) (-5 *1 (-858))) (-3012 (*1 *1 *1 *1) (-5 *1 (-858))) (-2188 (*1 *1 *1 *1) (-5 *1 (-858))) (-2200 (*1 *1 *1 *1) (-5 *1 (-858))) (-2174 (*1 *1 *1) (-5 *1 (-858))) (-2177 (*1 *1 *1 *1) (-5 *1 (-858))) (-2177 (*1 *1 *1) (-5 *1 (-858))))
+(-13 (-1093) (-10 -8 (-15 -3307 ((-1262) $)) (-15 -4003 ($ (-1151))) (-15 -3512 ((-1262) (-1151))) (-15 -1307 ($ (-563))) (-15 -1307 ($ (-1169))) (-15 -1307 ($ (-1151))) (-15 -1307 ($ (-225))) (-15 -3445 ($)) (-15 -3501 ((-1151) (-1151))) (-15 -3835 ((-563) $)) (-15 -4238 ((-563) $)) (-15 -3835 ((-563))) (-15 -4238 ((-563))) (-15 -3490 ((-563) $)) (-15 -3480 ((-563) $)) (-15 -3470 ($ (-563))) (-15 -3459 ($ (-563))) (-15 -3448 ($ (-563) (-563))) (-15 -1685 ($ $ (-563))) (-15 -1700 ($ $ (-563))) (-15 -3412 ($ $ (-563))) (-15 -1685 ($ $)) (-15 -1700 ($ $)) (-15 -3412 ($ $)) (-15 -3437 ($ $ $)) (-15 -3423 ($ $ $)) (-15 -3437 ($ (-640 $))) (-15 -3423 ($ (-640 $))) (-15 -3250 ($ $ (-640 $))) (-15 -3411 ($ $ (-640 $))) (-15 -3411 ($ $ $ $)) (-15 -3400 ($ $ $)) (-15 -2636 ((-112) $)) (-15 -2308 ($ $ (-640 $))) (-15 -3737 ($ $)) (-15 -1890 ($ $ $)) (-15 -3083 ($ $)) (-15 -4040 ($ (-640 (-640 $)))) (-15 -3387 ($ $ $)) (-15 -3558 ($ $)) (-15 -3558 ($ $ $)) (-15 -3375 ($ $ $)) (-15 -3362 ($ $ $)) (-15 -3351 ($ $ $)) (-15 -3341 ($ $ $)) (-15 -4203 ($ $ (-767))) (-15 -1864 ($ $ $)) (-15 -3331 ($ $ $)) (-15 -3129 ($ $ $)) (-15 -3321 ($ $ $)) (-15 -3310 ($ $ $)) (-15 -3432 ($ $ (-640 $))) (-15 -3295 ($ $ (-640 $))) (-15 -3284 ($ $)) (-15 -4121 ($ $)) (-15 -4121 ($ $ (-767))) (-15 -3275 ($ $)) (-15 -3275 ($ $ (-767))) (-15 -3265 ($ $)) (-15 -3258 ($ $ $)) (-15 -2235 ($ $)) (-15 -2235 ($ $ $)) (-15 -2235 ($ $ $ $)) (-15 -3248 ($ $)) (-15 -3248 ($ $ $)) (-15 -3248 ($ $ $ $)) (-15 -3982 ($ $)) (-15 -3982 ($ $ $)) (-15 -3982 ($ $ $ $)) (-15 -2533 ($ $)) (-15 -2533 ($ (-640 $))) (-15 -3237 ($ $)) (-15 -3237 ($ (-640 $))) (-15 -3228 ($ $)) (-15 -3228 ($ (-640 $))) (-15 -3218 ($ (-640 $))) (-15 -3207 ($ (-640 $))) (-15 -3197 ($ (-640 $))) (-15 -3189 ($ (-640 $))) (-15 -1718 ($ $ $)) (-15 -1677 ($ $ $)) (-15 -1743 ($ $ $)) (-15 -1754 ($ $ $)) (-15 -1766 ($ $ $)) (-15 -1779 ($ $ $)) (-15 -1813 ($ $ $)) (-15 -1825 ($ $ $)) (-15 -1825 ($ $)) (-15 * ($ $ $)) (-15 -1836 ($ $ $)) (-15 ** ($ $ $)) (-15 -3032 ($ $ $)) (-15 -3094 ($ $ $)) (-15 -3054 ($ $ $)) (-15 -3012 ($ $ $)) (-15 -2188 ($ $ $)) (-15 -2200 ($ $ $)) (-15 -2174 ($ $)) (-15 -2177 ($ $ $)) (-15 -2177 ($ $))))
+((-1921 (((-1262) (-640 (-52))) 24)) (-1554 (((-1262) (-1151) (-858)) 14) (((-1262) (-858)) 9) (((-1262) (-1151)) 11)))
+(((-859) (-10 -7 (-15 -1554 ((-1262) (-1151))) (-15 -1554 ((-1262) (-858))) (-15 -1554 ((-1262) (-1151) (-858))) (-15 -1921 ((-1262) (-640 (-52)))))) (T -859))
+((-1921 (*1 *2 *3) (-12 (-5 *3 (-640 (-52))) (-5 *2 (-1262)) (-5 *1 (-859)))) (-1554 (*1 *2 *3 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-858)) (-5 *2 (-1262)) (-5 *1 (-859)))) (-1554 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-859)))) (-1554 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-859)))))
+(-10 -7 (-15 -1554 ((-1262) (-1151))) (-15 -1554 ((-1262) (-858))) (-15 -1554 ((-1262) (-1151) (-858))) (-15 -1921 ((-1262) (-640 (-52)))))
+((-1677 (((-112) $ $) NIL)) (-2517 (((-3 $ "failed") (-1169)) 33)) (-3750 (((-767)) 31)) (-1690 (($) NIL)) (-3088 (($ $ $) NIL) (($) NIL T CONST)) (-1776 (($ $ $) NIL) (($) NIL T CONST)) (-3990 (((-917) $) 29)) (-3854 (((-1151) $) 39)) (-2552 (($ (-917)) 28)) (-1693 (((-1113) $) NIL)) (-2219 (((-1169) $) 13) (((-536) $) 19) (((-888 (-379)) $) 26) (((-888 (-563)) $) 22)) (-1692 (((-858) $) 16)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 36)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 35)))
+(((-860 |#1|) (-13 (-840) (-611 (-1169)) (-611 (-536)) (-611 (-888 (-379))) (-611 (-888 (-563))) (-10 -8 (-15 -2517 ((-3 $ "failed") (-1169))))) (-640 (-1169))) (T -860))
+((-2517 (*1 *1 *2) (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-860 *3)) (-14 *3 (-640 *2)))))
+(-13 (-840) (-611 (-1169)) (-611 (-536)) (-611 (-888 (-379))) (-611 (-888 (-563))) (-10 -8 (-15 -2517 ((-3 $ "failed") (-1169)))))
+((-1677 (((-112) $ $) NIL)) (-3352 (((-506) $) 9)) (-3523 (((-640 (-439)) $) 13)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 21)) (-1718 (((-112) $ $) 16)))
+(((-861) (-13 (-1093) (-10 -8 (-15 -3352 ((-506) $)) (-15 -3523 ((-640 (-439)) $))))) (T -861))
+((-3352 (*1 *2 *1) (-12 (-5 *2 (-506)) (-5 *1 (-861)))) (-3523 (*1 *2 *1) (-12 (-5 *2 (-640 (-439))) (-5 *1 (-861)))))
+(-13 (-1093) (-10 -8 (-15 -3352 ((-506) $)) (-15 -3523 ((-640 (-439)) $))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-3951 (((-3 $ "failed") $) NIL)) (-3401 (((-112) $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ (-948 |#1|)) NIL) (((-948 |#1|) $) NIL) (($ |#1|) NIL (|has| |#1| (-172)))) (-3914 (((-767)) NIL)) (-3654 (((-1262) (-767)) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1836 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
+(((-862 |#1| |#2| |#3| |#4|) (-13 (-1045) (-490 (-948 |#1|)) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -1836 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3654 ((-1262) (-767))))) (-1045) (-640 (-1169)) (-640 (-767)) (-767)) (T -862))
+((-1836 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-862 *2 *3 *4 *5)) (-4 *2 (-363)) (-4 *2 (-1045)) (-14 *3 (-640 (-1169))) (-14 *4 (-640 (-767))) (-14 *5 (-767)))) (-3654 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-862 *4 *5 *6 *7)) (-4 *4 (-1045)) (-14 *5 (-640 (-1169))) (-14 *6 (-640 *3)) (-14 *7 *3))))
+(-13 (-1045) (-490 (-948 |#1|)) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -1836 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3654 ((-1262) (-767)))))
+((-3534 (((-3 (-174 |#3|) "failed") (-767) (-767) |#2| |#2|) 31)) (-3546 (((-3 (-407 |#3|) "failed") (-767) (-767) |#2| |#2|) 24)))
+(((-863 |#1| |#2| |#3|) (-10 -7 (-15 -3546 ((-3 (-407 |#3|) "failed") (-767) (-767) |#2| |#2|)) (-15 -3534 ((-3 (-174 |#3|) "failed") (-767) (-767) |#2| |#2|))) (-363) (-1248 |#1|) (-1233 |#1|)) (T -863))
+((-3534 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-767)) (-4 *5 (-363)) (-5 *2 (-174 *6)) (-5 *1 (-863 *5 *4 *6)) (-4 *4 (-1248 *5)) (-4 *6 (-1233 *5)))) (-3546 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-767)) (-4 *5 (-363)) (-5 *2 (-407 *6)) (-5 *1 (-863 *5 *4 *6)) (-4 *4 (-1248 *5)) (-4 *6 (-1233 *5)))))
+(-10 -7 (-15 -3546 ((-3 (-407 |#3|) "failed") (-767) (-767) |#2| |#2|)) (-15 -3534 ((-3 (-174 |#3|) "failed") (-767) (-767) |#2| |#2|)))
+((-3546 (((-3 (-407 (-1230 |#2| |#1|)) "failed") (-767) (-767) (-1249 |#1| |#2| |#3|)) 28) (((-3 (-407 (-1230 |#2| |#1|)) "failed") (-767) (-767) (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|)) 26)))
+(((-864 |#1| |#2| |#3|) (-10 -7 (-15 -3546 ((-3 (-407 (-1230 |#2| |#1|)) "failed") (-767) (-767) (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|))) (-15 -3546 ((-3 (-407 (-1230 |#2| |#1|)) "failed") (-767) (-767) (-1249 |#1| |#2| |#3|)))) (-363) (-1169) |#1|) (T -864))
+((-3546 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-767)) (-5 *4 (-1249 *5 *6 *7)) (-4 *5 (-363)) (-14 *6 (-1169)) (-14 *7 *5) (-5 *2 (-407 (-1230 *6 *5))) (-5 *1 (-864 *5 *6 *7)))) (-3546 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-767)) (-5 *4 (-1249 *5 *6 *7)) (-4 *5 (-363)) (-14 *6 (-1169)) (-14 *7 *5) (-5 *2 (-407 (-1230 *6 *5))) (-5 *1 (-864 *5 *6 *7)))))
+(-10 -7 (-15 -3546 ((-3 (-407 (-1230 |#2| |#1|)) "failed") (-767) (-767) (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|))) (-15 -3546 ((-3 (-407 (-1230 |#2| |#1|)) "failed") (-767) (-767) (-1249 |#1| |#2| |#3|))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-3905 (((-3 $ "failed") $ $) 19)) (-2185 (($ $ (-563)) 63)) (-2003 (((-112) $ $) 60)) (-2569 (($) 17 T CONST)) (-3558 (($ (-1165 (-563)) (-563)) 62)) (-3094 (($ $ $) 56)) (-3951 (((-3 $ "failed") $) 33)) (-3572 (($ $) 65)) (-3054 (($ $ $) 57)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 52)) (-1775 (((-767) $) 70)) (-3401 (((-112) $) 31)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3593 (((-563)) 67)) (-3583 (((-563) $) 66)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1751 (($ $ (-563)) 69)) (-3012 (((-3 $ "failed") $ $) 43)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-1993 (((-767) $) 59)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 58)) (-3605 (((-1149 (-563)) $) 71)) (-3369 (($ $) 68)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 40)) (-1402 (((-563) $ (-563)) 64)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-865 |#1|) (-140) (-563)) (T -865))
-((-4113 (*1 *2 *1) (-12 (-4 *1 (-865 *3)) (-5 *2 (-1149 (-563))))) (-3254 (*1 *2 *1) (-12 (-4 *1 (-865 *3)) (-5 *2 (-767)))) (-3320 (*1 *1 *1 *2) (-12 (-4 *1 (-865 *3)) (-5 *2 (-563)))) (-1741 (*1 *1 *1) (-4 *1 (-865 *2))) (-2995 (*1 *2) (-12 (-4 *1 (-865 *3)) (-5 *2 (-563)))) (-3553 (*1 *2 *1) (-12 (-4 *1 (-865 *3)) (-5 *2 (-563)))) (-2840 (*1 *1 *1) (-4 *1 (-865 *2))) (-1403 (*1 *2 *1 *2) (-12 (-4 *1 (-865 *3)) (-5 *2 (-563)))) (-2186 (*1 *1 *1 *2) (-12 (-4 *1 (-865 *3)) (-5 *2 (-563)))) (-3853 (*1 *1 *2 *3) (-12 (-5 *2 (-1165 (-563))) (-5 *3 (-563)) (-4 *1 (-865 *4)))))
-(-13 (-307) (-147) (-10 -8 (-15 -4113 ((-1149 (-563)) $)) (-15 -3254 ((-767) $)) (-15 -3320 ($ $ (-563))) (-15 -1741 ($ $)) (-15 -2995 ((-563))) (-15 -3553 ((-563) $)) (-15 -2840 ($ $)) (-15 -1403 ((-563) $ (-563))) (-15 -2186 ($ $ (-563))) (-15 -3853 ($ (-1165 (-563)) (-563)))))
+((-3605 (*1 *2 *1) (-12 (-4 *1 (-865 *3)) (-5 *2 (-1149 (-563))))) (-1775 (*1 *2 *1) (-12 (-4 *1 (-865 *3)) (-5 *2 (-767)))) (-1751 (*1 *1 *1 *2) (-12 (-4 *1 (-865 *3)) (-5 *2 (-563)))) (-3369 (*1 *1 *1) (-4 *1 (-865 *2))) (-3593 (*1 *2) (-12 (-4 *1 (-865 *3)) (-5 *2 (-563)))) (-3583 (*1 *2 *1) (-12 (-4 *1 (-865 *3)) (-5 *2 (-563)))) (-3572 (*1 *1 *1) (-4 *1 (-865 *2))) (-1402 (*1 *2 *1 *2) (-12 (-4 *1 (-865 *3)) (-5 *2 (-563)))) (-2185 (*1 *1 *1 *2) (-12 (-4 *1 (-865 *3)) (-5 *2 (-563)))) (-3558 (*1 *1 *2 *3) (-12 (-5 *2 (-1165 (-563))) (-5 *3 (-563)) (-4 *1 (-865 *4)))))
+(-13 (-307) (-147) (-10 -8 (-15 -3605 ((-1149 (-563)) $)) (-15 -1775 ((-767) $)) (-15 -1751 ($ $ (-563))) (-15 -3369 ($ $)) (-15 -3593 ((-563))) (-15 -3583 ((-563) $)) (-15 -3572 ($ $)) (-15 -1402 ((-563) $ (-563))) (-15 -2185 ($ $ (-563))) (-15 -3558 ($ (-1165 (-563)) (-563)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-147) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-290) . T) ((-307) . T) ((-452) . T) ((-555) . T) ((-643 $) . T) ((-713 $) . T) ((-722) . T) ((-916) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2186 (($ $ (-563)) NIL)) (-1919 (((-112) $ $) NIL)) (-4239 (($) NIL T CONST)) (-3853 (($ (-1165 (-563)) (-563)) NIL)) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-2840 (($ $) NIL)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-3254 (((-767) $) NIL)) (-3827 (((-112) $) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2995 (((-563)) NIL)) (-3553 (((-563) $) NIL)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3320 (($ $ (-563)) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-4113 (((-1149 (-563)) $) NIL)) (-1741 (($ $) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL)) (-1675 (((-767)) NIL)) (-2126 (((-112) $ $) NIL)) (-1403 (((-563) $ (-563)) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2185 (($ $ (-563)) NIL)) (-2003 (((-112) $ $) NIL)) (-2569 (($) NIL T CONST)) (-3558 (($ (-1165 (-563)) (-563)) NIL)) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3572 (($ $) NIL)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-1775 (((-767) $) NIL)) (-3401 (((-112) $) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3593 (((-563)) NIL)) (-3583 (((-563) $) NIL)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1751 (($ $ (-563)) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3605 (((-1149 (-563)) $) NIL)) (-3369 (($ $) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL)) (-3914 (((-767)) NIL)) (-3223 (((-112) $ $) NIL)) (-1402 (((-563) $ (-563)) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL)))
(((-866 |#1|) (-865 |#1|) (-563)) (T -866))
NIL
(-865 |#1|)
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3401 (((-866 |#1|) $) NIL (|has| (-866 |#1|) (-307)))) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-866 |#1|) (-905)))) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| (-866 |#1|) (-905)))) (-1919 (((-112) $ $) NIL)) (-1857 (((-563) $) NIL (|has| (-866 |#1|) (-816)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-866 |#1|) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (|has| (-866 |#1|) (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-866 |#1|) (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| (-866 |#1|) (-1034 (-563))))) (-2058 (((-866 |#1|) $) NIL) (((-1169) $) NIL (|has| (-866 |#1|) (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| (-866 |#1|) (-1034 (-563)))) (((-563) $) NIL (|has| (-866 |#1|) (-1034 (-563))))) (-2457 (($ $) NIL) (($ (-563) $) NIL)) (-3090 (($ $ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| (-866 |#1|) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-866 |#1|) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-866 |#1|))) (|:| |vec| (-1257 (-866 |#1|)))) (-684 $) (-1257 $)) NIL) (((-684 (-866 |#1|)) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) NIL (|has| (-866 |#1|) (-545)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3101 (((-112) $) NIL (|has| (-866 |#1|) (-816)))) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-866 |#1|) (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-866 |#1|) (-882 (-379))))) (-3827 (((-112) $) NIL)) (-2711 (($ $) NIL)) (-2143 (((-866 |#1|) $) NIL)) (-2408 (((-3 $ "failed") $) NIL (|has| (-866 |#1|) (-1144)))) (-1419 (((-112) $) NIL (|has| (-866 |#1|) (-816)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3084 (($ $ $) NIL (|has| (-866 |#1|) (-846)))) (-1777 (($ $ $) NIL (|has| (-866 |#1|) (-846)))) (-2240 (($ (-1 (-866 |#1|) (-866 |#1|)) $) NIL)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| (-866 |#1|) (-1144)) CONST)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-4215 (($ $) NIL (|has| (-866 |#1|) (-307)))) (-1583 (((-866 |#1|) $) NIL (|has| (-866 |#1|) (-545)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-866 |#1|) (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-866 |#1|) (-905)))) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1540 (($ $ (-640 (-866 |#1|)) (-640 (-866 |#1|))) NIL (|has| (-866 |#1|) (-309 (-866 |#1|)))) (($ $ (-866 |#1|) (-866 |#1|)) NIL (|has| (-866 |#1|) (-309 (-866 |#1|)))) (($ $ (-294 (-866 |#1|))) NIL (|has| (-866 |#1|) (-309 (-866 |#1|)))) (($ $ (-640 (-294 (-866 |#1|)))) NIL (|has| (-866 |#1|) (-309 (-866 |#1|)))) (($ $ (-640 (-1169)) (-640 (-866 |#1|))) NIL (|has| (-866 |#1|) (-514 (-1169) (-866 |#1|)))) (($ $ (-1169) (-866 |#1|)) NIL (|has| (-866 |#1|) (-514 (-1169) (-866 |#1|))))) (-2628 (((-767) $) NIL)) (-2309 (($ $ (-866 |#1|)) NIL (|has| (-866 |#1|) (-286 (-866 |#1|) (-866 |#1|))))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-4202 (($ $) NIL (|has| (-866 |#1|) (-233))) (($ $ (-767)) NIL (|has| (-866 |#1|) (-233))) (($ $ (-1169)) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-1 (-866 |#1|) (-866 |#1|)) (-767)) NIL) (($ $ (-1 (-866 |#1|) (-866 |#1|))) NIL)) (-1801 (($ $) NIL)) (-2154 (((-866 |#1|) $) NIL)) (-2220 (((-888 (-563)) $) NIL (|has| (-866 |#1|) (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| (-866 |#1|) (-611 (-888 (-379))))) (((-536) $) NIL (|has| (-866 |#1|) (-611 (-536)))) (((-379) $) NIL (|has| (-866 |#1|) (-1018))) (((-225) $) NIL (|has| (-866 |#1|) (-1018)))) (-2192 (((-174 (-407 (-563))) $) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-866 |#1|) (-905))))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-866 |#1|)) NIL) (($ (-1169)) NIL (|has| (-866 |#1|) (-1034 (-1169))))) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| (-866 |#1|) (-905))) (|has| (-866 |#1|) (-145))))) (-1675 (((-767)) NIL)) (-4194 (((-866 |#1|) $) NIL (|has| (-866 |#1|) (-545)))) (-2126 (((-112) $ $) NIL)) (-1403 (((-407 (-563)) $ (-563)) NIL)) (-2509 (($ $) NIL (|has| (-866 |#1|) (-816)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $) NIL (|has| (-866 |#1|) (-233))) (($ $ (-767)) NIL (|has| (-866 |#1|) (-233))) (($ $ (-1169)) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-1 (-866 |#1|) (-866 |#1|)) (-767)) NIL) (($ $ (-1 (-866 |#1|) (-866 |#1|))) NIL)) (-1778 (((-112) $ $) NIL (|has| (-866 |#1|) (-846)))) (-1756 (((-112) $ $) NIL (|has| (-866 |#1|) (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| (-866 |#1|) (-846)))) (-1744 (((-112) $ $) NIL (|has| (-866 |#1|) (-846)))) (-1837 (($ $ $) NIL) (($ (-866 |#1|) (-866 |#1|)) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ (-866 |#1|) $) NIL) (($ $ (-866 |#1|)) NIL)))
-(((-867 |#1|) (-13 (-988 (-866 |#1|)) (-10 -8 (-15 -1403 ((-407 (-563)) $ (-563))) (-15 -2192 ((-174 (-407 (-563))) $)) (-15 -2457 ($ $)) (-15 -2457 ($ (-563) $)))) (-563)) (T -867))
-((-1403 (*1 *2 *1 *3) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-867 *4)) (-14 *4 *3) (-5 *3 (-563)))) (-2192 (*1 *2 *1) (-12 (-5 *2 (-174 (-407 (-563)))) (-5 *1 (-867 *3)) (-14 *3 (-563)))) (-2457 (*1 *1 *1) (-12 (-5 *1 (-867 *2)) (-14 *2 (-563)))) (-2457 (*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-867 *3)) (-14 *3 *2))))
-(-13 (-988 (-866 |#1|)) (-10 -8 (-15 -1403 ((-407 (-563)) $ (-563))) (-15 -2192 ((-174 (-407 (-563))) $)) (-15 -2457 ($ $)) (-15 -2457 ($ (-563) $))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3401 ((|#2| $) NIL (|has| |#2| (-307)))) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-1919 (((-112) $ $) NIL)) (-1857 (((-563) $) NIL (|has| |#2| (-816)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#2| "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (|has| |#2| (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563))))) (-2058 ((|#2| $) NIL) (((-1169) $) NIL (|has| |#2| (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-563)))) (((-563) $) NIL (|has| |#2| (-1034 (-563))))) (-2457 (($ $) 31) (($ (-563) $) 32)) (-3090 (($ $ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) 53)) (-1691 (($) NIL (|has| |#2| (-545)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3101 (((-112) $) NIL (|has| |#2| (-816)))) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| |#2| (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| |#2| (-882 (-379))))) (-3827 (((-112) $) NIL)) (-2711 (($ $) NIL)) (-2143 ((|#2| $) NIL)) (-2408 (((-3 $ "failed") $) NIL (|has| |#2| (-1144)))) (-1419 (((-112) $) NIL (|has| |#2| (-816)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3084 (($ $ $) NIL (|has| |#2| (-846)))) (-1777 (($ $ $) NIL (|has| |#2| (-846)))) (-2240 (($ (-1 |#2| |#2|) $) NIL)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 49)) (-2523 (($) NIL (|has| |#2| (-1144)) CONST)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-4215 (($ $) NIL (|has| |#2| (-307)))) (-1583 ((|#2| $) NIL (|has| |#2| (-545)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1540 (($ $ (-640 |#2|) (-640 |#2|)) NIL (|has| |#2| (-309 |#2|))) (($ $ |#2| |#2|) NIL (|has| |#2| (-309 |#2|))) (($ $ (-294 |#2|)) NIL (|has| |#2| (-309 |#2|))) (($ $ (-640 (-294 |#2|))) NIL (|has| |#2| (-309 |#2|))) (($ $ (-640 (-1169)) (-640 |#2|)) NIL (|has| |#2| (-514 (-1169) |#2|))) (($ $ (-1169) |#2|) NIL (|has| |#2| (-514 (-1169) |#2|)))) (-2628 (((-767) $) NIL)) (-2309 (($ $ |#2|) NIL (|has| |#2| (-286 |#2| |#2|)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-4202 (($ $) NIL (|has| |#2| (-233))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1801 (($ $) NIL)) (-2154 ((|#2| $) NIL)) (-2220 (((-888 (-563)) $) NIL (|has| |#2| (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| |#2| (-611 (-888 (-379))))) (((-536) $) NIL (|has| |#2| (-611 (-536)))) (((-379) $) NIL (|has| |#2| (-1018))) (((-225) $) NIL (|has| |#2| (-1018)))) (-2192 (((-174 (-407 (-563))) $) 68)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-905))))) (-1693 (((-858) $) 86) (($ (-563)) 19) (($ $) NIL) (($ (-407 (-563))) 24) (($ |#2|) 18) (($ (-1169)) NIL (|has| |#2| (-1034 (-1169))))) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#2| (-905))) (|has| |#2| (-145))))) (-1675 (((-767)) NIL)) (-4194 ((|#2| $) NIL (|has| |#2| (-545)))) (-2126 (((-112) $ $) NIL)) (-1403 (((-407 (-563)) $ (-563)) 60)) (-2509 (($ $) NIL (|has| |#2| (-816)))) (-2241 (($) 14 T CONST)) (-2254 (($) 16 T CONST)) (-3209 (($ $) NIL (|has| |#2| (-233))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1778 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1718 (((-112) $ $) 35)) (-1768 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1837 (($ $ $) 23) (($ |#2| |#2|) 54)) (-1826 (($ $) 39) (($ $ $) 41)) (-1814 (($ $ $) 37)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) 50)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 42) (($ $ $) 44) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ |#2| $) 55) (($ $ |#2|) NIL)))
-(((-868 |#1| |#2|) (-13 (-988 |#2|) (-10 -8 (-15 -1403 ((-407 (-563)) $ (-563))) (-15 -2192 ((-174 (-407 (-563))) $)) (-15 -2457 ($ $)) (-15 -2457 ($ (-563) $)))) (-563) (-865 |#1|)) (T -868))
-((-1403 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-407 (-563))) (-5 *1 (-868 *4 *5)) (-5 *3 (-563)) (-4 *5 (-865 *4)))) (-2192 (*1 *2 *1) (-12 (-14 *3 (-563)) (-5 *2 (-174 (-407 (-563)))) (-5 *1 (-868 *3 *4)) (-4 *4 (-865 *3)))) (-2457 (*1 *1 *1) (-12 (-14 *2 (-563)) (-5 *1 (-868 *2 *3)) (-4 *3 (-865 *2)))) (-2457 (*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-14 *3 *2) (-5 *1 (-868 *3 *4)) (-4 *4 (-865 *3)))))
-(-13 (-988 |#2|) (-10 -8 (-15 -1403 ((-407 (-563)) $ (-563))) (-15 -2192 ((-174 (-407 (-563))) $)) (-15 -2457 ($ $)) (-15 -2457 ($ (-563) $))))
-((-1677 (((-112) $ $) NIL (-12 (|has| |#1| (-1093)) (|has| |#2| (-1093))))) (-3431 ((|#2| $) 12)) (-2586 (($ |#1| |#2|) 9)) (-3573 (((-1151) $) NIL (-12 (|has| |#1| (-1093)) (|has| |#2| (-1093))))) (-1694 (((-1113) $) NIL (-12 (|has| |#1| (-1093)) (|has| |#2| (-1093))))) (-3781 ((|#1| $) 11)) (-1707 (($ |#1| |#2|) 10)) (-1693 (((-858) $) 18 (-4032 (-12 (|has| |#1| (-610 (-858))) (|has| |#2| (-610 (-858)))) (-12 (|has| |#1| (-1093)) (|has| |#2| (-1093)))))) (-1718 (((-112) $ $) 22 (-12 (|has| |#1| (-1093)) (|has| |#2| (-1093))))))
-(((-869 |#1| |#2|) (-13 (-1208) (-10 -8 (IF (|has| |#1| (-610 (-858))) (IF (|has| |#2| (-610 (-858))) (-6 (-610 (-858))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1093)) (IF (|has| |#2| (-1093)) (-6 (-1093)) |%noBranch|) |%noBranch|) (-15 -2586 ($ |#1| |#2|)) (-15 -1707 ($ |#1| |#2|)) (-15 -3781 (|#1| $)) (-15 -3431 (|#2| $)))) (-1208) (-1208)) (T -869))
-((-2586 (*1 *1 *2 *3) (-12 (-5 *1 (-869 *2 *3)) (-4 *2 (-1208)) (-4 *3 (-1208)))) (-1707 (*1 *1 *2 *3) (-12 (-5 *1 (-869 *2 *3)) (-4 *2 (-1208)) (-4 *3 (-1208)))) (-3781 (*1 *2 *1) (-12 (-4 *2 (-1208)) (-5 *1 (-869 *2 *3)) (-4 *3 (-1208)))) (-3431 (*1 *2 *1) (-12 (-4 *2 (-1208)) (-5 *1 (-869 *3 *2)) (-4 *3 (-1208)))))
-(-13 (-1208) (-10 -8 (IF (|has| |#1| (-610 (-858))) (IF (|has| |#2| (-610 (-858))) (-6 (-610 (-858))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1093)) (IF (|has| |#2| (-1093)) (-6 (-1093)) |%noBranch|) |%noBranch|) (-15 -2586 ($ |#1| |#2|)) (-15 -1707 ($ |#1| |#2|)) (-15 -3781 (|#1| $)) (-15 -3431 (|#2| $))))
-((-1677 (((-112) $ $) NIL)) (-3905 (((-563) $) 15)) (-2111 (($ (-157)) 11)) (-2399 (($ (-157)) 12)) (-3573 (((-1151) $) NIL)) (-3788 (((-157) $) 13)) (-1694 (((-1113) $) NIL)) (-3304 (($ (-157)) 9)) (-3207 (($ (-157)) 8)) (-1693 (((-858) $) 23) (($ (-157)) 16)) (-3995 (($ (-157)) 10)) (-1718 (((-112) $ $) NIL)))
-(((-870) (-13 (-1093) (-10 -8 (-15 -3207 ($ (-157))) (-15 -3304 ($ (-157))) (-15 -3995 ($ (-157))) (-15 -2111 ($ (-157))) (-15 -2399 ($ (-157))) (-15 -3788 ((-157) $)) (-15 -3905 ((-563) $)) (-15 -1693 ($ (-157)))))) (T -870))
-((-3207 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))) (-3304 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))) (-3995 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))) (-2111 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))) (-2399 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))) (-3788 (*1 *2 *1) (-12 (-5 *2 (-157)) (-5 *1 (-870)))) (-3905 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-870)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))))
-(-13 (-1093) (-10 -8 (-15 -3207 ($ (-157))) (-15 -3304 ($ (-157))) (-15 -3995 ($ (-157))) (-15 -2111 ($ (-157))) (-15 -2399 ($ (-157))) (-15 -3788 ((-157) $)) (-15 -3905 ((-563) $)) (-15 -1693 ($ (-157)))))
-((-1693 (((-316 (-563)) (-407 (-948 (-48)))) 23) (((-316 (-563)) (-948 (-48))) 18)))
-(((-871) (-10 -7 (-15 -1693 ((-316 (-563)) (-948 (-48)))) (-15 -1693 ((-316 (-563)) (-407 (-948 (-48))))))) (T -871))
-((-1693 (*1 *2 *3) (-12 (-5 *3 (-407 (-948 (-48)))) (-5 *2 (-316 (-563))) (-5 *1 (-871)))) (-1693 (*1 *2 *3) (-12 (-5 *3 (-948 (-48))) (-5 *2 (-316 (-563))) (-5 *1 (-871)))))
-(-10 -7 (-15 -1693 ((-316 (-563)) (-948 (-48)))) (-15 -1693 ((-316 (-563)) (-407 (-948 (-48))))))
-((-2240 (((-873 |#2|) (-1 |#2| |#1|) (-873 |#1|)) 14)))
-(((-872 |#1| |#2|) (-10 -7 (-15 -2240 ((-873 |#2|) (-1 |#2| |#1|) (-873 |#1|)))) (-1208) (-1208)) (T -872))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-873 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-873 *6)) (-5 *1 (-872 *5 *6)))))
-(-10 -7 (-15 -2240 ((-873 |#2|) (-1 |#2| |#1|) (-873 |#1|))))
-((-3448 (($ |#1| |#1|) 8)) (-2024 ((|#1| $ (-767)) 10)))
-(((-873 |#1|) (-10 -8 (-15 -3448 ($ |#1| |#1|)) (-15 -2024 (|#1| $ (-767)))) (-1208)) (T -873))
-((-2024 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *1 (-873 *2)) (-4 *2 (-1208)))) (-3448 (*1 *1 *2 *2) (-12 (-5 *1 (-873 *2)) (-4 *2 (-1208)))))
-(-10 -8 (-15 -3448 ($ |#1| |#1|)) (-15 -2024 (|#1| $ (-767))))
-((-2240 (((-875 |#2|) (-1 |#2| |#1|) (-875 |#1|)) 14)))
-(((-874 |#1| |#2|) (-10 -7 (-15 -2240 ((-875 |#2|) (-1 |#2| |#1|) (-875 |#1|)))) (-1208) (-1208)) (T -874))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-875 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-875 *6)) (-5 *1 (-874 *5 *6)))))
-(-10 -7 (-15 -2240 ((-875 |#2|) (-1 |#2| |#1|) (-875 |#1|))))
-((-3448 (($ |#1| |#1| |#1|) 8)) (-2024 ((|#1| $ (-767)) 10)))
-(((-875 |#1|) (-10 -8 (-15 -3448 ($ |#1| |#1| |#1|)) (-15 -2024 (|#1| $ (-767)))) (-1208)) (T -875))
-((-2024 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *1 (-875 *2)) (-4 *2 (-1208)))) (-3448 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-875 *2)) (-4 *2 (-1208)))))
-(-10 -8 (-15 -3448 ($ |#1| |#1| |#1|)) (-15 -2024 (|#1| $ (-767))))
-((-3930 (((-640 (-1174)) (-1151)) 9)))
-(((-876) (-10 -7 (-15 -3930 ((-640 (-1174)) (-1151))))) (T -876))
-((-3930 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-640 (-1174))) (-5 *1 (-876)))))
-(-10 -7 (-15 -3930 ((-640 (-1174)) (-1151))))
-((-2240 (((-878 |#2|) (-1 |#2| |#1|) (-878 |#1|)) 14)))
-(((-877 |#1| |#2|) (-10 -7 (-15 -2240 ((-878 |#2|) (-1 |#2| |#1|) (-878 |#1|)))) (-1208) (-1208)) (T -877))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-878 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-878 *6)) (-5 *1 (-877 *5 *6)))))
-(-10 -7 (-15 -2240 ((-878 |#2|) (-1 |#2| |#1|) (-878 |#1|))))
-((-1635 (($ |#1| |#1| |#1|) 8)) (-2024 ((|#1| $ (-767)) 10)))
-(((-878 |#1|) (-10 -8 (-15 -1635 ($ |#1| |#1| |#1|)) (-15 -2024 (|#1| $ (-767)))) (-1208)) (T -878))
-((-2024 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *1 (-878 *2)) (-4 *2 (-1208)))) (-1635 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-878 *2)) (-4 *2 (-1208)))))
-(-10 -8 (-15 -1635 ($ |#1| |#1| |#1|)) (-15 -2024 (|#1| $ (-767))))
-((-3363 (((-1149 (-640 (-563))) (-640 (-563)) (-1149 (-640 (-563)))) 30)) (-1858 (((-1149 (-640 (-563))) (-640 (-563)) (-640 (-563))) 26)) (-1725 (((-1149 (-640 (-563))) (-640 (-563))) 39) (((-1149 (-640 (-563))) (-640 (-563)) (-640 (-563))) 38)) (-2312 (((-1149 (-640 (-563))) (-563)) 40)) (-3434 (((-1149 (-640 (-563))) (-563) (-563)) 22) (((-1149 (-640 (-563))) (-563)) 16) (((-1149 (-640 (-563))) (-563) (-563) (-563)) 12)) (-3011 (((-1149 (-640 (-563))) (-1149 (-640 (-563)))) 24)) (-4339 (((-640 (-563)) (-640 (-563))) 23)))
-(((-879) (-10 -7 (-15 -3434 ((-1149 (-640 (-563))) (-563) (-563) (-563))) (-15 -3434 ((-1149 (-640 (-563))) (-563))) (-15 -3434 ((-1149 (-640 (-563))) (-563) (-563))) (-15 -4339 ((-640 (-563)) (-640 (-563)))) (-15 -3011 ((-1149 (-640 (-563))) (-1149 (-640 (-563))))) (-15 -1858 ((-1149 (-640 (-563))) (-640 (-563)) (-640 (-563)))) (-15 -3363 ((-1149 (-640 (-563))) (-640 (-563)) (-1149 (-640 (-563))))) (-15 -1725 ((-1149 (-640 (-563))) (-640 (-563)) (-640 (-563)))) (-15 -1725 ((-1149 (-640 (-563))) (-640 (-563)))) (-15 -2312 ((-1149 (-640 (-563))) (-563))))) (T -879))
-((-2312 (*1 *2 *3) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563)))) (-1725 (*1 *2 *3) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-640 (-563))))) (-1725 (*1 *2 *3 *3) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-640 (-563))))) (-3363 (*1 *2 *3 *2) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *3 (-640 (-563))) (-5 *1 (-879)))) (-1858 (*1 *2 *3 *3) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-640 (-563))))) (-3011 (*1 *2 *2) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)))) (-4339 (*1 *2 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-879)))) (-3434 (*1 *2 *3 *3) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563)))) (-3434 (*1 *2 *3) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563)))) (-3434 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563)))))
-(-10 -7 (-15 -3434 ((-1149 (-640 (-563))) (-563) (-563) (-563))) (-15 -3434 ((-1149 (-640 (-563))) (-563))) (-15 -3434 ((-1149 (-640 (-563))) (-563) (-563))) (-15 -4339 ((-640 (-563)) (-640 (-563)))) (-15 -3011 ((-1149 (-640 (-563))) (-1149 (-640 (-563))))) (-15 -1858 ((-1149 (-640 (-563))) (-640 (-563)) (-640 (-563)))) (-15 -3363 ((-1149 (-640 (-563))) (-640 (-563)) (-1149 (-640 (-563))))) (-15 -1725 ((-1149 (-640 (-563))) (-640 (-563)) (-640 (-563)))) (-15 -1725 ((-1149 (-640 (-563))) (-640 (-563)))) (-15 -2312 ((-1149 (-640 (-563))) (-563))))
-((-2220 (((-888 (-379)) $) 9 (|has| |#1| (-611 (-888 (-379))))) (((-888 (-563)) $) 8 (|has| |#1| (-611 (-888 (-563)))))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3944 (((-866 |#1|) $) NIL (|has| (-866 |#1|) (-307)))) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-866 |#1|) (-905)))) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| (-866 |#1|) (-905)))) (-2003 (((-112) $ $) NIL)) (-2807 (((-563) $) NIL (|has| (-866 |#1|) (-816)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-866 |#1|) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (|has| (-866 |#1|) (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-866 |#1|) (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| (-866 |#1|) (-1034 (-563))))) (-2057 (((-866 |#1|) $) NIL) (((-1169) $) NIL (|has| (-866 |#1|) (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| (-866 |#1|) (-1034 (-563)))) (((-563) $) NIL (|has| (-866 |#1|) (-1034 (-563))))) (-2600 (($ $) NIL) (($ (-563) $) NIL)) (-3094 (($ $ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| (-866 |#1|) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-866 |#1|) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-866 |#1|))) (|:| |vec| (-1257 (-866 |#1|)))) (-684 $) (-1257 $)) NIL) (((-684 (-866 |#1|)) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) NIL (|has| (-866 |#1|) (-545)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-3414 (((-112) $) NIL (|has| (-866 |#1|) (-816)))) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-866 |#1|) (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-866 |#1|) (-882 (-379))))) (-3401 (((-112) $) NIL)) (-2043 (($ $) NIL)) (-2143 (((-866 |#1|) $) NIL)) (-1983 (((-3 $ "failed") $) NIL (|has| (-866 |#1|) (-1144)))) (-3426 (((-112) $) NIL (|has| (-866 |#1|) (-816)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3088 (($ $ $) NIL (|has| (-866 |#1|) (-846)))) (-1776 (($ $ $) NIL (|has| (-866 |#1|) (-846)))) (-2238 (($ (-1 (-866 |#1|) (-866 |#1|)) $) NIL)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| (-866 |#1|) (-1144)) CONST)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3935 (($ $) NIL (|has| (-866 |#1|) (-307)))) (-3954 (((-866 |#1|) $) NIL (|has| (-866 |#1|) (-545)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-866 |#1|) (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-866 |#1|) (-905)))) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1542 (($ $ (-640 (-866 |#1|)) (-640 (-866 |#1|))) NIL (|has| (-866 |#1|) (-309 (-866 |#1|)))) (($ $ (-866 |#1|) (-866 |#1|)) NIL (|has| (-866 |#1|) (-309 (-866 |#1|)))) (($ $ (-294 (-866 |#1|))) NIL (|has| (-866 |#1|) (-309 (-866 |#1|)))) (($ $ (-640 (-294 (-866 |#1|)))) NIL (|has| (-866 |#1|) (-309 (-866 |#1|)))) (($ $ (-640 (-1169)) (-640 (-866 |#1|))) NIL (|has| (-866 |#1|) (-514 (-1169) (-866 |#1|)))) (($ $ (-1169) (-866 |#1|)) NIL (|has| (-866 |#1|) (-514 (-1169) (-866 |#1|))))) (-1993 (((-767) $) NIL)) (-2308 (($ $ (-866 |#1|)) NIL (|has| (-866 |#1|) (-286 (-866 |#1|) (-866 |#1|))))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-4203 (($ $) NIL (|has| (-866 |#1|) (-233))) (($ $ (-767)) NIL (|has| (-866 |#1|) (-233))) (($ $ (-1169)) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-1 (-866 |#1|) (-866 |#1|)) (-767)) NIL) (($ $ (-1 (-866 |#1|) (-866 |#1|))) NIL)) (-2033 (($ $) NIL)) (-2153 (((-866 |#1|) $) NIL)) (-2219 (((-888 (-563)) $) NIL (|has| (-866 |#1|) (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| (-866 |#1|) (-611 (-888 (-379))))) (((-536) $) NIL (|has| (-866 |#1|) (-611 (-536)))) (((-379) $) NIL (|has| (-866 |#1|) (-1018))) (((-225) $) NIL (|has| (-866 |#1|) (-1018)))) (-3616 (((-174 (-407 (-563))) $) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-866 |#1|) (-905))))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL) (($ (-866 |#1|)) NIL) (($ (-1169)) NIL (|has| (-866 |#1|) (-1034 (-1169))))) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| (-866 |#1|) (-905))) (|has| (-866 |#1|) (-145))))) (-3914 (((-767)) NIL)) (-3965 (((-866 |#1|) $) NIL (|has| (-866 |#1|) (-545)))) (-3223 (((-112) $ $) NIL)) (-1402 (((-407 (-563)) $ (-563)) NIL)) (-1462 (($ $) NIL (|has| (-866 |#1|) (-816)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $) NIL (|has| (-866 |#1|) (-233))) (($ $ (-767)) NIL (|has| (-866 |#1|) (-233))) (($ $ (-1169)) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-866 |#1|) (-896 (-1169)))) (($ $ (-1 (-866 |#1|) (-866 |#1|)) (-767)) NIL) (($ $ (-1 (-866 |#1|) (-866 |#1|))) NIL)) (-1779 (((-112) $ $) NIL (|has| (-866 |#1|) (-846)))) (-1754 (((-112) $ $) NIL (|has| (-866 |#1|) (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| (-866 |#1|) (-846)))) (-1743 (((-112) $ $) NIL (|has| (-866 |#1|) (-846)))) (-1836 (($ $ $) NIL) (($ (-866 |#1|) (-866 |#1|)) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ (-866 |#1|) $) NIL) (($ $ (-866 |#1|)) NIL)))
+(((-867 |#1|) (-13 (-988 (-866 |#1|)) (-10 -8 (-15 -1402 ((-407 (-563)) $ (-563))) (-15 -3616 ((-174 (-407 (-563))) $)) (-15 -2600 ($ $)) (-15 -2600 ($ (-563) $)))) (-563)) (T -867))
+((-1402 (*1 *2 *1 *3) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-867 *4)) (-14 *4 *3) (-5 *3 (-563)))) (-3616 (*1 *2 *1) (-12 (-5 *2 (-174 (-407 (-563)))) (-5 *1 (-867 *3)) (-14 *3 (-563)))) (-2600 (*1 *1 *1) (-12 (-5 *1 (-867 *2)) (-14 *2 (-563)))) (-2600 (*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-867 *3)) (-14 *3 *2))))
+(-13 (-988 (-866 |#1|)) (-10 -8 (-15 -1402 ((-407 (-563)) $ (-563))) (-15 -3616 ((-174 (-407 (-563))) $)) (-15 -2600 ($ $)) (-15 -2600 ($ (-563) $))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3944 ((|#2| $) NIL (|has| |#2| (-307)))) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2003 (((-112) $ $) NIL)) (-2807 (((-563) $) NIL (|has| |#2| (-816)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#2| "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (|has| |#2| (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563))))) (-2057 ((|#2| $) NIL) (((-1169) $) NIL (|has| |#2| (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-563)))) (((-563) $) NIL (|has| |#2| (-1034 (-563))))) (-2600 (($ $) 31) (($ (-563) $) 32)) (-3094 (($ $ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) 53)) (-1690 (($) NIL (|has| |#2| (-545)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-3414 (((-112) $) NIL (|has| |#2| (-816)))) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| |#2| (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| |#2| (-882 (-379))))) (-3401 (((-112) $) NIL)) (-2043 (($ $) NIL)) (-2143 ((|#2| $) NIL)) (-1983 (((-3 $ "failed") $) NIL (|has| |#2| (-1144)))) (-3426 (((-112) $) NIL (|has| |#2| (-816)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3088 (($ $ $) NIL (|has| |#2| (-846)))) (-1776 (($ $ $) NIL (|has| |#2| (-846)))) (-2238 (($ (-1 |#2| |#2|) $) NIL)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 49)) (-2522 (($) NIL (|has| |#2| (-1144)) CONST)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3935 (($ $) NIL (|has| |#2| (-307)))) (-3954 ((|#2| $) NIL (|has| |#2| (-545)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1542 (($ $ (-640 |#2|) (-640 |#2|)) NIL (|has| |#2| (-309 |#2|))) (($ $ |#2| |#2|) NIL (|has| |#2| (-309 |#2|))) (($ $ (-294 |#2|)) NIL (|has| |#2| (-309 |#2|))) (($ $ (-640 (-294 |#2|))) NIL (|has| |#2| (-309 |#2|))) (($ $ (-640 (-1169)) (-640 |#2|)) NIL (|has| |#2| (-514 (-1169) |#2|))) (($ $ (-1169) |#2|) NIL (|has| |#2| (-514 (-1169) |#2|)))) (-1993 (((-767) $) NIL)) (-2308 (($ $ |#2|) NIL (|has| |#2| (-286 |#2| |#2|)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-4203 (($ $) NIL (|has| |#2| (-233))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-2033 (($ $) NIL)) (-2153 ((|#2| $) NIL)) (-2219 (((-888 (-563)) $) NIL (|has| |#2| (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| |#2| (-611 (-888 (-379))))) (((-536) $) NIL (|has| |#2| (-611 (-536)))) (((-379) $) NIL (|has| |#2| (-1018))) (((-225) $) NIL (|has| |#2| (-1018)))) (-3616 (((-174 (-407 (-563))) $) 68)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-905))))) (-1692 (((-858) $) 86) (($ (-563)) 19) (($ $) NIL) (($ (-407 (-563))) 24) (($ |#2|) 18) (($ (-1169)) NIL (|has| |#2| (-1034 (-1169))))) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#2| (-905))) (|has| |#2| (-145))))) (-3914 (((-767)) NIL)) (-3965 ((|#2| $) NIL (|has| |#2| (-545)))) (-3223 (((-112) $ $) NIL)) (-1402 (((-407 (-563)) $ (-563)) 60)) (-1462 (($ $) NIL (|has| |#2| (-816)))) (-2239 (($) 14 T CONST)) (-2253 (($) 16 T CONST)) (-3213 (($ $) NIL (|has| |#2| (-233))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1779 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1718 (((-112) $ $) 35)) (-1766 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1836 (($ $ $) 23) (($ |#2| |#2|) 54)) (-1825 (($ $) 39) (($ $ $) 41)) (-1813 (($ $ $) 37)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) 50)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 42) (($ $ $) 44) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ |#2| $) 55) (($ $ |#2|) NIL)))
+(((-868 |#1| |#2|) (-13 (-988 |#2|) (-10 -8 (-15 -1402 ((-407 (-563)) $ (-563))) (-15 -3616 ((-174 (-407 (-563))) $)) (-15 -2600 ($ $)) (-15 -2600 ($ (-563) $)))) (-563) (-865 |#1|)) (T -868))
+((-1402 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-407 (-563))) (-5 *1 (-868 *4 *5)) (-5 *3 (-563)) (-4 *5 (-865 *4)))) (-3616 (*1 *2 *1) (-12 (-14 *3 (-563)) (-5 *2 (-174 (-407 (-563)))) (-5 *1 (-868 *3 *4)) (-4 *4 (-865 *3)))) (-2600 (*1 *1 *1) (-12 (-14 *2 (-563)) (-5 *1 (-868 *2 *3)) (-4 *3 (-865 *2)))) (-2600 (*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-14 *3 *2) (-5 *1 (-868 *3 *4)) (-4 *4 (-865 *3)))))
+(-13 (-988 |#2|) (-10 -8 (-15 -1402 ((-407 (-563)) $ (-563))) (-15 -3616 ((-174 (-407 (-563))) $)) (-15 -2600 ($ $)) (-15 -2600 ($ (-563) $))))
+((-1677 (((-112) $ $) NIL (-12 (|has| |#1| (-1093)) (|has| |#2| (-1093))))) (-3435 ((|#2| $) 12)) (-2585 (($ |#1| |#2|) 9)) (-3854 (((-1151) $) NIL (-12 (|has| |#1| (-1093)) (|has| |#2| (-1093))))) (-1693 (((-1113) $) NIL (-12 (|has| |#1| (-1093)) (|has| |#2| (-1093))))) (-3782 ((|#1| $) 11)) (-1706 (($ |#1| |#2|) 10)) (-1692 (((-858) $) 18 (-4034 (-12 (|has| |#1| (-610 (-858))) (|has| |#2| (-610 (-858)))) (-12 (|has| |#1| (-1093)) (|has| |#2| (-1093)))))) (-1718 (((-112) $ $) 22 (-12 (|has| |#1| (-1093)) (|has| |#2| (-1093))))))
+(((-869 |#1| |#2|) (-13 (-1208) (-10 -8 (IF (|has| |#1| (-610 (-858))) (IF (|has| |#2| (-610 (-858))) (-6 (-610 (-858))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1093)) (IF (|has| |#2| (-1093)) (-6 (-1093)) |%noBranch|) |%noBranch|) (-15 -2585 ($ |#1| |#2|)) (-15 -1706 ($ |#1| |#2|)) (-15 -3782 (|#1| $)) (-15 -3435 (|#2| $)))) (-1208) (-1208)) (T -869))
+((-2585 (*1 *1 *2 *3) (-12 (-5 *1 (-869 *2 *3)) (-4 *2 (-1208)) (-4 *3 (-1208)))) (-1706 (*1 *1 *2 *3) (-12 (-5 *1 (-869 *2 *3)) (-4 *2 (-1208)) (-4 *3 (-1208)))) (-3782 (*1 *2 *1) (-12 (-4 *2 (-1208)) (-5 *1 (-869 *2 *3)) (-4 *3 (-1208)))) (-3435 (*1 *2 *1) (-12 (-4 *2 (-1208)) (-5 *1 (-869 *3 *2)) (-4 *3 (-1208)))))
+(-13 (-1208) (-10 -8 (IF (|has| |#1| (-610 (-858))) (IF (|has| |#2| (-610 (-858))) (-6 (-610 (-858))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1093)) (IF (|has| |#2| (-1093)) (-6 (-1093)) |%noBranch|) |%noBranch|) (-15 -2585 ($ |#1| |#2|)) (-15 -1706 ($ |#1| |#2|)) (-15 -3782 (|#1| $)) (-15 -3435 (|#2| $))))
+((-1677 (((-112) $ $) NIL)) (-2841 (((-563) $) 15)) (-3640 (($ (-157)) 11)) (-3628 (($ (-157)) 12)) (-3854 (((-1151) $) NIL)) (-2830 (((-157) $) 13)) (-1693 (((-1113) $) NIL)) (-3308 (($ (-157)) 9)) (-3651 (($ (-157)) 8)) (-1692 (((-858) $) 23) (($ (-157)) 16)) (-3996 (($ (-157)) 10)) (-1718 (((-112) $ $) NIL)))
+(((-870) (-13 (-1093) (-10 -8 (-15 -3651 ($ (-157))) (-15 -3308 ($ (-157))) (-15 -3996 ($ (-157))) (-15 -3640 ($ (-157))) (-15 -3628 ($ (-157))) (-15 -2830 ((-157) $)) (-15 -2841 ((-563) $)) (-15 -1692 ($ (-157)))))) (T -870))
+((-3651 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))) (-3308 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))) (-3996 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))) (-3640 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))) (-3628 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))) (-2830 (*1 *2 *1) (-12 (-5 *2 (-157)) (-5 *1 (-870)))) (-2841 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-870)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))))
+(-13 (-1093) (-10 -8 (-15 -3651 ($ (-157))) (-15 -3308 ($ (-157))) (-15 -3996 ($ (-157))) (-15 -3640 ($ (-157))) (-15 -3628 ($ (-157))) (-15 -2830 ((-157) $)) (-15 -2841 ((-563) $)) (-15 -1692 ($ (-157)))))
+((-1692 (((-316 (-563)) (-407 (-948 (-48)))) 23) (((-316 (-563)) (-948 (-48))) 18)))
+(((-871) (-10 -7 (-15 -1692 ((-316 (-563)) (-948 (-48)))) (-15 -1692 ((-316 (-563)) (-407 (-948 (-48))))))) (T -871))
+((-1692 (*1 *2 *3) (-12 (-5 *3 (-407 (-948 (-48)))) (-5 *2 (-316 (-563))) (-5 *1 (-871)))) (-1692 (*1 *2 *3) (-12 (-5 *3 (-948 (-48))) (-5 *2 (-316 (-563))) (-5 *1 (-871)))))
+(-10 -7 (-15 -1692 ((-316 (-563)) (-948 (-48)))) (-15 -1692 ((-316 (-563)) (-407 (-948 (-48))))))
+((-2238 (((-873 |#2|) (-1 |#2| |#1|) (-873 |#1|)) 14)))
+(((-872 |#1| |#2|) (-10 -7 (-15 -2238 ((-873 |#2|) (-1 |#2| |#1|) (-873 |#1|)))) (-1208) (-1208)) (T -872))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-873 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-873 *6)) (-5 *1 (-872 *5 *6)))))
+(-10 -7 (-15 -2238 ((-873 |#2|) (-1 |#2| |#1|) (-873 |#1|))))
+((-2604 (($ |#1| |#1|) 8)) (-3686 ((|#1| $ (-767)) 10)))
+(((-873 |#1|) (-10 -8 (-15 -2604 ($ |#1| |#1|)) (-15 -3686 (|#1| $ (-767)))) (-1208)) (T -873))
+((-3686 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *1 (-873 *2)) (-4 *2 (-1208)))) (-2604 (*1 *1 *2 *2) (-12 (-5 *1 (-873 *2)) (-4 *2 (-1208)))))
+(-10 -8 (-15 -2604 ($ |#1| |#1|)) (-15 -3686 (|#1| $ (-767))))
+((-2238 (((-875 |#2|) (-1 |#2| |#1|) (-875 |#1|)) 14)))
+(((-874 |#1| |#2|) (-10 -7 (-15 -2238 ((-875 |#2|) (-1 |#2| |#1|) (-875 |#1|)))) (-1208) (-1208)) (T -874))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-875 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-875 *6)) (-5 *1 (-874 *5 *6)))))
+(-10 -7 (-15 -2238 ((-875 |#2|) (-1 |#2| |#1|) (-875 |#1|))))
+((-2604 (($ |#1| |#1| |#1|) 8)) (-3686 ((|#1| $ (-767)) 10)))
+(((-875 |#1|) (-10 -8 (-15 -2604 ($ |#1| |#1| |#1|)) (-15 -3686 (|#1| $ (-767)))) (-1208)) (T -875))
+((-3686 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *1 (-875 *2)) (-4 *2 (-1208)))) (-2604 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-875 *2)) (-4 *2 (-1208)))))
+(-10 -8 (-15 -2604 ($ |#1| |#1| |#1|)) (-15 -3686 (|#1| $ (-767))))
+((-3662 (((-640 (-1174)) (-1151)) 9)))
+(((-876) (-10 -7 (-15 -3662 ((-640 (-1174)) (-1151))))) (T -876))
+((-3662 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-640 (-1174))) (-5 *1 (-876)))))
+(-10 -7 (-15 -3662 ((-640 (-1174)) (-1151))))
+((-2238 (((-878 |#2|) (-1 |#2| |#1|) (-878 |#1|)) 14)))
+(((-877 |#1| |#2|) (-10 -7 (-15 -2238 ((-878 |#2|) (-1 |#2| |#1|) (-878 |#1|)))) (-1208) (-1208)) (T -877))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-878 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-878 *6)) (-5 *1 (-877 *5 *6)))))
+(-10 -7 (-15 -2238 ((-878 |#2|) (-1 |#2| |#1|) (-878 |#1|))))
+((-3673 (($ |#1| |#1| |#1|) 8)) (-3686 ((|#1| $ (-767)) 10)))
+(((-878 |#1|) (-10 -8 (-15 -3673 ($ |#1| |#1| |#1|)) (-15 -3686 (|#1| $ (-767)))) (-1208)) (T -878))
+((-3686 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *1 (-878 *2)) (-4 *2 (-1208)))) (-3673 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-878 *2)) (-4 *2 (-1208)))))
+(-10 -8 (-15 -3673 ($ |#1| |#1| |#1|)) (-15 -3686 (|#1| $ (-767))))
+((-3736 (((-1149 (-640 (-563))) (-640 (-563)) (-1149 (-640 (-563)))) 30)) (-3725 (((-1149 (-640 (-563))) (-640 (-563)) (-640 (-563))) 26)) (-3748 (((-1149 (-640 (-563))) (-640 (-563))) 39) (((-1149 (-640 (-563))) (-640 (-563)) (-640 (-563))) 38)) (-3757 (((-1149 (-640 (-563))) (-563)) 40)) (-3699 (((-1149 (-640 (-563))) (-563) (-563)) 22) (((-1149 (-640 (-563))) (-563)) 16) (((-1149 (-640 (-563))) (-563) (-563) (-563)) 12)) (-3712 (((-1149 (-640 (-563))) (-1149 (-640 (-563)))) 24)) (-2150 (((-640 (-563)) (-640 (-563))) 23)))
+(((-879) (-10 -7 (-15 -3699 ((-1149 (-640 (-563))) (-563) (-563) (-563))) (-15 -3699 ((-1149 (-640 (-563))) (-563))) (-15 -3699 ((-1149 (-640 (-563))) (-563) (-563))) (-15 -2150 ((-640 (-563)) (-640 (-563)))) (-15 -3712 ((-1149 (-640 (-563))) (-1149 (-640 (-563))))) (-15 -3725 ((-1149 (-640 (-563))) (-640 (-563)) (-640 (-563)))) (-15 -3736 ((-1149 (-640 (-563))) (-640 (-563)) (-1149 (-640 (-563))))) (-15 -3748 ((-1149 (-640 (-563))) (-640 (-563)) (-640 (-563)))) (-15 -3748 ((-1149 (-640 (-563))) (-640 (-563)))) (-15 -3757 ((-1149 (-640 (-563))) (-563))))) (T -879))
+((-3757 (*1 *2 *3) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563)))) (-3748 (*1 *2 *3) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-640 (-563))))) (-3748 (*1 *2 *3 *3) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-640 (-563))))) (-3736 (*1 *2 *3 *2) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *3 (-640 (-563))) (-5 *1 (-879)))) (-3725 (*1 *2 *3 *3) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-640 (-563))))) (-3712 (*1 *2 *2) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)))) (-2150 (*1 *2 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-879)))) (-3699 (*1 *2 *3 *3) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563)))) (-3699 (*1 *2 *3) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563)))) (-3699 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563)))))
+(-10 -7 (-15 -3699 ((-1149 (-640 (-563))) (-563) (-563) (-563))) (-15 -3699 ((-1149 (-640 (-563))) (-563))) (-15 -3699 ((-1149 (-640 (-563))) (-563) (-563))) (-15 -2150 ((-640 (-563)) (-640 (-563)))) (-15 -3712 ((-1149 (-640 (-563))) (-1149 (-640 (-563))))) (-15 -3725 ((-1149 (-640 (-563))) (-640 (-563)) (-640 (-563)))) (-15 -3736 ((-1149 (-640 (-563))) (-640 (-563)) (-1149 (-640 (-563))))) (-15 -3748 ((-1149 (-640 (-563))) (-640 (-563)) (-640 (-563)))) (-15 -3748 ((-1149 (-640 (-563))) (-640 (-563)))) (-15 -3757 ((-1149 (-640 (-563))) (-563))))
+((-2219 (((-888 (-379)) $) 9 (|has| |#1| (-611 (-888 (-379))))) (((-888 (-563)) $) 8 (|has| |#1| (-611 (-888 (-563)))))))
(((-880 |#1|) (-140) (-1208)) (T -880))
NIL
(-13 (-10 -7 (IF (|has| |t#1| (-611 (-888 (-563)))) (-6 (-611 (-888 (-563)))) |%noBranch|) (IF (|has| |t#1| (-611 (-888 (-379)))) (-6 (-611 (-888 (-379)))) |%noBranch|)))
(((-611 (-888 (-379))) |has| |#1| (-611 (-888 (-379)))) ((-611 (-888 (-563))) |has| |#1| (-611 (-888 (-563)))))
-((-1677 (((-112) $ $) NIL)) (-1566 (($) 14)) (-2416 (($ (-885 |#1| |#2|) (-885 |#1| |#3|)) 27)) (-2595 (((-885 |#1| |#3|) $) 16)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2336 (((-112) $) 22)) (-4244 (($) 19)) (-1693 (((-858) $) 30)) (-2344 (((-885 |#1| |#2|) $) 15)) (-1718 (((-112) $ $) 25)))
-(((-881 |#1| |#2| |#3|) (-13 (-1093) (-10 -8 (-15 -2336 ((-112) $)) (-15 -4244 ($)) (-15 -1566 ($)) (-15 -2416 ($ (-885 |#1| |#2|) (-885 |#1| |#3|))) (-15 -2344 ((-885 |#1| |#2|) $)) (-15 -2595 ((-885 |#1| |#3|) $)))) (-1093) (-1093) (-661 |#2|)) (T -881))
-((-2336 (*1 *2 *1) (-12 (-4 *4 (-1093)) (-5 *2 (-112)) (-5 *1 (-881 *3 *4 *5)) (-4 *3 (-1093)) (-4 *5 (-661 *4)))) (-4244 (*1 *1) (-12 (-4 *3 (-1093)) (-5 *1 (-881 *2 *3 *4)) (-4 *2 (-1093)) (-4 *4 (-661 *3)))) (-1566 (*1 *1) (-12 (-4 *3 (-1093)) (-5 *1 (-881 *2 *3 *4)) (-4 *2 (-1093)) (-4 *4 (-661 *3)))) (-2416 (*1 *1 *2 *3) (-12 (-5 *2 (-885 *4 *5)) (-5 *3 (-885 *4 *6)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-661 *5)) (-5 *1 (-881 *4 *5 *6)))) (-2344 (*1 *2 *1) (-12 (-4 *4 (-1093)) (-5 *2 (-885 *3 *4)) (-5 *1 (-881 *3 *4 *5)) (-4 *3 (-1093)) (-4 *5 (-661 *4)))) (-2595 (*1 *2 *1) (-12 (-4 *4 (-1093)) (-5 *2 (-885 *3 *5)) (-5 *1 (-881 *3 *4 *5)) (-4 *3 (-1093)) (-4 *5 (-661 *4)))))
-(-13 (-1093) (-10 -8 (-15 -2336 ((-112) $)) (-15 -4244 ($)) (-15 -1566 ($)) (-15 -2416 ($ (-885 |#1| |#2|) (-885 |#1| |#3|))) (-15 -2344 ((-885 |#1| |#2|) $)) (-15 -2595 ((-885 |#1| |#3|) $))))
-((-1677 (((-112) $ $) 7)) (-3787 (((-885 |#1| $) $ (-888 |#1|) (-885 |#1| $)) 13)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1718 (((-112) $ $) 6)))
+((-1677 (((-112) $ $) NIL)) (-1565 (($) 14)) (-3780 (($ (-885 |#1| |#2|) (-885 |#1| |#3|)) 27)) (-2594 (((-885 |#1| |#3|) $) 16)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2657 (((-112) $) 22)) (-4245 (($) 19)) (-1692 (((-858) $) 30)) (-3769 (((-885 |#1| |#2|) $) 15)) (-1718 (((-112) $ $) 25)))
+(((-881 |#1| |#2| |#3|) (-13 (-1093) (-10 -8 (-15 -2657 ((-112) $)) (-15 -4245 ($)) (-15 -1565 ($)) (-15 -3780 ($ (-885 |#1| |#2|) (-885 |#1| |#3|))) (-15 -3769 ((-885 |#1| |#2|) $)) (-15 -2594 ((-885 |#1| |#3|) $)))) (-1093) (-1093) (-661 |#2|)) (T -881))
+((-2657 (*1 *2 *1) (-12 (-4 *4 (-1093)) (-5 *2 (-112)) (-5 *1 (-881 *3 *4 *5)) (-4 *3 (-1093)) (-4 *5 (-661 *4)))) (-4245 (*1 *1) (-12 (-4 *3 (-1093)) (-5 *1 (-881 *2 *3 *4)) (-4 *2 (-1093)) (-4 *4 (-661 *3)))) (-1565 (*1 *1) (-12 (-4 *3 (-1093)) (-5 *1 (-881 *2 *3 *4)) (-4 *2 (-1093)) (-4 *4 (-661 *3)))) (-3780 (*1 *1 *2 *3) (-12 (-5 *2 (-885 *4 *5)) (-5 *3 (-885 *4 *6)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-661 *5)) (-5 *1 (-881 *4 *5 *6)))) (-3769 (*1 *2 *1) (-12 (-4 *4 (-1093)) (-5 *2 (-885 *3 *4)) (-5 *1 (-881 *3 *4 *5)) (-4 *3 (-1093)) (-4 *5 (-661 *4)))) (-2594 (*1 *2 *1) (-12 (-4 *4 (-1093)) (-5 *2 (-885 *3 *5)) (-5 *1 (-881 *3 *4 *5)) (-4 *3 (-1093)) (-4 *5 (-661 *4)))))
+(-13 (-1093) (-10 -8 (-15 -2657 ((-112) $)) (-15 -4245 ($)) (-15 -1565 ($)) (-15 -3780 ($ (-885 |#1| |#2|) (-885 |#1| |#3|))) (-15 -3769 ((-885 |#1| |#2|) $)) (-15 -2594 ((-885 |#1| |#3|) $))))
+((-1677 (((-112) $ $) 7)) (-1812 (((-885 |#1| $) $ (-888 |#1|) (-885 |#1| $)) 13)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1718 (((-112) $ $) 6)))
(((-882 |#1|) (-140) (-1093)) (T -882))
-((-3787 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-885 *4 *1)) (-5 *3 (-888 *4)) (-4 *1 (-882 *4)) (-4 *4 (-1093)))))
-(-13 (-1093) (-10 -8 (-15 -3787 ((-885 |t#1| $) $ (-888 |t#1|) (-885 |t#1| $)))))
+((-1812 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-885 *4 *1)) (-5 *3 (-888 *4)) (-4 *1 (-882 *4)) (-4 *4 (-1093)))))
+(-13 (-1093) (-10 -8 (-15 -1812 ((-885 |t#1| $) $ (-888 |t#1|) (-885 |t#1| $)))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-2799 (((-112) (-640 |#2|) |#3|) 22) (((-112) |#2| |#3|) 17)) (-1662 (((-885 |#1| |#2|) |#2| |#3|) 42 (-12 (-2176 (|has| |#2| (-1034 (-1169)))) (-2176 (|has| |#2| (-1045))))) (((-640 (-294 (-948 |#2|))) |#2| |#3|) 41 (-12 (|has| |#2| (-1045)) (-2176 (|has| |#2| (-1034 (-1169)))))) (((-640 (-294 |#2|)) |#2| |#3|) 34 (|has| |#2| (-1034 (-1169)))) (((-881 |#1| |#2| (-640 |#2|)) (-640 |#2|) |#3|) 20)))
-(((-883 |#1| |#2| |#3|) (-10 -7 (-15 -2799 ((-112) |#2| |#3|)) (-15 -2799 ((-112) (-640 |#2|) |#3|)) (-15 -1662 ((-881 |#1| |#2| (-640 |#2|)) (-640 |#2|) |#3|)) (IF (|has| |#2| (-1034 (-1169))) (-15 -1662 ((-640 (-294 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1045)) (-15 -1662 ((-640 (-294 (-948 |#2|))) |#2| |#3|)) (-15 -1662 ((-885 |#1| |#2|) |#2| |#3|))))) (-1093) (-882 |#1|) (-611 (-888 |#1|))) (T -883))
-((-1662 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-5 *2 (-885 *5 *3)) (-5 *1 (-883 *5 *3 *4)) (-2176 (-4 *3 (-1034 (-1169)))) (-2176 (-4 *3 (-1045))) (-4 *3 (-882 *5)) (-4 *4 (-611 (-888 *5))))) (-1662 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-5 *2 (-640 (-294 (-948 *3)))) (-5 *1 (-883 *5 *3 *4)) (-4 *3 (-1045)) (-2176 (-4 *3 (-1034 (-1169)))) (-4 *3 (-882 *5)) (-4 *4 (-611 (-888 *5))))) (-1662 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-5 *2 (-640 (-294 *3))) (-5 *1 (-883 *5 *3 *4)) (-4 *3 (-1034 (-1169))) (-4 *3 (-882 *5)) (-4 *4 (-611 (-888 *5))))) (-1662 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-4 *6 (-882 *5)) (-5 *2 (-881 *5 *6 (-640 *6))) (-5 *1 (-883 *5 *6 *4)) (-5 *3 (-640 *6)) (-4 *4 (-611 (-888 *5))))) (-2799 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *6)) (-4 *6 (-882 *5)) (-4 *5 (-1093)) (-5 *2 (-112)) (-5 *1 (-883 *5 *6 *4)) (-4 *4 (-611 (-888 *5))))) (-2799 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-5 *2 (-112)) (-5 *1 (-883 *5 *3 *4)) (-4 *3 (-882 *5)) (-4 *4 (-611 (-888 *5))))))
-(-10 -7 (-15 -2799 ((-112) |#2| |#3|)) (-15 -2799 ((-112) (-640 |#2|) |#3|)) (-15 -1662 ((-881 |#1| |#2| (-640 |#2|)) (-640 |#2|) |#3|)) (IF (|has| |#2| (-1034 (-1169))) (-15 -1662 ((-640 (-294 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1045)) (-15 -1662 ((-640 (-294 (-948 |#2|))) |#2| |#3|)) (-15 -1662 ((-885 |#1| |#2|) |#2| |#3|)))))
-((-2240 (((-885 |#1| |#3|) (-1 |#3| |#2|) (-885 |#1| |#2|)) 22)))
-(((-884 |#1| |#2| |#3|) (-10 -7 (-15 -2240 ((-885 |#1| |#3|) (-1 |#3| |#2|) (-885 |#1| |#2|)))) (-1093) (-1093) (-1093)) (T -884))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-885 *5 *6)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-885 *5 *7)) (-5 *1 (-884 *5 *6 *7)))))
-(-10 -7 (-15 -2240 ((-885 |#1| |#3|) (-1 |#3| |#2|) (-885 |#1| |#2|))))
-((-1677 (((-112) $ $) NIL)) (-2583 (($ $ $) 39)) (-3075 (((-3 (-112) "failed") $ (-888 |#1|)) 36)) (-1566 (($) 12)) (-3573 (((-1151) $) NIL)) (-3020 (($ (-888 |#1|) |#2| $) 20)) (-1694 (((-1113) $) NIL)) (-1386 (((-3 |#2| "failed") (-888 |#1|) $) 50)) (-2336 (((-112) $) 15)) (-4244 (($) 13)) (-2546 (((-640 (-2 (|:| -2387 (-1169)) (|:| -2557 |#2|))) $) 25)) (-1707 (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 |#2|)))) 23)) (-1693 (((-858) $) 44)) (-3382 (($ (-888 |#1|) |#2| $ |#2|) 48)) (-3569 (($ (-888 |#1|) |#2| $) 47)) (-1718 (((-112) $ $) 41)))
-(((-885 |#1| |#2|) (-13 (-1093) (-10 -8 (-15 -2336 ((-112) $)) (-15 -4244 ($)) (-15 -1566 ($)) (-15 -2583 ($ $ $)) (-15 -1386 ((-3 |#2| "failed") (-888 |#1|) $)) (-15 -3569 ($ (-888 |#1|) |#2| $)) (-15 -3020 ($ (-888 |#1|) |#2| $)) (-15 -3382 ($ (-888 |#1|) |#2| $ |#2|)) (-15 -2546 ((-640 (-2 (|:| -2387 (-1169)) (|:| -2557 |#2|))) $)) (-15 -1707 ($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 |#2|))))) (-15 -3075 ((-3 (-112) "failed") $ (-888 |#1|))))) (-1093) (-1093)) (T -885))
-((-2336 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-885 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-4244 (*1 *1) (-12 (-5 *1 (-885 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-1566 (*1 *1) (-12 (-5 *1 (-885 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-2583 (*1 *1 *1 *1) (-12 (-5 *1 (-885 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-1386 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-4 *2 (-1093)) (-5 *1 (-885 *4 *2)))) (-3569 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-885 *4 *3)) (-4 *3 (-1093)))) (-3020 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-885 *4 *3)) (-4 *3 (-1093)))) (-3382 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-885 *4 *3)) (-4 *3 (-1093)))) (-2546 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 *4)))) (-5 *1 (-885 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-1707 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 *4)))) (-4 *4 (-1093)) (-5 *1 (-885 *3 *4)) (-4 *3 (-1093)))) (-3075 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-5 *2 (-112)) (-5 *1 (-885 *4 *5)) (-4 *5 (-1093)))))
-(-13 (-1093) (-10 -8 (-15 -2336 ((-112) $)) (-15 -4244 ($)) (-15 -1566 ($)) (-15 -2583 ($ $ $)) (-15 -1386 ((-3 |#2| "failed") (-888 |#1|) $)) (-15 -3569 ($ (-888 |#1|) |#2| $)) (-15 -3020 ($ (-888 |#1|) |#2| $)) (-15 -3382 ($ (-888 |#1|) |#2| $ |#2|)) (-15 -2546 ((-640 (-2 (|:| -2387 (-1169)) (|:| -2557 |#2|))) $)) (-15 -1707 ($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 |#2|))))) (-15 -3075 ((-3 (-112) "failed") $ (-888 |#1|)))))
-((-1959 (((-888 |#1|) (-888 |#1|) (-640 (-1169)) (-1 (-112) (-640 |#2|))) 32) (((-888 |#1|) (-888 |#1|) (-640 (-1 (-112) |#2|))) 43) (((-888 |#1|) (-888 |#1|) (-1 (-112) |#2|)) 35)) (-3075 (((-112) (-640 |#2|) (-888 |#1|)) 40) (((-112) |#2| (-888 |#1|)) 36)) (-3301 (((-1 (-112) |#2|) (-888 |#1|)) 16)) (-2260 (((-640 |#2|) (-888 |#1|)) 24)) (-1409 (((-888 |#1|) (-888 |#1|) |#2|) 20)))
-(((-886 |#1| |#2|) (-10 -7 (-15 -1959 ((-888 |#1|) (-888 |#1|) (-1 (-112) |#2|))) (-15 -1959 ((-888 |#1|) (-888 |#1|) (-640 (-1 (-112) |#2|)))) (-15 -1959 ((-888 |#1|) (-888 |#1|) (-640 (-1169)) (-1 (-112) (-640 |#2|)))) (-15 -3301 ((-1 (-112) |#2|) (-888 |#1|))) (-15 -3075 ((-112) |#2| (-888 |#1|))) (-15 -3075 ((-112) (-640 |#2|) (-888 |#1|))) (-15 -1409 ((-888 |#1|) (-888 |#1|) |#2|)) (-15 -2260 ((-640 |#2|) (-888 |#1|)))) (-1093) (-1208)) (T -886))
-((-2260 (*1 *2 *3) (-12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-5 *2 (-640 *5)) (-5 *1 (-886 *4 *5)) (-4 *5 (-1208)))) (-1409 (*1 *2 *2 *3) (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-886 *4 *3)) (-4 *3 (-1208)))) (-3075 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *6)) (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-4 *6 (-1208)) (-5 *2 (-112)) (-5 *1 (-886 *5 *6)))) (-3075 (*1 *2 *3 *4) (-12 (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-5 *2 (-112)) (-5 *1 (-886 *5 *3)) (-4 *3 (-1208)))) (-3301 (*1 *2 *3) (-12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-886 *4 *5)) (-4 *5 (-1208)))) (-1959 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-888 *5)) (-5 *3 (-640 (-1169))) (-5 *4 (-1 (-112) (-640 *6))) (-4 *5 (-1093)) (-4 *6 (-1208)) (-5 *1 (-886 *5 *6)))) (-1959 (*1 *2 *2 *3) (-12 (-5 *2 (-888 *4)) (-5 *3 (-640 (-1 (-112) *5))) (-4 *4 (-1093)) (-4 *5 (-1208)) (-5 *1 (-886 *4 *5)))) (-1959 (*1 *2 *2 *3) (-12 (-5 *2 (-888 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1093)) (-4 *5 (-1208)) (-5 *1 (-886 *4 *5)))))
-(-10 -7 (-15 -1959 ((-888 |#1|) (-888 |#1|) (-1 (-112) |#2|))) (-15 -1959 ((-888 |#1|) (-888 |#1|) (-640 (-1 (-112) |#2|)))) (-15 -1959 ((-888 |#1|) (-888 |#1|) (-640 (-1169)) (-1 (-112) (-640 |#2|)))) (-15 -3301 ((-1 (-112) |#2|) (-888 |#1|))) (-15 -3075 ((-112) |#2| (-888 |#1|))) (-15 -3075 ((-112) (-640 |#2|) (-888 |#1|))) (-15 -1409 ((-888 |#1|) (-888 |#1|) |#2|)) (-15 -2260 ((-640 |#2|) (-888 |#1|))))
-((-2240 (((-888 |#2|) (-1 |#2| |#1|) (-888 |#1|)) 19)))
-(((-887 |#1| |#2|) (-10 -7 (-15 -2240 ((-888 |#2|) (-1 |#2| |#1|) (-888 |#1|)))) (-1093) (-1093)) (T -887))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *2 (-888 *6)) (-5 *1 (-887 *5 *6)))))
-(-10 -7 (-15 -2240 ((-888 |#2|) (-1 |#2| |#1|) (-888 |#1|))))
-((-1677 (((-112) $ $) NIL)) (-2155 (($ $ (-640 (-52))) 62)) (-2606 (((-640 $) $) 114)) (-3353 (((-2 (|:| |var| (-640 (-1169))) (|:| |pred| (-52))) $) 23)) (-3264 (((-112) $) 29)) (-3048 (($ $ (-640 (-1169)) (-52)) 24)) (-2454 (($ $ (-640 (-52))) 61)) (-2131 (((-3 |#1| "failed") $) 59) (((-3 (-1169) "failed") $) 136)) (-2058 ((|#1| $) 56) (((-1169) $) NIL)) (-2664 (($ $) 104)) (-2722 (((-112) $) 44)) (-2553 (((-640 (-52)) $) 42)) (-1582 (($ (-1169) (-112) (-112) (-112)) 63)) (-1562 (((-3 (-640 $) "failed") (-640 $)) 70)) (-4034 (((-112) $) 47)) (-3218 (((-112) $) 46)) (-3573 (((-1151) $) NIL)) (-3733 (((-3 (-640 $) "failed") $) 33)) (-4187 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 40)) (-1848 (((-3 (-2 (|:| |val| $) (|:| -1654 $)) "failed") $) 81)) (-2919 (((-3 (-640 $) "failed") $) 32)) (-1879 (((-3 (-640 $) "failed") $ (-114)) 103) (((-3 (-2 (|:| -2517 (-114)) (|:| |arg| (-640 $))) "failed") $) 91)) (-2033 (((-3 (-640 $) "failed") $) 34)) (-4086 (((-3 (-2 (|:| |val| $) (|:| -1654 (-767))) "failed") $) 37)) (-2273 (((-112) $) 28)) (-1694 (((-1113) $) NIL)) (-3424 (((-112) $) 20)) (-2677 (((-112) $) 43)) (-3051 (((-640 (-52)) $) 107)) (-3606 (((-112) $) 45)) (-2309 (($ (-114) (-640 $)) 88)) (-2370 (((-767) $) 27)) (-1872 (($ $) 60)) (-2220 (($ (-640 $)) 57)) (-4018 (((-112) $) 25)) (-1693 (((-858) $) 51) (($ |#1|) 18) (($ (-1169)) 64)) (-1409 (($ $ (-52)) 106)) (-2241 (($) 87 T CONST)) (-2254 (($) 71 T CONST)) (-1718 (((-112) $ $) 77)) (-1837 (($ $ $) 96)) (-1814 (($ $ $) 100)) (** (($ $ (-767)) 95) (($ $ $) 52)) (* (($ $ $) 101)))
-(((-888 |#1|) (-13 (-1093) (-1034 |#1|) (-1034 (-1169)) (-10 -8 (-15 0 ($) -2669) (-15 1 ($) -2669) (-15 -2919 ((-3 (-640 $) "failed") $)) (-15 -3733 ((-3 (-640 $) "failed") $)) (-15 -1879 ((-3 (-640 $) "failed") $ (-114))) (-15 -1879 ((-3 (-2 (|:| -2517 (-114)) (|:| |arg| (-640 $))) "failed") $)) (-15 -4086 ((-3 (-2 (|:| |val| $) (|:| -1654 (-767))) "failed") $)) (-15 -4187 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2033 ((-3 (-640 $) "failed") $)) (-15 -1848 ((-3 (-2 (|:| |val| $) (|:| -1654 $)) "failed") $)) (-15 -2309 ($ (-114) (-640 $))) (-15 -1814 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-767))) (-15 ** ($ $ $)) (-15 -1837 ($ $ $)) (-15 -2370 ((-767) $)) (-15 -2220 ($ (-640 $))) (-15 -1872 ($ $)) (-15 -2273 ((-112) $)) (-15 -2722 ((-112) $)) (-15 -3264 ((-112) $)) (-15 -4018 ((-112) $)) (-15 -3606 ((-112) $)) (-15 -3218 ((-112) $)) (-15 -4034 ((-112) $)) (-15 -2677 ((-112) $)) (-15 -2553 ((-640 (-52)) $)) (-15 -2454 ($ $ (-640 (-52)))) (-15 -2155 ($ $ (-640 (-52)))) (-15 -1582 ($ (-1169) (-112) (-112) (-112))) (-15 -3048 ($ $ (-640 (-1169)) (-52))) (-15 -3353 ((-2 (|:| |var| (-640 (-1169))) (|:| |pred| (-52))) $)) (-15 -3424 ((-112) $)) (-15 -2664 ($ $)) (-15 -1409 ($ $ (-52))) (-15 -3051 ((-640 (-52)) $)) (-15 -2606 ((-640 $) $)) (-15 -1562 ((-3 (-640 $) "failed") (-640 $))))) (-1093)) (T -888))
-((-2241 (*1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (-2254 (*1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (-2919 (*1 *2 *1) (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-3733 (*1 *2 *1) (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-1879 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-640 (-888 *4))) (-5 *1 (-888 *4)) (-4 *4 (-1093)))) (-1879 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -2517 (-114)) (|:| |arg| (-640 (-888 *3))))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-4086 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-888 *3)) (|:| -1654 (-767)))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-4187 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-888 *3)) (|:| |den| (-888 *3)))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2033 (*1 *2 *1) (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-1848 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-888 *3)) (|:| -1654 (-888 *3)))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2309 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-640 (-888 *4))) (-5 *1 (-888 *4)) (-4 *4 (-1093)))) (-1814 (*1 *1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (** (*1 *1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (-1837 (*1 *1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (-2370 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2220 (*1 *1 *2) (-12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-1872 (*1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (-2273 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2722 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-3264 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-4018 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-3606 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-3218 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-4034 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2677 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2553 (*1 *2 *1) (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2454 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2155 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-1582 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-112)) (-5 *1 (-888 *4)) (-4 *4 (-1093)))) (-3048 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-52)) (-5 *1 (-888 *4)) (-4 *4 (-1093)))) (-3353 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-640 (-1169))) (|:| |pred| (-52)))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-3424 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2664 (*1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (-1409 (*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-3051 (*1 *2 *1) (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2606 (*1 *2 *1) (-12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-1562 (*1 *2 *2) (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
-(-13 (-1093) (-1034 |#1|) (-1034 (-1169)) (-10 -8 (-15 (-2241) ($) -2669) (-15 (-2254) ($) -2669) (-15 -2919 ((-3 (-640 $) "failed") $)) (-15 -3733 ((-3 (-640 $) "failed") $)) (-15 -1879 ((-3 (-640 $) "failed") $ (-114))) (-15 -1879 ((-3 (-2 (|:| -2517 (-114)) (|:| |arg| (-640 $))) "failed") $)) (-15 -4086 ((-3 (-2 (|:| |val| $) (|:| -1654 (-767))) "failed") $)) (-15 -4187 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2033 ((-3 (-640 $) "failed") $)) (-15 -1848 ((-3 (-2 (|:| |val| $) (|:| -1654 $)) "failed") $)) (-15 -2309 ($ (-114) (-640 $))) (-15 -1814 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-767))) (-15 ** ($ $ $)) (-15 -1837 ($ $ $)) (-15 -2370 ((-767) $)) (-15 -2220 ($ (-640 $))) (-15 -1872 ($ $)) (-15 -2273 ((-112) $)) (-15 -2722 ((-112) $)) (-15 -3264 ((-112) $)) (-15 -4018 ((-112) $)) (-15 -3606 ((-112) $)) (-15 -3218 ((-112) $)) (-15 -4034 ((-112) $)) (-15 -2677 ((-112) $)) (-15 -2553 ((-640 (-52)) $)) (-15 -2454 ($ $ (-640 (-52)))) (-15 -2155 ($ $ (-640 (-52)))) (-15 -1582 ($ (-1169) (-112) (-112) (-112))) (-15 -3048 ($ $ (-640 (-1169)) (-52))) (-15 -3353 ((-2 (|:| |var| (-640 (-1169))) (|:| |pred| (-52))) $)) (-15 -3424 ((-112) $)) (-15 -2664 ($ $)) (-15 -1409 ($ $ (-52))) (-15 -3051 ((-640 (-52)) $)) (-15 -2606 ((-640 $) $)) (-15 -1562 ((-3 (-640 $) "failed") (-640 $)))))
-((-1677 (((-112) $ $) NIL)) (-3993 (((-640 |#1|) $) 16)) (-4134 (((-112) $) 38)) (-2131 (((-3 (-667 |#1|) "failed") $) 43)) (-2058 (((-667 |#1|) $) 41)) (-3792 (($ $) 18)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3415 (((-767) $) 46)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3781 (((-667 |#1|) $) 17)) (-1693 (((-858) $) 37) (($ (-667 |#1|)) 21) (((-815 |#1|) $) 27) (($ |#1|) 20)) (-2254 (($) 8 T CONST)) (-1531 (((-640 (-667 |#1|)) $) 23)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 11)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 49)))
-(((-889 |#1|) (-13 (-846) (-1034 (-667 |#1|)) (-10 -8 (-15 1 ($) -2669) (-15 -1693 ((-815 |#1|) $)) (-15 -1693 ($ |#1|)) (-15 -3781 ((-667 |#1|) $)) (-15 -3415 ((-767) $)) (-15 -1531 ((-640 (-667 |#1|)) $)) (-15 -3792 ($ $)) (-15 -4134 ((-112) $)) (-15 -3993 ((-640 |#1|) $)))) (-846)) (T -889))
-((-2254 (*1 *1) (-12 (-5 *1 (-889 *2)) (-4 *2 (-846)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-815 *3)) (-5 *1 (-889 *3)) (-4 *3 (-846)))) (-1693 (*1 *1 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-846)))) (-3781 (*1 *2 *1) (-12 (-5 *2 (-667 *3)) (-5 *1 (-889 *3)) (-4 *3 (-846)))) (-3415 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-889 *3)) (-4 *3 (-846)))) (-1531 (*1 *2 *1) (-12 (-5 *2 (-640 (-667 *3))) (-5 *1 (-889 *3)) (-4 *3 (-846)))) (-3792 (*1 *1 *1) (-12 (-5 *1 (-889 *2)) (-4 *2 (-846)))) (-4134 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-889 *3)) (-4 *3 (-846)))) (-3993 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-889 *3)) (-4 *3 (-846)))))
-(-13 (-846) (-1034 (-667 |#1|)) (-10 -8 (-15 (-2254) ($) -2669) (-15 -1693 ((-815 |#1|) $)) (-15 -1693 ($ |#1|)) (-15 -3781 ((-667 |#1|) $)) (-15 -3415 ((-767) $)) (-15 -1531 ((-640 (-667 |#1|)) $)) (-15 -3792 ($ $)) (-15 -4134 ((-112) $)) (-15 -3993 ((-640 |#1|) $))))
-((-2337 ((|#1| |#1| |#1|) 19)))
-(((-890 |#1| |#2|) (-10 -7 (-15 -2337 (|#1| |#1| |#1|))) (-1233 |#2|) (-1045)) (T -890))
-((-2337 (*1 *2 *2 *2) (-12 (-4 *3 (-1045)) (-5 *1 (-890 *2 *3)) (-4 *2 (-1233 *3)))))
-(-10 -7 (-15 -2337 (|#1| |#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-1994 (((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) 14)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-3703 (((-1031) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) 13)) (-1718 (((-112) $ $) 6)))
+((-2602 (((-112) (-640 |#2|) |#3|) 22) (((-112) |#2| |#3|) 17)) (-2611 (((-885 |#1| |#2|) |#2| |#3|) 42 (-12 (-2174 (|has| |#2| (-1034 (-1169)))) (-2174 (|has| |#2| (-1045))))) (((-640 (-294 (-948 |#2|))) |#2| |#3|) 41 (-12 (|has| |#2| (-1045)) (-2174 (|has| |#2| (-1034 (-1169)))))) (((-640 (-294 |#2|)) |#2| |#3|) 34 (|has| |#2| (-1034 (-1169)))) (((-881 |#1| |#2| (-640 |#2|)) (-640 |#2|) |#3|) 20)))
+(((-883 |#1| |#2| |#3|) (-10 -7 (-15 -2602 ((-112) |#2| |#3|)) (-15 -2602 ((-112) (-640 |#2|) |#3|)) (-15 -2611 ((-881 |#1| |#2| (-640 |#2|)) (-640 |#2|) |#3|)) (IF (|has| |#2| (-1034 (-1169))) (-15 -2611 ((-640 (-294 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1045)) (-15 -2611 ((-640 (-294 (-948 |#2|))) |#2| |#3|)) (-15 -2611 ((-885 |#1| |#2|) |#2| |#3|))))) (-1093) (-882 |#1|) (-611 (-888 |#1|))) (T -883))
+((-2611 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-5 *2 (-885 *5 *3)) (-5 *1 (-883 *5 *3 *4)) (-2174 (-4 *3 (-1034 (-1169)))) (-2174 (-4 *3 (-1045))) (-4 *3 (-882 *5)) (-4 *4 (-611 (-888 *5))))) (-2611 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-5 *2 (-640 (-294 (-948 *3)))) (-5 *1 (-883 *5 *3 *4)) (-4 *3 (-1045)) (-2174 (-4 *3 (-1034 (-1169)))) (-4 *3 (-882 *5)) (-4 *4 (-611 (-888 *5))))) (-2611 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-5 *2 (-640 (-294 *3))) (-5 *1 (-883 *5 *3 *4)) (-4 *3 (-1034 (-1169))) (-4 *3 (-882 *5)) (-4 *4 (-611 (-888 *5))))) (-2611 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-4 *6 (-882 *5)) (-5 *2 (-881 *5 *6 (-640 *6))) (-5 *1 (-883 *5 *6 *4)) (-5 *3 (-640 *6)) (-4 *4 (-611 (-888 *5))))) (-2602 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *6)) (-4 *6 (-882 *5)) (-4 *5 (-1093)) (-5 *2 (-112)) (-5 *1 (-883 *5 *6 *4)) (-4 *4 (-611 (-888 *5))))) (-2602 (*1 *2 *3 *4) (-12 (-4 *5 (-1093)) (-5 *2 (-112)) (-5 *1 (-883 *5 *3 *4)) (-4 *3 (-882 *5)) (-4 *4 (-611 (-888 *5))))))
+(-10 -7 (-15 -2602 ((-112) |#2| |#3|)) (-15 -2602 ((-112) (-640 |#2|) |#3|)) (-15 -2611 ((-881 |#1| |#2| (-640 |#2|)) (-640 |#2|) |#3|)) (IF (|has| |#2| (-1034 (-1169))) (-15 -2611 ((-640 (-294 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1045)) (-15 -2611 ((-640 (-294 (-948 |#2|))) |#2| |#3|)) (-15 -2611 ((-885 |#1| |#2|) |#2| |#3|)))))
+((-2238 (((-885 |#1| |#3|) (-1 |#3| |#2|) (-885 |#1| |#2|)) 22)))
+(((-884 |#1| |#2| |#3|) (-10 -7 (-15 -2238 ((-885 |#1| |#3|) (-1 |#3| |#2|) (-885 |#1| |#2|)))) (-1093) (-1093) (-1093)) (T -884))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-885 *5 *6)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-885 *5 *7)) (-5 *1 (-884 *5 *6 *7)))))
+(-10 -7 (-15 -2238 ((-885 |#1| |#3|) (-1 |#3| |#2|) (-885 |#1| |#2|))))
+((-1677 (((-112) $ $) NIL)) (-2582 (($ $ $) 39)) (-2855 (((-3 (-112) "failed") $ (-888 |#1|)) 36)) (-1565 (($) 12)) (-3854 (((-1151) $) NIL)) (-2629 (($ (-888 |#1|) |#2| $) 20)) (-1693 (((-1113) $) NIL)) (-2648 (((-3 |#2| "failed") (-888 |#1|) $) 50)) (-2657 (((-112) $) 15)) (-4245 (($) 13)) (-2545 (((-640 (-2 (|:| -2387 (-1169)) (|:| -2556 |#2|))) $) 25)) (-1706 (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 |#2|)))) 23)) (-1692 (((-858) $) 44)) (-2622 (($ (-888 |#1|) |#2| $ |#2|) 48)) (-2639 (($ (-888 |#1|) |#2| $) 47)) (-1718 (((-112) $ $) 41)))
+(((-885 |#1| |#2|) (-13 (-1093) (-10 -8 (-15 -2657 ((-112) $)) (-15 -4245 ($)) (-15 -1565 ($)) (-15 -2582 ($ $ $)) (-15 -2648 ((-3 |#2| "failed") (-888 |#1|) $)) (-15 -2639 ($ (-888 |#1|) |#2| $)) (-15 -2629 ($ (-888 |#1|) |#2| $)) (-15 -2622 ($ (-888 |#1|) |#2| $ |#2|)) (-15 -2545 ((-640 (-2 (|:| -2387 (-1169)) (|:| -2556 |#2|))) $)) (-15 -1706 ($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 |#2|))))) (-15 -2855 ((-3 (-112) "failed") $ (-888 |#1|))))) (-1093) (-1093)) (T -885))
+((-2657 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-885 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-4245 (*1 *1) (-12 (-5 *1 (-885 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-1565 (*1 *1) (-12 (-5 *1 (-885 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-2582 (*1 *1 *1 *1) (-12 (-5 *1 (-885 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-2648 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-4 *2 (-1093)) (-5 *1 (-885 *4 *2)))) (-2639 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-885 *4 *3)) (-4 *3 (-1093)))) (-2629 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-885 *4 *3)) (-4 *3 (-1093)))) (-2622 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-885 *4 *3)) (-4 *3 (-1093)))) (-2545 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 *4)))) (-5 *1 (-885 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-1706 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 *4)))) (-4 *4 (-1093)) (-5 *1 (-885 *3 *4)) (-4 *3 (-1093)))) (-2855 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-5 *2 (-112)) (-5 *1 (-885 *4 *5)) (-4 *5 (-1093)))))
+(-13 (-1093) (-10 -8 (-15 -2657 ((-112) $)) (-15 -4245 ($)) (-15 -1565 ($)) (-15 -2582 ($ $ $)) (-15 -2648 ((-3 |#2| "failed") (-888 |#1|) $)) (-15 -2639 ($ (-888 |#1|) |#2| $)) (-15 -2629 ($ (-888 |#1|) |#2| $)) (-15 -2622 ($ (-888 |#1|) |#2| $ |#2|)) (-15 -2545 ((-640 (-2 (|:| -2387 (-1169)) (|:| -2556 |#2|))) $)) (-15 -1706 ($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 |#2|))))) (-15 -2855 ((-3 (-112) "failed") $ (-888 |#1|)))))
+((-1958 (((-888 |#1|) (-888 |#1|) (-640 (-1169)) (-1 (-112) (-640 |#2|))) 32) (((-888 |#1|) (-888 |#1|) (-640 (-1 (-112) |#2|))) 43) (((-888 |#1|) (-888 |#1|) (-1 (-112) |#2|)) 35)) (-2855 (((-112) (-640 |#2|) (-888 |#1|)) 40) (((-112) |#2| (-888 |#1|)) 36)) (-3301 (((-1 (-112) |#2|) (-888 |#1|)) 16)) (-2873 (((-640 |#2|) (-888 |#1|)) 24)) (-2864 (((-888 |#1|) (-888 |#1|) |#2|) 20)))
+(((-886 |#1| |#2|) (-10 -7 (-15 -1958 ((-888 |#1|) (-888 |#1|) (-1 (-112) |#2|))) (-15 -1958 ((-888 |#1|) (-888 |#1|) (-640 (-1 (-112) |#2|)))) (-15 -1958 ((-888 |#1|) (-888 |#1|) (-640 (-1169)) (-1 (-112) (-640 |#2|)))) (-15 -3301 ((-1 (-112) |#2|) (-888 |#1|))) (-15 -2855 ((-112) |#2| (-888 |#1|))) (-15 -2855 ((-112) (-640 |#2|) (-888 |#1|))) (-15 -2864 ((-888 |#1|) (-888 |#1|) |#2|)) (-15 -2873 ((-640 |#2|) (-888 |#1|)))) (-1093) (-1208)) (T -886))
+((-2873 (*1 *2 *3) (-12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-5 *2 (-640 *5)) (-5 *1 (-886 *4 *5)) (-4 *5 (-1208)))) (-2864 (*1 *2 *2 *3) (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-886 *4 *3)) (-4 *3 (-1208)))) (-2855 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *6)) (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-4 *6 (-1208)) (-5 *2 (-112)) (-5 *1 (-886 *5 *6)))) (-2855 (*1 *2 *3 *4) (-12 (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-5 *2 (-112)) (-5 *1 (-886 *5 *3)) (-4 *3 (-1208)))) (-3301 (*1 *2 *3) (-12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-886 *4 *5)) (-4 *5 (-1208)))) (-1958 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-888 *5)) (-5 *3 (-640 (-1169))) (-5 *4 (-1 (-112) (-640 *6))) (-4 *5 (-1093)) (-4 *6 (-1208)) (-5 *1 (-886 *5 *6)))) (-1958 (*1 *2 *2 *3) (-12 (-5 *2 (-888 *4)) (-5 *3 (-640 (-1 (-112) *5))) (-4 *4 (-1093)) (-4 *5 (-1208)) (-5 *1 (-886 *4 *5)))) (-1958 (*1 *2 *2 *3) (-12 (-5 *2 (-888 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1093)) (-4 *5 (-1208)) (-5 *1 (-886 *4 *5)))))
+(-10 -7 (-15 -1958 ((-888 |#1|) (-888 |#1|) (-1 (-112) |#2|))) (-15 -1958 ((-888 |#1|) (-888 |#1|) (-640 (-1 (-112) |#2|)))) (-15 -1958 ((-888 |#1|) (-888 |#1|) (-640 (-1169)) (-1 (-112) (-640 |#2|)))) (-15 -3301 ((-1 (-112) |#2|) (-888 |#1|))) (-15 -2855 ((-112) |#2| (-888 |#1|))) (-15 -2855 ((-112) (-640 |#2|) (-888 |#1|))) (-15 -2864 ((-888 |#1|) (-888 |#1|) |#2|)) (-15 -2873 ((-640 |#2|) (-888 |#1|))))
+((-2238 (((-888 |#2|) (-1 |#2| |#1|) (-888 |#1|)) 19)))
+(((-887 |#1| |#2|) (-10 -7 (-15 -2238 ((-888 |#2|) (-1 |#2| |#1|) (-888 |#1|)))) (-1093) (-1093)) (T -887))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-5 *2 (-888 *6)) (-5 *1 (-887 *5 *6)))))
+(-10 -7 (-15 -2238 ((-888 |#2|) (-1 |#2| |#1|) (-888 |#1|))))
+((-1677 (((-112) $ $) NIL)) (-2734 (($ $ (-640 (-52))) 62)) (-2605 (((-640 $) $) 114)) (-2702 (((-2 (|:| |var| (-640 (-1169))) (|:| |pred| (-52))) $) 23)) (-2748 (((-112) $) 29)) (-2712 (($ $ (-640 (-1169)) (-52)) 24)) (-2746 (($ $ (-640 (-52))) 61)) (-2130 (((-3 |#1| "failed") $) 59) (((-3 (-1169) "failed") $) 136)) (-2057 ((|#1| $) 56) (((-1169) $) NIL)) (-2684 (($ $) 104)) (-2810 (((-112) $) 44)) (-2757 (((-640 (-52)) $) 42)) (-2722 (($ (-1169) (-112) (-112) (-112)) 63)) (-2665 (((-3 (-640 $) "failed") (-640 $)) 70)) (-2779 (((-112) $) 47)) (-2789 (((-112) $) 46)) (-3854 (((-1151) $) NIL)) (-3939 (((-3 (-640 $) "failed") $) 33)) (-4188 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 40)) (-3959 (((-3 (-2 (|:| |val| $) (|:| -3311 $)) "failed") $) 81)) (-3930 (((-3 (-640 $) "failed") $) 32)) (-2845 (((-3 (-640 $) "failed") $ (-114)) 103) (((-3 (-2 (|:| -2516 (-114)) (|:| |arg| (-640 $))) "failed") $) 91)) (-2834 (((-3 (-640 $) "failed") $) 34)) (-3949 (((-3 (-2 (|:| |val| $) (|:| -3311 (-767))) "failed") $) 37)) (-2822 (((-112) $) 28)) (-1693 (((-1113) $) NIL)) (-2692 (((-112) $) 20)) (-2767 (((-112) $) 43)) (-2676 (((-640 (-52)) $) 107)) (-2799 (((-112) $) 45)) (-2308 (($ (-114) (-640 $)) 88)) (-2369 (((-767) $) 27)) (-1870 (($ $) 60)) (-2219 (($ (-640 $)) 57)) (-3904 (((-112) $) 25)) (-1692 (((-858) $) 51) (($ |#1|) 18) (($ (-1169)) 64)) (-2864 (($ $ (-52)) 106)) (-2239 (($) 87 T CONST)) (-2253 (($) 71 T CONST)) (-1718 (((-112) $ $) 77)) (-1836 (($ $ $) 96)) (-1813 (($ $ $) 100)) (** (($ $ (-767)) 95) (($ $ $) 52)) (* (($ $ $) 101)))
+(((-888 |#1|) (-13 (-1093) (-1034 |#1|) (-1034 (-1169)) (-10 -8 (-15 0 ($) -2668) (-15 1 ($) -2668) (-15 -3930 ((-3 (-640 $) "failed") $)) (-15 -3939 ((-3 (-640 $) "failed") $)) (-15 -2845 ((-3 (-640 $) "failed") $ (-114))) (-15 -2845 ((-3 (-2 (|:| -2516 (-114)) (|:| |arg| (-640 $))) "failed") $)) (-15 -3949 ((-3 (-2 (|:| |val| $) (|:| -3311 (-767))) "failed") $)) (-15 -4188 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2834 ((-3 (-640 $) "failed") $)) (-15 -3959 ((-3 (-2 (|:| |val| $) (|:| -3311 $)) "failed") $)) (-15 -2308 ($ (-114) (-640 $))) (-15 -1813 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-767))) (-15 ** ($ $ $)) (-15 -1836 ($ $ $)) (-15 -2369 ((-767) $)) (-15 -2219 ($ (-640 $))) (-15 -1870 ($ $)) (-15 -2822 ((-112) $)) (-15 -2810 ((-112) $)) (-15 -2748 ((-112) $)) (-15 -3904 ((-112) $)) (-15 -2799 ((-112) $)) (-15 -2789 ((-112) $)) (-15 -2779 ((-112) $)) (-15 -2767 ((-112) $)) (-15 -2757 ((-640 (-52)) $)) (-15 -2746 ($ $ (-640 (-52)))) (-15 -2734 ($ $ (-640 (-52)))) (-15 -2722 ($ (-1169) (-112) (-112) (-112))) (-15 -2712 ($ $ (-640 (-1169)) (-52))) (-15 -2702 ((-2 (|:| |var| (-640 (-1169))) (|:| |pred| (-52))) $)) (-15 -2692 ((-112) $)) (-15 -2684 ($ $)) (-15 -2864 ($ $ (-52))) (-15 -2676 ((-640 (-52)) $)) (-15 -2605 ((-640 $) $)) (-15 -2665 ((-3 (-640 $) "failed") (-640 $))))) (-1093)) (T -888))
+((-2239 (*1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (-2253 (*1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (-3930 (*1 *2 *1) (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-3939 (*1 *2 *1) (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2845 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-640 (-888 *4))) (-5 *1 (-888 *4)) (-4 *4 (-1093)))) (-2845 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -2516 (-114)) (|:| |arg| (-640 (-888 *3))))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-3949 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-888 *3)) (|:| -3311 (-767)))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-4188 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-888 *3)) (|:| |den| (-888 *3)))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2834 (*1 *2 *1) (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-3959 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-888 *3)) (|:| -3311 (-888 *3)))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2308 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-640 (-888 *4))) (-5 *1 (-888 *4)) (-4 *4 (-1093)))) (-1813 (*1 *1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (** (*1 *1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (-1836 (*1 *1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (-2369 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2219 (*1 *1 *2) (-12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-1870 (*1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (-2822 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2810 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2748 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-3904 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2799 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2789 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2779 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2767 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2757 (*1 *2 *1) (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2746 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2734 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2722 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-112)) (-5 *1 (-888 *4)) (-4 *4 (-1093)))) (-2712 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-52)) (-5 *1 (-888 *4)) (-4 *4 (-1093)))) (-2702 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-640 (-1169))) (|:| |pred| (-52)))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2692 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2684 (*1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))) (-2864 (*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2676 (*1 *2 *1) (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2605 (*1 *2 *1) (-12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))) (-2665 (*1 *2 *2) (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+(-13 (-1093) (-1034 |#1|) (-1034 (-1169)) (-10 -8 (-15 (-2239) ($) -2668) (-15 (-2253) ($) -2668) (-15 -3930 ((-3 (-640 $) "failed") $)) (-15 -3939 ((-3 (-640 $) "failed") $)) (-15 -2845 ((-3 (-640 $) "failed") $ (-114))) (-15 -2845 ((-3 (-2 (|:| -2516 (-114)) (|:| |arg| (-640 $))) "failed") $)) (-15 -3949 ((-3 (-2 (|:| |val| $) (|:| -3311 (-767))) "failed") $)) (-15 -4188 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2834 ((-3 (-640 $) "failed") $)) (-15 -3959 ((-3 (-2 (|:| |val| $) (|:| -3311 $)) "failed") $)) (-15 -2308 ($ (-114) (-640 $))) (-15 -1813 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-767))) (-15 ** ($ $ $)) (-15 -1836 ($ $ $)) (-15 -2369 ((-767) $)) (-15 -2219 ($ (-640 $))) (-15 -1870 ($ $)) (-15 -2822 ((-112) $)) (-15 -2810 ((-112) $)) (-15 -2748 ((-112) $)) (-15 -3904 ((-112) $)) (-15 -2799 ((-112) $)) (-15 -2789 ((-112) $)) (-15 -2779 ((-112) $)) (-15 -2767 ((-112) $)) (-15 -2757 ((-640 (-52)) $)) (-15 -2746 ($ $ (-640 (-52)))) (-15 -2734 ($ $ (-640 (-52)))) (-15 -2722 ($ (-1169) (-112) (-112) (-112))) (-15 -2712 ($ $ (-640 (-1169)) (-52))) (-15 -2702 ((-2 (|:| |var| (-640 (-1169))) (|:| |pred| (-52))) $)) (-15 -2692 ((-112) $)) (-15 -2684 ($ $)) (-15 -2864 ($ $ (-52))) (-15 -2676 ((-640 (-52)) $)) (-15 -2605 ((-640 $) $)) (-15 -2665 ((-3 (-640 $) "failed") (-640 $)))))
+((-1677 (((-112) $ $) NIL)) (-3994 (((-640 |#1|) $) 16)) (-2882 (((-112) $) 38)) (-2130 (((-3 (-667 |#1|) "failed") $) 43)) (-2057 (((-667 |#1|) $) 41)) (-3793 (($ $) 18)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-3419 (((-767) $) 46)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3782 (((-667 |#1|) $) 17)) (-1692 (((-858) $) 37) (($ (-667 |#1|)) 21) (((-815 |#1|) $) 27) (($ |#1|) 20)) (-2253 (($) 8 T CONST)) (-2891 (((-640 (-667 |#1|)) $) 23)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 11)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 49)))
+(((-889 |#1|) (-13 (-846) (-1034 (-667 |#1|)) (-10 -8 (-15 1 ($) -2668) (-15 -1692 ((-815 |#1|) $)) (-15 -1692 ($ |#1|)) (-15 -3782 ((-667 |#1|) $)) (-15 -3419 ((-767) $)) (-15 -2891 ((-640 (-667 |#1|)) $)) (-15 -3793 ($ $)) (-15 -2882 ((-112) $)) (-15 -3994 ((-640 |#1|) $)))) (-846)) (T -889))
+((-2253 (*1 *1) (-12 (-5 *1 (-889 *2)) (-4 *2 (-846)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-815 *3)) (-5 *1 (-889 *3)) (-4 *3 (-846)))) (-1692 (*1 *1 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-846)))) (-3782 (*1 *2 *1) (-12 (-5 *2 (-667 *3)) (-5 *1 (-889 *3)) (-4 *3 (-846)))) (-3419 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-889 *3)) (-4 *3 (-846)))) (-2891 (*1 *2 *1) (-12 (-5 *2 (-640 (-667 *3))) (-5 *1 (-889 *3)) (-4 *3 (-846)))) (-3793 (*1 *1 *1) (-12 (-5 *1 (-889 *2)) (-4 *2 (-846)))) (-2882 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-889 *3)) (-4 *3 (-846)))) (-3994 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-889 *3)) (-4 *3 (-846)))))
+(-13 (-846) (-1034 (-667 |#1|)) (-10 -8 (-15 (-2253) ($) -2668) (-15 -1692 ((-815 |#1|) $)) (-15 -1692 ($ |#1|)) (-15 -3782 ((-667 |#1|) $)) (-15 -3419 ((-767) $)) (-15 -2891 ((-640 (-667 |#1|)) $)) (-15 -3793 ($ $)) (-15 -2882 ((-112) $)) (-15 -3994 ((-640 |#1|) $))))
+((-4027 ((|#1| |#1| |#1|) 19)))
+(((-890 |#1| |#2|) (-10 -7 (-15 -4027 (|#1| |#1| |#1|))) (-1233 |#2|) (-1045)) (T -890))
+((-4027 (*1 *2 *2 *2) (-12 (-4 *3 (-1045)) (-5 *1 (-890 *2 *3)) (-4 *2 (-1233 *3)))))
+(-10 -7 (-15 -4027 (|#1| |#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-2929 (((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) 14)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2900 (((-1031) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) 13)) (-1718 (((-112) $ $) 6)))
(((-891) (-140)) (T -891))
-((-1994 (*1 *2 *3 *4) (-12 (-4 *1 (-891)) (-5 *3 (-1057)) (-5 *4 (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) (-5 *2 (-2 (|:| -1994 (-379)) (|:| |explanations| (-1151)))))) (-3703 (*1 *2 *3) (-12 (-4 *1 (-891)) (-5 *3 (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) (-5 *2 (-1031)))))
-(-13 (-1093) (-10 -7 (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))))) (-15 -3703 ((-1031) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))))))
+((-2929 (*1 *2 *3 *4) (-12 (-4 *1 (-891)) (-5 *3 (-1057)) (-5 *4 (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) (-5 *2 (-2 (|:| -2929 (-379)) (|:| |explanations| (-1151)))))) (-2900 (*1 *2 *3) (-12 (-4 *1 (-891)) (-5 *3 (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) (-5 *2 (-1031)))))
+(-13 (-1093) (-10 -7 (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))) (-1057) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))))) (-15 -2900 ((-1031) (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-2846 ((|#1| |#1| (-767)) 24)) (-2614 (((-3 |#1| "failed") |#1| |#1|) 22)) (-2927 (((-3 (-2 (|:| -1686 |#1|) (|:| -1701 |#1|)) "failed") |#1| (-767) (-767)) 27) (((-640 |#1|) |#1|) 29)))
-(((-892 |#1| |#2|) (-10 -7 (-15 -2927 ((-640 |#1|) |#1|)) (-15 -2927 ((-3 (-2 (|:| -1686 |#1|) (|:| -1701 |#1|)) "failed") |#1| (-767) (-767))) (-15 -2614 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2846 (|#1| |#1| (-767)))) (-1233 |#2|) (-363)) (T -892))
-((-2846 (*1 *2 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-363)) (-5 *1 (-892 *2 *4)) (-4 *2 (-1233 *4)))) (-2614 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-363)) (-5 *1 (-892 *2 *3)) (-4 *2 (-1233 *3)))) (-2927 (*1 *2 *3 *4 *4) (|partial| -12 (-5 *4 (-767)) (-4 *5 (-363)) (-5 *2 (-2 (|:| -1686 *3) (|:| -1701 *3))) (-5 *1 (-892 *3 *5)) (-4 *3 (-1233 *5)))) (-2927 (*1 *2 *3) (-12 (-4 *4 (-363)) (-5 *2 (-640 *3)) (-5 *1 (-892 *3 *4)) (-4 *3 (-1233 *4)))))
-(-10 -7 (-15 -2927 ((-640 |#1|) |#1|)) (-15 -2927 ((-3 (-2 (|:| -1686 |#1|) (|:| -1701 |#1|)) "failed") |#1| (-767) (-767))) (-15 -2614 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2846 (|#1| |#1| (-767))))
-((-1793 (((-1031) (-379) (-379) (-379) (-379) (-767) (-767) (-640 (-316 (-379))) (-640 (-640 (-316 (-379)))) (-1151)) 96) (((-1031) (-379) (-379) (-379) (-379) (-767) (-767) (-640 (-316 (-379))) (-640 (-640 (-316 (-379)))) (-1151) (-225)) 91) (((-1031) (-894) (-1057)) 83) (((-1031) (-894)) 84)) (-1994 (((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-894) (-1057)) 59) (((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-894)) 61)))
-(((-893) (-10 -7 (-15 -1793 ((-1031) (-894))) (-15 -1793 ((-1031) (-894) (-1057))) (-15 -1793 ((-1031) (-379) (-379) (-379) (-379) (-767) (-767) (-640 (-316 (-379))) (-640 (-640 (-316 (-379)))) (-1151) (-225))) (-15 -1793 ((-1031) (-379) (-379) (-379) (-379) (-767) (-767) (-640 (-316 (-379))) (-640 (-640 (-316 (-379)))) (-1151))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-894))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-894) (-1057))))) (T -893))
-((-1994 (*1 *2 *3 *4) (-12 (-5 *3 (-894)) (-5 *4 (-1057)) (-5 *2 (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))))) (-5 *1 (-893)))) (-1994 (*1 *2 *3) (-12 (-5 *3 (-894)) (-5 *2 (-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151))))) (-5 *1 (-893)))) (-1793 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7) (-12 (-5 *4 (-767)) (-5 *6 (-640 (-640 (-316 *3)))) (-5 *7 (-1151)) (-5 *5 (-640 (-316 (-379)))) (-5 *3 (-379)) (-5 *2 (-1031)) (-5 *1 (-893)))) (-1793 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8) (-12 (-5 *4 (-767)) (-5 *6 (-640 (-640 (-316 *3)))) (-5 *7 (-1151)) (-5 *8 (-225)) (-5 *5 (-640 (-316 (-379)))) (-5 *3 (-379)) (-5 *2 (-1031)) (-5 *1 (-893)))) (-1793 (*1 *2 *3 *4) (-12 (-5 *3 (-894)) (-5 *4 (-1057)) (-5 *2 (-1031)) (-5 *1 (-893)))) (-1793 (*1 *2 *3) (-12 (-5 *3 (-894)) (-5 *2 (-1031)) (-5 *1 (-893)))))
-(-10 -7 (-15 -1793 ((-1031) (-894))) (-15 -1793 ((-1031) (-894) (-1057))) (-15 -1793 ((-1031) (-379) (-379) (-379) (-379) (-767) (-767) (-640 (-316 (-379))) (-640 (-640 (-316 (-379)))) (-1151) (-225))) (-15 -1793 ((-1031) (-379) (-379) (-379) (-379) (-767) (-767) (-640 (-316 (-379))) (-640 (-640 (-316 (-379)))) (-1151))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-894))) (-15 -1994 ((-2 (|:| -1994 (-379)) (|:| -3348 (-1151)) (|:| |explanations| (-640 (-1151)))) (-894) (-1057))))
-((-1677 (((-112) $ $) NIL)) (-2058 (((-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))) $) 19)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 21) (($ (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) 18)) (-1718 (((-112) $ $) NIL)))
-(((-894) (-13 (-1093) (-10 -8 (-15 -1693 ($ (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))))) (-15 -2058 ((-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))) $))))) (T -894))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) (-5 *1 (-894)))) (-2058 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) (-5 *1 (-894)))))
-(-13 (-1093) (-10 -8 (-15 -1693 ($ (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))))) (-15 -2058 ((-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))) $))))
-((-4202 (($ $ |#2|) NIL) (($ $ (-640 |#2|)) 10) (($ $ |#2| (-767)) 12) (($ $ (-640 |#2|) (-640 (-767))) 15)) (-3209 (($ $ |#2|) 16) (($ $ (-640 |#2|)) 18) (($ $ |#2| (-767)) 19) (($ $ (-640 |#2|) (-640 (-767))) 21)))
-(((-895 |#1| |#2|) (-10 -8 (-15 -3209 (|#1| |#1| (-640 |#2|) (-640 (-767)))) (-15 -3209 (|#1| |#1| |#2| (-767))) (-15 -3209 (|#1| |#1| (-640 |#2|))) (-15 -3209 (|#1| |#1| |#2|)) (-15 -4202 (|#1| |#1| (-640 |#2|) (-640 (-767)))) (-15 -4202 (|#1| |#1| |#2| (-767))) (-15 -4202 (|#1| |#1| (-640 |#2|))) (-15 -4202 (|#1| |#1| |#2|))) (-896 |#2|) (-1093)) (T -895))
-NIL
-(-10 -8 (-15 -3209 (|#1| |#1| (-640 |#2|) (-640 (-767)))) (-15 -3209 (|#1| |#1| |#2| (-767))) (-15 -3209 (|#1| |#1| (-640 |#2|))) (-15 -3209 (|#1| |#1| |#2|)) (-15 -4202 (|#1| |#1| (-640 |#2|) (-640 (-767)))) (-15 -4202 (|#1| |#1| |#2| (-767))) (-15 -4202 (|#1| |#1| (-640 |#2|))) (-15 -4202 (|#1| |#1| |#2|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-4202 (($ $ |#1|) 42) (($ $ (-640 |#1|)) 41) (($ $ |#1| (-767)) 40) (($ $ (-640 |#1|) (-640 (-767))) 39)) (-1693 (((-858) $) 11) (($ (-563)) 29)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ |#1|) 38) (($ $ (-640 |#1|)) 37) (($ $ |#1| (-767)) 36) (($ $ (-640 |#1|) (-640 (-767))) 35)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-2919 ((|#1| |#1| (-767)) 24)) (-2910 (((-3 |#1| "failed") |#1| |#1|) 22)) (-1913 (((-3 (-2 (|:| -1685 |#1|) (|:| -1700 |#1|)) "failed") |#1| (-767) (-767)) 27) (((-640 |#1|) |#1|) 29)))
+(((-892 |#1| |#2|) (-10 -7 (-15 -1913 ((-640 |#1|) |#1|)) (-15 -1913 ((-3 (-2 (|:| -1685 |#1|) (|:| -1700 |#1|)) "failed") |#1| (-767) (-767))) (-15 -2910 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2919 (|#1| |#1| (-767)))) (-1233 |#2|) (-363)) (T -892))
+((-2919 (*1 *2 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-363)) (-5 *1 (-892 *2 *4)) (-4 *2 (-1233 *4)))) (-2910 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-363)) (-5 *1 (-892 *2 *3)) (-4 *2 (-1233 *3)))) (-1913 (*1 *2 *3 *4 *4) (|partial| -12 (-5 *4 (-767)) (-4 *5 (-363)) (-5 *2 (-2 (|:| -1685 *3) (|:| -1700 *3))) (-5 *1 (-892 *3 *5)) (-4 *3 (-1233 *5)))) (-1913 (*1 *2 *3) (-12 (-4 *4 (-363)) (-5 *2 (-640 *3)) (-5 *1 (-892 *3 *4)) (-4 *3 (-1233 *4)))))
+(-10 -7 (-15 -1913 ((-640 |#1|) |#1|)) (-15 -1913 ((-3 (-2 (|:| -1685 |#1|) (|:| -1700 |#1|)) "failed") |#1| (-767) (-767))) (-15 -2910 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2919 (|#1| |#1| (-767))))
+((-3510 (((-1031) (-379) (-379) (-379) (-379) (-767) (-767) (-640 (-316 (-379))) (-640 (-640 (-316 (-379)))) (-1151)) 96) (((-1031) (-379) (-379) (-379) (-379) (-767) (-767) (-640 (-316 (-379))) (-640 (-640 (-316 (-379)))) (-1151) (-225)) 91) (((-1031) (-894) (-1057)) 83) (((-1031) (-894)) 84)) (-2929 (((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-894) (-1057)) 59) (((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-894)) 61)))
+(((-893) (-10 -7 (-15 -3510 ((-1031) (-894))) (-15 -3510 ((-1031) (-894) (-1057))) (-15 -3510 ((-1031) (-379) (-379) (-379) (-379) (-767) (-767) (-640 (-316 (-379))) (-640 (-640 (-316 (-379)))) (-1151) (-225))) (-15 -3510 ((-1031) (-379) (-379) (-379) (-379) (-767) (-767) (-640 (-316 (-379))) (-640 (-640 (-316 (-379)))) (-1151))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-894))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-894) (-1057))))) (T -893))
+((-2929 (*1 *2 *3 *4) (-12 (-5 *3 (-894)) (-5 *4 (-1057)) (-5 *2 (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))))) (-5 *1 (-893)))) (-2929 (*1 *2 *3) (-12 (-5 *3 (-894)) (-5 *2 (-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151))))) (-5 *1 (-893)))) (-3510 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7) (-12 (-5 *4 (-767)) (-5 *6 (-640 (-640 (-316 *3)))) (-5 *7 (-1151)) (-5 *5 (-640 (-316 (-379)))) (-5 *3 (-379)) (-5 *2 (-1031)) (-5 *1 (-893)))) (-3510 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8) (-12 (-5 *4 (-767)) (-5 *6 (-640 (-640 (-316 *3)))) (-5 *7 (-1151)) (-5 *8 (-225)) (-5 *5 (-640 (-316 (-379)))) (-5 *3 (-379)) (-5 *2 (-1031)) (-5 *1 (-893)))) (-3510 (*1 *2 *3 *4) (-12 (-5 *3 (-894)) (-5 *4 (-1057)) (-5 *2 (-1031)) (-5 *1 (-893)))) (-3510 (*1 *2 *3) (-12 (-5 *3 (-894)) (-5 *2 (-1031)) (-5 *1 (-893)))))
+(-10 -7 (-15 -3510 ((-1031) (-894))) (-15 -3510 ((-1031) (-894) (-1057))) (-15 -3510 ((-1031) (-379) (-379) (-379) (-379) (-767) (-767) (-640 (-316 (-379))) (-640 (-640 (-316 (-379)))) (-1151) (-225))) (-15 -3510 ((-1031) (-379) (-379) (-379) (-379) (-767) (-767) (-640 (-316 (-379))) (-640 (-640 (-316 (-379)))) (-1151))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-894))) (-15 -2929 ((-2 (|:| -2929 (-379)) (|:| -3352 (-1151)) (|:| |explanations| (-640 (-1151)))) (-894) (-1057))))
+((-1677 (((-112) $ $) NIL)) (-2057 (((-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))) $) 19)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 21) (($ (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) 18)) (-1718 (((-112) $ $) NIL)))
+(((-894) (-13 (-1093) (-10 -8 (-15 -1692 ($ (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))))) (-15 -2057 ((-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))) $))))) (T -894))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) (-5 *1 (-894)))) (-2057 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225)))) (-5 *1 (-894)))))
+(-13 (-1093) (-10 -8 (-15 -1692 ($ (-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))))) (-15 -2057 ((-2 (|:| |pde| (-640 (-316 (-225)))) (|:| |constraints| (-640 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-767)) (|:| |boundaryType| (-563)) (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225)))))) (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151)) (|:| |tol| (-225))) $))))
+((-4203 (($ $ |#2|) NIL) (($ $ (-640 |#2|)) 10) (($ $ |#2| (-767)) 12) (($ $ (-640 |#2|) (-640 (-767))) 15)) (-3213 (($ $ |#2|) 16) (($ $ (-640 |#2|)) 18) (($ $ |#2| (-767)) 19) (($ $ (-640 |#2|) (-640 (-767))) 21)))
+(((-895 |#1| |#2|) (-10 -8 (-15 -3213 (|#1| |#1| (-640 |#2|) (-640 (-767)))) (-15 -3213 (|#1| |#1| |#2| (-767))) (-15 -3213 (|#1| |#1| (-640 |#2|))) (-15 -3213 (|#1| |#1| |#2|)) (-15 -4203 (|#1| |#1| (-640 |#2|) (-640 (-767)))) (-15 -4203 (|#1| |#1| |#2| (-767))) (-15 -4203 (|#1| |#1| (-640 |#2|))) (-15 -4203 (|#1| |#1| |#2|))) (-896 |#2|) (-1093)) (T -895))
+NIL
+(-10 -8 (-15 -3213 (|#1| |#1| (-640 |#2|) (-640 (-767)))) (-15 -3213 (|#1| |#1| |#2| (-767))) (-15 -3213 (|#1| |#1| (-640 |#2|))) (-15 -3213 (|#1| |#1| |#2|)) (-15 -4203 (|#1| |#1| (-640 |#2|) (-640 (-767)))) (-15 -4203 (|#1| |#1| |#2| (-767))) (-15 -4203 (|#1| |#1| (-640 |#2|))) (-15 -4203 (|#1| |#1| |#2|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-4203 (($ $ |#1|) 42) (($ $ (-640 |#1|)) 41) (($ $ |#1| (-767)) 40) (($ $ (-640 |#1|) (-640 (-767))) 39)) (-1692 (((-858) $) 11) (($ (-563)) 29)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ |#1|) 38) (($ $ (-640 |#1|)) 37) (($ $ |#1| (-767)) 36) (($ $ (-640 |#1|) (-640 (-767))) 35)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-896 |#1|) (-140) (-1093)) (T -896))
-((-4202 (*1 *1 *1 *2) (-12 (-4 *1 (-896 *2)) (-4 *2 (-1093)))) (-4202 (*1 *1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *1 (-896 *3)) (-4 *3 (-1093)))) (-4202 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-896 *2)) (-4 *2 (-1093)))) (-4202 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *4)) (-5 *3 (-640 (-767))) (-4 *1 (-896 *4)) (-4 *4 (-1093)))) (-3209 (*1 *1 *1 *2) (-12 (-4 *1 (-896 *2)) (-4 *2 (-1093)))) (-3209 (*1 *1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *1 (-896 *3)) (-4 *3 (-1093)))) (-3209 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-896 *2)) (-4 *2 (-1093)))) (-3209 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *4)) (-5 *3 (-640 (-767))) (-4 *1 (-896 *4)) (-4 *4 (-1093)))))
-(-13 (-1045) (-10 -8 (-15 -4202 ($ $ |t#1|)) (-15 -4202 ($ $ (-640 |t#1|))) (-15 -4202 ($ $ |t#1| (-767))) (-15 -4202 ($ $ (-640 |t#1|) (-640 (-767)))) (-15 -3209 ($ $ |t#1|)) (-15 -3209 ($ $ (-640 |t#1|))) (-15 -3209 ($ $ |t#1| (-767))) (-15 -3209 ($ $ (-640 |t#1|) (-640 (-767))))))
+((-4203 (*1 *1 *1 *2) (-12 (-4 *1 (-896 *2)) (-4 *2 (-1093)))) (-4203 (*1 *1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *1 (-896 *3)) (-4 *3 (-1093)))) (-4203 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-896 *2)) (-4 *2 (-1093)))) (-4203 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *4)) (-5 *3 (-640 (-767))) (-4 *1 (-896 *4)) (-4 *4 (-1093)))) (-3213 (*1 *1 *1 *2) (-12 (-4 *1 (-896 *2)) (-4 *2 (-1093)))) (-3213 (*1 *1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *1 (-896 *3)) (-4 *3 (-1093)))) (-3213 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-896 *2)) (-4 *2 (-1093)))) (-3213 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *4)) (-5 *3 (-640 (-767))) (-4 *1 (-896 *4)) (-4 *4 (-1093)))))
+(-13 (-1045) (-10 -8 (-15 -4203 ($ $ |t#1|)) (-15 -4203 ($ $ (-640 |t#1|))) (-15 -4203 ($ $ |t#1| (-767))) (-15 -4203 ($ $ (-640 |t#1|) (-640 (-767)))) (-15 -3213 ($ $ |t#1|)) (-15 -3213 ($ $ (-640 |t#1|))) (-15 -3213 ($ $ |t#1| (-767))) (-15 -3213 ($ $ (-640 |t#1|) (-640 (-767))))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-563)) . T) ((-610 (-858)) . T) ((-643 $) . T) ((-722) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2619 ((|#1| $) 26)) (-2759 (((-112) $ (-767)) NIL)) (-2936 ((|#1| $ |#1|) NIL (|has| $ (-6 -4408)))) (-2641 (($ $ $) NIL (|has| $ (-6 -4408)))) (-4190 (($ $ $) NIL (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4408))) (($ $ "left" $) NIL (|has| $ (-6 -4408))) (($ $ "right" $) NIL (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) NIL (|has| $ (-6 -4408)))) (-4239 (($) NIL T CONST)) (-1701 (($ $) 25)) (-2817 (($ |#1|) 12) (($ $ $) 17)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) NIL)) (-1469 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-1686 (($ $) 23)) (-2512 (((-640 |#1|) $) NIL)) (-2194 (((-112) $) 20)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-4071 (((-563) $ $) NIL)) (-1434 (((-112) $) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) NIL)) (-1693 (((-1194 |#1|) $) 9) (((-858) $) 29 (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) NIL)) (-2962 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 21 (|has| |#1| (-1093)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-897 |#1|) (-13 (-119 |#1|) (-610 (-1194 |#1|)) (-10 -8 (-15 -2817 ($ |#1|)) (-15 -2817 ($ $ $)))) (-1093)) (T -897))
-((-2817 (*1 *1 *2) (-12 (-5 *1 (-897 *2)) (-4 *2 (-1093)))) (-2817 (*1 *1 *1 *1) (-12 (-5 *1 (-897 *2)) (-4 *2 (-1093)))))
-(-13 (-119 |#1|) (-610 (-1194 |#1|)) (-10 -8 (-15 -2817 ($ |#1|)) (-15 -2817 ($ $ $))))
-((-4172 ((|#2| (-1135 |#1| |#2|)) 41)))
-(((-898 |#1| |#2|) (-10 -7 (-15 -4172 (|#2| (-1135 |#1| |#2|)))) (-917) (-13 (-1045) (-10 -7 (-6 (-4409 "*"))))) (T -898))
-((-4172 (*1 *2 *3) (-12 (-5 *3 (-1135 *4 *2)) (-14 *4 (-917)) (-4 *2 (-13 (-1045) (-10 -7 (-6 (-4409 "*"))))) (-5 *1 (-898 *4 *2)))))
-(-10 -7 (-15 -4172 (|#2| (-1135 |#1| |#2|))))
-((-1677 (((-112) $ $) 7)) (-4239 (($) 18 T CONST)) (-3400 (((-3 $ "failed") $) 15)) (-4309 (((-1095 |#1|) $ |#1|) 32)) (-3827 (((-112) $) 17)) (-3084 (($ $ $) 30 (-4032 (|has| |#1| (-846)) (|has| |#1| (-368))))) (-1777 (($ $ $) 29 (-4032 (|has| |#1| (-846)) (|has| |#1| (-368))))) (-3573 (((-1151) $) 9)) (-2688 (($ $) 24)) (-1694 (((-1113) $) 10)) (-1540 ((|#1| $ |#1|) 34)) (-2309 ((|#1| $ |#1|) 33)) (-4225 (($ (-640 (-640 |#1|))) 35)) (-4296 (($ (-640 |#1|)) 36)) (-4339 (($ $ $) 21)) (-2146 (($ $ $) 20)) (-1693 (((-858) $) 11)) (-2254 (($) 19 T CONST)) (-1778 (((-112) $ $) 27 (-4032 (|has| |#1| (-846)) (|has| |#1| (-368))))) (-1756 (((-112) $ $) 26 (-4032 (|has| |#1| (-846)) (|has| |#1| (-368))))) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 28 (-4032 (|has| |#1| (-846)) (|has| |#1| (-368))))) (-1744 (((-112) $ $) 31)) (-1837 (($ $ $) 23)) (** (($ $ (-917)) 13) (($ $ (-767)) 16) (($ $ (-563)) 22)) (* (($ $ $) 14)))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2618 ((|#1| $) 26)) (-3001 (((-112) $ (-767)) NIL)) (-2336 ((|#1| $ |#1|) NIL (|has| $ (-6 -4409)))) (-2996 (($ $ $) NIL (|has| $ (-6 -4409)))) (-3007 (($ $ $) NIL (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4409))) (($ $ "left" $) NIL (|has| $ (-6 -4409))) (($ $ "right" $) NIL (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) NIL (|has| $ (-6 -4409)))) (-2569 (($) NIL T CONST)) (-1700 (($ $) 25)) (-2819 (($ |#1|) 12) (($ $ $) 17)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) NIL)) (-2358 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-1685 (($ $) 23)) (-2511 (((-640 |#1|) $) NIL)) (-1298 (((-112) $) 20)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2379 (((-563) $ $) NIL)) (-2889 (((-112) $) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) NIL)) (-1692 (((-1194 |#1|) $) 9) (((-858) $) 29 (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) NIL)) (-2367 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 21 (|has| |#1| (-1093)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-897 |#1|) (-13 (-119 |#1|) (-610 (-1194 |#1|)) (-10 -8 (-15 -2819 ($ |#1|)) (-15 -2819 ($ $ $)))) (-1093)) (T -897))
+((-2819 (*1 *1 *2) (-12 (-5 *1 (-897 *2)) (-4 *2 (-1093)))) (-2819 (*1 *1 *1 *1) (-12 (-5 *1 (-897 *2)) (-4 *2 (-1093)))))
+(-13 (-119 |#1|) (-610 (-1194 |#1|)) (-10 -8 (-15 -2819 ($ |#1|)) (-15 -2819 ($ $ $))))
+((-3029 ((|#2| (-1135 |#1| |#2|)) 41)))
+(((-898 |#1| |#2|) (-10 -7 (-15 -3029 (|#2| (-1135 |#1| |#2|)))) (-917) (-13 (-1045) (-10 -7 (-6 (-4410 "*"))))) (T -898))
+((-3029 (*1 *2 *3) (-12 (-5 *3 (-1135 *4 *2)) (-14 *4 (-917)) (-4 *2 (-13 (-1045) (-10 -7 (-6 (-4410 "*"))))) (-5 *1 (-898 *4 *2)))))
+(-10 -7 (-15 -3029 (|#2| (-1135 |#1| |#2|))))
+((-1677 (((-112) $ $) 7)) (-2569 (($) 18 T CONST)) (-3951 (((-3 $ "failed") $) 15)) (-3115 (((-1095 |#1|) $ |#1|) 32)) (-3401 (((-112) $) 17)) (-3088 (($ $ $) 30 (-4034 (|has| |#1| (-846)) (|has| |#1| (-368))))) (-1776 (($ $ $) 29 (-4034 (|has| |#1| (-846)) (|has| |#1| (-368))))) (-3854 (((-1151) $) 9)) (-2687 (($ $) 24)) (-1693 (((-1113) $) 10)) (-1542 ((|#1| $ |#1|) 34)) (-2308 ((|#1| $ |#1|) 33)) (-3039 (($ (-640 (-640 |#1|))) 35)) (-3051 (($ (-640 |#1|)) 36)) (-2150 (($ $ $) 21)) (-1745 (($ $ $) 20)) (-1692 (((-858) $) 11)) (-2253 (($) 19 T CONST)) (-1779 (((-112) $ $) 27 (-4034 (|has| |#1| (-846)) (|has| |#1| (-368))))) (-1754 (((-112) $ $) 26 (-4034 (|has| |#1| (-846)) (|has| |#1| (-368))))) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 28 (-4034 (|has| |#1| (-846)) (|has| |#1| (-368))))) (-1743 (((-112) $ $) 31)) (-1836 (($ $ $) 23)) (** (($ $ (-917)) 13) (($ $ (-767)) 16) (($ $ (-563)) 22)) (* (($ $ $) 14)))
(((-899 |#1|) (-140) (-1093)) (T -899))
-((-4296 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-4 *1 (-899 *3)))) (-4225 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-4 *1 (-899 *3)))) (-1540 (*1 *2 *1 *2) (-12 (-4 *1 (-899 *2)) (-4 *2 (-1093)))) (-2309 (*1 *2 *1 *2) (-12 (-4 *1 (-899 *2)) (-4 *2 (-1093)))) (-4309 (*1 *2 *1 *3) (-12 (-4 *1 (-899 *3)) (-4 *3 (-1093)) (-5 *2 (-1095 *3)))) (-1744 (*1 *2 *1 *1) (-12 (-4 *1 (-899 *3)) (-4 *3 (-1093)) (-5 *2 (-112)))))
-(-13 (-473) (-10 -8 (-15 -4296 ($ (-640 |t#1|))) (-15 -4225 ($ (-640 (-640 |t#1|)))) (-15 -1540 (|t#1| $ |t#1|)) (-15 -2309 (|t#1| $ |t#1|)) (-15 -4309 ((-1095 |t#1|) $ |t#1|)) (-15 -1744 ((-112) $ $)) (IF (|has| |t#1| (-846)) (-6 (-846)) |%noBranch|) (IF (|has| |t#1| (-368)) (-6 (-846)) |%noBranch|)))
-(((-102) . T) ((-610 (-858)) . T) ((-473) . T) ((-722) . T) ((-846) -4032 (|has| |#1| (-846)) (|has| |#1| (-368))) ((-1105) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3146 (((-640 (-640 (-767))) $) 107)) (-4039 (((-640 (-767)) (-901 |#1|) $) 129)) (-3077 (((-640 (-767)) (-901 |#1|) $) 130)) (-4026 (((-640 (-901 |#1|)) $) 97)) (-1691 (((-901 |#1|) $ (-563)) 102) (((-901 |#1|) $) 103)) (-3647 (($ (-640 (-901 |#1|))) 109)) (-3254 (((-767) $) 104)) (-1526 (((-1095 (-1095 |#1|)) $) 127)) (-4309 (((-1095 |#1|) $ |#1|) 120) (((-1095 (-1095 |#1|)) $ (-1095 |#1|)) 138) (((-1095 (-640 |#1|)) $ (-640 |#1|)) 141)) (-4027 (((-1095 |#1|) $) 100)) (-1729 (((-112) (-901 |#1|) $) 91)) (-3573 (((-1151) $) NIL)) (-2663 (((-1262) $) 94) (((-1262) $ (-563) (-563)) 142)) (-1694 (((-1113) $) NIL)) (-2274 (((-640 (-901 |#1|)) $) 95)) (-2309 (((-901 |#1|) $ (-767)) 98)) (-4167 (((-767) $) 105)) (-1693 (((-858) $) 118) (((-640 (-901 |#1|)) $) 23) (($ (-640 (-901 |#1|))) 108)) (-4211 (((-640 |#1|) $) 106)) (-1718 (((-112) $ $) 135)) (-1768 (((-112) $ $) 133)) (-1744 (((-112) $ $) 132)))
-(((-900 |#1|) (-13 (-1093) (-10 -8 (-15 -1693 ((-640 (-901 |#1|)) $)) (-15 -2274 ((-640 (-901 |#1|)) $)) (-15 -2309 ((-901 |#1|) $ (-767))) (-15 -1691 ((-901 |#1|) $ (-563))) (-15 -1691 ((-901 |#1|) $)) (-15 -3254 ((-767) $)) (-15 -4167 ((-767) $)) (-15 -4211 ((-640 |#1|) $)) (-15 -4026 ((-640 (-901 |#1|)) $)) (-15 -3146 ((-640 (-640 (-767))) $)) (-15 -1693 ($ (-640 (-901 |#1|)))) (-15 -3647 ($ (-640 (-901 |#1|)))) (-15 -4309 ((-1095 |#1|) $ |#1|)) (-15 -1526 ((-1095 (-1095 |#1|)) $)) (-15 -4309 ((-1095 (-1095 |#1|)) $ (-1095 |#1|))) (-15 -4309 ((-1095 (-640 |#1|)) $ (-640 |#1|))) (-15 -1729 ((-112) (-901 |#1|) $)) (-15 -4039 ((-640 (-767)) (-901 |#1|) $)) (-15 -3077 ((-640 (-767)) (-901 |#1|) $)) (-15 -4027 ((-1095 |#1|) $)) (-15 -1744 ((-112) $ $)) (-15 -1768 ((-112) $ $)) (-15 -2663 ((-1262) $)) (-15 -2663 ((-1262) $ (-563) (-563))))) (-1093)) (T -900))
-((-1693 (*1 *2 *1) (-12 (-5 *2 (-640 (-901 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-2274 (*1 *2 *1) (-12 (-5 *2 (-640 (-901 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-2309 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *2 (-901 *4)) (-5 *1 (-900 *4)) (-4 *4 (-1093)))) (-1691 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-901 *4)) (-5 *1 (-900 *4)) (-4 *4 (-1093)))) (-1691 (*1 *2 *1) (-12 (-5 *2 (-901 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-3254 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-4167 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-4211 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-4026 (*1 *2 *1) (-12 (-5 *2 (-640 (-901 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-3146 (*1 *2 *1) (-12 (-5 *2 (-640 (-640 (-767)))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-640 (-901 *3))) (-4 *3 (-1093)) (-5 *1 (-900 *3)))) (-3647 (*1 *1 *2) (-12 (-5 *2 (-640 (-901 *3))) (-4 *3 (-1093)) (-5 *1 (-900 *3)))) (-4309 (*1 *2 *1 *3) (-12 (-5 *2 (-1095 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-1526 (*1 *2 *1) (-12 (-5 *2 (-1095 (-1095 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-4309 (*1 *2 *1 *3) (-12 (-4 *4 (-1093)) (-5 *2 (-1095 (-1095 *4))) (-5 *1 (-900 *4)) (-5 *3 (-1095 *4)))) (-4309 (*1 *2 *1 *3) (-12 (-4 *4 (-1093)) (-5 *2 (-1095 (-640 *4))) (-5 *1 (-900 *4)) (-5 *3 (-640 *4)))) (-1729 (*1 *2 *3 *1) (-12 (-5 *3 (-901 *4)) (-4 *4 (-1093)) (-5 *2 (-112)) (-5 *1 (-900 *4)))) (-4039 (*1 *2 *3 *1) (-12 (-5 *3 (-901 *4)) (-4 *4 (-1093)) (-5 *2 (-640 (-767))) (-5 *1 (-900 *4)))) (-3077 (*1 *2 *3 *1) (-12 (-5 *3 (-901 *4)) (-4 *4 (-1093)) (-5 *2 (-640 (-767))) (-5 *1 (-900 *4)))) (-4027 (*1 *2 *1) (-12 (-5 *2 (-1095 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-1744 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-1768 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-2663 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-2663 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-900 *4)) (-4 *4 (-1093)))))
-(-13 (-1093) (-10 -8 (-15 -1693 ((-640 (-901 |#1|)) $)) (-15 -2274 ((-640 (-901 |#1|)) $)) (-15 -2309 ((-901 |#1|) $ (-767))) (-15 -1691 ((-901 |#1|) $ (-563))) (-15 -1691 ((-901 |#1|) $)) (-15 -3254 ((-767) $)) (-15 -4167 ((-767) $)) (-15 -4211 ((-640 |#1|) $)) (-15 -4026 ((-640 (-901 |#1|)) $)) (-15 -3146 ((-640 (-640 (-767))) $)) (-15 -1693 ($ (-640 (-901 |#1|)))) (-15 -3647 ($ (-640 (-901 |#1|)))) (-15 -4309 ((-1095 |#1|) $ |#1|)) (-15 -1526 ((-1095 (-1095 |#1|)) $)) (-15 -4309 ((-1095 (-1095 |#1|)) $ (-1095 |#1|))) (-15 -4309 ((-1095 (-640 |#1|)) $ (-640 |#1|))) (-15 -1729 ((-112) (-901 |#1|) $)) (-15 -4039 ((-640 (-767)) (-901 |#1|) $)) (-15 -3077 ((-640 (-767)) (-901 |#1|) $)) (-15 -4027 ((-1095 |#1|) $)) (-15 -1744 ((-112) $ $)) (-15 -1768 ((-112) $ $)) (-15 -2663 ((-1262) $)) (-15 -2663 ((-1262) $ (-563) (-563)))))
-((-1677 (((-112) $ $) NIL)) (-1642 (((-640 $) (-640 $)) 77)) (-1857 (((-563) $) 60)) (-4239 (($) NIL T CONST)) (-3400 (((-3 $ "failed") $) NIL)) (-3254 (((-767) $) 58)) (-4309 (((-1095 |#1|) $ |#1|) 49)) (-3827 (((-112) $) NIL)) (-3131 (((-112) $) 63)) (-1365 (((-767) $) 61)) (-4027 (((-1095 |#1|) $) 42)) (-3084 (($ $ $) NIL (-4032 (|has| |#1| (-368)) (|has| |#1| (-846))))) (-1777 (($ $ $) NIL (-4032 (|has| |#1| (-368)) (|has| |#1| (-846))))) (-1835 (((-2 (|:| |preimage| (-640 |#1|)) (|:| |image| (-640 |#1|))) $) 37)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 93)) (-1694 (((-1113) $) NIL)) (-3774 (((-1095 |#1|) $) 100 (|has| |#1| (-368)))) (-2359 (((-112) $) 59)) (-1540 ((|#1| $ |#1|) 47)) (-2309 ((|#1| $ |#1|) 94)) (-4167 (((-767) $) 44)) (-4225 (($ (-640 (-640 |#1|))) 85)) (-2828 (((-967) $) 53)) (-4296 (($ (-640 |#1|)) 22)) (-4339 (($ $ $) NIL)) (-2146 (($ $ $) NIL)) (-2451 (($ (-640 (-640 |#1|))) 39)) (-1977 (($ (-640 (-640 |#1|))) 88)) (-2339 (($ (-640 |#1|)) 96)) (-1693 (((-858) $) 84) (($ (-640 (-640 |#1|))) 66) (($ (-640 |#1|)) 67)) (-2254 (($) 17 T CONST)) (-1778 (((-112) $ $) NIL (-4032 (|has| |#1| (-368)) (|has| |#1| (-846))))) (-1756 (((-112) $ $) NIL (-4032 (|has| |#1| (-368)) (|has| |#1| (-846))))) (-1718 (((-112) $ $) 45)) (-1768 (((-112) $ $) NIL (-4032 (|has| |#1| (-368)) (|has| |#1| (-846))))) (-1744 (((-112) $ $) 65)) (-1837 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ $ $) 23)))
-(((-901 |#1|) (-13 (-899 |#1|) (-10 -8 (-15 -1835 ((-2 (|:| |preimage| (-640 |#1|)) (|:| |image| (-640 |#1|))) $)) (-15 -2451 ($ (-640 (-640 |#1|)))) (-15 -1693 ($ (-640 (-640 |#1|)))) (-15 -1693 ($ (-640 |#1|))) (-15 -1977 ($ (-640 (-640 |#1|)))) (-15 -4167 ((-767) $)) (-15 -4027 ((-1095 |#1|) $)) (-15 -2828 ((-967) $)) (-15 -3254 ((-767) $)) (-15 -1365 ((-767) $)) (-15 -1857 ((-563) $)) (-15 -2359 ((-112) $)) (-15 -3131 ((-112) $)) (-15 -1642 ((-640 $) (-640 $))) (IF (|has| |#1| (-368)) (-15 -3774 ((-1095 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-545)) (-15 -2339 ($ (-640 |#1|))) (IF (|has| |#1| (-368)) (-15 -2339 ($ (-640 |#1|))) |%noBranch|)))) (-1093)) (T -901))
-((-1835 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-640 *3)) (|:| |image| (-640 *3)))) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-2451 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-5 *1 (-901 *3)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-5 *1 (-901 *3)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-901 *3)))) (-1977 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-5 *1 (-901 *3)))) (-4167 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-4027 (*1 *2 *1) (-12 (-5 *2 (-1095 *3)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-2828 (*1 *2 *1) (-12 (-5 *2 (-967)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-3254 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-1365 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-1857 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-2359 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-3131 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-1642 (*1 *2 *2) (-12 (-5 *2 (-640 (-901 *3))) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-3774 (*1 *2 *1) (-12 (-5 *2 (-1095 *3)) (-5 *1 (-901 *3)) (-4 *3 (-368)) (-4 *3 (-1093)))) (-2339 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-901 *3)))))
-(-13 (-899 |#1|) (-10 -8 (-15 -1835 ((-2 (|:| |preimage| (-640 |#1|)) (|:| |image| (-640 |#1|))) $)) (-15 -2451 ($ (-640 (-640 |#1|)))) (-15 -1693 ($ (-640 (-640 |#1|)))) (-15 -1693 ($ (-640 |#1|))) (-15 -1977 ($ (-640 (-640 |#1|)))) (-15 -4167 ((-767) $)) (-15 -4027 ((-1095 |#1|) $)) (-15 -2828 ((-967) $)) (-15 -3254 ((-767) $)) (-15 -1365 ((-767) $)) (-15 -1857 ((-563) $)) (-15 -2359 ((-112) $)) (-15 -3131 ((-112) $)) (-15 -1642 ((-640 $) (-640 $))) (IF (|has| |#1| (-368)) (-15 -3774 ((-1095 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-545)) (-15 -2339 ($ (-640 |#1|))) (IF (|has| |#1| (-368)) (-15 -2339 ($ (-640 |#1|))) |%noBranch|))))
-((-2888 (((-3 (-640 (-1165 |#4|)) "failed") (-640 (-1165 |#4|)) (-1165 |#4|)) 127)) (-2632 ((|#1|) 76)) (-1388 (((-418 (-1165 |#4|)) (-1165 |#4|)) 136)) (-2005 (((-418 (-1165 |#4|)) (-640 |#3|) (-1165 |#4|)) 68)) (-1379 (((-418 (-1165 |#4|)) (-1165 |#4|)) 146)) (-4160 (((-3 (-640 (-1165 |#4|)) "failed") (-640 (-1165 |#4|)) (-1165 |#4|) |#3|) 91)))
-(((-902 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2888 ((-3 (-640 (-1165 |#4|)) "failed") (-640 (-1165 |#4|)) (-1165 |#4|))) (-15 -1379 ((-418 (-1165 |#4|)) (-1165 |#4|))) (-15 -1388 ((-418 (-1165 |#4|)) (-1165 |#4|))) (-15 -2632 (|#1|)) (-15 -4160 ((-3 (-640 (-1165 |#4|)) "failed") (-640 (-1165 |#4|)) (-1165 |#4|) |#3|)) (-15 -2005 ((-418 (-1165 |#4|)) (-640 |#3|) (-1165 |#4|)))) (-905) (-789) (-846) (-945 |#1| |#2| |#3|)) (T -902))
-((-2005 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *7)) (-4 *7 (-846)) (-4 *5 (-905)) (-4 *6 (-789)) (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-418 (-1165 *8))) (-5 *1 (-902 *5 *6 *7 *8)) (-5 *4 (-1165 *8)))) (-4160 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *2 (-640 (-1165 *7))) (-5 *3 (-1165 *7)) (-4 *7 (-945 *5 *6 *4)) (-4 *5 (-905)) (-4 *6 (-789)) (-4 *4 (-846)) (-5 *1 (-902 *5 *6 *4 *7)))) (-2632 (*1 *2) (-12 (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-905)) (-5 *1 (-902 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))) (-1388 (*1 *2 *3) (-12 (-4 *4 (-905)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-418 (-1165 *7))) (-5 *1 (-902 *4 *5 *6 *7)) (-5 *3 (-1165 *7)))) (-1379 (*1 *2 *3) (-12 (-4 *4 (-905)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-418 (-1165 *7))) (-5 *1 (-902 *4 *5 *6 *7)) (-5 *3 (-1165 *7)))) (-2888 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 (-1165 *7))) (-5 *3 (-1165 *7)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-905)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-902 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2888 ((-3 (-640 (-1165 |#4|)) "failed") (-640 (-1165 |#4|)) (-1165 |#4|))) (-15 -1379 ((-418 (-1165 |#4|)) (-1165 |#4|))) (-15 -1388 ((-418 (-1165 |#4|)) (-1165 |#4|))) (-15 -2632 (|#1|)) (-15 -4160 ((-3 (-640 (-1165 |#4|)) "failed") (-640 (-1165 |#4|)) (-1165 |#4|) |#3|)) (-15 -2005 ((-418 (-1165 |#4|)) (-640 |#3|) (-1165 |#4|))))
-((-2888 (((-3 (-640 (-1165 |#2|)) "failed") (-640 (-1165 |#2|)) (-1165 |#2|)) 36)) (-2632 ((|#1|) 53)) (-1388 (((-418 (-1165 |#2|)) (-1165 |#2|)) 101)) (-2005 (((-418 (-1165 |#2|)) (-1165 |#2|)) 89)) (-1379 (((-418 (-1165 |#2|)) (-1165 |#2|)) 112)))
-(((-903 |#1| |#2|) (-10 -7 (-15 -2888 ((-3 (-640 (-1165 |#2|)) "failed") (-640 (-1165 |#2|)) (-1165 |#2|))) (-15 -1379 ((-418 (-1165 |#2|)) (-1165 |#2|))) (-15 -1388 ((-418 (-1165 |#2|)) (-1165 |#2|))) (-15 -2632 (|#1|)) (-15 -2005 ((-418 (-1165 |#2|)) (-1165 |#2|)))) (-905) (-1233 |#1|)) (T -903))
-((-2005 (*1 *2 *3) (-12 (-4 *4 (-905)) (-4 *5 (-1233 *4)) (-5 *2 (-418 (-1165 *5))) (-5 *1 (-903 *4 *5)) (-5 *3 (-1165 *5)))) (-2632 (*1 *2) (-12 (-4 *2 (-905)) (-5 *1 (-903 *2 *3)) (-4 *3 (-1233 *2)))) (-1388 (*1 *2 *3) (-12 (-4 *4 (-905)) (-4 *5 (-1233 *4)) (-5 *2 (-418 (-1165 *5))) (-5 *1 (-903 *4 *5)) (-5 *3 (-1165 *5)))) (-1379 (*1 *2 *3) (-12 (-4 *4 (-905)) (-4 *5 (-1233 *4)) (-5 *2 (-418 (-1165 *5))) (-5 *1 (-903 *4 *5)) (-5 *3 (-1165 *5)))) (-2888 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 (-1165 *5))) (-5 *3 (-1165 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-905)) (-5 *1 (-903 *4 *5)))))
-(-10 -7 (-15 -2888 ((-3 (-640 (-1165 |#2|)) "failed") (-640 (-1165 |#2|)) (-1165 |#2|))) (-15 -1379 ((-418 (-1165 |#2|)) (-1165 |#2|))) (-15 -1388 ((-418 (-1165 |#2|)) (-1165 |#2|))) (-15 -2632 (|#1|)) (-15 -2005 ((-418 (-1165 |#2|)) (-1165 |#2|))))
-((-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 41)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 18)) (-2779 (((-3 $ "failed") $) 35)))
-(((-904 |#1|) (-10 -8 (-15 -2779 ((-3 |#1| "failed") |#1|)) (-15 -2748 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -3385 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|)))) (-905)) (T -904))
-NIL
-(-10 -8 (-15 -2779 ((-3 |#1| "failed") |#1|)) (-15 -2748 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -3385 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-1495 (((-3 $ "failed") $ $) 19)) (-2424 (((-418 (-1165 $)) (-1165 $)) 61)) (-4335 (($ $) 52)) (-3205 (((-418 $) $) 53)) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 58)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-2468 (((-112) $) 54)) (-3827 (((-112) $) 31)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-1876 (((-418 (-1165 $)) (-1165 $)) 59)) (-3116 (((-418 (-1165 $)) (-1165 $)) 60)) (-2174 (((-418 $) $) 51)) (-3008 (((-3 $ "failed") $ $) 43)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) 57 (|has| $ (-145)))) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-2779 (((-3 $ "failed") $) 56 (|has| $ (-145)))) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 40)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-3051 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-4 *1 (-899 *3)))) (-3039 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-4 *1 (-899 *3)))) (-1542 (*1 *2 *1 *2) (-12 (-4 *1 (-899 *2)) (-4 *2 (-1093)))) (-2308 (*1 *2 *1 *2) (-12 (-4 *1 (-899 *2)) (-4 *2 (-1093)))) (-3115 (*1 *2 *1 *3) (-12 (-4 *1 (-899 *3)) (-4 *3 (-1093)) (-5 *2 (-1095 *3)))) (-1743 (*1 *2 *1 *1) (-12 (-4 *1 (-899 *3)) (-4 *3 (-1093)) (-5 *2 (-112)))))
+(-13 (-473) (-10 -8 (-15 -3051 ($ (-640 |t#1|))) (-15 -3039 ($ (-640 (-640 |t#1|)))) (-15 -1542 (|t#1| $ |t#1|)) (-15 -2308 (|t#1| $ |t#1|)) (-15 -3115 ((-1095 |t#1|) $ |t#1|)) (-15 -1743 ((-112) $ $)) (IF (|has| |t#1| (-846)) (-6 (-846)) |%noBranch|) (IF (|has| |t#1| (-368)) (-6 (-846)) |%noBranch|)))
+(((-102) . T) ((-610 (-858)) . T) ((-473) . T) ((-722) . T) ((-846) -4034 (|has| |#1| (-846)) (|has| |#1| (-368))) ((-1105) . T) ((-1093) . T))
+((-1677 (((-112) $ $) NIL)) (-3135 (((-640 (-640 (-767))) $) 107)) (-3091 (((-640 (-767)) (-901 |#1|) $) 129)) (-3079 (((-640 (-767)) (-901 |#1|) $) 130)) (-3145 (((-640 (-901 |#1|)) $) 97)) (-1690 (((-901 |#1|) $ (-563)) 102) (((-901 |#1|) $) 103)) (-3125 (($ (-640 (-901 |#1|))) 109)) (-1775 (((-767) $) 104)) (-3103 (((-1095 (-1095 |#1|)) $) 127)) (-3115 (((-1095 |#1|) $ |#1|) 120) (((-1095 (-1095 |#1|)) $ (-1095 |#1|)) 138) (((-1095 (-640 |#1|)) $ (-640 |#1|)) 141)) (-3070 (((-1095 |#1|) $) 100)) (-2667 (((-112) (-901 |#1|) $) 91)) (-3854 (((-1151) $) NIL)) (-3061 (((-1262) $) 94) (((-1262) $ (-563) (-563)) 142)) (-1693 (((-1113) $) NIL)) (-3154 (((-640 (-901 |#1|)) $) 95)) (-2308 (((-901 |#1|) $ (-767)) 98)) (-3871 (((-767) $) 105)) (-1692 (((-858) $) 118) (((-640 (-901 |#1|)) $) 23) (($ (-640 (-901 |#1|))) 108)) (-4212 (((-640 |#1|) $) 106)) (-1718 (((-112) $ $) 135)) (-1766 (((-112) $ $) 133)) (-1743 (((-112) $ $) 132)))
+(((-900 |#1|) (-13 (-1093) (-10 -8 (-15 -1692 ((-640 (-901 |#1|)) $)) (-15 -3154 ((-640 (-901 |#1|)) $)) (-15 -2308 ((-901 |#1|) $ (-767))) (-15 -1690 ((-901 |#1|) $ (-563))) (-15 -1690 ((-901 |#1|) $)) (-15 -1775 ((-767) $)) (-15 -3871 ((-767) $)) (-15 -4212 ((-640 |#1|) $)) (-15 -3145 ((-640 (-901 |#1|)) $)) (-15 -3135 ((-640 (-640 (-767))) $)) (-15 -1692 ($ (-640 (-901 |#1|)))) (-15 -3125 ($ (-640 (-901 |#1|)))) (-15 -3115 ((-1095 |#1|) $ |#1|)) (-15 -3103 ((-1095 (-1095 |#1|)) $)) (-15 -3115 ((-1095 (-1095 |#1|)) $ (-1095 |#1|))) (-15 -3115 ((-1095 (-640 |#1|)) $ (-640 |#1|))) (-15 -2667 ((-112) (-901 |#1|) $)) (-15 -3091 ((-640 (-767)) (-901 |#1|) $)) (-15 -3079 ((-640 (-767)) (-901 |#1|) $)) (-15 -3070 ((-1095 |#1|) $)) (-15 -1743 ((-112) $ $)) (-15 -1766 ((-112) $ $)) (-15 -3061 ((-1262) $)) (-15 -3061 ((-1262) $ (-563) (-563))))) (-1093)) (T -900))
+((-1692 (*1 *2 *1) (-12 (-5 *2 (-640 (-901 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-3154 (*1 *2 *1) (-12 (-5 *2 (-640 (-901 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-2308 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *2 (-901 *4)) (-5 *1 (-900 *4)) (-4 *4 (-1093)))) (-1690 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-901 *4)) (-5 *1 (-900 *4)) (-4 *4 (-1093)))) (-1690 (*1 *2 *1) (-12 (-5 *2 (-901 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-1775 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-3871 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-4212 (*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-3145 (*1 *2 *1) (-12 (-5 *2 (-640 (-901 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-3135 (*1 *2 *1) (-12 (-5 *2 (-640 (-640 (-767)))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-640 (-901 *3))) (-4 *3 (-1093)) (-5 *1 (-900 *3)))) (-3125 (*1 *1 *2) (-12 (-5 *2 (-640 (-901 *3))) (-4 *3 (-1093)) (-5 *1 (-900 *3)))) (-3115 (*1 *2 *1 *3) (-12 (-5 *2 (-1095 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-3103 (*1 *2 *1) (-12 (-5 *2 (-1095 (-1095 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-3115 (*1 *2 *1 *3) (-12 (-4 *4 (-1093)) (-5 *2 (-1095 (-1095 *4))) (-5 *1 (-900 *4)) (-5 *3 (-1095 *4)))) (-3115 (*1 *2 *1 *3) (-12 (-4 *4 (-1093)) (-5 *2 (-1095 (-640 *4))) (-5 *1 (-900 *4)) (-5 *3 (-640 *4)))) (-2667 (*1 *2 *3 *1) (-12 (-5 *3 (-901 *4)) (-4 *4 (-1093)) (-5 *2 (-112)) (-5 *1 (-900 *4)))) (-3091 (*1 *2 *3 *1) (-12 (-5 *3 (-901 *4)) (-4 *4 (-1093)) (-5 *2 (-640 (-767))) (-5 *1 (-900 *4)))) (-3079 (*1 *2 *3 *1) (-12 (-5 *3 (-901 *4)) (-4 *4 (-1093)) (-5 *2 (-640 (-767))) (-5 *1 (-900 *4)))) (-3070 (*1 *2 *1) (-12 (-5 *2 (-1095 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-1743 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-1766 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-3061 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))) (-3061 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-900 *4)) (-4 *4 (-1093)))))
+(-13 (-1093) (-10 -8 (-15 -1692 ((-640 (-901 |#1|)) $)) (-15 -3154 ((-640 (-901 |#1|)) $)) (-15 -2308 ((-901 |#1|) $ (-767))) (-15 -1690 ((-901 |#1|) $ (-563))) (-15 -1690 ((-901 |#1|) $)) (-15 -1775 ((-767) $)) (-15 -3871 ((-767) $)) (-15 -4212 ((-640 |#1|) $)) (-15 -3145 ((-640 (-901 |#1|)) $)) (-15 -3135 ((-640 (-640 (-767))) $)) (-15 -1692 ($ (-640 (-901 |#1|)))) (-15 -3125 ($ (-640 (-901 |#1|)))) (-15 -3115 ((-1095 |#1|) $ |#1|)) (-15 -3103 ((-1095 (-1095 |#1|)) $)) (-15 -3115 ((-1095 (-1095 |#1|)) $ (-1095 |#1|))) (-15 -3115 ((-1095 (-640 |#1|)) $ (-640 |#1|))) (-15 -2667 ((-112) (-901 |#1|) $)) (-15 -3091 ((-640 (-767)) (-901 |#1|) $)) (-15 -3079 ((-640 (-767)) (-901 |#1|) $)) (-15 -3070 ((-1095 |#1|) $)) (-15 -1743 ((-112) $ $)) (-15 -1766 ((-112) $ $)) (-15 -3061 ((-1262) $)) (-15 -3061 ((-1262) $ (-563) (-563)))))
+((-1677 (((-112) $ $) NIL)) (-1640 (((-640 $) (-640 $)) 77)) (-2807 (((-563) $) 60)) (-2569 (($) NIL T CONST)) (-3951 (((-3 $ "failed") $) NIL)) (-1775 (((-767) $) 58)) (-3115 (((-1095 |#1|) $ |#1|) 49)) (-3401 (((-112) $) NIL)) (-2959 (((-112) $) 63)) (-2978 (((-767) $) 61)) (-3070 (((-1095 |#1|) $) 42)) (-3088 (($ $ $) NIL (-4034 (|has| |#1| (-368)) (|has| |#1| (-846))))) (-1776 (($ $ $) NIL (-4034 (|has| |#1| (-368)) (|has| |#1| (-846))))) (-3020 (((-2 (|:| |preimage| (-640 |#1|)) (|:| |image| (-640 |#1|))) $) 37)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 93)) (-1693 (((-1113) $) NIL)) (-2948 (((-1095 |#1|) $) 100 (|has| |#1| (-368)))) (-2969 (((-112) $) 59)) (-1542 ((|#1| $ |#1|) 47)) (-2308 ((|#1| $ |#1|) 94)) (-3871 (((-767) $) 44)) (-3039 (($ (-640 (-640 |#1|))) 85)) (-2987 (((-967) $) 53)) (-3051 (($ (-640 |#1|)) 22)) (-2150 (($ $ $) NIL)) (-1745 (($ $ $) NIL)) (-3009 (($ (-640 (-640 |#1|))) 39)) (-2998 (($ (-640 (-640 |#1|))) 88)) (-2938 (($ (-640 |#1|)) 96)) (-1692 (((-858) $) 84) (($ (-640 (-640 |#1|))) 66) (($ (-640 |#1|)) 67)) (-2253 (($) 17 T CONST)) (-1779 (((-112) $ $) NIL (-4034 (|has| |#1| (-368)) (|has| |#1| (-846))))) (-1754 (((-112) $ $) NIL (-4034 (|has| |#1| (-368)) (|has| |#1| (-846))))) (-1718 (((-112) $ $) 45)) (-1766 (((-112) $ $) NIL (-4034 (|has| |#1| (-368)) (|has| |#1| (-846))))) (-1743 (((-112) $ $) 65)) (-1836 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ $ $) 23)))
+(((-901 |#1|) (-13 (-899 |#1|) (-10 -8 (-15 -3020 ((-2 (|:| |preimage| (-640 |#1|)) (|:| |image| (-640 |#1|))) $)) (-15 -3009 ($ (-640 (-640 |#1|)))) (-15 -1692 ($ (-640 (-640 |#1|)))) (-15 -1692 ($ (-640 |#1|))) (-15 -2998 ($ (-640 (-640 |#1|)))) (-15 -3871 ((-767) $)) (-15 -3070 ((-1095 |#1|) $)) (-15 -2987 ((-967) $)) (-15 -1775 ((-767) $)) (-15 -2978 ((-767) $)) (-15 -2807 ((-563) $)) (-15 -2969 ((-112) $)) (-15 -2959 ((-112) $)) (-15 -1640 ((-640 $) (-640 $))) (IF (|has| |#1| (-368)) (-15 -2948 ((-1095 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-545)) (-15 -2938 ($ (-640 |#1|))) (IF (|has| |#1| (-368)) (-15 -2938 ($ (-640 |#1|))) |%noBranch|)))) (-1093)) (T -901))
+((-3020 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-640 *3)) (|:| |image| (-640 *3)))) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-3009 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-5 *1 (-901 *3)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-5 *1 (-901 *3)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-901 *3)))) (-2998 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-5 *1 (-901 *3)))) (-3871 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-3070 (*1 *2 *1) (-12 (-5 *2 (-1095 *3)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-2987 (*1 *2 *1) (-12 (-5 *2 (-967)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-1775 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-2978 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-2807 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-2969 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-2959 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-1640 (*1 *2 *2) (-12 (-5 *2 (-640 (-901 *3))) (-5 *1 (-901 *3)) (-4 *3 (-1093)))) (-2948 (*1 *2 *1) (-12 (-5 *2 (-1095 *3)) (-5 *1 (-901 *3)) (-4 *3 (-368)) (-4 *3 (-1093)))) (-2938 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-901 *3)))))
+(-13 (-899 |#1|) (-10 -8 (-15 -3020 ((-2 (|:| |preimage| (-640 |#1|)) (|:| |image| (-640 |#1|))) $)) (-15 -3009 ($ (-640 (-640 |#1|)))) (-15 -1692 ($ (-640 (-640 |#1|)))) (-15 -1692 ($ (-640 |#1|))) (-15 -2998 ($ (-640 (-640 |#1|)))) (-15 -3871 ((-767) $)) (-15 -3070 ((-1095 |#1|) $)) (-15 -2987 ((-967) $)) (-15 -1775 ((-767) $)) (-15 -2978 ((-767) $)) (-15 -2807 ((-563) $)) (-15 -2969 ((-112) $)) (-15 -2959 ((-112) $)) (-15 -1640 ((-640 $) (-640 $))) (IF (|has| |#1| (-368)) (-15 -2948 ((-1095 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-545)) (-15 -2938 ($ (-640 |#1|))) (IF (|has| |#1| (-368)) (-15 -2938 ($ (-640 |#1|))) |%noBranch|))))
+((-1999 (((-3 (-640 (-1165 |#4|)) "failed") (-640 (-1165 |#4|)) (-1165 |#4|)) 127)) (-2027 ((|#1|) 76)) (-2017 (((-418 (-1165 |#4|)) (-1165 |#4|)) 136)) (-2038 (((-418 (-1165 |#4|)) (-640 |#3|) (-1165 |#4|)) 68)) (-2009 (((-418 (-1165 |#4|)) (-1165 |#4|)) 146)) (-1990 (((-3 (-640 (-1165 |#4|)) "failed") (-640 (-1165 |#4|)) (-1165 |#4|) |#3|) 91)))
+(((-902 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1999 ((-3 (-640 (-1165 |#4|)) "failed") (-640 (-1165 |#4|)) (-1165 |#4|))) (-15 -2009 ((-418 (-1165 |#4|)) (-1165 |#4|))) (-15 -2017 ((-418 (-1165 |#4|)) (-1165 |#4|))) (-15 -2027 (|#1|)) (-15 -1990 ((-3 (-640 (-1165 |#4|)) "failed") (-640 (-1165 |#4|)) (-1165 |#4|) |#3|)) (-15 -2038 ((-418 (-1165 |#4|)) (-640 |#3|) (-1165 |#4|)))) (-905) (-789) (-846) (-945 |#1| |#2| |#3|)) (T -902))
+((-2038 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *7)) (-4 *7 (-846)) (-4 *5 (-905)) (-4 *6 (-789)) (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-418 (-1165 *8))) (-5 *1 (-902 *5 *6 *7 *8)) (-5 *4 (-1165 *8)))) (-1990 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *2 (-640 (-1165 *7))) (-5 *3 (-1165 *7)) (-4 *7 (-945 *5 *6 *4)) (-4 *5 (-905)) (-4 *6 (-789)) (-4 *4 (-846)) (-5 *1 (-902 *5 *6 *4 *7)))) (-2027 (*1 *2) (-12 (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-905)) (-5 *1 (-902 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))) (-2017 (*1 *2 *3) (-12 (-4 *4 (-905)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-418 (-1165 *7))) (-5 *1 (-902 *4 *5 *6 *7)) (-5 *3 (-1165 *7)))) (-2009 (*1 *2 *3) (-12 (-4 *4 (-905)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-418 (-1165 *7))) (-5 *1 (-902 *4 *5 *6 *7)) (-5 *3 (-1165 *7)))) (-1999 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 (-1165 *7))) (-5 *3 (-1165 *7)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-905)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-902 *4 *5 *6 *7)))))
+(-10 -7 (-15 -1999 ((-3 (-640 (-1165 |#4|)) "failed") (-640 (-1165 |#4|)) (-1165 |#4|))) (-15 -2009 ((-418 (-1165 |#4|)) (-1165 |#4|))) (-15 -2017 ((-418 (-1165 |#4|)) (-1165 |#4|))) (-15 -2027 (|#1|)) (-15 -1990 ((-3 (-640 (-1165 |#4|)) "failed") (-640 (-1165 |#4|)) (-1165 |#4|) |#3|)) (-15 -2038 ((-418 (-1165 |#4|)) (-640 |#3|) (-1165 |#4|))))
+((-1999 (((-3 (-640 (-1165 |#2|)) "failed") (-640 (-1165 |#2|)) (-1165 |#2|)) 36)) (-2027 ((|#1|) 53)) (-2017 (((-418 (-1165 |#2|)) (-1165 |#2|)) 101)) (-2038 (((-418 (-1165 |#2|)) (-1165 |#2|)) 89)) (-2009 (((-418 (-1165 |#2|)) (-1165 |#2|)) 112)))
+(((-903 |#1| |#2|) (-10 -7 (-15 -1999 ((-3 (-640 (-1165 |#2|)) "failed") (-640 (-1165 |#2|)) (-1165 |#2|))) (-15 -2009 ((-418 (-1165 |#2|)) (-1165 |#2|))) (-15 -2017 ((-418 (-1165 |#2|)) (-1165 |#2|))) (-15 -2027 (|#1|)) (-15 -2038 ((-418 (-1165 |#2|)) (-1165 |#2|)))) (-905) (-1233 |#1|)) (T -903))
+((-2038 (*1 *2 *3) (-12 (-4 *4 (-905)) (-4 *5 (-1233 *4)) (-5 *2 (-418 (-1165 *5))) (-5 *1 (-903 *4 *5)) (-5 *3 (-1165 *5)))) (-2027 (*1 *2) (-12 (-4 *2 (-905)) (-5 *1 (-903 *2 *3)) (-4 *3 (-1233 *2)))) (-2017 (*1 *2 *3) (-12 (-4 *4 (-905)) (-4 *5 (-1233 *4)) (-5 *2 (-418 (-1165 *5))) (-5 *1 (-903 *4 *5)) (-5 *3 (-1165 *5)))) (-2009 (*1 *2 *3) (-12 (-4 *4 (-905)) (-4 *5 (-1233 *4)) (-5 *2 (-418 (-1165 *5))) (-5 *1 (-903 *4 *5)) (-5 *3 (-1165 *5)))) (-1999 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 (-1165 *5))) (-5 *3 (-1165 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-905)) (-5 *1 (-903 *4 *5)))))
+(-10 -7 (-15 -1999 ((-3 (-640 (-1165 |#2|)) "failed") (-640 (-1165 |#2|)) (-1165 |#2|))) (-15 -2009 ((-418 (-1165 |#2|)) (-1165 |#2|))) (-15 -2017 ((-418 (-1165 |#2|)) (-1165 |#2|))) (-15 -2027 (|#1|)) (-15 -2038 ((-418 (-1165 |#2|)) (-1165 |#2|))))
+((-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 41)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 18)) (-2047 (((-3 $ "failed") $) 35)))
+(((-904 |#1|) (-10 -8 (-15 -2047 ((-3 |#1| "failed") |#1|)) (-15 -2066 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -2103 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|)))) (-905)) (T -904))
+NIL
+(-10 -8 (-15 -2047 ((-3 |#1| "failed") |#1|)) (-15 -2066 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -2103 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-3905 (((-3 $ "failed") $ $) 19)) (-2093 (((-418 (-1165 $)) (-1165 $)) 61)) (-1798 (($ $) 52)) (-2802 (((-418 $) $) 53)) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 58)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-2560 (((-112) $) 54)) (-3401 (((-112) $) 31)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-2075 (((-418 (-1165 $)) (-1165 $)) 59)) (-2083 (((-418 (-1165 $)) (-1165 $)) 60)) (-2173 (((-418 $) $) 51)) (-3012 (((-3 $ "failed") $ $) 43)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) 57 (|has| $ (-145)))) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-2047 (((-3 $ "failed") $) 56 (|has| $ (-145)))) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 40)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-905) (-140)) (T -905))
-((-3385 (*1 *2 *2 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-905)))) (-2424 (*1 *2 *3) (-12 (-4 *1 (-905)) (-5 *2 (-418 (-1165 *1))) (-5 *3 (-1165 *1)))) (-3116 (*1 *2 *3) (-12 (-4 *1 (-905)) (-5 *2 (-418 (-1165 *1))) (-5 *3 (-1165 *1)))) (-1876 (*1 *2 *3) (-12 (-4 *1 (-905)) (-5 *2 (-418 (-1165 *1))) (-5 *3 (-1165 *1)))) (-2748 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 (-1165 *1))) (-5 *3 (-1165 *1)) (-4 *1 (-905)))) (-1377 (*1 *2 *3) (|partial| -12 (-5 *3 (-684 *1)) (-4 *1 (-145)) (-4 *1 (-905)) (-5 *2 (-1257 *1)))) (-2779 (*1 *1 *1) (|partial| -12 (-4 *1 (-145)) (-4 *1 (-905)))))
-(-13 (-1212) (-10 -8 (-15 -2424 ((-418 (-1165 $)) (-1165 $))) (-15 -3116 ((-418 (-1165 $)) (-1165 $))) (-15 -1876 ((-418 (-1165 $)) (-1165 $))) (-15 -3385 ((-1165 $) (-1165 $) (-1165 $))) (-15 -2748 ((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $))) (IF (|has| $ (-145)) (PROGN (-15 -1377 ((-3 (-1257 $) "failed") (-684 $))) (-15 -2779 ((-3 $ "failed") $))) |%noBranch|)))
+((-2103 (*1 *2 *2 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-905)))) (-2093 (*1 *2 *3) (-12 (-4 *1 (-905)) (-5 *2 (-418 (-1165 *1))) (-5 *3 (-1165 *1)))) (-2083 (*1 *2 *3) (-12 (-4 *1 (-905)) (-5 *2 (-418 (-1165 *1))) (-5 *3 (-1165 *1)))) (-2075 (*1 *2 *3) (-12 (-4 *1 (-905)) (-5 *2 (-418 (-1165 *1))) (-5 *3 (-1165 *1)))) (-2066 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-640 (-1165 *1))) (-5 *3 (-1165 *1)) (-4 *1 (-905)))) (-2054 (*1 *2 *3) (|partial| -12 (-5 *3 (-684 *1)) (-4 *1 (-145)) (-4 *1 (-905)) (-5 *2 (-1257 *1)))) (-2047 (*1 *1 *1) (|partial| -12 (-4 *1 (-145)) (-4 *1 (-905)))))
+(-13 (-1212) (-10 -8 (-15 -2093 ((-418 (-1165 $)) (-1165 $))) (-15 -2083 ((-418 (-1165 $)) (-1165 $))) (-15 -2075 ((-418 (-1165 $)) (-1165 $))) (-15 -2103 ((-1165 $) (-1165 $) (-1165 $))) (-15 -2066 ((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $))) (IF (|has| $ (-145)) (PROGN (-15 -2054 ((-3 (-1257 $) "failed") (-684 $))) (-15 -2047 ((-3 $ "failed") $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-290) . T) ((-452) . T) ((-555) . T) ((-643 $) . T) ((-713 $) . T) ((-722) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1212) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-2388 (((-112) $) NIL)) (-3259 (((-767)) NIL)) (-1733 (($ $ (-917)) NIL (|has| $ (-368))) (($ $) NIL)) (-2752 (((-1181 (-917) (-767)) (-563)) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-3749 (((-767)) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 $ "failed") $) NIL)) (-2058 (($ $) NIL)) (-3937 (($ (-1257 $)) NIL)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) NIL)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-1571 (($) NIL)) (-2366 (((-112) $) NIL)) (-1637 (($ $) NIL) (($ $ (-767)) NIL)) (-2468 (((-112) $) NIL)) (-3254 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3827 (((-112) $) NIL)) (-3723 (($) NIL (|has| $ (-368)))) (-2890 (((-112) $) NIL (|has| $ (-368)))) (-3793 (($ $ (-917)) NIL (|has| $ (-368))) (($ $) NIL)) (-2408 (((-3 $ "failed") $) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3941 (((-1165 $) $ (-917)) NIL (|has| $ (-368))) (((-1165 $) $) NIL)) (-1476 (((-917) $) NIL)) (-2229 (((-1165 $) $) NIL (|has| $ (-368)))) (-1631 (((-3 (-1165 $) "failed") $ $) NIL (|has| $ (-368))) (((-1165 $) $) NIL (|has| $ (-368)))) (-4166 (($ $ (-1165 $)) NIL (|has| $ (-368)))) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL T CONST)) (-2555 (($ (-917)) NIL)) (-3013 (((-112) $) NIL)) (-1694 (((-1113) $) NIL)) (-4333 (($) NIL (|has| $ (-368)))) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) NIL)) (-2174 (((-418 $) $) NIL)) (-1467 (((-917)) NIL) (((-829 (-917))) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-1423 (((-3 (-767) "failed") $ $) NIL) (((-767) $) NIL)) (-3533 (((-134)) NIL)) (-4202 (($ $ (-767)) NIL) (($ $) NIL)) (-4167 (((-917) $) NIL) (((-829 (-917)) $) NIL)) (-3390 (((-1165 $)) NIL)) (-4284 (($) NIL)) (-1484 (($) NIL (|has| $ (-368)))) (-1880 (((-684 $) (-1257 $)) NIL) (((-1257 $) $) NIL)) (-2220 (((-563) $) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL)) (-2779 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-1675 (((-767)) NIL)) (-4315 (((-1257 $) (-917)) NIL) (((-1257 $)) NIL)) (-2126 (((-112) $ $) NIL)) (-3152 (((-112) $) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-2350 (($ $ (-767)) NIL (|has| $ (-368))) (($ $) NIL (|has| $ (-368)))) (-3209 (($ $ (-767)) NIL) (($ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3761 (((-112) $) NIL)) (-3728 (((-767)) NIL)) (-1731 (($ $ (-917)) NIL (|has| $ (-368))) (($ $) NIL)) (-1597 (((-1181 (-917) (-767)) (-563)) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-3750 (((-767)) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 $ "failed") $) NIL)) (-2057 (($ $) NIL)) (-3458 (($ (-1257 $)) NIL)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) NIL)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-4036 (($) NIL)) (-1656 (((-112) $) NIL)) (-3188 (($ $) NIL) (($ $ (-767)) NIL)) (-2560 (((-112) $) NIL)) (-1775 (((-829 (-917)) $) NIL) (((-917) $) NIL)) (-3401 (((-112) $) NIL)) (-4024 (($) NIL (|has| $ (-368)))) (-4002 (((-112) $) NIL (|has| $ (-368)))) (-3975 (($ $ (-917)) NIL (|has| $ (-368))) (($ $) NIL)) (-1983 (((-3 $ "failed") $) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4035 (((-1165 $) $ (-917)) NIL (|has| $ (-368))) (((-1165 $) $) NIL)) (-3990 (((-917) $) NIL)) (-2196 (((-1165 $) $) NIL (|has| $ (-368)))) (-2184 (((-3 (-1165 $) "failed") $ $) NIL (|has| $ (-368))) (((-1165 $) $) NIL (|has| $ (-368)))) (-2207 (($ $ (-1165 $)) NIL (|has| $ (-368)))) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL T CONST)) (-2552 (($ (-917)) NIL)) (-3751 (((-112) $) NIL)) (-1693 (((-1113) $) NIL)) (-4334 (($) NIL (|has| $ (-368)))) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) NIL)) (-2173 (((-418 $) $) NIL)) (-3740 (((-917)) NIL) (((-829 (-917))) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3196 (((-3 (-767) "failed") $ $) NIL) (((-767) $) NIL)) (-3526 (((-134)) NIL)) (-4203 (($ $ (-767)) NIL) (($ $) NIL)) (-3871 (((-917) $) NIL) (((-829 (-917)) $) NIL)) (-3402 (((-1165 $)) NIL)) (-1586 (($) NIL)) (-2220 (($) NIL (|has| $ (-368)))) (-3759 (((-684 $) (-1257 $)) NIL) (((-1257 $) $) NIL)) (-2219 (((-563) $) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL)) (-2047 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-3914 (((-767)) NIL)) (-4013 (((-1257 $) (-917)) NIL) (((-1257 $)) NIL)) (-3223 (((-112) $ $) NIL)) (-3772 (((-112) $) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3715 (($ $ (-767)) NIL (|has| $ (-368))) (($ $) NIL (|has| $ (-368)))) (-3213 (($ $ (-767)) NIL) (($ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
(((-906 |#1|) (-13 (-349) (-329 $) (-611 (-563))) (-917)) (T -906))
NIL
(-13 (-349) (-329 $) (-611 (-563)))
-((-3136 (((-3 (-2 (|:| -3254 (-767)) (|:| -1516 |#5|)) "failed") (-336 |#2| |#3| |#4| |#5|)) 79)) (-1557 (((-112) (-336 |#2| |#3| |#4| |#5|)) 17)) (-3254 (((-3 (-767) "failed") (-336 |#2| |#3| |#4| |#5|)) 15)))
-(((-907 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3254 ((-3 (-767) "failed") (-336 |#2| |#3| |#4| |#5|))) (-15 -1557 ((-112) (-336 |#2| |#3| |#4| |#5|))) (-15 -3136 ((-3 (-2 (|:| -3254 (-767)) (|:| -1516 |#5|)) "failed") (-336 |#2| |#3| |#4| |#5|)))) (-13 (-846) (-555) (-1034 (-563))) (-430 |#1|) (-1233 |#2|) (-1233 (-407 |#3|)) (-342 |#2| |#3| |#4|)) (T -907))
-((-3136 (*1 *2 *3) (|partial| -12 (-5 *3 (-336 *5 *6 *7 *8)) (-4 *5 (-430 *4)) (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6))) (-4 *8 (-342 *5 *6 *7)) (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-2 (|:| -3254 (-767)) (|:| -1516 *8))) (-5 *1 (-907 *4 *5 *6 *7 *8)))) (-1557 (*1 *2 *3) (-12 (-5 *3 (-336 *5 *6 *7 *8)) (-4 *5 (-430 *4)) (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6))) (-4 *8 (-342 *5 *6 *7)) (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-112)) (-5 *1 (-907 *4 *5 *6 *7 *8)))) (-3254 (*1 *2 *3) (|partial| -12 (-5 *3 (-336 *5 *6 *7 *8)) (-4 *5 (-430 *4)) (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6))) (-4 *8 (-342 *5 *6 *7)) (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-767)) (-5 *1 (-907 *4 *5 *6 *7 *8)))))
-(-10 -7 (-15 -3254 ((-3 (-767) "failed") (-336 |#2| |#3| |#4| |#5|))) (-15 -1557 ((-112) (-336 |#2| |#3| |#4| |#5|))) (-15 -3136 ((-3 (-2 (|:| -3254 (-767)) (|:| -1516 |#5|)) "failed") (-336 |#2| |#3| |#4| |#5|))))
-((-3136 (((-3 (-2 (|:| -3254 (-767)) (|:| -1516 |#3|)) "failed") (-336 (-407 (-563)) |#1| |#2| |#3|)) 56)) (-1557 (((-112) (-336 (-407 (-563)) |#1| |#2| |#3|)) 16)) (-3254 (((-3 (-767) "failed") (-336 (-407 (-563)) |#1| |#2| |#3|)) 14)))
-(((-908 |#1| |#2| |#3|) (-10 -7 (-15 -3254 ((-3 (-767) "failed") (-336 (-407 (-563)) |#1| |#2| |#3|))) (-15 -1557 ((-112) (-336 (-407 (-563)) |#1| |#2| |#3|))) (-15 -3136 ((-3 (-2 (|:| -3254 (-767)) (|:| -1516 |#3|)) "failed") (-336 (-407 (-563)) |#1| |#2| |#3|)))) (-1233 (-407 (-563))) (-1233 (-407 |#1|)) (-342 (-407 (-563)) |#1| |#2|)) (T -908))
-((-3136 (*1 *2 *3) (|partial| -12 (-5 *3 (-336 (-407 (-563)) *4 *5 *6)) (-4 *4 (-1233 (-407 (-563)))) (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 (-407 (-563)) *4 *5)) (-5 *2 (-2 (|:| -3254 (-767)) (|:| -1516 *6))) (-5 *1 (-908 *4 *5 *6)))) (-1557 (*1 *2 *3) (-12 (-5 *3 (-336 (-407 (-563)) *4 *5 *6)) (-4 *4 (-1233 (-407 (-563)))) (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 (-407 (-563)) *4 *5)) (-5 *2 (-112)) (-5 *1 (-908 *4 *5 *6)))) (-3254 (*1 *2 *3) (|partial| -12 (-5 *3 (-336 (-407 (-563)) *4 *5 *6)) (-4 *4 (-1233 (-407 (-563)))) (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 (-407 (-563)) *4 *5)) (-5 *2 (-767)) (-5 *1 (-908 *4 *5 *6)))))
-(-10 -7 (-15 -3254 ((-3 (-767) "failed") (-336 (-407 (-563)) |#1| |#2| |#3|))) (-15 -1557 ((-112) (-336 (-407 (-563)) |#1| |#2| |#3|))) (-15 -3136 ((-3 (-2 (|:| -3254 (-767)) (|:| -1516 |#3|)) "failed") (-336 (-407 (-563)) |#1| |#2| |#3|))))
-((-1750 ((|#2| |#2|) 26)) (-2094 (((-563) (-640 (-2 (|:| |den| (-563)) (|:| |gcdnum| (-563))))) 15)) (-2814 (((-917) (-563)) 35)) (-3423 (((-563) |#2|) 42)) (-1899 (((-563) |#2|) 21) (((-2 (|:| |den| (-563)) (|:| |gcdnum| (-563))) |#1|) 20)))
-(((-909 |#1| |#2|) (-10 -7 (-15 -2814 ((-917) (-563))) (-15 -1899 ((-2 (|:| |den| (-563)) (|:| |gcdnum| (-563))) |#1|)) (-15 -1899 ((-563) |#2|)) (-15 -2094 ((-563) (-640 (-2 (|:| |den| (-563)) (|:| |gcdnum| (-563)))))) (-15 -3423 ((-563) |#2|)) (-15 -1750 (|#2| |#2|))) (-1233 (-407 (-563))) (-1233 (-407 |#1|))) (T -909))
-((-1750 (*1 *2 *2) (-12 (-4 *3 (-1233 (-407 (-563)))) (-5 *1 (-909 *3 *2)) (-4 *2 (-1233 (-407 *3))))) (-3423 (*1 *2 *3) (-12 (-4 *4 (-1233 (-407 *2))) (-5 *2 (-563)) (-5 *1 (-909 *4 *3)) (-4 *3 (-1233 (-407 *4))))) (-2094 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| |den| (-563)) (|:| |gcdnum| (-563))))) (-4 *4 (-1233 (-407 *2))) (-5 *2 (-563)) (-5 *1 (-909 *4 *5)) (-4 *5 (-1233 (-407 *4))))) (-1899 (*1 *2 *3) (-12 (-4 *4 (-1233 (-407 *2))) (-5 *2 (-563)) (-5 *1 (-909 *4 *3)) (-4 *3 (-1233 (-407 *4))))) (-1899 (*1 *2 *3) (-12 (-4 *3 (-1233 (-407 (-563)))) (-5 *2 (-2 (|:| |den| (-563)) (|:| |gcdnum| (-563)))) (-5 *1 (-909 *3 *4)) (-4 *4 (-1233 (-407 *3))))) (-2814 (*1 *2 *3) (-12 (-5 *3 (-563)) (-4 *4 (-1233 (-407 *3))) (-5 *2 (-917)) (-5 *1 (-909 *4 *5)) (-4 *5 (-1233 (-407 *4))))))
-(-10 -7 (-15 -2814 ((-917) (-563))) (-15 -1899 ((-2 (|:| |den| (-563)) (|:| |gcdnum| (-563))) |#1|)) (-15 -1899 ((-563) |#2|)) (-15 -2094 ((-563) (-640 (-2 (|:| |den| (-563)) (|:| |gcdnum| (-563)))))) (-15 -3423 ((-563) |#2|)) (-15 -1750 (|#2| |#2|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3401 ((|#1| $) 81)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-4239 (($) NIL T CONST)) (-3090 (($ $ $) NIL)) (-3400 (((-3 $ "failed") $) 75)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3964 (($ |#1| (-418 |#1|)) 73)) (-2215 (((-1165 |#1|) |#1| |#1|) 41)) (-2268 (($ $) 49)) (-3827 (((-112) $) NIL)) (-3086 (((-563) $) 78)) (-3898 (($ $ (-563)) 80)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3407 ((|#1| $) 77)) (-1975 (((-418 |#1|) $) 76)) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) 74)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-3567 (($ $) 39)) (-1693 (((-858) $) 99) (($ (-563)) 54) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) 31) (((-407 |#1|) $) 59) (($ (-407 (-418 |#1|))) 67)) (-1675 (((-767)) 52)) (-2126 (((-112) $ $) NIL)) (-2241 (($) 23 T CONST)) (-2254 (($) 12 T CONST)) (-1718 (((-112) $ $) 68)) (-1837 (($ $ $) NIL)) (-1826 (($ $) 88) (($ $ $) NIL)) (-1814 (($ $ $) 38)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 90) (($ $ $) 37) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ |#1| $) 89) (($ $ |#1|) NIL)))
-(((-910 |#1|) (-13 (-363) (-38 |#1|) (-10 -8 (-15 -1693 ((-407 |#1|) $)) (-15 -1693 ($ (-407 (-418 |#1|)))) (-15 -3567 ($ $)) (-15 -1975 ((-418 |#1|) $)) (-15 -3407 (|#1| $)) (-15 -3898 ($ $ (-563))) (-15 -3086 ((-563) $)) (-15 -2215 ((-1165 |#1|) |#1| |#1|)) (-15 -2268 ($ $)) (-15 -3964 ($ |#1| (-418 |#1|))) (-15 -3401 (|#1| $)))) (-307)) (T -910))
-((-1693 (*1 *2 *1) (-12 (-5 *2 (-407 *3)) (-5 *1 (-910 *3)) (-4 *3 (-307)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-407 (-418 *3))) (-4 *3 (-307)) (-5 *1 (-910 *3)))) (-3567 (*1 *1 *1) (-12 (-5 *1 (-910 *2)) (-4 *2 (-307)))) (-1975 (*1 *2 *1) (-12 (-5 *2 (-418 *3)) (-5 *1 (-910 *3)) (-4 *3 (-307)))) (-3407 (*1 *2 *1) (-12 (-5 *1 (-910 *2)) (-4 *2 (-307)))) (-3898 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-910 *3)) (-4 *3 (-307)))) (-3086 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-910 *3)) (-4 *3 (-307)))) (-2215 (*1 *2 *3 *3) (-12 (-5 *2 (-1165 *3)) (-5 *1 (-910 *3)) (-4 *3 (-307)))) (-2268 (*1 *1 *1) (-12 (-5 *1 (-910 *2)) (-4 *2 (-307)))) (-3964 (*1 *1 *2 *3) (-12 (-5 *3 (-418 *2)) (-4 *2 (-307)) (-5 *1 (-910 *2)))) (-3401 (*1 *2 *1) (-12 (-5 *1 (-910 *2)) (-4 *2 (-307)))))
-(-13 (-363) (-38 |#1|) (-10 -8 (-15 -1693 ((-407 |#1|) $)) (-15 -1693 ($ (-407 (-418 |#1|)))) (-15 -3567 ($ $)) (-15 -1975 ((-418 |#1|) $)) (-15 -3407 (|#1| $)) (-15 -3898 ($ $ (-563))) (-15 -3086 ((-563) $)) (-15 -2215 ((-1165 |#1|) |#1| |#1|)) (-15 -2268 ($ $)) (-15 -3964 ($ |#1| (-418 |#1|))) (-15 -3401 (|#1| $))))
-((-3964 (((-52) (-948 |#1|) (-418 (-948 |#1|)) (-1169)) 17) (((-52) (-407 (-948 |#1|)) (-1169)) 18)))
-(((-911 |#1|) (-10 -7 (-15 -3964 ((-52) (-407 (-948 |#1|)) (-1169))) (-15 -3964 ((-52) (-948 |#1|) (-418 (-948 |#1|)) (-1169)))) (-13 (-307) (-147))) (T -911))
-((-3964 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-418 (-948 *6))) (-5 *5 (-1169)) (-5 *3 (-948 *6)) (-4 *6 (-13 (-307) (-147))) (-5 *2 (-52)) (-5 *1 (-911 *6)))) (-3964 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-147))) (-5 *2 (-52)) (-5 *1 (-911 *5)))))
-(-10 -7 (-15 -3964 ((-52) (-407 (-948 |#1|)) (-1169))) (-15 -3964 ((-52) (-948 |#1|) (-418 (-948 |#1|)) (-1169))))
-((-2114 ((|#4| (-640 |#4|)) 121) (((-1165 |#4|) (-1165 |#4|) (-1165 |#4|)) 66) ((|#4| |#4| |#4|) 120)) (-3548 (((-1165 |#4|) (-640 (-1165 |#4|))) 114) (((-1165 |#4|) (-1165 |#4|) (-1165 |#4|)) 49) ((|#4| (-640 |#4|)) 54) ((|#4| |#4| |#4|) 84)))
-(((-912 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3548 (|#4| |#4| |#4|)) (-15 -3548 (|#4| (-640 |#4|))) (-15 -3548 ((-1165 |#4|) (-1165 |#4|) (-1165 |#4|))) (-15 -3548 ((-1165 |#4|) (-640 (-1165 |#4|)))) (-15 -2114 (|#4| |#4| |#4|)) (-15 -2114 ((-1165 |#4|) (-1165 |#4|) (-1165 |#4|))) (-15 -2114 (|#4| (-640 |#4|)))) (-789) (-846) (-307) (-945 |#3| |#1| |#2|)) (T -912))
-((-2114 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *6 *4 *5)) (-5 *1 (-912 *4 *5 *6 *2)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)))) (-2114 (*1 *2 *2 *2) (-12 (-5 *2 (-1165 *6)) (-4 *6 (-945 *5 *3 *4)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-307)) (-5 *1 (-912 *3 *4 *5 *6)))) (-2114 (*1 *2 *2 *2) (-12 (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-307)) (-5 *1 (-912 *3 *4 *5 *2)) (-4 *2 (-945 *5 *3 *4)))) (-3548 (*1 *2 *3) (-12 (-5 *3 (-640 (-1165 *7))) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)) (-5 *2 (-1165 *7)) (-5 *1 (-912 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5)))) (-3548 (*1 *2 *2 *2) (-12 (-5 *2 (-1165 *6)) (-4 *6 (-945 *5 *3 *4)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-307)) (-5 *1 (-912 *3 *4 *5 *6)))) (-3548 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *6 *4 *5)) (-5 *1 (-912 *4 *5 *6 *2)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)))) (-3548 (*1 *2 *2 *2) (-12 (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-307)) (-5 *1 (-912 *3 *4 *5 *2)) (-4 *2 (-945 *5 *3 *4)))))
-(-10 -7 (-15 -3548 (|#4| |#4| |#4|)) (-15 -3548 (|#4| (-640 |#4|))) (-15 -3548 ((-1165 |#4|) (-1165 |#4|) (-1165 |#4|))) (-15 -3548 ((-1165 |#4|) (-640 (-1165 |#4|)))) (-15 -2114 (|#4| |#4| |#4|)) (-15 -2114 ((-1165 |#4|) (-1165 |#4|) (-1165 |#4|))) (-15 -2114 (|#4| (-640 |#4|))))
-((-4126 (((-900 (-563)) (-967)) 23) (((-900 (-563)) (-640 (-563))) 20)) (-1979 (((-900 (-563)) (-640 (-563))) 48) (((-900 (-563)) (-917)) 49)) (-2502 (((-900 (-563))) 24)) (-3859 (((-900 (-563))) 38) (((-900 (-563)) (-640 (-563))) 37)) (-4025 (((-900 (-563))) 36) (((-900 (-563)) (-640 (-563))) 35)) (-3238 (((-900 (-563))) 34) (((-900 (-563)) (-640 (-563))) 33)) (-3168 (((-900 (-563))) 32) (((-900 (-563)) (-640 (-563))) 31)) (-4085 (((-900 (-563))) 30) (((-900 (-563)) (-640 (-563))) 29)) (-4040 (((-900 (-563))) 40) (((-900 (-563)) (-640 (-563))) 39)) (-3517 (((-900 (-563)) (-640 (-563))) 52) (((-900 (-563)) (-917)) 53)) (-1501 (((-900 (-563)) (-640 (-563))) 50) (((-900 (-563)) (-917)) 51)) (-4060 (((-900 (-563)) (-640 (-563))) 46) (((-900 (-563)) (-917)) 47)) (-3006 (((-900 (-563)) (-640 (-917))) 43)))
-(((-913) (-10 -7 (-15 -1979 ((-900 (-563)) (-917))) (-15 -1979 ((-900 (-563)) (-640 (-563)))) (-15 -4060 ((-900 (-563)) (-917))) (-15 -4060 ((-900 (-563)) (-640 (-563)))) (-15 -3006 ((-900 (-563)) (-640 (-917)))) (-15 -1501 ((-900 (-563)) (-917))) (-15 -1501 ((-900 (-563)) (-640 (-563)))) (-15 -3517 ((-900 (-563)) (-917))) (-15 -3517 ((-900 (-563)) (-640 (-563)))) (-15 -4085 ((-900 (-563)) (-640 (-563)))) (-15 -4085 ((-900 (-563)))) (-15 -3168 ((-900 (-563)) (-640 (-563)))) (-15 -3168 ((-900 (-563)))) (-15 -3238 ((-900 (-563)) (-640 (-563)))) (-15 -3238 ((-900 (-563)))) (-15 -4025 ((-900 (-563)) (-640 (-563)))) (-15 -4025 ((-900 (-563)))) (-15 -3859 ((-900 (-563)) (-640 (-563)))) (-15 -3859 ((-900 (-563)))) (-15 -4040 ((-900 (-563)) (-640 (-563)))) (-15 -4040 ((-900 (-563)))) (-15 -2502 ((-900 (-563)))) (-15 -4126 ((-900 (-563)) (-640 (-563)))) (-15 -4126 ((-900 (-563)) (-967))))) (T -913))
-((-4126 (*1 *2 *3) (-12 (-5 *3 (-967)) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-4126 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2502 (*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-4040 (*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-4040 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-3859 (*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-3859 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-4025 (*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-4025 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-3238 (*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-3238 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-3168 (*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-3168 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-4085 (*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-4085 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-3517 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-3517 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-1501 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-1501 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-3006 (*1 *2 *3) (-12 (-5 *3 (-640 (-917))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-4060 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-4060 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-1979 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-1979 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
-(-10 -7 (-15 -1979 ((-900 (-563)) (-917))) (-15 -1979 ((-900 (-563)) (-640 (-563)))) (-15 -4060 ((-900 (-563)) (-917))) (-15 -4060 ((-900 (-563)) (-640 (-563)))) (-15 -3006 ((-900 (-563)) (-640 (-917)))) (-15 -1501 ((-900 (-563)) (-917))) (-15 -1501 ((-900 (-563)) (-640 (-563)))) (-15 -3517 ((-900 (-563)) (-917))) (-15 -3517 ((-900 (-563)) (-640 (-563)))) (-15 -4085 ((-900 (-563)) (-640 (-563)))) (-15 -4085 ((-900 (-563)))) (-15 -3168 ((-900 (-563)) (-640 (-563)))) (-15 -3168 ((-900 (-563)))) (-15 -3238 ((-900 (-563)) (-640 (-563)))) (-15 -3238 ((-900 (-563)))) (-15 -4025 ((-900 (-563)) (-640 (-563)))) (-15 -4025 ((-900 (-563)))) (-15 -3859 ((-900 (-563)) (-640 (-563)))) (-15 -3859 ((-900 (-563)))) (-15 -4040 ((-900 (-563)) (-640 (-563)))) (-15 -4040 ((-900 (-563)))) (-15 -2502 ((-900 (-563)))) (-15 -4126 ((-900 (-563)) (-640 (-563)))) (-15 -4126 ((-900 (-563)) (-967))))
-((-1854 (((-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169))) 12)) (-1678 (((-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169))) 11)))
-(((-914 |#1|) (-10 -7 (-15 -1678 ((-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -1854 ((-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169))))) (-452)) (T -914))
-((-1854 (*1 *2 *2 *3) (-12 (-5 *2 (-640 (-948 *4))) (-5 *3 (-640 (-1169))) (-4 *4 (-452)) (-5 *1 (-914 *4)))) (-1678 (*1 *2 *2 *3) (-12 (-5 *2 (-640 (-948 *4))) (-5 *3 (-640 (-1169))) (-4 *4 (-452)) (-5 *1 (-914 *4)))))
-(-10 -7 (-15 -1678 ((-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -1854 ((-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169)))))
-((-1693 (((-316 |#1|) (-477)) 16)))
-(((-915 |#1|) (-10 -7 (-15 -1693 ((-316 |#1|) (-477)))) (-13 (-846) (-555))) (T -915))
-((-1693 (*1 *2 *3) (-12 (-5 *3 (-477)) (-5 *2 (-316 *4)) (-5 *1 (-915 *4)) (-4 *4 (-13 (-846) (-555))))))
-(-10 -7 (-15 -1693 ((-316 |#1|) (-477))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 52)) (-3827 (((-112) $) 31)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-3008 (((-3 $ "failed") $ $) 43)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 40)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-2123 (((-3 (-2 (|:| -1775 (-767)) (|:| -1518 |#5|)) "failed") (-336 |#2| |#3| |#4| |#5|)) 79)) (-2113 (((-112) (-336 |#2| |#3| |#4| |#5|)) 17)) (-1775 (((-3 (-767) "failed") (-336 |#2| |#3| |#4| |#5|)) 15)))
+(((-907 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1775 ((-3 (-767) "failed") (-336 |#2| |#3| |#4| |#5|))) (-15 -2113 ((-112) (-336 |#2| |#3| |#4| |#5|))) (-15 -2123 ((-3 (-2 (|:| -1775 (-767)) (|:| -1518 |#5|)) "failed") (-336 |#2| |#3| |#4| |#5|)))) (-13 (-846) (-555) (-1034 (-563))) (-430 |#1|) (-1233 |#2|) (-1233 (-407 |#3|)) (-342 |#2| |#3| |#4|)) (T -907))
+((-2123 (*1 *2 *3) (|partial| -12 (-5 *3 (-336 *5 *6 *7 *8)) (-4 *5 (-430 *4)) (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6))) (-4 *8 (-342 *5 *6 *7)) (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-2 (|:| -1775 (-767)) (|:| -1518 *8))) (-5 *1 (-907 *4 *5 *6 *7 *8)))) (-2113 (*1 *2 *3) (-12 (-5 *3 (-336 *5 *6 *7 *8)) (-4 *5 (-430 *4)) (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6))) (-4 *8 (-342 *5 *6 *7)) (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-112)) (-5 *1 (-907 *4 *5 *6 *7 *8)))) (-1775 (*1 *2 *3) (|partial| -12 (-5 *3 (-336 *5 *6 *7 *8)) (-4 *5 (-430 *4)) (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6))) (-4 *8 (-342 *5 *6 *7)) (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-767)) (-5 *1 (-907 *4 *5 *6 *7 *8)))))
+(-10 -7 (-15 -1775 ((-3 (-767) "failed") (-336 |#2| |#3| |#4| |#5|))) (-15 -2113 ((-112) (-336 |#2| |#3| |#4| |#5|))) (-15 -2123 ((-3 (-2 (|:| -1775 (-767)) (|:| -1518 |#5|)) "failed") (-336 |#2| |#3| |#4| |#5|))))
+((-2123 (((-3 (-2 (|:| -1775 (-767)) (|:| -1518 |#3|)) "failed") (-336 (-407 (-563)) |#1| |#2| |#3|)) 56)) (-2113 (((-112) (-336 (-407 (-563)) |#1| |#2| |#3|)) 16)) (-1775 (((-3 (-767) "failed") (-336 (-407 (-563)) |#1| |#2| |#3|)) 14)))
+(((-908 |#1| |#2| |#3|) (-10 -7 (-15 -1775 ((-3 (-767) "failed") (-336 (-407 (-563)) |#1| |#2| |#3|))) (-15 -2113 ((-112) (-336 (-407 (-563)) |#1| |#2| |#3|))) (-15 -2123 ((-3 (-2 (|:| -1775 (-767)) (|:| -1518 |#3|)) "failed") (-336 (-407 (-563)) |#1| |#2| |#3|)))) (-1233 (-407 (-563))) (-1233 (-407 |#1|)) (-342 (-407 (-563)) |#1| |#2|)) (T -908))
+((-2123 (*1 *2 *3) (|partial| -12 (-5 *3 (-336 (-407 (-563)) *4 *5 *6)) (-4 *4 (-1233 (-407 (-563)))) (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 (-407 (-563)) *4 *5)) (-5 *2 (-2 (|:| -1775 (-767)) (|:| -1518 *6))) (-5 *1 (-908 *4 *5 *6)))) (-2113 (*1 *2 *3) (-12 (-5 *3 (-336 (-407 (-563)) *4 *5 *6)) (-4 *4 (-1233 (-407 (-563)))) (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 (-407 (-563)) *4 *5)) (-5 *2 (-112)) (-5 *1 (-908 *4 *5 *6)))) (-1775 (*1 *2 *3) (|partial| -12 (-5 *3 (-336 (-407 (-563)) *4 *5 *6)) (-4 *4 (-1233 (-407 (-563)))) (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 (-407 (-563)) *4 *5)) (-5 *2 (-767)) (-5 *1 (-908 *4 *5 *6)))))
+(-10 -7 (-15 -1775 ((-3 (-767) "failed") (-336 (-407 (-563)) |#1| |#2| |#3|))) (-15 -2113 ((-112) (-336 (-407 (-563)) |#1| |#2| |#3|))) (-15 -2123 ((-3 (-2 (|:| -1775 (-767)) (|:| -1518 |#3|)) "failed") (-336 (-407 (-563)) |#1| |#2| |#3|))))
+((-2181 ((|#2| |#2|) 26)) (-2155 (((-563) (-640 (-2 (|:| |den| (-563)) (|:| |gcdnum| (-563))))) 15)) (-2134 (((-917) (-563)) 35)) (-2166 (((-563) |#2|) 42)) (-2145 (((-563) |#2|) 21) (((-2 (|:| |den| (-563)) (|:| |gcdnum| (-563))) |#1|) 20)))
+(((-909 |#1| |#2|) (-10 -7 (-15 -2134 ((-917) (-563))) (-15 -2145 ((-2 (|:| |den| (-563)) (|:| |gcdnum| (-563))) |#1|)) (-15 -2145 ((-563) |#2|)) (-15 -2155 ((-563) (-640 (-2 (|:| |den| (-563)) (|:| |gcdnum| (-563)))))) (-15 -2166 ((-563) |#2|)) (-15 -2181 (|#2| |#2|))) (-1233 (-407 (-563))) (-1233 (-407 |#1|))) (T -909))
+((-2181 (*1 *2 *2) (-12 (-4 *3 (-1233 (-407 (-563)))) (-5 *1 (-909 *3 *2)) (-4 *2 (-1233 (-407 *3))))) (-2166 (*1 *2 *3) (-12 (-4 *4 (-1233 (-407 *2))) (-5 *2 (-563)) (-5 *1 (-909 *4 *3)) (-4 *3 (-1233 (-407 *4))))) (-2155 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| |den| (-563)) (|:| |gcdnum| (-563))))) (-4 *4 (-1233 (-407 *2))) (-5 *2 (-563)) (-5 *1 (-909 *4 *5)) (-4 *5 (-1233 (-407 *4))))) (-2145 (*1 *2 *3) (-12 (-4 *4 (-1233 (-407 *2))) (-5 *2 (-563)) (-5 *1 (-909 *4 *3)) (-4 *3 (-1233 (-407 *4))))) (-2145 (*1 *2 *3) (-12 (-4 *3 (-1233 (-407 (-563)))) (-5 *2 (-2 (|:| |den| (-563)) (|:| |gcdnum| (-563)))) (-5 *1 (-909 *3 *4)) (-4 *4 (-1233 (-407 *3))))) (-2134 (*1 *2 *3) (-12 (-5 *3 (-563)) (-4 *4 (-1233 (-407 *3))) (-5 *2 (-917)) (-5 *1 (-909 *4 *5)) (-4 *5 (-1233 (-407 *4))))))
+(-10 -7 (-15 -2134 ((-917) (-563))) (-15 -2145 ((-2 (|:| |den| (-563)) (|:| |gcdnum| (-563))) |#1|)) (-15 -2145 ((-563) |#2|)) (-15 -2155 ((-563) (-640 (-2 (|:| |den| (-563)) (|:| |gcdnum| (-563)))))) (-15 -2166 ((-563) |#2|)) (-15 -2181 (|#2| |#2|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3944 ((|#1| $) 81)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-2569 (($) NIL T CONST)) (-3094 (($ $ $) NIL)) (-3951 (((-3 $ "failed") $) 75)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-2278 (($ |#1| (-418 |#1|)) 73)) (-2204 (((-1165 |#1|) |#1| |#1|) 41)) (-2193 (($ $) 49)) (-3401 (((-112) $) NIL)) (-2215 (((-563) $) 78)) (-2229 (($ $ (-563)) 80)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2245 ((|#1| $) 77)) (-2258 (((-418 |#1|) $) 76)) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) 74)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-2268 (($ $) 39)) (-1692 (((-858) $) 99) (($ (-563)) 54) (($ $) NIL) (($ (-407 (-563))) NIL) (($ |#1|) 31) (((-407 |#1|) $) 59) (($ (-407 (-418 |#1|))) 67)) (-3914 (((-767)) 52)) (-3223 (((-112) $ $) NIL)) (-2239 (($) 23 T CONST)) (-2253 (($) 12 T CONST)) (-1718 (((-112) $ $) 68)) (-1836 (($ $ $) NIL)) (-1825 (($ $) 88) (($ $ $) NIL)) (-1813 (($ $ $) 38)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 90) (($ $ $) 37) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ |#1| $) 89) (($ $ |#1|) NIL)))
+(((-910 |#1|) (-13 (-363) (-38 |#1|) (-10 -8 (-15 -1692 ((-407 |#1|) $)) (-15 -1692 ($ (-407 (-418 |#1|)))) (-15 -2268 ($ $)) (-15 -2258 ((-418 |#1|) $)) (-15 -2245 (|#1| $)) (-15 -2229 ($ $ (-563))) (-15 -2215 ((-563) $)) (-15 -2204 ((-1165 |#1|) |#1| |#1|)) (-15 -2193 ($ $)) (-15 -2278 ($ |#1| (-418 |#1|))) (-15 -3944 (|#1| $)))) (-307)) (T -910))
+((-1692 (*1 *2 *1) (-12 (-5 *2 (-407 *3)) (-5 *1 (-910 *3)) (-4 *3 (-307)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-407 (-418 *3))) (-4 *3 (-307)) (-5 *1 (-910 *3)))) (-2268 (*1 *1 *1) (-12 (-5 *1 (-910 *2)) (-4 *2 (-307)))) (-2258 (*1 *2 *1) (-12 (-5 *2 (-418 *3)) (-5 *1 (-910 *3)) (-4 *3 (-307)))) (-2245 (*1 *2 *1) (-12 (-5 *1 (-910 *2)) (-4 *2 (-307)))) (-2229 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-910 *3)) (-4 *3 (-307)))) (-2215 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-910 *3)) (-4 *3 (-307)))) (-2204 (*1 *2 *3 *3) (-12 (-5 *2 (-1165 *3)) (-5 *1 (-910 *3)) (-4 *3 (-307)))) (-2193 (*1 *1 *1) (-12 (-5 *1 (-910 *2)) (-4 *2 (-307)))) (-2278 (*1 *1 *2 *3) (-12 (-5 *3 (-418 *2)) (-4 *2 (-307)) (-5 *1 (-910 *2)))) (-3944 (*1 *2 *1) (-12 (-5 *1 (-910 *2)) (-4 *2 (-307)))))
+(-13 (-363) (-38 |#1|) (-10 -8 (-15 -1692 ((-407 |#1|) $)) (-15 -1692 ($ (-407 (-418 |#1|)))) (-15 -2268 ($ $)) (-15 -2258 ((-418 |#1|) $)) (-15 -2245 (|#1| $)) (-15 -2229 ($ $ (-563))) (-15 -2215 ((-563) $)) (-15 -2204 ((-1165 |#1|) |#1| |#1|)) (-15 -2193 ($ $)) (-15 -2278 ($ |#1| (-418 |#1|))) (-15 -3944 (|#1| $))))
+((-2278 (((-52) (-948 |#1|) (-418 (-948 |#1|)) (-1169)) 17) (((-52) (-407 (-948 |#1|)) (-1169)) 18)))
+(((-911 |#1|) (-10 -7 (-15 -2278 ((-52) (-407 (-948 |#1|)) (-1169))) (-15 -2278 ((-52) (-948 |#1|) (-418 (-948 |#1|)) (-1169)))) (-13 (-307) (-147))) (T -911))
+((-2278 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-418 (-948 *6))) (-5 *5 (-1169)) (-5 *3 (-948 *6)) (-4 *6 (-13 (-307) (-147))) (-5 *2 (-52)) (-5 *1 (-911 *6)))) (-2278 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-147))) (-5 *2 (-52)) (-5 *1 (-911 *5)))))
+(-10 -7 (-15 -2278 ((-52) (-407 (-948 |#1|)) (-1169))) (-15 -2278 ((-52) (-948 |#1|) (-418 (-948 |#1|)) (-1169))))
+((-2289 ((|#4| (-640 |#4|)) 121) (((-1165 |#4|) (-1165 |#4|) (-1165 |#4|)) 66) ((|#4| |#4| |#4|) 120)) (-3551 (((-1165 |#4|) (-640 (-1165 |#4|))) 114) (((-1165 |#4|) (-1165 |#4|) (-1165 |#4|)) 49) ((|#4| (-640 |#4|)) 54) ((|#4| |#4| |#4|) 84)))
+(((-912 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3551 (|#4| |#4| |#4|)) (-15 -3551 (|#4| (-640 |#4|))) (-15 -3551 ((-1165 |#4|) (-1165 |#4|) (-1165 |#4|))) (-15 -3551 ((-1165 |#4|) (-640 (-1165 |#4|)))) (-15 -2289 (|#4| |#4| |#4|)) (-15 -2289 ((-1165 |#4|) (-1165 |#4|) (-1165 |#4|))) (-15 -2289 (|#4| (-640 |#4|)))) (-789) (-846) (-307) (-945 |#3| |#1| |#2|)) (T -912))
+((-2289 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *6 *4 *5)) (-5 *1 (-912 *4 *5 *6 *2)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)))) (-2289 (*1 *2 *2 *2) (-12 (-5 *2 (-1165 *6)) (-4 *6 (-945 *5 *3 *4)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-307)) (-5 *1 (-912 *3 *4 *5 *6)))) (-2289 (*1 *2 *2 *2) (-12 (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-307)) (-5 *1 (-912 *3 *4 *5 *2)) (-4 *2 (-945 *5 *3 *4)))) (-3551 (*1 *2 *3) (-12 (-5 *3 (-640 (-1165 *7))) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)) (-5 *2 (-1165 *7)) (-5 *1 (-912 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5)))) (-3551 (*1 *2 *2 *2) (-12 (-5 *2 (-1165 *6)) (-4 *6 (-945 *5 *3 *4)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-307)) (-5 *1 (-912 *3 *4 *5 *6)))) (-3551 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *6 *4 *5)) (-5 *1 (-912 *4 *5 *6 *2)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)))) (-3551 (*1 *2 *2 *2) (-12 (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-307)) (-5 *1 (-912 *3 *4 *5 *2)) (-4 *2 (-945 *5 *3 *4)))))
+(-10 -7 (-15 -3551 (|#4| |#4| |#4|)) (-15 -3551 (|#4| (-640 |#4|))) (-15 -3551 ((-1165 |#4|) (-1165 |#4|) (-1165 |#4|))) (-15 -3551 ((-1165 |#4|) (-640 (-1165 |#4|)))) (-15 -2289 (|#4| |#4| |#4|)) (-15 -2289 ((-1165 |#4|) (-1165 |#4|) (-1165 |#4|))) (-15 -2289 (|#4| (-640 |#4|))))
+((-2429 (((-900 (-563)) (-967)) 23) (((-900 (-563)) (-640 (-563))) 20)) (-2300 (((-900 (-563)) (-640 (-563))) 48) (((-900 (-563)) (-917)) 49)) (-2418 (((-900 (-563))) 24)) (-2395 (((-900 (-563))) 38) (((-900 (-563)) (-640 (-563))) 37)) (-2385 (((-900 (-563))) 36) (((-900 (-563)) (-640 (-563))) 35)) (-2372 (((-900 (-563))) 34) (((-900 (-563)) (-640 (-563))) 33)) (-2362 (((-900 (-563))) 32) (((-900 (-563)) (-640 (-563))) 31)) (-2353 (((-900 (-563))) 30) (((-900 (-563)) (-640 (-563))) 29)) (-2406 (((-900 (-563))) 40) (((-900 (-563)) (-640 (-563))) 39)) (-2342 (((-900 (-563)) (-640 (-563))) 52) (((-900 (-563)) (-917)) 53)) (-2331 (((-900 (-563)) (-640 (-563))) 50) (((-900 (-563)) (-917)) 51)) (-2312 (((-900 (-563)) (-640 (-563))) 46) (((-900 (-563)) (-917)) 47)) (-2322 (((-900 (-563)) (-640 (-917))) 43)))
+(((-913) (-10 -7 (-15 -2300 ((-900 (-563)) (-917))) (-15 -2300 ((-900 (-563)) (-640 (-563)))) (-15 -2312 ((-900 (-563)) (-917))) (-15 -2312 ((-900 (-563)) (-640 (-563)))) (-15 -2322 ((-900 (-563)) (-640 (-917)))) (-15 -2331 ((-900 (-563)) (-917))) (-15 -2331 ((-900 (-563)) (-640 (-563)))) (-15 -2342 ((-900 (-563)) (-917))) (-15 -2342 ((-900 (-563)) (-640 (-563)))) (-15 -2353 ((-900 (-563)) (-640 (-563)))) (-15 -2353 ((-900 (-563)))) (-15 -2362 ((-900 (-563)) (-640 (-563)))) (-15 -2362 ((-900 (-563)))) (-15 -2372 ((-900 (-563)) (-640 (-563)))) (-15 -2372 ((-900 (-563)))) (-15 -2385 ((-900 (-563)) (-640 (-563)))) (-15 -2385 ((-900 (-563)))) (-15 -2395 ((-900 (-563)) (-640 (-563)))) (-15 -2395 ((-900 (-563)))) (-15 -2406 ((-900 (-563)) (-640 (-563)))) (-15 -2406 ((-900 (-563)))) (-15 -2418 ((-900 (-563)))) (-15 -2429 ((-900 (-563)) (-640 (-563)))) (-15 -2429 ((-900 (-563)) (-967))))) (T -913))
+((-2429 (*1 *2 *3) (-12 (-5 *3 (-967)) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2429 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2418 (*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2406 (*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2406 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2395 (*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2395 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2385 (*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2385 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2372 (*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2372 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2362 (*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2362 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2353 (*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2353 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2342 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2342 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2331 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2331 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2322 (*1 *2 *3) (-12 (-5 *3 (-640 (-917))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2312 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2312 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2300 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))) (-2300 (*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
+(-10 -7 (-15 -2300 ((-900 (-563)) (-917))) (-15 -2300 ((-900 (-563)) (-640 (-563)))) (-15 -2312 ((-900 (-563)) (-917))) (-15 -2312 ((-900 (-563)) (-640 (-563)))) (-15 -2322 ((-900 (-563)) (-640 (-917)))) (-15 -2331 ((-900 (-563)) (-917))) (-15 -2331 ((-900 (-563)) (-640 (-563)))) (-15 -2342 ((-900 (-563)) (-917))) (-15 -2342 ((-900 (-563)) (-640 (-563)))) (-15 -2353 ((-900 (-563)) (-640 (-563)))) (-15 -2353 ((-900 (-563)))) (-15 -2362 ((-900 (-563)) (-640 (-563)))) (-15 -2362 ((-900 (-563)))) (-15 -2372 ((-900 (-563)) (-640 (-563)))) (-15 -2372 ((-900 (-563)))) (-15 -2385 ((-900 (-563)) (-640 (-563)))) (-15 -2385 ((-900 (-563)))) (-15 -2395 ((-900 (-563)) (-640 (-563)))) (-15 -2395 ((-900 (-563)))) (-15 -2406 ((-900 (-563)) (-640 (-563)))) (-15 -2406 ((-900 (-563)))) (-15 -2418 ((-900 (-563)))) (-15 -2429 ((-900 (-563)) (-640 (-563)))) (-15 -2429 ((-900 (-563)) (-967))))
+((-2451 (((-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169))) 12)) (-2440 (((-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169))) 11)))
+(((-914 |#1|) (-10 -7 (-15 -2440 ((-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -2451 ((-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169))))) (-452)) (T -914))
+((-2451 (*1 *2 *2 *3) (-12 (-5 *2 (-640 (-948 *4))) (-5 *3 (-640 (-1169))) (-4 *4 (-452)) (-5 *1 (-914 *4)))) (-2440 (*1 *2 *2 *3) (-12 (-5 *2 (-640 (-948 *4))) (-5 *3 (-640 (-1169))) (-4 *4 (-452)) (-5 *1 (-914 *4)))))
+(-10 -7 (-15 -2440 ((-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -2451 ((-640 (-948 |#1|)) (-640 (-948 |#1|)) (-640 (-1169)))))
+((-1692 (((-316 |#1|) (-477)) 16)))
+(((-915 |#1|) (-10 -7 (-15 -1692 ((-316 |#1|) (-477)))) (-13 (-846) (-555))) (T -915))
+((-1692 (*1 *2 *3) (-12 (-5 *3 (-477)) (-5 *2 (-316 *4)) (-5 *1 (-915 *4)) (-4 *4 (-13 (-846) (-555))))))
+(-10 -7 (-15 -1692 ((-316 |#1|) (-477))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 52)) (-3401 (((-112) $) 31)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-3012 (((-3 $ "failed") $ $) 43)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 40)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-916) (-140)) (T -916))
-((-3286 (*1 *2 *3) (-12 (-4 *1 (-916)) (-5 *2 (-2 (|:| -2311 (-640 *1)) (|:| -4333 *1))) (-5 *3 (-640 *1)))) (-1465 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-640 *1)) (-4 *1 (-916)))))
-(-13 (-452) (-10 -8 (-15 -3286 ((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $))) (-15 -1465 ((-3 (-640 $) "failed") (-640 $) $))))
+((-2474 (*1 *2 *3) (-12 (-4 *1 (-916)) (-5 *2 (-2 (|:| -2310 (-640 *1)) (|:| -4334 *1))) (-5 *3 (-640 *1)))) (-2461 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-640 *1)) (-4 *1 (-916)))))
+(-13 (-452) (-10 -8 (-15 -2474 ((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $))) (-15 -2461 ((-3 (-640 $) "failed") (-640 $) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-290) . T) ((-452) . T) ((-555) . T) ((-643 $) . T) ((-713 $) . T) ((-722) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-4239 (($) NIL T CONST)) (-3400 (((-3 $ "failed") $) NIL)) (-3827 (((-112) $) NIL)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3548 (($ $ $) NIL)) (-1693 (((-858) $) NIL)) (-2254 (($) NIL T CONST)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-767)) NIL) (($ $ (-917)) NIL)) (* (($ (-917) $) NIL) (($ $ $) NIL)))
-(((-917) (-13 (-790) (-722) (-10 -8 (-15 -3548 ($ $ $)) (-6 (-4409 "*"))))) (T -917))
-((-3548 (*1 *1 *1 *1) (-5 *1 (-917))))
-(-13 (-790) (-722) (-10 -8 (-15 -3548 ($ $ $)) (-6 (-4409 "*"))))
+((-1677 (((-112) $ $) NIL)) (-2569 (($) NIL T CONST)) (-3951 (((-3 $ "failed") $) NIL)) (-3401 (((-112) $) NIL)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3551 (($ $ $) NIL)) (-1692 (((-858) $) NIL)) (-2253 (($) NIL T CONST)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-767)) NIL) (($ $ (-917)) NIL)) (* (($ (-917) $) NIL) (($ $ $) NIL)))
+(((-917) (-13 (-790) (-722) (-10 -8 (-15 -3551 ($ $ $)) (-6 (-4410 "*"))))) (T -917))
+((-3551 (*1 *1 *1 *1) (-5 *1 (-917))))
+(-13 (-790) (-722) (-10 -8 (-15 -3551 ($ $ $)) (-6 (-4410 "*"))))
((|NonNegativeInteger|) (< 0 |#1|))
-((-2815 ((|#2| (-640 |#1|) (-640 |#1|)) 24)))
-(((-918 |#1| |#2|) (-10 -7 (-15 -2815 (|#2| (-640 |#1|) (-640 |#1|)))) (-363) (-1233 |#1|)) (T -918))
-((-2815 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-363)) (-4 *2 (-1233 *4)) (-5 *1 (-918 *4 *2)))))
-(-10 -7 (-15 -2815 (|#2| (-640 |#1|) (-640 |#1|))))
-((-3263 (((-1165 |#2|) (-640 |#2|) (-640 |#2|)) 17) (((-1230 |#1| |#2|) (-1230 |#1| |#2|) (-640 |#2|) (-640 |#2|)) 13)))
-(((-919 |#1| |#2|) (-10 -7 (-15 -3263 ((-1230 |#1| |#2|) (-1230 |#1| |#2|) (-640 |#2|) (-640 |#2|))) (-15 -3263 ((-1165 |#2|) (-640 |#2|) (-640 |#2|)))) (-1169) (-363)) (T -919))
-((-3263 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *5)) (-4 *5 (-363)) (-5 *2 (-1165 *5)) (-5 *1 (-919 *4 *5)) (-14 *4 (-1169)))) (-3263 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1230 *4 *5)) (-5 *3 (-640 *5)) (-14 *4 (-1169)) (-4 *5 (-363)) (-5 *1 (-919 *4 *5)))))
-(-10 -7 (-15 -3263 ((-1230 |#1| |#2|) (-1230 |#1| |#2|) (-640 |#2|) (-640 |#2|))) (-15 -3263 ((-1165 |#2|) (-640 |#2|) (-640 |#2|))))
-((-1670 (((-563) (-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-1151)) 139)) (-2511 ((|#4| |#4|) 155)) (-3833 (((-640 (-407 (-948 |#1|))) (-640 (-1169))) 119)) (-1400 (((-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))) (-684 |#4|) (-640 (-407 (-948 |#1|))) (-640 (-640 |#4|)) (-767) (-767) (-563)) 75)) (-1525 (((-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|)))))) (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|)))))) (-640 |#4|)) 59)) (-3059 (((-684 |#4|) (-684 |#4|) (-640 |#4|)) 55)) (-2938 (((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-1151)) 151)) (-3386 (((-563) (-684 |#4|) (-917) (-1151)) 133) (((-563) (-684 |#4|) (-640 (-1169)) (-917) (-1151)) 132) (((-563) (-684 |#4|) (-640 |#4|) (-917) (-1151)) 131) (((-563) (-684 |#4|) (-1151)) 128) (((-563) (-684 |#4|) (-640 (-1169)) (-1151)) 127) (((-563) (-684 |#4|) (-640 |#4|) (-1151)) 126) (((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-917)) 125) (((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 (-1169)) (-917)) 124) (((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 |#4|) (-917)) 123) (((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|)) 121) (((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 (-1169))) 120) (((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 |#4|)) 116)) (-3675 ((|#4| (-948 |#1|)) 68)) (-3844 (((-112) (-640 |#4|) (-640 (-640 |#4|))) 152)) (-1477 (((-640 (-640 (-563))) (-563) (-563)) 130)) (-3529 (((-640 (-640 |#4|)) (-640 (-640 |#4|))) 88)) (-2020 (((-767) (-640 (-2 (|:| -2522 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|))))) 86)) (-3460 (((-767) (-640 (-2 (|:| -2522 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|))))) 85)) (-3502 (((-112) (-640 (-948 |#1|))) 17) (((-112) (-640 |#4|)) 13)) (-1456 (((-2 (|:| |sysok| (-112)) (|:| |z0| (-640 |#4|)) (|:| |n0| (-640 |#4|))) (-640 |#4|) (-640 |#4|)) 71)) (-1716 (((-640 |#4|) |#4|) 49)) (-2464 (((-640 (-407 (-948 |#1|))) (-640 |#4|)) 115) (((-684 (-407 (-948 |#1|))) (-684 |#4|)) 56) (((-407 (-948 |#1|)) |#4|) 112)) (-4021 (((-2 (|:| |rgl| (-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|)))))))))) (|:| |rgsz| (-563))) (-684 |#4|) (-640 (-407 (-948 |#1|))) (-767) (-1151) (-563)) 93)) (-1499 (((-640 (-2 (|:| -2522 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|)))) (-684 |#4|) (-767)) 84)) (-2051 (((-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563))))) (-684 |#4|) (-767)) 102)) (-4297 (((-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|)))))) (-2 (|:| -2835 (-684 (-407 (-948 |#1|)))) (|:| |vec| (-640 (-407 (-948 |#1|)))) (|:| -2522 (-767)) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563))))) 48)))
-(((-920 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3386 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 |#4|))) (-15 -3386 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 (-1169)))) (-15 -3386 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|))) (-15 -3386 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 |#4|) (-917))) (-15 -3386 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 (-1169)) (-917))) (-15 -3386 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-917))) (-15 -3386 ((-563) (-684 |#4|) (-640 |#4|) (-1151))) (-15 -3386 ((-563) (-684 |#4|) (-640 (-1169)) (-1151))) (-15 -3386 ((-563) (-684 |#4|) (-1151))) (-15 -3386 ((-563) (-684 |#4|) (-640 |#4|) (-917) (-1151))) (-15 -3386 ((-563) (-684 |#4|) (-640 (-1169)) (-917) (-1151))) (-15 -3386 ((-563) (-684 |#4|) (-917) (-1151))) (-15 -1670 ((-563) (-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-1151))) (-15 -2938 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-1151))) (-15 -4021 ((-2 (|:| |rgl| (-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|)))))))))) (|:| |rgsz| (-563))) (-684 |#4|) (-640 (-407 (-948 |#1|))) (-767) (-1151) (-563))) (-15 -2464 ((-407 (-948 |#1|)) |#4|)) (-15 -2464 ((-684 (-407 (-948 |#1|))) (-684 |#4|))) (-15 -2464 ((-640 (-407 (-948 |#1|))) (-640 |#4|))) (-15 -3833 ((-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -3675 (|#4| (-948 |#1|))) (-15 -1456 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-640 |#4|)) (|:| |n0| (-640 |#4|))) (-640 |#4|) (-640 |#4|))) (-15 -1499 ((-640 (-2 (|:| -2522 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|)))) (-684 |#4|) (-767))) (-15 -1525 ((-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|)))))) (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|)))))) (-640 |#4|))) (-15 -4297 ((-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|)))))) (-2 (|:| -2835 (-684 (-407 (-948 |#1|)))) (|:| |vec| (-640 (-407 (-948 |#1|)))) (|:| -2522 (-767)) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (-15 -1716 ((-640 |#4|) |#4|)) (-15 -3460 ((-767) (-640 (-2 (|:| -2522 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|)))))) (-15 -2020 ((-767) (-640 (-2 (|:| -2522 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|)))))) (-15 -3529 ((-640 (-640 |#4|)) (-640 (-640 |#4|)))) (-15 -1477 ((-640 (-640 (-563))) (-563) (-563))) (-15 -3844 ((-112) (-640 |#4|) (-640 (-640 |#4|)))) (-15 -2051 ((-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563))))) (-684 |#4|) (-767))) (-15 -3059 ((-684 |#4|) (-684 |#4|) (-640 |#4|))) (-15 -1400 ((-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))) (-684 |#4|) (-640 (-407 (-948 |#1|))) (-640 (-640 |#4|)) (-767) (-767) (-563))) (-15 -2511 (|#4| |#4|)) (-15 -3502 ((-112) (-640 |#4|))) (-15 -3502 ((-112) (-640 (-948 |#1|))))) (-13 (-307) (-147)) (-13 (-846) (-611 (-1169))) (-789) (-945 |#1| |#3| |#2|)) (T -920))
-((-3502 (*1 *2 *3) (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-112)) (-5 *1 (-920 *4 *5 *6 *7)) (-4 *7 (-945 *4 *6 *5)))) (-3502 (*1 *2 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-112)) (-5 *1 (-920 *4 *5 *6 *7)))) (-2511 (*1 *2 *2) (-12 (-4 *3 (-13 (-307) (-147))) (-4 *4 (-13 (-846) (-611 (-1169)))) (-4 *5 (-789)) (-5 *1 (-920 *3 *4 *5 *2)) (-4 *2 (-945 *3 *5 *4)))) (-1400 (*1 *2 *3 *4 *5 *6 *7 *7 *8) (-12 (-5 *3 (-2 (|:| |det| *12) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563))))) (-5 *4 (-684 *12)) (-5 *5 (-640 (-407 (-948 *9)))) (-5 *6 (-640 (-640 *12))) (-5 *7 (-767)) (-5 *8 (-563)) (-4 *9 (-13 (-307) (-147))) (-4 *12 (-945 *9 *11 *10)) (-4 *10 (-13 (-846) (-611 (-1169)))) (-4 *11 (-789)) (-5 *2 (-2 (|:| |eqzro| (-640 *12)) (|:| |neqzro| (-640 *12)) (|:| |wcond| (-640 (-948 *9))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *9)))) (|:| -4315 (-640 (-1257 (-407 (-948 *9))))))))) (-5 *1 (-920 *9 *10 *11 *12)))) (-3059 (*1 *2 *2 *3) (-12 (-5 *2 (-684 *7)) (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *1 (-920 *4 *5 *6 *7)))) (-2051 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *8)) (-5 *4 (-767)) (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-640 (-2 (|:| |det| *8) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (-5 *1 (-920 *5 *6 *7 *8)))) (-3844 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-640 *8))) (-5 *3 (-640 *8)) (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-112)) (-5 *1 (-920 *5 *6 *7 *8)))) (-1477 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-640 (-640 (-563)))) (-5 *1 (-920 *4 *5 *6 *7)) (-5 *3 (-563)) (-4 *7 (-945 *4 *6 *5)))) (-3529 (*1 *2 *2) (-12 (-5 *2 (-640 (-640 *6))) (-4 *6 (-945 *3 *5 *4)) (-4 *3 (-13 (-307) (-147))) (-4 *4 (-13 (-846) (-611 (-1169)))) (-4 *5 (-789)) (-5 *1 (-920 *3 *4 *5 *6)))) (-2020 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -2522 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| *7) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 *7))))) (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-767)) (-5 *1 (-920 *4 *5 *6 *7)))) (-3460 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -2522 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| *7) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 *7))))) (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-767)) (-5 *1 (-920 *4 *5 *6 *7)))) (-1716 (*1 *2 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-640 *3)) (-5 *1 (-920 *4 *5 *6 *3)) (-4 *3 (-945 *4 *6 *5)))) (-4297 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -2835 (-684 (-407 (-948 *4)))) (|:| |vec| (-640 (-407 (-948 *4)))) (|:| -2522 (-767)) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563))))) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-2 (|:| |partsol| (-1257 (-407 (-948 *4)))) (|:| -4315 (-640 (-1257 (-407 (-948 *4))))))) (-5 *1 (-920 *4 *5 *6 *7)) (-4 *7 (-945 *4 *6 *5)))) (-1525 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1257 (-407 (-948 *4)))) (|:| -4315 (-640 (-1257 (-407 (-948 *4))))))) (-5 *3 (-640 *7)) (-4 *4 (-13 (-307) (-147))) (-4 *7 (-945 *4 *6 *5)) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *1 (-920 *4 *5 *6 *7)))) (-1499 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *8)) (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-640 (-2 (|:| -2522 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| *8) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 *8))))) (-5 *1 (-920 *5 *6 *7 *8)) (-5 *4 (-767)))) (-1456 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-4 *7 (-945 *4 *6 *5)) (-5 *2 (-2 (|:| |sysok| (-112)) (|:| |z0| (-640 *7)) (|:| |n0| (-640 *7)))) (-5 *1 (-920 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-3675 (*1 *2 *3) (-12 (-5 *3 (-948 *4)) (-4 *4 (-13 (-307) (-147))) (-4 *2 (-945 *4 *6 *5)) (-5 *1 (-920 *4 *5 *6 *2)) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)))) (-3833 (*1 *2 *3) (-12 (-5 *3 (-640 (-1169))) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-640 (-407 (-948 *4)))) (-5 *1 (-920 *4 *5 *6 *7)) (-4 *7 (-945 *4 *6 *5)))) (-2464 (*1 *2 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-640 (-407 (-948 *4)))) (-5 *1 (-920 *4 *5 *6 *7)))) (-2464 (*1 *2 *3) (-12 (-5 *3 (-684 *7)) (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-684 (-407 (-948 *4)))) (-5 *1 (-920 *4 *5 *6 *7)))) (-2464 (*1 *2 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-407 (-948 *4))) (-5 *1 (-920 *4 *5 *6 *3)) (-4 *3 (-945 *4 *6 *5)))) (-4021 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-684 *11)) (-5 *4 (-640 (-407 (-948 *8)))) (-5 *5 (-767)) (-5 *6 (-1151)) (-4 *8 (-13 (-307) (-147))) (-4 *11 (-945 *8 *10 *9)) (-4 *9 (-13 (-846) (-611 (-1169)))) (-4 *10 (-789)) (-5 *2 (-2 (|:| |rgl| (-640 (-2 (|:| |eqzro| (-640 *11)) (|:| |neqzro| (-640 *11)) (|:| |wcond| (-640 (-948 *8))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *8)))) (|:| -4315 (-640 (-1257 (-407 (-948 *8)))))))))) (|:| |rgsz| (-563)))) (-5 *1 (-920 *8 *9 *10 *11)) (-5 *7 (-563)))) (-2938 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-640 (-2 (|:| |eqzro| (-640 *7)) (|:| |neqzro| (-640 *7)) (|:| |wcond| (-640 (-948 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *4)))) (|:| -4315 (-640 (-1257 (-407 (-948 *4)))))))))) (-5 *1 (-920 *4 *5 *6 *7)) (-4 *7 (-945 *4 *6 *5)))) (-1670 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8)) (|:| |wcond| (-640 (-948 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *5)))) (|:| -4315 (-640 (-1257 (-407 (-948 *5)))))))))) (-5 *4 (-1151)) (-4 *5 (-13 (-307) (-147))) (-4 *8 (-945 *5 *7 *6)) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *5 *6 *7 *8)))) (-3386 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-684 *9)) (-5 *4 (-917)) (-5 *5 (-1151)) (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147))) (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *6 *7 *8 *9)))) (-3386 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-684 *10)) (-5 *4 (-640 (-1169))) (-5 *5 (-917)) (-5 *6 (-1151)) (-4 *10 (-945 *7 *9 *8)) (-4 *7 (-13 (-307) (-147))) (-4 *8 (-13 (-846) (-611 (-1169)))) (-4 *9 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *7 *8 *9 *10)))) (-3386 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-684 *10)) (-5 *4 (-640 *10)) (-5 *5 (-917)) (-5 *6 (-1151)) (-4 *10 (-945 *7 *9 *8)) (-4 *7 (-13 (-307) (-147))) (-4 *8 (-13 (-846) (-611 (-1169)))) (-4 *9 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *7 *8 *9 *10)))) (-3386 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *8)) (-5 *4 (-1151)) (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *5 *6 *7 *8)))) (-3386 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-684 *9)) (-5 *4 (-640 (-1169))) (-5 *5 (-1151)) (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147))) (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *6 *7 *8 *9)))) (-3386 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-684 *9)) (-5 *4 (-640 *9)) (-5 *5 (-1151)) (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147))) (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *6 *7 *8 *9)))) (-3386 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *8)) (-5 *4 (-917)) (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-640 (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8)) (|:| |wcond| (-640 (-948 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *5)))) (|:| -4315 (-640 (-1257 (-407 (-948 *5)))))))))) (-5 *1 (-920 *5 *6 *7 *8)))) (-3386 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-684 *9)) (-5 *4 (-640 (-1169))) (-5 *5 (-917)) (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147))) (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-640 (-2 (|:| |eqzro| (-640 *9)) (|:| |neqzro| (-640 *9)) (|:| |wcond| (-640 (-948 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *6)))) (|:| -4315 (-640 (-1257 (-407 (-948 *6)))))))))) (-5 *1 (-920 *6 *7 *8 *9)))) (-3386 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-684 *9)) (-5 *5 (-917)) (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147))) (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-640 (-2 (|:| |eqzro| (-640 *9)) (|:| |neqzro| (-640 *9)) (|:| |wcond| (-640 (-948 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *6)))) (|:| -4315 (-640 (-1257 (-407 (-948 *6)))))))))) (-5 *1 (-920 *6 *7 *8 *9)) (-5 *4 (-640 *9)))) (-3386 (*1 *2 *3) (-12 (-5 *3 (-684 *7)) (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-640 (-2 (|:| |eqzro| (-640 *7)) (|:| |neqzro| (-640 *7)) (|:| |wcond| (-640 (-948 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *4)))) (|:| -4315 (-640 (-1257 (-407 (-948 *4)))))))))) (-5 *1 (-920 *4 *5 *6 *7)))) (-3386 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *8)) (-5 *4 (-640 (-1169))) (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-640 (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8)) (|:| |wcond| (-640 (-948 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *5)))) (|:| -4315 (-640 (-1257 (-407 (-948 *5)))))))))) (-5 *1 (-920 *5 *6 *7 *8)))) (-3386 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *8)) (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-640 (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8)) (|:| |wcond| (-640 (-948 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *5)))) (|:| -4315 (-640 (-1257 (-407 (-948 *5)))))))))) (-5 *1 (-920 *5 *6 *7 *8)) (-5 *4 (-640 *8)))))
-(-10 -7 (-15 -3386 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 |#4|))) (-15 -3386 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 (-1169)))) (-15 -3386 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|))) (-15 -3386 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 |#4|) (-917))) (-15 -3386 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 (-1169)) (-917))) (-15 -3386 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-917))) (-15 -3386 ((-563) (-684 |#4|) (-640 |#4|) (-1151))) (-15 -3386 ((-563) (-684 |#4|) (-640 (-1169)) (-1151))) (-15 -3386 ((-563) (-684 |#4|) (-1151))) (-15 -3386 ((-563) (-684 |#4|) (-640 |#4|) (-917) (-1151))) (-15 -3386 ((-563) (-684 |#4|) (-640 (-1169)) (-917) (-1151))) (-15 -3386 ((-563) (-684 |#4|) (-917) (-1151))) (-15 -1670 ((-563) (-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-1151))) (-15 -2938 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|))))))))) (-1151))) (-15 -4021 ((-2 (|:| |rgl| (-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|)))))))))) (|:| |rgsz| (-563))) (-684 |#4|) (-640 (-407 (-948 |#1|))) (-767) (-1151) (-563))) (-15 -2464 ((-407 (-948 |#1|)) |#4|)) (-15 -2464 ((-684 (-407 (-948 |#1|))) (-684 |#4|))) (-15 -2464 ((-640 (-407 (-948 |#1|))) (-640 |#4|))) (-15 -3833 ((-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -3675 (|#4| (-948 |#1|))) (-15 -1456 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-640 |#4|)) (|:| |n0| (-640 |#4|))) (-640 |#4|) (-640 |#4|))) (-15 -1499 ((-640 (-2 (|:| -2522 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|)))) (-684 |#4|) (-767))) (-15 -1525 ((-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|)))))) (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|)))))) (-640 |#4|))) (-15 -4297 ((-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|)))))) (-2 (|:| -2835 (-684 (-407 (-948 |#1|)))) (|:| |vec| (-640 (-407 (-948 |#1|)))) (|:| -2522 (-767)) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (-15 -1716 ((-640 |#4|) |#4|)) (-15 -3460 ((-767) (-640 (-2 (|:| -2522 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|)))))) (-15 -2020 ((-767) (-640 (-2 (|:| -2522 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|)))))) (-15 -3529 ((-640 (-640 |#4|)) (-640 (-640 |#4|)))) (-15 -1477 ((-640 (-640 (-563))) (-563) (-563))) (-15 -3844 ((-112) (-640 |#4|) (-640 (-640 |#4|)))) (-15 -2051 ((-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563))))) (-684 |#4|) (-767))) (-15 -3059 ((-684 |#4|) (-684 |#4|) (-640 |#4|))) (-15 -1400 ((-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4315 (-640 (-1257 (-407 (-948 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))) (-684 |#4|) (-640 (-407 (-948 |#1|))) (-640 (-640 |#4|)) (-767) (-767) (-563))) (-15 -2511 (|#4| |#4|)) (-15 -3502 ((-112) (-640 |#4|))) (-15 -3502 ((-112) (-640 (-948 |#1|)))))
-((-3163 (((-923) |#1| (-1169)) 17) (((-923) |#1| (-1169) (-1087 (-225))) 21)) (-3590 (((-923) |#1| |#1| (-1169) (-1087 (-225))) 19) (((-923) |#1| (-1169) (-1087 (-225))) 15)))
-(((-921 |#1|) (-10 -7 (-15 -3590 ((-923) |#1| (-1169) (-1087 (-225)))) (-15 -3590 ((-923) |#1| |#1| (-1169) (-1087 (-225)))) (-15 -3163 ((-923) |#1| (-1169) (-1087 (-225)))) (-15 -3163 ((-923) |#1| (-1169)))) (-611 (-536))) (T -921))
-((-3163 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-5 *2 (-923)) (-5 *1 (-921 *3)) (-4 *3 (-611 (-536))))) (-3163 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1169)) (-5 *5 (-1087 (-225))) (-5 *2 (-923)) (-5 *1 (-921 *3)) (-4 *3 (-611 (-536))))) (-3590 (*1 *2 *3 *3 *4 *5) (-12 (-5 *4 (-1169)) (-5 *5 (-1087 (-225))) (-5 *2 (-923)) (-5 *1 (-921 *3)) (-4 *3 (-611 (-536))))) (-3590 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1169)) (-5 *5 (-1087 (-225))) (-5 *2 (-923)) (-5 *1 (-921 *3)) (-4 *3 (-611 (-536))))))
-(-10 -7 (-15 -3590 ((-923) |#1| (-1169) (-1087 (-225)))) (-15 -3590 ((-923) |#1| |#1| (-1169) (-1087 (-225)))) (-15 -3163 ((-923) |#1| (-1169) (-1087 (-225)))) (-15 -3163 ((-923) |#1| (-1169))))
-((-3236 (($ $ (-1087 (-225)) (-1087 (-225)) (-1087 (-225))) 69)) (-4334 (((-1087 (-225)) $) 40)) (-4324 (((-1087 (-225)) $) 39)) (-4313 (((-1087 (-225)) $) 38)) (-1331 (((-640 (-640 (-225))) $) 43)) (-1993 (((-1087 (-225)) $) 41)) (-2450 (((-563) (-563)) 32)) (-1575 (((-563) (-563)) 28)) (-3371 (((-563) (-563)) 30)) (-3870 (((-112) (-112)) 35)) (-3472 (((-563)) 31)) (-1441 (($ $ (-1087 (-225))) 72) (($ $) 73)) (-3544 (($ (-1 (-939 (-225)) (-225)) (-1087 (-225))) 77) (($ (-1 (-939 (-225)) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225))) 78)) (-3590 (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225))) 80) (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225))) 81) (($ $ (-1087 (-225))) 75)) (-3663 (((-563)) 36)) (-4235 (((-563)) 27)) (-2264 (((-563)) 29)) (-4250 (((-640 (-640 (-939 (-225)))) $) 93)) (-1488 (((-112) (-112)) 37)) (-1693 (((-858) $) 92)) (-2684 (((-112)) 34)))
-(((-922) (-13 (-970) (-10 -8 (-15 -3544 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)))) (-15 -3544 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -3590 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)))) (-15 -3590 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -3590 ($ $ (-1087 (-225)))) (-15 -3236 ($ $ (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -1441 ($ $ (-1087 (-225)))) (-15 -1441 ($ $)) (-15 -1993 ((-1087 (-225)) $)) (-15 -1331 ((-640 (-640 (-225))) $)) (-15 -4235 ((-563))) (-15 -1575 ((-563) (-563))) (-15 -2264 ((-563))) (-15 -3371 ((-563) (-563))) (-15 -3472 ((-563))) (-15 -2450 ((-563) (-563))) (-15 -2684 ((-112))) (-15 -3870 ((-112) (-112))) (-15 -3663 ((-563))) (-15 -1488 ((-112) (-112)))))) (T -922))
-((-3544 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-922)))) (-3544 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-922)))) (-3590 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-922)))) (-3590 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-922)))) (-3590 (*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922)))) (-3236 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922)))) (-1441 (*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922)))) (-1441 (*1 *1 *1) (-5 *1 (-922))) (-1993 (*1 *2 *1) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922)))) (-1331 (*1 *2 *1) (-12 (-5 *2 (-640 (-640 (-225)))) (-5 *1 (-922)))) (-4235 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))) (-1575 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))) (-2264 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))) (-3371 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))) (-3472 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))) (-2450 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))) (-2684 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))) (-3870 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))) (-3663 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))) (-1488 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
-(-13 (-970) (-10 -8 (-15 -3544 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)))) (-15 -3544 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -3590 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)))) (-15 -3590 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -3590 ($ $ (-1087 (-225)))) (-15 -3236 ($ $ (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -1441 ($ $ (-1087 (-225)))) (-15 -1441 ($ $)) (-15 -1993 ((-1087 (-225)) $)) (-15 -1331 ((-640 (-640 (-225))) $)) (-15 -4235 ((-563))) (-15 -1575 ((-563) (-563))) (-15 -2264 ((-563))) (-15 -3371 ((-563) (-563))) (-15 -3472 ((-563))) (-15 -2450 ((-563) (-563))) (-15 -2684 ((-112))) (-15 -3870 ((-112) (-112))) (-15 -3663 ((-563))) (-15 -1488 ((-112) (-112)))))
-((-3236 (($ $ (-1087 (-225))) 69) (($ $ (-1087 (-225)) (-1087 (-225))) 70)) (-4324 (((-1087 (-225)) $) 44)) (-4313 (((-1087 (-225)) $) 43)) (-1993 (((-1087 (-225)) $) 45)) (-2570 (((-563) (-563)) 37)) (-1731 (((-563) (-563)) 33)) (-2554 (((-563) (-563)) 35)) (-4332 (((-112) (-112)) 39)) (-2355 (((-563)) 36)) (-1441 (($ $ (-1087 (-225))) 73) (($ $) 74)) (-3544 (($ (-1 (-939 (-225)) (-225)) (-1087 (-225))) 83) (($ (-1 (-939 (-225)) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225))) 84)) (-3163 (($ (-1 (-225) (-225)) (-1087 (-225))) 91) (($ (-1 (-225) (-225))) 94)) (-3590 (($ (-1 (-225) (-225)) (-1087 (-225))) 78) (($ (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225))) 79) (($ (-640 (-1 (-225) (-225))) (-1087 (-225))) 86) (($ (-640 (-1 (-225) (-225))) (-1087 (-225)) (-1087 (-225))) 87) (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225))) 80) (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225))) 81) (($ $ (-1087 (-225))) 75)) (-1621 (((-112) $) 40)) (-3924 (((-563)) 41)) (-4011 (((-563)) 32)) (-1535 (((-563)) 34)) (-4250 (((-640 (-640 (-939 (-225)))) $) 23)) (-3199 (((-112) (-112)) 42)) (-1693 (((-858) $) 105)) (-3641 (((-112)) 38)))
-(((-923) (-13 (-951) (-10 -8 (-15 -3590 ($ (-1 (-225) (-225)) (-1087 (-225)))) (-15 -3590 ($ (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -3590 ($ (-640 (-1 (-225) (-225))) (-1087 (-225)))) (-15 -3590 ($ (-640 (-1 (-225) (-225))) (-1087 (-225)) (-1087 (-225)))) (-15 -3590 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)))) (-15 -3590 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -3544 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)))) (-15 -3544 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -3163 ($ (-1 (-225) (-225)) (-1087 (-225)))) (-15 -3163 ($ (-1 (-225) (-225)))) (-15 -3590 ($ $ (-1087 (-225)))) (-15 -1621 ((-112) $)) (-15 -3236 ($ $ (-1087 (-225)))) (-15 -3236 ($ $ (-1087 (-225)) (-1087 (-225)))) (-15 -1441 ($ $ (-1087 (-225)))) (-15 -1441 ($ $)) (-15 -1993 ((-1087 (-225)) $)) (-15 -4011 ((-563))) (-15 -1731 ((-563) (-563))) (-15 -1535 ((-563))) (-15 -2554 ((-563) (-563))) (-15 -2355 ((-563))) (-15 -2570 ((-563) (-563))) (-15 -3641 ((-112))) (-15 -4332 ((-112) (-112))) (-15 -3924 ((-563))) (-15 -3199 ((-112) (-112)))))) (T -923))
-((-3590 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-3590 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-3590 (*1 *1 *2 *3) (-12 (-5 *2 (-640 (-1 (-225) (-225)))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-3590 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-640 (-1 (-225) (-225)))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-3590 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-3590 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-3544 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-3544 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-3163 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-3163 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-923)))) (-3590 (*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923)))) (-1621 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-923)))) (-3236 (*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923)))) (-3236 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923)))) (-1441 (*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923)))) (-1441 (*1 *1 *1) (-5 *1 (-923))) (-1993 (*1 *2 *1) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923)))) (-4011 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))) (-1731 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))) (-1535 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))) (-2554 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))) (-2355 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))) (-2570 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))) (-3641 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-923)))) (-4332 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-923)))) (-3924 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))) (-3199 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-923)))))
-(-13 (-951) (-10 -8 (-15 -3590 ($ (-1 (-225) (-225)) (-1087 (-225)))) (-15 -3590 ($ (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -3590 ($ (-640 (-1 (-225) (-225))) (-1087 (-225)))) (-15 -3590 ($ (-640 (-1 (-225) (-225))) (-1087 (-225)) (-1087 (-225)))) (-15 -3590 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)))) (-15 -3590 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -3544 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)))) (-15 -3544 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -3163 ($ (-1 (-225) (-225)) (-1087 (-225)))) (-15 -3163 ($ (-1 (-225) (-225)))) (-15 -3590 ($ $ (-1087 (-225)))) (-15 -1621 ((-112) $)) (-15 -3236 ($ $ (-1087 (-225)))) (-15 -3236 ($ $ (-1087 (-225)) (-1087 (-225)))) (-15 -1441 ($ $ (-1087 (-225)))) (-15 -1441 ($ $)) (-15 -1993 ((-1087 (-225)) $)) (-15 -4011 ((-563))) (-15 -1731 ((-563) (-563))) (-15 -1535 ((-563))) (-15 -2554 ((-563) (-563))) (-15 -2355 ((-563))) (-15 -2570 ((-563) (-563))) (-15 -3641 ((-112))) (-15 -4332 ((-112) (-112))) (-15 -3924 ((-563))) (-15 -3199 ((-112) (-112)))))
-((-3949 (((-640 (-1087 (-225))) (-640 (-640 (-939 (-225))))) 24)))
-(((-924) (-10 -7 (-15 -3949 ((-640 (-1087 (-225))) (-640 (-640 (-939 (-225)))))))) (T -924))
-((-3949 (*1 *2 *3) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *2 (-640 (-1087 (-225)))) (-5 *1 (-924)))))
-(-10 -7 (-15 -3949 ((-640 (-1087 (-225))) (-640 (-640 (-939 (-225)))))))
-((-3902 ((|#2| |#2|) 26)) (-1883 ((|#2| |#2|) 27)) (-2669 ((|#2| |#2|) 25)) (-2295 ((|#2| |#2| (-1151)) 24)))
-(((-925 |#1| |#2|) (-10 -7 (-15 -2295 (|#2| |#2| (-1151))) (-15 -2669 (|#2| |#2|)) (-15 -3902 (|#2| |#2|)) (-15 -1883 (|#2| |#2|))) (-846) (-430 |#1|)) (T -925))
-((-1883 (*1 *2 *2) (-12 (-4 *3 (-846)) (-5 *1 (-925 *3 *2)) (-4 *2 (-430 *3)))) (-3902 (*1 *2 *2) (-12 (-4 *3 (-846)) (-5 *1 (-925 *3 *2)) (-4 *2 (-430 *3)))) (-2669 (*1 *2 *2) (-12 (-4 *3 (-846)) (-5 *1 (-925 *3 *2)) (-4 *2 (-430 *3)))) (-2295 (*1 *2 *2 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-846)) (-5 *1 (-925 *4 *2)) (-4 *2 (-430 *4)))))
-(-10 -7 (-15 -2295 (|#2| |#2| (-1151))) (-15 -2669 (|#2| |#2|)) (-15 -3902 (|#2| |#2|)) (-15 -1883 (|#2| |#2|)))
-((-3902 (((-316 (-563)) (-1169)) 16)) (-1883 (((-316 (-563)) (-1169)) 14)) (-2669 (((-316 (-563)) (-1169)) 12)) (-2295 (((-316 (-563)) (-1169) (-1151)) 19)))
-(((-926) (-10 -7 (-15 -2295 ((-316 (-563)) (-1169) (-1151))) (-15 -2669 ((-316 (-563)) (-1169))) (-15 -3902 ((-316 (-563)) (-1169))) (-15 -1883 ((-316 (-563)) (-1169))))) (T -926))
-((-1883 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-316 (-563))) (-5 *1 (-926)))) (-3902 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-316 (-563))) (-5 *1 (-926)))) (-2669 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-316 (-563))) (-5 *1 (-926)))) (-2295 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-1151)) (-5 *2 (-316 (-563))) (-5 *1 (-926)))))
-(-10 -7 (-15 -2295 ((-316 (-563)) (-1169) (-1151))) (-15 -2669 ((-316 (-563)) (-1169))) (-15 -3902 ((-316 (-563)) (-1169))) (-15 -1883 ((-316 (-563)) (-1169))))
-((-3787 (((-885 |#1| |#3|) |#2| (-888 |#1|) (-885 |#1| |#3|)) 25)) (-4310 (((-1 (-112) |#2|) (-1 (-112) |#3|)) 13)))
-(((-927 |#1| |#2| |#3|) (-10 -7 (-15 -4310 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -3787 ((-885 |#1| |#3|) |#2| (-888 |#1|) (-885 |#1| |#3|)))) (-1093) (-882 |#1|) (-13 (-1093) (-1034 |#2|))) (T -927))
-((-3787 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 *6)) (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-4 *6 (-13 (-1093) (-1034 *3))) (-4 *3 (-882 *5)) (-5 *1 (-927 *5 *3 *6)))) (-4310 (*1 *2 *3) (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1093) (-1034 *5))) (-4 *5 (-882 *4)) (-4 *4 (-1093)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-927 *4 *5 *6)))))
-(-10 -7 (-15 -4310 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -3787 ((-885 |#1| |#3|) |#2| (-888 |#1|) (-885 |#1| |#3|))))
-((-3787 (((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)) 30)))
-(((-928 |#1| |#2| |#3|) (-10 -7 (-15 -3787 ((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)))) (-1093) (-13 (-555) (-846) (-882 |#1|)) (-13 (-430 |#2|) (-611 (-888 |#1|)) (-882 |#1|) (-1034 (-609 $)))) (T -928))
-((-3787 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 *3)) (-4 *5 (-1093)) (-4 *3 (-13 (-430 *6) (-611 *4) (-882 *5) (-1034 (-609 $)))) (-5 *4 (-888 *5)) (-4 *6 (-13 (-555) (-846) (-882 *5))) (-5 *1 (-928 *5 *6 *3)))))
-(-10 -7 (-15 -3787 ((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|))))
-((-3787 (((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|)) 13)))
-(((-929 |#1|) (-10 -7 (-15 -3787 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|)))) (-545)) (T -929))
-((-3787 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 (-563) *3)) (-5 *4 (-888 (-563))) (-4 *3 (-545)) (-5 *1 (-929 *3)))))
-(-10 -7 (-15 -3787 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))))
-((-3787 (((-885 |#1| |#2|) (-609 |#2|) (-888 |#1|) (-885 |#1| |#2|)) 52)))
-(((-930 |#1| |#2|) (-10 -7 (-15 -3787 ((-885 |#1| |#2|) (-609 |#2|) (-888 |#1|) (-885 |#1| |#2|)))) (-1093) (-13 (-846) (-1034 (-609 $)) (-611 (-888 |#1|)) (-882 |#1|))) (T -930))
-((-3787 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 *6)) (-5 *3 (-609 *6)) (-4 *5 (-1093)) (-4 *6 (-13 (-846) (-1034 (-609 $)) (-611 *4) (-882 *5))) (-5 *4 (-888 *5)) (-5 *1 (-930 *5 *6)))))
-(-10 -7 (-15 -3787 ((-885 |#1| |#2|) (-609 |#2|) (-888 |#1|) (-885 |#1| |#2|))))
-((-3787 (((-881 |#1| |#2| |#3|) |#3| (-888 |#1|) (-881 |#1| |#2| |#3|)) 15)))
-(((-931 |#1| |#2| |#3|) (-10 -7 (-15 -3787 ((-881 |#1| |#2| |#3|) |#3| (-888 |#1|) (-881 |#1| |#2| |#3|)))) (-1093) (-882 |#1|) (-661 |#2|)) (T -931))
-((-3787 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-881 *5 *6 *3)) (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-4 *6 (-882 *5)) (-4 *3 (-661 *6)) (-5 *1 (-931 *5 *6 *3)))))
-(-10 -7 (-15 -3787 ((-881 |#1| |#2| |#3|) |#3| (-888 |#1|) (-881 |#1| |#2| |#3|))))
-((-3787 (((-885 |#1| |#5|) |#5| (-888 |#1|) (-885 |#1| |#5|)) 17 (|has| |#3| (-882 |#1|))) (((-885 |#1| |#5|) |#5| (-888 |#1|) (-885 |#1| |#5|) (-1 (-885 |#1| |#5|) |#3| (-888 |#1|) (-885 |#1| |#5|))) 16)))
-(((-932 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3787 ((-885 |#1| |#5|) |#5| (-888 |#1|) (-885 |#1| |#5|) (-1 (-885 |#1| |#5|) |#3| (-888 |#1|) (-885 |#1| |#5|)))) (IF (|has| |#3| (-882 |#1|)) (-15 -3787 ((-885 |#1| |#5|) |#5| (-888 |#1|) (-885 |#1| |#5|))) |%noBranch|)) (-1093) (-789) (-846) (-13 (-1045) (-846) (-882 |#1|)) (-13 (-945 |#4| |#2| |#3|) (-611 (-888 |#1|)))) (T -932))
-((-3787 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 *3)) (-4 *5 (-1093)) (-4 *3 (-13 (-945 *8 *6 *7) (-611 *4))) (-5 *4 (-888 *5)) (-4 *7 (-882 *5)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-13 (-1045) (-846) (-882 *5))) (-5 *1 (-932 *5 *6 *7 *8 *3)))) (-3787 (*1 *2 *3 *4 *2 *5) (-12 (-5 *5 (-1 (-885 *6 *3) *8 (-888 *6) (-885 *6 *3))) (-4 *8 (-846)) (-5 *2 (-885 *6 *3)) (-5 *4 (-888 *6)) (-4 *6 (-1093)) (-4 *3 (-13 (-945 *9 *7 *8) (-611 *4))) (-4 *7 (-789)) (-4 *9 (-13 (-1045) (-846) (-882 *6))) (-5 *1 (-932 *6 *7 *8 *9 *3)))))
-(-10 -7 (-15 -3787 ((-885 |#1| |#5|) |#5| (-888 |#1|) (-885 |#1| |#5|) (-1 (-885 |#1| |#5|) |#3| (-888 |#1|) (-885 |#1| |#5|)))) (IF (|has| |#3| (-882 |#1|)) (-15 -3787 ((-885 |#1| |#5|) |#5| (-888 |#1|) (-885 |#1| |#5|))) |%noBranch|))
-((-1959 ((|#2| |#2| (-640 (-1 (-112) |#3|))) 12) ((|#2| |#2| (-1 (-112) |#3|)) 13)))
-(((-933 |#1| |#2| |#3|) (-10 -7 (-15 -1959 (|#2| |#2| (-1 (-112) |#3|))) (-15 -1959 (|#2| |#2| (-640 (-1 (-112) |#3|))))) (-846) (-430 |#1|) (-1208)) (T -933))
-((-1959 (*1 *2 *2 *3) (-12 (-5 *3 (-640 (-1 (-112) *5))) (-4 *5 (-1208)) (-4 *4 (-846)) (-5 *1 (-933 *4 *2 *5)) (-4 *2 (-430 *4)))) (-1959 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1208)) (-4 *4 (-846)) (-5 *1 (-933 *4 *2 *5)) (-4 *2 (-430 *4)))))
-(-10 -7 (-15 -1959 (|#2| |#2| (-1 (-112) |#3|))) (-15 -1959 (|#2| |#2| (-640 (-1 (-112) |#3|)))))
-((-1959 (((-316 (-563)) (-1169) (-640 (-1 (-112) |#1|))) 18) (((-316 (-563)) (-1169) (-1 (-112) |#1|)) 15)))
-(((-934 |#1|) (-10 -7 (-15 -1959 ((-316 (-563)) (-1169) (-1 (-112) |#1|))) (-15 -1959 ((-316 (-563)) (-1169) (-640 (-1 (-112) |#1|))))) (-1208)) (T -934))
-((-1959 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-640 (-1 (-112) *5))) (-4 *5 (-1208)) (-5 *2 (-316 (-563))) (-5 *1 (-934 *5)))) (-1959 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1208)) (-5 *2 (-316 (-563))) (-5 *1 (-934 *5)))))
-(-10 -7 (-15 -1959 ((-316 (-563)) (-1169) (-1 (-112) |#1|))) (-15 -1959 ((-316 (-563)) (-1169) (-640 (-1 (-112) |#1|)))))
-((-3787 (((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)) 25)))
-(((-935 |#1| |#2| |#3|) (-10 -7 (-15 -3787 ((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)))) (-1093) (-13 (-555) (-882 |#1|) (-611 (-888 |#1|))) (-988 |#2|)) (T -935))
-((-3787 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 *3)) (-4 *5 (-1093)) (-4 *3 (-988 *6)) (-4 *6 (-13 (-555) (-882 *5) (-611 *4))) (-5 *4 (-888 *5)) (-5 *1 (-935 *5 *6 *3)))))
-(-10 -7 (-15 -3787 ((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|))))
-((-3787 (((-885 |#1| (-1169)) (-1169) (-888 |#1|) (-885 |#1| (-1169))) 17)))
-(((-936 |#1|) (-10 -7 (-15 -3787 ((-885 |#1| (-1169)) (-1169) (-888 |#1|) (-885 |#1| (-1169))))) (-1093)) (T -936))
-((-3787 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 (-1169))) (-5 *3 (-1169)) (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-5 *1 (-936 *5)))))
-(-10 -7 (-15 -3787 ((-885 |#1| (-1169)) (-1169) (-888 |#1|) (-885 |#1| (-1169)))))
-((-1682 (((-885 |#1| |#3|) (-640 |#3|) (-640 (-888 |#1|)) (-885 |#1| |#3|) (-1 (-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|))) 33)) (-3787 (((-885 |#1| |#3|) (-640 |#3|) (-640 (-888 |#1|)) (-1 |#3| (-640 |#3|)) (-885 |#1| |#3|) (-1 (-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|))) 32)))
-(((-937 |#1| |#2| |#3|) (-10 -7 (-15 -3787 ((-885 |#1| |#3|) (-640 |#3|) (-640 (-888 |#1|)) (-1 |#3| (-640 |#3|)) (-885 |#1| |#3|) (-1 (-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)))) (-15 -1682 ((-885 |#1| |#3|) (-640 |#3|) (-640 (-888 |#1|)) (-885 |#1| |#3|) (-1 (-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|))))) (-1093) (-13 (-1045) (-846)) (-13 (-1045) (-611 (-888 |#1|)) (-1034 |#2|))) (T -937))
-((-1682 (*1 *2 *3 *4 *2 *5) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 (-888 *6))) (-5 *5 (-1 (-885 *6 *8) *8 (-888 *6) (-885 *6 *8))) (-4 *6 (-1093)) (-4 *8 (-13 (-1045) (-611 (-888 *6)) (-1034 *7))) (-5 *2 (-885 *6 *8)) (-4 *7 (-13 (-1045) (-846))) (-5 *1 (-937 *6 *7 *8)))) (-3787 (*1 *2 *3 *4 *5 *2 *6) (-12 (-5 *4 (-640 (-888 *7))) (-5 *5 (-1 *9 (-640 *9))) (-5 *6 (-1 (-885 *7 *9) *9 (-888 *7) (-885 *7 *9))) (-4 *7 (-1093)) (-4 *9 (-13 (-1045) (-611 (-888 *7)) (-1034 *8))) (-5 *2 (-885 *7 *9)) (-5 *3 (-640 *9)) (-4 *8 (-13 (-1045) (-846))) (-5 *1 (-937 *7 *8 *9)))))
-(-10 -7 (-15 -3787 ((-885 |#1| |#3|) (-640 |#3|) (-640 (-888 |#1|)) (-1 |#3| (-640 |#3|)) (-885 |#1| |#3|) (-1 (-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)))) (-15 -1682 ((-885 |#1| |#3|) (-640 |#3|) (-640 (-888 |#1|)) (-885 |#1| |#3|) (-1 (-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)))))
-((-3055 (((-1165 (-407 (-563))) (-563)) 62)) (-3427 (((-1165 (-563)) (-563)) 65)) (-2209 (((-1165 (-563)) (-563)) 59)) (-2140 (((-563) (-1165 (-563))) 54)) (-2086 (((-1165 (-407 (-563))) (-563)) 48)) (-3952 (((-1165 (-563)) (-563)) 37)) (-3265 (((-1165 (-563)) (-563)) 67)) (-3932 (((-1165 (-563)) (-563)) 66)) (-2892 (((-1165 (-407 (-563))) (-563)) 50)))
-(((-938) (-10 -7 (-15 -2892 ((-1165 (-407 (-563))) (-563))) (-15 -3932 ((-1165 (-563)) (-563))) (-15 -3265 ((-1165 (-563)) (-563))) (-15 -3952 ((-1165 (-563)) (-563))) (-15 -2086 ((-1165 (-407 (-563))) (-563))) (-15 -2140 ((-563) (-1165 (-563)))) (-15 -2209 ((-1165 (-563)) (-563))) (-15 -3427 ((-1165 (-563)) (-563))) (-15 -3055 ((-1165 (-407 (-563))) (-563))))) (T -938))
-((-3055 (*1 *2 *3) (-12 (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-938)) (-5 *3 (-563)))) (-3427 (*1 *2 *3) (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))) (-2209 (*1 *2 *3) (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))) (-2140 (*1 *2 *3) (-12 (-5 *3 (-1165 (-563))) (-5 *2 (-563)) (-5 *1 (-938)))) (-2086 (*1 *2 *3) (-12 (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-938)) (-5 *3 (-563)))) (-3952 (*1 *2 *3) (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))) (-3265 (*1 *2 *3) (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))) (-3932 (*1 *2 *3) (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))) (-2892 (*1 *2 *3) (-12 (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-938)) (-5 *3 (-563)))))
-(-10 -7 (-15 -2892 ((-1165 (-407 (-563))) (-563))) (-15 -3932 ((-1165 (-563)) (-563))) (-15 -3265 ((-1165 (-563)) (-563))) (-15 -3952 ((-1165 (-563)) (-563))) (-15 -2086 ((-1165 (-407 (-563))) (-563))) (-15 -2140 ((-563) (-1165 (-563)))) (-15 -2209 ((-1165 (-563)) (-563))) (-15 -3427 ((-1165 (-563)) (-563))) (-15 -3055 ((-1165 (-407 (-563))) (-563))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3212 (($ (-767)) NIL (|has| |#1| (-23)))) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-3523 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-2770 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4408))) (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-846))))) (-1642 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) |#1|) 11 (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) NIL)) (-4368 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-3014 (($ (-640 |#1|)) 13)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-3982 (((-684 |#1|) $ $) NIL (|has| |#1| (-1045)))) (-1566 (($ (-767) |#1|) 8)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) 10 (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-3164 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-846)))) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1607 ((|#1| $) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1045))))) (-2382 (((-112) $ (-767)) NIL)) (-3415 ((|#1| $) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1045))))) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3396 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3781 ((|#1| $) NIL (|has| (-563) (-846)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2358 (($ $ |#1|) NIL (|has| $ (-6 -4408)))) (-3320 (($ $ (-640 |#1|)) 26)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) 20) (($ $ (-1224 (-563))) NIL)) (-4092 ((|#1| $ $) NIL (|has| |#1| (-1045)))) (-3533 (((-917) $) 16)) (-2963 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1627 (($ $ $) 24)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3076 (($ $ $ (-563)) NIL (|has| $ (-6 -4408)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| |#1| (-611 (-536)))) (($ (-640 |#1|)) 17)) (-1707 (($ (-640 |#1|)) NIL)) (-2853 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 25) (($ (-640 $)) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1826 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1814 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-563) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-722))) (($ $ |#1|) NIL (|has| |#1| (-722)))) (-3608 (((-767) $) 14 (|has| $ (-6 -4407)))))
+((-2485 ((|#2| (-640 |#1|) (-640 |#1|)) 24)))
+(((-918 |#1| |#2|) (-10 -7 (-15 -2485 (|#2| (-640 |#1|) (-640 |#1|)))) (-363) (-1233 |#1|)) (T -918))
+((-2485 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-363)) (-4 *2 (-1233 *4)) (-5 *1 (-918 *4 *2)))))
+(-10 -7 (-15 -2485 (|#2| (-640 |#1|) (-640 |#1|))))
+((-1908 (((-1165 |#2|) (-640 |#2|) (-640 |#2|)) 17) (((-1230 |#1| |#2|) (-1230 |#1| |#2|) (-640 |#2|) (-640 |#2|)) 13)))
+(((-919 |#1| |#2|) (-10 -7 (-15 -1908 ((-1230 |#1| |#2|) (-1230 |#1| |#2|) (-640 |#2|) (-640 |#2|))) (-15 -1908 ((-1165 |#2|) (-640 |#2|) (-640 |#2|)))) (-1169) (-363)) (T -919))
+((-1908 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *5)) (-4 *5 (-363)) (-5 *2 (-1165 *5)) (-5 *1 (-919 *4 *5)) (-14 *4 (-1169)))) (-1908 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1230 *4 *5)) (-5 *3 (-640 *5)) (-14 *4 (-1169)) (-4 *5 (-363)) (-5 *1 (-919 *4 *5)))))
+(-10 -7 (-15 -1908 ((-1230 |#1| |#2|) (-1230 |#1| |#2|) (-640 |#2|) (-640 |#2|))) (-15 -1908 ((-1165 |#2|) (-640 |#2|) (-640 |#2|))))
+((-2506 (((-563) (-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-1151)) 139)) (-1461 ((|#4| |#4|) 155)) (-2553 (((-640 (-407 (-948 |#1|))) (-640 (-1169))) 119)) (-1449 (((-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))) (-684 |#4|) (-640 (-407 (-948 |#1|))) (-640 (-640 |#4|)) (-767) (-767) (-563)) 75)) (-1346 (((-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|)))))) (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|)))))) (-640 |#4|)) 59)) (-1440 (((-684 |#4|) (-684 |#4|) (-640 |#4|)) 55)) (-2518 (((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-1151)) 151)) (-2495 (((-563) (-684 |#4|) (-917) (-1151)) 133) (((-563) (-684 |#4|) (-640 (-1169)) (-917) (-1151)) 132) (((-563) (-684 |#4|) (-640 |#4|) (-917) (-1151)) 131) (((-563) (-684 |#4|) (-1151)) 128) (((-563) (-684 |#4|) (-640 (-1169)) (-1151)) 127) (((-563) (-684 |#4|) (-640 |#4|) (-1151)) 126) (((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-917)) 125) (((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 (-1169)) (-917)) 124) (((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 |#4|) (-917)) 123) (((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|)) 121) (((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 (-1169))) 120) (((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 |#4|)) 116)) (-2563 ((|#4| (-948 |#1|)) 68)) (-1417 (((-112) (-640 |#4|) (-640 (-640 |#4|))) 152)) (-1406 (((-640 (-640 (-563))) (-563) (-563)) 130)) (-1395 (((-640 (-640 |#4|)) (-640 (-640 |#4|))) 88)) (-1384 (((-767) (-640 (-2 (|:| -2521 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|))))) 86)) (-1374 (((-767) (-640 (-2 (|:| -2521 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|))))) 85)) (-1472 (((-112) (-640 (-948 |#1|))) 17) (((-112) (-640 |#4|)) 13)) (-2572 (((-2 (|:| |sysok| (-112)) (|:| |z0| (-640 |#4|)) (|:| |n0| (-640 |#4|))) (-640 |#4|) (-640 |#4|)) 71)) (-1365 (((-640 |#4|) |#4|) 49)) (-2542 (((-640 (-407 (-948 |#1|))) (-640 |#4|)) 115) (((-684 (-407 (-948 |#1|))) (-684 |#4|)) 56) (((-407 (-948 |#1|)) |#4|) 112)) (-2530 (((-2 (|:| |rgl| (-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|)))))))))) (|:| |rgsz| (-563))) (-684 |#4|) (-640 (-407 (-948 |#1|))) (-767) (-1151) (-563)) 93)) (-2584 (((-640 (-2 (|:| -2521 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|)))) (-684 |#4|) (-767)) 84)) (-1428 (((-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563))))) (-684 |#4|) (-767)) 102)) (-1356 (((-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|)))))) (-2 (|:| -1957 (-684 (-407 (-948 |#1|)))) (|:| |vec| (-640 (-407 (-948 |#1|)))) (|:| -2521 (-767)) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563))))) 48)))
+(((-920 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2495 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 |#4|))) (-15 -2495 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 (-1169)))) (-15 -2495 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|))) (-15 -2495 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 |#4|) (-917))) (-15 -2495 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 (-1169)) (-917))) (-15 -2495 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-917))) (-15 -2495 ((-563) (-684 |#4|) (-640 |#4|) (-1151))) (-15 -2495 ((-563) (-684 |#4|) (-640 (-1169)) (-1151))) (-15 -2495 ((-563) (-684 |#4|) (-1151))) (-15 -2495 ((-563) (-684 |#4|) (-640 |#4|) (-917) (-1151))) (-15 -2495 ((-563) (-684 |#4|) (-640 (-1169)) (-917) (-1151))) (-15 -2495 ((-563) (-684 |#4|) (-917) (-1151))) (-15 -2506 ((-563) (-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-1151))) (-15 -2518 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-1151))) (-15 -2530 ((-2 (|:| |rgl| (-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|)))))))))) (|:| |rgsz| (-563))) (-684 |#4|) (-640 (-407 (-948 |#1|))) (-767) (-1151) (-563))) (-15 -2542 ((-407 (-948 |#1|)) |#4|)) (-15 -2542 ((-684 (-407 (-948 |#1|))) (-684 |#4|))) (-15 -2542 ((-640 (-407 (-948 |#1|))) (-640 |#4|))) (-15 -2553 ((-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -2563 (|#4| (-948 |#1|))) (-15 -2572 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-640 |#4|)) (|:| |n0| (-640 |#4|))) (-640 |#4|) (-640 |#4|))) (-15 -2584 ((-640 (-2 (|:| -2521 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|)))) (-684 |#4|) (-767))) (-15 -1346 ((-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|)))))) (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|)))))) (-640 |#4|))) (-15 -1356 ((-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|)))))) (-2 (|:| -1957 (-684 (-407 (-948 |#1|)))) (|:| |vec| (-640 (-407 (-948 |#1|)))) (|:| -2521 (-767)) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (-15 -1365 ((-640 |#4|) |#4|)) (-15 -1374 ((-767) (-640 (-2 (|:| -2521 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|)))))) (-15 -1384 ((-767) (-640 (-2 (|:| -2521 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|)))))) (-15 -1395 ((-640 (-640 |#4|)) (-640 (-640 |#4|)))) (-15 -1406 ((-640 (-640 (-563))) (-563) (-563))) (-15 -1417 ((-112) (-640 |#4|) (-640 (-640 |#4|)))) (-15 -1428 ((-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563))))) (-684 |#4|) (-767))) (-15 -1440 ((-684 |#4|) (-684 |#4|) (-640 |#4|))) (-15 -1449 ((-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))) (-684 |#4|) (-640 (-407 (-948 |#1|))) (-640 (-640 |#4|)) (-767) (-767) (-563))) (-15 -1461 (|#4| |#4|)) (-15 -1472 ((-112) (-640 |#4|))) (-15 -1472 ((-112) (-640 (-948 |#1|))))) (-13 (-307) (-147)) (-13 (-846) (-611 (-1169))) (-789) (-945 |#1| |#3| |#2|)) (T -920))
+((-1472 (*1 *2 *3) (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-112)) (-5 *1 (-920 *4 *5 *6 *7)) (-4 *7 (-945 *4 *6 *5)))) (-1472 (*1 *2 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-112)) (-5 *1 (-920 *4 *5 *6 *7)))) (-1461 (*1 *2 *2) (-12 (-4 *3 (-13 (-307) (-147))) (-4 *4 (-13 (-846) (-611 (-1169)))) (-4 *5 (-789)) (-5 *1 (-920 *3 *4 *5 *2)) (-4 *2 (-945 *3 *5 *4)))) (-1449 (*1 *2 *3 *4 *5 *6 *7 *7 *8) (-12 (-5 *3 (-2 (|:| |det| *12) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563))))) (-5 *4 (-684 *12)) (-5 *5 (-640 (-407 (-948 *9)))) (-5 *6 (-640 (-640 *12))) (-5 *7 (-767)) (-5 *8 (-563)) (-4 *9 (-13 (-307) (-147))) (-4 *12 (-945 *9 *11 *10)) (-4 *10 (-13 (-846) (-611 (-1169)))) (-4 *11 (-789)) (-5 *2 (-2 (|:| |eqzro| (-640 *12)) (|:| |neqzro| (-640 *12)) (|:| |wcond| (-640 (-948 *9))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *9)))) (|:| -4013 (-640 (-1257 (-407 (-948 *9))))))))) (-5 *1 (-920 *9 *10 *11 *12)))) (-1440 (*1 *2 *2 *3) (-12 (-5 *2 (-684 *7)) (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *1 (-920 *4 *5 *6 *7)))) (-1428 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *8)) (-5 *4 (-767)) (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-640 (-2 (|:| |det| *8) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (-5 *1 (-920 *5 *6 *7 *8)))) (-1417 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-640 *8))) (-5 *3 (-640 *8)) (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-112)) (-5 *1 (-920 *5 *6 *7 *8)))) (-1406 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-640 (-640 (-563)))) (-5 *1 (-920 *4 *5 *6 *7)) (-5 *3 (-563)) (-4 *7 (-945 *4 *6 *5)))) (-1395 (*1 *2 *2) (-12 (-5 *2 (-640 (-640 *6))) (-4 *6 (-945 *3 *5 *4)) (-4 *3 (-13 (-307) (-147))) (-4 *4 (-13 (-846) (-611 (-1169)))) (-4 *5 (-789)) (-5 *1 (-920 *3 *4 *5 *6)))) (-1384 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -2521 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| *7) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 *7))))) (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-767)) (-5 *1 (-920 *4 *5 *6 *7)))) (-1374 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -2521 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| *7) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 *7))))) (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-767)) (-5 *1 (-920 *4 *5 *6 *7)))) (-1365 (*1 *2 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-640 *3)) (-5 *1 (-920 *4 *5 *6 *3)) (-4 *3 (-945 *4 *6 *5)))) (-1356 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1957 (-684 (-407 (-948 *4)))) (|:| |vec| (-640 (-407 (-948 *4)))) (|:| -2521 (-767)) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563))))) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-2 (|:| |partsol| (-1257 (-407 (-948 *4)))) (|:| -4013 (-640 (-1257 (-407 (-948 *4))))))) (-5 *1 (-920 *4 *5 *6 *7)) (-4 *7 (-945 *4 *6 *5)))) (-1346 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1257 (-407 (-948 *4)))) (|:| -4013 (-640 (-1257 (-407 (-948 *4))))))) (-5 *3 (-640 *7)) (-4 *4 (-13 (-307) (-147))) (-4 *7 (-945 *4 *6 *5)) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *1 (-920 *4 *5 *6 *7)))) (-2584 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *8)) (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-640 (-2 (|:| -2521 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| *8) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 *8))))) (-5 *1 (-920 *5 *6 *7 *8)) (-5 *4 (-767)))) (-2572 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-4 *7 (-945 *4 *6 *5)) (-5 *2 (-2 (|:| |sysok| (-112)) (|:| |z0| (-640 *7)) (|:| |n0| (-640 *7)))) (-5 *1 (-920 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-2563 (*1 *2 *3) (-12 (-5 *3 (-948 *4)) (-4 *4 (-13 (-307) (-147))) (-4 *2 (-945 *4 *6 *5)) (-5 *1 (-920 *4 *5 *6 *2)) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)))) (-2553 (*1 *2 *3) (-12 (-5 *3 (-640 (-1169))) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-640 (-407 (-948 *4)))) (-5 *1 (-920 *4 *5 *6 *7)) (-4 *7 (-945 *4 *6 *5)))) (-2542 (*1 *2 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-640 (-407 (-948 *4)))) (-5 *1 (-920 *4 *5 *6 *7)))) (-2542 (*1 *2 *3) (-12 (-5 *3 (-684 *7)) (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-684 (-407 (-948 *4)))) (-5 *1 (-920 *4 *5 *6 *7)))) (-2542 (*1 *2 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-407 (-948 *4))) (-5 *1 (-920 *4 *5 *6 *3)) (-4 *3 (-945 *4 *6 *5)))) (-2530 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-684 *11)) (-5 *4 (-640 (-407 (-948 *8)))) (-5 *5 (-767)) (-5 *6 (-1151)) (-4 *8 (-13 (-307) (-147))) (-4 *11 (-945 *8 *10 *9)) (-4 *9 (-13 (-846) (-611 (-1169)))) (-4 *10 (-789)) (-5 *2 (-2 (|:| |rgl| (-640 (-2 (|:| |eqzro| (-640 *11)) (|:| |neqzro| (-640 *11)) (|:| |wcond| (-640 (-948 *8))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *8)))) (|:| -4013 (-640 (-1257 (-407 (-948 *8)))))))))) (|:| |rgsz| (-563)))) (-5 *1 (-920 *8 *9 *10 *11)) (-5 *7 (-563)))) (-2518 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-640 (-2 (|:| |eqzro| (-640 *7)) (|:| |neqzro| (-640 *7)) (|:| |wcond| (-640 (-948 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *4)))) (|:| -4013 (-640 (-1257 (-407 (-948 *4)))))))))) (-5 *1 (-920 *4 *5 *6 *7)) (-4 *7 (-945 *4 *6 *5)))) (-2506 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8)) (|:| |wcond| (-640 (-948 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *5)))) (|:| -4013 (-640 (-1257 (-407 (-948 *5)))))))))) (-5 *4 (-1151)) (-4 *5 (-13 (-307) (-147))) (-4 *8 (-945 *5 *7 *6)) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *5 *6 *7 *8)))) (-2495 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-684 *9)) (-5 *4 (-917)) (-5 *5 (-1151)) (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147))) (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *6 *7 *8 *9)))) (-2495 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-684 *10)) (-5 *4 (-640 (-1169))) (-5 *5 (-917)) (-5 *6 (-1151)) (-4 *10 (-945 *7 *9 *8)) (-4 *7 (-13 (-307) (-147))) (-4 *8 (-13 (-846) (-611 (-1169)))) (-4 *9 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *7 *8 *9 *10)))) (-2495 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-684 *10)) (-5 *4 (-640 *10)) (-5 *5 (-917)) (-5 *6 (-1151)) (-4 *10 (-945 *7 *9 *8)) (-4 *7 (-13 (-307) (-147))) (-4 *8 (-13 (-846) (-611 (-1169)))) (-4 *9 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *7 *8 *9 *10)))) (-2495 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *8)) (-5 *4 (-1151)) (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *5 *6 *7 *8)))) (-2495 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-684 *9)) (-5 *4 (-640 (-1169))) (-5 *5 (-1151)) (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147))) (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *6 *7 *8 *9)))) (-2495 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-684 *9)) (-5 *4 (-640 *9)) (-5 *5 (-1151)) (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147))) (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *6 *7 *8 *9)))) (-2495 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *8)) (-5 *4 (-917)) (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-640 (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8)) (|:| |wcond| (-640 (-948 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *5)))) (|:| -4013 (-640 (-1257 (-407 (-948 *5)))))))))) (-5 *1 (-920 *5 *6 *7 *8)))) (-2495 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-684 *9)) (-5 *4 (-640 (-1169))) (-5 *5 (-917)) (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147))) (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-640 (-2 (|:| |eqzro| (-640 *9)) (|:| |neqzro| (-640 *9)) (|:| |wcond| (-640 (-948 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *6)))) (|:| -4013 (-640 (-1257 (-407 (-948 *6)))))))))) (-5 *1 (-920 *6 *7 *8 *9)))) (-2495 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-684 *9)) (-5 *5 (-917)) (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147))) (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-640 (-2 (|:| |eqzro| (-640 *9)) (|:| |neqzro| (-640 *9)) (|:| |wcond| (-640 (-948 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *6)))) (|:| -4013 (-640 (-1257 (-407 (-948 *6)))))))))) (-5 *1 (-920 *6 *7 *8 *9)) (-5 *4 (-640 *9)))) (-2495 (*1 *2 *3) (-12 (-5 *3 (-684 *7)) (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-640 (-2 (|:| |eqzro| (-640 *7)) (|:| |neqzro| (-640 *7)) (|:| |wcond| (-640 (-948 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *4)))) (|:| -4013 (-640 (-1257 (-407 (-948 *4)))))))))) (-5 *1 (-920 *4 *5 *6 *7)))) (-2495 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *8)) (-5 *4 (-640 (-1169))) (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-640 (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8)) (|:| |wcond| (-640 (-948 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *5)))) (|:| -4013 (-640 (-1257 (-407 (-948 *5)))))))))) (-5 *1 (-920 *5 *6 *7 *8)))) (-2495 (*1 *2 *3 *4) (-12 (-5 *3 (-684 *8)) (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-640 (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8)) (|:| |wcond| (-640 (-948 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 *5)))) (|:| -4013 (-640 (-1257 (-407 (-948 *5)))))))))) (-5 *1 (-920 *5 *6 *7 *8)) (-5 *4 (-640 *8)))))
+(-10 -7 (-15 -2495 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 |#4|))) (-15 -2495 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 (-1169)))) (-15 -2495 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|))) (-15 -2495 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 |#4|) (-917))) (-15 -2495 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-640 (-1169)) (-917))) (-15 -2495 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-684 |#4|) (-917))) (-15 -2495 ((-563) (-684 |#4|) (-640 |#4|) (-1151))) (-15 -2495 ((-563) (-684 |#4|) (-640 (-1169)) (-1151))) (-15 -2495 ((-563) (-684 |#4|) (-1151))) (-15 -2495 ((-563) (-684 |#4|) (-640 |#4|) (-917) (-1151))) (-15 -2495 ((-563) (-684 |#4|) (-640 (-1169)) (-917) (-1151))) (-15 -2495 ((-563) (-684 |#4|) (-917) (-1151))) (-15 -2506 ((-563) (-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-1151))) (-15 -2518 ((-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|))))))))) (-1151))) (-15 -2530 ((-2 (|:| |rgl| (-640 (-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|)))))))))) (|:| |rgsz| (-563))) (-684 |#4|) (-640 (-407 (-948 |#1|))) (-767) (-1151) (-563))) (-15 -2542 ((-407 (-948 |#1|)) |#4|)) (-15 -2542 ((-684 (-407 (-948 |#1|))) (-684 |#4|))) (-15 -2542 ((-640 (-407 (-948 |#1|))) (-640 |#4|))) (-15 -2553 ((-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -2563 (|#4| (-948 |#1|))) (-15 -2572 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-640 |#4|)) (|:| |n0| (-640 |#4|))) (-640 |#4|) (-640 |#4|))) (-15 -2584 ((-640 (-2 (|:| -2521 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|)))) (-684 |#4|) (-767))) (-15 -1346 ((-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|)))))) (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|)))))) (-640 |#4|))) (-15 -1356 ((-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|)))))) (-2 (|:| -1957 (-684 (-407 (-948 |#1|)))) (|:| |vec| (-640 (-407 (-948 |#1|)))) (|:| -2521 (-767)) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (-15 -1365 ((-640 |#4|) |#4|)) (-15 -1374 ((-767) (-640 (-2 (|:| -2521 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|)))))) (-15 -1384 ((-767) (-640 (-2 (|:| -2521 (-767)) (|:| |eqns| (-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))) (|:| |fgb| (-640 |#4|)))))) (-15 -1395 ((-640 (-640 |#4|)) (-640 (-640 |#4|)))) (-15 -1406 ((-640 (-640 (-563))) (-563) (-563))) (-15 -1417 ((-112) (-640 |#4|) (-640 (-640 |#4|)))) (-15 -1428 ((-640 (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563))))) (-684 |#4|) (-767))) (-15 -1440 ((-684 |#4|) (-684 |#4|) (-640 |#4|))) (-15 -1449 ((-2 (|:| |eqzro| (-640 |#4|)) (|:| |neqzro| (-640 |#4|)) (|:| |wcond| (-640 (-948 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1257 (-407 (-948 |#1|)))) (|:| -4013 (-640 (-1257 (-407 (-948 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))) (-684 |#4|) (-640 (-407 (-948 |#1|))) (-640 (-640 |#4|)) (-767) (-767) (-563))) (-15 -1461 (|#4| |#4|)) (-15 -1472 ((-112) (-640 |#4|))) (-15 -1472 ((-112) (-640 (-948 |#1|)))))
+((-1604 (((-923) |#1| (-1169)) 17) (((-923) |#1| (-1169) (-1087 (-225))) 21)) (-1767 (((-923) |#1| |#1| (-1169) (-1087 (-225))) 19) (((-923) |#1| (-1169) (-1087 (-225))) 15)))
+(((-921 |#1|) (-10 -7 (-15 -1767 ((-923) |#1| (-1169) (-1087 (-225)))) (-15 -1767 ((-923) |#1| |#1| (-1169) (-1087 (-225)))) (-15 -1604 ((-923) |#1| (-1169) (-1087 (-225)))) (-15 -1604 ((-923) |#1| (-1169)))) (-611 (-536))) (T -921))
+((-1604 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-5 *2 (-923)) (-5 *1 (-921 *3)) (-4 *3 (-611 (-536))))) (-1604 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1169)) (-5 *5 (-1087 (-225))) (-5 *2 (-923)) (-5 *1 (-921 *3)) (-4 *3 (-611 (-536))))) (-1767 (*1 *2 *3 *3 *4 *5) (-12 (-5 *4 (-1169)) (-5 *5 (-1087 (-225))) (-5 *2 (-923)) (-5 *1 (-921 *3)) (-4 *3 (-611 (-536))))) (-1767 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1169)) (-5 *5 (-1087 (-225))) (-5 *2 (-923)) (-5 *1 (-921 *3)) (-4 *3 (-611 (-536))))))
+(-10 -7 (-15 -1767 ((-923) |#1| (-1169) (-1087 (-225)))) (-15 -1767 ((-923) |#1| |#1| (-1169) (-1087 (-225)))) (-15 -1604 ((-923) |#1| (-1169) (-1087 (-225)))) (-15 -1604 ((-923) |#1| (-1169))))
+((-1292 (($ $ (-1087 (-225)) (-1087 (-225)) (-1087 (-225))) 69)) (-4337 (((-1087 (-225)) $) 40)) (-4325 (((-1087 (-225)) $) 39)) (-4314 (((-1087 (-225)) $) 38)) (-1744 (((-640 (-640 (-225))) $) 43)) (-1755 (((-1087 (-225)) $) 41)) (-1663 (((-563) (-563)) 32)) (-1717 (((-563) (-563)) 28)) (-1689 (((-563) (-563)) 30)) (-1639 (((-112) (-112)) 35)) (-1676 (((-563)) 31)) (-3998 (($ $ (-1087 (-225))) 72) (($ $) 73)) (-1780 (($ (-1 (-939 (-225)) (-225)) (-1087 (-225))) 77) (($ (-1 (-939 (-225)) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225))) 78)) (-1767 (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225))) 80) (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225))) 81) (($ $ (-1087 (-225))) 75)) (-1626 (((-563)) 36)) (-1730 (((-563)) 27)) (-1704 (((-563)) 29)) (-3394 (((-640 (-640 (-939 (-225)))) $) 93)) (-1615 (((-112) (-112)) 37)) (-1692 (((-858) $) 92)) (-1652 (((-112)) 34)))
+(((-922) (-13 (-970) (-10 -8 (-15 -1780 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)))) (-15 -1780 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -1767 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)))) (-15 -1767 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -1767 ($ $ (-1087 (-225)))) (-15 -1292 ($ $ (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -3998 ($ $ (-1087 (-225)))) (-15 -3998 ($ $)) (-15 -1755 ((-1087 (-225)) $)) (-15 -1744 ((-640 (-640 (-225))) $)) (-15 -1730 ((-563))) (-15 -1717 ((-563) (-563))) (-15 -1704 ((-563))) (-15 -1689 ((-563) (-563))) (-15 -1676 ((-563))) (-15 -1663 ((-563) (-563))) (-15 -1652 ((-112))) (-15 -1639 ((-112) (-112))) (-15 -1626 ((-563))) (-15 -1615 ((-112) (-112)))))) (T -922))
+((-1780 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-922)))) (-1780 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-922)))) (-1767 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-922)))) (-1767 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-922)))) (-1767 (*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922)))) (-1292 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922)))) (-3998 (*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922)))) (-3998 (*1 *1 *1) (-5 *1 (-922))) (-1755 (*1 *2 *1) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922)))) (-1744 (*1 *2 *1) (-12 (-5 *2 (-640 (-640 (-225)))) (-5 *1 (-922)))) (-1730 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))) (-1717 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))) (-1704 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))) (-1689 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))) (-1676 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))) (-1663 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))) (-1652 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))) (-1639 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))) (-1626 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))) (-1615 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
+(-13 (-970) (-10 -8 (-15 -1780 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)))) (-15 -1780 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -1767 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)))) (-15 -1767 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -1767 ($ $ (-1087 (-225)))) (-15 -1292 ($ $ (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -3998 ($ $ (-1087 (-225)))) (-15 -3998 ($ $)) (-15 -1755 ((-1087 (-225)) $)) (-15 -1744 ((-640 (-640 (-225))) $)) (-15 -1730 ((-563))) (-15 -1717 ((-563) (-563))) (-15 -1704 ((-563))) (-15 -1689 ((-563) (-563))) (-15 -1676 ((-563))) (-15 -1663 ((-563) (-563))) (-15 -1652 ((-112))) (-15 -1639 ((-112) (-112))) (-15 -1626 ((-563))) (-15 -1615 ((-112) (-112)))))
+((-1292 (($ $ (-1087 (-225))) 69) (($ $ (-1087 (-225)) (-1087 (-225))) 70)) (-4325 (((-1087 (-225)) $) 44)) (-4314 (((-1087 (-225)) $) 43)) (-1755 (((-1087 (-225)) $) 45)) (-1519 (((-563) (-563)) 37)) (-1568 (((-563) (-563)) 33)) (-1543 (((-563) (-563)) 35)) (-1494 (((-112) (-112)) 39)) (-1532 (((-563)) 36)) (-3998 (($ $ (-1087 (-225))) 73) (($ $) 74)) (-1780 (($ (-1 (-939 (-225)) (-225)) (-1087 (-225))) 83) (($ (-1 (-939 (-225)) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225))) 84)) (-1604 (($ (-1 (-225) (-225)) (-1087 (-225))) 91) (($ (-1 (-225) (-225))) 94)) (-1767 (($ (-1 (-225) (-225)) (-1087 (-225))) 78) (($ (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225))) 79) (($ (-640 (-1 (-225) (-225))) (-1087 (-225))) 86) (($ (-640 (-1 (-225) (-225))) (-1087 (-225)) (-1087 (-225))) 87) (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225))) 80) (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225))) 81) (($ $ (-1087 (-225))) 75)) (-1593 (((-112) $) 40)) (-1483 (((-563)) 41)) (-1581 (((-563)) 32)) (-1556 (((-563)) 34)) (-3394 (((-640 (-640 (-939 (-225)))) $) 23)) (-3203 (((-112) (-112)) 42)) (-1692 (((-858) $) 105)) (-1505 (((-112)) 38)))
+(((-923) (-13 (-951) (-10 -8 (-15 -1767 ($ (-1 (-225) (-225)) (-1087 (-225)))) (-15 -1767 ($ (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -1767 ($ (-640 (-1 (-225) (-225))) (-1087 (-225)))) (-15 -1767 ($ (-640 (-1 (-225) (-225))) (-1087 (-225)) (-1087 (-225)))) (-15 -1767 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)))) (-15 -1767 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -1780 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)))) (-15 -1780 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -1604 ($ (-1 (-225) (-225)) (-1087 (-225)))) (-15 -1604 ($ (-1 (-225) (-225)))) (-15 -1767 ($ $ (-1087 (-225)))) (-15 -1593 ((-112) $)) (-15 -1292 ($ $ (-1087 (-225)))) (-15 -1292 ($ $ (-1087 (-225)) (-1087 (-225)))) (-15 -3998 ($ $ (-1087 (-225)))) (-15 -3998 ($ $)) (-15 -1755 ((-1087 (-225)) $)) (-15 -1581 ((-563))) (-15 -1568 ((-563) (-563))) (-15 -1556 ((-563))) (-15 -1543 ((-563) (-563))) (-15 -1532 ((-563))) (-15 -1519 ((-563) (-563))) (-15 -1505 ((-112))) (-15 -1494 ((-112) (-112))) (-15 -1483 ((-563))) (-15 -3203 ((-112) (-112)))))) (T -923))
+((-1767 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-1767 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-1767 (*1 *1 *2 *3) (-12 (-5 *2 (-640 (-1 (-225) (-225)))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-1767 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-640 (-1 (-225) (-225)))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-1767 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-1767 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-1780 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-1780 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-1604 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225))) (-5 *1 (-923)))) (-1604 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-923)))) (-1767 (*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923)))) (-1593 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-923)))) (-1292 (*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923)))) (-1292 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923)))) (-3998 (*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923)))) (-3998 (*1 *1 *1) (-5 *1 (-923))) (-1755 (*1 *2 *1) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923)))) (-1581 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))) (-1568 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))) (-1556 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))) (-1543 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))) (-1532 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))) (-1519 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))) (-1505 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-923)))) (-1494 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-923)))) (-1483 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))) (-3203 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-923)))))
+(-13 (-951) (-10 -8 (-15 -1767 ($ (-1 (-225) (-225)) (-1087 (-225)))) (-15 -1767 ($ (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -1767 ($ (-640 (-1 (-225) (-225))) (-1087 (-225)))) (-15 -1767 ($ (-640 (-1 (-225) (-225))) (-1087 (-225)) (-1087 (-225)))) (-15 -1767 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)))) (-15 -1767 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -1780 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)))) (-15 -1780 ($ (-1 (-939 (-225)) (-225)) (-1087 (-225)) (-1087 (-225)) (-1087 (-225)))) (-15 -1604 ($ (-1 (-225) (-225)) (-1087 (-225)))) (-15 -1604 ($ (-1 (-225) (-225)))) (-15 -1767 ($ $ (-1087 (-225)))) (-15 -1593 ((-112) $)) (-15 -1292 ($ $ (-1087 (-225)))) (-15 -1292 ($ $ (-1087 (-225)) (-1087 (-225)))) (-15 -3998 ($ $ (-1087 (-225)))) (-15 -3998 ($ $)) (-15 -1755 ((-1087 (-225)) $)) (-15 -1581 ((-563))) (-15 -1568 ((-563) (-563))) (-15 -1556 ((-563))) (-15 -1543 ((-563) (-563))) (-15 -1532 ((-563))) (-15 -1519 ((-563) (-563))) (-15 -1505 ((-112))) (-15 -1494 ((-112) (-112))) (-15 -1483 ((-563))) (-15 -3203 ((-112) (-112)))))
+((-1790 (((-640 (-1087 (-225))) (-640 (-640 (-939 (-225))))) 24)))
+(((-924) (-10 -7 (-15 -1790 ((-640 (-1087 (-225))) (-640 (-640 (-939 (-225)))))))) (T -924))
+((-1790 (*1 *2 *3) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *2 (-640 (-1087 (-225)))) (-5 *1 (-924)))))
+(-10 -7 (-15 -1790 ((-640 (-1087 (-225))) (-640 (-640 (-939 (-225)))))))
+((-3903 ((|#2| |#2|) 26)) (-1882 ((|#2| |#2|) 27)) (-2668 ((|#2| |#2|) 25)) (-2294 ((|#2| |#2| (-1151)) 24)))
+(((-925 |#1| |#2|) (-10 -7 (-15 -2294 (|#2| |#2| (-1151))) (-15 -2668 (|#2| |#2|)) (-15 -3903 (|#2| |#2|)) (-15 -1882 (|#2| |#2|))) (-846) (-430 |#1|)) (T -925))
+((-1882 (*1 *2 *2) (-12 (-4 *3 (-846)) (-5 *1 (-925 *3 *2)) (-4 *2 (-430 *3)))) (-3903 (*1 *2 *2) (-12 (-4 *3 (-846)) (-5 *1 (-925 *3 *2)) (-4 *2 (-430 *3)))) (-2668 (*1 *2 *2) (-12 (-4 *3 (-846)) (-5 *1 (-925 *3 *2)) (-4 *2 (-430 *3)))) (-2294 (*1 *2 *2 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-846)) (-5 *1 (-925 *4 *2)) (-4 *2 (-430 *4)))))
+(-10 -7 (-15 -2294 (|#2| |#2| (-1151))) (-15 -2668 (|#2| |#2|)) (-15 -3903 (|#2| |#2|)) (-15 -1882 (|#2| |#2|)))
+((-3903 (((-316 (-563)) (-1169)) 16)) (-1882 (((-316 (-563)) (-1169)) 14)) (-2668 (((-316 (-563)) (-1169)) 12)) (-2294 (((-316 (-563)) (-1169) (-1151)) 19)))
+(((-926) (-10 -7 (-15 -2294 ((-316 (-563)) (-1169) (-1151))) (-15 -2668 ((-316 (-563)) (-1169))) (-15 -3903 ((-316 (-563)) (-1169))) (-15 -1882 ((-316 (-563)) (-1169))))) (T -926))
+((-1882 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-316 (-563))) (-5 *1 (-926)))) (-3903 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-316 (-563))) (-5 *1 (-926)))) (-2668 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-316 (-563))) (-5 *1 (-926)))) (-2294 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-1151)) (-5 *2 (-316 (-563))) (-5 *1 (-926)))))
+(-10 -7 (-15 -2294 ((-316 (-563)) (-1169) (-1151))) (-15 -2668 ((-316 (-563)) (-1169))) (-15 -3903 ((-316 (-563)) (-1169))) (-15 -1882 ((-316 (-563)) (-1169))))
+((-1812 (((-885 |#1| |#3|) |#2| (-888 |#1|) (-885 |#1| |#3|)) 25)) (-1802 (((-1 (-112) |#2|) (-1 (-112) |#3|)) 13)))
+(((-927 |#1| |#2| |#3|) (-10 -7 (-15 -1802 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -1812 ((-885 |#1| |#3|) |#2| (-888 |#1|) (-885 |#1| |#3|)))) (-1093) (-882 |#1|) (-13 (-1093) (-1034 |#2|))) (T -927))
+((-1812 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 *6)) (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-4 *6 (-13 (-1093) (-1034 *3))) (-4 *3 (-882 *5)) (-5 *1 (-927 *5 *3 *6)))) (-1802 (*1 *2 *3) (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1093) (-1034 *5))) (-4 *5 (-882 *4)) (-4 *4 (-1093)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-927 *4 *5 *6)))))
+(-10 -7 (-15 -1802 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -1812 ((-885 |#1| |#3|) |#2| (-888 |#1|) (-885 |#1| |#3|))))
+((-1812 (((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)) 30)))
+(((-928 |#1| |#2| |#3|) (-10 -7 (-15 -1812 ((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)))) (-1093) (-13 (-555) (-846) (-882 |#1|)) (-13 (-430 |#2|) (-611 (-888 |#1|)) (-882 |#1|) (-1034 (-609 $)))) (T -928))
+((-1812 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 *3)) (-4 *5 (-1093)) (-4 *3 (-13 (-430 *6) (-611 *4) (-882 *5) (-1034 (-609 $)))) (-5 *4 (-888 *5)) (-4 *6 (-13 (-555) (-846) (-882 *5))) (-5 *1 (-928 *5 *6 *3)))))
+(-10 -7 (-15 -1812 ((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|))))
+((-1812 (((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|)) 13)))
+(((-929 |#1|) (-10 -7 (-15 -1812 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|)))) (-545)) (T -929))
+((-1812 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 (-563) *3)) (-5 *4 (-888 (-563))) (-4 *3 (-545)) (-5 *1 (-929 *3)))))
+(-10 -7 (-15 -1812 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))))
+((-1812 (((-885 |#1| |#2|) (-609 |#2|) (-888 |#1|) (-885 |#1| |#2|)) 52)))
+(((-930 |#1| |#2|) (-10 -7 (-15 -1812 ((-885 |#1| |#2|) (-609 |#2|) (-888 |#1|) (-885 |#1| |#2|)))) (-1093) (-13 (-846) (-1034 (-609 $)) (-611 (-888 |#1|)) (-882 |#1|))) (T -930))
+((-1812 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 *6)) (-5 *3 (-609 *6)) (-4 *5 (-1093)) (-4 *6 (-13 (-846) (-1034 (-609 $)) (-611 *4) (-882 *5))) (-5 *4 (-888 *5)) (-5 *1 (-930 *5 *6)))))
+(-10 -7 (-15 -1812 ((-885 |#1| |#2|) (-609 |#2|) (-888 |#1|) (-885 |#1| |#2|))))
+((-1812 (((-881 |#1| |#2| |#3|) |#3| (-888 |#1|) (-881 |#1| |#2| |#3|)) 15)))
+(((-931 |#1| |#2| |#3|) (-10 -7 (-15 -1812 ((-881 |#1| |#2| |#3|) |#3| (-888 |#1|) (-881 |#1| |#2| |#3|)))) (-1093) (-882 |#1|) (-661 |#2|)) (T -931))
+((-1812 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-881 *5 *6 *3)) (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-4 *6 (-882 *5)) (-4 *3 (-661 *6)) (-5 *1 (-931 *5 *6 *3)))))
+(-10 -7 (-15 -1812 ((-881 |#1| |#2| |#3|) |#3| (-888 |#1|) (-881 |#1| |#2| |#3|))))
+((-1812 (((-885 |#1| |#5|) |#5| (-888 |#1|) (-885 |#1| |#5|)) 17 (|has| |#3| (-882 |#1|))) (((-885 |#1| |#5|) |#5| (-888 |#1|) (-885 |#1| |#5|) (-1 (-885 |#1| |#5|) |#3| (-888 |#1|) (-885 |#1| |#5|))) 16)))
+(((-932 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1812 ((-885 |#1| |#5|) |#5| (-888 |#1|) (-885 |#1| |#5|) (-1 (-885 |#1| |#5|) |#3| (-888 |#1|) (-885 |#1| |#5|)))) (IF (|has| |#3| (-882 |#1|)) (-15 -1812 ((-885 |#1| |#5|) |#5| (-888 |#1|) (-885 |#1| |#5|))) |%noBranch|)) (-1093) (-789) (-846) (-13 (-1045) (-846) (-882 |#1|)) (-13 (-945 |#4| |#2| |#3|) (-611 (-888 |#1|)))) (T -932))
+((-1812 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 *3)) (-4 *5 (-1093)) (-4 *3 (-13 (-945 *8 *6 *7) (-611 *4))) (-5 *4 (-888 *5)) (-4 *7 (-882 *5)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-13 (-1045) (-846) (-882 *5))) (-5 *1 (-932 *5 *6 *7 *8 *3)))) (-1812 (*1 *2 *3 *4 *2 *5) (-12 (-5 *5 (-1 (-885 *6 *3) *8 (-888 *6) (-885 *6 *3))) (-4 *8 (-846)) (-5 *2 (-885 *6 *3)) (-5 *4 (-888 *6)) (-4 *6 (-1093)) (-4 *3 (-13 (-945 *9 *7 *8) (-611 *4))) (-4 *7 (-789)) (-4 *9 (-13 (-1045) (-846) (-882 *6))) (-5 *1 (-932 *6 *7 *8 *9 *3)))))
+(-10 -7 (-15 -1812 ((-885 |#1| |#5|) |#5| (-888 |#1|) (-885 |#1| |#5|) (-1 (-885 |#1| |#5|) |#3| (-888 |#1|) (-885 |#1| |#5|)))) (IF (|has| |#3| (-882 |#1|)) (-15 -1812 ((-885 |#1| |#5|) |#5| (-888 |#1|) (-885 |#1| |#5|))) |%noBranch|))
+((-1958 ((|#2| |#2| (-640 (-1 (-112) |#3|))) 12) ((|#2| |#2| (-1 (-112) |#3|)) 13)))
+(((-933 |#1| |#2| |#3|) (-10 -7 (-15 -1958 (|#2| |#2| (-1 (-112) |#3|))) (-15 -1958 (|#2| |#2| (-640 (-1 (-112) |#3|))))) (-846) (-430 |#1|) (-1208)) (T -933))
+((-1958 (*1 *2 *2 *3) (-12 (-5 *3 (-640 (-1 (-112) *5))) (-4 *5 (-1208)) (-4 *4 (-846)) (-5 *1 (-933 *4 *2 *5)) (-4 *2 (-430 *4)))) (-1958 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1208)) (-4 *4 (-846)) (-5 *1 (-933 *4 *2 *5)) (-4 *2 (-430 *4)))))
+(-10 -7 (-15 -1958 (|#2| |#2| (-1 (-112) |#3|))) (-15 -1958 (|#2| |#2| (-640 (-1 (-112) |#3|)))))
+((-1958 (((-316 (-563)) (-1169) (-640 (-1 (-112) |#1|))) 18) (((-316 (-563)) (-1169) (-1 (-112) |#1|)) 15)))
+(((-934 |#1|) (-10 -7 (-15 -1958 ((-316 (-563)) (-1169) (-1 (-112) |#1|))) (-15 -1958 ((-316 (-563)) (-1169) (-640 (-1 (-112) |#1|))))) (-1208)) (T -934))
+((-1958 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-640 (-1 (-112) *5))) (-4 *5 (-1208)) (-5 *2 (-316 (-563))) (-5 *1 (-934 *5)))) (-1958 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1208)) (-5 *2 (-316 (-563))) (-5 *1 (-934 *5)))))
+(-10 -7 (-15 -1958 ((-316 (-563)) (-1169) (-1 (-112) |#1|))) (-15 -1958 ((-316 (-563)) (-1169) (-640 (-1 (-112) |#1|)))))
+((-1812 (((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)) 25)))
+(((-935 |#1| |#2| |#3|) (-10 -7 (-15 -1812 ((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)))) (-1093) (-13 (-555) (-882 |#1|) (-611 (-888 |#1|))) (-988 |#2|)) (T -935))
+((-1812 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 *3)) (-4 *5 (-1093)) (-4 *3 (-988 *6)) (-4 *6 (-13 (-555) (-882 *5) (-611 *4))) (-5 *4 (-888 *5)) (-5 *1 (-935 *5 *6 *3)))))
+(-10 -7 (-15 -1812 ((-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|))))
+((-1812 (((-885 |#1| (-1169)) (-1169) (-888 |#1|) (-885 |#1| (-1169))) 17)))
+(((-936 |#1|) (-10 -7 (-15 -1812 ((-885 |#1| (-1169)) (-1169) (-888 |#1|) (-885 |#1| (-1169))))) (-1093)) (T -936))
+((-1812 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 (-1169))) (-5 *3 (-1169)) (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-5 *1 (-936 *5)))))
+(-10 -7 (-15 -1812 ((-885 |#1| (-1169)) (-1169) (-888 |#1|) (-885 |#1| (-1169)))))
+((-1824 (((-885 |#1| |#3|) (-640 |#3|) (-640 (-888 |#1|)) (-885 |#1| |#3|) (-1 (-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|))) 33)) (-1812 (((-885 |#1| |#3|) (-640 |#3|) (-640 (-888 |#1|)) (-1 |#3| (-640 |#3|)) (-885 |#1| |#3|) (-1 (-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|))) 32)))
+(((-937 |#1| |#2| |#3|) (-10 -7 (-15 -1812 ((-885 |#1| |#3|) (-640 |#3|) (-640 (-888 |#1|)) (-1 |#3| (-640 |#3|)) (-885 |#1| |#3|) (-1 (-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)))) (-15 -1824 ((-885 |#1| |#3|) (-640 |#3|) (-640 (-888 |#1|)) (-885 |#1| |#3|) (-1 (-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|))))) (-1093) (-13 (-1045) (-846)) (-13 (-1045) (-611 (-888 |#1|)) (-1034 |#2|))) (T -937))
+((-1824 (*1 *2 *3 *4 *2 *5) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 (-888 *6))) (-5 *5 (-1 (-885 *6 *8) *8 (-888 *6) (-885 *6 *8))) (-4 *6 (-1093)) (-4 *8 (-13 (-1045) (-611 (-888 *6)) (-1034 *7))) (-5 *2 (-885 *6 *8)) (-4 *7 (-13 (-1045) (-846))) (-5 *1 (-937 *6 *7 *8)))) (-1812 (*1 *2 *3 *4 *5 *2 *6) (-12 (-5 *4 (-640 (-888 *7))) (-5 *5 (-1 *9 (-640 *9))) (-5 *6 (-1 (-885 *7 *9) *9 (-888 *7) (-885 *7 *9))) (-4 *7 (-1093)) (-4 *9 (-13 (-1045) (-611 (-888 *7)) (-1034 *8))) (-5 *2 (-885 *7 *9)) (-5 *3 (-640 *9)) (-4 *8 (-13 (-1045) (-846))) (-5 *1 (-937 *7 *8 *9)))))
+(-10 -7 (-15 -1812 ((-885 |#1| |#3|) (-640 |#3|) (-640 (-888 |#1|)) (-1 |#3| (-640 |#3|)) (-885 |#1| |#3|) (-1 (-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)))) (-15 -1824 ((-885 |#1| |#3|) (-640 |#3|) (-640 (-888 |#1|)) (-885 |#1| |#3|) (-1 (-885 |#1| |#3|) |#3| (-888 |#1|) (-885 |#1| |#3|)))))
+((-1911 (((-1165 (-407 (-563))) (-563)) 62)) (-1902 (((-1165 (-563)) (-563)) 65)) (-2231 (((-1165 (-563)) (-563)) 59)) (-1891 (((-563) (-1165 (-563))) 54)) (-1879 (((-1165 (-407 (-563))) (-563)) 48)) (-1869 (((-1165 (-563)) (-563)) 37)) (-1858 (((-1165 (-563)) (-563)) 67)) (-1847 (((-1165 (-563)) (-563)) 66)) (-1835 (((-1165 (-407 (-563))) (-563)) 50)))
+(((-938) (-10 -7 (-15 -1835 ((-1165 (-407 (-563))) (-563))) (-15 -1847 ((-1165 (-563)) (-563))) (-15 -1858 ((-1165 (-563)) (-563))) (-15 -1869 ((-1165 (-563)) (-563))) (-15 -1879 ((-1165 (-407 (-563))) (-563))) (-15 -1891 ((-563) (-1165 (-563)))) (-15 -2231 ((-1165 (-563)) (-563))) (-15 -1902 ((-1165 (-563)) (-563))) (-15 -1911 ((-1165 (-407 (-563))) (-563))))) (T -938))
+((-1911 (*1 *2 *3) (-12 (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-938)) (-5 *3 (-563)))) (-1902 (*1 *2 *3) (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))) (-2231 (*1 *2 *3) (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))) (-1891 (*1 *2 *3) (-12 (-5 *3 (-1165 (-563))) (-5 *2 (-563)) (-5 *1 (-938)))) (-1879 (*1 *2 *3) (-12 (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-938)) (-5 *3 (-563)))) (-1869 (*1 *2 *3) (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))) (-1858 (*1 *2 *3) (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))) (-1847 (*1 *2 *3) (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))) (-1835 (*1 *2 *3) (-12 (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-938)) (-5 *3 (-563)))))
+(-10 -7 (-15 -1835 ((-1165 (-407 (-563))) (-563))) (-15 -1847 ((-1165 (-563)) (-563))) (-15 -1858 ((-1165 (-563)) (-563))) (-15 -1869 ((-1165 (-563)) (-563))) (-15 -1879 ((-1165 (-407 (-563))) (-563))) (-15 -1891 ((-563) (-1165 (-563)))) (-15 -2231 ((-1165 (-563)) (-563))) (-15 -1902 ((-1165 (-563)) (-563))) (-15 -1911 ((-1165 (-407 (-563))) (-563))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3216 (($ (-767)) NIL (|has| |#1| (-23)))) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4073 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-4052 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4409))) (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| |#1| (-846))))) (-1640 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) |#1|) 11 (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) NIL)) (-4369 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-3018 (($ (-640 |#1|)) 13)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-3983 (((-684 |#1|) $ $) NIL (|has| |#1| (-1045)))) (-1565 (($ (-767) |#1|) 8)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) 10 (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-4300 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-846)))) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4098 ((|#1| $) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1045))))) (-2481 (((-112) $ (-767)) NIL)) (-3419 ((|#1| $) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1045))))) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3399 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3782 ((|#1| $) NIL (|has| (-563) (-846)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2221 (($ $ |#1|) NIL (|has| $ (-6 -4409)))) (-1751 (($ $ (-640 |#1|)) 26)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) 20) (($ $ (-1224 (-563))) NIL)) (-4121 ((|#1| $ $) NIL (|has| |#1| (-1045)))) (-3526 (((-917) $) 16)) (-2967 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-4111 (($ $ $) 24)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4062 (($ $ $ (-563)) NIL (|has| $ (-6 -4409)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| |#1| (-611 (-536)))) (($ (-640 |#1|)) 17)) (-1706 (($ (-640 |#1|)) NIL)) (-2857 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 25) (($ (-640 $)) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1825 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1813 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-563) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-722))) (($ $ |#1|) NIL (|has| |#1| (-722)))) (-3610 (((-767) $) 14 (|has| $ (-6 -4408)))))
(((-939 |#1|) (-976 |#1|) (-1045)) (T -939))
NIL
(-976 |#1|)
-((-2065 (((-481 |#1| |#2|) (-948 |#2|)) 20)) (-1366 (((-247 |#1| |#2|) (-948 |#2|)) 33)) (-2314 (((-948 |#2|) (-481 |#1| |#2|)) 25)) (-3892 (((-247 |#1| |#2|) (-481 |#1| |#2|)) 55)) (-4269 (((-948 |#2|) (-247 |#1| |#2|)) 30)) (-1569 (((-481 |#1| |#2|) (-247 |#1| |#2|)) 46)))
-(((-940 |#1| |#2|) (-10 -7 (-15 -1569 ((-481 |#1| |#2|) (-247 |#1| |#2|))) (-15 -3892 ((-247 |#1| |#2|) (-481 |#1| |#2|))) (-15 -2065 ((-481 |#1| |#2|) (-948 |#2|))) (-15 -2314 ((-948 |#2|) (-481 |#1| |#2|))) (-15 -4269 ((-948 |#2|) (-247 |#1| |#2|))) (-15 -1366 ((-247 |#1| |#2|) (-948 |#2|)))) (-640 (-1169)) (-1045)) (T -940))
-((-1366 (*1 *2 *3) (-12 (-5 *3 (-948 *5)) (-4 *5 (-1045)) (-5 *2 (-247 *4 *5)) (-5 *1 (-940 *4 *5)) (-14 *4 (-640 (-1169))))) (-4269 (*1 *2 *3) (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045)) (-5 *2 (-948 *5)) (-5 *1 (-940 *4 *5)))) (-2314 (*1 *2 *3) (-12 (-5 *3 (-481 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045)) (-5 *2 (-948 *5)) (-5 *1 (-940 *4 *5)))) (-2065 (*1 *2 *3) (-12 (-5 *3 (-948 *5)) (-4 *5 (-1045)) (-5 *2 (-481 *4 *5)) (-5 *1 (-940 *4 *5)) (-14 *4 (-640 (-1169))))) (-3892 (*1 *2 *3) (-12 (-5 *3 (-481 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045)) (-5 *2 (-247 *4 *5)) (-5 *1 (-940 *4 *5)))) (-1569 (*1 *2 *3) (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045)) (-5 *2 (-481 *4 *5)) (-5 *1 (-940 *4 *5)))))
-(-10 -7 (-15 -1569 ((-481 |#1| |#2|) (-247 |#1| |#2|))) (-15 -3892 ((-247 |#1| |#2|) (-481 |#1| |#2|))) (-15 -2065 ((-481 |#1| |#2|) (-948 |#2|))) (-15 -2314 ((-948 |#2|) (-481 |#1| |#2|))) (-15 -4269 ((-948 |#2|) (-247 |#1| |#2|))) (-15 -1366 ((-247 |#1| |#2|) (-948 |#2|))))
-((-4376 (((-640 |#2|) |#2| |#2|) 10)) (-2462 (((-767) (-640 |#1|)) 37 (|has| |#1| (-844)))) (-1613 (((-640 |#2|) |#2|) 11)) (-3080 (((-767) (-640 |#1|) (-563) (-563)) 39 (|has| |#1| (-844)))) (-3477 ((|#1| |#2|) 32 (|has| |#1| (-844)))))
-(((-941 |#1| |#2|) (-10 -7 (-15 -4376 ((-640 |#2|) |#2| |#2|)) (-15 -1613 ((-640 |#2|) |#2|)) (IF (|has| |#1| (-844)) (PROGN (-15 -3477 (|#1| |#2|)) (-15 -2462 ((-767) (-640 |#1|))) (-15 -3080 ((-767) (-640 |#1|) (-563) (-563)))) |%noBranch|)) (-363) (-1233 |#1|)) (T -941))
-((-3080 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-640 *5)) (-5 *4 (-563)) (-4 *5 (-844)) (-4 *5 (-363)) (-5 *2 (-767)) (-5 *1 (-941 *5 *6)) (-4 *6 (-1233 *5)))) (-2462 (*1 *2 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-844)) (-4 *4 (-363)) (-5 *2 (-767)) (-5 *1 (-941 *4 *5)) (-4 *5 (-1233 *4)))) (-3477 (*1 *2 *3) (-12 (-4 *2 (-363)) (-4 *2 (-844)) (-5 *1 (-941 *2 *3)) (-4 *3 (-1233 *2)))) (-1613 (*1 *2 *3) (-12 (-4 *4 (-363)) (-5 *2 (-640 *3)) (-5 *1 (-941 *4 *3)) (-4 *3 (-1233 *4)))) (-4376 (*1 *2 *3 *3) (-12 (-4 *4 (-363)) (-5 *2 (-640 *3)) (-5 *1 (-941 *4 *3)) (-4 *3 (-1233 *4)))))
-(-10 -7 (-15 -4376 ((-640 |#2|) |#2| |#2|)) (-15 -1613 ((-640 |#2|) |#2|)) (IF (|has| |#1| (-844)) (PROGN (-15 -3477 (|#1| |#2|)) (-15 -2462 ((-767) (-640 |#1|))) (-15 -3080 ((-767) (-640 |#1|) (-563) (-563)))) |%noBranch|))
-((-2240 (((-948 |#2|) (-1 |#2| |#1|) (-948 |#1|)) 19)))
-(((-942 |#1| |#2|) (-10 -7 (-15 -2240 ((-948 |#2|) (-1 |#2| |#1|) (-948 |#1|)))) (-1045) (-1045)) (T -942))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-948 *5)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-5 *2 (-948 *6)) (-5 *1 (-942 *5 *6)))))
-(-10 -7 (-15 -2240 ((-948 |#2|) (-1 |#2| |#1|) (-948 |#1|))))
-((-2139 (((-1230 |#1| (-948 |#2|)) (-948 |#2|) (-1253 |#1|)) 18)))
-(((-943 |#1| |#2|) (-10 -7 (-15 -2139 ((-1230 |#1| (-948 |#2|)) (-948 |#2|) (-1253 |#1|)))) (-1169) (-1045)) (T -943))
-((-2139 (*1 *2 *3 *4) (-12 (-5 *4 (-1253 *5)) (-14 *5 (-1169)) (-4 *6 (-1045)) (-5 *2 (-1230 *5 (-948 *6))) (-5 *1 (-943 *5 *6)) (-5 *3 (-948 *6)))))
-(-10 -7 (-15 -2139 ((-1230 |#1| (-948 |#2|)) (-948 |#2|) (-1253 |#1|))))
-((-1779 (((-767) $) 71) (((-767) $ (-640 |#4|)) 74)) (-4335 (($ $) 172)) (-3205 (((-418 $) $) 164)) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 115)) (-2131 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 (-563) "failed") $) NIL) (((-3 |#4| "failed") $) 60)) (-2058 ((|#2| $) NIL) (((-407 (-563)) $) NIL) (((-563) $) NIL) ((|#4| $) 59)) (-2742 (($ $ $ |#4|) 76)) (-2950 (((-684 (-563)) (-684 $)) NIL) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) 105) (((-684 |#2|) (-684 $)) 98)) (-1300 (($ $) 179) (($ $ |#4|) 182)) (-2739 (((-640 $) $) 63)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 198) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 191)) (-1368 (((-640 $) $) 28)) (-2588 (($ |#2| |#3|) NIL) (($ $ |#4| (-767)) NIL) (($ $ (-640 |#4|) (-640 (-767))) 57)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ |#4|) 161)) (-3733 (((-3 (-640 $) "failed") $) 42)) (-2919 (((-3 (-640 $) "failed") $) 31)) (-4086 (((-3 (-2 (|:| |var| |#4|) (|:| -1654 (-767))) "failed") $) 47)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 108)) (-1876 (((-418 (-1165 $)) (-1165 $)) 121)) (-3116 (((-418 (-1165 $)) (-1165 $)) 119)) (-2174 (((-418 $) $) 139)) (-1540 (($ $ (-640 (-294 $))) 21) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-640 |#4|) (-640 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-640 |#4|) (-640 $)) NIL)) (-2315 (($ $ |#4|) 78)) (-2220 (((-888 (-379)) $) 212) (((-888 (-563)) $) 205) (((-536) $) 220)) (-1836 ((|#2| $) NIL) (($ $ |#4|) 174)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) 153)) (-4319 ((|#2| $ |#3|) NIL) (($ $ |#4| (-767)) 52) (($ $ (-640 |#4|) (-640 (-767))) 55)) (-2779 (((-3 $ "failed") $) 155)) (-1744 (((-112) $ $) 185)))
-(((-944 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3385 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))) (-15 -3205 ((-418 |#1|) |#1|)) (-15 -4335 (|#1| |#1|)) (-15 -2779 ((-3 |#1| "failed") |#1|)) (-15 -1744 ((-112) |#1| |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -2220 ((-888 (-563)) |#1|)) (-15 -2220 ((-888 (-379)) |#1|)) (-15 -3787 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -3787 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -2174 ((-418 |#1|) |#1|)) (-15 -3116 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -1876 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2748 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -1377 ((-3 (-1257 |#1|) "failed") (-684 |#1|))) (-15 -1300 (|#1| |#1| |#4|)) (-15 -1836 (|#1| |#1| |#4|)) (-15 -2315 (|#1| |#1| |#4|)) (-15 -2742 (|#1| |#1| |#1| |#4|)) (-15 -2739 ((-640 |#1|) |#1|)) (-15 -1779 ((-767) |#1| (-640 |#4|))) (-15 -1779 ((-767) |#1|)) (-15 -4086 ((-3 (-2 (|:| |var| |#4|) (|:| -1654 (-767))) "failed") |#1|)) (-15 -3733 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -2919 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -2588 (|#1| |#1| (-640 |#4|) (-640 (-767)))) (-15 -2588 (|#1| |#1| |#4| (-767))) (-15 -2625 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1| |#4|)) (-15 -1368 ((-640 |#1|) |#1|)) (-15 -4319 (|#1| |#1| (-640 |#4|) (-640 (-767)))) (-15 -4319 (|#1| |#1| |#4| (-767))) (-15 -2950 ((-684 |#2|) (-684 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-684 (-563)) (-684 |#1|))) (-15 -2131 ((-3 |#4| "failed") |#1|)) (-15 -2058 (|#4| |#1|)) (-15 -1540 (|#1| |#1| (-640 |#4|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#4| |#1|)) (-15 -1540 (|#1| |#1| (-640 |#4|) (-640 |#2|))) (-15 -1540 (|#1| |#1| |#4| |#2|)) (-15 -1540 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#1| |#1|)) (-15 -1540 (|#1| |#1| (-294 |#1|))) (-15 -1540 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -2588 (|#1| |#2| |#3|)) (-15 -4319 (|#2| |#1| |#3|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -1836 (|#2| |#1|)) (-15 -1300 (|#1| |#1|))) (-945 |#2| |#3| |#4|) (-1045) (-789) (-846)) (T -944))
-NIL
-(-10 -8 (-15 -3385 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))) (-15 -3205 ((-418 |#1|) |#1|)) (-15 -4335 (|#1| |#1|)) (-15 -2779 ((-3 |#1| "failed") |#1|)) (-15 -1744 ((-112) |#1| |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -2220 ((-888 (-563)) |#1|)) (-15 -2220 ((-888 (-379)) |#1|)) (-15 -3787 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -3787 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -2174 ((-418 |#1|) |#1|)) (-15 -3116 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -1876 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2748 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -1377 ((-3 (-1257 |#1|) "failed") (-684 |#1|))) (-15 -1300 (|#1| |#1| |#4|)) (-15 -1836 (|#1| |#1| |#4|)) (-15 -2315 (|#1| |#1| |#4|)) (-15 -2742 (|#1| |#1| |#1| |#4|)) (-15 -2739 ((-640 |#1|) |#1|)) (-15 -1779 ((-767) |#1| (-640 |#4|))) (-15 -1779 ((-767) |#1|)) (-15 -4086 ((-3 (-2 (|:| |var| |#4|) (|:| -1654 (-767))) "failed") |#1|)) (-15 -3733 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -2919 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -2588 (|#1| |#1| (-640 |#4|) (-640 (-767)))) (-15 -2588 (|#1| |#1| |#4| (-767))) (-15 -2625 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1| |#4|)) (-15 -1368 ((-640 |#1|) |#1|)) (-15 -4319 (|#1| |#1| (-640 |#4|) (-640 (-767)))) (-15 -4319 (|#1| |#1| |#4| (-767))) (-15 -2950 ((-684 |#2|) (-684 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-684 (-563)) (-684 |#1|))) (-15 -2131 ((-3 |#4| "failed") |#1|)) (-15 -2058 (|#4| |#1|)) (-15 -1540 (|#1| |#1| (-640 |#4|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#4| |#1|)) (-15 -1540 (|#1| |#1| (-640 |#4|) (-640 |#2|))) (-15 -1540 (|#1| |#1| |#4| |#2|)) (-15 -1540 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#1| |#1|)) (-15 -1540 (|#1| |#1| (-294 |#1|))) (-15 -1540 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -2588 (|#1| |#2| |#3|)) (-15 -4319 (|#2| |#1| |#3|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -1836 (|#2| |#1|)) (-15 -1300 (|#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-2606 (((-640 |#3|) $) 110)) (-2139 (((-1165 $) $ |#3|) 125) (((-1165 |#1|) $) 124)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 87 (|has| |#1| (-555)))) (-4223 (($ $) 88 (|has| |#1| (-555)))) (-3156 (((-112) $) 90 (|has| |#1| (-555)))) (-1779 (((-767) $) 112) (((-767) $ (-640 |#3|)) 111)) (-1495 (((-3 $ "failed") $ $) 19)) (-2424 (((-418 (-1165 $)) (-1165 $)) 100 (|has| |#1| (-905)))) (-4335 (($ $) 98 (|has| |#1| (-452)))) (-3205 (((-418 $) $) 97 (|has| |#1| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 103 (|has| |#1| (-905)))) (-4239 (($) 17 T CONST)) (-2131 (((-3 |#1| "failed") $) 164) (((-3 (-407 (-563)) "failed") $) 161 (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) 159 (|has| |#1| (-1034 (-563)))) (((-3 |#3| "failed") $) 136)) (-2058 ((|#1| $) 163) (((-407 (-563)) $) 162 (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) 160 (|has| |#1| (-1034 (-563)))) ((|#3| $) 137)) (-2742 (($ $ $ |#3|) 108 (|has| |#1| (-172)))) (-2751 (($ $) 154)) (-2950 (((-684 (-563)) (-684 $)) 134 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 133 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 132) (((-684 |#1|) (-684 $)) 131)) (-3400 (((-3 $ "failed") $) 33)) (-1300 (($ $) 176 (|has| |#1| (-452))) (($ $ |#3|) 105 (|has| |#1| (-452)))) (-2739 (((-640 $) $) 109)) (-2468 (((-112) $) 96 (|has| |#1| (-905)))) (-3554 (($ $ |#1| |#2| $) 172)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 84 (-12 (|has| |#3| (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 83 (-12 (|has| |#3| (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-3827 (((-112) $) 31)) (-4096 (((-767) $) 169)) (-2596 (($ (-1165 |#1|) |#3|) 117) (($ (-1165 $) |#3|) 116)) (-1368 (((-640 $) $) 126)) (-3920 (((-112) $) 152)) (-2588 (($ |#1| |#2|) 153) (($ $ |#3| (-767)) 119) (($ $ (-640 |#3|) (-640 (-767))) 118)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ |#3|) 120)) (-2048 ((|#2| $) 170) (((-767) $ |#3|) 122) (((-640 (-767)) $ (-640 |#3|)) 121)) (-3084 (($ $ $) 79 (|has| |#1| (-846)))) (-1777 (($ $ $) 78 (|has| |#1| (-846)))) (-2803 (($ (-1 |#2| |#2|) $) 171)) (-2240 (($ (-1 |#1| |#1|) $) 151)) (-4234 (((-3 |#3| "failed") $) 123)) (-2716 (($ $) 149)) (-2726 ((|#1| $) 148)) (-3513 (($ (-640 $)) 94 (|has| |#1| (-452))) (($ $ $) 93 (|has| |#1| (-452)))) (-3573 (((-1151) $) 9)) (-3733 (((-3 (-640 $) "failed") $) 114)) (-2919 (((-3 (-640 $) "failed") $) 115)) (-4086 (((-3 (-2 (|:| |var| |#3|) (|:| -1654 (-767))) "failed") $) 113)) (-1694 (((-1113) $) 10)) (-2696 (((-112) $) 166)) (-2706 ((|#1| $) 167)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 95 (|has| |#1| (-452)))) (-3548 (($ (-640 $)) 92 (|has| |#1| (-452))) (($ $ $) 91 (|has| |#1| (-452)))) (-1876 (((-418 (-1165 $)) (-1165 $)) 102 (|has| |#1| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) 101 (|has| |#1| (-905)))) (-2174 (((-418 $) $) 99 (|has| |#1| (-905)))) (-3008 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-555))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-555)))) (-1540 (($ $ (-640 (-294 $))) 145) (($ $ (-294 $)) 144) (($ $ $ $) 143) (($ $ (-640 $) (-640 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-640 |#3|) (-640 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-640 |#3|) (-640 $)) 138)) (-2315 (($ $ |#3|) 107 (|has| |#1| (-172)))) (-4202 (($ $ |#3|) 42) (($ $ (-640 |#3|)) 41) (($ $ |#3| (-767)) 40) (($ $ (-640 |#3|) (-640 (-767))) 39)) (-4167 ((|#2| $) 150) (((-767) $ |#3|) 130) (((-640 (-767)) $ (-640 |#3|)) 129)) (-2220 (((-888 (-379)) $) 82 (-12 (|has| |#3| (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) 81 (-12 (|has| |#3| (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) 80 (-12 (|has| |#3| (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-1836 ((|#1| $) 175 (|has| |#1| (-452))) (($ $ |#3|) 106 (|has| |#1| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) 104 (-2190 (|has| $ (-145)) (|has| |#1| (-905))))) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 165) (($ |#3|) 135) (($ $) 85 (|has| |#1| (-555))) (($ (-407 (-563))) 72 (-4032 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563))))))) (-1337 (((-640 |#1|) $) 168)) (-4319 ((|#1| $ |#2|) 155) (($ $ |#3| (-767)) 128) (($ $ (-640 |#3|) (-640 (-767))) 127)) (-2779 (((-3 $ "failed") $) 73 (-4032 (-2190 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-1675 (((-767)) 28)) (-2793 (($ $ $ (-767)) 173 (|has| |#1| (-172)))) (-2126 (((-112) $ $) 89 (|has| |#1| (-555)))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ |#3|) 38) (($ $ (-640 |#3|)) 37) (($ $ |#3| (-767)) 36) (($ $ (-640 |#3|) (-640 (-767))) 35)) (-1778 (((-112) $ $) 76 (|has| |#1| (-846)))) (-1756 (((-112) $ $) 75 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 77 (|has| |#1| (-846)))) (-1744 (((-112) $ $) 74 (|has| |#1| (-846)))) (-1837 (($ $ |#1|) 156 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 158 (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) 157 (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+((-1945 (((-481 |#1| |#2|) (-948 |#2|)) 20)) (-1974 (((-247 |#1| |#2|) (-948 |#2|)) 33)) (-1954 (((-948 |#2|) (-481 |#1| |#2|)) 25)) (-1934 (((-247 |#1| |#2|) (-481 |#1| |#2|)) 55)) (-1964 (((-948 |#2|) (-247 |#1| |#2|)) 30)) (-1923 (((-481 |#1| |#2|) (-247 |#1| |#2|)) 46)))
+(((-940 |#1| |#2|) (-10 -7 (-15 -1923 ((-481 |#1| |#2|) (-247 |#1| |#2|))) (-15 -1934 ((-247 |#1| |#2|) (-481 |#1| |#2|))) (-15 -1945 ((-481 |#1| |#2|) (-948 |#2|))) (-15 -1954 ((-948 |#2|) (-481 |#1| |#2|))) (-15 -1964 ((-948 |#2|) (-247 |#1| |#2|))) (-15 -1974 ((-247 |#1| |#2|) (-948 |#2|)))) (-640 (-1169)) (-1045)) (T -940))
+((-1974 (*1 *2 *3) (-12 (-5 *3 (-948 *5)) (-4 *5 (-1045)) (-5 *2 (-247 *4 *5)) (-5 *1 (-940 *4 *5)) (-14 *4 (-640 (-1169))))) (-1964 (*1 *2 *3) (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045)) (-5 *2 (-948 *5)) (-5 *1 (-940 *4 *5)))) (-1954 (*1 *2 *3) (-12 (-5 *3 (-481 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045)) (-5 *2 (-948 *5)) (-5 *1 (-940 *4 *5)))) (-1945 (*1 *2 *3) (-12 (-5 *3 (-948 *5)) (-4 *5 (-1045)) (-5 *2 (-481 *4 *5)) (-5 *1 (-940 *4 *5)) (-14 *4 (-640 (-1169))))) (-1934 (*1 *2 *3) (-12 (-5 *3 (-481 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045)) (-5 *2 (-247 *4 *5)) (-5 *1 (-940 *4 *5)))) (-1923 (*1 *2 *3) (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045)) (-5 *2 (-481 *4 *5)) (-5 *1 (-940 *4 *5)))))
+(-10 -7 (-15 -1923 ((-481 |#1| |#2|) (-247 |#1| |#2|))) (-15 -1934 ((-247 |#1| |#2|) (-481 |#1| |#2|))) (-15 -1945 ((-481 |#1| |#2|) (-948 |#2|))) (-15 -1954 ((-948 |#2|) (-481 |#1| |#2|))) (-15 -1964 ((-948 |#2|) (-247 |#1| |#2|))) (-15 -1974 ((-247 |#1| |#2|) (-948 |#2|))))
+((-3840 (((-640 |#2|) |#2| |#2|) 10)) (-3865 (((-767) (-640 |#1|)) 37 (|has| |#1| (-844)))) (-3849 (((-640 |#2|) |#2|) 11)) (-3875 (((-767) (-640 |#1|) (-563) (-563)) 39 (|has| |#1| (-844)))) (-3858 ((|#1| |#2|) 32 (|has| |#1| (-844)))))
+(((-941 |#1| |#2|) (-10 -7 (-15 -3840 ((-640 |#2|) |#2| |#2|)) (-15 -3849 ((-640 |#2|) |#2|)) (IF (|has| |#1| (-844)) (PROGN (-15 -3858 (|#1| |#2|)) (-15 -3865 ((-767) (-640 |#1|))) (-15 -3875 ((-767) (-640 |#1|) (-563) (-563)))) |%noBranch|)) (-363) (-1233 |#1|)) (T -941))
+((-3875 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-640 *5)) (-5 *4 (-563)) (-4 *5 (-844)) (-4 *5 (-363)) (-5 *2 (-767)) (-5 *1 (-941 *5 *6)) (-4 *6 (-1233 *5)))) (-3865 (*1 *2 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-844)) (-4 *4 (-363)) (-5 *2 (-767)) (-5 *1 (-941 *4 *5)) (-4 *5 (-1233 *4)))) (-3858 (*1 *2 *3) (-12 (-4 *2 (-363)) (-4 *2 (-844)) (-5 *1 (-941 *2 *3)) (-4 *3 (-1233 *2)))) (-3849 (*1 *2 *3) (-12 (-4 *4 (-363)) (-5 *2 (-640 *3)) (-5 *1 (-941 *4 *3)) (-4 *3 (-1233 *4)))) (-3840 (*1 *2 *3 *3) (-12 (-4 *4 (-363)) (-5 *2 (-640 *3)) (-5 *1 (-941 *4 *3)) (-4 *3 (-1233 *4)))))
+(-10 -7 (-15 -3840 ((-640 |#2|) |#2| |#2|)) (-15 -3849 ((-640 |#2|) |#2|)) (IF (|has| |#1| (-844)) (PROGN (-15 -3858 (|#1| |#2|)) (-15 -3865 ((-767) (-640 |#1|))) (-15 -3875 ((-767) (-640 |#1|) (-563) (-563)))) |%noBranch|))
+((-2238 (((-948 |#2|) (-1 |#2| |#1|) (-948 |#1|)) 19)))
+(((-942 |#1| |#2|) (-10 -7 (-15 -2238 ((-948 |#2|) (-1 |#2| |#1|) (-948 |#1|)))) (-1045) (-1045)) (T -942))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-948 *5)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-5 *2 (-948 *6)) (-5 *1 (-942 *5 *6)))))
+(-10 -7 (-15 -2238 ((-948 |#2|) (-1 |#2| |#1|) (-948 |#1|))))
+((-2138 (((-1230 |#1| (-948 |#2|)) (-948 |#2|) (-1253 |#1|)) 18)))
+(((-943 |#1| |#2|) (-10 -7 (-15 -2138 ((-1230 |#1| (-948 |#2|)) (-948 |#2|) (-1253 |#1|)))) (-1169) (-1045)) (T -943))
+((-2138 (*1 *2 *3 *4) (-12 (-5 *4 (-1253 *5)) (-14 *5 (-1169)) (-4 *6 (-1045)) (-5 *2 (-1230 *5 (-948 *6))) (-5 *1 (-943 *5 *6)) (-5 *3 (-948 *6)))))
+(-10 -7 (-15 -2138 ((-1230 |#1| (-948 |#2|)) (-948 |#2|) (-1253 |#1|))))
+((-3897 (((-767) $) 71) (((-767) $ (-640 |#4|)) 74)) (-1798 (($ $) 172)) (-2802 (((-418 $) $) 164)) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 115)) (-2130 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 (-563) "failed") $) NIL) (((-3 |#4| "failed") $) 60)) (-2057 ((|#2| $) NIL) (((-407 (-563)) $) NIL) (((-563) $) NIL) ((|#4| $) 59)) (-1612 (($ $ $ |#4|) 76)) (-1476 (((-684 (-563)) (-684 $)) NIL) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) 105) (((-684 |#2|) (-684 $)) 98)) (-4151 (($ $) 179) (($ $ |#4|) 182)) (-2738 (((-640 $) $) 63)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 198) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 191)) (-3919 (((-640 $) $) 28)) (-2587 (($ |#2| |#3|) NIL) (($ $ |#4| (-767)) NIL) (($ $ (-640 |#4|) (-640 (-767))) 57)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ |#4|) 161)) (-3939 (((-3 (-640 $) "failed") $) 42)) (-3930 (((-3 (-640 $) "failed") $) 31)) (-3949 (((-3 (-2 (|:| |var| |#4|) (|:| -3311 (-767))) "failed") $) 47)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 108)) (-2075 (((-418 (-1165 $)) (-1165 $)) 121)) (-2083 (((-418 (-1165 $)) (-1165 $)) 119)) (-2173 (((-418 $) $) 139)) (-1542 (($ $ (-640 (-294 $))) 21) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-640 |#4|) (-640 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-640 |#4|) (-640 $)) NIL)) (-1623 (($ $ |#4|) 78)) (-2219 (((-888 (-379)) $) 212) (((-888 (-563)) $) 205) (((-536) $) 220)) (-3885 ((|#2| $) NIL) (($ $ |#4|) 174)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) 153)) (-3244 ((|#2| $ |#3|) NIL) (($ $ |#4| (-767)) 52) (($ $ (-640 |#4|) (-640 (-767))) 55)) (-2047 (((-3 $ "failed") $) 155)) (-1743 (((-112) $ $) 185)))
+(((-944 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2103 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))) (-15 -2802 ((-418 |#1|) |#1|)) (-15 -1798 (|#1| |#1|)) (-15 -2047 ((-3 |#1| "failed") |#1|)) (-15 -1743 ((-112) |#1| |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -2219 ((-888 (-563)) |#1|)) (-15 -2219 ((-888 (-379)) |#1|)) (-15 -1812 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -1812 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -2173 ((-418 |#1|) |#1|)) (-15 -2083 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2075 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2066 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -2054 ((-3 (-1257 |#1|) "failed") (-684 |#1|))) (-15 -4151 (|#1| |#1| |#4|)) (-15 -3885 (|#1| |#1| |#4|)) (-15 -1623 (|#1| |#1| |#4|)) (-15 -1612 (|#1| |#1| |#1| |#4|)) (-15 -2738 ((-640 |#1|) |#1|)) (-15 -3897 ((-767) |#1| (-640 |#4|))) (-15 -3897 ((-767) |#1|)) (-15 -3949 ((-3 (-2 (|:| |var| |#4|) (|:| -3311 (-767))) "failed") |#1|)) (-15 -3939 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -3930 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -2587 (|#1| |#1| (-640 |#4|) (-640 (-767)))) (-15 -2587 (|#1| |#1| |#4| (-767))) (-15 -1684 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1| |#4|)) (-15 -3919 ((-640 |#1|) |#1|)) (-15 -3244 (|#1| |#1| (-640 |#4|) (-640 (-767)))) (-15 -3244 (|#1| |#1| |#4| (-767))) (-15 -1476 ((-684 |#2|) (-684 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-684 (-563)) (-684 |#1|))) (-15 -2130 ((-3 |#4| "failed") |#1|)) (-15 -2057 (|#4| |#1|)) (-15 -1542 (|#1| |#1| (-640 |#4|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#4| |#1|)) (-15 -1542 (|#1| |#1| (-640 |#4|) (-640 |#2|))) (-15 -1542 (|#1| |#1| |#4| |#2|)) (-15 -1542 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#1| |#1|)) (-15 -1542 (|#1| |#1| (-294 |#1|))) (-15 -1542 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -2587 (|#1| |#2| |#3|)) (-15 -3244 (|#2| |#1| |#3|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -3885 (|#2| |#1|)) (-15 -4151 (|#1| |#1|))) (-945 |#2| |#3| |#4|) (-1045) (-789) (-846)) (T -944))
+NIL
+(-10 -8 (-15 -2103 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))) (-15 -2802 ((-418 |#1|) |#1|)) (-15 -1798 (|#1| |#1|)) (-15 -2047 ((-3 |#1| "failed") |#1|)) (-15 -1743 ((-112) |#1| |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -2219 ((-888 (-563)) |#1|)) (-15 -2219 ((-888 (-379)) |#1|)) (-15 -1812 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -1812 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -2173 ((-418 |#1|) |#1|)) (-15 -2083 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2075 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2066 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -2054 ((-3 (-1257 |#1|) "failed") (-684 |#1|))) (-15 -4151 (|#1| |#1| |#4|)) (-15 -3885 (|#1| |#1| |#4|)) (-15 -1623 (|#1| |#1| |#4|)) (-15 -1612 (|#1| |#1| |#1| |#4|)) (-15 -2738 ((-640 |#1|) |#1|)) (-15 -3897 ((-767) |#1| (-640 |#4|))) (-15 -3897 ((-767) |#1|)) (-15 -3949 ((-3 (-2 (|:| |var| |#4|) (|:| -3311 (-767))) "failed") |#1|)) (-15 -3939 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -3930 ((-3 (-640 |#1|) "failed") |#1|)) (-15 -2587 (|#1| |#1| (-640 |#4|) (-640 (-767)))) (-15 -2587 (|#1| |#1| |#4| (-767))) (-15 -1684 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1| |#4|)) (-15 -3919 ((-640 |#1|) |#1|)) (-15 -3244 (|#1| |#1| (-640 |#4|) (-640 (-767)))) (-15 -3244 (|#1| |#1| |#4| (-767))) (-15 -1476 ((-684 |#2|) (-684 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-684 (-563)) (-684 |#1|))) (-15 -2130 ((-3 |#4| "failed") |#1|)) (-15 -2057 (|#4| |#1|)) (-15 -1542 (|#1| |#1| (-640 |#4|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#4| |#1|)) (-15 -1542 (|#1| |#1| (-640 |#4|) (-640 |#2|))) (-15 -1542 (|#1| |#1| |#4| |#2|)) (-15 -1542 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#1| |#1|)) (-15 -1542 (|#1| |#1| (-294 |#1|))) (-15 -1542 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -2587 (|#1| |#2| |#3|)) (-15 -3244 (|#2| |#1| |#3|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -3885 (|#2| |#1|)) (-15 -4151 (|#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-2605 (((-640 |#3|) $) 110)) (-2138 (((-1165 $) $ |#3|) 125) (((-1165 |#1|) $) 124)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 87 (|has| |#1| (-555)))) (-3231 (($ $) 88 (|has| |#1| (-555)))) (-3211 (((-112) $) 90 (|has| |#1| (-555)))) (-3897 (((-767) $) 112) (((-767) $ (-640 |#3|)) 111)) (-3905 (((-3 $ "failed") $ $) 19)) (-2093 (((-418 (-1165 $)) (-1165 $)) 100 (|has| |#1| (-905)))) (-1798 (($ $) 98 (|has| |#1| (-452)))) (-2802 (((-418 $) $) 97 (|has| |#1| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 103 (|has| |#1| (-905)))) (-2569 (($) 17 T CONST)) (-2130 (((-3 |#1| "failed") $) 164) (((-3 (-407 (-563)) "failed") $) 161 (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) 159 (|has| |#1| (-1034 (-563)))) (((-3 |#3| "failed") $) 136)) (-2057 ((|#1| $) 163) (((-407 (-563)) $) 162 (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) 160 (|has| |#1| (-1034 (-563)))) ((|#3| $) 137)) (-1612 (($ $ $ |#3|) 108 (|has| |#1| (-172)))) (-2750 (($ $) 154)) (-1476 (((-684 (-563)) (-684 $)) 134 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 133 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 132) (((-684 |#1|) (-684 $)) 131)) (-3951 (((-3 $ "failed") $) 33)) (-4151 (($ $) 176 (|has| |#1| (-452))) (($ $ |#3|) 105 (|has| |#1| (-452)))) (-2738 (((-640 $) $) 109)) (-2560 (((-112) $) 96 (|has| |#1| (-905)))) (-2159 (($ $ |#1| |#2| $) 172)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 84 (-12 (|has| |#3| (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 83 (-12 (|has| |#3| (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-3401 (((-112) $) 31)) (-3481 (((-767) $) 169)) (-2595 (($ (-1165 |#1|) |#3|) 117) (($ (-1165 $) |#3|) 116)) (-3919 (((-640 $) $) 126)) (-3805 (((-112) $) 152)) (-2587 (($ |#1| |#2|) 153) (($ $ |#3| (-767)) 119) (($ $ (-640 |#3|) (-640 (-767))) 118)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ |#3|) 120)) (-3908 ((|#2| $) 170) (((-767) $ |#3|) 122) (((-640 (-767)) $ (-640 |#3|)) 121)) (-3088 (($ $ $) 79 (|has| |#1| (-846)))) (-1776 (($ $ $) 78 (|has| |#1| (-846)))) (-2170 (($ (-1 |#2| |#2|) $) 171)) (-2238 (($ (-1 |#1| |#1|) $) 151)) (-1698 (((-3 |#3| "failed") $) 123)) (-2715 (($ $) 149)) (-2725 ((|#1| $) 148)) (-3517 (($ (-640 $)) 94 (|has| |#1| (-452))) (($ $ $) 93 (|has| |#1| (-452)))) (-3854 (((-1151) $) 9)) (-3939 (((-3 (-640 $) "failed") $) 114)) (-3930 (((-3 (-640 $) "failed") $) 115)) (-3949 (((-3 (-2 (|:| |var| |#3|) (|:| -3311 (-767))) "failed") $) 113)) (-1693 (((-1113) $) 10)) (-2695 (((-112) $) 166)) (-2705 ((|#1| $) 167)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 95 (|has| |#1| (-452)))) (-3551 (($ (-640 $)) 92 (|has| |#1| (-452))) (($ $ $) 91 (|has| |#1| (-452)))) (-2075 (((-418 (-1165 $)) (-1165 $)) 102 (|has| |#1| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) 101 (|has| |#1| (-905)))) (-2173 (((-418 $) $) 99 (|has| |#1| (-905)))) (-3012 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-555))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-555)))) (-1542 (($ $ (-640 (-294 $))) 145) (($ $ (-294 $)) 144) (($ $ $ $) 143) (($ $ (-640 $) (-640 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-640 |#3|) (-640 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-640 |#3|) (-640 $)) 138)) (-1623 (($ $ |#3|) 107 (|has| |#1| (-172)))) (-4203 (($ $ |#3|) 42) (($ $ (-640 |#3|)) 41) (($ $ |#3| (-767)) 40) (($ $ (-640 |#3|) (-640 (-767))) 39)) (-3871 ((|#2| $) 150) (((-767) $ |#3|) 130) (((-640 (-767)) $ (-640 |#3|)) 129)) (-2219 (((-888 (-379)) $) 82 (-12 (|has| |#3| (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) 81 (-12 (|has| |#3| (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) 80 (-12 (|has| |#3| (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-3885 ((|#1| $) 175 (|has| |#1| (-452))) (($ $ |#3|) 106 (|has| |#1| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) 104 (-2188 (|has| $ (-145)) (|has| |#1| (-905))))) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 165) (($ |#3|) 135) (($ $) 85 (|has| |#1| (-555))) (($ (-407 (-563))) 72 (-4034 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563))))))) (-3955 (((-640 |#1|) $) 168)) (-3244 ((|#1| $ |#2|) 155) (($ $ |#3| (-767)) 128) (($ $ (-640 |#3|) (-640 (-767))) 127)) (-2047 (((-3 $ "failed") $) 73 (-4034 (-2188 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-3914 (((-767)) 28)) (-2148 (($ $ $ (-767)) 173 (|has| |#1| (-172)))) (-3223 (((-112) $ $) 89 (|has| |#1| (-555)))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ |#3|) 38) (($ $ (-640 |#3|)) 37) (($ $ |#3| (-767)) 36) (($ $ (-640 |#3|) (-640 (-767))) 35)) (-1779 (((-112) $ $) 76 (|has| |#1| (-846)))) (-1754 (((-112) $ $) 75 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 77 (|has| |#1| (-846)))) (-1743 (((-112) $ $) 74 (|has| |#1| (-846)))) (-1836 (($ $ |#1|) 156 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 158 (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) 157 (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
(((-945 |#1| |#2| |#3|) (-140) (-1045) (-789) (-846)) (T -945))
-((-1300 (*1 *1 *1) (-12 (-4 *1 (-945 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-452)))) (-4167 (*1 *2 *1 *3) (-12 (-4 *1 (-945 *4 *5 *3)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-5 *2 (-767)))) (-4167 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *6)) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 (-767))))) (-4319 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-945 *4 *5 *2)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *2 (-846)))) (-4319 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *6)) (-5 *3 (-640 (-767))) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)))) (-1368 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-945 *3 *4 *5)))) (-2139 (*1 *2 *1 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-5 *2 (-1165 *1)) (-4 *1 (-945 *4 *5 *3)))) (-2139 (*1 *2 *1) (-12 (-4 *1 (-945 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-1165 *3)))) (-4234 (*1 *2 *1) (|partial| -12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-2048 (*1 *2 *1 *3) (-12 (-4 *1 (-945 *4 *5 *3)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-5 *2 (-767)))) (-2048 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *6)) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 (-767))))) (-2625 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-945 *4 *5 *3)))) (-2588 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-945 *4 *5 *2)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *2 (-846)))) (-2588 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *6)) (-5 *3 (-640 (-767))) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)))) (-2596 (*1 *1 *2 *3) (-12 (-5 *2 (-1165 *4)) (-4 *4 (-1045)) (-4 *1 (-945 *4 *5 *3)) (-4 *5 (-789)) (-4 *3 (-846)))) (-2596 (*1 *1 *2 *3) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-945 *4 *5 *3)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)))) (-2919 (*1 *2 *1) (|partial| -12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-945 *3 *4 *5)))) (-3733 (*1 *2 *1) (|partial| -12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-945 *3 *4 *5)))) (-4086 (*1 *2 *1) (|partial| -12 (-4 *1 (-945 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| |var| *5) (|:| -1654 (-767)))))) (-1779 (*1 *2 *1) (-12 (-4 *1 (-945 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-767)))) (-1779 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *6)) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-767)))) (-2606 (*1 *2 *1) (-12 (-4 *1 (-945 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *5)))) (-2739 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-945 *3 *4 *5)))) (-2742 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)) (-4 *3 (-172)))) (-2315 (*1 *1 *1 *2) (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)) (-4 *3 (-172)))) (-1836 (*1 *1 *1 *2) (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)) (-4 *3 (-452)))) (-1300 (*1 *1 *1 *2) (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)) (-4 *3 (-452)))) (-4335 (*1 *1 *1) (-12 (-4 *1 (-945 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-452)))) (-3205 (*1 *2 *1) (-12 (-4 *3 (-452)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-418 *1)) (-4 *1 (-945 *3 *4 *5)))))
-(-13 (-896 |t#3|) (-326 |t#1| |t#2|) (-309 $) (-514 |t#3| |t#1|) (-514 |t#3| $) (-1034 |t#3|) (-377 |t#1|) (-10 -8 (-15 -4167 ((-767) $ |t#3|)) (-15 -4167 ((-640 (-767)) $ (-640 |t#3|))) (-15 -4319 ($ $ |t#3| (-767))) (-15 -4319 ($ $ (-640 |t#3|) (-640 (-767)))) (-15 -1368 ((-640 $) $)) (-15 -2139 ((-1165 $) $ |t#3|)) (-15 -2139 ((-1165 |t#1|) $)) (-15 -4234 ((-3 |t#3| "failed") $)) (-15 -2048 ((-767) $ |t#3|)) (-15 -2048 ((-640 (-767)) $ (-640 |t#3|))) (-15 -2625 ((-2 (|:| -3490 $) (|:| -1972 $)) $ $ |t#3|)) (-15 -2588 ($ $ |t#3| (-767))) (-15 -2588 ($ $ (-640 |t#3|) (-640 (-767)))) (-15 -2596 ($ (-1165 |t#1|) |t#3|)) (-15 -2596 ($ (-1165 $) |t#3|)) (-15 -2919 ((-3 (-640 $) "failed") $)) (-15 -3733 ((-3 (-640 $) "failed") $)) (-15 -4086 ((-3 (-2 (|:| |var| |t#3|) (|:| -1654 (-767))) "failed") $)) (-15 -1779 ((-767) $)) (-15 -1779 ((-767) $ (-640 |t#3|))) (-15 -2606 ((-640 |t#3|) $)) (-15 -2739 ((-640 $) $)) (IF (|has| |t#1| (-846)) (-6 (-846)) |%noBranch|) (IF (|has| |t#1| (-611 (-536))) (IF (|has| |t#3| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-611 (-888 (-563)))) (IF (|has| |t#3| (-611 (-888 (-563)))) (-6 (-611 (-888 (-563)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-611 (-888 (-379)))) (IF (|has| |t#3| (-611 (-888 (-379)))) (-6 (-611 (-888 (-379)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-882 (-563))) (IF (|has| |t#3| (-882 (-563))) (-6 (-882 (-563))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-882 (-379))) (IF (|has| |t#3| (-882 (-379))) (-6 (-882 (-379))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-172)) (PROGN (-15 -2742 ($ $ $ |t#3|)) (-15 -2315 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-452)) (PROGN (-6 (-452)) (-15 -1836 ($ $ |t#3|)) (-15 -1300 ($ $)) (-15 -1300 ($ $ |t#3|)) (-15 -3205 ((-418 $) $)) (-15 -4335 ($ $))) |%noBranch|) (IF (|has| |t#1| (-6 -4405)) (-6 -4405) |%noBranch|) (IF (|has| |t#1| (-905)) (-6 (-905)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) -4032 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 |#3|) . T) ((-613 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-610 (-858)) . T) ((-172) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-611 (-536)) -12 (|has| |#1| (-611 (-536))) (|has| |#3| (-611 (-536)))) ((-611 (-888 (-379))) -12 (|has| |#1| (-611 (-888 (-379)))) (|has| |#3| (-611 (-888 (-379))))) ((-611 (-888 (-563))) -12 (|has| |#1| (-611 (-888 (-563)))) (|has| |#3| (-611 (-888 (-563))))) ((-290) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-309 $) . T) ((-326 |#1| |#2|) . T) ((-377 |#1|) . T) ((-411 |#1|) . T) ((-452) -4032 (|has| |#1| (-905)) (|has| |#1| (-452))) ((-514 |#3| |#1|) . T) ((-514 |#3| $) . T) ((-514 $ $) . T) ((-555) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-643 #0#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #0#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-722) . T) ((-846) |has| |#1| (-846)) ((-896 |#3|) . T) ((-882 (-379)) -12 (|has| |#1| (-882 (-379))) (|has| |#3| (-882 (-379)))) ((-882 (-563)) -12 (|has| |#1| (-882 (-563))) (|has| |#3| (-882 (-563)))) ((-905) |has| |#1| (-905)) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1034 |#3|) . T) ((-1051 #0#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1212) |has| |#1| (-905)))
-((-2606 (((-640 |#2|) |#5|) 36)) (-2139 (((-1165 |#5|) |#5| |#2| (-1165 |#5|)) 23) (((-407 (-1165 |#5|)) |#5| |#2|) 16)) (-2596 ((|#5| (-407 (-1165 |#5|)) |#2|) 30)) (-4234 (((-3 |#2| "failed") |#5|) 65)) (-3733 (((-3 (-640 |#5|) "failed") |#5|) 59)) (-1848 (((-3 (-2 (|:| |val| |#5|) (|:| -1654 (-563))) "failed") |#5|) 47)) (-2919 (((-3 (-640 |#5|) "failed") |#5|) 61)) (-4086 (((-3 (-2 (|:| |var| |#2|) (|:| -1654 (-563))) "failed") |#5|) 51)))
-(((-946 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2606 ((-640 |#2|) |#5|)) (-15 -4234 ((-3 |#2| "failed") |#5|)) (-15 -2139 ((-407 (-1165 |#5|)) |#5| |#2|)) (-15 -2596 (|#5| (-407 (-1165 |#5|)) |#2|)) (-15 -2139 ((-1165 |#5|) |#5| |#2| (-1165 |#5|))) (-15 -2919 ((-3 (-640 |#5|) "failed") |#5|)) (-15 -3733 ((-3 (-640 |#5|) "failed") |#5|)) (-15 -4086 ((-3 (-2 (|:| |var| |#2|) (|:| -1654 (-563))) "failed") |#5|)) (-15 -1848 ((-3 (-2 (|:| |val| |#5|) (|:| -1654 (-563))) "failed") |#5|))) (-789) (-846) (-1045) (-945 |#3| |#1| |#2|) (-13 (-363) (-10 -8 (-15 -1693 ($ |#4|)) (-15 -2143 (|#4| $)) (-15 -2154 (|#4| $))))) (T -946))
-((-1848 (*1 *2 *3) (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-2 (|:| |val| *3) (|:| -1654 (-563)))) (-5 *1 (-946 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $)) (-15 -2154 (*7 $))))))) (-4086 (*1 *2 *3) (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-2 (|:| |var| *5) (|:| -1654 (-563)))) (-5 *1 (-946 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $)) (-15 -2154 (*7 $))))))) (-3733 (*1 *2 *3) (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-640 *3)) (-5 *1 (-946 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $)) (-15 -2154 (*7 $))))))) (-2919 (*1 *2 *3) (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-640 *3)) (-5 *1 (-946 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $)) (-15 -2154 (*7 $))))))) (-2139 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1165 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $)) (-15 -2154 (*7 $))))) (-4 *7 (-945 *6 *5 *4)) (-4 *5 (-789)) (-4 *4 (-846)) (-4 *6 (-1045)) (-5 *1 (-946 *5 *4 *6 *7 *3)))) (-2596 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-1165 *2))) (-4 *5 (-789)) (-4 *4 (-846)) (-4 *6 (-1045)) (-4 *2 (-13 (-363) (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $)) (-15 -2154 (*7 $))))) (-5 *1 (-946 *5 *4 *6 *7 *2)) (-4 *7 (-945 *6 *5 *4)))) (-2139 (*1 *2 *3 *4) (-12 (-4 *5 (-789)) (-4 *4 (-846)) (-4 *6 (-1045)) (-4 *7 (-945 *6 *5 *4)) (-5 *2 (-407 (-1165 *3))) (-5 *1 (-946 *5 *4 *6 *7 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $)) (-15 -2154 (*7 $))))))) (-4234 (*1 *2 *3) (|partial| -12 (-4 *4 (-789)) (-4 *5 (-1045)) (-4 *6 (-945 *5 *4 *2)) (-4 *2 (-846)) (-5 *1 (-946 *4 *2 *5 *6 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1693 ($ *6)) (-15 -2143 (*6 $)) (-15 -2154 (*6 $))))))) (-2606 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-640 *5)) (-5 *1 (-946 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $)) (-15 -2154 (*7 $))))))))
-(-10 -7 (-15 -2606 ((-640 |#2|) |#5|)) (-15 -4234 ((-3 |#2| "failed") |#5|)) (-15 -2139 ((-407 (-1165 |#5|)) |#5| |#2|)) (-15 -2596 (|#5| (-407 (-1165 |#5|)) |#2|)) (-15 -2139 ((-1165 |#5|) |#5| |#2| (-1165 |#5|))) (-15 -2919 ((-3 (-640 |#5|) "failed") |#5|)) (-15 -3733 ((-3 (-640 |#5|) "failed") |#5|)) (-15 -4086 ((-3 (-2 (|:| |var| |#2|) (|:| -1654 (-563))) "failed") |#5|)) (-15 -1848 ((-3 (-2 (|:| |val| |#5|) (|:| -1654 (-563))) "failed") |#5|)))
-((-2240 ((|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|) 23)))
-(((-947 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2240 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-789) (-846) (-1045) (-945 |#3| |#1| |#2|) (-13 (-1093) (-10 -8 (-15 -1814 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-767)))))) (T -947))
-((-2240 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-846)) (-4 *8 (-1045)) (-4 *6 (-789)) (-4 *2 (-13 (-1093) (-10 -8 (-15 -1814 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-767)))))) (-5 *1 (-947 *6 *7 *8 *5 *2)) (-4 *5 (-945 *8 *6 *7)))))
-(-10 -7 (-15 -2240 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2606 (((-640 (-1169)) $) 16)) (-2139 (((-1165 $) $ (-1169)) 21) (((-1165 |#1|) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-1779 (((-767) $) NIL) (((-767) $ (-640 (-1169))) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-4335 (($ $) NIL (|has| |#1| (-452)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) 8) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-1169) "failed") $) NIL)) (-2058 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-1169) $) NIL)) (-2742 (($ $ $ (-1169)) NIL (|has| |#1| (-172)))) (-2751 (($ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1300 (($ $) NIL (|has| |#1| (-452))) (($ $ (-1169)) NIL (|has| |#1| (-452)))) (-2739 (((-640 $) $) NIL)) (-2468 (((-112) $) NIL (|has| |#1| (-905)))) (-3554 (($ $ |#1| (-531 (-1169)) $) NIL)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1169) (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1169) (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) NIL)) (-2596 (($ (-1165 |#1|) (-1169)) NIL) (($ (-1165 $) (-1169)) NIL)) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-531 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ (-1169)) NIL)) (-2048 (((-531 (-1169)) $) NIL) (((-767) $ (-1169)) NIL) (((-640 (-767)) $ (-640 (-1169))) NIL)) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-2803 (($ (-1 (-531 (-1169)) (-531 (-1169))) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-4234 (((-3 (-1169) "failed") $) 19)) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3573 (((-1151) $) NIL)) (-3733 (((-3 (-640 $) "failed") $) NIL)) (-2919 (((-3 (-640 $) "failed") $) NIL)) (-4086 (((-3 (-2 (|:| |var| (-1169)) (|:| -1654 (-767))) "failed") $) NIL)) (-3698 (($ $ (-1169)) 29 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) NIL)) (-2706 ((|#1| $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2174 (((-418 $) $) NIL (|has| |#1| (-905)))) (-3008 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1540 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-1169) |#1|) NIL) (($ $ (-640 (-1169)) (-640 |#1|)) NIL) (($ $ (-1169) $) NIL) (($ $ (-640 (-1169)) (-640 $)) NIL)) (-2315 (($ $ (-1169)) NIL (|has| |#1| (-172)))) (-4202 (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL)) (-4167 (((-531 (-1169)) $) NIL) (((-767) $ (-1169)) NIL) (((-640 (-767)) $ (-640 (-1169))) NIL)) (-2220 (((-888 (-379)) $) NIL (-12 (|has| (-1169) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-1169) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-1169) (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-1836 ((|#1| $) NIL (|has| |#1| (-452))) (($ $ (-1169)) NIL (|has| |#1| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1693 (((-858) $) 25) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-1169)) 27) (($ (-407 (-563))) NIL (-4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-1337 (((-640 |#1|) $) NIL)) (-4319 ((|#1| $ (-531 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-1675 (((-767)) NIL)) (-2793 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL)) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-948 |#1|) (-13 (-945 |#1| (-531 (-1169)) (-1169)) (-10 -8 (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1169))) |%noBranch|))) (-1045)) (T -948))
-((-3698 (*1 *1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-948 *3)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)))))
-(-13 (-945 |#1| (-531 (-1169)) (-1169)) (-10 -8 (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1169))) |%noBranch|)))
-((-2886 (((-2 (|:| -1654 (-767)) (|:| -2311 |#5|) (|:| |radicand| |#5|)) |#3| (-767)) 38)) (-3655 (((-2 (|:| -1654 (-767)) (|:| -2311 |#5|) (|:| |radicand| |#5|)) (-407 (-563)) (-767)) 34)) (-2899 (((-2 (|:| -1654 (-767)) (|:| -2311 |#4|) (|:| |radicand| (-640 |#4|))) |#4| (-767)) 54)) (-3731 (((-2 (|:| -1654 (-767)) (|:| -2311 |#5|) (|:| |radicand| |#5|)) |#5| (-767)) 64 (|has| |#3| (-452)))))
-(((-949 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2886 ((-2 (|:| -1654 (-767)) (|:| -2311 |#5|) (|:| |radicand| |#5|)) |#3| (-767))) (-15 -3655 ((-2 (|:| -1654 (-767)) (|:| -2311 |#5|) (|:| |radicand| |#5|)) (-407 (-563)) (-767))) (IF (|has| |#3| (-452)) (-15 -3731 ((-2 (|:| -1654 (-767)) (|:| -2311 |#5|) (|:| |radicand| |#5|)) |#5| (-767))) |%noBranch|) (-15 -2899 ((-2 (|:| -1654 (-767)) (|:| -2311 |#4|) (|:| |radicand| (-640 |#4|))) |#4| (-767)))) (-789) (-846) (-555) (-945 |#3| |#1| |#2|) (-13 (-363) (-10 -8 (-15 -1693 ($ |#4|)) (-15 -2143 (|#4| $)) (-15 -2154 (|#4| $))))) (T -949))
-((-2899 (*1 *2 *3 *4) (-12 (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-555)) (-4 *3 (-945 *7 *5 *6)) (-5 *2 (-2 (|:| -1654 (-767)) (|:| -2311 *3) (|:| |radicand| (-640 *3)))) (-5 *1 (-949 *5 *6 *7 *3 *8)) (-5 *4 (-767)) (-4 *8 (-13 (-363) (-10 -8 (-15 -1693 ($ *3)) (-15 -2143 (*3 $)) (-15 -2154 (*3 $))))))) (-3731 (*1 *2 *3 *4) (-12 (-4 *7 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-555)) (-4 *8 (-945 *7 *5 *6)) (-5 *2 (-2 (|:| -1654 (-767)) (|:| -2311 *3) (|:| |radicand| *3))) (-5 *1 (-949 *5 *6 *7 *8 *3)) (-5 *4 (-767)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1693 ($ *8)) (-15 -2143 (*8 $)) (-15 -2154 (*8 $))))))) (-3655 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-563))) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-555)) (-4 *8 (-945 *7 *5 *6)) (-5 *2 (-2 (|:| -1654 (-767)) (|:| -2311 *9) (|:| |radicand| *9))) (-5 *1 (-949 *5 *6 *7 *8 *9)) (-5 *4 (-767)) (-4 *9 (-13 (-363) (-10 -8 (-15 -1693 ($ *8)) (-15 -2143 (*8 $)) (-15 -2154 (*8 $))))))) (-2886 (*1 *2 *3 *4) (-12 (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-555)) (-4 *7 (-945 *3 *5 *6)) (-5 *2 (-2 (|:| -1654 (-767)) (|:| -2311 *8) (|:| |radicand| *8))) (-5 *1 (-949 *5 *6 *3 *7 *8)) (-5 *4 (-767)) (-4 *8 (-13 (-363) (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $)) (-15 -2154 (*7 $))))))))
-(-10 -7 (-15 -2886 ((-2 (|:| -1654 (-767)) (|:| -2311 |#5|) (|:| |radicand| |#5|)) |#3| (-767))) (-15 -3655 ((-2 (|:| -1654 (-767)) (|:| -2311 |#5|) (|:| |radicand| |#5|)) (-407 (-563)) (-767))) (IF (|has| |#3| (-452)) (-15 -3731 ((-2 (|:| -1654 (-767)) (|:| -2311 |#5|) (|:| |radicand| |#5|)) |#5| (-767))) |%noBranch|) (-15 -2899 ((-2 (|:| -1654 (-767)) (|:| -2311 |#4|) (|:| |radicand| (-640 |#4|))) |#4| (-767))))
-((-1677 (((-112) $ $) NIL)) (-2266 (($ (-1113)) 8)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 14) (((-1113) $) 11)) (-1718 (((-112) $ $) 10)))
+((-4151 (*1 *1 *1) (-12 (-4 *1 (-945 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-452)))) (-3871 (*1 *2 *1 *3) (-12 (-4 *1 (-945 *4 *5 *3)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-5 *2 (-767)))) (-3871 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *6)) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 (-767))))) (-3244 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-945 *4 *5 *2)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *2 (-846)))) (-3244 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *6)) (-5 *3 (-640 (-767))) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)))) (-3919 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-945 *3 *4 *5)))) (-2138 (*1 *2 *1 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-5 *2 (-1165 *1)) (-4 *1 (-945 *4 *5 *3)))) (-2138 (*1 *2 *1) (-12 (-4 *1 (-945 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-1165 *3)))) (-1698 (*1 *2 *1) (|partial| -12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-3908 (*1 *2 *1 *3) (-12 (-4 *1 (-945 *4 *5 *3)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-5 *2 (-767)))) (-3908 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *6)) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 (-767))))) (-1684 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-945 *4 *5 *3)))) (-2587 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-945 *4 *5 *2)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *2 (-846)))) (-2587 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *6)) (-5 *3 (-640 (-767))) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)))) (-2595 (*1 *1 *2 *3) (-12 (-5 *2 (-1165 *4)) (-4 *4 (-1045)) (-4 *1 (-945 *4 *5 *3)) (-4 *5 (-789)) (-4 *3 (-846)))) (-2595 (*1 *1 *2 *3) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-945 *4 *5 *3)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)))) (-3930 (*1 *2 *1) (|partial| -12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-945 *3 *4 *5)))) (-3939 (*1 *2 *1) (|partial| -12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-945 *3 *4 *5)))) (-3949 (*1 *2 *1) (|partial| -12 (-4 *1 (-945 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| |var| *5) (|:| -3311 (-767)))))) (-3897 (*1 *2 *1) (-12 (-4 *1 (-945 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-767)))) (-3897 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *6)) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-767)))) (-2605 (*1 *2 *1) (-12 (-4 *1 (-945 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *5)))) (-2738 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-945 *3 *4 *5)))) (-1612 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)) (-4 *3 (-172)))) (-1623 (*1 *1 *1 *2) (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)) (-4 *3 (-172)))) (-3885 (*1 *1 *1 *2) (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)) (-4 *3 (-452)))) (-4151 (*1 *1 *1 *2) (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)) (-4 *3 (-452)))) (-1798 (*1 *1 *1) (-12 (-4 *1 (-945 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-452)))) (-2802 (*1 *2 *1) (-12 (-4 *3 (-452)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-418 *1)) (-4 *1 (-945 *3 *4 *5)))))
+(-13 (-896 |t#3|) (-326 |t#1| |t#2|) (-309 $) (-514 |t#3| |t#1|) (-514 |t#3| $) (-1034 |t#3|) (-377 |t#1|) (-10 -8 (-15 -3871 ((-767) $ |t#3|)) (-15 -3871 ((-640 (-767)) $ (-640 |t#3|))) (-15 -3244 ($ $ |t#3| (-767))) (-15 -3244 ($ $ (-640 |t#3|) (-640 (-767)))) (-15 -3919 ((-640 $) $)) (-15 -2138 ((-1165 $) $ |t#3|)) (-15 -2138 ((-1165 |t#1|) $)) (-15 -1698 ((-3 |t#3| "failed") $)) (-15 -3908 ((-767) $ |t#3|)) (-15 -3908 ((-640 (-767)) $ (-640 |t#3|))) (-15 -1684 ((-2 (|:| -1765 $) (|:| -3443 $)) $ $ |t#3|)) (-15 -2587 ($ $ |t#3| (-767))) (-15 -2587 ($ $ (-640 |t#3|) (-640 (-767)))) (-15 -2595 ($ (-1165 |t#1|) |t#3|)) (-15 -2595 ($ (-1165 $) |t#3|)) (-15 -3930 ((-3 (-640 $) "failed") $)) (-15 -3939 ((-3 (-640 $) "failed") $)) (-15 -3949 ((-3 (-2 (|:| |var| |t#3|) (|:| -3311 (-767))) "failed") $)) (-15 -3897 ((-767) $)) (-15 -3897 ((-767) $ (-640 |t#3|))) (-15 -2605 ((-640 |t#3|) $)) (-15 -2738 ((-640 $) $)) (IF (|has| |t#1| (-846)) (-6 (-846)) |%noBranch|) (IF (|has| |t#1| (-611 (-536))) (IF (|has| |t#3| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-611 (-888 (-563)))) (IF (|has| |t#3| (-611 (-888 (-563)))) (-6 (-611 (-888 (-563)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-611 (-888 (-379)))) (IF (|has| |t#3| (-611 (-888 (-379)))) (-6 (-611 (-888 (-379)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-882 (-563))) (IF (|has| |t#3| (-882 (-563))) (-6 (-882 (-563))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-882 (-379))) (IF (|has| |t#3| (-882 (-379))) (-6 (-882 (-379))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-172)) (PROGN (-15 -1612 ($ $ $ |t#3|)) (-15 -1623 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-452)) (PROGN (-6 (-452)) (-15 -3885 ($ $ |t#3|)) (-15 -4151 ($ $)) (-15 -4151 ($ $ |t#3|)) (-15 -2802 ((-418 $) $)) (-15 -1798 ($ $))) |%noBranch|) (IF (|has| |t#1| (-6 -4406)) (-6 -4406) |%noBranch|) (IF (|has| |t#1| (-905)) (-6 (-905)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) -4034 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 |#3|) . T) ((-613 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-610 (-858)) . T) ((-172) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-611 (-536)) -12 (|has| |#1| (-611 (-536))) (|has| |#3| (-611 (-536)))) ((-611 (-888 (-379))) -12 (|has| |#1| (-611 (-888 (-379)))) (|has| |#3| (-611 (-888 (-379))))) ((-611 (-888 (-563))) -12 (|has| |#1| (-611 (-888 (-563)))) (|has| |#3| (-611 (-888 (-563))))) ((-290) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-309 $) . T) ((-326 |#1| |#2|) . T) ((-377 |#1|) . T) ((-411 |#1|) . T) ((-452) -4034 (|has| |#1| (-905)) (|has| |#1| (-452))) ((-514 |#3| |#1|) . T) ((-514 |#3| $) . T) ((-514 $ $) . T) ((-555) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-643 #0#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #0#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-722) . T) ((-846) |has| |#1| (-846)) ((-896 |#3|) . T) ((-882 (-379)) -12 (|has| |#1| (-882 (-379))) (|has| |#3| (-882 (-379)))) ((-882 (-563)) -12 (|has| |#1| (-882 (-563))) (|has| |#3| (-882 (-563)))) ((-905) |has| |#1| (-905)) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1034 |#3|) . T) ((-1051 #0#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1212) |has| |#1| (-905)))
+((-2605 (((-640 |#2|) |#5|) 36)) (-2138 (((-1165 |#5|) |#5| |#2| (-1165 |#5|)) 23) (((-407 (-1165 |#5|)) |#5| |#2|) 16)) (-2595 ((|#5| (-407 (-1165 |#5|)) |#2|) 30)) (-1698 (((-3 |#2| "failed") |#5|) 65)) (-3939 (((-3 (-640 |#5|) "failed") |#5|) 59)) (-3959 (((-3 (-2 (|:| |val| |#5|) (|:| -3311 (-563))) "failed") |#5|) 47)) (-3930 (((-3 (-640 |#5|) "failed") |#5|) 61)) (-3949 (((-3 (-2 (|:| |var| |#2|) (|:| -3311 (-563))) "failed") |#5|) 51)))
+(((-946 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2605 ((-640 |#2|) |#5|)) (-15 -1698 ((-3 |#2| "failed") |#5|)) (-15 -2138 ((-407 (-1165 |#5|)) |#5| |#2|)) (-15 -2595 (|#5| (-407 (-1165 |#5|)) |#2|)) (-15 -2138 ((-1165 |#5|) |#5| |#2| (-1165 |#5|))) (-15 -3930 ((-3 (-640 |#5|) "failed") |#5|)) (-15 -3939 ((-3 (-640 |#5|) "failed") |#5|)) (-15 -3949 ((-3 (-2 (|:| |var| |#2|) (|:| -3311 (-563))) "failed") |#5|)) (-15 -3959 ((-3 (-2 (|:| |val| |#5|) (|:| -3311 (-563))) "failed") |#5|))) (-789) (-846) (-1045) (-945 |#3| |#1| |#2|) (-13 (-363) (-10 -8 (-15 -1692 ($ |#4|)) (-15 -2143 (|#4| $)) (-15 -2153 (|#4| $))))) (T -946))
+((-3959 (*1 *2 *3) (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-2 (|:| |val| *3) (|:| -3311 (-563)))) (-5 *1 (-946 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $)) (-15 -2153 (*7 $))))))) (-3949 (*1 *2 *3) (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-2 (|:| |var| *5) (|:| -3311 (-563)))) (-5 *1 (-946 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $)) (-15 -2153 (*7 $))))))) (-3939 (*1 *2 *3) (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-640 *3)) (-5 *1 (-946 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $)) (-15 -2153 (*7 $))))))) (-3930 (*1 *2 *3) (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-640 *3)) (-5 *1 (-946 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $)) (-15 -2153 (*7 $))))))) (-2138 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1165 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $)) (-15 -2153 (*7 $))))) (-4 *7 (-945 *6 *5 *4)) (-4 *5 (-789)) (-4 *4 (-846)) (-4 *6 (-1045)) (-5 *1 (-946 *5 *4 *6 *7 *3)))) (-2595 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-1165 *2))) (-4 *5 (-789)) (-4 *4 (-846)) (-4 *6 (-1045)) (-4 *2 (-13 (-363) (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $)) (-15 -2153 (*7 $))))) (-5 *1 (-946 *5 *4 *6 *7 *2)) (-4 *7 (-945 *6 *5 *4)))) (-2138 (*1 *2 *3 *4) (-12 (-4 *5 (-789)) (-4 *4 (-846)) (-4 *6 (-1045)) (-4 *7 (-945 *6 *5 *4)) (-5 *2 (-407 (-1165 *3))) (-5 *1 (-946 *5 *4 *6 *7 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $)) (-15 -2153 (*7 $))))))) (-1698 (*1 *2 *3) (|partial| -12 (-4 *4 (-789)) (-4 *5 (-1045)) (-4 *6 (-945 *5 *4 *2)) (-4 *2 (-846)) (-5 *1 (-946 *4 *2 *5 *6 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1692 ($ *6)) (-15 -2143 (*6 $)) (-15 -2153 (*6 $))))))) (-2605 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-640 *5)) (-5 *1 (-946 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $)) (-15 -2153 (*7 $))))))))
+(-10 -7 (-15 -2605 ((-640 |#2|) |#5|)) (-15 -1698 ((-3 |#2| "failed") |#5|)) (-15 -2138 ((-407 (-1165 |#5|)) |#5| |#2|)) (-15 -2595 (|#5| (-407 (-1165 |#5|)) |#2|)) (-15 -2138 ((-1165 |#5|) |#5| |#2| (-1165 |#5|))) (-15 -3930 ((-3 (-640 |#5|) "failed") |#5|)) (-15 -3939 ((-3 (-640 |#5|) "failed") |#5|)) (-15 -3949 ((-3 (-2 (|:| |var| |#2|) (|:| -3311 (-563))) "failed") |#5|)) (-15 -3959 ((-3 (-2 (|:| |val| |#5|) (|:| -3311 (-563))) "failed") |#5|)))
+((-2238 ((|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|) 23)))
+(((-947 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2238 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-789) (-846) (-1045) (-945 |#3| |#1| |#2|) (-13 (-1093) (-10 -8 (-15 -1813 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-767)))))) (T -947))
+((-2238 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-846)) (-4 *8 (-1045)) (-4 *6 (-789)) (-4 *2 (-13 (-1093) (-10 -8 (-15 -1813 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-767)))))) (-5 *1 (-947 *6 *7 *8 *5 *2)) (-4 *5 (-945 *8 *6 *7)))))
+(-10 -7 (-15 -2238 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2605 (((-640 (-1169)) $) 16)) (-2138 (((-1165 $) $ (-1169)) 21) (((-1165 |#1|) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-3897 (((-767) $) NIL) (((-767) $ (-640 (-1169))) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-1798 (($ $) NIL (|has| |#1| (-452)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) 8) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-1169) "failed") $) NIL)) (-2057 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-1169) $) NIL)) (-1612 (($ $ $ (-1169)) NIL (|has| |#1| (-172)))) (-2750 (($ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-4151 (($ $) NIL (|has| |#1| (-452))) (($ $ (-1169)) NIL (|has| |#1| (-452)))) (-2738 (((-640 $) $) NIL)) (-2560 (((-112) $) NIL (|has| |#1| (-905)))) (-2159 (($ $ |#1| (-531 (-1169)) $) NIL)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1169) (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1169) (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) NIL)) (-2595 (($ (-1165 |#1|) (-1169)) NIL) (($ (-1165 $) (-1169)) NIL)) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-531 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ (-1169)) NIL)) (-3908 (((-531 (-1169)) $) NIL) (((-767) $ (-1169)) NIL) (((-640 (-767)) $ (-640 (-1169))) NIL)) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-2170 (($ (-1 (-531 (-1169)) (-531 (-1169))) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-1698 (((-3 (-1169) "failed") $) 19)) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3854 (((-1151) $) NIL)) (-3939 (((-3 (-640 $) "failed") $) NIL)) (-3930 (((-3 (-640 $) "failed") $) NIL)) (-3949 (((-3 (-2 (|:| |var| (-1169)) (|:| -3311 (-767))) "failed") $) NIL)) (-2062 (($ $ (-1169)) 29 (|has| |#1| (-38 (-407 (-563)))))) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) NIL)) (-2705 ((|#1| $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2173 (((-418 $) $) NIL (|has| |#1| (-905)))) (-3012 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1542 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-1169) |#1|) NIL) (($ $ (-640 (-1169)) (-640 |#1|)) NIL) (($ $ (-1169) $) NIL) (($ $ (-640 (-1169)) (-640 $)) NIL)) (-1623 (($ $ (-1169)) NIL (|has| |#1| (-172)))) (-4203 (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL)) (-3871 (((-531 (-1169)) $) NIL) (((-767) $ (-1169)) NIL) (((-640 (-767)) $ (-640 (-1169))) NIL)) (-2219 (((-888 (-379)) $) NIL (-12 (|has| (-1169) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-1169) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-1169) (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-3885 ((|#1| $) NIL (|has| |#1| (-452))) (($ $ (-1169)) NIL (|has| |#1| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1692 (((-858) $) 25) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-1169)) 27) (($ (-407 (-563))) NIL (-4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-3955 (((-640 |#1|) $) NIL)) (-3244 ((|#1| $ (-531 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-3914 (((-767)) NIL)) (-2148 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL)) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-948 |#1|) (-13 (-945 |#1| (-531 (-1169)) (-1169)) (-10 -8 (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1169))) |%noBranch|))) (-1045)) (T -948))
+((-2062 (*1 *1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-948 *3)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)))))
+(-13 (-945 |#1| (-531 (-1169)) (-1169)) (-10 -8 (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1169))) |%noBranch|)))
+((-3970 (((-2 (|:| -3311 (-767)) (|:| -2310 |#5|) (|:| |radicand| |#5|)) |#3| (-767)) 38)) (-3980 (((-2 (|:| -3311 (-767)) (|:| -2310 |#5|) (|:| |radicand| |#5|)) (-407 (-563)) (-767)) 34)) (-4004 (((-2 (|:| -3311 (-767)) (|:| -2310 |#4|) (|:| |radicand| (-640 |#4|))) |#4| (-767)) 54)) (-3991 (((-2 (|:| -3311 (-767)) (|:| -2310 |#5|) (|:| |radicand| |#5|)) |#5| (-767)) 64 (|has| |#3| (-452)))))
+(((-949 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3970 ((-2 (|:| -3311 (-767)) (|:| -2310 |#5|) (|:| |radicand| |#5|)) |#3| (-767))) (-15 -3980 ((-2 (|:| -3311 (-767)) (|:| -2310 |#5|) (|:| |radicand| |#5|)) (-407 (-563)) (-767))) (IF (|has| |#3| (-452)) (-15 -3991 ((-2 (|:| -3311 (-767)) (|:| -2310 |#5|) (|:| |radicand| |#5|)) |#5| (-767))) |%noBranch|) (-15 -4004 ((-2 (|:| -3311 (-767)) (|:| -2310 |#4|) (|:| |radicand| (-640 |#4|))) |#4| (-767)))) (-789) (-846) (-555) (-945 |#3| |#1| |#2|) (-13 (-363) (-10 -8 (-15 -1692 ($ |#4|)) (-15 -2143 (|#4| $)) (-15 -2153 (|#4| $))))) (T -949))
+((-4004 (*1 *2 *3 *4) (-12 (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-555)) (-4 *3 (-945 *7 *5 *6)) (-5 *2 (-2 (|:| -3311 (-767)) (|:| -2310 *3) (|:| |radicand| (-640 *3)))) (-5 *1 (-949 *5 *6 *7 *3 *8)) (-5 *4 (-767)) (-4 *8 (-13 (-363) (-10 -8 (-15 -1692 ($ *3)) (-15 -2143 (*3 $)) (-15 -2153 (*3 $))))))) (-3991 (*1 *2 *3 *4) (-12 (-4 *7 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-555)) (-4 *8 (-945 *7 *5 *6)) (-5 *2 (-2 (|:| -3311 (-767)) (|:| -2310 *3) (|:| |radicand| *3))) (-5 *1 (-949 *5 *6 *7 *8 *3)) (-5 *4 (-767)) (-4 *3 (-13 (-363) (-10 -8 (-15 -1692 ($ *8)) (-15 -2143 (*8 $)) (-15 -2153 (*8 $))))))) (-3980 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-563))) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-555)) (-4 *8 (-945 *7 *5 *6)) (-5 *2 (-2 (|:| -3311 (-767)) (|:| -2310 *9) (|:| |radicand| *9))) (-5 *1 (-949 *5 *6 *7 *8 *9)) (-5 *4 (-767)) (-4 *9 (-13 (-363) (-10 -8 (-15 -1692 ($ *8)) (-15 -2143 (*8 $)) (-15 -2153 (*8 $))))))) (-3970 (*1 *2 *3 *4) (-12 (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-555)) (-4 *7 (-945 *3 *5 *6)) (-5 *2 (-2 (|:| -3311 (-767)) (|:| -2310 *8) (|:| |radicand| *8))) (-5 *1 (-949 *5 *6 *3 *7 *8)) (-5 *4 (-767)) (-4 *8 (-13 (-363) (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $)) (-15 -2153 (*7 $))))))))
+(-10 -7 (-15 -3970 ((-2 (|:| -3311 (-767)) (|:| -2310 |#5|) (|:| |radicand| |#5|)) |#3| (-767))) (-15 -3980 ((-2 (|:| -3311 (-767)) (|:| -2310 |#5|) (|:| |radicand| |#5|)) (-407 (-563)) (-767))) (IF (|has| |#3| (-452)) (-15 -3991 ((-2 (|:| -3311 (-767)) (|:| -2310 |#5|) (|:| |radicand| |#5|)) |#5| (-767))) |%noBranch|) (-15 -4004 ((-2 (|:| -3311 (-767)) (|:| -2310 |#4|) (|:| |radicand| (-640 |#4|))) |#4| (-767))))
+((-1677 (((-112) $ $) NIL)) (-2266 (($ (-1113)) 8)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 14) (((-1113) $) 11)) (-1718 (((-112) $ $) 10)))
(((-950) (-13 (-1093) (-610 (-1113)) (-10 -8 (-15 -2266 ($ (-1113)))))) (T -950))
((-2266 (*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-950)))))
(-13 (-1093) (-610 (-1113)) (-10 -8 (-15 -2266 ($ (-1113)))))
-((-4324 (((-1087 (-225)) $) 8)) (-4313 (((-1087 (-225)) $) 9)) (-4250 (((-640 (-640 (-939 (-225)))) $) 10)) (-1693 (((-858) $) 6)))
+((-4325 (((-1087 (-225)) $) 8)) (-4314 (((-1087 (-225)) $) 9)) (-3394 (((-640 (-640 (-939 (-225)))) $) 10)) (-1692 (((-858) $) 6)))
(((-951) (-140)) (T -951))
-((-4250 (*1 *2 *1) (-12 (-4 *1 (-951)) (-5 *2 (-640 (-640 (-939 (-225))))))) (-4313 (*1 *2 *1) (-12 (-4 *1 (-951)) (-5 *2 (-1087 (-225))))) (-4324 (*1 *2 *1) (-12 (-4 *1 (-951)) (-5 *2 (-1087 (-225))))))
-(-13 (-610 (-858)) (-10 -8 (-15 -4250 ((-640 (-640 (-939 (-225)))) $)) (-15 -4313 ((-1087 (-225)) $)) (-15 -4324 ((-1087 (-225)) $))))
+((-3394 (*1 *2 *1) (-12 (-4 *1 (-951)) (-5 *2 (-640 (-640 (-939 (-225))))))) (-4314 (*1 *2 *1) (-12 (-4 *1 (-951)) (-5 *2 (-1087 (-225))))) (-4325 (*1 *2 *1) (-12 (-4 *1 (-951)) (-5 *2 (-1087 (-225))))))
+(-13 (-610 (-858)) (-10 -8 (-15 -3394 ((-640 (-640 (-939 (-225)))) $)) (-15 -4314 ((-1087 (-225)) $)) (-15 -4325 ((-1087 (-225)) $))))
(((-610 (-858)) . T))
-((-3686 (((-3 (-684 |#1|) "failed") |#2| (-917)) 15)))
-(((-952 |#1| |#2|) (-10 -7 (-15 -3686 ((-3 (-684 |#1|) "failed") |#2| (-917)))) (-555) (-651 |#1|)) (T -952))
-((-3686 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-917)) (-4 *5 (-555)) (-5 *2 (-684 *5)) (-5 *1 (-952 *5 *3)) (-4 *3 (-651 *5)))))
-(-10 -7 (-15 -3686 ((-3 (-684 |#1|) "failed") |#2| (-917))))
-((-1567 (((-954 |#2|) (-1 |#2| |#1| |#2|) (-954 |#1|) |#2|) 16)) (-2444 ((|#2| (-1 |#2| |#1| |#2|) (-954 |#1|) |#2|) 18)) (-2240 (((-954 |#2|) (-1 |#2| |#1|) (-954 |#1|)) 13)))
-(((-953 |#1| |#2|) (-10 -7 (-15 -1567 ((-954 |#2|) (-1 |#2| |#1| |#2|) (-954 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-954 |#1|) |#2|)) (-15 -2240 ((-954 |#2|) (-1 |#2| |#1|) (-954 |#1|)))) (-1208) (-1208)) (T -953))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-954 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-954 *6)) (-5 *1 (-953 *5 *6)))) (-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-954 *5)) (-4 *5 (-1208)) (-4 *2 (-1208)) (-5 *1 (-953 *5 *2)))) (-1567 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-954 *6)) (-4 *6 (-1208)) (-4 *5 (-1208)) (-5 *2 (-954 *5)) (-5 *1 (-953 *6 *5)))))
-(-10 -7 (-15 -1567 ((-954 |#2|) (-1 |#2| |#1| |#2|) (-954 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-954 |#1|) |#2|)) (-15 -2240 ((-954 |#2|) (-1 |#2| |#1|) (-954 |#1|))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-3523 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-2770 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4408))) (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-846))))) (-1642 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) |#1|) 16 (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#1| $ (-563) |#1|) 15 (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) 13)) (-4368 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1566 (($ (-767) |#1|) 12)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) 10 (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-3164 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-846)))) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3396 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3781 ((|#1| $) NIL (|has| (-563) (-846)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2358 (($ $ |#1|) 17 (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) 11)) (-2309 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) 14) (($ $ (-1224 (-563))) NIL)) (-2963 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3076 (($ $ $ (-563)) NIL (|has| $ (-6 -4408)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) NIL)) (-2853 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3608 (((-767) $) 8 (|has| $ (-6 -4407)))))
+((-4014 (((-3 (-684 |#1|) "failed") |#2| (-917)) 15)))
+(((-952 |#1| |#2|) (-10 -7 (-15 -4014 ((-3 (-684 |#1|) "failed") |#2| (-917)))) (-555) (-651 |#1|)) (T -952))
+((-4014 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-917)) (-4 *5 (-555)) (-5 *2 (-684 *5)) (-5 *1 (-952 *5 *3)) (-4 *3 (-651 *5)))))
+(-10 -7 (-15 -4014 ((-3 (-684 |#1|) "failed") |#2| (-917))))
+((-4132 (((-954 |#2|) (-1 |#2| |#1| |#2|) (-954 |#1|) |#2|) 16)) (-2444 ((|#2| (-1 |#2| |#1| |#2|) (-954 |#1|) |#2|) 18)) (-2238 (((-954 |#2|) (-1 |#2| |#1|) (-954 |#1|)) 13)))
+(((-953 |#1| |#2|) (-10 -7 (-15 -4132 ((-954 |#2|) (-1 |#2| |#1| |#2|) (-954 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-954 |#1|) |#2|)) (-15 -2238 ((-954 |#2|) (-1 |#2| |#1|) (-954 |#1|)))) (-1208) (-1208)) (T -953))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-954 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-954 *6)) (-5 *1 (-953 *5 *6)))) (-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-954 *5)) (-4 *5 (-1208)) (-4 *2 (-1208)) (-5 *1 (-953 *5 *2)))) (-4132 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-954 *6)) (-4 *6 (-1208)) (-4 *5 (-1208)) (-5 *2 (-954 *5)) (-5 *1 (-953 *6 *5)))))
+(-10 -7 (-15 -4132 ((-954 |#2|) (-1 |#2| |#1| |#2|) (-954 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-954 |#1|) |#2|)) (-15 -2238 ((-954 |#2|) (-1 |#2| |#1|) (-954 |#1|))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4073 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-4052 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4409))) (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| |#1| (-846))))) (-1640 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) |#1|) 16 (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#1| $ (-563) |#1|) 15 (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) 13)) (-4369 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-1565 (($ (-767) |#1|) 12)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) 10 (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-4300 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-846)))) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3399 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3782 ((|#1| $) NIL (|has| (-563) (-846)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2221 (($ $ |#1|) 17 (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) 11)) (-2308 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) 14) (($ $ (-1224 (-563))) NIL)) (-2967 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4062 (($ $ $ (-563)) NIL (|has| $ (-6 -4409)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) NIL)) (-2857 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-3610 (((-767) $) 8 (|has| $ (-6 -4408)))))
(((-954 |#1|) (-19 |#1|) (-1208)) (T -954))
NIL
(-19 |#1|)
-((-1335 (($ $ (-1085 $)) 7) (($ $ (-1169)) 6)))
+((-4025 (($ $ (-1085 $)) 7) (($ $ (-1169)) 6)))
(((-955) (-140)) (T -955))
-((-1335 (*1 *1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-955)))) (-1335 (*1 *1 *1 *2) (-12 (-4 *1 (-955)) (-5 *2 (-1169)))))
-(-13 (-10 -8 (-15 -1335 ($ $ (-1169))) (-15 -1335 ($ $ (-1085 $)))))
-((-1571 (((-2 (|:| -2311 (-640 (-563))) (|:| |poly| (-640 (-1165 |#1|))) (|:| |prim| (-1165 |#1|))) (-640 (-948 |#1|)) (-640 (-1169)) (-1169)) 25) (((-2 (|:| -2311 (-640 (-563))) (|:| |poly| (-640 (-1165 |#1|))) (|:| |prim| (-1165 |#1|))) (-640 (-948 |#1|)) (-640 (-1169))) 26) (((-2 (|:| |coef1| (-563)) (|:| |coef2| (-563)) (|:| |prim| (-1165 |#1|))) (-948 |#1|) (-1169) (-948 |#1|) (-1169)) 43)))
-(((-956 |#1|) (-10 -7 (-15 -1571 ((-2 (|:| |coef1| (-563)) (|:| |coef2| (-563)) (|:| |prim| (-1165 |#1|))) (-948 |#1|) (-1169) (-948 |#1|) (-1169))) (-15 -1571 ((-2 (|:| -2311 (-640 (-563))) (|:| |poly| (-640 (-1165 |#1|))) (|:| |prim| (-1165 |#1|))) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -1571 ((-2 (|:| -2311 (-640 (-563))) (|:| |poly| (-640 (-1165 |#1|))) (|:| |prim| (-1165 |#1|))) (-640 (-948 |#1|)) (-640 (-1169)) (-1169)))) (-13 (-363) (-147))) (T -956))
-((-1571 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 (-948 *6))) (-5 *4 (-640 (-1169))) (-5 *5 (-1169)) (-4 *6 (-13 (-363) (-147))) (-5 *2 (-2 (|:| -2311 (-640 (-563))) (|:| |poly| (-640 (-1165 *6))) (|:| |prim| (-1165 *6)))) (-5 *1 (-956 *6)))) (-1571 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-640 (-1169))) (-4 *5 (-13 (-363) (-147))) (-5 *2 (-2 (|:| -2311 (-640 (-563))) (|:| |poly| (-640 (-1165 *5))) (|:| |prim| (-1165 *5)))) (-5 *1 (-956 *5)))) (-1571 (*1 *2 *3 *4 *3 *4) (-12 (-5 *3 (-948 *5)) (-5 *4 (-1169)) (-4 *5 (-13 (-363) (-147))) (-5 *2 (-2 (|:| |coef1| (-563)) (|:| |coef2| (-563)) (|:| |prim| (-1165 *5)))) (-5 *1 (-956 *5)))))
-(-10 -7 (-15 -1571 ((-2 (|:| |coef1| (-563)) (|:| |coef2| (-563)) (|:| |prim| (-1165 |#1|))) (-948 |#1|) (-1169) (-948 |#1|) (-1169))) (-15 -1571 ((-2 (|:| -2311 (-640 (-563))) (|:| |poly| (-640 (-1165 |#1|))) (|:| |prim| (-1165 |#1|))) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -1571 ((-2 (|:| -2311 (-640 (-563))) (|:| |poly| (-640 (-1165 |#1|))) (|:| |prim| (-1165 |#1|))) (-640 (-948 |#1|)) (-640 (-1169)) (-1169))))
-((-3556 (((-640 |#1|) |#1| |#1|) 42)) (-2468 (((-112) |#1|) 39)) (-3067 ((|#1| |#1|) 64)) (-1980 ((|#1| |#1|) 63)))
-(((-957 |#1|) (-10 -7 (-15 -2468 ((-112) |#1|)) (-15 -1980 (|#1| |#1|)) (-15 -3067 (|#1| |#1|)) (-15 -3556 ((-640 |#1|) |#1| |#1|))) (-545)) (T -957))
-((-3556 (*1 *2 *3 *3) (-12 (-5 *2 (-640 *3)) (-5 *1 (-957 *3)) (-4 *3 (-545)))) (-3067 (*1 *2 *2) (-12 (-5 *1 (-957 *2)) (-4 *2 (-545)))) (-1980 (*1 *2 *2) (-12 (-5 *1 (-957 *2)) (-4 *2 (-545)))) (-2468 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-957 *3)) (-4 *3 (-545)))))
-(-10 -7 (-15 -2468 ((-112) |#1|)) (-15 -1980 (|#1| |#1|)) (-15 -3067 (|#1| |#1|)) (-15 -3556 ((-640 |#1|) |#1| |#1|)))
-((-3303 (((-1262) (-858)) 9)))
-(((-958) (-10 -7 (-15 -3303 ((-1262) (-858))))) (T -958))
-((-3303 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-958)))))
-(-10 -7 (-15 -3303 ((-1262) (-858))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 60 (|has| |#1| (-555)))) (-4223 (($ $) 61 (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 28)) (-2058 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-2751 (($ $) 24)) (-3400 (((-3 $ "failed") $) 35)) (-1300 (($ $) NIL (|has| |#1| (-452)))) (-3554 (($ $ |#1| |#2| $) 47)) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) 16)) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| |#2|) NIL)) (-2048 ((|#2| $) 19)) (-2803 (($ (-1 |#2| |#2|) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-2716 (($ $) 23)) (-2726 ((|#1| $) 21)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) 40)) (-2706 ((|#1| $) NIL)) (-3817 (($ $ |#2| |#1| $) 72 (-12 (|has| |#2| (-131)) (|has| |#1| (-555))))) (-3008 (((-3 $ "failed") $ $) 73 (|has| |#1| (-555))) (((-3 $ "failed") $ |#1|) 67 (|has| |#1| (-555)))) (-4167 ((|#2| $) 17)) (-1836 ((|#1| $) NIL (|has| |#1| (-452)))) (-1693 (((-858) $) NIL) (($ (-563)) 39) (($ $) NIL (|has| |#1| (-555))) (($ |#1|) 34) (($ (-407 (-563))) NIL (-4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-1337 (((-640 |#1|) $) NIL)) (-4319 ((|#1| $ |#2|) 31)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) 15)) (-2793 (($ $ $ (-767)) 56 (|has| |#1| (-172)))) (-2126 (((-112) $ $) 66 (|has| |#1| (-555)))) (-2241 (($) 22 T CONST)) (-2254 (($) 12 T CONST)) (-1718 (((-112) $ $) 65)) (-1837 (($ $ |#1|) 74 (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) 53) (($ $ (-767)) 51)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 50) (($ $ |#1|) 49) (($ |#1| $) 48) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
-(((-959 |#1| |#2|) (-13 (-326 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-555)) (IF (|has| |#2| (-131)) (-15 -3817 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4405)) (-6 -4405) |%noBranch|))) (-1045) (-788)) (T -959))
-((-3817 (*1 *1 *1 *2 *3 *1) (-12 (-5 *1 (-959 *3 *2)) (-4 *2 (-131)) (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *2 (-788)))))
-(-13 (-326 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-555)) (IF (|has| |#2| (-131)) (-15 -3817 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4405)) (-6 -4405) |%noBranch|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL (-4032 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789)))))) (-1901 (($ $ $) 63 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))))) (-1495 (((-3 $ "failed") $ $) 50 (-4032 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789)))))) (-3749 (((-767)) 34 (-12 (|has| |#1| (-368)) (|has| |#2| (-368))))) (-1770 ((|#2| $) 21)) (-3735 ((|#1| $) 20)) (-4239 (($) NIL (-4032 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789)))) CONST)) (-3400 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722)))))) (-1691 (($) NIL (-12 (|has| |#1| (-368)) (|has| |#2| (-368))))) (-3827 (((-112) $) NIL (-4032 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722)))))) (-3084 (($ $ $) NIL (-4032 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))) (-12 (|has| |#1| (-846)) (|has| |#2| (-846)))))) (-1777 (($ $ $) NIL (-4032 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))) (-12 (|has| |#1| (-846)) (|has| |#2| (-846)))))) (-3669 (($ |#1| |#2|) 19)) (-1476 (((-917) $) NIL (-12 (|has| |#1| (-368)) (|has| |#2| (-368))))) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 37 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))))) (-2555 (($ (-917)) NIL (-12 (|has| |#1| (-368)) (|has| |#2| (-368))))) (-1694 (((-1113) $) NIL)) (-4339 (($ $ $) NIL (-12 (|has| |#1| (-473)) (|has| |#2| (-473))))) (-2146 (($ $ $) NIL (-12 (|has| |#1| (-473)) (|has| |#2| (-473))))) (-1693 (((-858) $) 14)) (-2241 (($) 40 (-4032 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789)))) CONST)) (-2254 (($) 24 (-4032 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722)))) CONST)) (-1778 (((-112) $ $) NIL (-4032 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))) (-12 (|has| |#1| (-846)) (|has| |#2| (-846)))))) (-1756 (((-112) $ $) NIL (-4032 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))) (-12 (|has| |#1| (-846)) (|has| |#2| (-846)))))) (-1718 (((-112) $ $) 18)) (-1768 (((-112) $ $) NIL (-4032 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))) (-12 (|has| |#1| (-846)) (|has| |#2| (-846)))))) (-1744 (((-112) $ $) 66 (-4032 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))) (-12 (|has| |#1| (-846)) (|has| |#2| (-846)))))) (-1837 (($ $ $) NIL (-12 (|has| |#1| (-473)) (|has| |#2| (-473))))) (-1826 (($ $ $) 56 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 53 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-1814 (($ $ $) 43 (-4032 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789)))))) (** (($ $ (-563)) NIL (-12 (|has| |#1| (-473)) (|has| |#2| (-473)))) (($ $ (-767)) 31 (-4032 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722))))) (($ $ (-917)) NIL (-4032 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722)))))) (* (($ (-563) $) 60 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ (-767) $) 46 (-4032 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789))))) (($ (-917) $) NIL (-4032 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789))))) (($ $ $) 27 (-4032 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722)))))))
-(((-960 |#1| |#2|) (-13 (-1093) (-10 -8 (IF (|has| |#1| (-368)) (IF (|has| |#2| (-368)) (-6 (-368)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-722)) (IF (|has| |#2| (-722)) (-6 (-722)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-131)) (IF (|has| |#2| (-131)) (-6 (-131)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-473)) (IF (|has| |#2| (-473)) (-6 (-473)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-789)) (IF (|has| |#2| (-789)) (-6 (-789)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-846)) (IF (|has| |#2| (-846)) (-6 (-846)) |%noBranch|) |%noBranch|) (-15 -3669 ($ |#1| |#2|)) (-15 -3735 (|#1| $)) (-15 -1770 (|#2| $)))) (-1093) (-1093)) (T -960))
-((-3669 (*1 *1 *2 *3) (-12 (-5 *1 (-960 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-3735 (*1 *2 *1) (-12 (-4 *2 (-1093)) (-5 *1 (-960 *2 *3)) (-4 *3 (-1093)))) (-1770 (*1 *2 *1) (-12 (-4 *2 (-1093)) (-5 *1 (-960 *3 *2)) (-4 *3 (-1093)))))
-(-13 (-1093) (-10 -8 (IF (|has| |#1| (-368)) (IF (|has| |#2| (-368)) (-6 (-368)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-722)) (IF (|has| |#2| (-722)) (-6 (-722)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-131)) (IF (|has| |#2| (-131)) (-6 (-131)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-473)) (IF (|has| |#2| (-473)) (-6 (-473)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-789)) (IF (|has| |#2| (-789)) (-6 (-789)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-846)) (IF (|has| |#2| (-846)) (-6 (-846)) |%noBranch|) |%noBranch|) (-15 -3669 ($ |#1| |#2|)) (-15 -3735 (|#1| $)) (-15 -1770 (|#2| $))))
-((-2619 (((-1097) $) 12)) (-3495 (($ (-1169) (-1097)) 13)) (-3348 (((-1169) $) 10)) (-1693 (((-858) $) 22)))
-(((-961) (-13 (-610 (-858)) (-10 -8 (-15 -3348 ((-1169) $)) (-15 -2619 ((-1097) $)) (-15 -3495 ($ (-1169) (-1097)))))) (T -961))
-((-3348 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-961)))) (-2619 (*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-961)))) (-3495 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1097)) (-5 *1 (-961)))))
-(-13 (-610 (-858)) (-10 -8 (-15 -3348 ((-1169) $)) (-15 -2619 ((-1097) $)) (-15 -3495 ($ (-1169) (-1097)))))
-((-1677 (((-112) $ $) NIL)) (-2606 (((-1095 (-1169)) $) 19)) (-4036 (((-112) $) 26)) (-2518 (((-1169) $) 27)) (-1969 (((-112) $) 24)) (-3375 ((|#1| $) 25)) (-3062 (((-869 $ $) $) 34)) (-1565 (((-112) $) 33)) (-2202 (($ $ $) 12)) (-2505 (($ $) 29)) (-2417 (((-112) $) 28)) (-2176 (($ $) 10)) (-3573 (((-1151) $) NIL)) (-4282 (((-869 $ $) $) 36)) (-3417 (((-112) $) 35)) (-3234 (($ $ $) 13)) (-1694 (((-1113) $) NIL)) (-3068 (((-869 $ $) $) 38)) (-3656 (((-112) $) 37)) (-2515 (($ $ $) 14)) (-1693 (((-858) $) 40) (($ |#1|) 7) (($ (-1169)) 9)) (-1367 (((-869 $ $) $) 32)) (-1416 (((-112) $) 30)) (-2190 (($ $ $) 11)) (-1718 (((-112) $ $) NIL)))
-(((-962 |#1|) (-13 (-963) (-10 -8 (-15 -1693 ($ |#1|)) (-15 -1693 ($ (-1169))) (-15 -2606 ((-1095 (-1169)) $)) (-15 -1969 ((-112) $)) (-15 -3375 (|#1| $)) (-15 -4036 ((-112) $)) (-15 -2518 ((-1169) $)) (-15 -2417 ((-112) $)) (-15 -2505 ($ $)) (-15 -1416 ((-112) $)) (-15 -1367 ((-869 $ $) $)) (-15 -1565 ((-112) $)) (-15 -3062 ((-869 $ $) $)) (-15 -3417 ((-112) $)) (-15 -4282 ((-869 $ $) $)) (-15 -3656 ((-112) $)) (-15 -3068 ((-869 $ $) $)))) (-963)) (T -962))
-((-1693 (*1 *1 *2) (-12 (-5 *1 (-962 *2)) (-4 *2 (-963)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-2606 (*1 *2 *1) (-12 (-5 *2 (-1095 (-1169))) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-1969 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-3375 (*1 *2 *1) (-12 (-5 *1 (-962 *2)) (-4 *2 (-963)))) (-4036 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-2518 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-2417 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-2505 (*1 *1 *1) (-12 (-5 *1 (-962 *2)) (-4 *2 (-963)))) (-1416 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-1367 (*1 *2 *1) (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-1565 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-3062 (*1 *2 *1) (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-3417 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-4282 (*1 *2 *1) (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-3656 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-3068 (*1 *2 *1) (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3)) (-4 *3 (-963)))))
-(-13 (-963) (-10 -8 (-15 -1693 ($ |#1|)) (-15 -1693 ($ (-1169))) (-15 -2606 ((-1095 (-1169)) $)) (-15 -1969 ((-112) $)) (-15 -3375 (|#1| $)) (-15 -4036 ((-112) $)) (-15 -2518 ((-1169) $)) (-15 -2417 ((-112) $)) (-15 -2505 ($ $)) (-15 -1416 ((-112) $)) (-15 -1367 ((-869 $ $) $)) (-15 -1565 ((-112) $)) (-15 -3062 ((-869 $ $) $)) (-15 -3417 ((-112) $)) (-15 -4282 ((-869 $ $) $)) (-15 -3656 ((-112) $)) (-15 -3068 ((-869 $ $) $))))
-((-1677 (((-112) $ $) 7)) (-2202 (($ $ $) 15)) (-2176 (($ $) 17)) (-3573 (((-1151) $) 9)) (-3234 (($ $ $) 14)) (-1694 (((-1113) $) 10)) (-2515 (($ $ $) 13)) (-1693 (((-858) $) 11)) (-2190 (($ $ $) 16)) (-1718 (((-112) $ $) 6)))
+((-4025 (*1 *1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-955)))) (-4025 (*1 *1 *1 *2) (-12 (-4 *1 (-955)) (-5 *2 (-1169)))))
+(-13 (-10 -8 (-15 -4025 ($ $ (-1169))) (-15 -4025 ($ $ (-1085 $)))))
+((-4036 (((-2 (|:| -2310 (-640 (-563))) (|:| |poly| (-640 (-1165 |#1|))) (|:| |prim| (-1165 |#1|))) (-640 (-948 |#1|)) (-640 (-1169)) (-1169)) 25) (((-2 (|:| -2310 (-640 (-563))) (|:| |poly| (-640 (-1165 |#1|))) (|:| |prim| (-1165 |#1|))) (-640 (-948 |#1|)) (-640 (-1169))) 26) (((-2 (|:| |coef1| (-563)) (|:| |coef2| (-563)) (|:| |prim| (-1165 |#1|))) (-948 |#1|) (-1169) (-948 |#1|) (-1169)) 43)))
+(((-956 |#1|) (-10 -7 (-15 -4036 ((-2 (|:| |coef1| (-563)) (|:| |coef2| (-563)) (|:| |prim| (-1165 |#1|))) (-948 |#1|) (-1169) (-948 |#1|) (-1169))) (-15 -4036 ((-2 (|:| -2310 (-640 (-563))) (|:| |poly| (-640 (-1165 |#1|))) (|:| |prim| (-1165 |#1|))) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -4036 ((-2 (|:| -2310 (-640 (-563))) (|:| |poly| (-640 (-1165 |#1|))) (|:| |prim| (-1165 |#1|))) (-640 (-948 |#1|)) (-640 (-1169)) (-1169)))) (-13 (-363) (-147))) (T -956))
+((-4036 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 (-948 *6))) (-5 *4 (-640 (-1169))) (-5 *5 (-1169)) (-4 *6 (-13 (-363) (-147))) (-5 *2 (-2 (|:| -2310 (-640 (-563))) (|:| |poly| (-640 (-1165 *6))) (|:| |prim| (-1165 *6)))) (-5 *1 (-956 *6)))) (-4036 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-640 (-1169))) (-4 *5 (-13 (-363) (-147))) (-5 *2 (-2 (|:| -2310 (-640 (-563))) (|:| |poly| (-640 (-1165 *5))) (|:| |prim| (-1165 *5)))) (-5 *1 (-956 *5)))) (-4036 (*1 *2 *3 *4 *3 *4) (-12 (-5 *3 (-948 *5)) (-5 *4 (-1169)) (-4 *5 (-13 (-363) (-147))) (-5 *2 (-2 (|:| |coef1| (-563)) (|:| |coef2| (-563)) (|:| |prim| (-1165 *5)))) (-5 *1 (-956 *5)))))
+(-10 -7 (-15 -4036 ((-2 (|:| |coef1| (-563)) (|:| |coef2| (-563)) (|:| |prim| (-1165 |#1|))) (-948 |#1|) (-1169) (-948 |#1|) (-1169))) (-15 -4036 ((-2 (|:| -2310 (-640 (-563))) (|:| |poly| (-640 (-1165 |#1|))) (|:| |prim| (-1165 |#1|))) (-640 (-948 |#1|)) (-640 (-1169)))) (-15 -4036 ((-2 (|:| -2310 (-640 (-563))) (|:| |poly| (-640 (-1165 |#1|))) (|:| |prim| (-1165 |#1|))) (-640 (-948 |#1|)) (-640 (-1169)) (-1169))))
+((-4070 (((-640 |#1|) |#1| |#1|) 42)) (-2560 (((-112) |#1|) 39)) (-4059 ((|#1| |#1|) 65)) (-4048 ((|#1| |#1|) 64)))
+(((-957 |#1|) (-10 -7 (-15 -2560 ((-112) |#1|)) (-15 -4048 (|#1| |#1|)) (-15 -4059 (|#1| |#1|)) (-15 -4070 ((-640 |#1|) |#1| |#1|))) (-545)) (T -957))
+((-4070 (*1 *2 *3 *3) (-12 (-5 *2 (-640 *3)) (-5 *1 (-957 *3)) (-4 *3 (-545)))) (-4059 (*1 *2 *2) (-12 (-5 *1 (-957 *2)) (-4 *2 (-545)))) (-4048 (*1 *2 *2) (-12 (-5 *1 (-957 *2)) (-4 *2 (-545)))) (-2560 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-957 *3)) (-4 *3 (-545)))))
+(-10 -7 (-15 -2560 ((-112) |#1|)) (-15 -4048 (|#1| |#1|)) (-15 -4059 (|#1| |#1|)) (-15 -4070 ((-640 |#1|) |#1| |#1|)))
+((-3307 (((-1262) (-858)) 9)))
+(((-958) (-10 -7 (-15 -3307 ((-1262) (-858))))) (T -958))
+((-3307 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-958)))))
+(-10 -7 (-15 -3307 ((-1262) (-858))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 60 (|has| |#1| (-555)))) (-3231 (($ $) 61 (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 28)) (-2057 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-2750 (($ $) 24)) (-3951 (((-3 $ "failed") $) 35)) (-4151 (($ $) NIL (|has| |#1| (-452)))) (-2159 (($ $ |#1| |#2| $) 47)) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) 16)) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| |#2|) NIL)) (-3908 ((|#2| $) 19)) (-2170 (($ (-1 |#2| |#2|) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-2715 (($ $) 23)) (-2725 ((|#1| $) 21)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) 40)) (-2705 ((|#1| $) NIL)) (-2646 (($ $ |#2| |#1| $) 72 (-12 (|has| |#2| (-131)) (|has| |#1| (-555))))) (-3012 (((-3 $ "failed") $ $) 73 (|has| |#1| (-555))) (((-3 $ "failed") $ |#1|) 67 (|has| |#1| (-555)))) (-3871 ((|#2| $) 17)) (-3885 ((|#1| $) NIL (|has| |#1| (-452)))) (-1692 (((-858) $) NIL) (($ (-563)) 39) (($ $) NIL (|has| |#1| (-555))) (($ |#1|) 34) (($ (-407 (-563))) NIL (-4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-3955 (((-640 |#1|) $) NIL)) (-3244 ((|#1| $ |#2|) 31)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) 15)) (-2148 (($ $ $ (-767)) 56 (|has| |#1| (-172)))) (-3223 (((-112) $ $) 66 (|has| |#1| (-555)))) (-2239 (($) 22 T CONST)) (-2253 (($) 12 T CONST)) (-1718 (((-112) $ $) 65)) (-1836 (($ $ |#1|) 74 (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) 53) (($ $ (-767)) 51)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 50) (($ $ |#1|) 49) (($ |#1| $) 48) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
+(((-959 |#1| |#2|) (-13 (-326 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-555)) (IF (|has| |#2| (-131)) (-15 -2646 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4406)) (-6 -4406) |%noBranch|))) (-1045) (-788)) (T -959))
+((-2646 (*1 *1 *1 *2 *3 *1) (-12 (-5 *1 (-959 *3 *2)) (-4 *2 (-131)) (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *2 (-788)))))
+(-13 (-326 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-555)) (IF (|has| |#2| (-131)) (-15 -2646 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4406)) (-6 -4406) |%noBranch|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL (-4034 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789)))))) (-4092 (($ $ $) 63 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))))) (-3905 (((-3 $ "failed") $ $) 50 (-4034 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789)))))) (-3750 (((-767)) 34 (-12 (|has| |#1| (-368)) (|has| |#2| (-368))))) (-4081 ((|#2| $) 21)) (-4091 ((|#1| $) 20)) (-2569 (($) NIL (-4034 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789)))) CONST)) (-3951 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722)))))) (-1690 (($) NIL (-12 (|has| |#1| (-368)) (|has| |#2| (-368))))) (-3401 (((-112) $) NIL (-4034 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722)))))) (-3088 (($ $ $) NIL (-4034 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))) (-12 (|has| |#1| (-846)) (|has| |#2| (-846)))))) (-1776 (($ $ $) NIL (-4034 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))) (-12 (|has| |#1| (-846)) (|has| |#2| (-846)))))) (-4102 (($ |#1| |#2|) 19)) (-3990 (((-917) $) NIL (-12 (|has| |#1| (-368)) (|has| |#2| (-368))))) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 37 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))))) (-2552 (($ (-917)) NIL (-12 (|has| |#1| (-368)) (|has| |#2| (-368))))) (-1693 (((-1113) $) NIL)) (-2150 (($ $ $) NIL (-12 (|has| |#1| (-473)) (|has| |#2| (-473))))) (-1745 (($ $ $) NIL (-12 (|has| |#1| (-473)) (|has| |#2| (-473))))) (-1692 (((-858) $) 14)) (-2239 (($) 40 (-4034 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789)))) CONST)) (-2253 (($) 24 (-4034 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722)))) CONST)) (-1779 (((-112) $ $) NIL (-4034 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))) (-12 (|has| |#1| (-846)) (|has| |#2| (-846)))))) (-1754 (((-112) $ $) NIL (-4034 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))) (-12 (|has| |#1| (-846)) (|has| |#2| (-846)))))) (-1718 (((-112) $ $) 18)) (-1766 (((-112) $ $) NIL (-4034 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))) (-12 (|has| |#1| (-846)) (|has| |#2| (-846)))))) (-1743 (((-112) $ $) 66 (-4034 (-12 (|has| |#1| (-789)) (|has| |#2| (-789))) (-12 (|has| |#1| (-846)) (|has| |#2| (-846)))))) (-1836 (($ $ $) NIL (-12 (|has| |#1| (-473)) (|has| |#2| (-473))))) (-1825 (($ $ $) 56 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 53 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-1813 (($ $ $) 43 (-4034 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789)))))) (** (($ $ (-563)) NIL (-12 (|has| |#1| (-473)) (|has| |#2| (-473)))) (($ $ (-767)) 31 (-4034 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722))))) (($ $ (-917)) NIL (-4034 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722)))))) (* (($ (-563) $) 60 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ (-767) $) 46 (-4034 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789))))) (($ (-917) $) NIL (-4034 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-789)) (|has| |#2| (-789))))) (($ $ $) 27 (-4034 (-12 (|has| |#1| (-473)) (|has| |#2| (-473))) (-12 (|has| |#1| (-722)) (|has| |#2| (-722)))))))
+(((-960 |#1| |#2|) (-13 (-1093) (-10 -8 (IF (|has| |#1| (-368)) (IF (|has| |#2| (-368)) (-6 (-368)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-722)) (IF (|has| |#2| (-722)) (-6 (-722)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-131)) (IF (|has| |#2| (-131)) (-6 (-131)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-473)) (IF (|has| |#2| (-473)) (-6 (-473)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-789)) (IF (|has| |#2| (-789)) (-6 (-789)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-846)) (IF (|has| |#2| (-846)) (-6 (-846)) |%noBranch|) |%noBranch|) (-15 -4102 ($ |#1| |#2|)) (-15 -4091 (|#1| $)) (-15 -4081 (|#2| $)))) (-1093) (-1093)) (T -960))
+((-4102 (*1 *1 *2 *3) (-12 (-5 *1 (-960 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-4091 (*1 *2 *1) (-12 (-4 *2 (-1093)) (-5 *1 (-960 *2 *3)) (-4 *3 (-1093)))) (-4081 (*1 *2 *1) (-12 (-4 *2 (-1093)) (-5 *1 (-960 *3 *2)) (-4 *3 (-1093)))))
+(-13 (-1093) (-10 -8 (IF (|has| |#1| (-368)) (IF (|has| |#2| (-368)) (-6 (-368)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-722)) (IF (|has| |#2| (-722)) (-6 (-722)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-131)) (IF (|has| |#2| (-131)) (-6 (-131)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-473)) (IF (|has| |#2| (-473)) (-6 (-473)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-789)) (IF (|has| |#2| (-789)) (-6 (-789)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-846)) (IF (|has| |#2| (-846)) (-6 (-846)) |%noBranch|) |%noBranch|) (-15 -4102 ($ |#1| |#2|)) (-15 -4091 (|#1| $)) (-15 -4081 (|#2| $))))
+((-2618 (((-1097) $) 12)) (-3499 (($ (-1169) (-1097)) 13)) (-3352 (((-1169) $) 10)) (-1692 (((-858) $) 22)))
+(((-961) (-13 (-610 (-858)) (-10 -8 (-15 -3352 ((-1169) $)) (-15 -2618 ((-1097) $)) (-15 -3499 ($ (-1169) (-1097)))))) (T -961))
+((-3352 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-961)))) (-2618 (*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-961)))) (-3499 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1097)) (-5 *1 (-961)))))
+(-13 (-610 (-858)) (-10 -8 (-15 -3352 ((-1169) $)) (-15 -2618 ((-1097) $)) (-15 -3499 ($ (-1169) (-1097)))))
+((-1677 (((-112) $ $) NIL)) (-2605 (((-1095 (-1169)) $) 19)) (-4211 (((-112) $) 26)) (-2517 (((-1169) $) 27)) (-4230 (((-112) $) 24)) (-4220 ((|#1| $) 25)) (-4159 (((-869 $ $) $) 34)) (-4168 (((-112) $) 33)) (-2200 (($ $ $) 12)) (-4200 (($ $) 29)) (-2419 (((-112) $) 28)) (-2174 (($ $) 10)) (-3854 (((-1151) $) NIL)) (-4137 (((-869 $ $) $) 36)) (-4149 (((-112) $) 35)) (-4252 (($ $ $) 13)) (-1693 (((-1113) $) NIL)) (-4115 (((-869 $ $) $) 38)) (-4125 (((-112) $) 37)) (-4240 (($ $ $) 14)) (-1692 (((-858) $) 40) (($ |#1|) 7) (($ (-1169)) 9)) (-4177 (((-869 $ $) $) 32)) (-4190 (((-112) $) 30)) (-2188 (($ $ $) 11)) (-1718 (((-112) $ $) NIL)))
+(((-962 |#1|) (-13 (-963) (-10 -8 (-15 -1692 ($ |#1|)) (-15 -1692 ($ (-1169))) (-15 -2605 ((-1095 (-1169)) $)) (-15 -4230 ((-112) $)) (-15 -4220 (|#1| $)) (-15 -4211 ((-112) $)) (-15 -2517 ((-1169) $)) (-15 -2419 ((-112) $)) (-15 -4200 ($ $)) (-15 -4190 ((-112) $)) (-15 -4177 ((-869 $ $) $)) (-15 -4168 ((-112) $)) (-15 -4159 ((-869 $ $) $)) (-15 -4149 ((-112) $)) (-15 -4137 ((-869 $ $) $)) (-15 -4125 ((-112) $)) (-15 -4115 ((-869 $ $) $)))) (-963)) (T -962))
+((-1692 (*1 *1 *2) (-12 (-5 *1 (-962 *2)) (-4 *2 (-963)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-2605 (*1 *2 *1) (-12 (-5 *2 (-1095 (-1169))) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-4230 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-4220 (*1 *2 *1) (-12 (-5 *1 (-962 *2)) (-4 *2 (-963)))) (-4211 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-2517 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-2419 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-4200 (*1 *1 *1) (-12 (-5 *1 (-962 *2)) (-4 *2 (-963)))) (-4190 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-4177 (*1 *2 *1) (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-4168 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-4159 (*1 *2 *1) (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-4149 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-4137 (*1 *2 *1) (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-4125 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))) (-4115 (*1 *2 *1) (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3)) (-4 *3 (-963)))))
+(-13 (-963) (-10 -8 (-15 -1692 ($ |#1|)) (-15 -1692 ($ (-1169))) (-15 -2605 ((-1095 (-1169)) $)) (-15 -4230 ((-112) $)) (-15 -4220 (|#1| $)) (-15 -4211 ((-112) $)) (-15 -2517 ((-1169) $)) (-15 -2419 ((-112) $)) (-15 -4200 ($ $)) (-15 -4190 ((-112) $)) (-15 -4177 ((-869 $ $) $)) (-15 -4168 ((-112) $)) (-15 -4159 ((-869 $ $) $)) (-15 -4149 ((-112) $)) (-15 -4137 ((-869 $ $) $)) (-15 -4125 ((-112) $)) (-15 -4115 ((-869 $ $) $))))
+((-1677 (((-112) $ $) 7)) (-2200 (($ $ $) 15)) (-2174 (($ $) 17)) (-3854 (((-1151) $) 9)) (-4252 (($ $ $) 14)) (-1693 (((-1113) $) 10)) (-4240 (($ $ $) 13)) (-1692 (((-858) $) 11)) (-2188 (($ $ $) 16)) (-1718 (((-112) $ $) 6)))
(((-963) (-140)) (T -963))
-((-2176 (*1 *1 *1) (-4 *1 (-963))) (-2190 (*1 *1 *1 *1) (-4 *1 (-963))) (-2202 (*1 *1 *1 *1) (-4 *1 (-963))) (-3234 (*1 *1 *1 *1) (-4 *1 (-963))) (-2515 (*1 *1 *1 *1) (-4 *1 (-963))))
-(-13 (-1093) (-10 -8 (-15 -2176 ($ $)) (-15 -2190 ($ $ $)) (-15 -2202 ($ $ $)) (-15 -3234 ($ $ $)) (-15 -2515 ($ $ $))))
+((-2174 (*1 *1 *1) (-4 *1 (-963))) (-2188 (*1 *1 *1 *1) (-4 *1 (-963))) (-2200 (*1 *1 *1 *1) (-4 *1 (-963))) (-4252 (*1 *1 *1 *1) (-4 *1 (-963))) (-4240 (*1 *1 *1 *1) (-4 *1 (-963))))
+(-13 (-1093) (-10 -8 (-15 -2174 ($ $)) (-15 -2188 ($ $ $)) (-15 -2200 ($ $ $)) (-15 -4252 ($ $ $)) (-15 -4240 ($ $ $))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2759 (((-112) $ (-767)) 8)) (-4239 (($) 7 T CONST)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) 9)) (-2878 (($ $ $) 43)) (-3164 (($ $ $) 44)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1777 ((|#1| $) 45)) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2964 ((|#1| $) 39)) (-1812 (($ |#1| $) 40)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3755 ((|#1| $) 41)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-2233 (($ (-640 |#1|)) 42)) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-3001 (((-112) $ (-767)) 8)) (-2569 (($) 7 T CONST)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) 9)) (-4265 (($ $ $) 43)) (-4300 (($ $ $) 44)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1776 ((|#1| $) 45)) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2627 ((|#1| $) 39)) (-3867 (($ |#1| $) 40)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-2808 ((|#1| $) 41)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-2820 (($ (-640 |#1|)) 42)) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-964 |#1|) (-140) (-846)) (T -964))
-((-1777 (*1 *2 *1) (-12 (-4 *1 (-964 *2)) (-4 *2 (-846)))) (-3164 (*1 *1 *1 *1) (-12 (-4 *1 (-964 *2)) (-4 *2 (-846)))) (-2878 (*1 *1 *1 *1) (-12 (-4 *1 (-964 *2)) (-4 *2 (-846)))))
-(-13 (-107 |t#1|) (-10 -8 (-6 -4407) (-15 -1777 (|t#1| $)) (-15 -3164 ($ $ $)) (-15 -2878 ($ $ $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-1813 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3548 |#2|)) |#2| |#2|) 84)) (-3724 ((|#2| |#2| |#2|) 82)) (-3404 (((-2 (|:| |coef2| |#2|) (|:| -3548 |#2|)) |#2| |#2|) 86)) (-3671 (((-2 (|:| |coef1| |#2|) (|:| -3548 |#2|)) |#2| |#2|) 88)) (-2385 (((-2 (|:| |coef2| |#2|) (|:| -4354 |#1|)) |#2| |#2|) 106 (|has| |#1| (-452)))) (-2761 (((-2 (|:| |coef2| |#2|) (|:| -2742 |#1|)) |#2| |#2|) 45)) (-2482 (((-2 (|:| |coef2| |#2|) (|:| -2742 |#1|)) |#2| |#2|) 63)) (-2082 (((-2 (|:| |coef1| |#2|) (|:| -2742 |#1|)) |#2| |#2|) 65)) (-2790 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 77)) (-2045 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767)) 70)) (-4375 (((-2 (|:| |coef2| |#2|) (|:| -2315 |#1|)) |#2|) 96)) (-2203 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767)) 73)) (-1576 (((-640 (-767)) |#2| |#2|) 81)) (-2354 ((|#1| |#2| |#2|) 41)) (-1657 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4354 |#1|)) |#2| |#2|) 104 (|has| |#1| (-452)))) (-4354 ((|#1| |#2| |#2|) 102 (|has| |#1| (-452)))) (-1679 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2742 |#1|)) |#2| |#2|) 43)) (-1697 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2742 |#1|)) |#2| |#2|) 62)) (-2742 ((|#1| |#2| |#2|) 60)) (-2521 (((-2 (|:| -2311 |#1|) (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2|) 34)) (-2431 ((|#2| |#2| |#2| |#2| |#1|) 52)) (-3583 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 75)) (-2898 ((|#2| |#2| |#2|) 74)) (-1928 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767)) 68)) (-2848 ((|#2| |#2| |#2| (-767)) 66)) (-3548 ((|#2| |#2| |#2|) 110 (|has| |#1| (-452)))) (-3008 (((-1257 |#2|) (-1257 |#2|) |#1|) 21)) (-2452 (((-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2|) 38)) (-3443 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2315 |#1|)) |#2|) 94)) (-2315 ((|#1| |#2|) 91)) (-3750 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767)) 72)) (-2238 ((|#2| |#2| |#2| (-767)) 71)) (-2654 (((-640 |#2|) |#2| |#2|) 79)) (-1447 ((|#2| |#2| |#1| |#1| (-767)) 49)) (-3681 ((|#1| |#1| |#1| (-767)) 48)) (* (((-1257 |#2|) |#1| (-1257 |#2|)) 16)))
-(((-965 |#1| |#2|) (-10 -7 (-15 -2742 (|#1| |#2| |#2|)) (-15 -1697 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2742 |#1|)) |#2| |#2|)) (-15 -2482 ((-2 (|:| |coef2| |#2|) (|:| -2742 |#1|)) |#2| |#2|)) (-15 -2082 ((-2 (|:| |coef1| |#2|) (|:| -2742 |#1|)) |#2| |#2|)) (-15 -2848 (|#2| |#2| |#2| (-767))) (-15 -1928 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -2045 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -2238 (|#2| |#2| |#2| (-767))) (-15 -3750 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -2203 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -2898 (|#2| |#2| |#2|)) (-15 -3583 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2790 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3724 (|#2| |#2| |#2|)) (-15 -1813 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3548 |#2|)) |#2| |#2|)) (-15 -3404 ((-2 (|:| |coef2| |#2|) (|:| -3548 |#2|)) |#2| |#2|)) (-15 -3671 ((-2 (|:| |coef1| |#2|) (|:| -3548 |#2|)) |#2| |#2|)) (-15 -2315 (|#1| |#2|)) (-15 -3443 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2315 |#1|)) |#2|)) (-15 -4375 ((-2 (|:| |coef2| |#2|) (|:| -2315 |#1|)) |#2|)) (-15 -2654 ((-640 |#2|) |#2| |#2|)) (-15 -1576 ((-640 (-767)) |#2| |#2|)) (IF (|has| |#1| (-452)) (PROGN (-15 -4354 (|#1| |#2| |#2|)) (-15 -1657 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4354 |#1|)) |#2| |#2|)) (-15 -2385 ((-2 (|:| |coef2| |#2|) (|:| -4354 |#1|)) |#2| |#2|)) (-15 -3548 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1257 |#2|) |#1| (-1257 |#2|))) (-15 -3008 ((-1257 |#2|) (-1257 |#2|) |#1|)) (-15 -2521 ((-2 (|:| -2311 |#1|) (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2|)) (-15 -2452 ((-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2|)) (-15 -3681 (|#1| |#1| |#1| (-767))) (-15 -1447 (|#2| |#2| |#1| |#1| (-767))) (-15 -2431 (|#2| |#2| |#2| |#2| |#1|)) (-15 -2354 (|#1| |#2| |#2|)) (-15 -1679 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2742 |#1|)) |#2| |#2|)) (-15 -2761 ((-2 (|:| |coef2| |#2|) (|:| -2742 |#1|)) |#2| |#2|))) (-555) (-1233 |#1|)) (T -965))
-((-2761 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2742 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-1679 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2742 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-2354 (*1 *2 *3 *3) (-12 (-4 *2 (-555)) (-5 *1 (-965 *2 *3)) (-4 *3 (-1233 *2)))) (-2431 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3)))) (-1447 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-767)) (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3)))) (-3681 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-767)) (-4 *2 (-555)) (-5 *1 (-965 *2 *4)) (-4 *4 (-1233 *2)))) (-2452 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-2521 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| -2311 *4) (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-3008 (*1 *2 *2 *3) (-12 (-5 *2 (-1257 *4)) (-4 *4 (-1233 *3)) (-4 *3 (-555)) (-5 *1 (-965 *3 *4)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1257 *4)) (-4 *4 (-1233 *3)) (-4 *3 (-555)) (-5 *1 (-965 *3 *4)))) (-3548 (*1 *2 *2 *2) (-12 (-4 *3 (-452)) (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3)))) (-2385 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -4354 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-1657 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -4354 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-4354 (*1 *2 *3 *3) (-12 (-4 *2 (-555)) (-4 *2 (-452)) (-5 *1 (-965 *2 *3)) (-4 *3 (-1233 *2)))) (-1576 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-640 (-767))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-2654 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-640 *3)) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-4375 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2315 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-3443 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2315 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-2315 (*1 *2 *3) (-12 (-4 *2 (-555)) (-5 *1 (-965 *2 *3)) (-4 *3 (-1233 *2)))) (-3671 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -3548 *3))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-3404 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3548 *3))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-1813 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3548 *3))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-3724 (*1 *2 *2 *2) (-12 (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3)))) (-2790 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-3583 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-2898 (*1 *2 *2 *2) (-12 (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3)))) (-2203 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-767)) (-4 *5 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))) (-3750 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-767)) (-4 *5 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))) (-2238 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-555)) (-5 *1 (-965 *4 *2)) (-4 *2 (-1233 *4)))) (-2045 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-767)) (-4 *5 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))) (-1928 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-767)) (-4 *5 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))) (-2848 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-555)) (-5 *1 (-965 *4 *2)) (-4 *2 (-1233 *4)))) (-2082 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2742 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-2482 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2742 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-1697 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2742 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-2742 (*1 *2 *3 *3) (-12 (-4 *2 (-555)) (-5 *1 (-965 *2 *3)) (-4 *3 (-1233 *2)))))
-(-10 -7 (-15 -2742 (|#1| |#2| |#2|)) (-15 -1697 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2742 |#1|)) |#2| |#2|)) (-15 -2482 ((-2 (|:| |coef2| |#2|) (|:| -2742 |#1|)) |#2| |#2|)) (-15 -2082 ((-2 (|:| |coef1| |#2|) (|:| -2742 |#1|)) |#2| |#2|)) (-15 -2848 (|#2| |#2| |#2| (-767))) (-15 -1928 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -2045 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -2238 (|#2| |#2| |#2| (-767))) (-15 -3750 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -2203 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -2898 (|#2| |#2| |#2|)) (-15 -3583 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2790 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3724 (|#2| |#2| |#2|)) (-15 -1813 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3548 |#2|)) |#2| |#2|)) (-15 -3404 ((-2 (|:| |coef2| |#2|) (|:| -3548 |#2|)) |#2| |#2|)) (-15 -3671 ((-2 (|:| |coef1| |#2|) (|:| -3548 |#2|)) |#2| |#2|)) (-15 -2315 (|#1| |#2|)) (-15 -3443 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2315 |#1|)) |#2|)) (-15 -4375 ((-2 (|:| |coef2| |#2|) (|:| -2315 |#1|)) |#2|)) (-15 -2654 ((-640 |#2|) |#2| |#2|)) (-15 -1576 ((-640 (-767)) |#2| |#2|)) (IF (|has| |#1| (-452)) (PROGN (-15 -4354 (|#1| |#2| |#2|)) (-15 -1657 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4354 |#1|)) |#2| |#2|)) (-15 -2385 ((-2 (|:| |coef2| |#2|) (|:| -4354 |#1|)) |#2| |#2|)) (-15 -3548 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1257 |#2|) |#1| (-1257 |#2|))) (-15 -3008 ((-1257 |#2|) (-1257 |#2|) |#1|)) (-15 -2521 ((-2 (|:| -2311 |#1|) (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2|)) (-15 -2452 ((-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) |#2| |#2|)) (-15 -3681 (|#1| |#1| |#1| (-767))) (-15 -1447 (|#2| |#2| |#1| |#1| (-767))) (-15 -2431 (|#2| |#2| |#2| |#2| |#1|)) (-15 -2354 (|#1| |#2| |#2|)) (-15 -1679 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2742 |#1|)) |#2| |#2|)) (-15 -2761 ((-2 (|:| |coef2| |#2|) (|:| -2742 |#1|)) |#2| |#2|)))
-((-1677 (((-112) $ $) NIL)) (-4183 (((-1207) $) 13)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3685 (((-1128) $) 10)) (-1693 (((-858) $) 22) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-966) (-13 (-1076) (-10 -8 (-15 -3685 ((-1128) $)) (-15 -4183 ((-1207) $))))) (T -966))
-((-3685 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-966)))) (-4183 (*1 *2 *1) (-12 (-5 *2 (-1207)) (-5 *1 (-966)))))
-(-13 (-1076) (-10 -8 (-15 -3685 ((-1128) $)) (-15 -4183 ((-1207) $))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) 26)) (-4239 (($) NIL T CONST)) (-2205 (((-640 (-640 (-563))) (-640 (-563))) 28)) (-2971 (((-563) $) 44)) (-3106 (($ (-640 (-563))) 17)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2220 (((-640 (-563)) $) 12)) (-4339 (($ $) 31)) (-1693 (((-858) $) 42) (((-640 (-563)) $) 10)) (-2241 (($) 7 T CONST)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 19)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 18)) (-1814 (($ $ $) 20)) (* (($ (-917) $) NIL) (($ (-767) $) 24)))
-(((-967) (-13 (-791) (-611 (-640 (-563))) (-610 (-640 (-563))) (-10 -8 (-15 -3106 ($ (-640 (-563)))) (-15 -2205 ((-640 (-640 (-563))) (-640 (-563)))) (-15 -2971 ((-563) $)) (-15 -4339 ($ $))))) (T -967))
-((-3106 (*1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-967)))) (-2205 (*1 *2 *3) (-12 (-5 *2 (-640 (-640 (-563)))) (-5 *1 (-967)) (-5 *3 (-640 (-563))))) (-2971 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-967)))) (-4339 (*1 *1 *1) (-5 *1 (-967))))
-(-13 (-791) (-611 (-640 (-563))) (-610 (-640 (-563))) (-10 -8 (-15 -3106 ($ (-640 (-563)))) (-15 -2205 ((-640 (-640 (-563))) (-640 (-563)))) (-15 -2971 ((-563) $)) (-15 -4339 ($ $))))
-((-1837 (($ $ |#2|) 30)) (-1826 (($ $) 22) (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 15) (($ $ $) NIL) (($ $ |#2|) 20) (($ |#2| $) 19) (($ (-407 (-563)) $) 26) (($ $ (-407 (-563))) 28)))
-(((-968 |#1| |#2| |#3| |#4|) (-10 -8 (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -1837 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1826 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|))) (-969 |#2| |#3| |#4|) (-1045) (-788) (-846)) (T -968))
-NIL
-(-10 -8 (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -1837 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1826 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-2606 (((-640 |#3|) $) 77)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-4223 (($ $) 55 (|has| |#1| (-555)))) (-3156 (((-112) $) 57 (|has| |#1| (-555)))) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-2751 (($ $) 63)) (-3400 (((-3 $ "failed") $) 33)) (-2788 (((-112) $) 76)) (-3827 (((-112) $) 31)) (-3920 (((-112) $) 65)) (-2588 (($ |#1| |#2|) 64) (($ $ |#3| |#2|) 79) (($ $ (-640 |#3|) (-640 |#2|)) 78)) (-2240 (($ (-1 |#1| |#1|) $) 66)) (-2716 (($ $) 68)) (-2726 ((|#1| $) 69)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3008 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-4167 ((|#2| $) 67)) (-1741 (($ $) 75)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555))) (($ |#1|) 50 (|has| |#1| (-172)))) (-4319 ((|#1| $ |#2|) 62)) (-2779 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 56 (|has| |#1| (-555)))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1837 (($ $ |#1|) 61 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
+((-1776 (*1 *2 *1) (-12 (-4 *1 (-964 *2)) (-4 *2 (-846)))) (-4300 (*1 *1 *1 *1) (-12 (-4 *1 (-964 *2)) (-4 *2 (-846)))) (-4265 (*1 *1 *1 *1) (-12 (-4 *1 (-964 *2)) (-4 *2 (-846)))))
+(-13 (-107 |t#1|) (-10 -8 (-6 -4408) (-15 -1776 (|t#1| $)) (-15 -4300 ($ $ $)) (-15 -4265 ($ $ $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-1296 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3551 |#2|)) |#2| |#2|) 84)) (-1601 ((|#2| |#2| |#2|) 82)) (-1305 (((-2 (|:| |coef2| |#2|) (|:| -3551 |#2|)) |#2| |#2|) 86)) (-1316 (((-2 (|:| |coef1| |#2|) (|:| -3551 |#2|)) |#2| |#2|) 88)) (-3253 (((-2 (|:| |coef2| |#2|) (|:| -3232 |#1|)) |#2| |#2|) 106 (|has| |#1| (-452)))) (-3327 (((-2 (|:| |coef2| |#2|) (|:| -1612 |#1|)) |#2| |#2|) 45)) (-4288 (((-2 (|:| |coef2| |#2|) (|:| -1612 |#1|)) |#2| |#2|) 63)) (-4298 (((-2 (|:| |coef1| |#2|) (|:| -1612 |#1|)) |#2| |#2|) 65)) (-4385 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 77)) (-4331 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767)) 70)) (-3202 (((-2 (|:| |coef2| |#2|) (|:| -1623 |#1|)) |#2|) 96)) (-4362 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767)) 73)) (-3224 (((-640 (-767)) |#2| |#2|) 81)) (-3305 ((|#1| |#2| |#2|) 41)) (-3242 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3232 |#1|)) |#2| |#2|) 104 (|has| |#1| (-452)))) (-3232 ((|#1| |#2| |#2|) 102 (|has| |#1| (-452)))) (-3317 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1612 |#1|)) |#2| |#2|) 43)) (-4276 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1612 |#1|)) |#2| |#2|) 62)) (-1612 ((|#1| |#2| |#2|) 60)) (-1564 (((-2 (|:| -2310 |#1|) (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2|) 34)) (-3291 ((|#2| |#2| |#2| |#2| |#1|) 52)) (-4374 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 75)) (-3461 ((|#2| |#2| |#2|) 74)) (-4320 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767)) 68)) (-4309 ((|#2| |#2| |#2| (-767)) 66)) (-3551 ((|#2| |#2| |#2|) 110 (|has| |#1| (-452)))) (-3012 (((-1257 |#2|) (-1257 |#2|) |#1|) 21)) (-3263 (((-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2|) 38)) (-1327 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1623 |#1|)) |#2|) 94)) (-1623 ((|#1| |#2|) 91)) (-4353 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767)) 72)) (-4343 ((|#2| |#2| |#2| (-767)) 71)) (-3212 (((-640 |#2|) |#2| |#2|) 79)) (-3280 ((|#2| |#2| |#1| |#1| (-767)) 49)) (-3270 ((|#1| |#1| |#1| (-767)) 48)) (* (((-1257 |#2|) |#1| (-1257 |#2|)) 16)))
+(((-965 |#1| |#2|) (-10 -7 (-15 -1612 (|#1| |#2| |#2|)) (-15 -4276 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1612 |#1|)) |#2| |#2|)) (-15 -4288 ((-2 (|:| |coef2| |#2|) (|:| -1612 |#1|)) |#2| |#2|)) (-15 -4298 ((-2 (|:| |coef1| |#2|) (|:| -1612 |#1|)) |#2| |#2|)) (-15 -4309 (|#2| |#2| |#2| (-767))) (-15 -4320 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -4331 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -4343 (|#2| |#2| |#2| (-767))) (-15 -4353 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -4362 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -3461 (|#2| |#2| |#2|)) (-15 -4374 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -4385 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -1601 (|#2| |#2| |#2|)) (-15 -1296 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3551 |#2|)) |#2| |#2|)) (-15 -1305 ((-2 (|:| |coef2| |#2|) (|:| -3551 |#2|)) |#2| |#2|)) (-15 -1316 ((-2 (|:| |coef1| |#2|) (|:| -3551 |#2|)) |#2| |#2|)) (-15 -1623 (|#1| |#2|)) (-15 -1327 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1623 |#1|)) |#2|)) (-15 -3202 ((-2 (|:| |coef2| |#2|) (|:| -1623 |#1|)) |#2|)) (-15 -3212 ((-640 |#2|) |#2| |#2|)) (-15 -3224 ((-640 (-767)) |#2| |#2|)) (IF (|has| |#1| (-452)) (PROGN (-15 -3232 (|#1| |#2| |#2|)) (-15 -3242 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3232 |#1|)) |#2| |#2|)) (-15 -3253 ((-2 (|:| |coef2| |#2|) (|:| -3232 |#1|)) |#2| |#2|)) (-15 -3551 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1257 |#2|) |#1| (-1257 |#2|))) (-15 -3012 ((-1257 |#2|) (-1257 |#2|) |#1|)) (-15 -1564 ((-2 (|:| -2310 |#1|) (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2|)) (-15 -3263 ((-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2|)) (-15 -3270 (|#1| |#1| |#1| (-767))) (-15 -3280 (|#2| |#2| |#1| |#1| (-767))) (-15 -3291 (|#2| |#2| |#2| |#2| |#1|)) (-15 -3305 (|#1| |#2| |#2|)) (-15 -3317 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1612 |#1|)) |#2| |#2|)) (-15 -3327 ((-2 (|:| |coef2| |#2|) (|:| -1612 |#1|)) |#2| |#2|))) (-555) (-1233 |#1|)) (T -965))
+((-3327 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1612 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-3317 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1612 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-3305 (*1 *2 *3 *3) (-12 (-4 *2 (-555)) (-5 *1 (-965 *2 *3)) (-4 *3 (-1233 *2)))) (-3291 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3)))) (-3280 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-767)) (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3)))) (-3270 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-767)) (-4 *2 (-555)) (-5 *1 (-965 *2 *4)) (-4 *4 (-1233 *2)))) (-3263 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-1564 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| -2310 *4) (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-3012 (*1 *2 *2 *3) (-12 (-5 *2 (-1257 *4)) (-4 *4 (-1233 *3)) (-4 *3 (-555)) (-5 *1 (-965 *3 *4)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1257 *4)) (-4 *4 (-1233 *3)) (-4 *3 (-555)) (-5 *1 (-965 *3 *4)))) (-3551 (*1 *2 *2 *2) (-12 (-4 *3 (-452)) (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3)))) (-3253 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3232 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-3242 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3232 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-3232 (*1 *2 *3 *3) (-12 (-4 *2 (-555)) (-4 *2 (-452)) (-5 *1 (-965 *2 *3)) (-4 *3 (-1233 *2)))) (-3224 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-640 (-767))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-3212 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-640 *3)) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-3202 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1623 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-1327 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1623 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-1623 (*1 *2 *3) (-12 (-4 *2 (-555)) (-5 *1 (-965 *2 *3)) (-4 *3 (-1233 *2)))) (-1316 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -3551 *3))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-1305 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3551 *3))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-1296 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3551 *3))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-1601 (*1 *2 *2 *2) (-12 (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3)))) (-4385 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-4374 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-3461 (*1 *2 *2 *2) (-12 (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3)))) (-4362 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-767)) (-4 *5 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))) (-4353 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-767)) (-4 *5 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))) (-4343 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-555)) (-5 *1 (-965 *4 *2)) (-4 *2 (-1233 *4)))) (-4331 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-767)) (-4 *5 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))) (-4320 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-767)) (-4 *5 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))) (-4309 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-555)) (-5 *1 (-965 *4 *2)) (-4 *2 (-1233 *4)))) (-4298 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1612 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-4288 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1612 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-4276 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1612 *4))) (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))) (-1612 (*1 *2 *3 *3) (-12 (-4 *2 (-555)) (-5 *1 (-965 *2 *3)) (-4 *3 (-1233 *2)))))
+(-10 -7 (-15 -1612 (|#1| |#2| |#2|)) (-15 -4276 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1612 |#1|)) |#2| |#2|)) (-15 -4288 ((-2 (|:| |coef2| |#2|) (|:| -1612 |#1|)) |#2| |#2|)) (-15 -4298 ((-2 (|:| |coef1| |#2|) (|:| -1612 |#1|)) |#2| |#2|)) (-15 -4309 (|#2| |#2| |#2| (-767))) (-15 -4320 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -4331 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -4343 (|#2| |#2| |#2| (-767))) (-15 -4353 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -4362 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-767))) (-15 -3461 (|#2| |#2| |#2|)) (-15 -4374 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -4385 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -1601 (|#2| |#2| |#2|)) (-15 -1296 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3551 |#2|)) |#2| |#2|)) (-15 -1305 ((-2 (|:| |coef2| |#2|) (|:| -3551 |#2|)) |#2| |#2|)) (-15 -1316 ((-2 (|:| |coef1| |#2|) (|:| -3551 |#2|)) |#2| |#2|)) (-15 -1623 (|#1| |#2|)) (-15 -1327 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1623 |#1|)) |#2|)) (-15 -3202 ((-2 (|:| |coef2| |#2|) (|:| -1623 |#1|)) |#2|)) (-15 -3212 ((-640 |#2|) |#2| |#2|)) (-15 -3224 ((-640 (-767)) |#2| |#2|)) (IF (|has| |#1| (-452)) (PROGN (-15 -3232 (|#1| |#2| |#2|)) (-15 -3242 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3232 |#1|)) |#2| |#2|)) (-15 -3253 ((-2 (|:| |coef2| |#2|) (|:| -3232 |#1|)) |#2| |#2|)) (-15 -3551 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1257 |#2|) |#1| (-1257 |#2|))) (-15 -3012 ((-1257 |#2|) (-1257 |#2|) |#1|)) (-15 -1564 ((-2 (|:| -2310 |#1|) (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2|)) (-15 -3263 ((-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) |#2| |#2|)) (-15 -3270 (|#1| |#1| |#1| (-767))) (-15 -3280 (|#2| |#2| |#1| |#1| (-767))) (-15 -3291 (|#2| |#2| |#2| |#2| |#1|)) (-15 -3305 (|#1| |#2| |#2|)) (-15 -3317 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1612 |#1|)) |#2| |#2|)) (-15 -3327 ((-2 (|:| |coef2| |#2|) (|:| -1612 |#1|)) |#2| |#2|)))
+((-1677 (((-112) $ $) NIL)) (-4184 (((-1207) $) 13)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3687 (((-1128) $) 10)) (-1692 (((-858) $) 22) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-966) (-13 (-1076) (-10 -8 (-15 -3687 ((-1128) $)) (-15 -4184 ((-1207) $))))) (T -966))
+((-3687 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-966)))) (-4184 (*1 *2 *1) (-12 (-5 *2 (-1207)) (-5 *1 (-966)))))
+(-13 (-1076) (-10 -8 (-15 -3687 ((-1128) $)) (-15 -4184 ((-1207) $))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) 26)) (-2569 (($) NIL T CONST)) (-3347 (((-640 (-640 (-563))) (-640 (-563))) 28)) (-3337 (((-563) $) 44)) (-3358 (($ (-640 (-563))) 17)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2219 (((-640 (-563)) $) 12)) (-2150 (($ $) 31)) (-1692 (((-858) $) 42) (((-640 (-563)) $) 10)) (-2239 (($) 7 T CONST)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 19)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 18)) (-1813 (($ $ $) 20)) (* (($ (-917) $) NIL) (($ (-767) $) 24)))
+(((-967) (-13 (-791) (-611 (-640 (-563))) (-610 (-640 (-563))) (-10 -8 (-15 -3358 ($ (-640 (-563)))) (-15 -3347 ((-640 (-640 (-563))) (-640 (-563)))) (-15 -3337 ((-563) $)) (-15 -2150 ($ $))))) (T -967))
+((-3358 (*1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-967)))) (-3347 (*1 *2 *3) (-12 (-5 *2 (-640 (-640 (-563)))) (-5 *1 (-967)) (-5 *3 (-640 (-563))))) (-3337 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-967)))) (-2150 (*1 *1 *1) (-5 *1 (-967))))
+(-13 (-791) (-611 (-640 (-563))) (-610 (-640 (-563))) (-10 -8 (-15 -3358 ($ (-640 (-563)))) (-15 -3347 ((-640 (-640 (-563))) (-640 (-563)))) (-15 -3337 ((-563) $)) (-15 -2150 ($ $))))
+((-1836 (($ $ |#2|) 30)) (-1825 (($ $) 22) (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 15) (($ $ $) NIL) (($ $ |#2|) 20) (($ |#2| $) 19) (($ (-407 (-563)) $) 26) (($ $ (-407 (-563))) 28)))
+(((-968 |#1| |#2| |#3| |#4|) (-10 -8 (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -1836 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1825 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|))) (-969 |#2| |#3| |#4|) (-1045) (-788) (-846)) (T -968))
+NIL
+(-10 -8 (-15 * (|#1| |#1| (-407 (-563)))) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 -1836 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1825 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 * (|#1| (-917) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-2605 (((-640 |#3|) $) 77)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-3231 (($ $) 55 (|has| |#1| (-555)))) (-3211 (((-112) $) 57 (|has| |#1| (-555)))) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-2750 (($ $) 63)) (-3951 (((-3 $ "failed") $) 33)) (-3381 (((-112) $) 76)) (-3401 (((-112) $) 31)) (-3805 (((-112) $) 65)) (-2587 (($ |#1| |#2|) 64) (($ $ |#3| |#2|) 79) (($ $ (-640 |#3|) (-640 |#2|)) 78)) (-2238 (($ (-1 |#1| |#1|) $) 66)) (-2715 (($ $) 68)) (-2725 ((|#1| $) 69)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-3012 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-3871 ((|#2| $) 67)) (-3369 (($ $) 75)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555))) (($ |#1|) 50 (|has| |#1| (-172)))) (-3244 ((|#1| $ |#2|) 62)) (-2047 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 56 (|has| |#1| (-555)))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1836 (($ $ |#1|) 61 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
(((-969 |#1| |#2| |#3|) (-140) (-1045) (-788) (-846)) (T -969))
-((-2726 (*1 *2 *1) (-12 (-4 *1 (-969 *2 *3 *4)) (-4 *3 (-788)) (-4 *4 (-846)) (-4 *2 (-1045)))) (-2716 (*1 *1 *1) (-12 (-4 *1 (-969 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-788)) (-4 *4 (-846)))) (-4167 (*1 *2 *1) (-12 (-4 *1 (-969 *3 *2 *4)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *2 (-788)))) (-2588 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-969 *4 *3 *2)) (-4 *4 (-1045)) (-4 *3 (-788)) (-4 *2 (-846)))) (-2588 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *6)) (-5 *3 (-640 *5)) (-4 *1 (-969 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-788)) (-4 *6 (-846)))) (-2606 (*1 *2 *1) (-12 (-4 *1 (-969 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-788)) (-4 *5 (-846)) (-5 *2 (-640 *5)))) (-2788 (*1 *2 *1) (-12 (-4 *1 (-969 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-788)) (-4 *5 (-846)) (-5 *2 (-112)))) (-1741 (*1 *1 *1) (-12 (-4 *1 (-969 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-788)) (-4 *4 (-846)))))
-(-13 (-47 |t#1| |t#2|) (-10 -8 (-15 -2588 ($ $ |t#3| |t#2|)) (-15 -2588 ($ $ (-640 |t#3|) (-640 |t#2|))) (-15 -2716 ($ $)) (-15 -2726 (|t#1| $)) (-15 -4167 (|t#2| $)) (-15 -2606 ((-640 |t#3|) $)) (-15 -2788 ((-112) $)) (-15 -1741 ($ $))))
-(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-555)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) |has| |#1| (-38 (-407 (-563)))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 $) |has| |#1| (-555)) ((-610 (-858)) . T) ((-172) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-290) |has| |#1| (-555)) ((-555) |has| |#1| (-555)) ((-643 #0#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #0#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) |has| |#1| (-555)) ((-722) . T) ((-1051 #0#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-4334 (((-1087 (-225)) $) 8)) (-4324 (((-1087 (-225)) $) 9)) (-4313 (((-1087 (-225)) $) 10)) (-4250 (((-640 (-640 (-939 (-225)))) $) 11)) (-1693 (((-858) $) 6)))
+((-2725 (*1 *2 *1) (-12 (-4 *1 (-969 *2 *3 *4)) (-4 *3 (-788)) (-4 *4 (-846)) (-4 *2 (-1045)))) (-2715 (*1 *1 *1) (-12 (-4 *1 (-969 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-788)) (-4 *4 (-846)))) (-3871 (*1 *2 *1) (-12 (-4 *1 (-969 *3 *2 *4)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *2 (-788)))) (-2587 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-969 *4 *3 *2)) (-4 *4 (-1045)) (-4 *3 (-788)) (-4 *2 (-846)))) (-2587 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 *6)) (-5 *3 (-640 *5)) (-4 *1 (-969 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-788)) (-4 *6 (-846)))) (-2605 (*1 *2 *1) (-12 (-4 *1 (-969 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-788)) (-4 *5 (-846)) (-5 *2 (-640 *5)))) (-3381 (*1 *2 *1) (-12 (-4 *1 (-969 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-788)) (-4 *5 (-846)) (-5 *2 (-112)))) (-3369 (*1 *1 *1) (-12 (-4 *1 (-969 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-788)) (-4 *4 (-846)))))
+(-13 (-47 |t#1| |t#2|) (-10 -8 (-15 -2587 ($ $ |t#3| |t#2|)) (-15 -2587 ($ $ (-640 |t#3|) (-640 |t#2|))) (-15 -2715 ($ $)) (-15 -2725 (|t#1| $)) (-15 -3871 (|t#2| $)) (-15 -2605 ((-640 |t#3|) $)) (-15 -3381 ((-112) $)) (-15 -3369 ($ $))))
+(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-555)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) |has| |#1| (-38 (-407 (-563)))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 $) |has| |#1| (-555)) ((-610 (-858)) . T) ((-172) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-290) |has| |#1| (-555)) ((-555) |has| |#1| (-555)) ((-643 #0#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #0#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) |has| |#1| (-555)) ((-722) . T) ((-1051 #0#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
+((-4337 (((-1087 (-225)) $) 8)) (-4325 (((-1087 (-225)) $) 9)) (-4314 (((-1087 (-225)) $) 10)) (-3394 (((-640 (-640 (-939 (-225)))) $) 11)) (-1692 (((-858) $) 6)))
(((-970) (-140)) (T -970))
-((-4250 (*1 *2 *1) (-12 (-4 *1 (-970)) (-5 *2 (-640 (-640 (-939 (-225))))))) (-4313 (*1 *2 *1) (-12 (-4 *1 (-970)) (-5 *2 (-1087 (-225))))) (-4324 (*1 *2 *1) (-12 (-4 *1 (-970)) (-5 *2 (-1087 (-225))))) (-4334 (*1 *2 *1) (-12 (-4 *1 (-970)) (-5 *2 (-1087 (-225))))))
-(-13 (-610 (-858)) (-10 -8 (-15 -4250 ((-640 (-640 (-939 (-225)))) $)) (-15 -4313 ((-1087 (-225)) $)) (-15 -4324 ((-1087 (-225)) $)) (-15 -4334 ((-1087 (-225)) $))))
+((-3394 (*1 *2 *1) (-12 (-4 *1 (-970)) (-5 *2 (-640 (-640 (-939 (-225))))))) (-4314 (*1 *2 *1) (-12 (-4 *1 (-970)) (-5 *2 (-1087 (-225))))) (-4325 (*1 *2 *1) (-12 (-4 *1 (-970)) (-5 *2 (-1087 (-225))))) (-4337 (*1 *2 *1) (-12 (-4 *1 (-970)) (-5 *2 (-1087 (-225))))))
+(-13 (-610 (-858)) (-10 -8 (-15 -3394 ((-640 (-640 (-939 (-225)))) $)) (-15 -4314 ((-1087 (-225)) $)) (-15 -4325 ((-1087 (-225)) $)) (-15 -4337 ((-1087 (-225)) $))))
(((-610 (-858)) . T))
-((-2606 (((-640 |#4|) $) 23)) (-1706 (((-112) $) 47)) (-3854 (((-112) $) 46)) (-1642 (((-2 (|:| |under| $) (|:| -1583 $) (|:| |upper| $)) $ |#4|) 35)) (-1483 (((-112) $) 48)) (-1626 (((-112) $ $) 54)) (-4221 (((-112) $ $) 57)) (-1763 (((-112) $) 52)) (-3746 (((-640 |#5|) (-640 |#5|) $) 89)) (-1866 (((-640 |#5|) (-640 |#5|) $) 86)) (-1972 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 80)) (-2965 (((-640 |#4|) $) 27)) (-2780 (((-112) |#4| $) 29)) (-2152 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 72)) (-3577 (($ $ |#4|) 32)) (-1593 (($ $ |#4|) 31)) (-4192 (($ $ |#4|) 33)) (-1718 (((-112) $ $) 39)))
-(((-971 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3854 ((-112) |#1|)) (-15 -3746 ((-640 |#5|) (-640 |#5|) |#1|)) (-15 -1866 ((-640 |#5|) (-640 |#5|) |#1|)) (-15 -1972 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2152 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -1483 ((-112) |#1|)) (-15 -4221 ((-112) |#1| |#1|)) (-15 -1626 ((-112) |#1| |#1|)) (-15 -1763 ((-112) |#1|)) (-15 -1706 ((-112) |#1|)) (-15 -1642 ((-2 (|:| |under| |#1|) (|:| -1583 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -3577 (|#1| |#1| |#4|)) (-15 -4192 (|#1| |#1| |#4|)) (-15 -1593 (|#1| |#1| |#4|)) (-15 -2780 ((-112) |#4| |#1|)) (-15 -2965 ((-640 |#4|) |#1|)) (-15 -2606 ((-640 |#4|) |#1|)) (-15 -1718 ((-112) |#1| |#1|))) (-972 |#2| |#3| |#4| |#5|) (-1045) (-789) (-846) (-1059 |#2| |#3| |#4|)) (T -971))
+((-2605 (((-640 |#4|) $) 23)) (-3508 (((-112) $) 47)) (-3406 (((-112) $) 46)) (-1640 (((-2 (|:| |under| $) (|:| -3954 $) (|:| |upper| $)) $ |#4|) 35)) (-3466 (((-112) $) 48)) (-3486 (((-112) $ $) 54)) (-3476 (((-112) $ $) 57)) (-3496 (((-112) $) 52)) (-3418 (((-640 |#5|) (-640 |#5|) $) 89)) (-3431 (((-640 |#5|) (-640 |#5|) $) 86)) (-3443 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 79)) (-3568 (((-640 |#4|) $) 27)) (-3553 (((-112) |#4| $) 29)) (-3454 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 72)) (-3519 (($ $ |#4|) 32)) (-3542 (($ $ |#4|) 31)) (-3529 (($ $ |#4|) 33)) (-1718 (((-112) $ $) 39)))
+(((-971 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3406 ((-112) |#1|)) (-15 -3418 ((-640 |#5|) (-640 |#5|) |#1|)) (-15 -3431 ((-640 |#5|) (-640 |#5|) |#1|)) (-15 -3443 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3454 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3466 ((-112) |#1|)) (-15 -3476 ((-112) |#1| |#1|)) (-15 -3486 ((-112) |#1| |#1|)) (-15 -3496 ((-112) |#1|)) (-15 -3508 ((-112) |#1|)) (-15 -1640 ((-2 (|:| |under| |#1|) (|:| -3954 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -3519 (|#1| |#1| |#4|)) (-15 -3529 (|#1| |#1| |#4|)) (-15 -3542 (|#1| |#1| |#4|)) (-15 -3553 ((-112) |#4| |#1|)) (-15 -3568 ((-640 |#4|) |#1|)) (-15 -2605 ((-640 |#4|) |#1|)) (-15 -1718 ((-112) |#1| |#1|))) (-972 |#2| |#3| |#4| |#5|) (-1045) (-789) (-846) (-1059 |#2| |#3| |#4|)) (T -971))
NIL
-(-10 -8 (-15 -3854 ((-112) |#1|)) (-15 -3746 ((-640 |#5|) (-640 |#5|) |#1|)) (-15 -1866 ((-640 |#5|) (-640 |#5|) |#1|)) (-15 -1972 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2152 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -1483 ((-112) |#1|)) (-15 -4221 ((-112) |#1| |#1|)) (-15 -1626 ((-112) |#1| |#1|)) (-15 -1763 ((-112) |#1|)) (-15 -1706 ((-112) |#1|)) (-15 -1642 ((-2 (|:| |under| |#1|) (|:| -1583 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -3577 (|#1| |#1| |#4|)) (-15 -4192 (|#1| |#1| |#4|)) (-15 -1593 (|#1| |#1| |#4|)) (-15 -2780 ((-112) |#4| |#1|)) (-15 -2965 ((-640 |#4|) |#1|)) (-15 -2606 ((-640 |#4|) |#1|)) (-15 -1718 ((-112) |#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-2606 (((-640 |#3|) $) 33)) (-1706 (((-112) $) 26)) (-3854 (((-112) $) 17 (|has| |#1| (-555)))) (-1642 (((-2 (|:| |under| $) (|:| -1583 $) (|:| |upper| $)) $ |#3|) 27)) (-2759 (((-112) $ (-767)) 44)) (-2256 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4407)))) (-4239 (($) 45 T CONST)) (-1483 (((-112) $) 22 (|has| |#1| (-555)))) (-1626 (((-112) $ $) 24 (|has| |#1| (-555)))) (-4221 (((-112) $ $) 23 (|has| |#1| (-555)))) (-1763 (((-112) $) 25 (|has| |#1| (-555)))) (-3746 (((-640 |#4|) (-640 |#4|) $) 18 (|has| |#1| (-555)))) (-1866 (((-640 |#4|) (-640 |#4|) $) 19 (|has| |#1| (-555)))) (-2131 (((-3 $ "failed") (-640 |#4|)) 36)) (-2058 (($ (-640 |#4|)) 35)) (-3813 (($ $) 68 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ |#4| $) 67 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4407)))) (-1972 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-555)))) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4407))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4407)))) (-2659 (((-640 |#4|) $) 52 (|has| $ (-6 -4407)))) (-2957 ((|#3| $) 34)) (-2581 (((-112) $ (-767)) 43)) (-2259 (((-640 |#4|) $) 53 (|has| $ (-6 -4407)))) (-1729 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#4| |#4|) $) 47)) (-2965 (((-640 |#3|) $) 32)) (-2780 (((-112) |#3| $) 31)) (-2382 (((-112) $ (-767)) 42)) (-3573 (((-1151) $) 9)) (-2152 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-555)))) (-1694 (((-1113) $) 10)) (-4203 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-3138 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 |#4|) (-640 |#4|)) 59 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) 57 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) 56 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2026 (((-112) $ $) 38)) (-3756 (((-112) $) 41)) (-3135 (($) 40)) (-1709 (((-767) |#4| $) 54 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) (((-767) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4407)))) (-1872 (($ $) 39)) (-2220 (((-536) $) 69 (|has| |#4| (-611 (-536))))) (-1707 (($ (-640 |#4|)) 60)) (-3577 (($ $ |#3|) 28)) (-1593 (($ $ |#3|) 30)) (-4192 (($ $ |#3|) 29)) (-1693 (((-858) $) 11) (((-640 |#4|) $) 37)) (-4383 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 6)) (-3608 (((-767) $) 46 (|has| $ (-6 -4407)))))
+(-10 -8 (-15 -3406 ((-112) |#1|)) (-15 -3418 ((-640 |#5|) (-640 |#5|) |#1|)) (-15 -3431 ((-640 |#5|) (-640 |#5|) |#1|)) (-15 -3443 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3454 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3466 ((-112) |#1|)) (-15 -3476 ((-112) |#1| |#1|)) (-15 -3486 ((-112) |#1| |#1|)) (-15 -3496 ((-112) |#1|)) (-15 -3508 ((-112) |#1|)) (-15 -1640 ((-2 (|:| |under| |#1|) (|:| -3954 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -3519 (|#1| |#1| |#4|)) (-15 -3529 (|#1| |#1| |#4|)) (-15 -3542 (|#1| |#1| |#4|)) (-15 -3553 ((-112) |#4| |#1|)) (-15 -3568 ((-640 |#4|) |#1|)) (-15 -2605 ((-640 |#4|) |#1|)) (-15 -1718 ((-112) |#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-2605 (((-640 |#3|) $) 33)) (-3508 (((-112) $) 26)) (-3406 (((-112) $) 17 (|has| |#1| (-555)))) (-1640 (((-2 (|:| |under| $) (|:| -3954 $) (|:| |upper| $)) $ |#3|) 27)) (-3001 (((-112) $ (-767)) 44)) (-2255 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4408)))) (-2569 (($) 45 T CONST)) (-3466 (((-112) $) 22 (|has| |#1| (-555)))) (-3486 (((-112) $ $) 24 (|has| |#1| (-555)))) (-3476 (((-112) $ $) 23 (|has| |#1| (-555)))) (-3496 (((-112) $) 25 (|has| |#1| (-555)))) (-3418 (((-640 |#4|) (-640 |#4|) $) 18 (|has| |#1| (-555)))) (-3431 (((-640 |#4|) (-640 |#4|) $) 19 (|has| |#1| (-555)))) (-2130 (((-3 $ "failed") (-640 |#4|)) 36)) (-2057 (($ (-640 |#4|)) 35)) (-3814 (($ $) 68 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ |#4| $) 67 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4408)))) (-3443 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-555)))) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4408))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4408)))) (-2658 (((-640 |#4|) $) 52 (|has| $ (-6 -4408)))) (-3354 ((|#3| $) 34)) (-2514 (((-112) $ (-767)) 43)) (-3523 (((-640 |#4|) $) 53 (|has| $ (-6 -4408)))) (-2667 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#4| |#4|) $) 47)) (-3568 (((-640 |#3|) $) 32)) (-3553 (((-112) |#3| $) 31)) (-2481 (((-112) $ (-767)) 42)) (-3854 (((-1151) $) 9)) (-3454 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-555)))) (-1693 (((-1113) $) 10)) (-1971 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-1458 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 |#4|) (-640 |#4|)) 59 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) 57 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) 56 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2941 (((-112) $ $) 38)) (-1665 (((-112) $) 41)) (-3445 (($) 40)) (-1708 (((-767) |#4| $) 54 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) (((-767) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4408)))) (-1870 (($ $) 39)) (-2219 (((-536) $) 69 (|has| |#4| (-611 (-536))))) (-1706 (($ (-640 |#4|)) 60)) (-3519 (($ $ |#3|) 28)) (-3542 (($ $ |#3|) 30)) (-3529 (($ $ |#3|) 29)) (-1692 (((-858) $) 11) (((-640 |#4|) $) 37)) (-1471 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 6)) (-3610 (((-767) $) 46 (|has| $ (-6 -4408)))))
(((-972 |#1| |#2| |#3| |#4|) (-140) (-1045) (-789) (-846) (-1059 |t#1| |t#2| |t#3|)) (T -972))
-((-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *1 (-972 *3 *4 *5 *6)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *1 (-972 *3 *4 *5 *6)))) (-2957 (*1 *2 *1) (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-1059 *3 *4 *2)) (-4 *2 (-846)))) (-2606 (*1 *2 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-640 *5)))) (-2965 (*1 *2 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-640 *5)))) (-2780 (*1 *2 *3 *1) (-12 (-4 *1 (-972 *4 *5 *3 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-4 *6 (-1059 *4 *5 *3)) (-5 *2 (-112)))) (-1593 (*1 *1 *1 *2) (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)) (-4 *5 (-1059 *3 *4 *2)))) (-4192 (*1 *1 *1 *2) (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)) (-4 *5 (-1059 *3 *4 *2)))) (-3577 (*1 *1 *1 *2) (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)) (-4 *5 (-1059 *3 *4 *2)))) (-1642 (*1 *2 *1 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-4 *6 (-1059 *4 *5 *3)) (-5 *2 (-2 (|:| |under| *1) (|:| -1583 *1) (|:| |upper| *1))) (-4 *1 (-972 *4 *5 *3 *6)))) (-1706 (*1 *2 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))) (-1763 (*1 *2 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-5 *2 (-112)))) (-1626 (*1 *2 *1 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-5 *2 (-112)))) (-4221 (*1 *2 *1 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-5 *2 (-112)))) (-1483 (*1 *2 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-5 *2 (-112)))) (-2152 (*1 *2 *3 *1) (-12 (-4 *1 (-972 *4 *5 *6 *3)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))) (-1972 (*1 *2 *3 *1) (-12 (-4 *1 (-972 *4 *5 *6 *3)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))) (-1866 (*1 *2 *2 *1) (-12 (-5 *2 (-640 *6)) (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)))) (-3746 (*1 *2 *2 *1) (-12 (-5 *2 (-640 *6)) (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)))) (-3854 (*1 *2 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-5 *2 (-112)))))
-(-13 (-1093) (-151 |t#4|) (-610 (-640 |t#4|)) (-10 -8 (-6 -4407) (-15 -2131 ((-3 $ "failed") (-640 |t#4|))) (-15 -2058 ($ (-640 |t#4|))) (-15 -2957 (|t#3| $)) (-15 -2606 ((-640 |t#3|) $)) (-15 -2965 ((-640 |t#3|) $)) (-15 -2780 ((-112) |t#3| $)) (-15 -1593 ($ $ |t#3|)) (-15 -4192 ($ $ |t#3|)) (-15 -3577 ($ $ |t#3|)) (-15 -1642 ((-2 (|:| |under| $) (|:| -1583 $) (|:| |upper| $)) $ |t#3|)) (-15 -1706 ((-112) $)) (IF (|has| |t#1| (-555)) (PROGN (-15 -1763 ((-112) $)) (-15 -1626 ((-112) $ $)) (-15 -4221 ((-112) $ $)) (-15 -1483 ((-112) $)) (-15 -2152 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -1972 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -1866 ((-640 |t#4|) (-640 |t#4|) $)) (-15 -3746 ((-640 |t#4|) (-640 |t#4|) $)) (-15 -3854 ((-112) $))) |%noBranch|)))
+((-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *1 (-972 *3 *4 *5 *6)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *1 (-972 *3 *4 *5 *6)))) (-3354 (*1 *2 *1) (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-1059 *3 *4 *2)) (-4 *2 (-846)))) (-2605 (*1 *2 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-640 *5)))) (-3568 (*1 *2 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-640 *5)))) (-3553 (*1 *2 *3 *1) (-12 (-4 *1 (-972 *4 *5 *3 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-4 *6 (-1059 *4 *5 *3)) (-5 *2 (-112)))) (-3542 (*1 *1 *1 *2) (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)) (-4 *5 (-1059 *3 *4 *2)))) (-3529 (*1 *1 *1 *2) (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)) (-4 *5 (-1059 *3 *4 *2)))) (-3519 (*1 *1 *1 *2) (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)) (-4 *5 (-1059 *3 *4 *2)))) (-1640 (*1 *2 *1 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-4 *6 (-1059 *4 *5 *3)) (-5 *2 (-2 (|:| |under| *1) (|:| -3954 *1) (|:| |upper| *1))) (-4 *1 (-972 *4 *5 *3 *6)))) (-3508 (*1 *2 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))) (-3496 (*1 *2 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-5 *2 (-112)))) (-3486 (*1 *2 *1 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-5 *2 (-112)))) (-3476 (*1 *2 *1 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-5 *2 (-112)))) (-3466 (*1 *2 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-5 *2 (-112)))) (-3454 (*1 *2 *3 *1) (-12 (-4 *1 (-972 *4 *5 *6 *3)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))) (-3443 (*1 *2 *3 *1) (-12 (-4 *1 (-972 *4 *5 *6 *3)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))) (-3431 (*1 *2 *2 *1) (-12 (-5 *2 (-640 *6)) (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)))) (-3418 (*1 *2 *2 *1) (-12 (-5 *2 (-640 *6)) (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)))) (-3406 (*1 *2 *1) (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-5 *2 (-112)))))
+(-13 (-1093) (-151 |t#4|) (-610 (-640 |t#4|)) (-10 -8 (-6 -4408) (-15 -2130 ((-3 $ "failed") (-640 |t#4|))) (-15 -2057 ($ (-640 |t#4|))) (-15 -3354 (|t#3| $)) (-15 -2605 ((-640 |t#3|) $)) (-15 -3568 ((-640 |t#3|) $)) (-15 -3553 ((-112) |t#3| $)) (-15 -3542 ($ $ |t#3|)) (-15 -3529 ($ $ |t#3|)) (-15 -3519 ($ $ |t#3|)) (-15 -1640 ((-2 (|:| |under| $) (|:| -3954 $) (|:| |upper| $)) $ |t#3|)) (-15 -3508 ((-112) $)) (IF (|has| |t#1| (-555)) (PROGN (-15 -3496 ((-112) $)) (-15 -3486 ((-112) $ $)) (-15 -3476 ((-112) $ $)) (-15 -3466 ((-112) $)) (-15 -3454 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -3443 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -3431 ((-640 |t#4|) (-640 |t#4|) $)) (-15 -3418 ((-640 |t#4|) (-640 |t#4|) $)) (-15 -3406 ((-112) $))) |%noBranch|)))
(((-34) . T) ((-102) . T) ((-610 (-640 |#4|)) . T) ((-610 (-858)) . T) ((-151 |#4|) . T) ((-611 (-536)) |has| |#4| (-611 (-536))) ((-309 |#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))) ((-489 |#4|) . T) ((-514 |#4| |#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))) ((-1093) . T) ((-1208) . T))
-((-3592 (((-640 |#4|) |#4| |#4|) 117)) (-1594 (((-640 |#4|) (-640 |#4|) (-112)) 106 (|has| |#1| (-452))) (((-640 |#4|) (-640 |#4|)) 107 (|has| |#1| (-452)))) (-3459 (((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|)) 34)) (-3618 (((-112) |#4|) 33)) (-3141 (((-640 |#4|) |#4|) 102 (|has| |#1| (-452)))) (-2741 (((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-1 (-112) |#4|) (-640 |#4|)) 19)) (-1965 (((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 (-1 (-112) |#4|)) (-640 |#4|)) 21)) (-1306 (((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 (-1 (-112) |#4|)) (-640 |#4|)) 22)) (-2806 (((-3 (-2 (|:| |bas| (-476 |#1| |#2| |#3| |#4|)) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|)) 72)) (-2825 (((-640 |#4|) (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 84)) (-2829 (((-640 |#4|) (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 110)) (-4245 (((-640 |#4|) (-640 |#4|)) 109)) (-1605 (((-640 |#4|) (-640 |#4|) (-640 |#4|) (-112)) 47) (((-640 |#4|) (-640 |#4|) (-640 |#4|)) 49)) (-1639 ((|#4| |#4| (-640 |#4|)) 48)) (-2538 (((-640 |#4|) (-640 |#4|) (-640 |#4|)) 113 (|has| |#1| (-452)))) (-3967 (((-640 |#4|) (-640 |#4|) (-640 |#4|)) 116 (|has| |#1| (-452)))) (-1641 (((-640 |#4|) (-640 |#4|) (-640 |#4|)) 115 (|has| |#1| (-452)))) (-3338 (((-640 |#4|) (-640 |#4|) (-640 |#4|) (-1 (-640 |#4|) (-640 |#4|))) 86) (((-640 |#4|) (-640 |#4|) (-640 |#4|)) 88) (((-640 |#4|) (-640 |#4|) |#4|) 120) (((-640 |#4|) |#4| |#4|) 118) (((-640 |#4|) (-640 |#4|)) 87)) (-1911 (((-640 |#4|) (-640 |#4|) (-640 |#4|)) 99 (-12 (|has| |#1| (-147)) (|has| |#1| (-307))))) (-4206 (((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|)) 40)) (-3023 (((-112) (-640 |#4|)) 61)) (-2164 (((-112) (-640 |#4|) (-640 (-640 |#4|))) 52)) (-3667 (((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|)) 28)) (-4304 (((-112) |#4|) 27)) (-3287 (((-640 |#4|) (-640 |#4|)) 97 (-12 (|has| |#1| (-147)) (|has| |#1| (-307))))) (-2333 (((-640 |#4|) (-640 |#4|)) 98 (-12 (|has| |#1| (-147)) (|has| |#1| (-307))))) (-3953 (((-640 |#4|) (-640 |#4|)) 65)) (-1791 (((-640 |#4|) (-640 |#4|)) 78)) (-3081 (((-112) (-640 |#4|) (-640 |#4|)) 50)) (-1591 (((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|)) 38)) (-2166 (((-112) |#4|) 35)))
-(((-973 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3338 ((-640 |#4|) (-640 |#4|))) (-15 -3338 ((-640 |#4|) |#4| |#4|)) (-15 -4245 ((-640 |#4|) (-640 |#4|))) (-15 -3592 ((-640 |#4|) |#4| |#4|)) (-15 -3338 ((-640 |#4|) (-640 |#4|) |#4|)) (-15 -3338 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -3338 ((-640 |#4|) (-640 |#4|) (-640 |#4|) (-1 (-640 |#4|) (-640 |#4|)))) (-15 -3081 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2164 ((-112) (-640 |#4|) (-640 (-640 |#4|)))) (-15 -3023 ((-112) (-640 |#4|))) (-15 -2741 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-1 (-112) |#4|) (-640 |#4|))) (-15 -1965 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 (-1 (-112) |#4|)) (-640 |#4|))) (-15 -1306 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 (-1 (-112) |#4|)) (-640 |#4|))) (-15 -4206 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -3618 ((-112) |#4|)) (-15 -3459 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -4304 ((-112) |#4|)) (-15 -3667 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -2166 ((-112) |#4|)) (-15 -1591 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -1605 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -1605 ((-640 |#4|) (-640 |#4|) (-640 |#4|) (-112))) (-15 -1639 (|#4| |#4| (-640 |#4|))) (-15 -3953 ((-640 |#4|) (-640 |#4|))) (-15 -2806 ((-3 (-2 (|:| |bas| (-476 |#1| |#2| |#3| |#4|)) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|))) (-15 -1791 ((-640 |#4|) (-640 |#4|))) (-15 -2825 ((-640 |#4|) (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2829 ((-640 |#4|) (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-452)) (PROGN (-15 -3141 ((-640 |#4|) |#4|)) (-15 -1594 ((-640 |#4|) (-640 |#4|))) (-15 -1594 ((-640 |#4|) (-640 |#4|) (-112))) (-15 -2538 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -1641 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -3967 ((-640 |#4|) (-640 |#4|) (-640 |#4|)))) |%noBranch|) (IF (|has| |#1| (-307)) (IF (|has| |#1| (-147)) (PROGN (-15 -2333 ((-640 |#4|) (-640 |#4|))) (-15 -3287 ((-640 |#4|) (-640 |#4|))) (-15 -1911 ((-640 |#4|) (-640 |#4|) (-640 |#4|)))) |%noBranch|) |%noBranch|)) (-555) (-789) (-846) (-1059 |#1| |#2| |#3|)) (T -973))
-((-1911 (*1 *2 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-147)) (-4 *3 (-307)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-3287 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-147)) (-4 *3 (-307)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-2333 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-147)) (-4 *3 (-307)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-3967 (*1 *2 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-1641 (*1 *2 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-2538 (*1 *2 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-1594 (*1 *2 *2 *3) (-12 (-5 *2 (-640 *7)) (-5 *3 (-112)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *7)))) (-1594 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-3141 (*1 *2 *3) (-12 (-4 *4 (-452)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *3)) (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))) (-2829 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-640 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-973 *5 *6 *7 *8)))) (-2825 (*1 *2 *2 *3 *4 *5) (-12 (-5 *2 (-640 *9)) (-5 *3 (-1 (-112) *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1059 *6 *7 *8)) (-4 *6 (-555)) (-4 *7 (-789)) (-4 *8 (-846)) (-5 *1 (-973 *6 *7 *8 *9)))) (-1791 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-2806 (*1 *2 *3) (|partial| -12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-2 (|:| |bas| (-476 *4 *5 *6 *7)) (|:| -2636 (-640 *7)))) (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-3953 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-1639 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *2)))) (-1605 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-640 *7)) (-5 *3 (-112)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *7)))) (-1605 (*1 *2 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-1591 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7)))) (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-2166 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))) (-3667 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7)))) (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-4304 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))) (-3459 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7)))) (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-3618 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))) (-4206 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7)))) (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-1306 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-1 (-112) *8))) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-2 (|:| |goodPols| (-640 *8)) (|:| |badPols| (-640 *8)))) (-5 *1 (-973 *5 *6 *7 *8)) (-5 *4 (-640 *8)))) (-1965 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-1 (-112) *8))) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-2 (|:| |goodPols| (-640 *8)) (|:| |badPols| (-640 *8)))) (-5 *1 (-973 *5 *6 *7 *8)) (-5 *4 (-640 *8)))) (-2741 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-2 (|:| |goodPols| (-640 *8)) (|:| |badPols| (-640 *8)))) (-5 *1 (-973 *5 *6 *7 *8)) (-5 *4 (-640 *8)))) (-3023 (*1 *2 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-973 *4 *5 *6 *7)))) (-2164 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-640 *8))) (-5 *3 (-640 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-112)) (-5 *1 (-973 *5 *6 *7 *8)))) (-3081 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-973 *4 *5 *6 *7)))) (-3338 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 (-640 *7) (-640 *7))) (-5 *2 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *7)))) (-3338 (*1 *2 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-3338 (*1 *2 *2 *3) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *3)))) (-3592 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *3)) (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))) (-4245 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-3338 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *3)) (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))) (-3338 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))))
-(-10 -7 (-15 -3338 ((-640 |#4|) (-640 |#4|))) (-15 -3338 ((-640 |#4|) |#4| |#4|)) (-15 -4245 ((-640 |#4|) (-640 |#4|))) (-15 -3592 ((-640 |#4|) |#4| |#4|)) (-15 -3338 ((-640 |#4|) (-640 |#4|) |#4|)) (-15 -3338 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -3338 ((-640 |#4|) (-640 |#4|) (-640 |#4|) (-1 (-640 |#4|) (-640 |#4|)))) (-15 -3081 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2164 ((-112) (-640 |#4|) (-640 (-640 |#4|)))) (-15 -3023 ((-112) (-640 |#4|))) (-15 -2741 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-1 (-112) |#4|) (-640 |#4|))) (-15 -1965 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 (-1 (-112) |#4|)) (-640 |#4|))) (-15 -1306 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 (-1 (-112) |#4|)) (-640 |#4|))) (-15 -4206 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -3618 ((-112) |#4|)) (-15 -3459 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -4304 ((-112) |#4|)) (-15 -3667 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -2166 ((-112) |#4|)) (-15 -1591 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -1605 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -1605 ((-640 |#4|) (-640 |#4|) (-640 |#4|) (-112))) (-15 -1639 (|#4| |#4| (-640 |#4|))) (-15 -3953 ((-640 |#4|) (-640 |#4|))) (-15 -2806 ((-3 (-2 (|:| |bas| (-476 |#1| |#2| |#3| |#4|)) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|))) (-15 -1791 ((-640 |#4|) (-640 |#4|))) (-15 -2825 ((-640 |#4|) (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2829 ((-640 |#4|) (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-452)) (PROGN (-15 -3141 ((-640 |#4|) |#4|)) (-15 -1594 ((-640 |#4|) (-640 |#4|))) (-15 -1594 ((-640 |#4|) (-640 |#4|) (-112))) (-15 -2538 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -1641 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -3967 ((-640 |#4|) (-640 |#4|) (-640 |#4|)))) |%noBranch|) (IF (|has| |#1| (-307)) (IF (|has| |#1| (-147)) (PROGN (-15 -2333 ((-640 |#4|) (-640 |#4|))) (-15 -3287 ((-640 |#4|) (-640 |#4|))) (-15 -1911 ((-640 |#4|) (-640 |#4|) (-640 |#4|)))) |%noBranch|) |%noBranch|))
-((-3029 (((-2 (|:| R (-684 |#1|)) (|:| A (-684 |#1|)) (|:| |Ainv| (-684 |#1|))) (-684 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 19)) (-3056 (((-640 (-2 (|:| C (-684 |#1|)) (|:| |g| (-1257 |#1|)))) (-684 |#1|) (-1257 |#1|)) 35)) (-3578 (((-684 |#1|) (-684 |#1|) (-684 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 16)))
-(((-974 |#1|) (-10 -7 (-15 -3029 ((-2 (|:| R (-684 |#1|)) (|:| A (-684 |#1|)) (|:| |Ainv| (-684 |#1|))) (-684 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3578 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3056 ((-640 (-2 (|:| C (-684 |#1|)) (|:| |g| (-1257 |#1|)))) (-684 |#1|) (-1257 |#1|)))) (-363)) (T -974))
-((-3056 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-5 *2 (-640 (-2 (|:| C (-684 *5)) (|:| |g| (-1257 *5))))) (-5 *1 (-974 *5)) (-5 *3 (-684 *5)) (-5 *4 (-1257 *5)))) (-3578 (*1 *2 *2 *2 *3 *4) (-12 (-5 *2 (-684 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-363)) (-5 *1 (-974 *5)))) (-3029 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-363)) (-5 *2 (-2 (|:| R (-684 *6)) (|:| A (-684 *6)) (|:| |Ainv| (-684 *6)))) (-5 *1 (-974 *6)) (-5 *3 (-684 *6)))))
-(-10 -7 (-15 -3029 ((-2 (|:| R (-684 |#1|)) (|:| A (-684 |#1|)) (|:| |Ainv| (-684 |#1|))) (-684 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3578 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3056 ((-640 (-2 (|:| C (-684 |#1|)) (|:| |g| (-1257 |#1|)))) (-684 |#1|) (-1257 |#1|))))
-((-3205 (((-418 |#4|) |#4|) 48)))
-(((-975 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3205 ((-418 |#4|) |#4|))) (-846) (-789) (-452) (-945 |#3| |#2| |#1|)) (T -975))
-((-3205 (*1 *2 *3) (-12 (-4 *4 (-846)) (-4 *5 (-789)) (-4 *6 (-452)) (-5 *2 (-418 *3)) (-5 *1 (-975 *4 *5 *6 *3)) (-4 *3 (-945 *6 *5 *4)))))
-(-10 -7 (-15 -3205 ((-418 |#4|) |#4|)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-3212 (($ (-767)) 112 (|has| |#1| (-23)))) (-4378 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4408)))) (-3523 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-846)))) (-2770 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4408))) (($ $) 88 (-12 (|has| |#1| (-846)) (|has| $ (-6 -4408))))) (-1642 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-846)))) (-2759 (((-112) $ (-767)) 8)) (-1849 ((|#1| $ (-563) |#1|) 52 (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) 58 (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4407)))) (-4239 (($) 7 T CONST)) (-2907 (($ $) 90 (|has| $ (-6 -4408)))) (-4382 (($ $) 100)) (-3813 (($ $) 78 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ |#1| $) 77 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4407)))) (-4355 ((|#1| $ (-563) |#1|) 53 (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) 51)) (-4368 (((-563) (-1 (-112) |#1|) $) 97) (((-563) |#1| $) 96 (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) 95 (|has| |#1| (-1093)))) (-3014 (($ (-640 |#1|)) 118)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-3982 (((-684 |#1|) $ $) 105 (|has| |#1| (-1045)))) (-1566 (($ (-767) |#1|) 69)) (-2581 (((-112) $ (-767)) 9)) (-2411 (((-563) $) 43 (|has| (-563) (-846)))) (-3084 (($ $ $) 87 (|has| |#1| (-846)))) (-3164 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-846)))) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-3860 (((-563) $) 44 (|has| (-563) (-846)))) (-1777 (($ $ $) 86 (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-1607 ((|#1| $) 102 (-12 (|has| |#1| (-1045)) (|has| |#1| (-998))))) (-2382 (((-112) $ (-767)) 10)) (-3415 ((|#1| $) 103 (-12 (|has| |#1| (-1045)) (|has| |#1| (-998))))) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-3396 (($ |#1| $ (-563)) 60) (($ $ $ (-563)) 59)) (-4318 (((-640 (-563)) $) 46)) (-3192 (((-112) (-563) $) 47)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3781 ((|#1| $) 42 (|has| (-563) (-846)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2358 (($ $ |#1|) 41 (|has| $ (-6 -4408)))) (-3320 (($ $ (-640 |#1|)) 116)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-2105 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) 48)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ (-563) |#1|) 50) ((|#1| $ (-563)) 49) (($ $ (-1224 (-563))) 63)) (-4092 ((|#1| $ $) 106 (|has| |#1| (-1045)))) (-3533 (((-917) $) 117)) (-2963 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-1627 (($ $ $) 104)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-3076 (($ $ $ (-563)) 91 (|has| $ (-6 -4408)))) (-1872 (($ $) 13)) (-2220 (((-536) $) 79 (|has| |#1| (-611 (-536)))) (($ (-640 |#1|)) 119)) (-1707 (($ (-640 |#1|)) 70)) (-2853 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) 84 (|has| |#1| (-846)))) (-1756 (((-112) $ $) 83 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-1768 (((-112) $ $) 85 (|has| |#1| (-846)))) (-1744 (((-112) $ $) 82 (|has| |#1| (-846)))) (-1826 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-1814 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-563) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-722))) (($ $ |#1|) 107 (|has| |#1| (-722)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-3589 (((-640 |#4|) |#4| |#4|) 116)) (-2654 (((-640 |#4|) (-640 |#4|) (-112)) 105 (|has| |#1| (-452))) (((-640 |#4|) (-640 |#4|)) 106 (|has| |#1| (-452)))) (-3706 (((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|)) 33)) (-3692 (((-112) |#4|) 32)) (-2644 (((-640 |#4|) |#4|) 101 (|has| |#1| (-452)))) (-3646 (((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-1 (-112) |#4|) (-640 |#4|)) 19)) (-3657 (((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 (-1 (-112) |#4|)) (-640 |#4|)) 21)) (-3668 (((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 (-1 (-112) |#4|)) (-640 |#4|)) 22)) (-3797 (((-3 (-2 (|:| |bas| (-476 |#1| |#2| |#3| |#4|)) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|)) 71)) (-3822 (((-640 |#4|) (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 83)) (-2634 (((-640 |#4|) (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 109)) (-3579 (((-640 |#4|) (-640 |#4|)) 108)) (-3765 (((-640 |#4|) (-640 |#4|) (-640 |#4|) (-112)) 46) (((-640 |#4|) (-640 |#4|) (-640 |#4|)) 48)) (-3775 ((|#4| |#4| (-640 |#4|)) 47)) (-2662 (((-640 |#4|) (-640 |#4|) (-640 |#4|)) 112 (|has| |#1| (-452)))) (-2681 (((-640 |#4|) (-640 |#4|) (-640 |#4|)) 115 (|has| |#1| (-452)))) (-2673 (((-640 |#4|) (-640 |#4|) (-640 |#4|)) 114 (|has| |#1| (-452)))) (-3601 (((-640 |#4|) (-640 |#4|) (-640 |#4|) (-1 (-640 |#4|) (-640 |#4|))) 85) (((-640 |#4|) (-640 |#4|) (-640 |#4|)) 87) (((-640 |#4|) (-640 |#4|) |#4|) 119) (((-640 |#4|) |#4| |#4|) 117) (((-640 |#4|) (-640 |#4|)) 86)) (-2708 (((-640 |#4|) (-640 |#4|) (-640 |#4|)) 98 (-12 (|has| |#1| (-147)) (|has| |#1| (-307))))) (-3680 (((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|)) 39)) (-3635 (((-112) (-640 |#4|)) 60)) (-3623 (((-112) (-640 |#4|) (-640 (-640 |#4|))) 51)) (-3732 (((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|)) 27)) (-3719 (((-112) |#4|) 26)) (-2698 (((-640 |#4|) (-640 |#4|)) 96 (-12 (|has| |#1| (-147)) (|has| |#1| (-307))))) (-2690 (((-640 |#4|) (-640 |#4|)) 97 (-12 (|has| |#1| (-147)) (|has| |#1| (-307))))) (-3788 (((-640 |#4|) (-640 |#4|)) 64)) (-3810 (((-640 |#4|) (-640 |#4|)) 77)) (-3612 (((-112) (-640 |#4|) (-640 |#4|)) 49)) (-3753 (((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|)) 37)) (-3743 (((-112) |#4|) 34)))
+(((-973 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3601 ((-640 |#4|) (-640 |#4|))) (-15 -3601 ((-640 |#4|) |#4| |#4|)) (-15 -3579 ((-640 |#4|) (-640 |#4|))) (-15 -3589 ((-640 |#4|) |#4| |#4|)) (-15 -3601 ((-640 |#4|) (-640 |#4|) |#4|)) (-15 -3601 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -3601 ((-640 |#4|) (-640 |#4|) (-640 |#4|) (-1 (-640 |#4|) (-640 |#4|)))) (-15 -3612 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -3623 ((-112) (-640 |#4|) (-640 (-640 |#4|)))) (-15 -3635 ((-112) (-640 |#4|))) (-15 -3646 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-1 (-112) |#4|) (-640 |#4|))) (-15 -3657 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 (-1 (-112) |#4|)) (-640 |#4|))) (-15 -3668 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 (-1 (-112) |#4|)) (-640 |#4|))) (-15 -3680 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -3692 ((-112) |#4|)) (-15 -3706 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -3719 ((-112) |#4|)) (-15 -3732 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -3743 ((-112) |#4|)) (-15 -3753 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -3765 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -3765 ((-640 |#4|) (-640 |#4|) (-640 |#4|) (-112))) (-15 -3775 (|#4| |#4| (-640 |#4|))) (-15 -3788 ((-640 |#4|) (-640 |#4|))) (-15 -3797 ((-3 (-2 (|:| |bas| (-476 |#1| |#2| |#3| |#4|)) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|))) (-15 -3810 ((-640 |#4|) (-640 |#4|))) (-15 -3822 ((-640 |#4|) (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2634 ((-640 |#4|) (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-452)) (PROGN (-15 -2644 ((-640 |#4|) |#4|)) (-15 -2654 ((-640 |#4|) (-640 |#4|))) (-15 -2654 ((-640 |#4|) (-640 |#4|) (-112))) (-15 -2662 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -2673 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -2681 ((-640 |#4|) (-640 |#4|) (-640 |#4|)))) |%noBranch|) (IF (|has| |#1| (-307)) (IF (|has| |#1| (-147)) (PROGN (-15 -2690 ((-640 |#4|) (-640 |#4|))) (-15 -2698 ((-640 |#4|) (-640 |#4|))) (-15 -2708 ((-640 |#4|) (-640 |#4|) (-640 |#4|)))) |%noBranch|) |%noBranch|)) (-555) (-789) (-846) (-1059 |#1| |#2| |#3|)) (T -973))
+((-2708 (*1 *2 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-147)) (-4 *3 (-307)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-2698 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-147)) (-4 *3 (-307)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-2690 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-147)) (-4 *3 (-307)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-2681 (*1 *2 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-2673 (*1 *2 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-2662 (*1 *2 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-2654 (*1 *2 *2 *3) (-12 (-5 *2 (-640 *7)) (-5 *3 (-112)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *7)))) (-2654 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-2644 (*1 *2 *3) (-12 (-4 *4 (-452)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *3)) (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))) (-2634 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-640 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-973 *5 *6 *7 *8)))) (-3822 (*1 *2 *2 *3 *4 *5) (-12 (-5 *2 (-640 *9)) (-5 *3 (-1 (-112) *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1059 *6 *7 *8)) (-4 *6 (-555)) (-4 *7 (-789)) (-4 *8 (-846)) (-5 *1 (-973 *6 *7 *8 *9)))) (-3810 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-3797 (*1 *2 *3) (|partial| -12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-2 (|:| |bas| (-476 *4 *5 *6 *7)) (|:| -2635 (-640 *7)))) (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-3788 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-3775 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *2)))) (-3765 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-640 *7)) (-5 *3 (-112)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *7)))) (-3765 (*1 *2 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-3753 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7)))) (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-3743 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))) (-3732 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7)))) (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-3719 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))) (-3706 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7)))) (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-3692 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))) (-3680 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7)))) (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))) (-3668 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-1 (-112) *8))) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-2 (|:| |goodPols| (-640 *8)) (|:| |badPols| (-640 *8)))) (-5 *1 (-973 *5 *6 *7 *8)) (-5 *4 (-640 *8)))) (-3657 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-1 (-112) *8))) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-2 (|:| |goodPols| (-640 *8)) (|:| |badPols| (-640 *8)))) (-5 *1 (-973 *5 *6 *7 *8)) (-5 *4 (-640 *8)))) (-3646 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-2 (|:| |goodPols| (-640 *8)) (|:| |badPols| (-640 *8)))) (-5 *1 (-973 *5 *6 *7 *8)) (-5 *4 (-640 *8)))) (-3635 (*1 *2 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-973 *4 *5 *6 *7)))) (-3623 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-640 *8))) (-5 *3 (-640 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-112)) (-5 *1 (-973 *5 *6 *7 *8)))) (-3612 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-973 *4 *5 *6 *7)))) (-3601 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 (-640 *7) (-640 *7))) (-5 *2 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *7)))) (-3601 (*1 *2 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-3601 (*1 *2 *2 *3) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *3)))) (-3589 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *3)) (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))) (-3579 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))) (-3601 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *3)) (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))) (-3601 (*1 *2 *2) (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))))
+(-10 -7 (-15 -3601 ((-640 |#4|) (-640 |#4|))) (-15 -3601 ((-640 |#4|) |#4| |#4|)) (-15 -3579 ((-640 |#4|) (-640 |#4|))) (-15 -3589 ((-640 |#4|) |#4| |#4|)) (-15 -3601 ((-640 |#4|) (-640 |#4|) |#4|)) (-15 -3601 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -3601 ((-640 |#4|) (-640 |#4|) (-640 |#4|) (-1 (-640 |#4|) (-640 |#4|)))) (-15 -3612 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -3623 ((-112) (-640 |#4|) (-640 (-640 |#4|)))) (-15 -3635 ((-112) (-640 |#4|))) (-15 -3646 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-1 (-112) |#4|) (-640 |#4|))) (-15 -3657 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 (-1 (-112) |#4|)) (-640 |#4|))) (-15 -3668 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 (-1 (-112) |#4|)) (-640 |#4|))) (-15 -3680 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -3692 ((-112) |#4|)) (-15 -3706 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -3719 ((-112) |#4|)) (-15 -3732 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -3743 ((-112) |#4|)) (-15 -3753 ((-2 (|:| |goodPols| (-640 |#4|)) (|:| |badPols| (-640 |#4|))) (-640 |#4|))) (-15 -3765 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -3765 ((-640 |#4|) (-640 |#4|) (-640 |#4|) (-112))) (-15 -3775 (|#4| |#4| (-640 |#4|))) (-15 -3788 ((-640 |#4|) (-640 |#4|))) (-15 -3797 ((-3 (-2 (|:| |bas| (-476 |#1| |#2| |#3| |#4|)) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|))) (-15 -3810 ((-640 |#4|) (-640 |#4|))) (-15 -3822 ((-640 |#4|) (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2634 ((-640 |#4|) (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-452)) (PROGN (-15 -2644 ((-640 |#4|) |#4|)) (-15 -2654 ((-640 |#4|) (-640 |#4|))) (-15 -2654 ((-640 |#4|) (-640 |#4|) (-112))) (-15 -2662 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -2673 ((-640 |#4|) (-640 |#4|) (-640 |#4|))) (-15 -2681 ((-640 |#4|) (-640 |#4|) (-640 |#4|)))) |%noBranch|) (IF (|has| |#1| (-307)) (IF (|has| |#1| (-147)) (PROGN (-15 -2690 ((-640 |#4|) (-640 |#4|))) (-15 -2698 ((-640 |#4|) (-640 |#4|))) (-15 -2708 ((-640 |#4|) (-640 |#4|) (-640 |#4|)))) |%noBranch|) |%noBranch|))
+((-2718 (((-2 (|:| R (-684 |#1|)) (|:| A (-684 |#1|)) (|:| |Ainv| (-684 |#1|))) (-684 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 19)) (-2741 (((-640 (-2 (|:| C (-684 |#1|)) (|:| |g| (-1257 |#1|)))) (-684 |#1|) (-1257 |#1|)) 35)) (-2729 (((-684 |#1|) (-684 |#1|) (-684 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 16)))
+(((-974 |#1|) (-10 -7 (-15 -2718 ((-2 (|:| R (-684 |#1|)) (|:| A (-684 |#1|)) (|:| |Ainv| (-684 |#1|))) (-684 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2729 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2741 ((-640 (-2 (|:| C (-684 |#1|)) (|:| |g| (-1257 |#1|)))) (-684 |#1|) (-1257 |#1|)))) (-363)) (T -974))
+((-2741 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-5 *2 (-640 (-2 (|:| C (-684 *5)) (|:| |g| (-1257 *5))))) (-5 *1 (-974 *5)) (-5 *3 (-684 *5)) (-5 *4 (-1257 *5)))) (-2729 (*1 *2 *2 *2 *3 *4) (-12 (-5 *2 (-684 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-363)) (-5 *1 (-974 *5)))) (-2718 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-363)) (-5 *2 (-2 (|:| R (-684 *6)) (|:| A (-684 *6)) (|:| |Ainv| (-684 *6)))) (-5 *1 (-974 *6)) (-5 *3 (-684 *6)))))
+(-10 -7 (-15 -2718 ((-2 (|:| R (-684 |#1|)) (|:| A (-684 |#1|)) (|:| |Ainv| (-684 |#1|))) (-684 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2729 ((-684 |#1|) (-684 |#1|) (-684 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2741 ((-640 (-2 (|:| C (-684 |#1|)) (|:| |g| (-1257 |#1|)))) (-684 |#1|) (-1257 |#1|))))
+((-2802 (((-418 |#4|) |#4|) 48)))
+(((-975 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2802 ((-418 |#4|) |#4|))) (-846) (-789) (-452) (-945 |#3| |#2| |#1|)) (T -975))
+((-2802 (*1 *2 *3) (-12 (-4 *4 (-846)) (-4 *5 (-789)) (-4 *6 (-452)) (-5 *2 (-418 *3)) (-5 *1 (-975 *4 *5 *6 *3)) (-4 *3 (-945 *6 *5 *4)))))
+(-10 -7 (-15 -2802 ((-418 |#4|) |#4|)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-3216 (($ (-767)) 112 (|has| |#1| (-23)))) (-2208 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4409)))) (-4073 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-846)))) (-4052 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4409))) (($ $) 88 (-12 (|has| |#1| (-846)) (|has| $ (-6 -4409))))) (-1640 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-846)))) (-3001 (((-112) $ (-767)) 8)) (-1849 ((|#1| $ (-563) |#1|) 52 (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) 58 (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4408)))) (-2569 (($) 7 T CONST)) (-1574 (($ $) 90 (|has| $ (-6 -4409)))) (-4383 (($ $) 100)) (-3814 (($ $) 78 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ |#1| $) 77 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4408)))) (-4356 ((|#1| $ (-563) |#1|) 53 (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) 51)) (-4369 (((-563) (-1 (-112) |#1|) $) 97) (((-563) |#1| $) 96 (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) 95 (|has| |#1| (-1093)))) (-3018 (($ (-640 |#1|)) 118)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-3983 (((-684 |#1|) $ $) 105 (|has| |#1| (-1045)))) (-1565 (($ (-767) |#1|) 69)) (-2514 (((-112) $ (-767)) 9)) (-2236 (((-563) $) 43 (|has| (-563) (-846)))) (-3088 (($ $ $) 87 (|has| |#1| (-846)))) (-4300 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-846)))) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-2251 (((-563) $) 44 (|has| (-563) (-846)))) (-1776 (($ $ $) 86 (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-4098 ((|#1| $) 102 (-12 (|has| |#1| (-1045)) (|has| |#1| (-998))))) (-2481 (((-112) $ (-767)) 10)) (-3419 ((|#1| $) 103 (-12 (|has| |#1| (-1045)) (|has| |#1| (-998))))) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-3399 (($ |#1| $ (-563)) 60) (($ $ $ (-563)) 59)) (-2272 (((-640 (-563)) $) 46)) (-2282 (((-112) (-563) $) 47)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3782 ((|#1| $) 42 (|has| (-563) (-846)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2221 (($ $ |#1|) 41 (|has| $ (-6 -4409)))) (-1751 (($ $ (-640 |#1|)) 116)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) 48)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ (-563) |#1|) 50) ((|#1| $ (-563)) 49) (($ $ (-1224 (-563))) 63)) (-4121 ((|#1| $ $) 106 (|has| |#1| (-1045)))) (-3526 (((-917) $) 117)) (-2967 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-4111 (($ $ $) 104)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4062 (($ $ $ (-563)) 91 (|has| $ (-6 -4409)))) (-1870 (($ $) 13)) (-2219 (((-536) $) 79 (|has| |#1| (-611 (-536)))) (($ (-640 |#1|)) 119)) (-1706 (($ (-640 |#1|)) 70)) (-2857 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) 84 (|has| |#1| (-846)))) (-1754 (((-112) $ $) 83 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-1766 (((-112) $ $) 85 (|has| |#1| (-846)))) (-1743 (((-112) $ $) 82 (|has| |#1| (-846)))) (-1825 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-1813 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-563) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-722))) (($ $ |#1|) 107 (|has| |#1| (-722)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-976 |#1|) (-140) (-1045)) (T -976))
-((-3014 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1045)) (-4 *1 (-976 *3)))) (-3533 (*1 *2 *1) (-12 (-4 *1 (-976 *3)) (-4 *3 (-1045)) (-5 *2 (-917)))) (-1627 (*1 *1 *1 *1) (-12 (-4 *1 (-976 *2)) (-4 *2 (-1045)))) (-3320 (*1 *1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *1 (-976 *3)) (-4 *3 (-1045)))))
-(-13 (-1255 |t#1|) (-615 (-640 |t#1|)) (-10 -8 (-15 -3014 ($ (-640 |t#1|))) (-15 -3533 ((-917) $)) (-15 -1627 ($ $ $)) (-15 -3320 ($ $ (-640 |t#1|)))))
-(((-34) . T) ((-102) -4032 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-846)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-615 (-640 |#1|)) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-373 |#1|) . T) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-19 |#1|) . T) ((-846) |has| |#1| (-846)) ((-1093) -4032 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-1208) . T) ((-1255 |#1|) . T))
-((-2240 (((-939 |#2|) (-1 |#2| |#1|) (-939 |#1|)) 17)))
-(((-977 |#1| |#2|) (-10 -7 (-15 -2240 ((-939 |#2|) (-1 |#2| |#1|) (-939 |#1|)))) (-1045) (-1045)) (T -977))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-939 *5)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-5 *2 (-939 *6)) (-5 *1 (-977 *5 *6)))))
-(-10 -7 (-15 -2240 ((-939 |#2|) (-1 |#2| |#1|) (-939 |#1|))))
-((-2496 ((|#1| (-939 |#1|)) 13)) (-3200 ((|#1| (-939 |#1|)) 12)) (-1347 ((|#1| (-939 |#1|)) 11)) (-1953 ((|#1| (-939 |#1|)) 15)) (-3905 ((|#1| (-939 |#1|)) 21)) (-2053 ((|#1| (-939 |#1|)) 14)) (-1316 ((|#1| (-939 |#1|)) 16)) (-3788 ((|#1| (-939 |#1|)) 20)) (-1332 ((|#1| (-939 |#1|)) 19)))
-(((-978 |#1|) (-10 -7 (-15 -1347 (|#1| (-939 |#1|))) (-15 -3200 (|#1| (-939 |#1|))) (-15 -2496 (|#1| (-939 |#1|))) (-15 -2053 (|#1| (-939 |#1|))) (-15 -1953 (|#1| (-939 |#1|))) (-15 -1316 (|#1| (-939 |#1|))) (-15 -1332 (|#1| (-939 |#1|))) (-15 -3788 (|#1| (-939 |#1|))) (-15 -3905 (|#1| (-939 |#1|)))) (-1045)) (T -978))
-((-3905 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-3788 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-1332 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-1316 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-1953 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-2053 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-2496 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-3200 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-1347 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
-(-10 -7 (-15 -1347 (|#1| (-939 |#1|))) (-15 -3200 (|#1| (-939 |#1|))) (-15 -2496 (|#1| (-939 |#1|))) (-15 -2053 (|#1| (-939 |#1|))) (-15 -1953 (|#1| (-939 |#1|))) (-15 -1316 (|#1| (-939 |#1|))) (-15 -1332 (|#1| (-939 |#1|))) (-15 -3788 (|#1| (-939 |#1|))) (-15 -3905 (|#1| (-939 |#1|))))
-((-2695 (((-3 |#1| "failed") |#1|) 18)) (-4243 (((-3 |#1| "failed") |#1|) 6)) (-2030 (((-3 |#1| "failed") |#1|) 16)) (-1923 (((-3 |#1| "failed") |#1|) 4)) (-3565 (((-3 |#1| "failed") |#1|) 20)) (-3918 (((-3 |#1| "failed") |#1|) 8)) (-2092 (((-3 |#1| "failed") |#1| (-767)) 1)) (-1739 (((-3 |#1| "failed") |#1|) 3)) (-3089 (((-3 |#1| "failed") |#1|) 2)) (-3344 (((-3 |#1| "failed") |#1|) 21)) (-1732 (((-3 |#1| "failed") |#1|) 9)) (-3392 (((-3 |#1| "failed") |#1|) 19)) (-2616 (((-3 |#1| "failed") |#1|) 7)) (-3240 (((-3 |#1| "failed") |#1|) 17)) (-2106 (((-3 |#1| "failed") |#1|) 5)) (-4385 (((-3 |#1| "failed") |#1|) 24)) (-2566 (((-3 |#1| "failed") |#1|) 12)) (-4074 (((-3 |#1| "failed") |#1|) 22)) (-2000 (((-3 |#1| "failed") |#1|) 10)) (-2915 (((-3 |#1| "failed") |#1|) 26)) (-2002 (((-3 |#1| "failed") |#1|) 14)) (-3874 (((-3 |#1| "failed") |#1|) 27)) (-3409 (((-3 |#1| "failed") |#1|) 15)) (-2951 (((-3 |#1| "failed") |#1|) 25)) (-3235 (((-3 |#1| "failed") |#1|) 13)) (-2819 (((-3 |#1| "failed") |#1|) 23)) (-3137 (((-3 |#1| "failed") |#1|) 11)))
+((-3018 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1045)) (-4 *1 (-976 *3)))) (-3526 (*1 *2 *1) (-12 (-4 *1 (-976 *3)) (-4 *3 (-1045)) (-5 *2 (-917)))) (-4111 (*1 *1 *1 *1) (-12 (-4 *1 (-976 *2)) (-4 *2 (-1045)))) (-1751 (*1 *1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *1 (-976 *3)) (-4 *3 (-1045)))))
+(-13 (-1255 |t#1|) (-615 (-640 |t#1|)) (-10 -8 (-15 -3018 ($ (-640 |t#1|))) (-15 -3526 ((-917) $)) (-15 -4111 ($ $ $)) (-15 -1751 ($ $ (-640 |t#1|)))))
+(((-34) . T) ((-102) -4034 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-846)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-615 (-640 |#1|)) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-373 |#1|) . T) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-19 |#1|) . T) ((-846) |has| |#1| (-846)) ((-1093) -4034 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-1208) . T) ((-1255 |#1|) . T))
+((-2238 (((-939 |#2|) (-1 |#2| |#1|) (-939 |#1|)) 17)))
+(((-977 |#1| |#2|) (-10 -7 (-15 -2238 ((-939 |#2|) (-1 |#2| |#1|) (-939 |#1|)))) (-1045) (-1045)) (T -977))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-939 *5)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-5 *2 (-939 *6)) (-5 *1 (-977 *5 *6)))))
+(-10 -7 (-15 -2238 ((-939 |#2|) (-1 |#2| |#1|) (-939 |#1|))))
+((-2774 ((|#1| (-939 |#1|)) 13)) (-2763 ((|#1| (-939 |#1|)) 12)) (-2753 ((|#1| (-939 |#1|)) 11)) (-2795 ((|#1| (-939 |#1|)) 15)) (-2841 ((|#1| (-939 |#1|)) 21)) (-2785 ((|#1| (-939 |#1|)) 14)) (-2805 ((|#1| (-939 |#1|)) 16)) (-2830 ((|#1| (-939 |#1|)) 20)) (-2817 ((|#1| (-939 |#1|)) 19)))
+(((-978 |#1|) (-10 -7 (-15 -2753 (|#1| (-939 |#1|))) (-15 -2763 (|#1| (-939 |#1|))) (-15 -2774 (|#1| (-939 |#1|))) (-15 -2785 (|#1| (-939 |#1|))) (-15 -2795 (|#1| (-939 |#1|))) (-15 -2805 (|#1| (-939 |#1|))) (-15 -2817 (|#1| (-939 |#1|))) (-15 -2830 (|#1| (-939 |#1|))) (-15 -2841 (|#1| (-939 |#1|)))) (-1045)) (T -978))
+((-2841 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-2830 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-2817 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-2805 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-2795 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-2785 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-2774 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-2763 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))) (-2753 (*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
+(-10 -7 (-15 -2753 (|#1| (-939 |#1|))) (-15 -2763 (|#1| (-939 |#1|))) (-15 -2774 (|#1| (-939 |#1|))) (-15 -2785 (|#1| (-939 |#1|))) (-15 -2795 (|#1| (-939 |#1|))) (-15 -2805 (|#1| (-939 |#1|))) (-15 -2817 (|#1| (-939 |#1|))) (-15 -2830 (|#1| (-939 |#1|))) (-15 -2841 (|#1| (-939 |#1|))))
+((-3015 (((-3 |#1| "failed") |#1|) 18)) (-2896 (((-3 |#1| "failed") |#1|) 6)) (-2993 (((-3 |#1| "failed") |#1|) 16)) (-2878 (((-3 |#1| "failed") |#1|) 4)) (-3035 (((-3 |#1| "failed") |#1|) 20)) (-2915 (((-3 |#1| "failed") |#1|) 8)) (-2850 (((-3 |#1| "failed") |#1| (-767)) 1)) (-2869 (((-3 |#1| "failed") |#1|) 3)) (-2860 (((-3 |#1| "failed") |#1|) 2)) (-3046 (((-3 |#1| "failed") |#1|) 21)) (-2925 (((-3 |#1| "failed") |#1|) 9)) (-3025 (((-3 |#1| "failed") |#1|) 19)) (-2905 (((-3 |#1| "failed") |#1|) 7)) (-3004 (((-3 |#1| "failed") |#1|) 17)) (-2887 (((-3 |#1| "failed") |#1|) 5)) (-3075 (((-3 |#1| "failed") |#1|) 24)) (-2954 (((-3 |#1| "failed") |#1|) 12)) (-3057 (((-3 |#1| "failed") |#1|) 22)) (-2934 (((-3 |#1| "failed") |#1|) 10)) (-3097 (((-3 |#1| "failed") |#1|) 26)) (-2974 (((-3 |#1| "failed") |#1|) 14)) (-3109 (((-3 |#1| "failed") |#1|) 27)) (-2983 (((-3 |#1| "failed") |#1|) 15)) (-3085 (((-3 |#1| "failed") |#1|) 25)) (-2964 (((-3 |#1| "failed") |#1|) 13)) (-3066 (((-3 |#1| "failed") |#1|) 23)) (-2944 (((-3 |#1| "failed") |#1|) 11)))
(((-979 |#1|) (-140) (-1193)) (T -979))
-((-3874 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2915 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2951 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-4385 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2819 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-4074 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3344 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3565 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3392 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2695 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3240 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2030 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3409 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2002 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3235 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2566 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3137 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2000 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-1732 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3918 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2616 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-4243 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2106 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-1923 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-1739 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3089 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2092 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-767)) (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(-13 (-10 -7 (-15 -2092 ((-3 |t#1| "failed") |t#1| (-767))) (-15 -3089 ((-3 |t#1| "failed") |t#1|)) (-15 -1739 ((-3 |t#1| "failed") |t#1|)) (-15 -1923 ((-3 |t#1| "failed") |t#1|)) (-15 -2106 ((-3 |t#1| "failed") |t#1|)) (-15 -4243 ((-3 |t#1| "failed") |t#1|)) (-15 -2616 ((-3 |t#1| "failed") |t#1|)) (-15 -3918 ((-3 |t#1| "failed") |t#1|)) (-15 -1732 ((-3 |t#1| "failed") |t#1|)) (-15 -2000 ((-3 |t#1| "failed") |t#1|)) (-15 -3137 ((-3 |t#1| "failed") |t#1|)) (-15 -2566 ((-3 |t#1| "failed") |t#1|)) (-15 -3235 ((-3 |t#1| "failed") |t#1|)) (-15 -2002 ((-3 |t#1| "failed") |t#1|)) (-15 -3409 ((-3 |t#1| "failed") |t#1|)) (-15 -2030 ((-3 |t#1| "failed") |t#1|)) (-15 -3240 ((-3 |t#1| "failed") |t#1|)) (-15 -2695 ((-3 |t#1| "failed") |t#1|)) (-15 -3392 ((-3 |t#1| "failed") |t#1|)) (-15 -3565 ((-3 |t#1| "failed") |t#1|)) (-15 -3344 ((-3 |t#1| "failed") |t#1|)) (-15 -4074 ((-3 |t#1| "failed") |t#1|)) (-15 -2819 ((-3 |t#1| "failed") |t#1|)) (-15 -4385 ((-3 |t#1| "failed") |t#1|)) (-15 -2951 ((-3 |t#1| "failed") |t#1|)) (-15 -2915 ((-3 |t#1| "failed") |t#1|)) (-15 -3874 ((-3 |t#1| "failed") |t#1|))))
-((-2386 ((|#4| |#4| (-640 |#3|)) 55) ((|#4| |#4| |#3|) 54)) (-2900 ((|#4| |#4| (-640 |#3|)) 23) ((|#4| |#4| |#3|) 19)) (-2240 ((|#4| (-1 |#4| (-948 |#1|)) |#4|) 30)))
-(((-980 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2900 (|#4| |#4| |#3|)) (-15 -2900 (|#4| |#4| (-640 |#3|))) (-15 -2386 (|#4| |#4| |#3|)) (-15 -2386 (|#4| |#4| (-640 |#3|))) (-15 -2240 (|#4| (-1 |#4| (-948 |#1|)) |#4|))) (-1045) (-789) (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $)) (-15 -2518 ((-3 $ "failed") (-1169))))) (-945 (-948 |#1|) |#2| |#3|)) (T -980))
-((-2240 (*1 *2 *3 *2) (-12 (-5 *3 (-1 *2 (-948 *4))) (-4 *4 (-1045)) (-4 *2 (-945 (-948 *4) *5 *6)) (-4 *5 (-789)) (-4 *6 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $)) (-15 -2518 ((-3 $ "failed") (-1169)))))) (-5 *1 (-980 *4 *5 *6 *2)))) (-2386 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *6)) (-4 *6 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $)) (-15 -2518 ((-3 $ "failed") (-1169)))))) (-4 *4 (-1045)) (-4 *5 (-789)) (-5 *1 (-980 *4 *5 *6 *2)) (-4 *2 (-945 (-948 *4) *5 *6)))) (-2386 (*1 *2 *2 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $)) (-15 -2518 ((-3 $ "failed") (-1169)))))) (-5 *1 (-980 *4 *5 *3 *2)) (-4 *2 (-945 (-948 *4) *5 *3)))) (-2900 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *6)) (-4 *6 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $)) (-15 -2518 ((-3 $ "failed") (-1169)))))) (-4 *4 (-1045)) (-4 *5 (-789)) (-5 *1 (-980 *4 *5 *6 *2)) (-4 *2 (-945 (-948 *4) *5 *6)))) (-2900 (*1 *2 *2 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $)) (-15 -2518 ((-3 $ "failed") (-1169)))))) (-5 *1 (-980 *4 *5 *3 *2)) (-4 *2 (-945 (-948 *4) *5 *3)))))
-(-10 -7 (-15 -2900 (|#4| |#4| |#3|)) (-15 -2900 (|#4| |#4| (-640 |#3|))) (-15 -2386 (|#4| |#4| |#3|)) (-15 -2386 (|#4| |#4| (-640 |#3|))) (-15 -2240 (|#4| (-1 |#4| (-948 |#1|)) |#4|)))
-((-1389 ((|#2| |#3|) 35)) (-3435 (((-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) |#2|) 73)) (-3815 (((-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) 89)))
-(((-981 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3815 ((-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))))) (-15 -3435 ((-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) |#2|)) (-15 -1389 (|#2| |#3|))) (-349) (-1233 |#1|) (-1233 |#2|) (-720 |#2| |#3|)) (T -981))
-((-1389 (*1 *2 *3) (-12 (-4 *3 (-1233 *2)) (-4 *2 (-1233 *4)) (-5 *1 (-981 *4 *2 *3 *5)) (-4 *4 (-349)) (-4 *5 (-720 *2 *3)))) (-3435 (*1 *2 *3) (-12 (-4 *4 (-349)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 *3)) (-5 *2 (-2 (|:| -4315 (-684 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-684 *3)))) (-5 *1 (-981 *4 *3 *5 *6)) (-4 *6 (-720 *3 *5)))) (-3815 (*1 *2) (-12 (-4 *3 (-349)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| -4315 (-684 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-684 *4)))) (-5 *1 (-981 *3 *4 *5 *6)) (-4 *6 (-720 *4 *5)))))
-(-10 -7 (-15 -3815 ((-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))))) (-15 -3435 ((-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) |#2|)) (-15 -1389 (|#2| |#3|)))
-((-3985 (((-983 (-407 (-563)) (-860 |#1|) (-240 |#2| (-767)) (-247 |#1| (-407 (-563)))) (-983 (-407 (-563)) (-860 |#1|) (-240 |#2| (-767)) (-247 |#1| (-407 (-563))))) 68)))
-(((-982 |#1| |#2|) (-10 -7 (-15 -3985 ((-983 (-407 (-563)) (-860 |#1|) (-240 |#2| (-767)) (-247 |#1| (-407 (-563)))) (-983 (-407 (-563)) (-860 |#1|) (-240 |#2| (-767)) (-247 |#1| (-407 (-563))))))) (-640 (-1169)) (-767)) (T -982))
-((-3985 (*1 *2 *2) (-12 (-5 *2 (-983 (-407 (-563)) (-860 *3) (-240 *4 (-767)) (-247 *3 (-407 (-563))))) (-14 *3 (-640 (-1169))) (-14 *4 (-767)) (-5 *1 (-982 *3 *4)))))
-(-10 -7 (-15 -3985 ((-983 (-407 (-563)) (-860 |#1|) (-240 |#2| (-767)) (-247 |#1| (-407 (-563)))) (-983 (-407 (-563)) (-860 |#1|) (-240 |#2| (-767)) (-247 |#1| (-407 (-563)))))))
-((-1677 (((-112) $ $) NIL)) (-2733 (((-3 (-112) "failed") $) 69)) (-2609 (($ $) 36 (-12 (|has| |#1| (-147)) (|has| |#1| (-307))))) (-4138 (($ $ (-3 (-112) "failed")) 70)) (-2422 (($ (-640 |#4|) |#4|) 25)) (-3573 (((-1151) $) NIL)) (-4156 (($ $) 67)) (-1694 (((-1113) $) NIL)) (-3756 (((-112) $) 68)) (-3135 (($) 30)) (-2261 ((|#4| $) 72)) (-2062 (((-640 |#4|) $) 71)) (-1693 (((-858) $) 66)) (-1718 (((-112) $ $) NIL)))
-(((-983 |#1| |#2| |#3| |#4|) (-13 (-1093) (-610 (-858)) (-10 -8 (-15 -3135 ($)) (-15 -2422 ($ (-640 |#4|) |#4|)) (-15 -2733 ((-3 (-112) "failed") $)) (-15 -4138 ($ $ (-3 (-112) "failed"))) (-15 -3756 ((-112) $)) (-15 -2062 ((-640 |#4|) $)) (-15 -2261 (|#4| $)) (-15 -4156 ($ $)) (IF (|has| |#1| (-307)) (IF (|has| |#1| (-147)) (-15 -2609 ($ $)) |%noBranch|) |%noBranch|))) (-452) (-846) (-789) (-945 |#1| |#3| |#2|)) (T -983))
-((-3135 (*1 *1) (-12 (-4 *2 (-452)) (-4 *3 (-846)) (-4 *4 (-789)) (-5 *1 (-983 *2 *3 *4 *5)) (-4 *5 (-945 *2 *4 *3)))) (-2422 (*1 *1 *2 *3) (-12 (-5 *2 (-640 *3)) (-4 *3 (-945 *4 *6 *5)) (-4 *4 (-452)) (-4 *5 (-846)) (-4 *6 (-789)) (-5 *1 (-983 *4 *5 *6 *3)))) (-2733 (*1 *2 *1) (|partial| -12 (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)) (-5 *2 (-112)) (-5 *1 (-983 *3 *4 *5 *6)) (-4 *6 (-945 *3 *5 *4)))) (-4138 (*1 *1 *1 *2) (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)) (-5 *1 (-983 *3 *4 *5 *6)) (-4 *6 (-945 *3 *5 *4)))) (-3756 (*1 *2 *1) (-12 (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)) (-5 *2 (-112)) (-5 *1 (-983 *3 *4 *5 *6)) (-4 *6 (-945 *3 *5 *4)))) (-2062 (*1 *2 *1) (-12 (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)) (-5 *2 (-640 *6)) (-5 *1 (-983 *3 *4 *5 *6)) (-4 *6 (-945 *3 *5 *4)))) (-2261 (*1 *2 *1) (-12 (-4 *2 (-945 *3 *5 *4)) (-5 *1 (-983 *3 *4 *5 *2)) (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)))) (-4156 (*1 *1 *1) (-12 (-4 *2 (-452)) (-4 *3 (-846)) (-4 *4 (-789)) (-5 *1 (-983 *2 *3 *4 *5)) (-4 *5 (-945 *2 *4 *3)))) (-2609 (*1 *1 *1) (-12 (-4 *2 (-147)) (-4 *2 (-307)) (-4 *2 (-452)) (-4 *3 (-846)) (-4 *4 (-789)) (-5 *1 (-983 *2 *3 *4 *5)) (-4 *5 (-945 *2 *4 *3)))))
-(-13 (-1093) (-610 (-858)) (-10 -8 (-15 -3135 ($)) (-15 -2422 ($ (-640 |#4|) |#4|)) (-15 -2733 ((-3 (-112) "failed") $)) (-15 -4138 ($ $ (-3 (-112) "failed"))) (-15 -3756 ((-112) $)) (-15 -2062 ((-640 |#4|) $)) (-15 -2261 (|#4| $)) (-15 -4156 ($ $)) (IF (|has| |#1| (-307)) (IF (|has| |#1| (-147)) (-15 -2609 ($ $)) |%noBranch|) |%noBranch|)))
-((-1918 (((-112) |#5| |#5|) 37)) (-1874 (((-112) |#5| |#5|) 51)) (-3607 (((-112) |#5| (-640 |#5|)) 73) (((-112) |#5| |#5|) 60)) (-2952 (((-112) (-640 |#4|) (-640 |#4|)) 57)) (-3150 (((-112) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) 62)) (-3044 (((-1262)) 33)) (-4387 (((-1262) (-1151) (-1151) (-1151)) 29)) (-3965 (((-640 |#5|) (-640 |#5|)) 80)) (-1530 (((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)))) 78)) (-1809 (((-640 (-2 (|:| -1420 (-640 |#4|)) (|:| -2059 |#5|) (|:| |ineq| (-640 |#4|)))) (-640 |#4|) (-640 |#5|) (-112) (-112)) 100)) (-3638 (((-112) |#5| |#5|) 46)) (-3506 (((-3 (-112) "failed") |#5| |#5|) 70)) (-3970 (((-112) (-640 |#4|) (-640 |#4|)) 56)) (-4342 (((-112) (-640 |#4|) (-640 |#4|)) 58)) (-3009 (((-112) (-640 |#4|) (-640 |#4|)) 59)) (-1737 (((-3 (-2 (|:| -1420 (-640 |#4|)) (|:| -2059 |#5|) (|:| |ineq| (-640 |#4|))) "failed") (-640 |#4|) |#5| (-640 |#4|) (-112) (-112) (-112) (-112) (-112)) 96)) (-1846 (((-640 |#5|) (-640 |#5|)) 42)))
-(((-984 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4387 ((-1262) (-1151) (-1151) (-1151))) (-15 -3044 ((-1262))) (-15 -1918 ((-112) |#5| |#5|)) (-15 -1846 ((-640 |#5|) (-640 |#5|))) (-15 -3638 ((-112) |#5| |#5|)) (-15 -1874 ((-112) |#5| |#5|)) (-15 -2952 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -3970 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -4342 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -3009 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -3506 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3607 ((-112) |#5| |#5|)) (-15 -3607 ((-112) |#5| (-640 |#5|))) (-15 -3965 ((-640 |#5|) (-640 |#5|))) (-15 -3150 ((-112) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)))) (-15 -1530 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) (-15 -1809 ((-640 (-2 (|:| -1420 (-640 |#4|)) (|:| -2059 |#5|) (|:| |ineq| (-640 |#4|)))) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -1737 ((-3 (-2 (|:| -1420 (-640 |#4|)) (|:| -2059 |#5|) (|:| |ineq| (-640 |#4|))) "failed") (-640 |#4|) |#5| (-640 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1065 |#1| |#2| |#3| |#4|)) (T -984))
-((-1737 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *9 (-1059 *6 *7 *8)) (-5 *2 (-2 (|:| -1420 (-640 *9)) (|:| -2059 *4) (|:| |ineq| (-640 *9)))) (-5 *1 (-984 *6 *7 *8 *9 *4)) (-5 *3 (-640 *9)) (-4 *4 (-1065 *6 *7 *8 *9)))) (-1809 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-640 *10)) (-5 *5 (-112)) (-4 *10 (-1065 *6 *7 *8 *9)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *9 (-1059 *6 *7 *8)) (-5 *2 (-640 (-2 (|:| -1420 (-640 *9)) (|:| -2059 *10) (|:| |ineq| (-640 *9))))) (-5 *1 (-984 *6 *7 *8 *9 *10)) (-5 *3 (-640 *9)))) (-1530 (*1 *2 *2) (-12 (-5 *2 (-640 (-2 (|:| |val| (-640 *6)) (|:| -2059 *7)))) (-4 *6 (-1059 *3 *4 *5)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-984 *3 *4 *5 *6 *7)))) (-3150 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2059 *8))) (-4 *7 (-1059 *4 *5 *6)) (-4 *8 (-1065 *4 *5 *6 *7)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *8)))) (-3965 (*1 *2 *2) (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *1 (-984 *3 *4 *5 *6 *7)))) (-3607 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *3)) (-4 *3 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-984 *5 *6 *7 *8 *3)))) (-3607 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-3506 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-3009 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-4342 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-3970 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-2952 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-1874 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-3638 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-1846 (*1 *2 *2) (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *1 (-984 *3 *4 *5 *6 *7)))) (-1918 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-3044 (*1 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262)) (-5 *1 (-984 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))) (-4387 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262)) (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
-(-10 -7 (-15 -4387 ((-1262) (-1151) (-1151) (-1151))) (-15 -3044 ((-1262))) (-15 -1918 ((-112) |#5| |#5|)) (-15 -1846 ((-640 |#5|) (-640 |#5|))) (-15 -3638 ((-112) |#5| |#5|)) (-15 -1874 ((-112) |#5| |#5|)) (-15 -2952 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -3970 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -4342 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -3009 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -3506 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3607 ((-112) |#5| |#5|)) (-15 -3607 ((-112) |#5| (-640 |#5|))) (-15 -3965 ((-640 |#5|) (-640 |#5|))) (-15 -3150 ((-112) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)))) (-15 -1530 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) (-15 -1809 ((-640 (-2 (|:| -1420 (-640 |#4|)) (|:| -2059 |#5|) (|:| |ineq| (-640 |#4|)))) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -1737 ((-3 (-2 (|:| -1420 (-640 |#4|)) (|:| -2059 |#5|) (|:| |ineq| (-640 |#4|))) "failed") (-640 |#4|) |#5| (-640 |#4|) (-112) (-112) (-112) (-112) (-112))))
-((-2518 (((-1169) $) 15)) (-2619 (((-1151) $) 16)) (-2378 (($ (-1169) (-1151)) 14)) (-1693 (((-858) $) 13)))
-(((-985) (-13 (-610 (-858)) (-10 -8 (-15 -2378 ($ (-1169) (-1151))) (-15 -2518 ((-1169) $)) (-15 -2619 ((-1151) $))))) (T -985))
-((-2378 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1151)) (-5 *1 (-985)))) (-2518 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-985)))) (-2619 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-985)))))
-(-13 (-610 (-858)) (-10 -8 (-15 -2378 ($ (-1169) (-1151))) (-15 -2518 ((-1169) $)) (-15 -2619 ((-1151) $))))
-((-2240 ((|#4| (-1 |#2| |#1|) |#3|) 14)))
-(((-986 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2240 (|#4| (-1 |#2| |#1|) |#3|))) (-555) (-555) (-988 |#1|) (-988 |#2|)) (T -986))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-555)) (-4 *6 (-555)) (-4 *2 (-988 *6)) (-5 *1 (-986 *5 *6 *4 *2)) (-4 *4 (-988 *5)))))
-(-10 -7 (-15 -2240 (|#4| (-1 |#2| |#1|) |#3|)))
-((-2131 (((-3 |#2| "failed") $) NIL) (((-3 (-1169) "failed") $) 65) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 (-563) "failed") $) 95)) (-2058 ((|#2| $) NIL) (((-1169) $) 60) (((-407 (-563)) $) NIL) (((-563) $) 92)) (-2950 (((-684 (-563)) (-684 $)) NIL) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) 112) (((-684 |#2|) (-684 $)) 28)) (-1691 (($) 98)) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 75) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 84)) (-2711 (($ $) 10)) (-2408 (((-3 $ "failed") $) 20)) (-2240 (($ (-1 |#2| |#2|) $) 22)) (-2523 (($) 16)) (-4215 (($ $) 54)) (-4202 (($ $) NIL) (($ $ (-767)) NIL) (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) 36)) (-1801 (($ $) 12)) (-2220 (((-888 (-563)) $) 70) (((-888 (-379)) $) 79) (((-536) $) 40) (((-379) $) 44) (((-225) $) 47)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) 90) (($ |#2|) NIL) (($ (-1169)) 57)) (-1675 (((-767)) 31)) (-1744 (((-112) $ $) 50)))
-(((-987 |#1| |#2|) (-10 -8 (-15 -1744 ((-112) |#1| |#1|)) (-15 -2523 (|#1|)) (-15 -2408 ((-3 |#1| "failed") |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2220 ((-225) |#1|)) (-15 -2220 ((-379) |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -1693 (|#1| (-1169))) (-15 -2131 ((-3 (-1169) "failed") |#1|)) (-15 -2058 ((-1169) |#1|)) (-15 -1691 (|#1|)) (-15 -4215 (|#1| |#1|)) (-15 -1801 (|#1| |#1|)) (-15 -2711 (|#1| |#1|)) (-15 -3787 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -3787 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -2220 ((-888 (-379)) |#1|)) (-15 -2220 ((-888 (-563)) |#1|)) (-15 -2950 ((-684 |#2|) (-684 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-684 (-563)) (-684 |#1|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -1693 (|#1| |#2|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -1693 (|#1| |#1|)) (-15 -1675 ((-767))) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|))) (-988 |#2|) (-555)) (T -987))
-((-1675 (*1 *2) (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-987 *3 *4)) (-4 *3 (-988 *4)))))
-(-10 -8 (-15 -1744 ((-112) |#1| |#1|)) (-15 -2523 (|#1|)) (-15 -2408 ((-3 |#1| "failed") |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2220 ((-225) |#1|)) (-15 -2220 ((-379) |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -1693 (|#1| (-1169))) (-15 -2131 ((-3 (-1169) "failed") |#1|)) (-15 -2058 ((-1169) |#1|)) (-15 -1691 (|#1|)) (-15 -4215 (|#1| |#1|)) (-15 -1801 (|#1| |#1|)) (-15 -2711 (|#1| |#1|)) (-15 -3787 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -3787 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -2220 ((-888 (-379)) |#1|)) (-15 -2220 ((-888 (-563)) |#1|)) (-15 -2950 ((-684 |#2|) (-684 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-684 (-563)) (-684 |#1|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -1693 (|#1| |#2|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -1693 (|#1| |#1|)) (-15 -1675 ((-767))) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-3401 ((|#1| $) 138 (|has| |#1| (-307)))) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-1495 (((-3 $ "failed") $ $) 19)) (-2424 (((-418 (-1165 $)) (-1165 $)) 129 (|has| |#1| (-905)))) (-4335 (($ $) 74)) (-3205 (((-418 $) $) 73)) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 132 (|has| |#1| (-905)))) (-1919 (((-112) $ $) 60)) (-1857 (((-563) $) 119 (|has| |#1| (-816)))) (-4239 (($) 17 T CONST)) (-2131 (((-3 |#1| "failed") $) 176) (((-3 (-1169) "failed") $) 127 (|has| |#1| (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) 110 (|has| |#1| (-1034 (-563)))) (((-3 (-563) "failed") $) 108 (|has| |#1| (-1034 (-563))))) (-2058 ((|#1| $) 177) (((-1169) $) 128 (|has| |#1| (-1034 (-1169)))) (((-407 (-563)) $) 111 (|has| |#1| (-1034 (-563)))) (((-563) $) 109 (|has| |#1| (-1034 (-563))))) (-3090 (($ $ $) 56)) (-2950 (((-684 (-563)) (-684 $)) 151 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 150 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 149) (((-684 |#1|) (-684 $)) 148)) (-3400 (((-3 $ "failed") $) 33)) (-1691 (($) 136 (|has| |#1| (-545)))) (-3050 (($ $ $) 57)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 52)) (-2468 (((-112) $) 72)) (-3101 (((-112) $) 121 (|has| |#1| (-816)))) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 145 (|has| |#1| (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 144 (|has| |#1| (-882 (-379))))) (-3827 (((-112) $) 31)) (-2711 (($ $) 140)) (-2143 ((|#1| $) 142)) (-2408 (((-3 $ "failed") $) 107 (|has| |#1| (-1144)))) (-1419 (((-112) $) 120 (|has| |#1| (-816)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3084 (($ $ $) 117 (|has| |#1| (-846)))) (-1777 (($ $ $) 116 (|has| |#1| (-846)))) (-2240 (($ (-1 |#1| |#1|) $) 168)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-2688 (($ $) 71)) (-2523 (($) 106 (|has| |#1| (-1144)) CONST)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-4215 (($ $) 137 (|has| |#1| (-307)))) (-1583 ((|#1| $) 134 (|has| |#1| (-545)))) (-1876 (((-418 (-1165 $)) (-1165 $)) 131 (|has| |#1| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) 130 (|has| |#1| (-905)))) (-2174 (((-418 $) $) 75)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3008 (((-3 $ "failed") $ $) 43)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-1540 (($ $ (-640 |#1|) (-640 |#1|)) 174 (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) 173 (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) 172 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) 171 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) 170 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) 169 (|has| |#1| (-514 (-1169) |#1|)))) (-2628 (((-767) $) 59)) (-2309 (($ $ |#1|) 175 (|has| |#1| (-286 |#1| |#1|)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 58)) (-4202 (($ $) 167 (|has| |#1| (-233))) (($ $ (-767)) 165 (|has| |#1| (-233))) (($ $ (-1169)) 163 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 162 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 161 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 160 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 153) (($ $ (-1 |#1| |#1|)) 152)) (-1801 (($ $) 139)) (-2154 ((|#1| $) 141)) (-2220 (((-888 (-563)) $) 147 (|has| |#1| (-611 (-888 (-563))))) (((-888 (-379)) $) 146 (|has| |#1| (-611 (-888 (-379))))) (((-536) $) 124 (|has| |#1| (-611 (-536)))) (((-379) $) 123 (|has| |#1| (-1018))) (((-225) $) 122 (|has| |#1| (-1018)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) 133 (-2190 (|has| $ (-145)) (|has| |#1| (-905))))) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67) (($ |#1|) 180) (($ (-1169)) 126 (|has| |#1| (-1034 (-1169))))) (-2779 (((-3 $ "failed") $) 125 (-4032 (|has| |#1| (-145)) (-2190 (|has| $ (-145)) (|has| |#1| (-905)))))) (-1675 (((-767)) 28)) (-4194 ((|#1| $) 135 (|has| |#1| (-545)))) (-2126 (((-112) $ $) 40)) (-2509 (($ $) 118 (|has| |#1| (-816)))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $) 166 (|has| |#1| (-233))) (($ $ (-767)) 164 (|has| |#1| (-233))) (($ $ (-1169)) 159 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 158 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 157 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 156 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 155) (($ $ (-1 |#1| |#1|)) 154)) (-1778 (((-112) $ $) 114 (|has| |#1| (-846)))) (-1756 (((-112) $ $) 113 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 115 (|has| |#1| (-846)))) (-1744 (((-112) $ $) 112 (|has| |#1| (-846)))) (-1837 (($ $ $) 66) (($ |#1| |#1|) 143)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68) (($ |#1| $) 179) (($ $ |#1|) 178)))
+((-3109 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3097 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3085 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3075 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3066 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3057 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3046 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3035 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3025 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3015 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-3004 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2993 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2983 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2974 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2964 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2954 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2944 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2934 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2925 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2915 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2905 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2896 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2887 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2878 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2869 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2860 (*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))) (-2850 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-767)) (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(-13 (-10 -7 (-15 -2850 ((-3 |t#1| "failed") |t#1| (-767))) (-15 -2860 ((-3 |t#1| "failed") |t#1|)) (-15 -2869 ((-3 |t#1| "failed") |t#1|)) (-15 -2878 ((-3 |t#1| "failed") |t#1|)) (-15 -2887 ((-3 |t#1| "failed") |t#1|)) (-15 -2896 ((-3 |t#1| "failed") |t#1|)) (-15 -2905 ((-3 |t#1| "failed") |t#1|)) (-15 -2915 ((-3 |t#1| "failed") |t#1|)) (-15 -2925 ((-3 |t#1| "failed") |t#1|)) (-15 -2934 ((-3 |t#1| "failed") |t#1|)) (-15 -2944 ((-3 |t#1| "failed") |t#1|)) (-15 -2954 ((-3 |t#1| "failed") |t#1|)) (-15 -2964 ((-3 |t#1| "failed") |t#1|)) (-15 -2974 ((-3 |t#1| "failed") |t#1|)) (-15 -2983 ((-3 |t#1| "failed") |t#1|)) (-15 -2993 ((-3 |t#1| "failed") |t#1|)) (-15 -3004 ((-3 |t#1| "failed") |t#1|)) (-15 -3015 ((-3 |t#1| "failed") |t#1|)) (-15 -3025 ((-3 |t#1| "failed") |t#1|)) (-15 -3035 ((-3 |t#1| "failed") |t#1|)) (-15 -3046 ((-3 |t#1| "failed") |t#1|)) (-15 -3057 ((-3 |t#1| "failed") |t#1|)) (-15 -3066 ((-3 |t#1| "failed") |t#1|)) (-15 -3075 ((-3 |t#1| "failed") |t#1|)) (-15 -3085 ((-3 |t#1| "failed") |t#1|)) (-15 -3097 ((-3 |t#1| "failed") |t#1|)) (-15 -3109 ((-3 |t#1| "failed") |t#1|))))
+((-3131 ((|#4| |#4| (-640 |#3|)) 55) ((|#4| |#4| |#3|) 54)) (-3120 ((|#4| |#4| (-640 |#3|)) 23) ((|#4| |#4| |#3|) 19)) (-2238 ((|#4| (-1 |#4| (-948 |#1|)) |#4|) 30)))
+(((-980 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3120 (|#4| |#4| |#3|)) (-15 -3120 (|#4| |#4| (-640 |#3|))) (-15 -3131 (|#4| |#4| |#3|)) (-15 -3131 (|#4| |#4| (-640 |#3|))) (-15 -2238 (|#4| (-1 |#4| (-948 |#1|)) |#4|))) (-1045) (-789) (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $)) (-15 -2517 ((-3 $ "failed") (-1169))))) (-945 (-948 |#1|) |#2| |#3|)) (T -980))
+((-2238 (*1 *2 *3 *2) (-12 (-5 *3 (-1 *2 (-948 *4))) (-4 *4 (-1045)) (-4 *2 (-945 (-948 *4) *5 *6)) (-4 *5 (-789)) (-4 *6 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $)) (-15 -2517 ((-3 $ "failed") (-1169)))))) (-5 *1 (-980 *4 *5 *6 *2)))) (-3131 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *6)) (-4 *6 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $)) (-15 -2517 ((-3 $ "failed") (-1169)))))) (-4 *4 (-1045)) (-4 *5 (-789)) (-5 *1 (-980 *4 *5 *6 *2)) (-4 *2 (-945 (-948 *4) *5 *6)))) (-3131 (*1 *2 *2 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $)) (-15 -2517 ((-3 $ "failed") (-1169)))))) (-5 *1 (-980 *4 *5 *3 *2)) (-4 *2 (-945 (-948 *4) *5 *3)))) (-3120 (*1 *2 *2 *3) (-12 (-5 *3 (-640 *6)) (-4 *6 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $)) (-15 -2517 ((-3 $ "failed") (-1169)))))) (-4 *4 (-1045)) (-4 *5 (-789)) (-5 *1 (-980 *4 *5 *6 *2)) (-4 *2 (-945 (-948 *4) *5 *6)))) (-3120 (*1 *2 *2 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $)) (-15 -2517 ((-3 $ "failed") (-1169)))))) (-5 *1 (-980 *4 *5 *3 *2)) (-4 *2 (-945 (-948 *4) *5 *3)))))
+(-10 -7 (-15 -3120 (|#4| |#4| |#3|)) (-15 -3120 (|#4| |#4| (-640 |#3|))) (-15 -3131 (|#4| |#4| |#3|)) (-15 -3131 (|#4| |#4| (-640 |#3|))) (-15 -2238 (|#4| (-1 |#4| (-948 |#1|)) |#4|)))
+((-3141 ((|#2| |#3|) 35)) (-3619 (((-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) |#2|) 73)) (-3608 (((-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) 89)))
+(((-981 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3608 ((-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))))) (-15 -3619 ((-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) |#2|)) (-15 -3141 (|#2| |#3|))) (-349) (-1233 |#1|) (-1233 |#2|) (-720 |#2| |#3|)) (T -981))
+((-3141 (*1 *2 *3) (-12 (-4 *3 (-1233 *2)) (-4 *2 (-1233 *4)) (-5 *1 (-981 *4 *2 *3 *5)) (-4 *4 (-349)) (-4 *5 (-720 *2 *3)))) (-3619 (*1 *2 *3) (-12 (-4 *4 (-349)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 *3)) (-5 *2 (-2 (|:| -4013 (-684 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-684 *3)))) (-5 *1 (-981 *4 *3 *5 *6)) (-4 *6 (-720 *3 *5)))) (-3608 (*1 *2) (-12 (-4 *3 (-349)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| -4013 (-684 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-684 *4)))) (-5 *1 (-981 *3 *4 *5 *6)) (-4 *6 (-720 *4 *5)))))
+(-10 -7 (-15 -3608 ((-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))))) (-15 -3619 ((-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) |#2|)) (-15 -3141 (|#2| |#3|)))
+((-2022 (((-983 (-407 (-563)) (-860 |#1|) (-240 |#2| (-767)) (-247 |#1| (-407 (-563)))) (-983 (-407 (-563)) (-860 |#1|) (-240 |#2| (-767)) (-247 |#1| (-407 (-563))))) 68)))
+(((-982 |#1| |#2|) (-10 -7 (-15 -2022 ((-983 (-407 (-563)) (-860 |#1|) (-240 |#2| (-767)) (-247 |#1| (-407 (-563)))) (-983 (-407 (-563)) (-860 |#1|) (-240 |#2| (-767)) (-247 |#1| (-407 (-563))))))) (-640 (-1169)) (-767)) (T -982))
+((-2022 (*1 *2 *2) (-12 (-5 *2 (-983 (-407 (-563)) (-860 *3) (-240 *4 (-767)) (-247 *3 (-407 (-563))))) (-14 *3 (-640 (-1169))) (-14 *4 (-767)) (-5 *1 (-982 *3 *4)))))
+(-10 -7 (-15 -2022 ((-983 (-407 (-563)) (-860 |#1|) (-240 |#2| (-767)) (-247 |#1| (-407 (-563)))) (-983 (-407 (-563)) (-860 |#1|) (-240 |#2| (-767)) (-247 |#1| (-407 (-563)))))))
+((-1677 (((-112) $ $) NIL)) (-2733 (((-3 (-112) "failed") $) 69)) (-2966 (($ $) 36 (-12 (|has| |#1| (-147)) (|has| |#1| (-307))))) (-3176 (($ $ (-3 (-112) "failed")) 70)) (-3185 (($ (-640 |#4|) |#4|) 25)) (-3854 (((-1151) $) NIL)) (-3150 (($ $) 67)) (-1693 (((-1113) $) NIL)) (-1665 (((-112) $) 68)) (-3445 (($) 30)) (-3159 ((|#4| $) 72)) (-3166 (((-640 |#4|) $) 71)) (-1692 (((-858) $) 66)) (-1718 (((-112) $ $) NIL)))
+(((-983 |#1| |#2| |#3| |#4|) (-13 (-1093) (-610 (-858)) (-10 -8 (-15 -3445 ($)) (-15 -3185 ($ (-640 |#4|) |#4|)) (-15 -2733 ((-3 (-112) "failed") $)) (-15 -3176 ($ $ (-3 (-112) "failed"))) (-15 -1665 ((-112) $)) (-15 -3166 ((-640 |#4|) $)) (-15 -3159 (|#4| $)) (-15 -3150 ($ $)) (IF (|has| |#1| (-307)) (IF (|has| |#1| (-147)) (-15 -2966 ($ $)) |%noBranch|) |%noBranch|))) (-452) (-846) (-789) (-945 |#1| |#3| |#2|)) (T -983))
+((-3445 (*1 *1) (-12 (-4 *2 (-452)) (-4 *3 (-846)) (-4 *4 (-789)) (-5 *1 (-983 *2 *3 *4 *5)) (-4 *5 (-945 *2 *4 *3)))) (-3185 (*1 *1 *2 *3) (-12 (-5 *2 (-640 *3)) (-4 *3 (-945 *4 *6 *5)) (-4 *4 (-452)) (-4 *5 (-846)) (-4 *6 (-789)) (-5 *1 (-983 *4 *5 *6 *3)))) (-2733 (*1 *2 *1) (|partial| -12 (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)) (-5 *2 (-112)) (-5 *1 (-983 *3 *4 *5 *6)) (-4 *6 (-945 *3 *5 *4)))) (-3176 (*1 *1 *1 *2) (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)) (-5 *1 (-983 *3 *4 *5 *6)) (-4 *6 (-945 *3 *5 *4)))) (-1665 (*1 *2 *1) (-12 (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)) (-5 *2 (-112)) (-5 *1 (-983 *3 *4 *5 *6)) (-4 *6 (-945 *3 *5 *4)))) (-3166 (*1 *2 *1) (-12 (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)) (-5 *2 (-640 *6)) (-5 *1 (-983 *3 *4 *5 *6)) (-4 *6 (-945 *3 *5 *4)))) (-3159 (*1 *2 *1) (-12 (-4 *2 (-945 *3 *5 *4)) (-5 *1 (-983 *3 *4 *5 *2)) (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)))) (-3150 (*1 *1 *1) (-12 (-4 *2 (-452)) (-4 *3 (-846)) (-4 *4 (-789)) (-5 *1 (-983 *2 *3 *4 *5)) (-4 *5 (-945 *2 *4 *3)))) (-2966 (*1 *1 *1) (-12 (-4 *2 (-147)) (-4 *2 (-307)) (-4 *2 (-452)) (-4 *3 (-846)) (-4 *4 (-789)) (-5 *1 (-983 *2 *3 *4 *5)) (-4 *5 (-945 *2 *4 *3)))))
+(-13 (-1093) (-610 (-858)) (-10 -8 (-15 -3445 ($)) (-15 -3185 ($ (-640 |#4|) |#4|)) (-15 -2733 ((-3 (-112) "failed") $)) (-15 -3176 ($ $ (-3 (-112) "failed"))) (-15 -1665 ((-112) $)) (-15 -3166 ((-640 |#4|) $)) (-15 -3159 (|#4| $)) (-15 -3150 ($ $)) (IF (|has| |#1| (-307)) (IF (|has| |#1| (-147)) (-15 -2966 ($ $)) |%noBranch|) |%noBranch|)))
+((-2836 (((-112) |#5| |#5|) 37)) (-2866 (((-112) |#5| |#5|) 51)) (-2912 (((-112) |#5| (-640 |#5|)) 73) (((-112) |#5| |#5|) 60)) (-2875 (((-112) (-640 |#4|) (-640 |#4|)) 57)) (-2931 (((-112) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) 62)) (-2824 (((-1262)) 33)) (-2812 (((-1262) (-1151) (-1151) (-1151)) 29)) (-2921 (((-640 |#5|) (-640 |#5|)) 80)) (-2940 (((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)))) 78)) (-2950 (((-640 (-2 (|:| -1420 (-640 |#4|)) (|:| -2058 |#5|) (|:| |ineq| (-640 |#4|)))) (-640 |#4|) (-640 |#5|) (-112) (-112)) 100)) (-2856 (((-112) |#5| |#5|) 46)) (-2902 (((-3 (-112) "failed") |#5| |#5|) 70)) (-2884 (((-112) (-640 |#4|) (-640 |#4|)) 56)) (-2893 (((-112) (-640 |#4|) (-640 |#4|)) 58)) (-2319 (((-112) (-640 |#4|) (-640 |#4|)) 59)) (-2961 (((-3 (-2 (|:| -1420 (-640 |#4|)) (|:| -2058 |#5|) (|:| |ineq| (-640 |#4|))) "failed") (-640 |#4|) |#5| (-640 |#4|) (-112) (-112) (-112) (-112) (-112)) 96)) (-2847 (((-640 |#5|) (-640 |#5|)) 42)))
+(((-984 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2812 ((-1262) (-1151) (-1151) (-1151))) (-15 -2824 ((-1262))) (-15 -2836 ((-112) |#5| |#5|)) (-15 -2847 ((-640 |#5|) (-640 |#5|))) (-15 -2856 ((-112) |#5| |#5|)) (-15 -2866 ((-112) |#5| |#5|)) (-15 -2875 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2884 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2893 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2319 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2902 ((-3 (-112) "failed") |#5| |#5|)) (-15 -2912 ((-112) |#5| |#5|)) (-15 -2912 ((-112) |#5| (-640 |#5|))) (-15 -2921 ((-640 |#5|) (-640 |#5|))) (-15 -2931 ((-112) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)))) (-15 -2940 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) (-15 -2950 ((-640 (-2 (|:| -1420 (-640 |#4|)) (|:| -2058 |#5|) (|:| |ineq| (-640 |#4|)))) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -2961 ((-3 (-2 (|:| -1420 (-640 |#4|)) (|:| -2058 |#5|) (|:| |ineq| (-640 |#4|))) "failed") (-640 |#4|) |#5| (-640 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1065 |#1| |#2| |#3| |#4|)) (T -984))
+((-2961 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *9 (-1059 *6 *7 *8)) (-5 *2 (-2 (|:| -1420 (-640 *9)) (|:| -2058 *4) (|:| |ineq| (-640 *9)))) (-5 *1 (-984 *6 *7 *8 *9 *4)) (-5 *3 (-640 *9)) (-4 *4 (-1065 *6 *7 *8 *9)))) (-2950 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-640 *10)) (-5 *5 (-112)) (-4 *10 (-1065 *6 *7 *8 *9)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *9 (-1059 *6 *7 *8)) (-5 *2 (-640 (-2 (|:| -1420 (-640 *9)) (|:| -2058 *10) (|:| |ineq| (-640 *9))))) (-5 *1 (-984 *6 *7 *8 *9 *10)) (-5 *3 (-640 *9)))) (-2940 (*1 *2 *2) (-12 (-5 *2 (-640 (-2 (|:| |val| (-640 *6)) (|:| -2058 *7)))) (-4 *6 (-1059 *3 *4 *5)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-984 *3 *4 *5 *6 *7)))) (-2931 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2058 *8))) (-4 *7 (-1059 *4 *5 *6)) (-4 *8 (-1065 *4 *5 *6 *7)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *8)))) (-2921 (*1 *2 *2) (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *1 (-984 *3 *4 *5 *6 *7)))) (-2912 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *3)) (-4 *3 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-984 *5 *6 *7 *8 *3)))) (-2912 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-2902 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-2319 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-2893 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-2884 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-2875 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-2866 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-2856 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-2847 (*1 *2 *2) (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *1 (-984 *3 *4 *5 *6 *7)))) (-2836 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-2824 (*1 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262)) (-5 *1 (-984 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))) (-2812 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262)) (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2812 ((-1262) (-1151) (-1151) (-1151))) (-15 -2824 ((-1262))) (-15 -2836 ((-112) |#5| |#5|)) (-15 -2847 ((-640 |#5|) (-640 |#5|))) (-15 -2856 ((-112) |#5| |#5|)) (-15 -2866 ((-112) |#5| |#5|)) (-15 -2875 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2884 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2893 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2319 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2902 ((-3 (-112) "failed") |#5| |#5|)) (-15 -2912 ((-112) |#5| |#5|)) (-15 -2912 ((-112) |#5| (-640 |#5|))) (-15 -2921 ((-640 |#5|) (-640 |#5|))) (-15 -2931 ((-112) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)))) (-15 -2940 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) (-15 -2950 ((-640 (-2 (|:| -1420 (-640 |#4|)) (|:| -2058 |#5|) (|:| |ineq| (-640 |#4|)))) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -2961 ((-3 (-2 (|:| -1420 (-640 |#4|)) (|:| -2058 |#5|) (|:| |ineq| (-640 |#4|))) "failed") (-640 |#4|) |#5| (-640 |#4|) (-112) (-112) (-112) (-112) (-112))))
+((-2517 (((-1169) $) 15)) (-2618 (((-1151) $) 16)) (-2377 (($ (-1169) (-1151)) 14)) (-1692 (((-858) $) 13)))
+(((-985) (-13 (-610 (-858)) (-10 -8 (-15 -2377 ($ (-1169) (-1151))) (-15 -2517 ((-1169) $)) (-15 -2618 ((-1151) $))))) (T -985))
+((-2377 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1151)) (-5 *1 (-985)))) (-2517 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-985)))) (-2618 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-985)))))
+(-13 (-610 (-858)) (-10 -8 (-15 -2377 ($ (-1169) (-1151))) (-15 -2517 ((-1169) $)) (-15 -2618 ((-1151) $))))
+((-2238 ((|#4| (-1 |#2| |#1|) |#3|) 14)))
+(((-986 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2238 (|#4| (-1 |#2| |#1|) |#3|))) (-555) (-555) (-988 |#1|) (-988 |#2|)) (T -986))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-555)) (-4 *6 (-555)) (-4 *2 (-988 *6)) (-5 *1 (-986 *5 *6 *4 *2)) (-4 *4 (-988 *5)))))
+(-10 -7 (-15 -2238 (|#4| (-1 |#2| |#1|) |#3|)))
+((-2130 (((-3 |#2| "failed") $) NIL) (((-3 (-1169) "failed") $) 65) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 (-563) "failed") $) 95)) (-2057 ((|#2| $) NIL) (((-1169) $) 60) (((-407 (-563)) $) NIL) (((-563) $) 92)) (-1476 (((-684 (-563)) (-684 $)) NIL) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) 112) (((-684 |#2|) (-684 $)) 28)) (-1690 (($) 98)) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 75) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 84)) (-2043 (($ $) 10)) (-1983 (((-3 $ "failed") $) 20)) (-2238 (($ (-1 |#2| |#2|) $) 22)) (-2522 (($) 16)) (-3935 (($ $) 54)) (-4203 (($ $) NIL) (($ $ (-767)) NIL) (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) 36)) (-2033 (($ $) 12)) (-2219 (((-888 (-563)) $) 70) (((-888 (-379)) $) 79) (((-536) $) 40) (((-379) $) 44) (((-225) $) 47)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) 90) (($ |#2|) NIL) (($ (-1169)) 57)) (-3914 (((-767)) 31)) (-1743 (((-112) $ $) 50)))
+(((-987 |#1| |#2|) (-10 -8 (-15 -1743 ((-112) |#1| |#1|)) (-15 -2522 (|#1|)) (-15 -1983 ((-3 |#1| "failed") |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2219 ((-225) |#1|)) (-15 -2219 ((-379) |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -1692 (|#1| (-1169))) (-15 -2130 ((-3 (-1169) "failed") |#1|)) (-15 -2057 ((-1169) |#1|)) (-15 -1690 (|#1|)) (-15 -3935 (|#1| |#1|)) (-15 -2033 (|#1| |#1|)) (-15 -2043 (|#1| |#1|)) (-15 -1812 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -1812 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -2219 ((-888 (-379)) |#1|)) (-15 -2219 ((-888 (-563)) |#1|)) (-15 -1476 ((-684 |#2|) (-684 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-684 (-563)) (-684 |#1|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -1692 (|#1| |#2|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -1692 (|#1| |#1|)) (-15 -3914 ((-767))) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|))) (-988 |#2|) (-555)) (T -987))
+((-3914 (*1 *2) (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-987 *3 *4)) (-4 *3 (-988 *4)))))
+(-10 -8 (-15 -1743 ((-112) |#1| |#1|)) (-15 -2522 (|#1|)) (-15 -1983 ((-3 |#1| "failed") |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2219 ((-225) |#1|)) (-15 -2219 ((-379) |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -1692 (|#1| (-1169))) (-15 -2130 ((-3 (-1169) "failed") |#1|)) (-15 -2057 ((-1169) |#1|)) (-15 -1690 (|#1|)) (-15 -3935 (|#1| |#1|)) (-15 -2033 (|#1| |#1|)) (-15 -2043 (|#1| |#1|)) (-15 -1812 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -1812 ((-885 (-563) |#1|) |#1| (-888 (-563)) (-885 (-563) |#1|))) (-15 -2219 ((-888 (-379)) |#1|)) (-15 -2219 ((-888 (-563)) |#1|)) (-15 -1476 ((-684 |#2|) (-684 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-684 (-563)) (-684 |#1|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -1692 (|#1| |#2|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -1692 (|#1| |#1|)) (-15 -3914 ((-767))) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3944 ((|#1| $) 138 (|has| |#1| (-307)))) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-3905 (((-3 $ "failed") $ $) 19)) (-2093 (((-418 (-1165 $)) (-1165 $)) 129 (|has| |#1| (-905)))) (-1798 (($ $) 74)) (-2802 (((-418 $) $) 73)) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 132 (|has| |#1| (-905)))) (-2003 (((-112) $ $) 60)) (-2807 (((-563) $) 119 (|has| |#1| (-816)))) (-2569 (($) 17 T CONST)) (-2130 (((-3 |#1| "failed") $) 176) (((-3 (-1169) "failed") $) 127 (|has| |#1| (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) 110 (|has| |#1| (-1034 (-563)))) (((-3 (-563) "failed") $) 108 (|has| |#1| (-1034 (-563))))) (-2057 ((|#1| $) 177) (((-1169) $) 128 (|has| |#1| (-1034 (-1169)))) (((-407 (-563)) $) 111 (|has| |#1| (-1034 (-563)))) (((-563) $) 109 (|has| |#1| (-1034 (-563))))) (-3094 (($ $ $) 56)) (-1476 (((-684 (-563)) (-684 $)) 151 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 150 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 149) (((-684 |#1|) (-684 $)) 148)) (-3951 (((-3 $ "failed") $) 33)) (-1690 (($) 136 (|has| |#1| (-545)))) (-3054 (($ $ $) 57)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 52)) (-2560 (((-112) $) 72)) (-3414 (((-112) $) 121 (|has| |#1| (-816)))) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 145 (|has| |#1| (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 144 (|has| |#1| (-882 (-379))))) (-3401 (((-112) $) 31)) (-2043 (($ $) 140)) (-2143 ((|#1| $) 142)) (-1983 (((-3 $ "failed") $) 107 (|has| |#1| (-1144)))) (-3426 (((-112) $) 120 (|has| |#1| (-816)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3088 (($ $ $) 117 (|has| |#1| (-846)))) (-1776 (($ $ $) 116 (|has| |#1| (-846)))) (-2238 (($ (-1 |#1| |#1|) $) 168)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-2687 (($ $) 71)) (-2522 (($) 106 (|has| |#1| (-1144)) CONST)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-3935 (($ $) 137 (|has| |#1| (-307)))) (-3954 ((|#1| $) 134 (|has| |#1| (-545)))) (-2075 (((-418 (-1165 $)) (-1165 $)) 131 (|has| |#1| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) 130 (|has| |#1| (-905)))) (-2173 (((-418 $) $) 75)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3012 (((-3 $ "failed") $ $) 43)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-1542 (($ $ (-640 |#1|) (-640 |#1|)) 174 (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) 173 (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) 172 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) 171 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) 170 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) 169 (|has| |#1| (-514 (-1169) |#1|)))) (-1993 (((-767) $) 59)) (-2308 (($ $ |#1|) 175 (|has| |#1| (-286 |#1| |#1|)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 58)) (-4203 (($ $) 167 (|has| |#1| (-233))) (($ $ (-767)) 165 (|has| |#1| (-233))) (($ $ (-1169)) 163 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 162 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 161 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 160 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 153) (($ $ (-1 |#1| |#1|)) 152)) (-2033 (($ $) 139)) (-2153 ((|#1| $) 141)) (-2219 (((-888 (-563)) $) 147 (|has| |#1| (-611 (-888 (-563))))) (((-888 (-379)) $) 146 (|has| |#1| (-611 (-888 (-379))))) (((-536) $) 124 (|has| |#1| (-611 (-536)))) (((-379) $) 123 (|has| |#1| (-1018))) (((-225) $) 122 (|has| |#1| (-1018)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) 133 (-2188 (|has| $ (-145)) (|has| |#1| (-905))))) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67) (($ |#1|) 180) (($ (-1169)) 126 (|has| |#1| (-1034 (-1169))))) (-2047 (((-3 $ "failed") $) 125 (-4034 (|has| |#1| (-145)) (-2188 (|has| $ (-145)) (|has| |#1| (-905)))))) (-3914 (((-767)) 28)) (-3965 ((|#1| $) 135 (|has| |#1| (-545)))) (-3223 (((-112) $ $) 40)) (-1462 (($ $) 118 (|has| |#1| (-816)))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $) 166 (|has| |#1| (-233))) (($ $ (-767)) 164 (|has| |#1| (-233))) (($ $ (-1169)) 159 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 158 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 157 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 156 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 155) (($ $ (-1 |#1| |#1|)) 154)) (-1779 (((-112) $ $) 114 (|has| |#1| (-846)))) (-1754 (((-112) $ $) 113 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 115 (|has| |#1| (-846)))) (-1743 (((-112) $ $) 112 (|has| |#1| (-846)))) (-1836 (($ $ $) 66) (($ |#1| |#1|) 143)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68) (($ |#1| $) 179) (($ $ |#1|) 178)))
(((-988 |#1|) (-140) (-555)) (T -988))
-((-1837 (*1 *1 *2 *2) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))) (-2143 (*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))) (-2154 (*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))) (-2711 (*1 *1 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))) (-1801 (*1 *1 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))) (-3401 (*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-307)))) (-4215 (*1 *1 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-307)))) (-1691 (*1 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-545)) (-4 *2 (-555)))) (-4194 (*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-545)))) (-1583 (*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-545)))))
-(-13 (-363) (-38 |t#1|) (-1034 |t#1|) (-338 |t#1|) (-231 |t#1|) (-377 |t#1|) (-880 |t#1|) (-400 |t#1|) (-10 -8 (-15 -1837 ($ |t#1| |t#1|)) (-15 -2143 (|t#1| $)) (-15 -2154 (|t#1| $)) (-15 -2711 ($ $)) (-15 -1801 ($ $)) (IF (|has| |t#1| (-1144)) (-6 (-1144)) |%noBranch|) (IF (|has| |t#1| (-1034 (-563))) (PROGN (-6 (-1034 (-563))) (-6 (-1034 (-407 (-563))))) |%noBranch|) (IF (|has| |t#1| (-846)) (-6 (-846)) |%noBranch|) (IF (|has| |t#1| (-816)) (-6 (-816)) |%noBranch|) (IF (|has| |t#1| (-1018)) (-6 (-1018)) |%noBranch|) (IF (|has| |t#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1034 (-1169))) (-6 (-1034 (-1169))) |%noBranch|) (IF (|has| |t#1| (-307)) (PROGN (-15 -3401 (|t#1| $)) (-15 -4215 ($ $))) |%noBranch|) (IF (|has| |t#1| (-545)) (PROGN (-15 -1691 ($)) (-15 -4194 (|t#1| $)) (-15 -1583 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-905)) (-6 (-905)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-38 |#1|) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) . T) ((-613 (-563)) . T) ((-613 #1=(-1169)) |has| |#1| (-1034 (-1169))) ((-613 |#1|) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-611 (-225)) |has| |#1| (-1018)) ((-611 (-379)) |has| |#1| (-1018)) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-611 (-888 (-379))) |has| |#1| (-611 (-888 (-379)))) ((-611 (-888 (-563))) |has| |#1| (-611 (-888 (-563)))) ((-231 |#1|) . T) ((-233) |has| |#1| (-233)) ((-243) . T) ((-286 |#1| $) |has| |#1| (-286 |#1| |#1|)) ((-290) . T) ((-307) . T) ((-309 |#1|) |has| |#1| (-309 |#1|)) ((-363) . T) ((-338 |#1|) . T) ((-377 |#1|) . T) ((-400 |#1|) . T) ((-452) . T) ((-514 (-1169) |#1|) |has| |#1| (-514 (-1169) |#1|)) ((-514 |#1| |#1|) |has| |#1| (-309 |#1|)) ((-555) . T) ((-643 #0#) . T) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #0#) . T) ((-713 |#1|) . T) ((-713 $) . T) ((-722) . T) ((-787) |has| |#1| (-816)) ((-788) |has| |#1| (-816)) ((-790) |has| |#1| (-816)) ((-791) |has| |#1| (-816)) ((-816) |has| |#1| (-816)) ((-844) |has| |#1| (-816)) ((-846) -4032 (|has| |#1| (-846)) (|has| |#1| (-816))) ((-896 (-1169)) |has| |#1| (-896 (-1169))) ((-882 (-379)) |has| |#1| (-882 (-379))) ((-882 (-563)) |has| |#1| (-882 (-563))) ((-880 |#1|) . T) ((-905) |has| |#1| (-905)) ((-916) . T) ((-1018) |has| |#1| (-1018)) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-563))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 #1#) |has| |#1| (-1034 (-1169))) ((-1034 |#1|) . T) ((-1051 #0#) . T) ((-1051 |#1|) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) |has| |#1| (-1144)) ((-1208) . T) ((-1212) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-3478 (($ (-1135 |#1| |#2|)) 11)) (-4038 (((-1135 |#1| |#2|) $) 12)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2309 ((|#2| $ (-240 |#1| |#2|)) 16)) (-1693 (((-858) $) NIL)) (-2241 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL)))
-(((-989 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -3478 ($ (-1135 |#1| |#2|))) (-15 -4038 ((-1135 |#1| |#2|) $)) (-15 -2309 (|#2| $ (-240 |#1| |#2|))))) (-917) (-363)) (T -989))
-((-3478 (*1 *1 *2) (-12 (-5 *2 (-1135 *3 *4)) (-14 *3 (-917)) (-4 *4 (-363)) (-5 *1 (-989 *3 *4)))) (-4038 (*1 *2 *1) (-12 (-5 *2 (-1135 *3 *4)) (-5 *1 (-989 *3 *4)) (-14 *3 (-917)) (-4 *4 (-363)))) (-2309 (*1 *2 *1 *3) (-12 (-5 *3 (-240 *4 *2)) (-14 *4 (-917)) (-4 *2 (-363)) (-5 *1 (-989 *4 *2)))))
-(-13 (-21) (-10 -8 (-15 -3478 ($ (-1135 |#1| |#2|))) (-15 -4038 ((-1135 |#1| |#2|) $)) (-15 -2309 (|#2| $ (-240 |#1| |#2|)))))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3685 (((-1128) $) 9)) (-1693 (((-858) $) 17) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-990) (-13 (-1076) (-10 -8 (-15 -3685 ((-1128) $))))) (T -990))
-((-3685 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-990)))))
-(-13 (-1076) (-10 -8 (-15 -3685 ((-1128) $))))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2759 (((-112) $ (-767)) 8)) (-4239 (($) 7 T CONST)) (-3866 (($ $) 46)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-3415 (((-767) $) 45)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2964 ((|#1| $) 39)) (-1812 (($ |#1| $) 40)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-2822 ((|#1| $) 44)) (-3755 ((|#1| $) 41)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3958 ((|#1| |#1| $) 48)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-1749 ((|#1| $) 47)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-2233 (($ (-640 |#1|)) 42)) (-3498 ((|#1| $) 43)) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1836 (*1 *1 *2 *2) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))) (-2143 (*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))) (-2153 (*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))) (-2043 (*1 *1 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))) (-2033 (*1 *1 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))) (-3944 (*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-307)))) (-3935 (*1 *1 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-307)))) (-1690 (*1 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-545)) (-4 *2 (-555)))) (-3965 (*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-545)))) (-3954 (*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-545)))))
+(-13 (-363) (-38 |t#1|) (-1034 |t#1|) (-338 |t#1|) (-231 |t#1|) (-377 |t#1|) (-880 |t#1|) (-400 |t#1|) (-10 -8 (-15 -1836 ($ |t#1| |t#1|)) (-15 -2143 (|t#1| $)) (-15 -2153 (|t#1| $)) (-15 -2043 ($ $)) (-15 -2033 ($ $)) (IF (|has| |t#1| (-1144)) (-6 (-1144)) |%noBranch|) (IF (|has| |t#1| (-1034 (-563))) (PROGN (-6 (-1034 (-563))) (-6 (-1034 (-407 (-563))))) |%noBranch|) (IF (|has| |t#1| (-846)) (-6 (-846)) |%noBranch|) (IF (|has| |t#1| (-816)) (-6 (-816)) |%noBranch|) (IF (|has| |t#1| (-1018)) (-6 (-1018)) |%noBranch|) (IF (|has| |t#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1034 (-1169))) (-6 (-1034 (-1169))) |%noBranch|) (IF (|has| |t#1| (-307)) (PROGN (-15 -3944 (|t#1| $)) (-15 -3935 ($ $))) |%noBranch|) (IF (|has| |t#1| (-545)) (PROGN (-15 -1690 ($)) (-15 -3965 (|t#1| $)) (-15 -3954 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-905)) (-6 (-905)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-38 |#1|) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) . T) ((-613 (-563)) . T) ((-613 #1=(-1169)) |has| |#1| (-1034 (-1169))) ((-613 |#1|) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-611 (-225)) |has| |#1| (-1018)) ((-611 (-379)) |has| |#1| (-1018)) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-611 (-888 (-379))) |has| |#1| (-611 (-888 (-379)))) ((-611 (-888 (-563))) |has| |#1| (-611 (-888 (-563)))) ((-231 |#1|) . T) ((-233) |has| |#1| (-233)) ((-243) . T) ((-286 |#1| $) |has| |#1| (-286 |#1| |#1|)) ((-290) . T) ((-307) . T) ((-309 |#1|) |has| |#1| (-309 |#1|)) ((-363) . T) ((-338 |#1|) . T) ((-377 |#1|) . T) ((-400 |#1|) . T) ((-452) . T) ((-514 (-1169) |#1|) |has| |#1| (-514 (-1169) |#1|)) ((-514 |#1| |#1|) |has| |#1| (-309 |#1|)) ((-555) . T) ((-643 #0#) . T) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #0#) . T) ((-713 |#1|) . T) ((-713 $) . T) ((-722) . T) ((-787) |has| |#1| (-816)) ((-788) |has| |#1| (-816)) ((-790) |has| |#1| (-816)) ((-791) |has| |#1| (-816)) ((-816) |has| |#1| (-816)) ((-844) |has| |#1| (-816)) ((-846) -4034 (|has| |#1| (-846)) (|has| |#1| (-816))) ((-896 (-1169)) |has| |#1| (-896 (-1169))) ((-882 (-379)) |has| |#1| (-882 (-379))) ((-882 (-563)) |has| |#1| (-882 (-563))) ((-880 |#1|) . T) ((-905) |has| |#1| (-905)) ((-916) . T) ((-1018) |has| |#1| (-1018)) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-563))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 #1#) |has| |#1| (-1034 (-1169))) ((-1034 |#1|) . T) ((-1051 #0#) . T) ((-1051 |#1|) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) |has| |#1| (-1144)) ((-1208) . T) ((-1212) . T))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2050 (($ (-1135 |#1| |#2|)) 11)) (-4040 (((-1135 |#1| |#2|) $) 12)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2308 ((|#2| $ (-240 |#1| |#2|)) 16)) (-1692 (((-858) $) NIL)) (-2239 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL)))
+(((-989 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -2050 ($ (-1135 |#1| |#2|))) (-15 -4040 ((-1135 |#1| |#2|) $)) (-15 -2308 (|#2| $ (-240 |#1| |#2|))))) (-917) (-363)) (T -989))
+((-2050 (*1 *1 *2) (-12 (-5 *2 (-1135 *3 *4)) (-14 *3 (-917)) (-4 *4 (-363)) (-5 *1 (-989 *3 *4)))) (-4040 (*1 *2 *1) (-12 (-5 *2 (-1135 *3 *4)) (-5 *1 (-989 *3 *4)) (-14 *3 (-917)) (-4 *4 (-363)))) (-2308 (*1 *2 *1 *3) (-12 (-5 *3 (-240 *4 *2)) (-14 *4 (-917)) (-4 *2 (-363)) (-5 *1 (-989 *4 *2)))))
+(-13 (-21) (-10 -8 (-15 -2050 ($ (-1135 |#1| |#2|))) (-15 -4040 ((-1135 |#1| |#2|) $)) (-15 -2308 (|#2| $ (-240 |#1| |#2|)))))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3687 (((-1128) $) 9)) (-1692 (((-858) $) 17) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-990) (-13 (-1076) (-10 -8 (-15 -3687 ((-1128) $))))) (T -990))
+((-3687 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-990)))))
+(-13 (-1076) (-10 -8 (-15 -3687 ((-1128) $))))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-3001 (((-112) $ (-767)) 8)) (-2569 (($) 7 T CONST)) (-2080 (($ $) 46)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-3419 (((-767) $) 45)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2627 ((|#1| $) 39)) (-3867 (($ |#1| $) 40)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-2071 ((|#1| $) 44)) (-2808 ((|#1| $) 41)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-2099 ((|#1| |#1| $) 48)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2088 ((|#1| $) 47)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-2820 (($ (-640 |#1|)) 42)) (-2061 ((|#1| $) 43)) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-991 |#1|) (-140) (-1208)) (T -991))
-((-3958 (*1 *2 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))) (-1749 (*1 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))) (-3866 (*1 *1 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))) (-3415 (*1 *2 *1) (-12 (-4 *1 (-991 *3)) (-4 *3 (-1208)) (-5 *2 (-767)))) (-2822 (*1 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))) (-3498 (*1 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))))
-(-13 (-107 |t#1|) (-10 -8 (-6 -4407) (-15 -3958 (|t#1| |t#1| $)) (-15 -1749 (|t#1| $)) (-15 -3866 ($ $)) (-15 -3415 ((-767) $)) (-15 -2822 (|t#1| $)) (-15 -3498 (|t#1| $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-3411 (((-112) $) 42)) (-2131 (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-2058 (((-563) $) NIL) (((-407 (-563)) $) NIL) ((|#2| $) 43)) (-3909 (((-3 (-407 (-563)) "failed") $) 78)) (-2239 (((-112) $) 72)) (-2651 (((-407 (-563)) $) 76)) (-3827 (((-112) $) 41)) (-3793 ((|#2| $) 22)) (-2240 (($ (-1 |#2| |#2|) $) 19)) (-2688 (($ $) 59)) (-4202 (($ $) NIL) (($ $ (-767)) NIL) (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) 34)) (-2220 (((-536) $) 67)) (-4339 (($ $) 17)) (-1693 (((-858) $) 54) (($ (-563)) 38) (($ |#2|) 36) (($ (-407 (-563))) NIL)) (-1675 (((-767)) 10)) (-2509 ((|#2| $) 71)) (-1718 (((-112) $ $) 25)) (-1744 (((-112) $ $) 69)) (-1826 (($ $) 29) (($ $ $) 28)) (-1814 (($ $ $) 26)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 33) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 30) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
-(((-992 |#1| |#2|) (-10 -8 (-15 -1693 (|#1| (-407 (-563)))) (-15 -1744 ((-112) |#1| |#1|)) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 * (|#1| |#1| (-407 (-563)))) (-15 -2688 (|#1| |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -3909 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2651 ((-407 (-563)) |#1|)) (-15 -2239 ((-112) |#1|)) (-15 -2509 (|#2| |#1|)) (-15 -3793 (|#2| |#1|)) (-15 -4339 (|#1| |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -1693 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1675 ((-767))) (-15 -1693 (|#1| (-563))) (-15 -3827 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1826 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 -3411 ((-112) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1814 (|#1| |#1| |#1|)) (-15 -1693 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|))) (-993 |#2|) (-172)) (T -992))
-((-1675 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-767)) (-5 *1 (-992 *3 *4)) (-4 *3 (-993 *4)))))
-(-10 -8 (-15 -1693 (|#1| (-407 (-563)))) (-15 -1744 ((-112) |#1| |#1|)) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 * (|#1| |#1| (-407 (-563)))) (-15 -2688 (|#1| |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -3909 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2651 ((-407 (-563)) |#1|)) (-15 -2239 ((-112) |#1|)) (-15 -2509 (|#2| |#1|)) (-15 -3793 (|#2| |#1|)) (-15 -4339 (|#1| |#1|)) (-15 -2240 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -1693 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1675 ((-767))) (-15 -1693 (|#1| (-563))) (-15 -3827 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1826 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 -3411 ((-112) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1814 (|#1| |#1| |#1|)) (-15 -1693 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-2131 (((-3 (-563) "failed") $) 118 (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 116 (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 113)) (-2058 (((-563) $) 117 (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) 115 (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 114)) (-2950 (((-684 (-563)) (-684 $)) 88 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 87 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 86) (((-684 |#1|) (-684 $)) 85)) (-3400 (((-3 $ "failed") $) 33)) (-2489 ((|#1| $) 78)) (-3909 (((-3 (-407 (-563)) "failed") $) 74 (|has| |#1| (-545)))) (-2239 (((-112) $) 76 (|has| |#1| (-545)))) (-2651 (((-407 (-563)) $) 75 (|has| |#1| (-545)))) (-1589 (($ |#1| |#1| |#1| |#1|) 79)) (-3827 (((-112) $) 31)) (-3793 ((|#1| $) 80)) (-3084 (($ $ $) 67 (|has| |#1| (-846)))) (-1777 (($ $ $) 66 (|has| |#1| (-846)))) (-2240 (($ (-1 |#1| |#1|) $) 89)) (-3573 (((-1151) $) 9)) (-2688 (($ $) 71 (|has| |#1| (-363)))) (-3144 ((|#1| $) 81)) (-1307 ((|#1| $) 82)) (-3908 ((|#1| $) 83)) (-1694 (((-1113) $) 10)) (-1540 (($ $ (-640 |#1|) (-640 |#1|)) 95 (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) 94 (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) 93 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) 92 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) 91 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) 90 (|has| |#1| (-514 (-1169) |#1|)))) (-2309 (($ $ |#1|) 96 (|has| |#1| (-286 |#1| |#1|)))) (-4202 (($ $) 112 (|has| |#1| (-233))) (($ $ (-767)) 110 (|has| |#1| (-233))) (($ $ (-1169)) 108 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 107 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 106 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 105 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 98) (($ $ (-1 |#1| |#1|)) 97)) (-2220 (((-536) $) 72 (|has| |#1| (-611 (-536))))) (-4339 (($ $) 84)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 38) (($ (-407 (-563))) 61 (-4032 (|has| |#1| (-363)) (|has| |#1| (-1034 (-407 (-563))))))) (-2779 (((-3 $ "failed") $) 73 (|has| |#1| (-145)))) (-1675 (((-767)) 28)) (-2509 ((|#1| $) 77 (|has| |#1| (-1054)))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $) 111 (|has| |#1| (-233))) (($ $ (-767)) 109 (|has| |#1| (-233))) (($ $ (-1169)) 104 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 103 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 102 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 101 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 100) (($ $ (-1 |#1| |#1|)) 99)) (-1778 (((-112) $ $) 64 (|has| |#1| (-846)))) (-1756 (((-112) $ $) 63 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 65 (|has| |#1| (-846)))) (-1744 (((-112) $ $) 62 (|has| |#1| (-846)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70 (|has| |#1| (-363)))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39) (($ $ (-407 (-563))) 69 (|has| |#1| (-363))) (($ (-407 (-563)) $) 68 (|has| |#1| (-363)))))
+((-2099 (*1 *2 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))) (-2088 (*1 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))) (-2080 (*1 *1 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))) (-3419 (*1 *2 *1) (-12 (-4 *1 (-991 *3)) (-4 *3 (-1208)) (-5 *2 (-767)))) (-2071 (*1 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))) (-2061 (*1 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))))
+(-13 (-107 |t#1|) (-10 -8 (-6 -4408) (-15 -2099 (|t#1| |t#1| $)) (-15 -2088 (|t#1| $)) (-15 -2080 ($ $)) (-15 -3419 ((-767) $)) (-15 -2071 (|t#1| $)) (-15 -2061 (|t#1| $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-3439 (((-112) $) 42)) (-2130 (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-2057 (((-563) $) NIL) (((-407 (-563)) $) NIL) ((|#2| $) 43)) (-2327 (((-3 (-407 (-563)) "failed") $) 78)) (-2317 (((-112) $) 72)) (-2306 (((-407 (-563)) $) 76)) (-3401 (((-112) $) 41)) (-3975 ((|#2| $) 22)) (-2238 (($ (-1 |#2| |#2|) $) 19)) (-2687 (($ $) 59)) (-4203 (($ $) NIL) (($ $ (-767)) NIL) (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) 34)) (-2219 (((-536) $) 67)) (-2150 (($ $) 17)) (-1692 (((-858) $) 54) (($ (-563)) 38) (($ |#2|) 36) (($ (-407 (-563))) NIL)) (-3914 (((-767)) 10)) (-1462 ((|#2| $) 71)) (-1718 (((-112) $ $) 25)) (-1743 (((-112) $ $) 69)) (-1825 (($ $) 29) (($ $ $) 28)) (-1813 (($ $ $) 26)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 33) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 30) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL)))
+(((-992 |#1| |#2|) (-10 -8 (-15 -1692 (|#1| (-407 (-563)))) (-15 -1743 ((-112) |#1| |#1|)) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 * (|#1| |#1| (-407 (-563)))) (-15 -2687 (|#1| |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -2327 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2306 ((-407 (-563)) |#1|)) (-15 -2317 ((-112) |#1|)) (-15 -1462 (|#2| |#1|)) (-15 -3975 (|#2| |#1|)) (-15 -2150 (|#1| |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -1692 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3914 ((-767))) (-15 -1692 (|#1| (-563))) (-15 -3401 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1825 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 -3439 ((-112) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1813 (|#1| |#1| |#1|)) (-15 -1692 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|))) (-993 |#2|) (-172)) (T -992))
+((-3914 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-767)) (-5 *1 (-992 *3 *4)) (-4 *3 (-993 *4)))))
+(-10 -8 (-15 -1692 (|#1| (-407 (-563)))) (-15 -1743 ((-112) |#1| |#1|)) (-15 * (|#1| (-407 (-563)) |#1|)) (-15 * (|#1| |#1| (-407 (-563)))) (-15 -2687 (|#1| |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -2327 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2306 ((-407 (-563)) |#1|)) (-15 -2317 ((-112) |#1|)) (-15 -1462 (|#2| |#1|)) (-15 -3975 (|#2| |#1|)) (-15 -2150 (|#1| |#1|)) (-15 -2238 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -1692 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3914 ((-767))) (-15 -1692 (|#1| (-563))) (-15 -3401 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1825 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 * (|#1| (-767) |#1|)) (-15 -3439 ((-112) |#1|)) (-15 * (|#1| (-917) |#1|)) (-15 -1813 (|#1| |#1| |#1|)) (-15 -1692 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-2130 (((-3 (-563) "failed") $) 118 (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 116 (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) 113)) (-2057 (((-563) $) 117 (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) 115 (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) 114)) (-1476 (((-684 (-563)) (-684 $)) 88 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 87 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 86) (((-684 |#1|) (-684 $)) 85)) (-3951 (((-3 $ "failed") $) 33)) (-2488 ((|#1| $) 78)) (-2327 (((-3 (-407 (-563)) "failed") $) 74 (|has| |#1| (-545)))) (-2317 (((-112) $) 76 (|has| |#1| (-545)))) (-2306 (((-407 (-563)) $) 75 (|has| |#1| (-545)))) (-2109 (($ |#1| |#1| |#1| |#1|) 79)) (-3401 (((-112) $) 31)) (-3975 ((|#1| $) 80)) (-3088 (($ $ $) 67 (|has| |#1| (-846)))) (-1776 (($ $ $) 66 (|has| |#1| (-846)))) (-2238 (($ (-1 |#1| |#1|) $) 89)) (-3854 (((-1151) $) 9)) (-2687 (($ $) 71 (|has| |#1| (-363)))) (-2118 ((|#1| $) 81)) (-2129 ((|#1| $) 82)) (-2140 ((|#1| $) 83)) (-1693 (((-1113) $) 10)) (-1542 (($ $ (-640 |#1|) (-640 |#1|)) 95 (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) 94 (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) 93 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) 92 (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) 91 (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) 90 (|has| |#1| (-514 (-1169) |#1|)))) (-2308 (($ $ |#1|) 96 (|has| |#1| (-286 |#1| |#1|)))) (-4203 (($ $) 112 (|has| |#1| (-233))) (($ $ (-767)) 110 (|has| |#1| (-233))) (($ $ (-1169)) 108 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 107 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 106 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 105 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 98) (($ $ (-1 |#1| |#1|)) 97)) (-2219 (((-536) $) 72 (|has| |#1| (-611 (-536))))) (-2150 (($ $) 84)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 38) (($ (-407 (-563))) 61 (-4034 (|has| |#1| (-363)) (|has| |#1| (-1034 (-407 (-563))))))) (-2047 (((-3 $ "failed") $) 73 (|has| |#1| (-145)))) (-3914 (((-767)) 28)) (-1462 ((|#1| $) 77 (|has| |#1| (-1054)))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $) 111 (|has| |#1| (-233))) (($ $ (-767)) 109 (|has| |#1| (-233))) (($ $ (-1169)) 104 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 103 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 102 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 101 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 100) (($ $ (-1 |#1| |#1|)) 99)) (-1779 (((-112) $ $) 64 (|has| |#1| (-846)))) (-1754 (((-112) $ $) 63 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 65 (|has| |#1| (-846)))) (-1743 (((-112) $ $) 62 (|has| |#1| (-846)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70 (|has| |#1| (-363)))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39) (($ $ (-407 (-563))) 69 (|has| |#1| (-363))) (($ (-407 (-563)) $) 68 (|has| |#1| (-363)))))
(((-993 |#1|) (-140) (-172)) (T -993))
-((-4339 (*1 *1 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))) (-3908 (*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))) (-1307 (*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))) (-3144 (*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))) (-3793 (*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))) (-1589 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))) (-2489 (*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))) (-2509 (*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)) (-4 *2 (-1054)))) (-2239 (*1 *2 *1) (-12 (-4 *1 (-993 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-112)))) (-2651 (*1 *2 *1) (-12 (-4 *1 (-993 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-407 (-563))))) (-3909 (*1 *2 *1) (|partial| -12 (-4 *1 (-993 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-407 (-563))))))
-(-13 (-38 |t#1|) (-411 |t#1|) (-231 |t#1|) (-338 |t#1|) (-377 |t#1|) (-10 -8 (-15 -4339 ($ $)) (-15 -3908 (|t#1| $)) (-15 -1307 (|t#1| $)) (-15 -3144 (|t#1| $)) (-15 -3793 (|t#1| $)) (-15 -1589 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -2489 (|t#1| $)) (IF (|has| |t#1| (-290)) (-6 (-290)) |%noBranch|) (IF (|has| |t#1| (-846)) (-6 (-846)) |%noBranch|) (IF (|has| |t#1| (-363)) (-6 (-243)) |%noBranch|) (IF (|has| |t#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1054)) (-15 -2509 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-545)) (PROGN (-15 -2239 ((-112) $)) (-15 -2651 ((-407 (-563)) $)) (-15 -3909 ((-3 (-407 (-563)) "failed") $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-363)) ((-38 |#1|) . T) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-363)) ((-111 |#1| |#1|) . T) ((-111 $ $) -4032 (|has| |#1| (-363)) (|has| |#1| (-290))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) -4032 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-363))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-610 (-858)) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-231 |#1|) . T) ((-233) |has| |#1| (-233)) ((-243) |has| |#1| (-363)) ((-286 |#1| $) |has| |#1| (-286 |#1| |#1|)) ((-290) -4032 (|has| |#1| (-363)) (|has| |#1| (-290))) ((-309 |#1|) |has| |#1| (-309 |#1|)) ((-338 |#1|) . T) ((-377 |#1|) . T) ((-411 |#1|) . T) ((-514 (-1169) |#1|) |has| |#1| (-514 (-1169) |#1|)) ((-514 |#1| |#1|) |has| |#1| (-309 |#1|)) ((-643 #0#) |has| |#1| (-363)) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #0#) |has| |#1| (-363)) ((-713 |#1|) . T) ((-722) . T) ((-846) |has| |#1| (-846)) ((-896 (-1169)) |has| |#1| (-896 (-1169))) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1051 #0#) |has| |#1| (-363)) ((-1051 |#1|) . T) ((-1051 $) -4032 (|has| |#1| (-363)) (|has| |#1| (-290))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-2240 ((|#3| (-1 |#4| |#2|) |#1|) 16)))
-(((-994 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2240 (|#3| (-1 |#4| |#2|) |#1|))) (-993 |#2|) (-172) (-993 |#4|) (-172)) (T -994))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-4 *2 (-993 *6)) (-5 *1 (-994 *4 *5 *2 *6)) (-4 *4 (-993 *5)))))
-(-10 -7 (-15 -2240 (|#3| (-1 |#4| |#2|) |#1|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2058 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-2489 ((|#1| $) 12)) (-3909 (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-545)))) (-2239 (((-112) $) NIL (|has| |#1| (-545)))) (-2651 (((-407 (-563)) $) NIL (|has| |#1| (-545)))) (-1589 (($ |#1| |#1| |#1| |#1|) 16)) (-3827 (((-112) $) NIL)) (-3793 ((|#1| $) NIL)) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL (|has| |#1| (-363)))) (-3144 ((|#1| $) 15)) (-1307 ((|#1| $) 14)) (-3908 ((|#1| $) 13)) (-1694 (((-1113) $) NIL)) (-1540 (($ $ (-640 |#1|) (-640 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) NIL (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-514 (-1169) |#1|)))) (-2309 (($ $ |#1|) NIL (|has| |#1| (-286 |#1| |#1|)))) (-4202 (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2220 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-4339 (($ $) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-407 (-563))) NIL (-4032 (|has| |#1| (-363)) (|has| |#1| (-1034 (-407 (-563))))))) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) NIL)) (-2509 ((|#1| $) NIL (|has| |#1| (-1054)))) (-2241 (($) 8 T CONST)) (-2254 (($) 10 T CONST)) (-3209 (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-407 (-563))) NIL (|has| |#1| (-363))) (($ (-407 (-563)) $) NIL (|has| |#1| (-363)))))
+((-2150 (*1 *1 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))) (-2140 (*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))) (-2129 (*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))) (-2118 (*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))) (-2109 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))) (-2488 (*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))) (-1462 (*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)) (-4 *2 (-1054)))) (-2317 (*1 *2 *1) (-12 (-4 *1 (-993 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-112)))) (-2306 (*1 *2 *1) (-12 (-4 *1 (-993 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-407 (-563))))) (-2327 (*1 *2 *1) (|partial| -12 (-4 *1 (-993 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-407 (-563))))))
+(-13 (-38 |t#1|) (-411 |t#1|) (-231 |t#1|) (-338 |t#1|) (-377 |t#1|) (-10 -8 (-15 -2150 ($ $)) (-15 -2140 (|t#1| $)) (-15 -2129 (|t#1| $)) (-15 -2118 (|t#1| $)) (-15 -3975 (|t#1| $)) (-15 -2109 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -2488 (|t#1| $)) (IF (|has| |t#1| (-290)) (-6 (-290)) |%noBranch|) (IF (|has| |t#1| (-846)) (-6 (-846)) |%noBranch|) (IF (|has| |t#1| (-363)) (-6 (-243)) |%noBranch|) (IF (|has| |t#1| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1054)) (-15 -1462 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-545)) (PROGN (-15 -2317 ((-112) $)) (-15 -2306 ((-407 (-563)) $)) (-15 -2327 ((-3 (-407 (-563)) "failed") $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-363)) ((-38 |#1|) . T) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-363)) ((-111 |#1| |#1|) . T) ((-111 $ $) -4034 (|has| |#1| (-363)) (|has| |#1| (-290))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) -4034 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-363))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-610 (-858)) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-231 |#1|) . T) ((-233) |has| |#1| (-233)) ((-243) |has| |#1| (-363)) ((-286 |#1| $) |has| |#1| (-286 |#1| |#1|)) ((-290) -4034 (|has| |#1| (-363)) (|has| |#1| (-290))) ((-309 |#1|) |has| |#1| (-309 |#1|)) ((-338 |#1|) . T) ((-377 |#1|) . T) ((-411 |#1|) . T) ((-514 (-1169) |#1|) |has| |#1| (-514 (-1169) |#1|)) ((-514 |#1| |#1|) |has| |#1| (-309 |#1|)) ((-643 #0#) |has| |#1| (-363)) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #0#) |has| |#1| (-363)) ((-713 |#1|) . T) ((-722) . T) ((-846) |has| |#1| (-846)) ((-896 (-1169)) |has| |#1| (-896 (-1169))) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1051 #0#) |has| |#1| (-363)) ((-1051 |#1|) . T) ((-1051 $) -4034 (|has| |#1| (-363)) (|has| |#1| (-290))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
+((-2238 ((|#3| (-1 |#4| |#2|) |#1|) 16)))
+(((-994 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2238 (|#3| (-1 |#4| |#2|) |#1|))) (-993 |#2|) (-172) (-993 |#4|) (-172)) (T -994))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-4 *2 (-993 *6)) (-5 *1 (-994 *4 *5 *2 *6)) (-4 *4 (-993 *5)))))
+(-10 -7 (-15 -2238 (|#3| (-1 |#4| |#2|) |#1|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2057 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-2488 ((|#1| $) 12)) (-2327 (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-545)))) (-2317 (((-112) $) NIL (|has| |#1| (-545)))) (-2306 (((-407 (-563)) $) NIL (|has| |#1| (-545)))) (-2109 (($ |#1| |#1| |#1| |#1|) 16)) (-3401 (((-112) $) NIL)) (-3975 ((|#1| $) NIL)) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL (|has| |#1| (-363)))) (-2118 ((|#1| $) 15)) (-2129 ((|#1| $) 14)) (-2140 ((|#1| $) 13)) (-1693 (((-1113) $) NIL)) (-1542 (($ $ (-640 |#1|) (-640 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-309 |#1|))) (($ $ (-294 |#1|)) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-294 |#1|))) NIL (|has| |#1| (-309 |#1|))) (($ $ (-640 (-1169)) (-640 |#1|)) NIL (|has| |#1| (-514 (-1169) |#1|))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-514 (-1169) |#1|)))) (-2308 (($ $ |#1|) NIL (|has| |#1| (-286 |#1| |#1|)))) (-4203 (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2219 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-2150 (($ $) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-407 (-563))) NIL (-4034 (|has| |#1| (-363)) (|has| |#1| (-1034 (-407 (-563))))))) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) NIL)) (-1462 ((|#1| $) NIL (|has| |#1| (-1054)))) (-2239 (($) 8 T CONST)) (-2253 (($) 10 T CONST)) (-3213 (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-407 (-563))) NIL (|has| |#1| (-363))) (($ (-407 (-563)) $) NIL (|has| |#1| (-363)))))
(((-995 |#1|) (-993 |#1|) (-172)) (T -995))
NIL
(-993 |#1|)
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2759 (((-112) $ (-767)) NIL)) (-4239 (($) NIL T CONST)) (-3866 (($ $) 20)) (-3283 (($ (-640 |#1|)) 29)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3415 (((-767) $) 22)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2964 ((|#1| $) 24)) (-1812 (($ |#1| $) 15)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2822 ((|#1| $) 23)) (-3755 ((|#1| $) 19)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3958 ((|#1| |#1| $) 14)) (-3756 (((-112) $) 17)) (-3135 (($) NIL)) (-1749 ((|#1| $) 18)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-2233 (($ (-640 |#1|)) NIL)) (-3498 ((|#1| $) 26)) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-996 |#1|) (-13 (-991 |#1|) (-10 -8 (-15 -3283 ($ (-640 |#1|))))) (-1093)) (T -996))
-((-3283 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-996 *3)))))
-(-13 (-991 |#1|) (-10 -8 (-15 -3283 ($ (-640 |#1|)))))
-((-2186 (($ $) 12)) (-1645 (($ $ (-563)) 13)))
-(((-997 |#1|) (-10 -8 (-15 -2186 (|#1| |#1|)) (-15 -1645 (|#1| |#1| (-563)))) (-998)) (T -997))
-NIL
-(-10 -8 (-15 -2186 (|#1| |#1|)) (-15 -1645 (|#1| |#1| (-563))))
-((-2186 (($ $) 6)) (-1645 (($ $ (-563)) 7)) (** (($ $ (-407 (-563))) 8)))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3001 (((-112) $ (-767)) NIL)) (-2569 (($) NIL T CONST)) (-2080 (($ $) 20)) (-2161 (($ (-640 |#1|)) 29)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3419 (((-767) $) 22)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2627 ((|#1| $) 24)) (-3867 (($ |#1| $) 15)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2071 ((|#1| $) 23)) (-2808 ((|#1| $) 19)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2099 ((|#1| |#1| $) 14)) (-1665 (((-112) $) 17)) (-3445 (($) NIL)) (-2088 ((|#1| $) 18)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-2820 (($ (-640 |#1|)) NIL)) (-2061 ((|#1| $) 26)) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-996 |#1|) (-13 (-991 |#1|) (-10 -8 (-15 -2161 ($ (-640 |#1|))))) (-1093)) (T -996))
+((-2161 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-996 *3)))))
+(-13 (-991 |#1|) (-10 -8 (-15 -2161 ($ (-640 |#1|)))))
+((-2185 (($ $) 12)) (-2172 (($ $ (-563)) 13)))
+(((-997 |#1|) (-10 -8 (-15 -2185 (|#1| |#1|)) (-15 -2172 (|#1| |#1| (-563)))) (-998)) (T -997))
+NIL
+(-10 -8 (-15 -2185 (|#1| |#1|)) (-15 -2172 (|#1| |#1| (-563))))
+((-2185 (($ $) 6)) (-2172 (($ $ (-563)) 7)) (** (($ $ (-407 (-563))) 8)))
(((-998) (-140)) (T -998))
-((** (*1 *1 *1 *2) (-12 (-4 *1 (-998)) (-5 *2 (-407 (-563))))) (-1645 (*1 *1 *1 *2) (-12 (-4 *1 (-998)) (-5 *2 (-563)))) (-2186 (*1 *1 *1) (-4 *1 (-998))))
-(-13 (-10 -8 (-15 -2186 ($ $)) (-15 -1645 ($ $ (-563))) (-15 ** ($ $ (-407 (-563))))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4067 (((-2 (|:| |num| (-1257 |#2|)) (|:| |den| |#2|)) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| (-407 |#2|) (-363)))) (-4223 (($ $) NIL (|has| (-407 |#2|) (-363)))) (-3156 (((-112) $) NIL (|has| (-407 |#2|) (-363)))) (-3561 (((-684 (-407 |#2|)) (-1257 $)) NIL) (((-684 (-407 |#2|))) NIL)) (-1733 (((-407 |#2|) $) NIL)) (-2752 (((-1181 (-917) (-767)) (-563)) NIL (|has| (-407 |#2|) (-349)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL (|has| (-407 |#2|) (-363)))) (-3205 (((-418 $) $) NIL (|has| (-407 |#2|) (-363)))) (-1919 (((-112) $ $) NIL (|has| (-407 |#2|) (-363)))) (-3749 (((-767)) NIL (|has| (-407 |#2|) (-368)))) (-1504 (((-112)) NIL)) (-2456 (((-112) |#1|) 148) (((-112) |#2|) 153)) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL (|has| (-407 |#2|) (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-407 |#2|) (-1034 (-407 (-563))))) (((-3 (-407 |#2|) "failed") $) NIL)) (-2058 (((-563) $) NIL (|has| (-407 |#2|) (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| (-407 |#2|) (-1034 (-407 (-563))))) (((-407 |#2|) $) NIL)) (-3937 (($ (-1257 (-407 |#2|)) (-1257 $)) NIL) (($ (-1257 (-407 |#2|))) 70) (($ (-1257 |#2|) |#2|) NIL)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-407 |#2|) (-349)))) (-3090 (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-3914 (((-684 (-407 |#2|)) $ (-1257 $)) NIL) (((-684 (-407 |#2|)) $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| (-407 |#2|) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-407 |#2|) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-407 |#2|))) (|:| |vec| (-1257 (-407 |#2|)))) (-684 $) (-1257 $)) NIL) (((-684 (-407 |#2|)) (-684 $)) NIL)) (-4364 (((-1257 $) (-1257 $)) NIL)) (-2444 (($ |#3|) 65) (((-3 $ "failed") (-407 |#3|)) NIL (|has| (-407 |#2|) (-363)))) (-3400 (((-3 $ "failed") $) NIL)) (-2077 (((-640 (-640 |#1|))) NIL (|has| |#1| (-368)))) (-3632 (((-112) |#1| |#1|) NIL)) (-2522 (((-917)) NIL)) (-1691 (($) NIL (|has| (-407 |#2|) (-368)))) (-4077 (((-112)) NIL)) (-1852 (((-112) |#1|) 56) (((-112) |#2|) 150)) (-3050 (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| (-407 |#2|) (-363)))) (-1300 (($ $) NIL)) (-1571 (($) NIL (|has| (-407 |#2|) (-349)))) (-2366 (((-112) $) NIL (|has| (-407 |#2|) (-349)))) (-1637 (($ $ (-767)) NIL (|has| (-407 |#2|) (-349))) (($ $) NIL (|has| (-407 |#2|) (-349)))) (-2468 (((-112) $) NIL (|has| (-407 |#2|) (-363)))) (-3254 (((-917) $) NIL (|has| (-407 |#2|) (-349))) (((-829 (-917)) $) NIL (|has| (-407 |#2|) (-349)))) (-3827 (((-112) $) NIL)) (-3273 (((-767)) NIL)) (-3132 (((-1257 $) (-1257 $)) NIL)) (-3793 (((-407 |#2|) $) NIL)) (-3370 (((-640 (-948 |#1|)) (-1169)) NIL (|has| |#1| (-363)))) (-2408 (((-3 $ "failed") $) NIL (|has| (-407 |#2|) (-349)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| (-407 |#2|) (-363)))) (-3941 ((|#3| $) NIL (|has| (-407 |#2|) (-363)))) (-1476 (((-917) $) NIL (|has| (-407 |#2|) (-368)))) (-2433 ((|#3| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| (-407 |#2|) (-363))) (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-3573 (((-1151) $) NIL)) (-2095 (((-684 (-407 |#2|))) 52)) (-3295 (((-684 (-407 |#2|))) 51)) (-2688 (($ $) NIL (|has| (-407 |#2|) (-363)))) (-2145 (($ (-1257 |#2|) |#2|) 71)) (-4218 (((-684 (-407 |#2|))) 50)) (-3500 (((-684 (-407 |#2|))) 49)) (-2914 (((-2 (|:| |num| (-684 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 86)) (-3447 (((-2 (|:| |num| (-1257 |#2|)) (|:| |den| |#2|)) $) 77)) (-2993 (((-1257 $)) 46)) (-3815 (((-1257 $)) 45)) (-2532 (((-112) $) NIL)) (-1294 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-2523 (($) NIL (|has| (-407 |#2|) (-349)) CONST)) (-2555 (($ (-917)) NIL (|has| (-407 |#2|) (-368)))) (-3140 (((-3 |#2| "failed")) 63)) (-1694 (((-1113) $) NIL)) (-2327 (((-767)) NIL)) (-4333 (($) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| (-407 |#2|) (-363)))) (-3548 (($ (-640 $)) NIL (|has| (-407 |#2|) (-363))) (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) NIL (|has| (-407 |#2|) (-349)))) (-2174 (((-418 $) $) NIL (|has| (-407 |#2|) (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-407 |#2|) (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| (-407 |#2|) (-363)))) (-3008 (((-3 $ "failed") $ $) NIL (|has| (-407 |#2|) (-363)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| (-407 |#2|) (-363)))) (-2628 (((-767) $) NIL (|has| (-407 |#2|) (-363)))) (-2309 ((|#1| $ |#1| |#1|) NIL)) (-2621 (((-3 |#2| "failed")) 62)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| (-407 |#2|) (-363)))) (-2315 (((-407 |#2|) (-1257 $)) NIL) (((-407 |#2|)) 42)) (-1423 (((-767) $) NIL (|has| (-407 |#2|) (-349))) (((-3 (-767) "failed") $ $) NIL (|has| (-407 |#2|) (-349)))) (-4202 (($ $ (-1 (-407 |#2|) (-407 |#2|)) (-767)) NIL (|has| (-407 |#2|) (-363))) (($ $ (-1 (-407 |#2|) (-407 |#2|))) NIL (|has| (-407 |#2|) (-363))) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-767)) NIL (-4032 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349)))) (($ $) NIL (-4032 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349))))) (-3974 (((-684 (-407 |#2|)) (-1257 $) (-1 (-407 |#2|) (-407 |#2|))) NIL (|has| (-407 |#2|) (-363)))) (-3390 ((|#3|) 53)) (-4284 (($) NIL (|has| (-407 |#2|) (-349)))) (-1880 (((-1257 (-407 |#2|)) $ (-1257 $)) NIL) (((-684 (-407 |#2|)) (-1257 $) (-1257 $)) NIL) (((-1257 (-407 |#2|)) $) 72) (((-684 (-407 |#2|)) (-1257 $)) NIL)) (-2220 (((-1257 (-407 |#2|)) $) NIL) (($ (-1257 (-407 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| (-407 |#2|) (-349)))) (-1962 (((-1257 $) (-1257 $)) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 |#2|)) NIL) (($ (-407 (-563))) NIL (-4032 (|has| (-407 |#2|) (-1034 (-407 (-563)))) (|has| (-407 |#2|) (-363)))) (($ $) NIL (|has| (-407 |#2|) (-363)))) (-2779 (($ $) NIL (|has| (-407 |#2|) (-349))) (((-3 $ "failed") $) NIL (|has| (-407 |#2|) (-145)))) (-3421 ((|#3| $) NIL)) (-1675 (((-767)) NIL)) (-4042 (((-112)) 60)) (-1528 (((-112) |#1|) 154) (((-112) |#2|) 155)) (-4315 (((-1257 $)) 125)) (-2126 (((-112) $ $) NIL (|has| (-407 |#2|) (-363)))) (-2732 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-1581 (((-112)) NIL)) (-2241 (($) 94 T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ (-1 (-407 |#2|) (-407 |#2|)) (-767)) NIL (|has| (-407 |#2|) (-363))) (($ $ (-1 (-407 |#2|) (-407 |#2|))) NIL (|has| (-407 |#2|) (-363))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-767)) NIL (-4032 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349)))) (($ $) NIL (-4032 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349))))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| (-407 |#2|) (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 |#2|)) NIL) (($ (-407 |#2|) $) NIL) (($ (-407 (-563)) $) NIL (|has| (-407 |#2|) (-363))) (($ $ (-407 (-563))) NIL (|has| (-407 |#2|) (-363)))))
+((** (*1 *1 *1 *2) (-12 (-4 *1 (-998)) (-5 *2 (-407 (-563))))) (-2172 (*1 *1 *1 *2) (-12 (-4 *1 (-998)) (-5 *2 (-563)))) (-2185 (*1 *1 *1) (-4 *1 (-998))))
+(-13 (-10 -8 (-15 -2185 ($ $)) (-15 -2172 ($ $ (-563))) (-15 ** ($ $ (-407 (-563))))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2535 (((-2 (|:| |num| (-1257 |#2|)) (|:| |den| |#2|)) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| (-407 |#2|) (-363)))) (-3231 (($ $) NIL (|has| (-407 |#2|) (-363)))) (-3211 (((-112) $) NIL (|has| (-407 |#2|) (-363)))) (-3340 (((-684 (-407 |#2|)) (-1257 $)) NIL) (((-684 (-407 |#2|))) NIL)) (-1731 (((-407 |#2|) $) NIL)) (-1597 (((-1181 (-917) (-767)) (-563)) NIL (|has| (-407 |#2|) (-349)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL (|has| (-407 |#2|) (-363)))) (-2802 (((-418 $) $) NIL (|has| (-407 |#2|) (-363)))) (-2003 (((-112) $ $) NIL (|has| (-407 |#2|) (-363)))) (-3750 (((-767)) NIL (|has| (-407 |#2|) (-368)))) (-1432 (((-112)) NIL)) (-1421 (((-112) |#1|) 148) (((-112) |#2|) 153)) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL (|has| (-407 |#2|) (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-407 |#2|) (-1034 (-407 (-563))))) (((-3 (-407 |#2|) "failed") $) NIL)) (-2057 (((-563) $) NIL (|has| (-407 |#2|) (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| (-407 |#2|) (-1034 (-407 (-563))))) (((-407 |#2|) $) NIL)) (-3458 (($ (-1257 (-407 |#2|)) (-1257 $)) NIL) (($ (-1257 (-407 |#2|))) 70) (($ (-1257 |#2|) |#2|) NIL)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-407 |#2|) (-349)))) (-3094 (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-3330 (((-684 (-407 |#2|)) $ (-1257 $)) NIL) (((-684 (-407 |#2|)) $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| (-407 |#2|) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-407 |#2|) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-407 |#2|))) (|:| |vec| (-1257 (-407 |#2|)))) (-684 $) (-1257 $)) NIL) (((-684 (-407 |#2|)) (-684 $)) NIL)) (-1339 (((-1257 $) (-1257 $)) NIL)) (-2444 (($ |#3|) 65) (((-3 $ "failed") (-407 |#3|)) NIL (|has| (-407 |#2|) (-363)))) (-3951 (((-3 $ "failed") $) NIL)) (-2443 (((-640 (-640 |#1|))) NIL (|has| |#1| (-368)))) (-1465 (((-112) |#1| |#1|) NIL)) (-2521 (((-917)) NIL)) (-1690 (($) NIL (|has| (-407 |#2|) (-368)))) (-1409 (((-112)) NIL)) (-1398 (((-112) |#1|) 56) (((-112) |#2|) 150)) (-3054 (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| (-407 |#2|) (-363)))) (-4151 (($ $) NIL)) (-4036 (($) NIL (|has| (-407 |#2|) (-349)))) (-1656 (((-112) $) NIL (|has| (-407 |#2|) (-349)))) (-3188 (($ $ (-767)) NIL (|has| (-407 |#2|) (-349))) (($ $) NIL (|has| (-407 |#2|) (-349)))) (-2560 (((-112) $) NIL (|has| (-407 |#2|) (-363)))) (-1775 (((-917) $) NIL (|has| (-407 |#2|) (-349))) (((-829 (-917)) $) NIL (|has| (-407 |#2|) (-349)))) (-3401 (((-112) $) NIL)) (-1419 (((-767)) NIL)) (-1349 (((-1257 $) (-1257 $)) NIL)) (-3975 (((-407 |#2|) $) NIL)) (-2454 (((-640 (-948 |#1|)) (-1169)) NIL (|has| |#1| (-363)))) (-1983 (((-3 $ "failed") $) NIL (|has| (-407 |#2|) (-349)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| (-407 |#2|) (-363)))) (-4035 ((|#3| $) NIL (|has| (-407 |#2|) (-363)))) (-3990 (((-917) $) NIL (|has| (-407 |#2|) (-368)))) (-2433 ((|#3| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| (-407 |#2|) (-363))) (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-3854 (((-1151) $) NIL)) (-2546 (((-684 (-407 |#2|))) 52)) (-1319 (((-684 (-407 |#2|))) 51)) (-2687 (($ $) NIL (|has| (-407 |#2|) (-363)))) (-2510 (($ (-1257 |#2|) |#2|) 71)) (-1308 (((-684 (-407 |#2|))) 50)) (-1330 (((-684 (-407 |#2|))) 49)) (-2499 (((-2 (|:| |num| (-684 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 86)) (-2524 (((-2 (|:| |num| (-1257 |#2|)) (|:| |den| |#2|)) $) 77)) (-1387 (((-1257 $)) 46)) (-3608 (((-1257 $)) 45)) (-1377 (((-112) $) NIL)) (-1368 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-2522 (($) NIL (|has| (-407 |#2|) (-349)) CONST)) (-2552 (($ (-917)) NIL (|has| (-407 |#2|) (-368)))) (-2477 (((-3 |#2| "failed")) 63)) (-1693 (((-1113) $) NIL)) (-1486 (((-767)) NIL)) (-4334 (($) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| (-407 |#2|) (-363)))) (-3551 (($ (-640 $)) NIL (|has| (-407 |#2|) (-363))) (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) NIL (|has| (-407 |#2|) (-349)))) (-2173 (((-418 $) $) NIL (|has| (-407 |#2|) (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-407 |#2|) (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| (-407 |#2|) (-363)))) (-3012 (((-3 $ "failed") $ $) NIL (|has| (-407 |#2|) (-363)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| (-407 |#2|) (-363)))) (-1993 (((-767) $) NIL (|has| (-407 |#2|) (-363)))) (-2308 ((|#1| $ |#1| |#1|) NIL)) (-2489 (((-3 |#2| "failed")) 62)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| (-407 |#2|) (-363)))) (-1623 (((-407 |#2|) (-1257 $)) NIL) (((-407 |#2|)) 42)) (-3196 (((-767) $) NIL (|has| (-407 |#2|) (-349))) (((-3 (-767) "failed") $ $) NIL (|has| (-407 |#2|) (-349)))) (-4203 (($ $ (-1 (-407 |#2|) (-407 |#2|)) (-767)) NIL (|has| (-407 |#2|) (-363))) (($ $ (-1 (-407 |#2|) (-407 |#2|))) NIL (|has| (-407 |#2|) (-363))) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-767)) NIL (-4034 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349)))) (($ $) NIL (-4034 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349))))) (-3388 (((-684 (-407 |#2|)) (-1257 $) (-1 (-407 |#2|) (-407 |#2|))) NIL (|has| (-407 |#2|) (-363)))) (-3402 ((|#3|) 53)) (-1586 (($) NIL (|has| (-407 |#2|) (-349)))) (-3759 (((-1257 (-407 |#2|)) $ (-1257 $)) NIL) (((-684 (-407 |#2|)) (-1257 $) (-1257 $)) NIL) (((-1257 (-407 |#2|)) $) 72) (((-684 (-407 |#2|)) (-1257 $)) NIL)) (-2219 (((-1257 (-407 |#2|)) $) NIL) (($ (-1257 (-407 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| (-407 |#2|) (-349)))) (-1359 (((-1257 $) (-1257 $)) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 |#2|)) NIL) (($ (-407 (-563))) NIL (-4034 (|has| (-407 |#2|) (-1034 (-407 (-563)))) (|has| (-407 |#2|) (-363)))) (($ $) NIL (|has| (-407 |#2|) (-363)))) (-2047 (($ $) NIL (|has| (-407 |#2|) (-349))) (((-3 $ "failed") $) NIL (|has| (-407 |#2|) (-145)))) (-1892 ((|#3| $) NIL)) (-3914 (((-767)) NIL)) (-1452 (((-112)) 60)) (-1443 (((-112) |#1|) 154) (((-112) |#2|) 155)) (-4013 (((-1257 $)) 125)) (-3223 (((-112) $ $) NIL (|has| (-407 |#2|) (-363)))) (-2465 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-1475 (((-112)) NIL)) (-2239 (($) 94 T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-1 (-407 |#2|) (-407 |#2|)) (-767)) NIL (|has| (-407 |#2|) (-363))) (($ $ (-1 (-407 |#2|) (-407 |#2|))) NIL (|has| (-407 |#2|) (-363))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| (-407 |#2|) (-363)) (|has| (-407 |#2|) (-896 (-1169))))) (($ $ (-767)) NIL (-4034 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349)))) (($ $) NIL (-4034 (-12 (|has| (-407 |#2|) (-233)) (|has| (-407 |#2|) (-363))) (|has| (-407 |#2|) (-349))))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL (|has| (-407 |#2|) (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| (-407 |#2|) (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 |#2|)) NIL) (($ (-407 |#2|) $) NIL) (($ (-407 (-563)) $) NIL (|has| (-407 |#2|) (-363))) (($ $ (-407 (-563))) NIL (|has| (-407 |#2|) (-363)))))
(((-999 |#1| |#2| |#3| |#4| |#5|) (-342 |#1| |#2| |#3|) (-1212) (-1233 |#1|) (-1233 (-407 |#2|)) (-407 |#2|) (-767)) (T -999))
NIL
(-342 |#1| |#2| |#3|)
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3609 (((-640 (-563)) $) 54)) (-1564 (($ (-640 (-563))) 62)) (-3401 (((-563) $) 40 (|has| (-563) (-307)))) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-1919 (((-112) $ $) NIL)) (-1857 (((-563) $) NIL (|has| (-563) (-816)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) 49) (((-3 (-1169) "failed") $) NIL (|has| (-563) (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) 47 (|has| (-563) (-1034 (-563)))) (((-3 (-563) "failed") $) 49 (|has| (-563) (-1034 (-563))))) (-2058 (((-563) $) NIL) (((-1169) $) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| (-563) (-1034 (-563)))) (((-563) $) NIL (|has| (-563) (-1034 (-563))))) (-3090 (($ $ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1691 (($) NIL (|has| (-563) (-545)))) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-4308 (((-640 (-563)) $) 60)) (-3101 (((-112) $) NIL (|has| (-563) (-816)))) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-563) (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-563) (-882 (-379))))) (-3827 (((-112) $) NIL)) (-2711 (($ $) NIL)) (-2143 (((-563) $) 37)) (-2408 (((-3 $ "failed") $) NIL (|has| (-563) (-1144)))) (-1419 (((-112) $) NIL (|has| (-563) (-816)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3084 (($ $ $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| (-563) (-846)))) (-2240 (($ (-1 (-563) (-563)) $) NIL)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL)) (-2523 (($) NIL (|has| (-563) (-1144)) CONST)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-4215 (($ $) NIL (|has| (-563) (-307))) (((-407 (-563)) $) 42)) (-1764 (((-1149 (-563)) $) 59)) (-4217 (($ (-640 (-563)) (-640 (-563))) 63)) (-1583 (((-563) $) 53 (|has| (-563) (-545)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2174 (((-418 $) $) NIL)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1540 (($ $ (-640 (-563)) (-640 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-563) (-563)) NIL (|has| (-563) (-309 (-563)))) (($ $ (-294 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-294 (-563)))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-1169)) (-640 (-563))) NIL (|has| (-563) (-514 (-1169) (-563)))) (($ $ (-1169) (-563)) NIL (|has| (-563) (-514 (-1169) (-563))))) (-2628 (((-767) $) NIL)) (-2309 (($ $ (-563)) NIL (|has| (-563) (-286 (-563) (-563))))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-4202 (($ $) 11 (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-1801 (($ $) NIL)) (-2154 (((-563) $) 39)) (-3809 (((-640 (-563)) $) 61)) (-2220 (((-888 (-563)) $) NIL (|has| (-563) (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| (-563) (-611 (-888 (-379))))) (((-536) $) NIL (|has| (-563) (-611 (-536)))) (((-379) $) NIL (|has| (-563) (-1018))) (((-225) $) NIL (|has| (-563) (-1018)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-563) (-905))))) (-1693 (((-858) $) 77) (($ (-563)) 43) (($ $) NIL) (($ (-407 (-563))) 20) (($ (-563)) 43) (($ (-1169)) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) 18)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| (-563) (-905))) (|has| (-563) (-145))))) (-1675 (((-767)) 9)) (-4194 (((-563) $) 51 (|has| (-563) (-545)))) (-2126 (((-112) $ $) NIL)) (-2509 (($ $) NIL (|has| (-563) (-816)))) (-2241 (($) 10 T CONST)) (-2254 (($) 12 T CONST)) (-3209 (($ $) NIL (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-1778 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1756 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1718 (((-112) $ $) 14)) (-1768 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1744 (((-112) $ $) 33 (|has| (-563) (-846)))) (-1837 (($ $ $) 29) (($ (-563) (-563)) 31)) (-1826 (($ $) 15) (($ $ $) 23)) (-1814 (($ $ $) 21)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 25) (($ $ $) 27) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ (-563) $) 25) (($ $ (-563)) NIL)))
-(((-1000 |#1|) (-13 (-988 (-563)) (-610 (-407 (-563))) (-10 -8 (-15 -4215 ((-407 (-563)) $)) (-15 -3609 ((-640 (-563)) $)) (-15 -1764 ((-1149 (-563)) $)) (-15 -4308 ((-640 (-563)) $)) (-15 -3809 ((-640 (-563)) $)) (-15 -1564 ($ (-640 (-563)))) (-15 -4217 ($ (-640 (-563)) (-640 (-563)))))) (-563)) (T -1000))
-((-4215 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))) (-3609 (*1 *2 *1) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))) (-1764 (*1 *2 *1) (-12 (-5 *2 (-1149 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))) (-4308 (*1 *2 *1) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))) (-3809 (*1 *2 *1) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))) (-1564 (*1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))) (-4217 (*1 *1 *2 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))))
-(-13 (-988 (-563)) (-610 (-407 (-563))) (-10 -8 (-15 -4215 ((-407 (-563)) $)) (-15 -3609 ((-640 (-563)) $)) (-15 -1764 ((-1149 (-563)) $)) (-15 -4308 ((-640 (-563)) $)) (-15 -3809 ((-640 (-563)) $)) (-15 -1564 ($ (-640 (-563)))) (-15 -4217 ($ (-640 (-563)) (-640 (-563))))))
-((-3103 (((-52) (-407 (-563)) (-563)) 9)))
-(((-1001) (-10 -7 (-15 -3103 ((-52) (-407 (-563)) (-563))))) (T -1001))
-((-3103 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-563))) (-5 *4 (-563)) (-5 *2 (-52)) (-5 *1 (-1001)))))
-(-10 -7 (-15 -3103 ((-52) (-407 (-563)) (-563))))
-((-3749 (((-563)) 13)) (-2682 (((-563)) 16)) (-1614 (((-1262) (-563)) 15)) (-1885 (((-563) (-563)) 17) (((-563)) 12)))
-(((-1002) (-10 -7 (-15 -1885 ((-563))) (-15 -3749 ((-563))) (-15 -1885 ((-563) (-563))) (-15 -1614 ((-1262) (-563))) (-15 -2682 ((-563))))) (T -1002))
-((-2682 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1002)))) (-1614 (*1 *2 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-1002)))) (-1885 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1002)))) (-3749 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1002)))) (-1885 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1002)))))
-(-10 -7 (-15 -1885 ((-563))) (-15 -3749 ((-563))) (-15 -1885 ((-563) (-563))) (-15 -1614 ((-1262) (-563))) (-15 -2682 ((-563))))
-((-2184 (((-418 |#1|) |#1|) 41)) (-2174 (((-418 |#1|) |#1|) 40)))
-(((-1003 |#1|) (-10 -7 (-15 -2174 ((-418 |#1|) |#1|)) (-15 -2184 ((-418 |#1|) |#1|))) (-1233 (-407 (-563)))) (T -1003))
-((-2184 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-1003 *3)) (-4 *3 (-1233 (-407 (-563)))))) (-2174 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-1003 *3)) (-4 *3 (-1233 (-407 (-563)))))))
-(-10 -7 (-15 -2174 ((-418 |#1|) |#1|)) (-15 -2184 ((-418 |#1|) |#1|)))
-((-3909 (((-3 (-407 (-563)) "failed") |#1|) 15)) (-2239 (((-112) |#1|) 14)) (-2651 (((-407 (-563)) |#1|) 10)))
-(((-1004 |#1|) (-10 -7 (-15 -2651 ((-407 (-563)) |#1|)) (-15 -2239 ((-112) |#1|)) (-15 -3909 ((-3 (-407 (-563)) "failed") |#1|))) (-1034 (-407 (-563)))) (T -1004))
-((-3909 (*1 *2 *3) (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-1004 *3)) (-4 *3 (-1034 *2)))) (-2239 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1004 *3)) (-4 *3 (-1034 (-407 (-563)))))) (-2651 (*1 *2 *3) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-1004 *3)) (-4 *3 (-1034 *2)))))
-(-10 -7 (-15 -2651 ((-407 (-563)) |#1|)) (-15 -2239 ((-112) |#1|)) (-15 -3909 ((-3 (-407 (-563)) "failed") |#1|)))
-((-1849 ((|#2| $ "value" |#2|) 12)) (-2309 ((|#2| $ "value") 10)) (-2962 (((-112) $ $) 18)))
-(((-1005 |#1| |#2|) (-10 -8 (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -2962 ((-112) |#1| |#1|)) (-15 -2309 (|#2| |#1| "value"))) (-1006 |#2|) (-1208)) (T -1005))
-NIL
-(-10 -8 (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -2962 ((-112) |#1| |#1|)) (-15 -2309 (|#2| |#1| "value")))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2619 ((|#1| $) 48)) (-2759 (((-112) $ (-767)) 8)) (-2936 ((|#1| $ |#1|) 39 (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) 41 (|has| $ (-6 -4408)))) (-4239 (($) 7 T CONST)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) 50)) (-1469 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-2512 (((-640 |#1|) $) 45)) (-2194 (((-112) $) 49)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ "value") 47)) (-4071 (((-563) $ $) 44)) (-1434 (((-112) $) 46)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) 51)) (-2962 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2252 (((-640 (-563)) $) 54)) (-2199 (($ (-640 (-563))) 62)) (-3944 (((-563) $) 40 (|has| (-563) (-307)))) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2003 (((-112) $ $) NIL)) (-2807 (((-563) $) NIL (|has| (-563) (-816)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) 49) (((-3 (-1169) "failed") $) NIL (|has| (-563) (-1034 (-1169)))) (((-3 (-407 (-563)) "failed") $) 47 (|has| (-563) (-1034 (-563)))) (((-3 (-563) "failed") $) 49 (|has| (-563) (-1034 (-563))))) (-2057 (((-563) $) NIL) (((-1169) $) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) NIL (|has| (-563) (-1034 (-563)))) (((-563) $) NIL (|has| (-563) (-1034 (-563))))) (-3094 (($ $ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| (-563) (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1690 (($) NIL (|has| (-563) (-545)))) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-2222 (((-640 (-563)) $) 60)) (-3414 (((-112) $) NIL (|has| (-563) (-816)))) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (|has| (-563) (-882 (-563)))) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (|has| (-563) (-882 (-379))))) (-3401 (((-112) $) NIL)) (-2043 (($ $) NIL)) (-2143 (((-563) $) 37)) (-1983 (((-3 $ "failed") $) NIL (|has| (-563) (-1144)))) (-3426 (((-112) $) NIL (|has| (-563) (-816)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3088 (($ $ $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| (-563) (-846)))) (-2238 (($ (-1 (-563) (-563)) $) NIL)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL)) (-2522 (($) NIL (|has| (-563) (-1144)) CONST)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3935 (($ $) NIL (|has| (-563) (-307))) (((-407 (-563)) $) 42)) (-2237 (((-1149 (-563)) $) 59)) (-2187 (($ (-640 (-563)) (-640 (-563))) 63)) (-3954 (((-563) $) 53 (|has| (-563) (-545)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| (-563) (-905)))) (-2173 (((-418 $) $) NIL)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1542 (($ $ (-640 (-563)) (-640 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-563) (-563)) NIL (|has| (-563) (-309 (-563)))) (($ $ (-294 (-563))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-294 (-563)))) NIL (|has| (-563) (-309 (-563)))) (($ $ (-640 (-1169)) (-640 (-563))) NIL (|has| (-563) (-514 (-1169) (-563)))) (($ $ (-1169) (-563)) NIL (|has| (-563) (-514 (-1169) (-563))))) (-1993 (((-767) $) NIL)) (-2308 (($ $ (-563)) NIL (|has| (-563) (-286 (-563) (-563))))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-4203 (($ $) 11 (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-2033 (($ $) NIL)) (-2153 (((-563) $) 39)) (-2209 (((-640 (-563)) $) 61)) (-2219 (((-888 (-563)) $) NIL (|has| (-563) (-611 (-888 (-563))))) (((-888 (-379)) $) NIL (|has| (-563) (-611 (-888 (-379))))) (((-536) $) NIL (|has| (-563) (-611 (-536)))) (((-379) $) NIL (|has| (-563) (-1018))) (((-225) $) NIL (|has| (-563) (-1018)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-563) (-905))))) (-1692 (((-858) $) 77) (($ (-563)) 43) (($ $) NIL) (($ (-407 (-563))) 20) (($ (-563)) 43) (($ (-1169)) NIL (|has| (-563) (-1034 (-1169)))) (((-407 (-563)) $) 18)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| (-563) (-905))) (|has| (-563) (-145))))) (-3914 (((-767)) 9)) (-3965 (((-563) $) 51 (|has| (-563) (-545)))) (-3223 (((-112) $ $) NIL)) (-1462 (($ $) NIL (|has| (-563) (-816)))) (-2239 (($) 10 T CONST)) (-2253 (($) 12 T CONST)) (-3213 (($ $) NIL (|has| (-563) (-233))) (($ $ (-767)) NIL (|has| (-563) (-233))) (($ $ (-1169)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| (-563) (-896 (-1169)))) (($ $ (-1 (-563) (-563)) (-767)) NIL) (($ $ (-1 (-563) (-563))) NIL)) (-1779 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1754 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1718 (((-112) $ $) 14)) (-1766 (((-112) $ $) NIL (|has| (-563) (-846)))) (-1743 (((-112) $ $) 33 (|has| (-563) (-846)))) (-1836 (($ $ $) 29) (($ (-563) (-563)) 31)) (-1825 (($ $) 15) (($ $ $) 23)) (-1813 (($ $ $) 21)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 25) (($ $ $) 27) (($ $ (-407 (-563))) NIL) (($ (-407 (-563)) $) NIL) (($ (-563) $) 25) (($ $ (-563)) NIL)))
+(((-1000 |#1|) (-13 (-988 (-563)) (-610 (-407 (-563))) (-10 -8 (-15 -3935 ((-407 (-563)) $)) (-15 -2252 ((-640 (-563)) $)) (-15 -2237 ((-1149 (-563)) $)) (-15 -2222 ((-640 (-563)) $)) (-15 -2209 ((-640 (-563)) $)) (-15 -2199 ($ (-640 (-563)))) (-15 -2187 ($ (-640 (-563)) (-640 (-563)))))) (-563)) (T -1000))
+((-3935 (*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))) (-2252 (*1 *2 *1) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))) (-2237 (*1 *2 *1) (-12 (-5 *2 (-1149 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))) (-2222 (*1 *2 *1) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))) (-2209 (*1 *2 *1) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))) (-2199 (*1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))) (-2187 (*1 *1 *2 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))))
+(-13 (-988 (-563)) (-610 (-407 (-563))) (-10 -8 (-15 -3935 ((-407 (-563)) $)) (-15 -2252 ((-640 (-563)) $)) (-15 -2237 ((-1149 (-563)) $)) (-15 -2222 ((-640 (-563)) $)) (-15 -2209 ((-640 (-563)) $)) (-15 -2199 ($ (-640 (-563)))) (-15 -2187 ($ (-640 (-563)) (-640 (-563))))))
+((-2263 (((-52) (-407 (-563)) (-563)) 9)))
+(((-1001) (-10 -7 (-15 -2263 ((-52) (-407 (-563)) (-563))))) (T -1001))
+((-2263 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-563))) (-5 *4 (-563)) (-5 *2 (-52)) (-5 *1 (-1001)))))
+(-10 -7 (-15 -2263 ((-52) (-407 (-563)) (-563))))
+((-3750 (((-563)) 13)) (-2296 (((-563)) 16)) (-2283 (((-1262) (-563)) 15)) (-2273 (((-563) (-563)) 17) (((-563)) 12)))
+(((-1002) (-10 -7 (-15 -2273 ((-563))) (-15 -3750 ((-563))) (-15 -2273 ((-563) (-563))) (-15 -2283 ((-1262) (-563))) (-15 -2296 ((-563))))) (T -1002))
+((-2296 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1002)))) (-2283 (*1 *2 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-1002)))) (-2273 (*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1002)))) (-3750 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1002)))) (-2273 (*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1002)))))
+(-10 -7 (-15 -2273 ((-563))) (-15 -3750 ((-563))) (-15 -2273 ((-563) (-563))) (-15 -2283 ((-1262) (-563))) (-15 -2296 ((-563))))
+((-2619 (((-418 |#1|) |#1|) 41)) (-2173 (((-418 |#1|) |#1|) 40)))
+(((-1003 |#1|) (-10 -7 (-15 -2173 ((-418 |#1|) |#1|)) (-15 -2619 ((-418 |#1|) |#1|))) (-1233 (-407 (-563)))) (T -1003))
+((-2619 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-1003 *3)) (-4 *3 (-1233 (-407 (-563)))))) (-2173 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-1003 *3)) (-4 *3 (-1233 (-407 (-563)))))))
+(-10 -7 (-15 -2173 ((-418 |#1|) |#1|)) (-15 -2619 ((-418 |#1|) |#1|)))
+((-2327 (((-3 (-407 (-563)) "failed") |#1|) 15)) (-2317 (((-112) |#1|) 14)) (-2306 (((-407 (-563)) |#1|) 10)))
+(((-1004 |#1|) (-10 -7 (-15 -2306 ((-407 (-563)) |#1|)) (-15 -2317 ((-112) |#1|)) (-15 -2327 ((-3 (-407 (-563)) "failed") |#1|))) (-1034 (-407 (-563)))) (T -1004))
+((-2327 (*1 *2 *3) (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-1004 *3)) (-4 *3 (-1034 *2)))) (-2317 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1004 *3)) (-4 *3 (-1034 (-407 (-563)))))) (-2306 (*1 *2 *3) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-1004 *3)) (-4 *3 (-1034 *2)))))
+(-10 -7 (-15 -2306 ((-407 (-563)) |#1|)) (-15 -2317 ((-112) |#1|)) (-15 -2327 ((-3 (-407 (-563)) "failed") |#1|)))
+((-1849 ((|#2| $ "value" |#2|) 12)) (-2308 ((|#2| $ "value") 10)) (-2367 (((-112) $ $) 18)))
+(((-1005 |#1| |#2|) (-10 -8 (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -2367 ((-112) |#1| |#1|)) (-15 -2308 (|#2| |#1| "value"))) (-1006 |#2|) (-1208)) (T -1005))
+NIL
+(-10 -8 (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -2367 ((-112) |#1| |#1|)) (-15 -2308 (|#2| |#1| "value")))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2618 ((|#1| $) 48)) (-3001 (((-112) $ (-767)) 8)) (-2336 ((|#1| $ |#1|) 39 (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) 41 (|has| $ (-6 -4409)))) (-2569 (($) 7 T CONST)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) 50)) (-2358 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-2511 (((-640 |#1|) $) 45)) (-1298 (((-112) $) 49)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ "value") 47)) (-2379 (((-563) $ $) 44)) (-2889 (((-112) $) 46)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) 51)) (-2367 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-1006 |#1|) (-140) (-1208)) (T -1006))
-((-4258 (*1 *2 *1) (-12 (-4 *3 (-1208)) (-5 *2 (-640 *1)) (-4 *1 (-1006 *3)))) (-2071 (*1 *2 *1) (-12 (-4 *3 (-1208)) (-5 *2 (-640 *1)) (-4 *1 (-1006 *3)))) (-2194 (*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))) (-2619 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-1208)))) (-2309 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-1006 *2)) (-4 *2 (-1208)))) (-1434 (*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))) (-2512 (*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-5 *2 (-640 *3)))) (-4071 (*1 *2 *1 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-5 *2 (-563)))) (-2962 (*1 *2 *1 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-4 *3 (-1093)) (-5 *2 (-112)))) (-1469 (*1 *2 *1 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-4 *3 (-1093)) (-5 *2 (-112)))) (-2811 (*1 *1 *1 *2) (-12 (-5 *2 (-640 *1)) (|has| *1 (-6 -4408)) (-4 *1 (-1006 *3)) (-4 *3 (-1208)))) (-1849 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4408)) (-4 *1 (-1006 *2)) (-4 *2 (-1208)))) (-2936 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-1006 *2)) (-4 *2 (-1208)))))
-(-13 (-489 |t#1|) (-10 -8 (-15 -4258 ((-640 $) $)) (-15 -2071 ((-640 $) $)) (-15 -2194 ((-112) $)) (-15 -2619 (|t#1| $)) (-15 -2309 (|t#1| $ "value")) (-15 -1434 ((-112) $)) (-15 -2512 ((-640 |t#1|) $)) (-15 -4071 ((-563) $ $)) (IF (|has| |t#1| (-1093)) (PROGN (-15 -2962 ((-112) $ $)) (-15 -1469 ((-112) $ $))) |%noBranch|) (IF (|has| $ (-6 -4408)) (PROGN (-15 -2811 ($ $ (-640 $))) (-15 -1849 (|t#1| $ "value" |t#1|)) (-15 -2936 (|t#1| $ |t#1|))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-2186 (($ $) 9) (($ $ (-917)) 43) (($ (-407 (-563))) 13) (($ (-563)) 15)) (-3457 (((-3 $ "failed") (-1165 $) (-917) (-858)) 23) (((-3 $ "failed") (-1165 $) (-917)) 28)) (-1645 (($ $ (-563)) 49)) (-1675 (((-767)) 17)) (-2783 (((-640 $) (-1165 $)) NIL) (((-640 $) (-1165 (-407 (-563)))) 54) (((-640 $) (-1165 (-563))) 59) (((-640 $) (-948 $)) 63) (((-640 $) (-948 (-407 (-563)))) 67) (((-640 $) (-948 (-563))) 71)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL) (($ $ (-407 (-563))) 47)))
-(((-1007 |#1|) (-10 -8 (-15 -2186 (|#1| (-563))) (-15 -2186 (|#1| (-407 (-563)))) (-15 -2186 (|#1| |#1| (-917))) (-15 -2783 ((-640 |#1|) (-948 (-563)))) (-15 -2783 ((-640 |#1|) (-948 (-407 (-563))))) (-15 -2783 ((-640 |#1|) (-948 |#1|))) (-15 -2783 ((-640 |#1|) (-1165 (-563)))) (-15 -2783 ((-640 |#1|) (-1165 (-407 (-563))))) (-15 -2783 ((-640 |#1|) (-1165 |#1|))) (-15 -3457 ((-3 |#1| "failed") (-1165 |#1|) (-917))) (-15 -3457 ((-3 |#1| "failed") (-1165 |#1|) (-917) (-858))) (-15 ** (|#1| |#1| (-407 (-563)))) (-15 -1645 (|#1| |#1| (-563))) (-15 -2186 (|#1| |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 -1675 ((-767))) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917)))) (-1008)) (T -1007))
-((-1675 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1007 *3)) (-4 *3 (-1008)))))
-(-10 -8 (-15 -2186 (|#1| (-563))) (-15 -2186 (|#1| (-407 (-563)))) (-15 -2186 (|#1| |#1| (-917))) (-15 -2783 ((-640 |#1|) (-948 (-563)))) (-15 -2783 ((-640 |#1|) (-948 (-407 (-563))))) (-15 -2783 ((-640 |#1|) (-948 |#1|))) (-15 -2783 ((-640 |#1|) (-1165 (-563)))) (-15 -2783 ((-640 |#1|) (-1165 (-407 (-563))))) (-15 -2783 ((-640 |#1|) (-1165 |#1|))) (-15 -3457 ((-3 |#1| "failed") (-1165 |#1|) (-917))) (-15 -3457 ((-3 |#1| "failed") (-1165 |#1|) (-917) (-858))) (-15 ** (|#1| |#1| (-407 (-563)))) (-15 -1645 (|#1| |#1| (-563))) (-15 -2186 (|#1| |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 -1675 ((-767))) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 91)) (-4223 (($ $) 92)) (-3156 (((-112) $) 94)) (-1495 (((-3 $ "failed") $ $) 19)) (-4335 (($ $) 111)) (-3205 (((-418 $) $) 112)) (-2186 (($ $) 75) (($ $ (-917)) 61) (($ (-407 (-563))) 60) (($ (-563)) 59)) (-1919 (((-112) $ $) 102)) (-1857 (((-563) $) 128)) (-4239 (($) 17 T CONST)) (-3457 (((-3 $ "failed") (-1165 $) (-917) (-858)) 69) (((-3 $ "failed") (-1165 $) (-917)) 68)) (-2131 (((-3 (-563) "failed") $) 88 (|has| (-407 (-563)) (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 86 (|has| (-407 (-563)) (-1034 (-407 (-563))))) (((-3 (-407 (-563)) "failed") $) 83)) (-2058 (((-563) $) 87 (|has| (-407 (-563)) (-1034 (-563)))) (((-407 (-563)) $) 85 (|has| (-407 (-563)) (-1034 (-407 (-563))))) (((-407 (-563)) $) 84)) (-3928 (($ $ (-858)) 58)) (-3158 (($ $ (-858)) 57)) (-3090 (($ $ $) 106)) (-3400 (((-3 $ "failed") $) 33)) (-3050 (($ $ $) 105)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 100)) (-2468 (((-112) $) 113)) (-3101 (((-112) $) 126)) (-3827 (((-112) $) 31)) (-1645 (($ $ (-563)) 74)) (-1419 (((-112) $) 127)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 109)) (-3084 (($ $ $) 125)) (-1777 (($ $ $) 124)) (-2955 (((-3 (-1165 $) "failed") $) 70)) (-3947 (((-3 (-858) "failed") $) 72)) (-2348 (((-3 (-1165 $) "failed") $) 71)) (-3513 (($ (-640 $)) 98) (($ $ $) 97)) (-3573 (((-1151) $) 9)) (-2688 (($ $) 114)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 99)) (-3548 (($ (-640 $)) 96) (($ $ $) 95)) (-2174 (((-418 $) $) 110)) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 108) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 107)) (-3008 (((-3 $ "failed") $ $) 90)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 101)) (-2628 (((-767) $) 103)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 104)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 118) (($ $) 89) (($ (-407 (-563))) 82) (($ (-563)) 81) (($ (-407 (-563))) 78)) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 93)) (-1403 (((-407 (-563)) $ $) 56)) (-2783 (((-640 $) (-1165 $)) 67) (((-640 $) (-1165 (-407 (-563)))) 66) (((-640 $) (-1165 (-563))) 65) (((-640 $) (-948 $)) 64) (((-640 $) (-948 (-407 (-563)))) 63) (((-640 $) (-948 (-563))) 62)) (-2509 (($ $) 129)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1778 (((-112) $ $) 122)) (-1756 (((-112) $ $) 121)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 123)) (-1744 (((-112) $ $) 120)) (-1837 (($ $ $) 119)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 115) (($ $ (-407 (-563))) 73)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ (-407 (-563)) $) 117) (($ $ (-407 (-563))) 116) (($ (-563) $) 80) (($ $ (-563)) 79) (($ (-407 (-563)) $) 77) (($ $ (-407 (-563))) 76)))
+((-4345 (*1 *2 *1) (-12 (-4 *3 (-1208)) (-5 *2 (-640 *1)) (-4 *1 (-1006 *3)))) (-2390 (*1 *2 *1) (-12 (-4 *3 (-1208)) (-5 *2 (-640 *1)) (-4 *1 (-1006 *3)))) (-1298 (*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))) (-2618 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-1208)))) (-2308 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-1006 *2)) (-4 *2 (-1208)))) (-2889 (*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))) (-2511 (*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-5 *2 (-640 *3)))) (-2379 (*1 *2 *1 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-5 *2 (-563)))) (-2367 (*1 *2 *1 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-4 *3 (-1093)) (-5 *2 (-112)))) (-2358 (*1 *2 *1 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-4 *3 (-1093)) (-5 *2 (-112)))) (-2348 (*1 *1 *1 *2) (-12 (-5 *2 (-640 *1)) (|has| *1 (-6 -4409)) (-4 *1 (-1006 *3)) (-4 *3 (-1208)))) (-1849 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4409)) (-4 *1 (-1006 *2)) (-4 *2 (-1208)))) (-2336 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-1006 *2)) (-4 *2 (-1208)))))
+(-13 (-489 |t#1|) (-10 -8 (-15 -4345 ((-640 $) $)) (-15 -2390 ((-640 $) $)) (-15 -1298 ((-112) $)) (-15 -2618 (|t#1| $)) (-15 -2308 (|t#1| $ "value")) (-15 -2889 ((-112) $)) (-15 -2511 ((-640 |t#1|) $)) (-15 -2379 ((-563) $ $)) (IF (|has| |t#1| (-1093)) (PROGN (-15 -2367 ((-112) $ $)) (-15 -2358 ((-112) $ $))) |%noBranch|) (IF (|has| $ (-6 -4409)) (PROGN (-15 -2348 ($ $ (-640 $))) (-15 -1849 (|t#1| $ "value" |t#1|)) (-15 -2336 (|t#1| $ |t#1|))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-2185 (($ $) 9) (($ $ (-917)) 43) (($ (-407 (-563))) 13) (($ (-563)) 15)) (-3377 (((-3 $ "failed") (-1165 $) (-917) (-858)) 23) (((-3 $ "failed") (-1165 $) (-917)) 28)) (-2172 (($ $ (-563)) 49)) (-3914 (((-767)) 17)) (-3389 (((-640 $) (-1165 $)) NIL) (((-640 $) (-1165 (-407 (-563)))) 54) (((-640 $) (-1165 (-563))) 59) (((-640 $) (-948 $)) 63) (((-640 $) (-948 (-407 (-563)))) 67) (((-640 $) (-948 (-563))) 71)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL) (($ $ (-407 (-563))) 47)))
+(((-1007 |#1|) (-10 -8 (-15 -2185 (|#1| (-563))) (-15 -2185 (|#1| (-407 (-563)))) (-15 -2185 (|#1| |#1| (-917))) (-15 -3389 ((-640 |#1|) (-948 (-563)))) (-15 -3389 ((-640 |#1|) (-948 (-407 (-563))))) (-15 -3389 ((-640 |#1|) (-948 |#1|))) (-15 -3389 ((-640 |#1|) (-1165 (-563)))) (-15 -3389 ((-640 |#1|) (-1165 (-407 (-563))))) (-15 -3389 ((-640 |#1|) (-1165 |#1|))) (-15 -3377 ((-3 |#1| "failed") (-1165 |#1|) (-917))) (-15 -3377 ((-3 |#1| "failed") (-1165 |#1|) (-917) (-858))) (-15 ** (|#1| |#1| (-407 (-563)))) (-15 -2172 (|#1| |#1| (-563))) (-15 -2185 (|#1| |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 -3914 ((-767))) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917)))) (-1008)) (T -1007))
+((-3914 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1007 *3)) (-4 *3 (-1008)))))
+(-10 -8 (-15 -2185 (|#1| (-563))) (-15 -2185 (|#1| (-407 (-563)))) (-15 -2185 (|#1| |#1| (-917))) (-15 -3389 ((-640 |#1|) (-948 (-563)))) (-15 -3389 ((-640 |#1|) (-948 (-407 (-563))))) (-15 -3389 ((-640 |#1|) (-948 |#1|))) (-15 -3389 ((-640 |#1|) (-1165 (-563)))) (-15 -3389 ((-640 |#1|) (-1165 (-407 (-563))))) (-15 -3389 ((-640 |#1|) (-1165 |#1|))) (-15 -3377 ((-3 |#1| "failed") (-1165 |#1|) (-917))) (-15 -3377 ((-3 |#1| "failed") (-1165 |#1|) (-917) (-858))) (-15 ** (|#1| |#1| (-407 (-563)))) (-15 -2172 (|#1| |#1| (-563))) (-15 -2185 (|#1| |#1|)) (-15 ** (|#1| |#1| (-563))) (-15 -3914 ((-767))) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 91)) (-3231 (($ $) 92)) (-3211 (((-112) $) 94)) (-3905 (((-3 $ "failed") $ $) 19)) (-1798 (($ $) 111)) (-2802 (((-418 $) $) 112)) (-2185 (($ $) 75) (($ $ (-917)) 61) (($ (-407 (-563))) 60) (($ (-563)) 59)) (-2003 (((-112) $ $) 102)) (-2807 (((-563) $) 128)) (-2569 (($) 17 T CONST)) (-3377 (((-3 $ "failed") (-1165 $) (-917) (-858)) 69) (((-3 $ "failed") (-1165 $) (-917)) 68)) (-2130 (((-3 (-563) "failed") $) 88 (|has| (-407 (-563)) (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 86 (|has| (-407 (-563)) (-1034 (-407 (-563))))) (((-3 (-407 (-563)) "failed") $) 83)) (-2057 (((-563) $) 87 (|has| (-407 (-563)) (-1034 (-563)))) (((-407 (-563)) $) 85 (|has| (-407 (-563)) (-1034 (-407 (-563))))) (((-407 (-563)) $) 84)) (-2412 (($ $ (-858)) 58)) (-2400 (($ $ (-858)) 57)) (-3094 (($ $ $) 106)) (-3951 (((-3 $ "failed") $) 33)) (-3054 (($ $ $) 105)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 100)) (-2560 (((-112) $) 113)) (-3414 (((-112) $) 126)) (-3401 (((-112) $) 31)) (-2172 (($ $ (-563)) 74)) (-3426 (((-112) $) 127)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 109)) (-3088 (($ $ $) 125)) (-1776 (($ $ $) 124)) (-2423 (((-3 (-1165 $) "failed") $) 70)) (-2446 (((-3 (-858) "failed") $) 72)) (-2435 (((-3 (-1165 $) "failed") $) 71)) (-3517 (($ (-640 $)) 98) (($ $ $) 97)) (-3854 (((-1151) $) 9)) (-2687 (($ $) 114)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 99)) (-3551 (($ (-640 $)) 96) (($ $ $) 95)) (-2173 (((-418 $) $) 110)) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 108) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 107)) (-3012 (((-3 $ "failed") $ $) 90)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 101)) (-1993 (((-767) $) 103)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 104)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 118) (($ $) 89) (($ (-407 (-563))) 82) (($ (-563)) 81) (($ (-407 (-563))) 78)) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 93)) (-1402 (((-407 (-563)) $ $) 56)) (-3389 (((-640 $) (-1165 $)) 67) (((-640 $) (-1165 (-407 (-563)))) 66) (((-640 $) (-1165 (-563))) 65) (((-640 $) (-948 $)) 64) (((-640 $) (-948 (-407 (-563)))) 63) (((-640 $) (-948 (-563))) 62)) (-1462 (($ $) 129)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1779 (((-112) $ $) 122)) (-1754 (((-112) $ $) 121)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 123)) (-1743 (((-112) $ $) 120)) (-1836 (($ $ $) 119)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 115) (($ $ (-407 (-563))) 73)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ (-407 (-563)) $) 117) (($ $ (-407 (-563))) 116) (($ (-563) $) 80) (($ $ (-563)) 79) (($ (-407 (-563)) $) 77) (($ $ (-407 (-563))) 76)))
(((-1008) (-140)) (T -1008))
-((-2186 (*1 *1 *1) (-4 *1 (-1008))) (-3947 (*1 *2 *1) (|partial| -12 (-4 *1 (-1008)) (-5 *2 (-858)))) (-2348 (*1 *2 *1) (|partial| -12 (-5 *2 (-1165 *1)) (-4 *1 (-1008)))) (-2955 (*1 *2 *1) (|partial| -12 (-5 *2 (-1165 *1)) (-4 *1 (-1008)))) (-3457 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1165 *1)) (-5 *3 (-917)) (-5 *4 (-858)) (-4 *1 (-1008)))) (-3457 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1165 *1)) (-5 *3 (-917)) (-4 *1 (-1008)))) (-2783 (*1 *2 *3) (-12 (-5 *3 (-1165 *1)) (-4 *1 (-1008)) (-5 *2 (-640 *1)))) (-2783 (*1 *2 *3) (-12 (-5 *3 (-1165 (-407 (-563)))) (-5 *2 (-640 *1)) (-4 *1 (-1008)))) (-2783 (*1 *2 *3) (-12 (-5 *3 (-1165 (-563))) (-5 *2 (-640 *1)) (-4 *1 (-1008)))) (-2783 (*1 *2 *3) (-12 (-5 *3 (-948 *1)) (-4 *1 (-1008)) (-5 *2 (-640 *1)))) (-2783 (*1 *2 *3) (-12 (-5 *3 (-948 (-407 (-563)))) (-5 *2 (-640 *1)) (-4 *1 (-1008)))) (-2783 (*1 *2 *3) (-12 (-5 *3 (-948 (-563))) (-5 *2 (-640 *1)) (-4 *1 (-1008)))) (-2186 (*1 *1 *1 *2) (-12 (-4 *1 (-1008)) (-5 *2 (-917)))) (-2186 (*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-4 *1 (-1008)))) (-2186 (*1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-1008)))) (-3928 (*1 *1 *1 *2) (-12 (-4 *1 (-1008)) (-5 *2 (-858)))) (-3158 (*1 *1 *1 *2) (-12 (-4 *1 (-1008)) (-5 *2 (-858)))) (-1403 (*1 *2 *1 *1) (-12 (-4 *1 (-1008)) (-5 *2 (-407 (-563))))))
-(-13 (-147) (-844) (-172) (-363) (-411 (-407 (-563))) (-38 (-563)) (-38 (-407 (-563))) (-998) (-10 -8 (-15 -3947 ((-3 (-858) "failed") $)) (-15 -2348 ((-3 (-1165 $) "failed") $)) (-15 -2955 ((-3 (-1165 $) "failed") $)) (-15 -3457 ((-3 $ "failed") (-1165 $) (-917) (-858))) (-15 -3457 ((-3 $ "failed") (-1165 $) (-917))) (-15 -2783 ((-640 $) (-1165 $))) (-15 -2783 ((-640 $) (-1165 (-407 (-563))))) (-15 -2783 ((-640 $) (-1165 (-563)))) (-15 -2783 ((-640 $) (-948 $))) (-15 -2783 ((-640 $) (-948 (-407 (-563))))) (-15 -2783 ((-640 $) (-948 (-563)))) (-15 -2186 ($ $ (-917))) (-15 -2186 ($ $)) (-15 -2186 ($ (-407 (-563)))) (-15 -2186 ($ (-563))) (-15 -3928 ($ $ (-858))) (-15 -3158 ($ $ (-858))) (-15 -1403 ((-407 (-563)) $ $))))
+((-2185 (*1 *1 *1) (-4 *1 (-1008))) (-2446 (*1 *2 *1) (|partial| -12 (-4 *1 (-1008)) (-5 *2 (-858)))) (-2435 (*1 *2 *1) (|partial| -12 (-5 *2 (-1165 *1)) (-4 *1 (-1008)))) (-2423 (*1 *2 *1) (|partial| -12 (-5 *2 (-1165 *1)) (-4 *1 (-1008)))) (-3377 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1165 *1)) (-5 *3 (-917)) (-5 *4 (-858)) (-4 *1 (-1008)))) (-3377 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1165 *1)) (-5 *3 (-917)) (-4 *1 (-1008)))) (-3389 (*1 *2 *3) (-12 (-5 *3 (-1165 *1)) (-4 *1 (-1008)) (-5 *2 (-640 *1)))) (-3389 (*1 *2 *3) (-12 (-5 *3 (-1165 (-407 (-563)))) (-5 *2 (-640 *1)) (-4 *1 (-1008)))) (-3389 (*1 *2 *3) (-12 (-5 *3 (-1165 (-563))) (-5 *2 (-640 *1)) (-4 *1 (-1008)))) (-3389 (*1 *2 *3) (-12 (-5 *3 (-948 *1)) (-4 *1 (-1008)) (-5 *2 (-640 *1)))) (-3389 (*1 *2 *3) (-12 (-5 *3 (-948 (-407 (-563)))) (-5 *2 (-640 *1)) (-4 *1 (-1008)))) (-3389 (*1 *2 *3) (-12 (-5 *3 (-948 (-563))) (-5 *2 (-640 *1)) (-4 *1 (-1008)))) (-2185 (*1 *1 *1 *2) (-12 (-4 *1 (-1008)) (-5 *2 (-917)))) (-2185 (*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-4 *1 (-1008)))) (-2185 (*1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-1008)))) (-2412 (*1 *1 *1 *2) (-12 (-4 *1 (-1008)) (-5 *2 (-858)))) (-2400 (*1 *1 *1 *2) (-12 (-4 *1 (-1008)) (-5 *2 (-858)))) (-1402 (*1 *2 *1 *1) (-12 (-4 *1 (-1008)) (-5 *2 (-407 (-563))))))
+(-13 (-147) (-844) (-172) (-363) (-411 (-407 (-563))) (-38 (-563)) (-38 (-407 (-563))) (-998) (-10 -8 (-15 -2446 ((-3 (-858) "failed") $)) (-15 -2435 ((-3 (-1165 $) "failed") $)) (-15 -2423 ((-3 (-1165 $) "failed") $)) (-15 -3377 ((-3 $ "failed") (-1165 $) (-917) (-858))) (-15 -3377 ((-3 $ "failed") (-1165 $) (-917))) (-15 -3389 ((-640 $) (-1165 $))) (-15 -3389 ((-640 $) (-1165 (-407 (-563))))) (-15 -3389 ((-640 $) (-1165 (-563)))) (-15 -3389 ((-640 $) (-948 $))) (-15 -3389 ((-640 $) (-948 (-407 (-563))))) (-15 -3389 ((-640 $) (-948 (-563)))) (-15 -2185 ($ $ (-917))) (-15 -2185 ($ $)) (-15 -2185 ($ (-407 (-563)))) (-15 -2185 ($ (-563))) (-15 -2412 ($ $ (-858))) (-15 -2400 ($ $ (-858))) (-15 -1402 ((-407 (-563)) $ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-38 #1=(-563)) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-131) . T) ((-147) . T) ((-613 #0#) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-243) . T) ((-290) . T) ((-307) . T) ((-363) . T) ((-411 (-407 (-563))) . T) ((-452) . T) ((-555) . T) ((-643 #0#) . T) ((-643 #1#) . T) ((-643 $) . T) ((-713 #0#) . T) ((-713 #1#) . T) ((-713 $) . T) ((-722) . T) ((-787) . T) ((-788) . T) ((-790) . T) ((-791) . T) ((-844) . T) ((-846) . T) ((-916) . T) ((-998) . T) ((-1034 (-407 (-563))) . T) ((-1034 (-563)) |has| (-407 (-563)) (-1034 (-563))) ((-1051 #0#) . T) ((-1051 #1#) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1212) . T))
-((-2193 (((-2 (|:| |ans| |#2|) (|:| -1701 |#2|) (|:| |sol?| (-112))) (-563) |#2| |#2| (-1169) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-640 |#2|)) (-1 (-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 65)))
-(((-1009 |#1| |#2|) (-10 -7 (-15 -2193 ((-2 (|:| |ans| |#2|) (|:| -1701 |#2|) (|:| |sol?| (-112))) (-563) |#2| |#2| (-1169) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-640 |#2|)) (-1 (-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-27) (-430 |#1|))) (T -1009))
-((-2193 (*1 *2 *3 *4 *4 *5 *6 *7) (-12 (-5 *5 (-1169)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-640 *4))) (-5 *7 (-1 (-3 (-2 (|:| -3646 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1193) (-27) (-430 *8))) (-4 *8 (-13 (-452) (-846) (-147) (-1034 *3) (-636 *3))) (-5 *3 (-563)) (-5 *2 (-2 (|:| |ans| *4) (|:| -1701 *4) (|:| |sol?| (-112)))) (-5 *1 (-1009 *8 *4)))))
-(-10 -7 (-15 -2193 ((-2 (|:| |ans| |#2|) (|:| -1701 |#2|) (|:| |sol?| (-112))) (-563) |#2| |#2| (-1169) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-640 |#2|)) (-1 (-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-1600 (((-3 (-640 |#2|) "failed") (-563) |#2| |#2| |#2| (-1169) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-640 |#2|)) (-1 (-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 53)))
-(((-1010 |#1| |#2|) (-10 -7 (-15 -1600 ((-3 (-640 |#2|) "failed") (-563) |#2| |#2| |#2| (-1169) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-640 |#2|)) (-1 (-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-27) (-430 |#1|))) (T -1010))
-((-1600 (*1 *2 *3 *4 *4 *4 *5 *6 *7) (|partial| -12 (-5 *5 (-1169)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-640 *4))) (-5 *7 (-1 (-3 (-2 (|:| -3646 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1193) (-27) (-430 *8))) (-4 *8 (-13 (-452) (-846) (-147) (-1034 *3) (-636 *3))) (-5 *3 (-563)) (-5 *2 (-640 *4)) (-5 *1 (-1010 *8 *4)))))
-(-10 -7 (-15 -1600 ((-3 (-640 |#2|) "failed") (-563) |#2| |#2| |#2| (-1169) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-640 |#2|)) (-1 (-3 (-2 (|:| -3646 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-3373 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -1420 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-563)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-563) (-1 |#2| |#2|)) 31)) (-2592 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-407 |#2|)) (|:| |c| (-407 |#2|)) (|:| -2288 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-1 |#2| |#2|)) 59)) (-1692 (((-2 (|:| |ans| (-407 |#2|)) (|:| |nosol| (-112))) (-407 |#2|) (-407 |#2|)) 64)))
-(((-1011 |#1| |#2|) (-10 -7 (-15 -2592 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-407 |#2|)) (|:| |c| (-407 |#2|)) (|:| -2288 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-1 |#2| |#2|))) (-15 -1692 ((-2 (|:| |ans| (-407 |#2|)) (|:| |nosol| (-112))) (-407 |#2|) (-407 |#2|))) (-15 -3373 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -1420 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-563)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-563) (-1 |#2| |#2|)))) (-13 (-363) (-147) (-1034 (-563))) (-1233 |#1|)) (T -1011))
-((-3373 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1233 *6)) (-4 *6 (-13 (-363) (-147) (-1034 *4))) (-5 *4 (-563)) (-5 *2 (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112)))) (|:| -1420 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-1011 *6 *3)))) (-1692 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-563)))) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| |ans| (-407 *5)) (|:| |nosol| (-112)))) (-5 *1 (-1011 *4 *5)) (-5 *3 (-407 *5)))) (-2592 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-407 *6)) (|:| |c| (-407 *6)) (|:| -2288 *6))) (-5 *1 (-1011 *5 *6)) (-5 *3 (-407 *6)))))
-(-10 -7 (-15 -2592 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-407 |#2|)) (|:| |c| (-407 |#2|)) (|:| -2288 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-1 |#2| |#2|))) (-15 -1692 ((-2 (|:| |ans| (-407 |#2|)) (|:| |nosol| (-112))) (-407 |#2|) (-407 |#2|))) (-15 -3373 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -1420 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-563)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-563) (-1 |#2| |#2|))))
-((-2325 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-407 |#2|)) (|:| |h| |#2|) (|:| |c1| (-407 |#2|)) (|:| |c2| (-407 |#2|)) (|:| -2288 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|) (-1 |#2| |#2|)) 22)) (-3897 (((-3 (-640 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|)) 33)))
-(((-1012 |#1| |#2|) (-10 -7 (-15 -2325 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-407 |#2|)) (|:| |h| |#2|) (|:| |c1| (-407 |#2|)) (|:| |c2| (-407 |#2|)) (|:| -2288 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|) (-1 |#2| |#2|))) (-15 -3897 ((-3 (-640 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|)))) (-13 (-363) (-147) (-1034 (-563))) (-1233 |#1|)) (T -1012))
-((-3897 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-363) (-147) (-1034 (-563)))) (-4 *5 (-1233 *4)) (-5 *2 (-640 (-407 *5))) (-5 *1 (-1012 *4 *5)) (-5 *3 (-407 *5)))) (-2325 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-407 *6)) (|:| |h| *6) (|:| |c1| (-407 *6)) (|:| |c2| (-407 *6)) (|:| -2288 *6))) (-5 *1 (-1012 *5 *6)) (-5 *3 (-407 *6)))))
-(-10 -7 (-15 -2325 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-407 |#2|)) (|:| |h| |#2|) (|:| |c1| (-407 |#2|)) (|:| |c2| (-407 |#2|)) (|:| -2288 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|) (-1 |#2| |#2|))) (-15 -3897 ((-3 (-640 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|))))
-((-2601 (((-1 |#1|) (-640 (-2 (|:| -2619 |#1|) (|:| -1326 (-563))))) 37)) (-2916 (((-1 |#1|) (-1095 |#1|)) 45)) (-1618 (((-1 |#1|) (-1257 |#1|) (-1257 (-563)) (-563)) 34)))
-(((-1013 |#1|) (-10 -7 (-15 -2916 ((-1 |#1|) (-1095 |#1|))) (-15 -2601 ((-1 |#1|) (-640 (-2 (|:| -2619 |#1|) (|:| -1326 (-563)))))) (-15 -1618 ((-1 |#1|) (-1257 |#1|) (-1257 (-563)) (-563)))) (-1093)) (T -1013))
-((-1618 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1257 *6)) (-5 *4 (-1257 (-563))) (-5 *5 (-563)) (-4 *6 (-1093)) (-5 *2 (-1 *6)) (-5 *1 (-1013 *6)))) (-2601 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -2619 *4) (|:| -1326 (-563))))) (-4 *4 (-1093)) (-5 *2 (-1 *4)) (-5 *1 (-1013 *4)))) (-2916 (*1 *2 *3) (-12 (-5 *3 (-1095 *4)) (-4 *4 (-1093)) (-5 *2 (-1 *4)) (-5 *1 (-1013 *4)))))
-(-10 -7 (-15 -2916 ((-1 |#1|) (-1095 |#1|))) (-15 -2601 ((-1 |#1|) (-640 (-2 (|:| -2619 |#1|) (|:| -1326 (-563)))))) (-15 -1618 ((-1 |#1|) (-1257 |#1|) (-1257 (-563)) (-563))))
-((-3254 (((-767) (-336 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
-(((-1014 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3254 ((-767) (-336 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)))) (-363) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|) (-13 (-368) (-363))) (T -1014))
-((-3254 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-336 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-363)) (-4 *7 (-1233 *6)) (-4 *4 (-1233 (-407 *7))) (-4 *8 (-342 *6 *7 *4)) (-4 *9 (-13 (-368) (-363))) (-5 *2 (-767)) (-5 *1 (-1014 *6 *7 *4 *8 *9)))))
-(-10 -7 (-15 -3254 ((-767) (-336 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
-((-1677 (((-112) $ $) NIL)) (-2361 (((-1128) $) 9)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3359 (((-1128) $) 11)) (-1718 (((-112) $ $) NIL)))
-(((-1015) (-13 (-1076) (-10 -8 (-15 -2361 ((-1128) $)) (-15 -3359 ((-1128) $))))) (T -1015))
-((-2361 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1015)))) (-3359 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1015)))))
-(-13 (-1076) (-10 -8 (-15 -2361 ((-1128) $)) (-15 -3359 ((-1128) $))))
-((-1441 (((-3 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) "failed") |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) 31) (((-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-407 (-563))) 28)) (-4212 (((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-407 (-563))) 33) (((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-407 (-563))) 29) (((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) 32) (((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1|) 27)) (-2306 (((-640 (-407 (-563))) (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) 19)) (-2723 (((-407 (-563)) (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) 16)))
-(((-1016 |#1|) (-10 -7 (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1|)) (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-407 (-563)))) (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-407 (-563)))) (-15 -1441 ((-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-407 (-563)))) (-15 -1441 ((-3 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) "failed") |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) (-15 -2723 ((-407 (-563)) (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) (-15 -2306 ((-640 (-407 (-563))) (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))))) (-1233 (-563))) (T -1016))
-((-2306 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) (-5 *2 (-640 (-407 (-563)))) (-5 *1 (-1016 *4)) (-4 *4 (-1233 (-563))))) (-2723 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) (-5 *2 (-407 (-563))) (-5 *1 (-1016 *4)) (-4 *4 (-1233 (-563))))) (-1441 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563))))) (-1441 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) (-5 *4 (-407 (-563))) (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563))))) (-4212 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-407 (-563))) (-5 *2 (-640 (-2 (|:| -1686 *5) (|:| -1701 *5)))) (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563))) (-5 *4 (-2 (|:| -1686 *5) (|:| -1701 *5))))) (-4212 (*1 *2 *3 *4) (-12 (-5 *2 (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563))) (-5 *4 (-407 (-563))))) (-4212 (*1 *2 *3 *4) (-12 (-5 *2 (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563))) (-5 *4 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))))) (-4212 (*1 *2 *3) (-12 (-5 *2 (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563))))))
-(-10 -7 (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1|)) (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-407 (-563)))) (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-407 (-563)))) (-15 -1441 ((-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-407 (-563)))) (-15 -1441 ((-3 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) "failed") |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) (-15 -2723 ((-407 (-563)) (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) (-15 -2306 ((-640 (-407 (-563))) (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))))))
-((-1441 (((-3 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) "failed") |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) 35) (((-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-407 (-563))) 32)) (-4212 (((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-407 (-563))) 30) (((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-407 (-563))) 26) (((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) 28) (((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1|) 24)))
-(((-1017 |#1|) (-10 -7 (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1|)) (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-407 (-563)))) (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-407 (-563)))) (-15 -1441 ((-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-407 (-563)))) (-15 -1441 ((-3 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) "failed") |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))))) (-1233 (-407 (-563)))) (T -1017))
-((-1441 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) (-5 *1 (-1017 *3)) (-4 *3 (-1233 (-407 (-563)))))) (-1441 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) (-5 *4 (-407 (-563))) (-5 *1 (-1017 *3)) (-4 *3 (-1233 *4)))) (-4212 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-407 (-563))) (-5 *2 (-640 (-2 (|:| -1686 *5) (|:| -1701 *5)))) (-5 *1 (-1017 *3)) (-4 *3 (-1233 *5)) (-5 *4 (-2 (|:| -1686 *5) (|:| -1701 *5))))) (-4212 (*1 *2 *3 *4) (-12 (-5 *4 (-407 (-563))) (-5 *2 (-640 (-2 (|:| -1686 *4) (|:| -1701 *4)))) (-5 *1 (-1017 *3)) (-4 *3 (-1233 *4)))) (-4212 (*1 *2 *3 *4) (-12 (-5 *2 (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) (-5 *1 (-1017 *3)) (-4 *3 (-1233 (-407 (-563)))) (-5 *4 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))))) (-4212 (*1 *2 *3) (-12 (-5 *2 (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) (-5 *1 (-1017 *3)) (-4 *3 (-1233 (-407 (-563)))))))
-(-10 -7 (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1|)) (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))) (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-407 (-563)))) (-15 -4212 ((-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-407 (-563)))) (-15 -1441 ((-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-407 (-563)))) (-15 -1441 ((-3 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) "failed") |#1| (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))) (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))))
-((-2220 (((-225) $) 6) (((-379) $) 9)))
+((-2456 (((-2 (|:| |ans| |#2|) (|:| -1700 |#2|) (|:| |sol?| (-112))) (-563) |#2| |#2| (-1169) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-640 |#2|)) (-1 (-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 65)))
+(((-1009 |#1| |#2|) (-10 -7 (-15 -2456 ((-2 (|:| |ans| |#2|) (|:| -1700 |#2|) (|:| |sol?| (-112))) (-563) |#2| |#2| (-1169) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-640 |#2|)) (-1 (-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-27) (-430 |#1|))) (T -1009))
+((-2456 (*1 *2 *3 *4 *4 *5 *6 *7) (-12 (-5 *5 (-1169)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-640 *4))) (-5 *7 (-1 (-3 (-2 (|:| -2840 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1193) (-27) (-430 *8))) (-4 *8 (-13 (-452) (-846) (-147) (-1034 *3) (-636 *3))) (-5 *3 (-563)) (-5 *2 (-2 (|:| |ans| *4) (|:| -1700 *4) (|:| |sol?| (-112)))) (-5 *1 (-1009 *8 *4)))))
+(-10 -7 (-15 -2456 ((-2 (|:| |ans| |#2|) (|:| -1700 |#2|) (|:| |sol?| (-112))) (-563) |#2| |#2| (-1169) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-640 |#2|)) (-1 (-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-2467 (((-3 (-640 |#2|) "failed") (-563) |#2| |#2| |#2| (-1169) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-640 |#2|)) (-1 (-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 53)))
+(((-1010 |#1| |#2|) (-10 -7 (-15 -2467 ((-3 (-640 |#2|) "failed") (-563) |#2| |#2| |#2| (-1169) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-640 |#2|)) (-1 (-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))) (-13 (-1193) (-27) (-430 |#1|))) (T -1010))
+((-2467 (*1 *2 *3 *4 *4 *4 *5 *6 *7) (|partial| -12 (-5 *5 (-1169)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-640 *4))) (-5 *7 (-1 (-3 (-2 (|:| -2840 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1193) (-27) (-430 *8))) (-4 *8 (-13 (-452) (-846) (-147) (-1034 *3) (-636 *3))) (-5 *3 (-563)) (-5 *2 (-640 *4)) (-5 *1 (-1010 *8 *4)))))
+(-10 -7 (-15 -2467 ((-3 (-640 |#2|) "failed") (-563) |#2| |#2| |#2| (-1169) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-640 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-640 |#2|)) (-1 (-3 (-2 (|:| -2840 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-2501 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -1420 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-563)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-563) (-1 |#2| |#2|)) 31)) (-2479 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-407 |#2|)) (|:| |c| (-407 |#2|)) (|:| -2287 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-1 |#2| |#2|)) 59)) (-2491 (((-2 (|:| |ans| (-407 |#2|)) (|:| |nosol| (-112))) (-407 |#2|) (-407 |#2|)) 64)))
+(((-1011 |#1| |#2|) (-10 -7 (-15 -2479 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-407 |#2|)) (|:| |c| (-407 |#2|)) (|:| -2287 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-1 |#2| |#2|))) (-15 -2491 ((-2 (|:| |ans| (-407 |#2|)) (|:| |nosol| (-112))) (-407 |#2|) (-407 |#2|))) (-15 -2501 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -1420 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-563)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-563) (-1 |#2| |#2|)))) (-13 (-363) (-147) (-1034 (-563))) (-1233 |#1|)) (T -1011))
+((-2501 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1233 *6)) (-4 *6 (-13 (-363) (-147) (-1034 *4))) (-5 *4 (-563)) (-5 *2 (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112)))) (|:| -1420 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-1011 *6 *3)))) (-2491 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-563)))) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| |ans| (-407 *5)) (|:| |nosol| (-112)))) (-5 *1 (-1011 *4 *5)) (-5 *3 (-407 *5)))) (-2479 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-407 *6)) (|:| |c| (-407 *6)) (|:| -2287 *6))) (-5 *1 (-1011 *5 *6)) (-5 *3 (-407 *6)))))
+(-10 -7 (-15 -2479 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-407 |#2|)) (|:| |c| (-407 |#2|)) (|:| -2287 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-1 |#2| |#2|))) (-15 -2491 ((-2 (|:| |ans| (-407 |#2|)) (|:| |nosol| (-112))) (-407 |#2|) (-407 |#2|))) (-15 -2501 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -1420 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-563)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-563) (-1 |#2| |#2|))))
+((-2513 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-407 |#2|)) (|:| |h| |#2|) (|:| |c1| (-407 |#2|)) (|:| |c2| (-407 |#2|)) (|:| -2287 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|) (-1 |#2| |#2|)) 22)) (-2526 (((-3 (-640 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|)) 33)))
+(((-1012 |#1| |#2|) (-10 -7 (-15 -2513 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-407 |#2|)) (|:| |h| |#2|) (|:| |c1| (-407 |#2|)) (|:| |c2| (-407 |#2|)) (|:| -2287 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|) (-1 |#2| |#2|))) (-15 -2526 ((-3 (-640 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|)))) (-13 (-363) (-147) (-1034 (-563))) (-1233 |#1|)) (T -1012))
+((-2526 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-363) (-147) (-1034 (-563)))) (-4 *5 (-1233 *4)) (-5 *2 (-640 (-407 *5))) (-5 *1 (-1012 *4 *5)) (-5 *3 (-407 *5)))) (-2513 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-407 *6)) (|:| |h| *6) (|:| |c1| (-407 *6)) (|:| |c2| (-407 *6)) (|:| -2287 *6))) (-5 *1 (-1012 *5 *6)) (-5 *3 (-407 *6)))))
+(-10 -7 (-15 -2513 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-407 |#2|)) (|:| |h| |#2|) (|:| |c1| (-407 |#2|)) (|:| |c2| (-407 |#2|)) (|:| -2287 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|) (-1 |#2| |#2|))) (-15 -2526 ((-3 (-640 (-407 |#2|)) "failed") (-407 |#2|) (-407 |#2|) (-407 |#2|))))
+((-2538 (((-1 |#1|) (-640 (-2 (|:| -2618 |#1|) (|:| -4329 (-563))))) 37)) (-1853 (((-1 |#1|) (-1095 |#1|)) 45)) (-2548 (((-1 |#1|) (-1257 |#1|) (-1257 (-563)) (-563)) 34)))
+(((-1013 |#1|) (-10 -7 (-15 -1853 ((-1 |#1|) (-1095 |#1|))) (-15 -2538 ((-1 |#1|) (-640 (-2 (|:| -2618 |#1|) (|:| -4329 (-563)))))) (-15 -2548 ((-1 |#1|) (-1257 |#1|) (-1257 (-563)) (-563)))) (-1093)) (T -1013))
+((-2548 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1257 *6)) (-5 *4 (-1257 (-563))) (-5 *5 (-563)) (-4 *6 (-1093)) (-5 *2 (-1 *6)) (-5 *1 (-1013 *6)))) (-2538 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -2618 *4) (|:| -4329 (-563))))) (-4 *4 (-1093)) (-5 *2 (-1 *4)) (-5 *1 (-1013 *4)))) (-1853 (*1 *2 *3) (-12 (-5 *3 (-1095 *4)) (-4 *4 (-1093)) (-5 *2 (-1 *4)) (-5 *1 (-1013 *4)))))
+(-10 -7 (-15 -1853 ((-1 |#1|) (-1095 |#1|))) (-15 -2538 ((-1 |#1|) (-640 (-2 (|:| -2618 |#1|) (|:| -4329 (-563)))))) (-15 -2548 ((-1 |#1|) (-1257 |#1|) (-1257 (-563)) (-563))))
+((-1775 (((-767) (-336 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
+(((-1014 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1775 ((-767) (-336 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)))) (-363) (-1233 |#1|) (-1233 (-407 |#2|)) (-342 |#1| |#2| |#3|) (-13 (-368) (-363))) (T -1014))
+((-1775 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-336 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-363)) (-4 *7 (-1233 *6)) (-4 *4 (-1233 (-407 *7))) (-4 *8 (-342 *6 *7 *4)) (-4 *9 (-13 (-368) (-363))) (-5 *2 (-767)) (-5 *1 (-1014 *6 *7 *4 *8 *9)))))
+(-10 -7 (-15 -1775 ((-767) (-336 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
+((-1677 (((-112) $ $) NIL)) (-2559 (((-1128) $) 9)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3363 (((-1128) $) 11)) (-1718 (((-112) $ $) NIL)))
+(((-1015) (-13 (-1076) (-10 -8 (-15 -2559 ((-1128) $)) (-15 -3363 ((-1128) $))))) (T -1015))
+((-2559 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1015)))) (-3363 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1015)))))
+(-13 (-1076) (-10 -8 (-15 -2559 ((-1128) $)) (-15 -3363 ((-1128) $))))
+((-3998 (((-3 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) "failed") |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) 31) (((-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-407 (-563))) 28)) (-2590 (((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-407 (-563))) 33) (((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-407 (-563))) 29) (((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) 32) (((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1|) 27)) (-2579 (((-640 (-407 (-563))) (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) 19)) (-2568 (((-407 (-563)) (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) 16)))
+(((-1016 |#1|) (-10 -7 (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1|)) (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-407 (-563)))) (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-407 (-563)))) (-15 -3998 ((-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-407 (-563)))) (-15 -3998 ((-3 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) "failed") |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) (-15 -2568 ((-407 (-563)) (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) (-15 -2579 ((-640 (-407 (-563))) (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))))) (-1233 (-563))) (T -1016))
+((-2579 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) (-5 *2 (-640 (-407 (-563)))) (-5 *1 (-1016 *4)) (-4 *4 (-1233 (-563))))) (-2568 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) (-5 *2 (-407 (-563))) (-5 *1 (-1016 *4)) (-4 *4 (-1233 (-563))))) (-3998 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563))))) (-3998 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) (-5 *4 (-407 (-563))) (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563))))) (-2590 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-407 (-563))) (-5 *2 (-640 (-2 (|:| -1685 *5) (|:| -1700 *5)))) (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563))) (-5 *4 (-2 (|:| -1685 *5) (|:| -1700 *5))))) (-2590 (*1 *2 *3 *4) (-12 (-5 *2 (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563))) (-5 *4 (-407 (-563))))) (-2590 (*1 *2 *3 *4) (-12 (-5 *2 (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563))) (-5 *4 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))))) (-2590 (*1 *2 *3) (-12 (-5 *2 (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563))))))
+(-10 -7 (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1|)) (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-407 (-563)))) (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-407 (-563)))) (-15 -3998 ((-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-407 (-563)))) (-15 -3998 ((-3 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) "failed") |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) (-15 -2568 ((-407 (-563)) (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) (-15 -2579 ((-640 (-407 (-563))) (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))))))
+((-3998 (((-3 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) "failed") |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) 35) (((-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-407 (-563))) 32)) (-2590 (((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-407 (-563))) 30) (((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-407 (-563))) 26) (((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) 28) (((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1|) 24)))
+(((-1017 |#1|) (-10 -7 (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1|)) (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-407 (-563)))) (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-407 (-563)))) (-15 -3998 ((-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-407 (-563)))) (-15 -3998 ((-3 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) "failed") |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))))) (-1233 (-407 (-563)))) (T -1017))
+((-3998 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) (-5 *1 (-1017 *3)) (-4 *3 (-1233 (-407 (-563)))))) (-3998 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) (-5 *4 (-407 (-563))) (-5 *1 (-1017 *3)) (-4 *3 (-1233 *4)))) (-2590 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-407 (-563))) (-5 *2 (-640 (-2 (|:| -1685 *5) (|:| -1700 *5)))) (-5 *1 (-1017 *3)) (-4 *3 (-1233 *5)) (-5 *4 (-2 (|:| -1685 *5) (|:| -1700 *5))))) (-2590 (*1 *2 *3 *4) (-12 (-5 *4 (-407 (-563))) (-5 *2 (-640 (-2 (|:| -1685 *4) (|:| -1700 *4)))) (-5 *1 (-1017 *3)) (-4 *3 (-1233 *4)))) (-2590 (*1 *2 *3 *4) (-12 (-5 *2 (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) (-5 *1 (-1017 *3)) (-4 *3 (-1233 (-407 (-563)))) (-5 *4 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))))) (-2590 (*1 *2 *3) (-12 (-5 *2 (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) (-5 *1 (-1017 *3)) (-4 *3 (-1233 (-407 (-563)))))))
+(-10 -7 (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1|)) (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))) (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-407 (-563)))) (-15 -2590 ((-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-407 (-563)))) (-15 -3998 ((-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-407 (-563)))) (-15 -3998 ((-3 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) "failed") |#1| (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))) (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))))
+((-2219 (((-225) $) 6) (((-379) $) 9)))
(((-1018) (-140)) (T -1018))
NIL
(-13 (-611 (-225)) (-611 (-379)))
(((-611 (-225)) . T) ((-611 (-379)) . T))
-((-1793 (((-640 (-379)) (-948 (-563)) (-379)) 28) (((-640 (-379)) (-948 (-407 (-563))) (-379)) 27)) (-2076 (((-640 (-640 (-379))) (-640 (-948 (-563))) (-640 (-1169)) (-379)) 37)))
-(((-1019) (-10 -7 (-15 -1793 ((-640 (-379)) (-948 (-407 (-563))) (-379))) (-15 -1793 ((-640 (-379)) (-948 (-563)) (-379))) (-15 -2076 ((-640 (-640 (-379))) (-640 (-948 (-563))) (-640 (-1169)) (-379))))) (T -1019))
-((-2076 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-640 (-1169))) (-5 *2 (-640 (-640 (-379)))) (-5 *1 (-1019)) (-5 *5 (-379)))) (-1793 (*1 *2 *3 *4) (-12 (-5 *3 (-948 (-563))) (-5 *2 (-640 (-379))) (-5 *1 (-1019)) (-5 *4 (-379)))) (-1793 (*1 *2 *3 *4) (-12 (-5 *3 (-948 (-407 (-563)))) (-5 *2 (-640 (-379))) (-5 *1 (-1019)) (-5 *4 (-379)))))
-(-10 -7 (-15 -1793 ((-640 (-379)) (-948 (-407 (-563))) (-379))) (-15 -1793 ((-640 (-379)) (-948 (-563)) (-379))) (-15 -2076 ((-640 (-640 (-379))) (-640 (-948 (-563))) (-640 (-1169)) (-379))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 70)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-2186 (($ $) NIL) (($ $ (-917)) NIL) (($ (-407 (-563))) NIL) (($ (-563)) NIL)) (-1919 (((-112) $ $) NIL)) (-1857 (((-563) $) 65)) (-4239 (($) NIL T CONST)) (-3457 (((-3 $ "failed") (-1165 $) (-917) (-858)) NIL) (((-3 $ "failed") (-1165 $) (-917)) 50)) (-2131 (((-3 (-407 (-563)) "failed") $) NIL (|has| (-407 (-563)) (-1034 (-407 (-563))))) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 |#1| "failed") $) 107) (((-3 (-563) "failed") $) NIL (-4032 (|has| (-407 (-563)) (-1034 (-563))) (|has| |#1| (-1034 (-563)))))) (-2058 (((-407 (-563)) $) 15 (|has| (-407 (-563)) (-1034 (-407 (-563))))) (((-407 (-563)) $) 15) ((|#1| $) 108) (((-563) $) NIL (-4032 (|has| (-407 (-563)) (-1034 (-563))) (|has| |#1| (-1034 (-563)))))) (-3928 (($ $ (-858)) 42)) (-3158 (($ $ (-858)) 43)) (-3090 (($ $ $) NIL)) (-3527 (((-407 (-563)) $ $) 19)) (-3400 (((-3 $ "failed") $) 83)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-3101 (((-112) $) 61)) (-3827 (((-112) $) NIL)) (-1645 (($ $ (-563)) NIL)) (-1419 (((-112) $) 64)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-2955 (((-3 (-1165 $) "failed") $) 78)) (-3947 (((-3 (-858) "failed") $) 77)) (-2348 (((-3 (-1165 $) "failed") $) 75)) (-3187 (((-3 (-1055 $ (-1165 $)) "failed") $) 73)) (-3513 (($ (-640 $)) NIL) (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 84)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ (-640 $)) NIL) (($ $ $) NIL)) (-2174 (((-418 $) $) NIL)) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-1693 (((-858) $) 82) (($ (-563)) NIL) (($ (-407 (-563))) NIL) (($ $) 58) (($ (-407 (-563))) NIL) (($ (-563)) NIL) (($ (-407 (-563))) NIL) (($ |#1|) 110)) (-1675 (((-767)) NIL)) (-2126 (((-112) $ $) NIL)) (-1403 (((-407 (-563)) $ $) 25)) (-2783 (((-640 $) (-1165 $)) 56) (((-640 $) (-1165 (-407 (-563)))) NIL) (((-640 $) (-1165 (-563))) NIL) (((-640 $) (-948 $)) NIL) (((-640 $) (-948 (-407 (-563)))) NIL) (((-640 $) (-948 (-563))) NIL)) (-4065 (($ (-1055 $ (-1165 $)) (-858)) 41)) (-2509 (($ $) 20)) (-2241 (($) 29 T CONST)) (-2254 (($) 35 T CONST)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 71)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 22)) (-1837 (($ $ $) 33)) (-1826 (($ $) 34) (($ $ $) 69)) (-1814 (($ $ $) 103)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL) (($ $ (-407 (-563))) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 91) (($ $ $) 96) (($ (-407 (-563)) $) NIL) (($ $ (-407 (-563))) NIL) (($ (-563) $) 91) (($ $ (-563)) NIL) (($ (-407 (-563)) $) NIL) (($ $ (-407 (-563))) NIL) (($ |#1| $) 95) (($ $ |#1|) NIL)))
-(((-1020 |#1|) (-13 (-1008) (-411 |#1|) (-38 |#1|) (-10 -8 (-15 -4065 ($ (-1055 $ (-1165 $)) (-858))) (-15 -3187 ((-3 (-1055 $ (-1165 $)) "failed") $)) (-15 -3527 ((-407 (-563)) $ $)))) (-13 (-844) (-363) (-1018))) (T -1020))
-((-4065 (*1 *1 *2 *3) (-12 (-5 *2 (-1055 (-1020 *4) (-1165 (-1020 *4)))) (-5 *3 (-858)) (-5 *1 (-1020 *4)) (-4 *4 (-13 (-844) (-363) (-1018))))) (-3187 (*1 *2 *1) (|partial| -12 (-5 *2 (-1055 (-1020 *3) (-1165 (-1020 *3)))) (-5 *1 (-1020 *3)) (-4 *3 (-13 (-844) (-363) (-1018))))) (-3527 (*1 *2 *1 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-1020 *3)) (-4 *3 (-13 (-844) (-363) (-1018))))))
-(-13 (-1008) (-411 |#1|) (-38 |#1|) (-10 -8 (-15 -4065 ($ (-1055 $ (-1165 $)) (-858))) (-15 -3187 ((-3 (-1055 $ (-1165 $)) "failed") $)) (-15 -3527 ((-407 (-563)) $ $))))
-((-2549 (((-2 (|:| -1420 |#2|) (|:| -2517 (-640 |#1|))) |#2| (-640 |#1|)) 20) ((|#2| |#2| |#1|) 15)))
-(((-1021 |#1| |#2|) (-10 -7 (-15 -2549 (|#2| |#2| |#1|)) (-15 -2549 ((-2 (|:| -1420 |#2|) (|:| -2517 (-640 |#1|))) |#2| (-640 |#1|)))) (-363) (-651 |#1|)) (T -1021))
-((-2549 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-5 *2 (-2 (|:| -1420 *3) (|:| -2517 (-640 *5)))) (-5 *1 (-1021 *5 *3)) (-5 *4 (-640 *5)) (-4 *3 (-651 *5)))) (-2549 (*1 *2 *2 *3) (-12 (-4 *3 (-363)) (-5 *1 (-1021 *3 *2)) (-4 *2 (-651 *3)))))
-(-10 -7 (-15 -2549 (|#2| |#2| |#1|)) (-15 -2549 ((-2 (|:| -1420 |#2|) (|:| -2517 (-640 |#1|))) |#2| (-640 |#1|))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3559 ((|#1| $ |#1|) 14)) (-1849 ((|#1| $ |#1|) 12)) (-3644 (($ |#1|) 10)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2309 ((|#1| $) 11)) (-3470 ((|#1| $) 13)) (-1693 (((-858) $) 21 (|has| |#1| (-1093)))) (-1718 (((-112) $ $) 9)))
-(((-1022 |#1|) (-13 (-1208) (-10 -8 (-15 -3644 ($ |#1|)) (-15 -2309 (|#1| $)) (-15 -1849 (|#1| $ |#1|)) (-15 -3470 (|#1| $)) (-15 -3559 (|#1| $ |#1|)) (-15 -1718 ((-112) $ $)) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|))) (-1208)) (T -1022))
-((-3644 (*1 *1 *2) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))) (-2309 (*1 *2 *1) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))) (-1849 (*1 *2 *1 *2) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))) (-3470 (*1 *2 *1) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))) (-3559 (*1 *2 *1 *2) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))) (-1718 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1022 *3)) (-4 *3 (-1208)))))
-(-13 (-1208) (-10 -8 (-15 -3644 ($ |#1|)) (-15 -2309 (|#1| $)) (-15 -1849 (|#1| $ |#1|)) (-15 -3470 (|#1| $)) (-15 -3559 (|#1| $ |#1|)) (-15 -1718 ((-112) $ $)) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|)))
-((-1677 (((-112) $ $) NIL)) (-1578 (((-640 (-2 (|:| -1442 $) (|:| -3405 (-640 |#4|)))) (-640 |#4|)) NIL)) (-3319 (((-640 $) (-640 |#4|)) 105) (((-640 $) (-640 |#4|) (-112)) 106) (((-640 $) (-640 |#4|) (-112) (-112)) 104) (((-640 $) (-640 |#4|) (-112) (-112) (-112) (-112)) 107)) (-2606 (((-640 |#3|) $) NIL)) (-1706 (((-112) $) NIL)) (-3854 (((-112) $) NIL (|has| |#1| (-555)))) (-2620 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4053 ((|#4| |#4| $) NIL)) (-4335 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 $))) |#4| $) 99)) (-1642 (((-2 (|:| |under| $) (|:| -1583 $) (|:| |upper| $)) $ |#3|) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-2256 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407))) (((-3 |#4| "failed") $ |#3|) 54)) (-4239 (($) NIL T CONST)) (-1483 (((-112) $) 27 (|has| |#1| (-555)))) (-1626 (((-112) $ $) NIL (|has| |#1| (-555)))) (-4221 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1763 (((-112) $) NIL (|has| |#1| (-555)))) (-1833 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3746 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-1866 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-2131 (((-3 $ "failed") (-640 |#4|)) NIL)) (-2058 (($ (-640 |#4|)) NIL)) (-3792 (((-3 $ "failed") $) 40)) (-1719 ((|#4| |#4| $) 57)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093))))) (-1459 (($ |#4| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1972 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 73 (|has| |#1| (-555)))) (-3990 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3948 ((|#4| |#4| $) NIL)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4407))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4407))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2144 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3405 (-640 |#4|))) $) NIL)) (-2313 (((-112) |#4| $) NIL)) (-3748 (((-112) |#4| $) NIL)) (-1871 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2984 (((-2 (|:| |val| (-640 |#4|)) (|:| |towers| (-640 $))) (-640 |#4|) (-112) (-112)) 119)) (-2659 (((-640 |#4|) $) 17 (|has| $ (-6 -4407)))) (-2299 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2957 ((|#3| $) 34)) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#4|) $) 18 (|has| $ (-6 -4407)))) (-1729 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093))))) (-4345 (($ (-1 |#4| |#4|) $) 24 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#4| |#4|) $) 22)) (-2965 (((-640 |#3|) $) NIL)) (-2780 (((-112) |#3| $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-3083 (((-3 |#4| (-640 $)) |#4| |#4| $) NIL)) (-2898 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 $))) |#4| |#4| $) 97)) (-1481 (((-3 |#4| "failed") $) 38)) (-3764 (((-640 $) |#4| $) 80)) (-1334 (((-3 (-112) (-640 $)) |#4| $) NIL)) (-2069 (((-640 (-2 (|:| |val| (-112)) (|:| -2059 $))) |#4| $) 90) (((-112) |#4| $) 52)) (-2550 (((-640 $) |#4| $) 102) (((-640 $) (-640 |#4|) $) NIL) (((-640 $) (-640 |#4|) (-640 $)) 103) (((-640 $) |#4| (-640 $)) NIL)) (-3211 (((-640 $) (-640 |#4|) (-112) (-112) (-112)) 114)) (-3291 (($ |#4| $) 70) (($ (-640 |#4|) $) 71) (((-640 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 67)) (-2820 (((-640 |#4|) $) NIL)) (-4197 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2715 ((|#4| |#4| $) NIL)) (-3009 (((-112) $ $) NIL)) (-2152 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-2031 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4056 ((|#4| |#4| $) NIL)) (-1694 (((-1113) $) NIL)) (-3781 (((-3 |#4| "failed") $) 36)) (-4203 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3479 (((-3 $ "failed") $ |#4|) 48)) (-3320 (($ $ |#4|) NIL) (((-640 $) |#4| $) 82) (((-640 $) |#4| (-640 $)) NIL) (((-640 $) (-640 |#4|) $) NIL) (((-640 $) (-640 |#4|) (-640 $)) 77)) (-3138 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 |#4|) (-640 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) 16)) (-3135 (($) 14)) (-4167 (((-767) $) NIL)) (-1709 (((-767) |#4| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093)))) (((-767) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) 13)) (-2220 (((-536) $) NIL (|has| |#4| (-611 (-536))))) (-1707 (($ (-640 |#4|)) 21)) (-3577 (($ $ |#3|) 43)) (-1593 (($ $ |#3|) 44)) (-1924 (($ $) NIL)) (-4192 (($ $ |#3|) NIL)) (-1693 (((-858) $) 32) (((-640 |#4|) $) 41)) (-2437 (((-767) $) NIL (|has| |#3| (-368)))) (-2540 (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2691 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) NIL)) (-2175 (((-640 $) |#4| $) 79) (((-640 $) |#4| (-640 $)) NIL) (((-640 $) (-640 |#4|) $) NIL) (((-640 $) (-640 |#4|) (-640 $)) NIL)) (-4383 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1955 (((-640 |#3|) $) NIL)) (-4279 (((-112) |#4| $) NIL)) (-3152 (((-112) |#3| $) 53)) (-1718 (((-112) $ $) NIL)) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-1023 |#1| |#2| |#3| |#4|) (-13 (-1065 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3291 ((-640 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3319 ((-640 $) (-640 |#4|) (-112) (-112))) (-15 -3319 ((-640 $) (-640 |#4|) (-112) (-112) (-112) (-112))) (-15 -3211 ((-640 $) (-640 |#4|) (-112) (-112) (-112))) (-15 -2984 ((-2 (|:| |val| (-640 |#4|)) (|:| |towers| (-640 $))) (-640 |#4|) (-112) (-112))))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|)) (T -1023))
-((-3291 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1023 *5 *6 *7 *3))) (-5 *1 (-1023 *5 *6 *7 *3)) (-4 *3 (-1059 *5 *6 *7)))) (-3319 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1023 *5 *6 *7 *8))) (-5 *1 (-1023 *5 *6 *7 *8)))) (-3319 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1023 *5 *6 *7 *8))) (-5 *1 (-1023 *5 *6 *7 *8)))) (-3211 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1023 *5 *6 *7 *8))) (-5 *1 (-1023 *5 *6 *7 *8)))) (-2984 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-640 *8)) (|:| |towers| (-640 (-1023 *5 *6 *7 *8))))) (-5 *1 (-1023 *5 *6 *7 *8)) (-5 *3 (-640 *8)))))
-(-13 (-1065 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3291 ((-640 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3319 ((-640 $) (-640 |#4|) (-112) (-112))) (-15 -3319 ((-640 $) (-640 |#4|) (-112) (-112) (-112) (-112))) (-15 -3211 ((-640 $) (-640 |#4|) (-112) (-112) (-112))) (-15 -2984 ((-2 (|:| |val| (-640 |#4|)) (|:| |towers| (-640 $))) (-640 |#4|) (-112) (-112)))))
-((-3123 (((-640 (-684 |#1|)) (-640 (-684 |#1|))) 58) (((-684 |#1|) (-684 |#1|)) 57) (((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-640 (-684 |#1|))) 56) (((-684 |#1|) (-684 |#1|) (-684 |#1|)) 53)) (-2402 (((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-917)) 52) (((-684 |#1|) (-684 |#1|) (-917)) 51)) (-1380 (((-640 (-684 (-563))) (-640 (-640 (-563)))) 68) (((-640 (-684 (-563))) (-640 (-901 (-563))) (-563)) 67) (((-684 (-563)) (-640 (-563))) 64) (((-684 (-563)) (-901 (-563)) (-563)) 63)) (-2597 (((-684 (-948 |#1|)) (-767)) 81)) (-2475 (((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-917)) 37 (|has| |#1| (-6 (-4409 "*")))) (((-684 |#1|) (-684 |#1|) (-917)) 35 (|has| |#1| (-6 (-4409 "*"))))))
-(((-1024 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4409 "*"))) (-15 -2475 ((-684 |#1|) (-684 |#1|) (-917))) |%noBranch|) (IF (|has| |#1| (-6 (-4409 "*"))) (-15 -2475 ((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-917))) |%noBranch|) (-15 -2597 ((-684 (-948 |#1|)) (-767))) (-15 -2402 ((-684 |#1|) (-684 |#1|) (-917))) (-15 -2402 ((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-917))) (-15 -3123 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -3123 ((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -3123 ((-684 |#1|) (-684 |#1|))) (-15 -3123 ((-640 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -1380 ((-684 (-563)) (-901 (-563)) (-563))) (-15 -1380 ((-684 (-563)) (-640 (-563)))) (-15 -1380 ((-640 (-684 (-563))) (-640 (-901 (-563))) (-563))) (-15 -1380 ((-640 (-684 (-563))) (-640 (-640 (-563)))))) (-1045)) (T -1024))
-((-1380 (*1 *2 *3) (-12 (-5 *3 (-640 (-640 (-563)))) (-5 *2 (-640 (-684 (-563)))) (-5 *1 (-1024 *4)) (-4 *4 (-1045)))) (-1380 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-901 (-563)))) (-5 *4 (-563)) (-5 *2 (-640 (-684 *4))) (-5 *1 (-1024 *5)) (-4 *5 (-1045)))) (-1380 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-684 (-563))) (-5 *1 (-1024 *4)) (-4 *4 (-1045)))) (-1380 (*1 *2 *3 *4) (-12 (-5 *3 (-901 (-563))) (-5 *4 (-563)) (-5 *2 (-684 *4)) (-5 *1 (-1024 *5)) (-4 *5 (-1045)))) (-3123 (*1 *2 *2) (-12 (-5 *2 (-640 (-684 *3))) (-4 *3 (-1045)) (-5 *1 (-1024 *3)))) (-3123 (*1 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-1024 *3)))) (-3123 (*1 *2 *2 *2) (-12 (-5 *2 (-640 (-684 *3))) (-4 *3 (-1045)) (-5 *1 (-1024 *3)))) (-3123 (*1 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-1024 *3)))) (-2402 (*1 *2 *2 *3) (-12 (-5 *2 (-640 (-684 *4))) (-5 *3 (-917)) (-4 *4 (-1045)) (-5 *1 (-1024 *4)))) (-2402 (*1 *2 *2 *3) (-12 (-5 *2 (-684 *4)) (-5 *3 (-917)) (-4 *4 (-1045)) (-5 *1 (-1024 *4)))) (-2597 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-684 (-948 *4))) (-5 *1 (-1024 *4)) (-4 *4 (-1045)))) (-2475 (*1 *2 *2 *3) (-12 (-5 *2 (-640 (-684 *4))) (-5 *3 (-917)) (|has| *4 (-6 (-4409 "*"))) (-4 *4 (-1045)) (-5 *1 (-1024 *4)))) (-2475 (*1 *2 *2 *3) (-12 (-5 *2 (-684 *4)) (-5 *3 (-917)) (|has| *4 (-6 (-4409 "*"))) (-4 *4 (-1045)) (-5 *1 (-1024 *4)))))
-(-10 -7 (IF (|has| |#1| (-6 (-4409 "*"))) (-15 -2475 ((-684 |#1|) (-684 |#1|) (-917))) |%noBranch|) (IF (|has| |#1| (-6 (-4409 "*"))) (-15 -2475 ((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-917))) |%noBranch|) (-15 -2597 ((-684 (-948 |#1|)) (-767))) (-15 -2402 ((-684 |#1|) (-684 |#1|) (-917))) (-15 -2402 ((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-917))) (-15 -3123 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -3123 ((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -3123 ((-684 |#1|) (-684 |#1|))) (-15 -3123 ((-640 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -1380 ((-684 (-563)) (-901 (-563)) (-563))) (-15 -1380 ((-684 (-563)) (-640 (-563)))) (-15 -1380 ((-640 (-684 (-563))) (-640 (-901 (-563))) (-563))) (-15 -1380 ((-640 (-684 (-563))) (-640 (-640 (-563))))))
-((-4082 (((-684 |#1|) (-640 (-684 |#1|)) (-1257 |#1|)) 49 (|has| |#1| (-307)))) (-2335 (((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-1257 (-1257 |#1|))) 75 (|has| |#1| (-363))) (((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-1257 |#1|)) 78 (|has| |#1| (-363)))) (-3747 (((-1257 |#1|) (-640 (-1257 |#1|)) (-563)) 92 (-12 (|has| |#1| (-363)) (|has| |#1| (-368))))) (-3800 (((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-917)) 84 (-12 (|has| |#1| (-363)) (|has| |#1| (-368)))) (((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-112)) 82 (-12 (|has| |#1| (-363)) (|has| |#1| (-368)))) (((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|))) 81 (-12 (|has| |#1| (-363)) (|has| |#1| (-368)))) (((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-112) (-563) (-563)) 80 (-12 (|has| |#1| (-363)) (|has| |#1| (-368))))) (-2211 (((-112) (-640 (-684 |#1|))) 70 (|has| |#1| (-363))) (((-112) (-640 (-684 |#1|)) (-563)) 72 (|has| |#1| (-363)))) (-1952 (((-1257 (-1257 |#1|)) (-640 (-684 |#1|)) (-1257 |#1|)) 47 (|has| |#1| (-307)))) (-3961 (((-684 |#1|) (-640 (-684 |#1|)) (-684 |#1|)) 33)) (-3379 (((-684 |#1|) (-1257 (-1257 |#1|))) 30)) (-3600 (((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)) (-563)) 64 (|has| |#1| (-363))) (((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|))) 63 (|has| |#1| (-363))) (((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)) (-112) (-563)) 68 (|has| |#1| (-363)))))
-(((-1025 |#1|) (-10 -7 (-15 -3379 ((-684 |#1|) (-1257 (-1257 |#1|)))) (-15 -3961 ((-684 |#1|) (-640 (-684 |#1|)) (-684 |#1|))) (IF (|has| |#1| (-307)) (PROGN (-15 -1952 ((-1257 (-1257 |#1|)) (-640 (-684 |#1|)) (-1257 |#1|))) (-15 -4082 ((-684 |#1|) (-640 (-684 |#1|)) (-1257 |#1|)))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-15 -3600 ((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)) (-112) (-563))) (-15 -3600 ((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -3600 ((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)) (-563))) (-15 -2211 ((-112) (-640 (-684 |#1|)) (-563))) (-15 -2211 ((-112) (-640 (-684 |#1|)))) (-15 -2335 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-1257 |#1|))) (-15 -2335 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-1257 (-1257 |#1|))))) |%noBranch|) (IF (|has| |#1| (-368)) (IF (|has| |#1| (-363)) (PROGN (-15 -3800 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-112) (-563) (-563))) (-15 -3800 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)))) (-15 -3800 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-112))) (-15 -3800 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-917))) (-15 -3747 ((-1257 |#1|) (-640 (-1257 |#1|)) (-563)))) |%noBranch|) |%noBranch|)) (-1045)) (T -1025))
-((-3747 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-1257 *5))) (-5 *4 (-563)) (-5 *2 (-1257 *5)) (-5 *1 (-1025 *5)) (-4 *5 (-363)) (-4 *5 (-368)) (-4 *5 (-1045)))) (-3800 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-4 *5 (-363)) (-4 *5 (-368)) (-4 *5 (-1045)) (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5)) (-5 *3 (-640 (-684 *5))))) (-3800 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-363)) (-4 *5 (-368)) (-4 *5 (-1045)) (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5)) (-5 *3 (-640 (-684 *5))))) (-3800 (*1 *2 *3) (-12 (-4 *4 (-363)) (-4 *4 (-368)) (-4 *4 (-1045)) (-5 *2 (-640 (-640 (-684 *4)))) (-5 *1 (-1025 *4)) (-5 *3 (-640 (-684 *4))))) (-3800 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-112)) (-5 *5 (-563)) (-4 *6 (-363)) (-4 *6 (-368)) (-4 *6 (-1045)) (-5 *2 (-640 (-640 (-684 *6)))) (-5 *1 (-1025 *6)) (-5 *3 (-640 (-684 *6))))) (-2335 (*1 *2 *3 *4) (-12 (-5 *4 (-1257 (-1257 *5))) (-4 *5 (-363)) (-4 *5 (-1045)) (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5)) (-5 *3 (-640 (-684 *5))))) (-2335 (*1 *2 *3 *4) (-12 (-5 *4 (-1257 *5)) (-4 *5 (-363)) (-4 *5 (-1045)) (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5)) (-5 *3 (-640 (-684 *5))))) (-2211 (*1 *2 *3) (-12 (-5 *3 (-640 (-684 *4))) (-4 *4 (-363)) (-4 *4 (-1045)) (-5 *2 (-112)) (-5 *1 (-1025 *4)))) (-2211 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-684 *5))) (-5 *4 (-563)) (-4 *5 (-363)) (-4 *5 (-1045)) (-5 *2 (-112)) (-5 *1 (-1025 *5)))) (-3600 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-640 (-684 *5))) (-5 *4 (-563)) (-5 *2 (-684 *5)) (-5 *1 (-1025 *5)) (-4 *5 (-363)) (-4 *5 (-1045)))) (-3600 (*1 *2 *3 *3) (-12 (-5 *3 (-640 (-684 *4))) (-5 *2 (-684 *4)) (-5 *1 (-1025 *4)) (-4 *4 (-363)) (-4 *4 (-1045)))) (-3600 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-640 (-684 *6))) (-5 *4 (-112)) (-5 *5 (-563)) (-5 *2 (-684 *6)) (-5 *1 (-1025 *6)) (-4 *6 (-363)) (-4 *6 (-1045)))) (-4082 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-684 *5))) (-5 *4 (-1257 *5)) (-4 *5 (-307)) (-4 *5 (-1045)) (-5 *2 (-684 *5)) (-5 *1 (-1025 *5)))) (-1952 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-684 *5))) (-4 *5 (-307)) (-4 *5 (-1045)) (-5 *2 (-1257 (-1257 *5))) (-5 *1 (-1025 *5)) (-5 *4 (-1257 *5)))) (-3961 (*1 *2 *3 *2) (-12 (-5 *3 (-640 (-684 *4))) (-5 *2 (-684 *4)) (-4 *4 (-1045)) (-5 *1 (-1025 *4)))) (-3379 (*1 *2 *3) (-12 (-5 *3 (-1257 (-1257 *4))) (-4 *4 (-1045)) (-5 *2 (-684 *4)) (-5 *1 (-1025 *4)))))
-(-10 -7 (-15 -3379 ((-684 |#1|) (-1257 (-1257 |#1|)))) (-15 -3961 ((-684 |#1|) (-640 (-684 |#1|)) (-684 |#1|))) (IF (|has| |#1| (-307)) (PROGN (-15 -1952 ((-1257 (-1257 |#1|)) (-640 (-684 |#1|)) (-1257 |#1|))) (-15 -4082 ((-684 |#1|) (-640 (-684 |#1|)) (-1257 |#1|)))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-15 -3600 ((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)) (-112) (-563))) (-15 -3600 ((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -3600 ((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)) (-563))) (-15 -2211 ((-112) (-640 (-684 |#1|)) (-563))) (-15 -2211 ((-112) (-640 (-684 |#1|)))) (-15 -2335 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-1257 |#1|))) (-15 -2335 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-1257 (-1257 |#1|))))) |%noBranch|) (IF (|has| |#1| (-368)) (IF (|has| |#1| (-363)) (PROGN (-15 -3800 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-112) (-563) (-563))) (-15 -3800 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)))) (-15 -3800 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-112))) (-15 -3800 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-917))) (-15 -3747 ((-1257 |#1|) (-640 (-1257 |#1|)) (-563)))) |%noBranch|) |%noBranch|))
-((-4109 ((|#1| (-917) |#1|) 9)))
-(((-1026 |#1|) (-10 -7 (-15 -4109 (|#1| (-917) |#1|))) (-13 (-1093) (-10 -8 (-15 -1814 ($ $ $))))) (T -1026))
-((-4109 (*1 *2 *3 *2) (-12 (-5 *3 (-917)) (-5 *1 (-1026 *2)) (-4 *2 (-13 (-1093) (-10 -8 (-15 -1814 ($ $ $))))))))
-(-10 -7 (-15 -4109 (|#1| (-917) |#1|)))
-((-2514 (((-640 (-2 (|:| |radval| (-316 (-563))) (|:| |radmult| (-563)) (|:| |radvect| (-640 (-684 (-316 (-563))))))) (-684 (-407 (-948 (-563))))) 59)) (-1774 (((-640 (-684 (-316 (-563)))) (-316 (-563)) (-684 (-407 (-948 (-563))))) 48)) (-1401 (((-640 (-316 (-563))) (-684 (-407 (-948 (-563))))) 41)) (-2067 (((-640 (-684 (-316 (-563)))) (-684 (-407 (-948 (-563))))) 68)) (-1841 (((-684 (-316 (-563))) (-684 (-316 (-563)))) 34)) (-4193 (((-640 (-684 (-316 (-563)))) (-640 (-684 (-316 (-563))))) 62)) (-3092 (((-3 (-684 (-316 (-563))) "failed") (-684 (-407 (-948 (-563))))) 66)))
-(((-1027) (-10 -7 (-15 -2514 ((-640 (-2 (|:| |radval| (-316 (-563))) (|:| |radmult| (-563)) (|:| |radvect| (-640 (-684 (-316 (-563))))))) (-684 (-407 (-948 (-563)))))) (-15 -1774 ((-640 (-684 (-316 (-563)))) (-316 (-563)) (-684 (-407 (-948 (-563)))))) (-15 -1401 ((-640 (-316 (-563))) (-684 (-407 (-948 (-563)))))) (-15 -3092 ((-3 (-684 (-316 (-563))) "failed") (-684 (-407 (-948 (-563)))))) (-15 -1841 ((-684 (-316 (-563))) (-684 (-316 (-563))))) (-15 -4193 ((-640 (-684 (-316 (-563)))) (-640 (-684 (-316 (-563)))))) (-15 -2067 ((-640 (-684 (-316 (-563)))) (-684 (-407 (-948 (-563)))))))) (T -1027))
-((-2067 (*1 *2 *3) (-12 (-5 *3 (-684 (-407 (-948 (-563))))) (-5 *2 (-640 (-684 (-316 (-563))))) (-5 *1 (-1027)))) (-4193 (*1 *2 *2) (-12 (-5 *2 (-640 (-684 (-316 (-563))))) (-5 *1 (-1027)))) (-1841 (*1 *2 *2) (-12 (-5 *2 (-684 (-316 (-563)))) (-5 *1 (-1027)))) (-3092 (*1 *2 *3) (|partial| -12 (-5 *3 (-684 (-407 (-948 (-563))))) (-5 *2 (-684 (-316 (-563)))) (-5 *1 (-1027)))) (-1401 (*1 *2 *3) (-12 (-5 *3 (-684 (-407 (-948 (-563))))) (-5 *2 (-640 (-316 (-563)))) (-5 *1 (-1027)))) (-1774 (*1 *2 *3 *4) (-12 (-5 *4 (-684 (-407 (-948 (-563))))) (-5 *2 (-640 (-684 (-316 (-563))))) (-5 *1 (-1027)) (-5 *3 (-316 (-563))))) (-2514 (*1 *2 *3) (-12 (-5 *3 (-684 (-407 (-948 (-563))))) (-5 *2 (-640 (-2 (|:| |radval| (-316 (-563))) (|:| |radmult| (-563)) (|:| |radvect| (-640 (-684 (-316 (-563)))))))) (-5 *1 (-1027)))))
-(-10 -7 (-15 -2514 ((-640 (-2 (|:| |radval| (-316 (-563))) (|:| |radmult| (-563)) (|:| |radvect| (-640 (-684 (-316 (-563))))))) (-684 (-407 (-948 (-563)))))) (-15 -1774 ((-640 (-684 (-316 (-563)))) (-316 (-563)) (-684 (-407 (-948 (-563)))))) (-15 -1401 ((-640 (-316 (-563))) (-684 (-407 (-948 (-563)))))) (-15 -3092 ((-3 (-684 (-316 (-563))) "failed") (-684 (-407 (-948 (-563)))))) (-15 -1841 ((-684 (-316 (-563))) (-684 (-316 (-563))))) (-15 -4193 ((-640 (-684 (-316 (-563)))) (-640 (-684 (-316 (-563)))))) (-15 -2067 ((-640 (-684 (-316 (-563)))) (-684 (-407 (-948 (-563)))))))
-((-4008 ((|#1| |#1| (-917)) 9)))
-(((-1028 |#1|) (-10 -7 (-15 -4008 (|#1| |#1| (-917)))) (-13 (-1093) (-10 -8 (-15 * ($ $ $))))) (T -1028))
-((-4008 (*1 *2 *2 *3) (-12 (-5 *3 (-917)) (-5 *1 (-1028 *2)) (-4 *2 (-13 (-1093) (-10 -8 (-15 * ($ $ $))))))))
-(-10 -7 (-15 -4008 (|#1| |#1| (-917))))
-((-1693 ((|#1| (-312)) 11) (((-1262) |#1|) 9)))
-(((-1029 |#1|) (-10 -7 (-15 -1693 ((-1262) |#1|)) (-15 -1693 (|#1| (-312)))) (-1208)) (T -1029))
-((-1693 (*1 *2 *3) (-12 (-5 *3 (-312)) (-5 *1 (-1029 *2)) (-4 *2 (-1208)))) (-1693 (*1 *2 *3) (-12 (-5 *2 (-1262)) (-5 *1 (-1029 *3)) (-4 *3 (-1208)))))
-(-10 -7 (-15 -1693 ((-1262) |#1|)) (-15 -1693 (|#1| (-312))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2444 (($ |#4|) 25)) (-3400 (((-3 $ "failed") $) NIL)) (-3827 (((-112) $) NIL)) (-2433 ((|#4| $) 27)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 46) (($ (-563)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-1675 (((-767)) 43)) (-2241 (($) 21 T CONST)) (-2254 (($) 23 T CONST)) (-1718 (((-112) $ $) 40)) (-1826 (($ $) 31) (($ $ $) NIL)) (-1814 (($ $ $) 29)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 36) (($ $ $) 33) (($ |#1| $) 38) (($ $ |#1|) NIL)))
-(((-1030 |#1| |#2| |#3| |#4| |#5|) (-13 (-172) (-38 |#1|) (-10 -8 (-15 -2444 ($ |#4|)) (-15 -1693 ($ |#4|)) (-15 -2433 (|#4| $)))) (-363) (-789) (-846) (-945 |#1| |#2| |#3|) (-640 |#4|)) (T -1030))
-((-2444 (*1 *1 *2) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-1030 *3 *4 *5 *2 *6)) (-4 *2 (-945 *3 *4 *5)) (-14 *6 (-640 *2)))) (-1693 (*1 *1 *2) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-1030 *3 *4 *5 *2 *6)) (-4 *2 (-945 *3 *4 *5)) (-14 *6 (-640 *2)))) (-2433 (*1 *2 *1) (-12 (-4 *2 (-945 *3 *4 *5)) (-5 *1 (-1030 *3 *4 *5 *2 *6)) (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-14 *6 (-640 *2)))))
-(-13 (-172) (-38 |#1|) (-10 -8 (-15 -2444 ($ |#4|)) (-15 -1693 ($ |#4|)) (-15 -2433 (|#4| $))))
-((-1677 (((-112) $ $) NIL (-4032 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093))))) (-1552 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) NIL)) (-4378 (((-1262) $ (-1169) (-1169)) NIL (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) NIL)) (-4068 (((-112) (-112)) 39)) (-3444 (((-112) (-112)) 38)) (-1849 (((-52) $ (-1169) (-52)) NIL)) (-2812 (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407)))) (-1577 (((-3 (-52) "failed") (-1169) $) NIL)) (-4239 (($) NIL T CONST)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093))))) (-2705 (($ (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) $) NIL (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-3 (-52) "failed") (-1169) $) NIL)) (-1459 (($ (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407)))) (-2444 (((-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $ (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (((-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $ (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) NIL (|has| $ (-6 -4407))) (((-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407)))) (-4355 (((-52) $ (-1169) (-52)) NIL (|has| $ (-6 -4408)))) (-4293 (((-52) $ (-1169)) NIL)) (-2659 (((-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-640 (-52)) $) NIL (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-1169) $) NIL (|has| (-1169) (-846)))) (-2259 (((-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-640 (-52)) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-52) (-1093))))) (-3860 (((-1169) $) NIL (|has| (-1169) (-846)))) (-4345 (($ (-1 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (-4032 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093))))) (-1303 (((-640 (-1169)) $) 34)) (-4173 (((-112) (-1169) $) NIL)) (-2964 (((-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) $) NIL)) (-1812 (($ (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) $) NIL)) (-4318 (((-640 (-1169)) $) NIL)) (-3192 (((-112) (-1169) $) NIL)) (-1694 (((-1113) $) NIL (-4032 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093))))) (-3781 (((-52) $) NIL (|has| (-1169) (-846)))) (-4203 (((-3 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) "failed") (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL)) (-2358 (($ $ (-52)) NIL (|has| $ (-6 -4408)))) (-3755 (((-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) $) NIL)) (-3138 (((-112) (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (($ $ (-294 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (($ $ (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (($ $ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (($ $ (-640 (-52)) (-640 (-52))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-294 (-52))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-640 (-294 (-52)))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-52) (-1093))))) (-2836 (((-640 (-52)) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 (((-52) $ (-1169)) 35) (((-52) $ (-1169) (-52)) NIL)) (-3890 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) NIL)) (-1709 (((-767) (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (((-767) (-52) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-52) (-1093)))) (((-767) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-611 (-536))))) (-1707 (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) NIL)) (-1693 (((-858) $) 37 (-4032 (|has| (-52) (-610 (-858))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-610 (-858)))))) (-2233 (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) NIL)) (-4383 (((-112) (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (-4032 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093))))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-1031) (-13 (-1184 (-1169) (-52)) (-10 -7 (-15 -4068 ((-112) (-112))) (-15 -3444 ((-112) (-112))) (-6 -4407)))) (T -1031))
-((-4068 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1031)))) (-3444 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1031)))))
-(-13 (-1184 (-1169) (-52)) (-10 -7 (-15 -4068 ((-112) (-112))) (-15 -3444 ((-112) (-112))) (-6 -4407)))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3685 (((-1128) $) 9)) (-1693 (((-858) $) 17) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-1032) (-13 (-1076) (-10 -8 (-15 -3685 ((-1128) $))))) (T -1032))
-((-3685 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1032)))))
-(-13 (-1076) (-10 -8 (-15 -3685 ((-1128) $))))
-((-2058 ((|#2| $) 10)))
-(((-1033 |#1| |#2|) (-10 -8 (-15 -2058 (|#2| |#1|))) (-1034 |#2|) (-1208)) (T -1033))
-NIL
-(-10 -8 (-15 -2058 (|#2| |#1|)))
-((-2131 (((-3 |#1| "failed") $) 9)) (-2058 ((|#1| $) 8)) (-1693 (($ |#1|) 6)))
+((-3510 (((-640 (-379)) (-948 (-563)) (-379)) 28) (((-640 (-379)) (-948 (-407 (-563))) (-379)) 27)) (-2782 (((-640 (-640 (-379))) (-640 (-948 (-563))) (-640 (-1169)) (-379)) 37)))
+(((-1019) (-10 -7 (-15 -3510 ((-640 (-379)) (-948 (-407 (-563))) (-379))) (-15 -3510 ((-640 (-379)) (-948 (-563)) (-379))) (-15 -2782 ((-640 (-640 (-379))) (-640 (-948 (-563))) (-640 (-1169)) (-379))))) (T -1019))
+((-2782 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-640 (-1169))) (-5 *2 (-640 (-640 (-379)))) (-5 *1 (-1019)) (-5 *5 (-379)))) (-3510 (*1 *2 *3 *4) (-12 (-5 *3 (-948 (-563))) (-5 *2 (-640 (-379))) (-5 *1 (-1019)) (-5 *4 (-379)))) (-3510 (*1 *2 *3 *4) (-12 (-5 *3 (-948 (-407 (-563)))) (-5 *2 (-640 (-379))) (-5 *1 (-1019)) (-5 *4 (-379)))))
+(-10 -7 (-15 -3510 ((-640 (-379)) (-948 (-407 (-563))) (-379))) (-15 -3510 ((-640 (-379)) (-948 (-563)) (-379))) (-15 -2782 ((-640 (-640 (-379))) (-640 (-948 (-563))) (-640 (-1169)) (-379))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 70)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2185 (($ $) NIL) (($ $ (-917)) NIL) (($ (-407 (-563))) NIL) (($ (-563)) NIL)) (-2003 (((-112) $ $) NIL)) (-2807 (((-563) $) 65)) (-2569 (($) NIL T CONST)) (-3377 (((-3 $ "failed") (-1165 $) (-917) (-858)) NIL) (((-3 $ "failed") (-1165 $) (-917)) 50)) (-2130 (((-3 (-407 (-563)) "failed") $) NIL (|has| (-407 (-563)) (-1034 (-407 (-563))))) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 |#1| "failed") $) 107) (((-3 (-563) "failed") $) NIL (-4034 (|has| (-407 (-563)) (-1034 (-563))) (|has| |#1| (-1034 (-563)))))) (-2057 (((-407 (-563)) $) 15 (|has| (-407 (-563)) (-1034 (-407 (-563))))) (((-407 (-563)) $) 15) ((|#1| $) 108) (((-563) $) NIL (-4034 (|has| (-407 (-563)) (-1034 (-563))) (|has| |#1| (-1034 (-563)))))) (-2412 (($ $ (-858)) 42)) (-2400 (($ $ (-858)) 43)) (-3094 (($ $ $) NIL)) (-3365 (((-407 (-563)) $ $) 19)) (-3951 (((-3 $ "failed") $) 83)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-3414 (((-112) $) 61)) (-3401 (((-112) $) NIL)) (-2172 (($ $ (-563)) NIL)) (-3426 (((-112) $) 64)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-2423 (((-3 (-1165 $) "failed") $) 78)) (-2446 (((-3 (-858) "failed") $) 77)) (-2435 (((-3 (-1165 $) "failed") $) 75)) (-2599 (((-3 (-1055 $ (-1165 $)) "failed") $) 73)) (-3517 (($ (-640 $)) NIL) (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 84)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ (-640 $)) NIL) (($ $ $) NIL)) (-2173 (((-418 $) $) NIL)) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-1692 (((-858) $) 82) (($ (-563)) NIL) (($ (-407 (-563))) NIL) (($ $) 58) (($ (-407 (-563))) NIL) (($ (-563)) NIL) (($ (-407 (-563))) NIL) (($ |#1|) 110)) (-3914 (((-767)) NIL)) (-3223 (((-112) $ $) NIL)) (-1402 (((-407 (-563)) $ $) 25)) (-3389 (((-640 $) (-1165 $)) 56) (((-640 $) (-1165 (-407 (-563)))) NIL) (((-640 $) (-1165 (-563))) NIL) (((-640 $) (-948 $)) NIL) (((-640 $) (-948 (-407 (-563)))) NIL) (((-640 $) (-948 (-563))) NIL)) (-2608 (($ (-1055 $ (-1165 $)) (-858)) 41)) (-1462 (($ $) 20)) (-2239 (($) 29 T CONST)) (-2253 (($) 35 T CONST)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 71)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 22)) (-1836 (($ $ $) 33)) (-1825 (($ $) 34) (($ $ $) 69)) (-1813 (($ $ $) 103)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL) (($ $ (-407 (-563))) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 91) (($ $ $) 96) (($ (-407 (-563)) $) NIL) (($ $ (-407 (-563))) NIL) (($ (-563) $) 91) (($ $ (-563)) NIL) (($ (-407 (-563)) $) NIL) (($ $ (-407 (-563))) NIL) (($ |#1| $) 95) (($ $ |#1|) NIL)))
+(((-1020 |#1|) (-13 (-1008) (-411 |#1|) (-38 |#1|) (-10 -8 (-15 -2608 ($ (-1055 $ (-1165 $)) (-858))) (-15 -2599 ((-3 (-1055 $ (-1165 $)) "failed") $)) (-15 -3365 ((-407 (-563)) $ $)))) (-13 (-844) (-363) (-1018))) (T -1020))
+((-2608 (*1 *1 *2 *3) (-12 (-5 *2 (-1055 (-1020 *4) (-1165 (-1020 *4)))) (-5 *3 (-858)) (-5 *1 (-1020 *4)) (-4 *4 (-13 (-844) (-363) (-1018))))) (-2599 (*1 *2 *1) (|partial| -12 (-5 *2 (-1055 (-1020 *3) (-1165 (-1020 *3)))) (-5 *1 (-1020 *3)) (-4 *3 (-13 (-844) (-363) (-1018))))) (-3365 (*1 *2 *1 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-1020 *3)) (-4 *3 (-13 (-844) (-363) (-1018))))))
+(-13 (-1008) (-411 |#1|) (-38 |#1|) (-10 -8 (-15 -2608 ($ (-1055 $ (-1165 $)) (-858))) (-15 -2599 ((-3 (-1055 $ (-1165 $)) "failed") $)) (-15 -3365 ((-407 (-563)) $ $))))
+((-2617 (((-2 (|:| -1420 |#2|) (|:| -2516 (-640 |#1|))) |#2| (-640 |#1|)) 20) ((|#2| |#2| |#1|) 15)))
+(((-1021 |#1| |#2|) (-10 -7 (-15 -2617 (|#2| |#2| |#1|)) (-15 -2617 ((-2 (|:| -1420 |#2|) (|:| -2516 (-640 |#1|))) |#2| (-640 |#1|)))) (-363) (-651 |#1|)) (T -1021))
+((-2617 (*1 *2 *3 *4) (-12 (-4 *5 (-363)) (-5 *2 (-2 (|:| -1420 *3) (|:| -2516 (-640 *5)))) (-5 *1 (-1021 *5 *3)) (-5 *4 (-640 *5)) (-4 *3 (-651 *5)))) (-2617 (*1 *2 *2 *3) (-12 (-4 *3 (-363)) (-5 *1 (-1021 *3 *2)) (-4 *2 (-651 *3)))))
+(-10 -7 (-15 -2617 (|#2| |#2| |#1|)) (-15 -2617 ((-2 (|:| -1420 |#2|) (|:| -2516 (-640 |#1|))) |#2| (-640 |#1|))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1379 ((|#1| $ |#1|) 14)) (-1849 ((|#1| $ |#1|) 12)) (-1400 (($ |#1|) 10)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2308 ((|#1| $) 11)) (-1389 ((|#1| $) 13)) (-1692 (((-858) $) 21 (|has| |#1| (-1093)))) (-1718 (((-112) $ $) 9)))
+(((-1022 |#1|) (-13 (-1208) (-10 -8 (-15 -1400 ($ |#1|)) (-15 -2308 (|#1| $)) (-15 -1849 (|#1| $ |#1|)) (-15 -1389 (|#1| $)) (-15 -1379 (|#1| $ |#1|)) (-15 -1718 ((-112) $ $)) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|))) (-1208)) (T -1022))
+((-1400 (*1 *1 *2) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))) (-2308 (*1 *2 *1) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))) (-1849 (*1 *2 *1 *2) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))) (-1389 (*1 *2 *1) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))) (-1379 (*1 *2 *1 *2) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))) (-1718 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1022 *3)) (-4 *3 (-1208)))))
+(-13 (-1208) (-10 -8 (-15 -1400 ($ |#1|)) (-15 -2308 (|#1| $)) (-15 -1849 (|#1| $ |#1|)) (-15 -1389 (|#1| $)) (-15 -1379 (|#1| $ |#1|)) (-15 -1718 ((-112) $ $)) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|)))
+((-1677 (((-112) $ $) NIL)) (-2110 (((-640 (-2 (|:| -1442 $) (|:| -3409 (-640 |#4|)))) (-640 |#4|)) NIL)) (-2119 (((-640 $) (-640 |#4|)) 105) (((-640 $) (-640 |#4|) (-112)) 106) (((-640 $) (-640 |#4|) (-112) (-112)) 104) (((-640 $) (-640 |#4|) (-112) (-112) (-112) (-112)) 107)) (-2605 (((-640 |#3|) $) NIL)) (-3508 (((-112) $) NIL)) (-3406 (((-112) $) NIL (|has| |#1| (-555)))) (-2254 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2189 ((|#4| |#4| $) NIL)) (-1798 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 $))) |#4| $) 99)) (-1640 (((-2 (|:| |under| $) (|:| -3954 $) (|:| |upper| $)) $ |#3|) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-2255 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408))) (((-3 |#4| "failed") $ |#3|) 54)) (-2569 (($) NIL T CONST)) (-3466 (((-112) $) 27 (|has| |#1| (-555)))) (-3486 (((-112) $ $) NIL (|has| |#1| (-555)))) (-3476 (((-112) $ $) NIL (|has| |#1| (-555)))) (-3496 (((-112) $) NIL (|has| |#1| (-555)))) (-2201 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3418 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-3431 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-2130 (((-3 $ "failed") (-640 |#4|)) NIL)) (-2057 (($ (-640 |#4|)) NIL)) (-3793 (((-3 $ "failed") $) 40)) (-2151 ((|#4| |#4| $) 57)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093))))) (-1459 (($ |#4| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-3443 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 73 (|has| |#1| (-555)))) (-2264 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-2131 ((|#4| |#4| $) NIL)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4408))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4408))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2284 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3409 (-640 |#4|))) $) NIL)) (-3536 (((-112) |#4| $) NIL)) (-3514 (((-112) |#4| $) NIL)) (-3548 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1936 (((-2 (|:| |val| (-640 |#4|)) (|:| |towers| (-640 $))) (-640 |#4|) (-112) (-112)) 119)) (-2658 (((-640 |#4|) $) 17 (|has| $ (-6 -4408)))) (-2274 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3354 ((|#3| $) 34)) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#4|) $) 18 (|has| $ (-6 -4408)))) (-2667 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093))))) (-4347 (($ (-1 |#4| |#4|) $) 24 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#4| |#4|) $) 22)) (-3568 (((-640 |#3|) $) NIL)) (-3553 (((-112) |#3| $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-3472 (((-3 |#4| (-640 $)) |#4| |#4| $) NIL)) (-3461 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 $))) |#4| |#4| $) 97)) (-1481 (((-3 |#4| "failed") $) 38)) (-3482 (((-640 $) |#4| $) 80)) (-3503 (((-3 (-112) (-640 $)) |#4| $) NIL)) (-3492 (((-640 (-2 (|:| |val| (-112)) (|:| -2058 $))) |#4| $) 90) (((-112) |#4| $) 52)) (-3834 (((-640 $) |#4| $) 102) (((-640 $) (-640 |#4|) $) NIL) (((-640 $) (-640 |#4|) (-640 $)) 103) (((-640 $) |#4| (-640 $)) NIL)) (-1947 (((-640 $) (-640 |#4|) (-112) (-112) (-112)) 114)) (-1956 (($ |#4| $) 70) (($ (-640 |#4|) $) 71) (((-640 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 67)) (-2297 (((-640 |#4|) $) NIL)) (-2225 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2163 ((|#4| |#4| $) NIL)) (-2319 (((-112) $ $) NIL)) (-3454 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-2241 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2176 ((|#4| |#4| $) NIL)) (-1693 (((-1113) $) NIL)) (-3782 (((-3 |#4| "failed") $) 36)) (-1971 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-2089 (((-3 $ "failed") $ |#4|) 48)) (-1751 (($ $ |#4|) NIL) (((-640 $) |#4| $) 82) (((-640 $) |#4| (-640 $)) NIL) (((-640 $) (-640 |#4|) $) NIL) (((-640 $) (-640 |#4|) (-640 $)) 77)) (-1458 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 |#4|) (-640 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) 16)) (-3445 (($) 14)) (-3871 (((-767) $) NIL)) (-1708 (((-767) |#4| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093)))) (((-767) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) 13)) (-2219 (((-536) $) NIL (|has| |#4| (-611 (-536))))) (-1706 (($ (-640 |#4|)) 21)) (-3519 (($ $ |#3|) 43)) (-3542 (($ $ |#3|) 44)) (-2141 (($ $) NIL)) (-3529 (($ $ |#3|) NIL)) (-1692 (((-858) $) 32) (((-640 |#4|) $) 41)) (-3255 (((-767) $) NIL (|has| |#3| (-368)))) (-2307 (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2211 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) NIL)) (-3450 (((-640 $) |#4| $) 79) (((-640 $) |#4| (-640 $)) NIL) (((-640 $) (-640 |#4|) $) NIL) (((-640 $) (-640 |#4|) (-640 $)) NIL)) (-1471 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-2100 (((-640 |#3|) $) NIL)) (-3525 (((-112) |#4| $) NIL)) (-3772 (((-112) |#3| $) 53)) (-1718 (((-112) $ $) NIL)) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-1023 |#1| |#2| |#3| |#4|) (-13 (-1065 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1956 ((-640 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2119 ((-640 $) (-640 |#4|) (-112) (-112))) (-15 -2119 ((-640 $) (-640 |#4|) (-112) (-112) (-112) (-112))) (-15 -1947 ((-640 $) (-640 |#4|) (-112) (-112) (-112))) (-15 -1936 ((-2 (|:| |val| (-640 |#4|)) (|:| |towers| (-640 $))) (-640 |#4|) (-112) (-112))))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|)) (T -1023))
+((-1956 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1023 *5 *6 *7 *3))) (-5 *1 (-1023 *5 *6 *7 *3)) (-4 *3 (-1059 *5 *6 *7)))) (-2119 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1023 *5 *6 *7 *8))) (-5 *1 (-1023 *5 *6 *7 *8)))) (-2119 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1023 *5 *6 *7 *8))) (-5 *1 (-1023 *5 *6 *7 *8)))) (-1947 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1023 *5 *6 *7 *8))) (-5 *1 (-1023 *5 *6 *7 *8)))) (-1936 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-640 *8)) (|:| |towers| (-640 (-1023 *5 *6 *7 *8))))) (-5 *1 (-1023 *5 *6 *7 *8)) (-5 *3 (-640 *8)))))
+(-13 (-1065 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1956 ((-640 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2119 ((-640 $) (-640 |#4|) (-112) (-112))) (-15 -2119 ((-640 $) (-640 |#4|) (-112) (-112) (-112) (-112))) (-15 -1947 ((-640 $) (-640 |#4|) (-112) (-112) (-112))) (-15 -1936 ((-2 (|:| |val| (-640 |#4|)) (|:| |towers| (-640 $))) (-640 |#4|) (-112) (-112)))))
+((-1525 (((-640 (-684 |#1|)) (-640 (-684 |#1|))) 58) (((-684 |#1|) (-684 |#1|)) 57) (((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-640 (-684 |#1|))) 56) (((-684 |#1|) (-684 |#1|) (-684 |#1|)) 53)) (-1511 (((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-917)) 52) (((-684 |#1|) (-684 |#1|) (-917)) 51)) (-1537 (((-640 (-684 (-563))) (-640 (-640 (-563)))) 68) (((-640 (-684 (-563))) (-640 (-901 (-563))) (-563)) 67) (((-684 (-563)) (-640 (-563))) 64) (((-684 (-563)) (-901 (-563)) (-563)) 63)) (-1500 (((-684 (-948 |#1|)) (-767)) 81)) (-1488 (((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-917)) 37 (|has| |#1| (-6 (-4410 "*")))) (((-684 |#1|) (-684 |#1|) (-917)) 35 (|has| |#1| (-6 (-4410 "*"))))))
+(((-1024 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4410 "*"))) (-15 -1488 ((-684 |#1|) (-684 |#1|) (-917))) |%noBranch|) (IF (|has| |#1| (-6 (-4410 "*"))) (-15 -1488 ((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-917))) |%noBranch|) (-15 -1500 ((-684 (-948 |#1|)) (-767))) (-15 -1511 ((-684 |#1|) (-684 |#1|) (-917))) (-15 -1511 ((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-917))) (-15 -1525 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -1525 ((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -1525 ((-684 |#1|) (-684 |#1|))) (-15 -1525 ((-640 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -1537 ((-684 (-563)) (-901 (-563)) (-563))) (-15 -1537 ((-684 (-563)) (-640 (-563)))) (-15 -1537 ((-640 (-684 (-563))) (-640 (-901 (-563))) (-563))) (-15 -1537 ((-640 (-684 (-563))) (-640 (-640 (-563)))))) (-1045)) (T -1024))
+((-1537 (*1 *2 *3) (-12 (-5 *3 (-640 (-640 (-563)))) (-5 *2 (-640 (-684 (-563)))) (-5 *1 (-1024 *4)) (-4 *4 (-1045)))) (-1537 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-901 (-563)))) (-5 *4 (-563)) (-5 *2 (-640 (-684 *4))) (-5 *1 (-1024 *5)) (-4 *5 (-1045)))) (-1537 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-684 (-563))) (-5 *1 (-1024 *4)) (-4 *4 (-1045)))) (-1537 (*1 *2 *3 *4) (-12 (-5 *3 (-901 (-563))) (-5 *4 (-563)) (-5 *2 (-684 *4)) (-5 *1 (-1024 *5)) (-4 *5 (-1045)))) (-1525 (*1 *2 *2) (-12 (-5 *2 (-640 (-684 *3))) (-4 *3 (-1045)) (-5 *1 (-1024 *3)))) (-1525 (*1 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-1024 *3)))) (-1525 (*1 *2 *2 *2) (-12 (-5 *2 (-640 (-684 *3))) (-4 *3 (-1045)) (-5 *1 (-1024 *3)))) (-1525 (*1 *2 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-1024 *3)))) (-1511 (*1 *2 *2 *3) (-12 (-5 *2 (-640 (-684 *4))) (-5 *3 (-917)) (-4 *4 (-1045)) (-5 *1 (-1024 *4)))) (-1511 (*1 *2 *2 *3) (-12 (-5 *2 (-684 *4)) (-5 *3 (-917)) (-4 *4 (-1045)) (-5 *1 (-1024 *4)))) (-1500 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-684 (-948 *4))) (-5 *1 (-1024 *4)) (-4 *4 (-1045)))) (-1488 (*1 *2 *2 *3) (-12 (-5 *2 (-640 (-684 *4))) (-5 *3 (-917)) (|has| *4 (-6 (-4410 "*"))) (-4 *4 (-1045)) (-5 *1 (-1024 *4)))) (-1488 (*1 *2 *2 *3) (-12 (-5 *2 (-684 *4)) (-5 *3 (-917)) (|has| *4 (-6 (-4410 "*"))) (-4 *4 (-1045)) (-5 *1 (-1024 *4)))))
+(-10 -7 (IF (|has| |#1| (-6 (-4410 "*"))) (-15 -1488 ((-684 |#1|) (-684 |#1|) (-917))) |%noBranch|) (IF (|has| |#1| (-6 (-4410 "*"))) (-15 -1488 ((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-917))) |%noBranch|) (-15 -1500 ((-684 (-948 |#1|)) (-767))) (-15 -1511 ((-684 |#1|) (-684 |#1|) (-917))) (-15 -1511 ((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-917))) (-15 -1525 ((-684 |#1|) (-684 |#1|) (-684 |#1|))) (-15 -1525 ((-640 (-684 |#1|)) (-640 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -1525 ((-684 |#1|) (-684 |#1|))) (-15 -1525 ((-640 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -1537 ((-684 (-563)) (-901 (-563)) (-563))) (-15 -1537 ((-684 (-563)) (-640 (-563)))) (-15 -1537 ((-640 (-684 (-563))) (-640 (-901 (-563))) (-563))) (-15 -1537 ((-640 (-684 (-563))) (-640 (-640 (-563))))))
+((-1588 (((-684 |#1|) (-640 (-684 |#1|)) (-1257 |#1|)) 49 (|has| |#1| (-307)))) (-1792 (((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-1257 (-1257 |#1|))) 75 (|has| |#1| (-363))) (((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-1257 |#1|)) 78 (|has| |#1| (-363)))) (-1632 (((-1257 |#1|) (-640 (-1257 |#1|)) (-563)) 92 (-12 (|has| |#1| (-363)) (|has| |#1| (-368))))) (-1621 (((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-917)) 84 (-12 (|has| |#1| (-363)) (|has| |#1| (-368)))) (((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-112)) 82 (-12 (|has| |#1| (-363)) (|has| |#1| (-368)))) (((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|))) 81 (-12 (|has| |#1| (-363)) (|has| |#1| (-368)))) (((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-112) (-563) (-563)) 80 (-12 (|has| |#1| (-363)) (|has| |#1| (-368))))) (-1610 (((-112) (-640 (-684 |#1|))) 70 (|has| |#1| (-363))) (((-112) (-640 (-684 |#1|)) (-563)) 72 (|has| |#1| (-363)))) (-1575 (((-1257 (-1257 |#1|)) (-640 (-684 |#1|)) (-1257 |#1|)) 47 (|has| |#1| (-307)))) (-1563 (((-684 |#1|) (-640 (-684 |#1|)) (-684 |#1|)) 33)) (-1549 (((-684 |#1|) (-1257 (-1257 |#1|))) 30)) (-1599 (((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)) (-563)) 64 (|has| |#1| (-363))) (((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|))) 63 (|has| |#1| (-363))) (((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)) (-112) (-563)) 68 (|has| |#1| (-363)))))
+(((-1025 |#1|) (-10 -7 (-15 -1549 ((-684 |#1|) (-1257 (-1257 |#1|)))) (-15 -1563 ((-684 |#1|) (-640 (-684 |#1|)) (-684 |#1|))) (IF (|has| |#1| (-307)) (PROGN (-15 -1575 ((-1257 (-1257 |#1|)) (-640 (-684 |#1|)) (-1257 |#1|))) (-15 -1588 ((-684 |#1|) (-640 (-684 |#1|)) (-1257 |#1|)))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-15 -1599 ((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)) (-112) (-563))) (-15 -1599 ((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -1599 ((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)) (-563))) (-15 -1610 ((-112) (-640 (-684 |#1|)) (-563))) (-15 -1610 ((-112) (-640 (-684 |#1|)))) (-15 -1792 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-1257 |#1|))) (-15 -1792 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-1257 (-1257 |#1|))))) |%noBranch|) (IF (|has| |#1| (-368)) (IF (|has| |#1| (-363)) (PROGN (-15 -1621 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-112) (-563) (-563))) (-15 -1621 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)))) (-15 -1621 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-112))) (-15 -1621 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-917))) (-15 -1632 ((-1257 |#1|) (-640 (-1257 |#1|)) (-563)))) |%noBranch|) |%noBranch|)) (-1045)) (T -1025))
+((-1632 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-1257 *5))) (-5 *4 (-563)) (-5 *2 (-1257 *5)) (-5 *1 (-1025 *5)) (-4 *5 (-363)) (-4 *5 (-368)) (-4 *5 (-1045)))) (-1621 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-4 *5 (-363)) (-4 *5 (-368)) (-4 *5 (-1045)) (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5)) (-5 *3 (-640 (-684 *5))))) (-1621 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-363)) (-4 *5 (-368)) (-4 *5 (-1045)) (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5)) (-5 *3 (-640 (-684 *5))))) (-1621 (*1 *2 *3) (-12 (-4 *4 (-363)) (-4 *4 (-368)) (-4 *4 (-1045)) (-5 *2 (-640 (-640 (-684 *4)))) (-5 *1 (-1025 *4)) (-5 *3 (-640 (-684 *4))))) (-1621 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-112)) (-5 *5 (-563)) (-4 *6 (-363)) (-4 *6 (-368)) (-4 *6 (-1045)) (-5 *2 (-640 (-640 (-684 *6)))) (-5 *1 (-1025 *6)) (-5 *3 (-640 (-684 *6))))) (-1792 (*1 *2 *3 *4) (-12 (-5 *4 (-1257 (-1257 *5))) (-4 *5 (-363)) (-4 *5 (-1045)) (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5)) (-5 *3 (-640 (-684 *5))))) (-1792 (*1 *2 *3 *4) (-12 (-5 *4 (-1257 *5)) (-4 *5 (-363)) (-4 *5 (-1045)) (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5)) (-5 *3 (-640 (-684 *5))))) (-1610 (*1 *2 *3) (-12 (-5 *3 (-640 (-684 *4))) (-4 *4 (-363)) (-4 *4 (-1045)) (-5 *2 (-112)) (-5 *1 (-1025 *4)))) (-1610 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-684 *5))) (-5 *4 (-563)) (-4 *5 (-363)) (-4 *5 (-1045)) (-5 *2 (-112)) (-5 *1 (-1025 *5)))) (-1599 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-640 (-684 *5))) (-5 *4 (-563)) (-5 *2 (-684 *5)) (-5 *1 (-1025 *5)) (-4 *5 (-363)) (-4 *5 (-1045)))) (-1599 (*1 *2 *3 *3) (-12 (-5 *3 (-640 (-684 *4))) (-5 *2 (-684 *4)) (-5 *1 (-1025 *4)) (-4 *4 (-363)) (-4 *4 (-1045)))) (-1599 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-640 (-684 *6))) (-5 *4 (-112)) (-5 *5 (-563)) (-5 *2 (-684 *6)) (-5 *1 (-1025 *6)) (-4 *6 (-363)) (-4 *6 (-1045)))) (-1588 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-684 *5))) (-5 *4 (-1257 *5)) (-4 *5 (-307)) (-4 *5 (-1045)) (-5 *2 (-684 *5)) (-5 *1 (-1025 *5)))) (-1575 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-684 *5))) (-4 *5 (-307)) (-4 *5 (-1045)) (-5 *2 (-1257 (-1257 *5))) (-5 *1 (-1025 *5)) (-5 *4 (-1257 *5)))) (-1563 (*1 *2 *3 *2) (-12 (-5 *3 (-640 (-684 *4))) (-5 *2 (-684 *4)) (-4 *4 (-1045)) (-5 *1 (-1025 *4)))) (-1549 (*1 *2 *3) (-12 (-5 *3 (-1257 (-1257 *4))) (-4 *4 (-1045)) (-5 *2 (-684 *4)) (-5 *1 (-1025 *4)))))
+(-10 -7 (-15 -1549 ((-684 |#1|) (-1257 (-1257 |#1|)))) (-15 -1563 ((-684 |#1|) (-640 (-684 |#1|)) (-684 |#1|))) (IF (|has| |#1| (-307)) (PROGN (-15 -1575 ((-1257 (-1257 |#1|)) (-640 (-684 |#1|)) (-1257 |#1|))) (-15 -1588 ((-684 |#1|) (-640 (-684 |#1|)) (-1257 |#1|)))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-15 -1599 ((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)) (-112) (-563))) (-15 -1599 ((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -1599 ((-684 |#1|) (-640 (-684 |#1|)) (-640 (-684 |#1|)) (-563))) (-15 -1610 ((-112) (-640 (-684 |#1|)) (-563))) (-15 -1610 ((-112) (-640 (-684 |#1|)))) (-15 -1792 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-1257 |#1|))) (-15 -1792 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-1257 (-1257 |#1|))))) |%noBranch|) (IF (|has| |#1| (-368)) (IF (|has| |#1| (-363)) (PROGN (-15 -1621 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-112) (-563) (-563))) (-15 -1621 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)))) (-15 -1621 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-112))) (-15 -1621 ((-640 (-640 (-684 |#1|))) (-640 (-684 |#1|)) (-917))) (-15 -1632 ((-1257 |#1|) (-640 (-1257 |#1|)) (-563)))) |%noBranch|) |%noBranch|))
+((-4110 ((|#1| (-917) |#1|) 9)))
+(((-1026 |#1|) (-10 -7 (-15 -4110 (|#1| (-917) |#1|))) (-13 (-1093) (-10 -8 (-15 -1813 ($ $ $))))) (T -1026))
+((-4110 (*1 *2 *3 *2) (-12 (-5 *3 (-917)) (-5 *1 (-1026 *2)) (-4 *2 (-13 (-1093) (-10 -8 (-15 -1813 ($ $ $))))))))
+(-10 -7 (-15 -4110 (|#1| (-917) |#1|)))
+((-1411 (((-640 (-2 (|:| |radval| (-316 (-563))) (|:| |radmult| (-563)) (|:| |radvect| (-640 (-684 (-316 (-563))))))) (-684 (-407 (-948 (-563))))) 59)) (-1423 (((-640 (-684 (-316 (-563)))) (-316 (-563)) (-684 (-407 (-948 (-563))))) 48)) (-1434 (((-640 (-316 (-563))) (-684 (-407 (-948 (-563))))) 41)) (-1477 (((-640 (-684 (-316 (-563)))) (-684 (-407 (-948 (-563))))) 68)) (-1454 (((-684 (-316 (-563))) (-684 (-316 (-563)))) 34)) (-1467 (((-640 (-684 (-316 (-563)))) (-640 (-684 (-316 (-563))))) 62)) (-1445 (((-3 (-684 (-316 (-563))) "failed") (-684 (-407 (-948 (-563))))) 66)))
+(((-1027) (-10 -7 (-15 -1411 ((-640 (-2 (|:| |radval| (-316 (-563))) (|:| |radmult| (-563)) (|:| |radvect| (-640 (-684 (-316 (-563))))))) (-684 (-407 (-948 (-563)))))) (-15 -1423 ((-640 (-684 (-316 (-563)))) (-316 (-563)) (-684 (-407 (-948 (-563)))))) (-15 -1434 ((-640 (-316 (-563))) (-684 (-407 (-948 (-563)))))) (-15 -1445 ((-3 (-684 (-316 (-563))) "failed") (-684 (-407 (-948 (-563)))))) (-15 -1454 ((-684 (-316 (-563))) (-684 (-316 (-563))))) (-15 -1467 ((-640 (-684 (-316 (-563)))) (-640 (-684 (-316 (-563)))))) (-15 -1477 ((-640 (-684 (-316 (-563)))) (-684 (-407 (-948 (-563)))))))) (T -1027))
+((-1477 (*1 *2 *3) (-12 (-5 *3 (-684 (-407 (-948 (-563))))) (-5 *2 (-640 (-684 (-316 (-563))))) (-5 *1 (-1027)))) (-1467 (*1 *2 *2) (-12 (-5 *2 (-640 (-684 (-316 (-563))))) (-5 *1 (-1027)))) (-1454 (*1 *2 *2) (-12 (-5 *2 (-684 (-316 (-563)))) (-5 *1 (-1027)))) (-1445 (*1 *2 *3) (|partial| -12 (-5 *3 (-684 (-407 (-948 (-563))))) (-5 *2 (-684 (-316 (-563)))) (-5 *1 (-1027)))) (-1434 (*1 *2 *3) (-12 (-5 *3 (-684 (-407 (-948 (-563))))) (-5 *2 (-640 (-316 (-563)))) (-5 *1 (-1027)))) (-1423 (*1 *2 *3 *4) (-12 (-5 *4 (-684 (-407 (-948 (-563))))) (-5 *2 (-640 (-684 (-316 (-563))))) (-5 *1 (-1027)) (-5 *3 (-316 (-563))))) (-1411 (*1 *2 *3) (-12 (-5 *3 (-684 (-407 (-948 (-563))))) (-5 *2 (-640 (-2 (|:| |radval| (-316 (-563))) (|:| |radmult| (-563)) (|:| |radvect| (-640 (-684 (-316 (-563)))))))) (-5 *1 (-1027)))))
+(-10 -7 (-15 -1411 ((-640 (-2 (|:| |radval| (-316 (-563))) (|:| |radmult| (-563)) (|:| |radvect| (-640 (-684 (-316 (-563))))))) (-684 (-407 (-948 (-563)))))) (-15 -1423 ((-640 (-684 (-316 (-563)))) (-316 (-563)) (-684 (-407 (-948 (-563)))))) (-15 -1434 ((-640 (-316 (-563))) (-684 (-407 (-948 (-563)))))) (-15 -1445 ((-3 (-684 (-316 (-563))) "failed") (-684 (-407 (-948 (-563)))))) (-15 -1454 ((-684 (-316 (-563))) (-684 (-316 (-563))))) (-15 -1467 ((-640 (-684 (-316 (-563)))) (-640 (-684 (-316 (-563)))))) (-15 -1477 ((-640 (-684 (-316 (-563)))) (-684 (-407 (-948 (-563)))))))
+((-1646 ((|#1| |#1| (-917)) 9)))
+(((-1028 |#1|) (-10 -7 (-15 -1646 (|#1| |#1| (-917)))) (-13 (-1093) (-10 -8 (-15 * ($ $ $))))) (T -1028))
+((-1646 (*1 *2 *2 *3) (-12 (-5 *3 (-917)) (-5 *1 (-1028 *2)) (-4 *2 (-13 (-1093) (-10 -8 (-15 * ($ $ $))))))))
+(-10 -7 (-15 -1646 (|#1| |#1| (-917))))
+((-1692 ((|#1| (-312)) 11) (((-1262) |#1|) 9)))
+(((-1029 |#1|) (-10 -7 (-15 -1692 ((-1262) |#1|)) (-15 -1692 (|#1| (-312)))) (-1208)) (T -1029))
+((-1692 (*1 *2 *3) (-12 (-5 *3 (-312)) (-5 *1 (-1029 *2)) (-4 *2 (-1208)))) (-1692 (*1 *2 *3) (-12 (-5 *2 (-1262)) (-5 *1 (-1029 *3)) (-4 *3 (-1208)))))
+(-10 -7 (-15 -1692 ((-1262) |#1|)) (-15 -1692 (|#1| (-312))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2444 (($ |#4|) 25)) (-3951 (((-3 $ "failed") $) NIL)) (-3401 (((-112) $) NIL)) (-2433 ((|#4| $) 27)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 46) (($ (-563)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-3914 (((-767)) 43)) (-2239 (($) 21 T CONST)) (-2253 (($) 23 T CONST)) (-1718 (((-112) $ $) 40)) (-1825 (($ $) 31) (($ $ $) NIL)) (-1813 (($ $ $) 29)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 36) (($ $ $) 33) (($ |#1| $) 38) (($ $ |#1|) NIL)))
+(((-1030 |#1| |#2| |#3| |#4| |#5|) (-13 (-172) (-38 |#1|) (-10 -8 (-15 -2444 ($ |#4|)) (-15 -1692 ($ |#4|)) (-15 -2433 (|#4| $)))) (-363) (-789) (-846) (-945 |#1| |#2| |#3|) (-640 |#4|)) (T -1030))
+((-2444 (*1 *1 *2) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-1030 *3 *4 *5 *2 *6)) (-4 *2 (-945 *3 *4 *5)) (-14 *6 (-640 *2)))) (-1692 (*1 *1 *2) (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-1030 *3 *4 *5 *2 *6)) (-4 *2 (-945 *3 *4 *5)) (-14 *6 (-640 *2)))) (-2433 (*1 *2 *1) (-12 (-4 *2 (-945 *3 *4 *5)) (-5 *1 (-1030 *3 *4 *5 *2 *6)) (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-14 *6 (-640 *2)))))
+(-13 (-172) (-38 |#1|) (-10 -8 (-15 -2444 ($ |#4|)) (-15 -1692 ($ |#4|)) (-15 -2433 (|#4| $))))
+((-1677 (((-112) $ $) NIL (-4034 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093))))) (-1551 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) NIL)) (-2208 (((-1262) $ (-1169) (-1169)) NIL (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) NIL)) (-1669 (((-112) (-112)) 39)) (-1658 (((-112) (-112)) 38)) (-1849 (((-52) $ (-1169) (-52)) NIL)) (-3678 (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408)))) (-1576 (((-3 (-52) "failed") (-1169) $) NIL)) (-2569 (($) NIL T CONST)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093))))) (-1691 (($ (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-3 (-52) "failed") (-1169) $) NIL)) (-1459 (($ (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408)))) (-2444 (((-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $ (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (((-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $ (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408)))) (-4356 (((-52) $ (-1169) (-52)) NIL (|has| $ (-6 -4409)))) (-4293 (((-52) $ (-1169)) NIL)) (-2658 (((-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-640 (-52)) $) NIL (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-1169) $) NIL (|has| (-1169) (-846)))) (-3523 (((-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-640 (-52)) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-52) (-1093))))) (-2251 (((-1169) $) NIL (|has| (-1169) (-846)))) (-4347 (($ (-1 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4409))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (-4034 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093))))) (-1304 (((-640 (-1169)) $) 34)) (-2305 (((-112) (-1169) $) NIL)) (-2627 (((-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) $) NIL)) (-3867 (($ (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) $) NIL)) (-2272 (((-640 (-1169)) $) NIL)) (-2282 (((-112) (-1169) $) NIL)) (-1693 (((-1113) $) NIL (-4034 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093))))) (-3782 (((-52) $) NIL (|has| (-1169) (-846)))) (-1971 (((-3 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) "failed") (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL)) (-2221 (($ $ (-52)) NIL (|has| $ (-6 -4409)))) (-2808 (((-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) $) NIL)) (-1458 (((-112) (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (($ $ (-294 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (($ $ (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (($ $ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (($ $ (-640 (-52)) (-640 (-52))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-294 (-52))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-640 (-294 (-52)))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-52) (-1093))))) (-2295 (((-640 (-52)) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 (((-52) $ (-1169)) 35) (((-52) $ (-1169) (-52)) NIL)) (-3863 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) NIL)) (-1708 (((-767) (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (((-767) (-52) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-52) (-1093)))) (((-767) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-611 (-536))))) (-1706 (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) NIL)) (-1692 (((-858) $) 37 (-4034 (|has| (-52) (-610 (-858))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-610 (-858)))))) (-2820 (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) NIL)) (-1471 (((-112) (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (-4034 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093))))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-1031) (-13 (-1184 (-1169) (-52)) (-10 -7 (-15 -1669 ((-112) (-112))) (-15 -1658 ((-112) (-112))) (-6 -4408)))) (T -1031))
+((-1669 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1031)))) (-1658 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1031)))))
+(-13 (-1184 (-1169) (-52)) (-10 -7 (-15 -1669 ((-112) (-112))) (-15 -1658 ((-112) (-112))) (-6 -4408)))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3687 (((-1128) $) 9)) (-1692 (((-858) $) 17) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-1032) (-13 (-1076) (-10 -8 (-15 -3687 ((-1128) $))))) (T -1032))
+((-3687 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1032)))))
+(-13 (-1076) (-10 -8 (-15 -3687 ((-1128) $))))
+((-2057 ((|#2| $) 10)))
+(((-1033 |#1| |#2|) (-10 -8 (-15 -2057 (|#2| |#1|))) (-1034 |#2|) (-1208)) (T -1033))
+NIL
+(-10 -8 (-15 -2057 (|#2| |#1|)))
+((-2130 (((-3 |#1| "failed") $) 9)) (-2057 ((|#1| $) 8)) (-1692 (($ |#1|) 6)))
(((-1034 |#1|) (-140) (-1208)) (T -1034))
-((-2131 (*1 *2 *1) (|partial| -12 (-4 *1 (-1034 *2)) (-4 *2 (-1208)))) (-2058 (*1 *2 *1) (-12 (-4 *1 (-1034 *2)) (-4 *2 (-1208)))))
-(-13 (-613 |t#1|) (-10 -8 (-15 -2131 ((-3 |t#1| "failed") $)) (-15 -2058 (|t#1| $))))
+((-2130 (*1 *2 *1) (|partial| -12 (-4 *1 (-1034 *2)) (-4 *2 (-1208)))) (-2057 (*1 *2 *1) (-12 (-4 *1 (-1034 *2)) (-4 *2 (-1208)))))
+(-13 (-613 |t#1|) (-10 -8 (-15 -2130 ((-3 |t#1| "failed") $)) (-15 -2057 (|t#1| $))))
(((-613 |#1|) . T))
-((-2776 (((-640 (-640 (-294 (-407 (-948 |#2|))))) (-640 (-948 |#2|)) (-640 (-1169))) 38)))
-(((-1035 |#1| |#2|) (-10 -7 (-15 -2776 ((-640 (-640 (-294 (-407 (-948 |#2|))))) (-640 (-948 |#2|)) (-640 (-1169))))) (-555) (-13 (-555) (-1034 |#1|))) (T -1035))
-((-2776 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-948 *6))) (-5 *4 (-640 (-1169))) (-4 *6 (-13 (-555) (-1034 *5))) (-4 *5 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *6)))))) (-5 *1 (-1035 *5 *6)))))
-(-10 -7 (-15 -2776 ((-640 (-640 (-294 (-407 (-948 |#2|))))) (-640 (-948 |#2|)) (-640 (-1169)))))
-((-3585 (((-379)) 15)) (-2916 (((-1 (-379)) (-379) (-379)) 20)) (-2288 (((-1 (-379)) (-767)) 42)) (-3486 (((-379)) 33)) (-2377 (((-1 (-379)) (-379) (-379)) 34)) (-1362 (((-379)) 26)) (-4094 (((-1 (-379)) (-379)) 27)) (-3446 (((-379) (-767)) 37)) (-2096 (((-1 (-379)) (-767)) 38)) (-3191 (((-1 (-379)) (-767) (-767)) 41)) (-3929 (((-1 (-379)) (-767) (-767)) 39)))
-(((-1036) (-10 -7 (-15 -3585 ((-379))) (-15 -3486 ((-379))) (-15 -1362 ((-379))) (-15 -3446 ((-379) (-767))) (-15 -2916 ((-1 (-379)) (-379) (-379))) (-15 -2377 ((-1 (-379)) (-379) (-379))) (-15 -4094 ((-1 (-379)) (-379))) (-15 -2096 ((-1 (-379)) (-767))) (-15 -3929 ((-1 (-379)) (-767) (-767))) (-15 -3191 ((-1 (-379)) (-767) (-767))) (-15 -2288 ((-1 (-379)) (-767))))) (T -1036))
-((-2288 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1 (-379))) (-5 *1 (-1036)))) (-3191 (*1 *2 *3 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1 (-379))) (-5 *1 (-1036)))) (-3929 (*1 *2 *3 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1 (-379))) (-5 *1 (-1036)))) (-2096 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1 (-379))) (-5 *1 (-1036)))) (-4094 (*1 *2 *3) (-12 (-5 *2 (-1 (-379))) (-5 *1 (-1036)) (-5 *3 (-379)))) (-2377 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-379))) (-5 *1 (-1036)) (-5 *3 (-379)))) (-2916 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-379))) (-5 *1 (-1036)) (-5 *3 (-379)))) (-3446 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-379)) (-5 *1 (-1036)))) (-1362 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1036)))) (-3486 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1036)))) (-3585 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1036)))))
-(-10 -7 (-15 -3585 ((-379))) (-15 -3486 ((-379))) (-15 -1362 ((-379))) (-15 -3446 ((-379) (-767))) (-15 -2916 ((-1 (-379)) (-379) (-379))) (-15 -2377 ((-1 (-379)) (-379) (-379))) (-15 -4094 ((-1 (-379)) (-379))) (-15 -2096 ((-1 (-379)) (-767))) (-15 -3929 ((-1 (-379)) (-767) (-767))) (-15 -3191 ((-1 (-379)) (-767) (-767))) (-15 -2288 ((-1 (-379)) (-767))))
-((-2174 (((-418 |#1|) |#1|) 33)))
-(((-1037 |#1|) (-10 -7 (-15 -2174 ((-418 |#1|) |#1|))) (-1233 (-407 (-948 (-563))))) (T -1037))
-((-2174 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-1037 *3)) (-4 *3 (-1233 (-407 (-948 (-563))))))))
-(-10 -7 (-15 -2174 ((-418 |#1|) |#1|)))
-((-1312 (((-407 (-418 (-948 |#1|))) (-407 (-948 |#1|))) 14)))
-(((-1038 |#1|) (-10 -7 (-15 -1312 ((-407 (-418 (-948 |#1|))) (-407 (-948 |#1|))))) (-307)) (T -1038))
-((-1312 (*1 *2 *3) (-12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-307)) (-5 *2 (-407 (-418 (-948 *4)))) (-5 *1 (-1038 *4)))))
-(-10 -7 (-15 -1312 ((-407 (-418 (-948 |#1|))) (-407 (-948 |#1|)))))
-((-2606 (((-640 (-1169)) (-407 (-948 |#1|))) 17)) (-2139 (((-407 (-1165 (-407 (-948 |#1|)))) (-407 (-948 |#1|)) (-1169)) 24)) (-2596 (((-407 (-948 |#1|)) (-407 (-1165 (-407 (-948 |#1|)))) (-1169)) 26)) (-4234 (((-3 (-1169) "failed") (-407 (-948 |#1|))) 20)) (-1540 (((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-640 (-294 (-407 (-948 |#1|))))) 32) (((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|)))) 33) (((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-640 (-1169)) (-640 (-407 (-948 |#1|)))) 28) (((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|))) 29)) (-1693 (((-407 (-948 |#1|)) |#1|) 11)))
-(((-1039 |#1|) (-10 -7 (-15 -2606 ((-640 (-1169)) (-407 (-948 |#1|)))) (-15 -4234 ((-3 (-1169) "failed") (-407 (-948 |#1|)))) (-15 -2139 ((-407 (-1165 (-407 (-948 |#1|)))) (-407 (-948 |#1|)) (-1169))) (-15 -2596 ((-407 (-948 |#1|)) (-407 (-1165 (-407 (-948 |#1|)))) (-1169))) (-15 -1540 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|)))) (-15 -1540 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-640 (-1169)) (-640 (-407 (-948 |#1|))))) (-15 -1540 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))))) (-15 -1540 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-640 (-294 (-407 (-948 |#1|)))))) (-15 -1693 ((-407 (-948 |#1|)) |#1|))) (-555)) (T -1039))
-((-1693 (*1 *2 *3) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-1039 *3)) (-4 *3 (-555)))) (-1540 (*1 *2 *2 *3) (-12 (-5 *3 (-640 (-294 (-407 (-948 *4))))) (-5 *2 (-407 (-948 *4))) (-4 *4 (-555)) (-5 *1 (-1039 *4)))) (-1540 (*1 *2 *2 *3) (-12 (-5 *3 (-294 (-407 (-948 *4)))) (-5 *2 (-407 (-948 *4))) (-4 *4 (-555)) (-5 *1 (-1039 *4)))) (-1540 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-640 (-1169))) (-5 *4 (-640 (-407 (-948 *5)))) (-5 *2 (-407 (-948 *5))) (-4 *5 (-555)) (-5 *1 (-1039 *5)))) (-1540 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-407 (-948 *4))) (-5 *3 (-1169)) (-4 *4 (-555)) (-5 *1 (-1039 *4)))) (-2596 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-1165 (-407 (-948 *5))))) (-5 *4 (-1169)) (-5 *2 (-407 (-948 *5))) (-5 *1 (-1039 *5)) (-4 *5 (-555)))) (-2139 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-555)) (-5 *2 (-407 (-1165 (-407 (-948 *5))))) (-5 *1 (-1039 *5)) (-5 *3 (-407 (-948 *5))))) (-4234 (*1 *2 *3) (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555)) (-5 *2 (-1169)) (-5 *1 (-1039 *4)))) (-2606 (*1 *2 *3) (-12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555)) (-5 *2 (-640 (-1169))) (-5 *1 (-1039 *4)))))
-(-10 -7 (-15 -2606 ((-640 (-1169)) (-407 (-948 |#1|)))) (-15 -4234 ((-3 (-1169) "failed") (-407 (-948 |#1|)))) (-15 -2139 ((-407 (-1165 (-407 (-948 |#1|)))) (-407 (-948 |#1|)) (-1169))) (-15 -2596 ((-407 (-948 |#1|)) (-407 (-1165 (-407 (-948 |#1|)))) (-1169))) (-15 -1540 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|)))) (-15 -1540 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-640 (-1169)) (-640 (-407 (-948 |#1|))))) (-15 -1540 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))))) (-15 -1540 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-640 (-294 (-407 (-948 |#1|)))))) (-15 -1693 ((-407 (-948 |#1|)) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4239 (($) 17 T CONST)) (-1957 ((|#1| $) 22)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3278 ((|#1| $) 21)) (-3549 ((|#1|) 19 T CONST)) (-1693 (((-858) $) 11)) (-3504 ((|#1| $) 20)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15)))
+((-1683 (((-640 (-640 (-294 (-407 (-948 |#2|))))) (-640 (-948 |#2|)) (-640 (-1169))) 38)))
+(((-1035 |#1| |#2|) (-10 -7 (-15 -1683 ((-640 (-640 (-294 (-407 (-948 |#2|))))) (-640 (-948 |#2|)) (-640 (-1169))))) (-555) (-13 (-555) (-1034 |#1|))) (T -1035))
+((-1683 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-948 *6))) (-5 *4 (-640 (-1169))) (-4 *6 (-13 (-555) (-1034 *5))) (-4 *5 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *6)))))) (-5 *1 (-1035 *5 *6)))))
+(-10 -7 (-15 -1683 ((-640 (-640 (-294 (-407 (-948 |#2|))))) (-640 (-948 |#2|)) (-640 (-1169)))))
+((-1712 (((-379)) 15)) (-1853 (((-1 (-379)) (-379) (-379)) 20)) (-2287 (((-1 (-379)) (-767)) 42)) (-1724 (((-379)) 33)) (-2376 (((-1 (-379)) (-379) (-379)) 34)) (-1738 (((-379)) 26)) (-1761 (((-1 (-379)) (-379)) 27)) (-1750 (((-379) (-767)) 37)) (-1773 (((-1 (-379)) (-767)) 38)) (-3195 (((-1 (-379)) (-767) (-767)) 41)) (-1474 (((-1 (-379)) (-767) (-767)) 39)))
+(((-1036) (-10 -7 (-15 -1712 ((-379))) (-15 -1724 ((-379))) (-15 -1738 ((-379))) (-15 -1750 ((-379) (-767))) (-15 -1853 ((-1 (-379)) (-379) (-379))) (-15 -2376 ((-1 (-379)) (-379) (-379))) (-15 -1761 ((-1 (-379)) (-379))) (-15 -1773 ((-1 (-379)) (-767))) (-15 -1474 ((-1 (-379)) (-767) (-767))) (-15 -3195 ((-1 (-379)) (-767) (-767))) (-15 -2287 ((-1 (-379)) (-767))))) (T -1036))
+((-2287 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1 (-379))) (-5 *1 (-1036)))) (-3195 (*1 *2 *3 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1 (-379))) (-5 *1 (-1036)))) (-1474 (*1 *2 *3 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1 (-379))) (-5 *1 (-1036)))) (-1773 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1 (-379))) (-5 *1 (-1036)))) (-1761 (*1 *2 *3) (-12 (-5 *2 (-1 (-379))) (-5 *1 (-1036)) (-5 *3 (-379)))) (-2376 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-379))) (-5 *1 (-1036)) (-5 *3 (-379)))) (-1853 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-379))) (-5 *1 (-1036)) (-5 *3 (-379)))) (-1750 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-379)) (-5 *1 (-1036)))) (-1738 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1036)))) (-1724 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1036)))) (-1712 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1036)))))
+(-10 -7 (-15 -1712 ((-379))) (-15 -1724 ((-379))) (-15 -1738 ((-379))) (-15 -1750 ((-379) (-767))) (-15 -1853 ((-1 (-379)) (-379) (-379))) (-15 -2376 ((-1 (-379)) (-379) (-379))) (-15 -1761 ((-1 (-379)) (-379))) (-15 -1773 ((-1 (-379)) (-767))) (-15 -1474 ((-1 (-379)) (-767) (-767))) (-15 -3195 ((-1 (-379)) (-767) (-767))) (-15 -2287 ((-1 (-379)) (-767))))
+((-2173 (((-418 |#1|) |#1|) 33)))
+(((-1037 |#1|) (-10 -7 (-15 -2173 ((-418 |#1|) |#1|))) (-1233 (-407 (-948 (-563))))) (T -1037))
+((-2173 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-1037 *3)) (-4 *3 (-1233 (-407 (-948 (-563))))))))
+(-10 -7 (-15 -2173 ((-418 |#1|) |#1|)))
+((-1786 (((-407 (-418 (-948 |#1|))) (-407 (-948 |#1|))) 14)))
+(((-1038 |#1|) (-10 -7 (-15 -1786 ((-407 (-418 (-948 |#1|))) (-407 (-948 |#1|))))) (-307)) (T -1038))
+((-1786 (*1 *2 *3) (-12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-307)) (-5 *2 (-407 (-418 (-948 *4)))) (-5 *1 (-1038 *4)))))
+(-10 -7 (-15 -1786 ((-407 (-418 (-948 |#1|))) (-407 (-948 |#1|)))))
+((-2605 (((-640 (-1169)) (-407 (-948 |#1|))) 17)) (-2138 (((-407 (-1165 (-407 (-948 |#1|)))) (-407 (-948 |#1|)) (-1169)) 24)) (-2595 (((-407 (-948 |#1|)) (-407 (-1165 (-407 (-948 |#1|)))) (-1169)) 26)) (-1698 (((-3 (-1169) "failed") (-407 (-948 |#1|))) 20)) (-1542 (((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-640 (-294 (-407 (-948 |#1|))))) 32) (((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|)))) 33) (((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-640 (-1169)) (-640 (-407 (-948 |#1|)))) 28) (((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|))) 29)) (-1692 (((-407 (-948 |#1|)) |#1|) 11)))
+(((-1039 |#1|) (-10 -7 (-15 -2605 ((-640 (-1169)) (-407 (-948 |#1|)))) (-15 -1698 ((-3 (-1169) "failed") (-407 (-948 |#1|)))) (-15 -2138 ((-407 (-1165 (-407 (-948 |#1|)))) (-407 (-948 |#1|)) (-1169))) (-15 -2595 ((-407 (-948 |#1|)) (-407 (-1165 (-407 (-948 |#1|)))) (-1169))) (-15 -1542 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|)))) (-15 -1542 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-640 (-1169)) (-640 (-407 (-948 |#1|))))) (-15 -1542 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))))) (-15 -1542 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-640 (-294 (-407 (-948 |#1|)))))) (-15 -1692 ((-407 (-948 |#1|)) |#1|))) (-555)) (T -1039))
+((-1692 (*1 *2 *3) (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-1039 *3)) (-4 *3 (-555)))) (-1542 (*1 *2 *2 *3) (-12 (-5 *3 (-640 (-294 (-407 (-948 *4))))) (-5 *2 (-407 (-948 *4))) (-4 *4 (-555)) (-5 *1 (-1039 *4)))) (-1542 (*1 *2 *2 *3) (-12 (-5 *3 (-294 (-407 (-948 *4)))) (-5 *2 (-407 (-948 *4))) (-4 *4 (-555)) (-5 *1 (-1039 *4)))) (-1542 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-640 (-1169))) (-5 *4 (-640 (-407 (-948 *5)))) (-5 *2 (-407 (-948 *5))) (-4 *5 (-555)) (-5 *1 (-1039 *5)))) (-1542 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-407 (-948 *4))) (-5 *3 (-1169)) (-4 *4 (-555)) (-5 *1 (-1039 *4)))) (-2595 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-1165 (-407 (-948 *5))))) (-5 *4 (-1169)) (-5 *2 (-407 (-948 *5))) (-5 *1 (-1039 *5)) (-4 *5 (-555)))) (-2138 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-555)) (-5 *2 (-407 (-1165 (-407 (-948 *5))))) (-5 *1 (-1039 *5)) (-5 *3 (-407 (-948 *5))))) (-1698 (*1 *2 *3) (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555)) (-5 *2 (-1169)) (-5 *1 (-1039 *4)))) (-2605 (*1 *2 *3) (-12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555)) (-5 *2 (-640 (-1169))) (-5 *1 (-1039 *4)))))
+(-10 -7 (-15 -2605 ((-640 (-1169)) (-407 (-948 |#1|)))) (-15 -1698 ((-3 (-1169) "failed") (-407 (-948 |#1|)))) (-15 -2138 ((-407 (-1165 (-407 (-948 |#1|)))) (-407 (-948 |#1|)) (-1169))) (-15 -2595 ((-407 (-948 |#1|)) (-407 (-1165 (-407 (-948 |#1|)))) (-1169))) (-15 -1542 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|)))) (-15 -1542 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-640 (-1169)) (-640 (-407 (-948 |#1|))))) (-15 -1542 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-294 (-407 (-948 |#1|))))) (-15 -1542 ((-407 (-948 |#1|)) (-407 (-948 |#1|)) (-640 (-294 (-407 (-948 |#1|)))))) (-15 -1692 ((-407 (-948 |#1|)) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-2569 (($) 17 T CONST)) (-1831 ((|#1| $) 22)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1820 ((|#1| $) 21)) (-1797 ((|#1|) 19 T CONST)) (-1692 (((-858) $) 11)) (-1808 ((|#1| $) 20)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15)))
(((-1040 |#1|) (-140) (-23)) (T -1040))
-((-1957 (*1 *2 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))) (-3278 (*1 *2 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))) (-3504 (*1 *2 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))) (-3549 (*1 *2) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))))
-(-13 (-23) (-10 -8 (-15 -1957 (|t#1| $)) (-15 -3278 (|t#1| $)) (-15 -3504 (|t#1| $)) (-15 -3549 (|t#1|) -2669)))
+((-1831 (*1 *2 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))) (-1820 (*1 *2 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))) (-1808 (*1 *2 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))) (-1797 (*1 *2) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))))
+(-13 (-23) (-10 -8 (-15 -1831 (|t#1| $)) (-15 -1820 (|t#1| $)) (-15 -1808 (|t#1| $)) (-15 -1797 (|t#1|) -2668)))
(((-23) . T) ((-25) . T) ((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1532 (($) 24 T CONST)) (-4239 (($) 17 T CONST)) (-1957 ((|#1| $) 22)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3278 ((|#1| $) 21)) (-3549 ((|#1|) 19 T CONST)) (-1693 (((-858) $) 11)) (-3504 ((|#1| $) 20)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-1842 (($) 24 T CONST)) (-2569 (($) 17 T CONST)) (-1831 ((|#1| $) 22)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1820 ((|#1| $) 21)) (-1797 ((|#1|) 19 T CONST)) (-1692 (((-858) $) 11)) (-1808 ((|#1| $) 20)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15)))
(((-1041 |#1|) (-140) (-23)) (T -1041))
-((-1532 (*1 *1) (-12 (-4 *1 (-1041 *2)) (-4 *2 (-23)))))
-(-13 (-1040 |t#1|) (-10 -8 (-15 -1532 ($) -2669)))
+((-1842 (*1 *1) (-12 (-4 *1 (-1041 *2)) (-4 *2 (-23)))))
+(-13 (-1040 |t#1|) (-10 -8 (-15 -1842 ($) -2668)))
(((-23) . T) ((-25) . T) ((-102) . T) ((-610 (-858)) . T) ((-1040 |#1|) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-1578 (((-640 (-2 (|:| -1442 $) (|:| -3405 (-640 (-776 |#1| (-860 |#2|)))))) (-640 (-776 |#1| (-860 |#2|)))) NIL)) (-3319 (((-640 $) (-640 (-776 |#1| (-860 |#2|)))) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) (-112)) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) (-112) (-112)) NIL)) (-2606 (((-640 (-860 |#2|)) $) NIL)) (-1706 (((-112) $) NIL)) (-3854 (((-112) $) NIL (|has| |#1| (-555)))) (-2620 (((-112) (-776 |#1| (-860 |#2|)) $) NIL) (((-112) $) NIL)) (-4053 (((-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $) NIL)) (-4335 (((-640 (-2 (|:| |val| (-776 |#1| (-860 |#2|))) (|:| -2059 $))) (-776 |#1| (-860 |#2|)) $) NIL)) (-1642 (((-2 (|:| |under| $) (|:| -1583 $) (|:| |upper| $)) $ (-860 |#2|)) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-2256 (($ (-1 (-112) (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-3 (-776 |#1| (-860 |#2|)) "failed") $ (-860 |#2|)) NIL)) (-4239 (($) NIL T CONST)) (-1483 (((-112) $) NIL (|has| |#1| (-555)))) (-1626 (((-112) $ $) NIL (|has| |#1| (-555)))) (-4221 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1763 (((-112) $) NIL (|has| |#1| (-555)))) (-1833 (((-640 (-776 |#1| (-860 |#2|))) (-640 (-776 |#1| (-860 |#2|))) $ (-1 (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) (-1 (-112) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)))) NIL)) (-3746 (((-640 (-776 |#1| (-860 |#2|))) (-640 (-776 |#1| (-860 |#2|))) $) NIL (|has| |#1| (-555)))) (-1866 (((-640 (-776 |#1| (-860 |#2|))) (-640 (-776 |#1| (-860 |#2|))) $) NIL (|has| |#1| (-555)))) (-2131 (((-3 $ "failed") (-640 (-776 |#1| (-860 |#2|)))) NIL)) (-2058 (($ (-640 (-776 |#1| (-860 |#2|)))) NIL)) (-3792 (((-3 $ "failed") $) NIL)) (-1719 (((-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $) NIL)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-776 |#1| (-860 |#2|)) (-1093))))) (-1459 (($ (-776 |#1| (-860 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-776 |#1| (-860 |#2|)) (-1093)))) (($ (-1 (-112) (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-1972 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-776 |#1| (-860 |#2|))) (|:| |den| |#1|)) (-776 |#1| (-860 |#2|)) $) NIL (|has| |#1| (-555)))) (-3990 (((-112) (-776 |#1| (-860 |#2|)) $ (-1 (-112) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)))) NIL)) (-3948 (((-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $) NIL)) (-2444 (((-776 |#1| (-860 |#2|)) (-1 (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) $ (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) NIL (-12 (|has| $ (-6 -4407)) (|has| (-776 |#1| (-860 |#2|)) (-1093)))) (((-776 |#1| (-860 |#2|)) (-1 (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) $ (-776 |#1| (-860 |#2|))) NIL (|has| $ (-6 -4407))) (((-776 |#1| (-860 |#2|)) (-1 (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $ (-1 (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) (-1 (-112) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)))) NIL)) (-2144 (((-2 (|:| -1442 (-640 (-776 |#1| (-860 |#2|)))) (|:| -3405 (-640 (-776 |#1| (-860 |#2|))))) $) NIL)) (-2313 (((-112) (-776 |#1| (-860 |#2|)) $) NIL)) (-3748 (((-112) (-776 |#1| (-860 |#2|)) $) NIL)) (-1871 (((-112) (-776 |#1| (-860 |#2|)) $) NIL) (((-112) $) NIL)) (-2659 (((-640 (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-2299 (((-112) (-776 |#1| (-860 |#2|)) $) NIL) (((-112) $) NIL)) (-2957 (((-860 |#2|) $) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-776 |#1| (-860 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-776 |#1| (-860 |#2|)) (-1093))))) (-4345 (($ (-1 (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) $) NIL)) (-2965 (((-640 (-860 |#2|)) $) NIL)) (-2780 (((-112) (-860 |#2|) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-3083 (((-3 (-776 |#1| (-860 |#2|)) (-640 $)) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $) NIL)) (-2898 (((-640 (-2 (|:| |val| (-776 |#1| (-860 |#2|))) (|:| -2059 $))) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $) NIL)) (-1481 (((-3 (-776 |#1| (-860 |#2|)) "failed") $) NIL)) (-3764 (((-640 $) (-776 |#1| (-860 |#2|)) $) NIL)) (-1334 (((-3 (-112) (-640 $)) (-776 |#1| (-860 |#2|)) $) NIL)) (-2069 (((-640 (-2 (|:| |val| (-112)) (|:| -2059 $))) (-776 |#1| (-860 |#2|)) $) NIL) (((-112) (-776 |#1| (-860 |#2|)) $) NIL)) (-2550 (((-640 $) (-776 |#1| (-860 |#2|)) $) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) $) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) (-640 $)) NIL) (((-640 $) (-776 |#1| (-860 |#2|)) (-640 $)) NIL)) (-3291 (($ (-776 |#1| (-860 |#2|)) $) NIL) (($ (-640 (-776 |#1| (-860 |#2|))) $) NIL)) (-2820 (((-640 (-776 |#1| (-860 |#2|))) $) NIL)) (-4197 (((-112) (-776 |#1| (-860 |#2|)) $) NIL) (((-112) $) NIL)) (-2715 (((-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $) NIL)) (-3009 (((-112) $ $) NIL)) (-2152 (((-2 (|:| |num| (-776 |#1| (-860 |#2|))) (|:| |den| |#1|)) (-776 |#1| (-860 |#2|)) $) NIL (|has| |#1| (-555)))) (-2031 (((-112) (-776 |#1| (-860 |#2|)) $) NIL) (((-112) $) NIL)) (-4056 (((-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $) NIL)) (-1694 (((-1113) $) NIL)) (-3781 (((-3 (-776 |#1| (-860 |#2|)) "failed") $) NIL)) (-4203 (((-3 (-776 |#1| (-860 |#2|)) "failed") (-1 (-112) (-776 |#1| (-860 |#2|))) $) NIL)) (-3479 (((-3 $ "failed") $ (-776 |#1| (-860 |#2|))) NIL)) (-3320 (($ $ (-776 |#1| (-860 |#2|))) NIL) (((-640 $) (-776 |#1| (-860 |#2|)) $) NIL) (((-640 $) (-776 |#1| (-860 |#2|)) (-640 $)) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) $) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) (-640 $)) NIL)) (-3138 (((-112) (-1 (-112) (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-776 |#1| (-860 |#2|))) (-640 (-776 |#1| (-860 |#2|)))) NIL (-12 (|has| (-776 |#1| (-860 |#2|)) (-309 (-776 |#1| (-860 |#2|)))) (|has| (-776 |#1| (-860 |#2|)) (-1093)))) (($ $ (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) NIL (-12 (|has| (-776 |#1| (-860 |#2|)) (-309 (-776 |#1| (-860 |#2|)))) (|has| (-776 |#1| (-860 |#2|)) (-1093)))) (($ $ (-294 (-776 |#1| (-860 |#2|)))) NIL (-12 (|has| (-776 |#1| (-860 |#2|)) (-309 (-776 |#1| (-860 |#2|)))) (|has| (-776 |#1| (-860 |#2|)) (-1093)))) (($ $ (-640 (-294 (-776 |#1| (-860 |#2|))))) NIL (-12 (|has| (-776 |#1| (-860 |#2|)) (-309 (-776 |#1| (-860 |#2|)))) (|has| (-776 |#1| (-860 |#2|)) (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-4167 (((-767) $) NIL)) (-1709 (((-767) (-776 |#1| (-860 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-776 |#1| (-860 |#2|)) (-1093)))) (((-767) (-1 (-112) (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-776 |#1| (-860 |#2|)) (-611 (-536))))) (-1707 (($ (-640 (-776 |#1| (-860 |#2|)))) NIL)) (-3577 (($ $ (-860 |#2|)) NIL)) (-1593 (($ $ (-860 |#2|)) NIL)) (-1924 (($ $) NIL)) (-4192 (($ $ (-860 |#2|)) NIL)) (-1693 (((-858) $) NIL) (((-640 (-776 |#1| (-860 |#2|))) $) NIL)) (-2437 (((-767) $) NIL (|has| (-860 |#2|) (-368)))) (-2540 (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 (-776 |#1| (-860 |#2|))))) "failed") (-640 (-776 |#1| (-860 |#2|))) (-1 (-112) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)))) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 (-776 |#1| (-860 |#2|))))) "failed") (-640 (-776 |#1| (-860 |#2|))) (-1 (-112) (-776 |#1| (-860 |#2|))) (-1 (-112) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)))) NIL)) (-2691 (((-112) $ (-1 (-112) (-776 |#1| (-860 |#2|)) (-640 (-776 |#1| (-860 |#2|))))) NIL)) (-2175 (((-640 $) (-776 |#1| (-860 |#2|)) $) NIL) (((-640 $) (-776 |#1| (-860 |#2|)) (-640 $)) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) $) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) (-640 $)) NIL)) (-4383 (((-112) (-1 (-112) (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-1955 (((-640 (-860 |#2|)) $) NIL)) (-4279 (((-112) (-776 |#1| (-860 |#2|)) $) NIL)) (-3152 (((-112) (-860 |#2|) $) NIL)) (-1718 (((-112) $ $) NIL)) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-1042 |#1| |#2|) (-13 (-1065 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|))) (-10 -8 (-15 -3319 ((-640 $) (-640 (-776 |#1| (-860 |#2|))) (-112) (-112))))) (-452) (-640 (-1169))) (T -1042))
-((-3319 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452)) (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1042 *5 *6))) (-5 *1 (-1042 *5 *6)))))
-(-13 (-1065 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|))) (-10 -8 (-15 -3319 ((-640 $) (-640 (-776 |#1| (-860 |#2|))) (-112) (-112)))))
-((-2916 (((-1 (-563)) (-1087 (-563))) 33)) (-3356 (((-563) (-563) (-563) (-563) (-563)) 30)) (-3672 (((-1 (-563)) |RationalNumber|) NIL)) (-2265 (((-1 (-563)) |RationalNumber|) NIL)) (-2869 (((-1 (-563)) (-563) |RationalNumber|) NIL)))
-(((-1043) (-10 -7 (-15 -2916 ((-1 (-563)) (-1087 (-563)))) (-15 -2869 ((-1 (-563)) (-563) |RationalNumber|)) (-15 -3672 ((-1 (-563)) |RationalNumber|)) (-15 -2265 ((-1 (-563)) |RationalNumber|)) (-15 -3356 ((-563) (-563) (-563) (-563) (-563))))) (T -1043))
-((-3356 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1043)))) (-2265 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-563))) (-5 *1 (-1043)))) (-3672 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-563))) (-5 *1 (-1043)))) (-2869 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-563))) (-5 *1 (-1043)) (-5 *3 (-563)))) (-2916 (*1 *2 *3) (-12 (-5 *3 (-1087 (-563))) (-5 *2 (-1 (-563))) (-5 *1 (-1043)))))
-(-10 -7 (-15 -2916 ((-1 (-563)) (-1087 (-563)))) (-15 -2869 ((-1 (-563)) (-563) |RationalNumber|)) (-15 -3672 ((-1 (-563)) |RationalNumber|)) (-15 -2265 ((-1 (-563)) |RationalNumber|)) (-15 -3356 ((-563) (-563) (-563) (-563) (-563))))
-((-1693 (((-858) $) NIL) (($ (-563)) 10)))
-(((-1044 |#1|) (-10 -8 (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|))) (-1045)) (T -1044))
-NIL
-(-10 -8 (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ (-563)) 29)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-1677 (((-112) $ $) NIL)) (-2110 (((-640 (-2 (|:| -1442 $) (|:| -3409 (-640 (-776 |#1| (-860 |#2|)))))) (-640 (-776 |#1| (-860 |#2|)))) NIL)) (-2119 (((-640 $) (-640 (-776 |#1| (-860 |#2|)))) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) (-112)) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) (-112) (-112)) NIL)) (-2605 (((-640 (-860 |#2|)) $) NIL)) (-3508 (((-112) $) NIL)) (-3406 (((-112) $) NIL (|has| |#1| (-555)))) (-2254 (((-112) (-776 |#1| (-860 |#2|)) $) NIL) (((-112) $) NIL)) (-2189 (((-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $) NIL)) (-1798 (((-640 (-2 (|:| |val| (-776 |#1| (-860 |#2|))) (|:| -2058 $))) (-776 |#1| (-860 |#2|)) $) NIL)) (-1640 (((-2 (|:| |under| $) (|:| -3954 $) (|:| |upper| $)) $ (-860 |#2|)) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-2255 (($ (-1 (-112) (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-3 (-776 |#1| (-860 |#2|)) "failed") $ (-860 |#2|)) NIL)) (-2569 (($) NIL T CONST)) (-3466 (((-112) $) NIL (|has| |#1| (-555)))) (-3486 (((-112) $ $) NIL (|has| |#1| (-555)))) (-3476 (((-112) $ $) NIL (|has| |#1| (-555)))) (-3496 (((-112) $) NIL (|has| |#1| (-555)))) (-2201 (((-640 (-776 |#1| (-860 |#2|))) (-640 (-776 |#1| (-860 |#2|))) $ (-1 (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) (-1 (-112) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)))) NIL)) (-3418 (((-640 (-776 |#1| (-860 |#2|))) (-640 (-776 |#1| (-860 |#2|))) $) NIL (|has| |#1| (-555)))) (-3431 (((-640 (-776 |#1| (-860 |#2|))) (-640 (-776 |#1| (-860 |#2|))) $) NIL (|has| |#1| (-555)))) (-2130 (((-3 $ "failed") (-640 (-776 |#1| (-860 |#2|)))) NIL)) (-2057 (($ (-640 (-776 |#1| (-860 |#2|)))) NIL)) (-3793 (((-3 $ "failed") $) NIL)) (-2151 (((-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $) NIL)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-776 |#1| (-860 |#2|)) (-1093))))) (-1459 (($ (-776 |#1| (-860 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-776 |#1| (-860 |#2|)) (-1093)))) (($ (-1 (-112) (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-3443 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-776 |#1| (-860 |#2|))) (|:| |den| |#1|)) (-776 |#1| (-860 |#2|)) $) NIL (|has| |#1| (-555)))) (-2264 (((-112) (-776 |#1| (-860 |#2|)) $ (-1 (-112) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)))) NIL)) (-2131 (((-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $) NIL)) (-2444 (((-776 |#1| (-860 |#2|)) (-1 (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) $ (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) NIL (-12 (|has| $ (-6 -4408)) (|has| (-776 |#1| (-860 |#2|)) (-1093)))) (((-776 |#1| (-860 |#2|)) (-1 (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) $ (-776 |#1| (-860 |#2|))) NIL (|has| $ (-6 -4408))) (((-776 |#1| (-860 |#2|)) (-1 (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $ (-1 (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) (-1 (-112) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)))) NIL)) (-2284 (((-2 (|:| -1442 (-640 (-776 |#1| (-860 |#2|)))) (|:| -3409 (-640 (-776 |#1| (-860 |#2|))))) $) NIL)) (-3536 (((-112) (-776 |#1| (-860 |#2|)) $) NIL)) (-3514 (((-112) (-776 |#1| (-860 |#2|)) $) NIL)) (-3548 (((-112) (-776 |#1| (-860 |#2|)) $) NIL) (((-112) $) NIL)) (-2658 (((-640 (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2274 (((-112) (-776 |#1| (-860 |#2|)) $) NIL) (((-112) $) NIL)) (-3354 (((-860 |#2|) $) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-776 |#1| (-860 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-776 |#1| (-860 |#2|)) (-1093))))) (-4347 (($ (-1 (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) $) NIL)) (-3568 (((-640 (-860 |#2|)) $) NIL)) (-3553 (((-112) (-860 |#2|) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-3472 (((-3 (-776 |#1| (-860 |#2|)) (-640 $)) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $) NIL)) (-3461 (((-640 (-2 (|:| |val| (-776 |#1| (-860 |#2|))) (|:| -2058 $))) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $) NIL)) (-1481 (((-3 (-776 |#1| (-860 |#2|)) "failed") $) NIL)) (-3482 (((-640 $) (-776 |#1| (-860 |#2|)) $) NIL)) (-3503 (((-3 (-112) (-640 $)) (-776 |#1| (-860 |#2|)) $) NIL)) (-3492 (((-640 (-2 (|:| |val| (-112)) (|:| -2058 $))) (-776 |#1| (-860 |#2|)) $) NIL) (((-112) (-776 |#1| (-860 |#2|)) $) NIL)) (-3834 (((-640 $) (-776 |#1| (-860 |#2|)) $) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) $) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) (-640 $)) NIL) (((-640 $) (-776 |#1| (-860 |#2|)) (-640 $)) NIL)) (-1956 (($ (-776 |#1| (-860 |#2|)) $) NIL) (($ (-640 (-776 |#1| (-860 |#2|))) $) NIL)) (-2297 (((-640 (-776 |#1| (-860 |#2|))) $) NIL)) (-2225 (((-112) (-776 |#1| (-860 |#2|)) $) NIL) (((-112) $) NIL)) (-2163 (((-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $) NIL)) (-2319 (((-112) $ $) NIL)) (-3454 (((-2 (|:| |num| (-776 |#1| (-860 |#2|))) (|:| |den| |#1|)) (-776 |#1| (-860 |#2|)) $) NIL (|has| |#1| (-555)))) (-2241 (((-112) (-776 |#1| (-860 |#2|)) $) NIL) (((-112) $) NIL)) (-2176 (((-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)) $) NIL)) (-1693 (((-1113) $) NIL)) (-3782 (((-3 (-776 |#1| (-860 |#2|)) "failed") $) NIL)) (-1971 (((-3 (-776 |#1| (-860 |#2|)) "failed") (-1 (-112) (-776 |#1| (-860 |#2|))) $) NIL)) (-2089 (((-3 $ "failed") $ (-776 |#1| (-860 |#2|))) NIL)) (-1751 (($ $ (-776 |#1| (-860 |#2|))) NIL) (((-640 $) (-776 |#1| (-860 |#2|)) $) NIL) (((-640 $) (-776 |#1| (-860 |#2|)) (-640 $)) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) $) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) (-640 $)) NIL)) (-1458 (((-112) (-1 (-112) (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-776 |#1| (-860 |#2|))) (-640 (-776 |#1| (-860 |#2|)))) NIL (-12 (|has| (-776 |#1| (-860 |#2|)) (-309 (-776 |#1| (-860 |#2|)))) (|has| (-776 |#1| (-860 |#2|)) (-1093)))) (($ $ (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|))) NIL (-12 (|has| (-776 |#1| (-860 |#2|)) (-309 (-776 |#1| (-860 |#2|)))) (|has| (-776 |#1| (-860 |#2|)) (-1093)))) (($ $ (-294 (-776 |#1| (-860 |#2|)))) NIL (-12 (|has| (-776 |#1| (-860 |#2|)) (-309 (-776 |#1| (-860 |#2|)))) (|has| (-776 |#1| (-860 |#2|)) (-1093)))) (($ $ (-640 (-294 (-776 |#1| (-860 |#2|))))) NIL (-12 (|has| (-776 |#1| (-860 |#2|)) (-309 (-776 |#1| (-860 |#2|)))) (|has| (-776 |#1| (-860 |#2|)) (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-3871 (((-767) $) NIL)) (-1708 (((-767) (-776 |#1| (-860 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-776 |#1| (-860 |#2|)) (-1093)))) (((-767) (-1 (-112) (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-776 |#1| (-860 |#2|)) (-611 (-536))))) (-1706 (($ (-640 (-776 |#1| (-860 |#2|)))) NIL)) (-3519 (($ $ (-860 |#2|)) NIL)) (-3542 (($ $ (-860 |#2|)) NIL)) (-2141 (($ $) NIL)) (-3529 (($ $ (-860 |#2|)) NIL)) (-1692 (((-858) $) NIL) (((-640 (-776 |#1| (-860 |#2|))) $) NIL)) (-3255 (((-767) $) NIL (|has| (-860 |#2|) (-368)))) (-2307 (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 (-776 |#1| (-860 |#2|))))) "failed") (-640 (-776 |#1| (-860 |#2|))) (-1 (-112) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)))) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 (-776 |#1| (-860 |#2|))))) "failed") (-640 (-776 |#1| (-860 |#2|))) (-1 (-112) (-776 |#1| (-860 |#2|))) (-1 (-112) (-776 |#1| (-860 |#2|)) (-776 |#1| (-860 |#2|)))) NIL)) (-2211 (((-112) $ (-1 (-112) (-776 |#1| (-860 |#2|)) (-640 (-776 |#1| (-860 |#2|))))) NIL)) (-3450 (((-640 $) (-776 |#1| (-860 |#2|)) $) NIL) (((-640 $) (-776 |#1| (-860 |#2|)) (-640 $)) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) $) NIL) (((-640 $) (-640 (-776 |#1| (-860 |#2|))) (-640 $)) NIL)) (-1471 (((-112) (-1 (-112) (-776 |#1| (-860 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2100 (((-640 (-860 |#2|)) $) NIL)) (-3525 (((-112) (-776 |#1| (-860 |#2|)) $) NIL)) (-3772 (((-112) (-860 |#2|) $) NIL)) (-1718 (((-112) $ $) NIL)) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-1042 |#1| |#2|) (-13 (-1065 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|))) (-10 -8 (-15 -2119 ((-640 $) (-640 (-776 |#1| (-860 |#2|))) (-112) (-112))))) (-452) (-640 (-1169))) (T -1042))
+((-2119 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452)) (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1042 *5 *6))) (-5 *1 (-1042 *5 *6)))))
+(-13 (-1065 |#1| (-531 (-860 |#2|)) (-860 |#2|) (-776 |#1| (-860 |#2|))) (-10 -8 (-15 -2119 ((-640 $) (-640 (-776 |#1| (-860 |#2|))) (-112) (-112)))))
+((-1853 (((-1 (-563)) (-1087 (-563))) 33)) (-1897 (((-563) (-563) (-563) (-563) (-563)) 30)) (-1875 (((-1 (-563)) |RationalNumber|) NIL)) (-1886 (((-1 (-563)) |RationalNumber|) NIL)) (-1864 (((-1 (-563)) (-563) |RationalNumber|) NIL)))
+(((-1043) (-10 -7 (-15 -1853 ((-1 (-563)) (-1087 (-563)))) (-15 -1864 ((-1 (-563)) (-563) |RationalNumber|)) (-15 -1875 ((-1 (-563)) |RationalNumber|)) (-15 -1886 ((-1 (-563)) |RationalNumber|)) (-15 -1897 ((-563) (-563) (-563) (-563) (-563))))) (T -1043))
+((-1897 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1043)))) (-1886 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-563))) (-5 *1 (-1043)))) (-1875 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-563))) (-5 *1 (-1043)))) (-1864 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-563))) (-5 *1 (-1043)) (-5 *3 (-563)))) (-1853 (*1 *2 *3) (-12 (-5 *3 (-1087 (-563))) (-5 *2 (-1 (-563))) (-5 *1 (-1043)))))
+(-10 -7 (-15 -1853 ((-1 (-563)) (-1087 (-563)))) (-15 -1864 ((-1 (-563)) (-563) |RationalNumber|)) (-15 -1875 ((-1 (-563)) |RationalNumber|)) (-15 -1886 ((-1 (-563)) |RationalNumber|)) (-15 -1897 ((-563) (-563) (-563) (-563) (-563))))
+((-1692 (((-858) $) NIL) (($ (-563)) 10)))
+(((-1044 |#1|) (-10 -8 (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|))) (-1045)) (T -1044))
+NIL
+(-10 -8 (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ (-563)) 29)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-1045) (-140)) (T -1045))
-((-1675 (*1 *2) (-12 (-4 *1 (-1045)) (-5 *2 (-767)))))
-(-13 (-1052) (-722) (-643 $) (-613 (-563)) (-10 -7 (-15 -1675 ((-767))) (-6 -4404)))
+((-3914 (*1 *2) (-12 (-4 *1 (-1045)) (-5 *2 (-767)))))
+(-13 (-1052) (-722) (-643 $) (-613 (-563)) (-10 -7 (-15 -3914 ((-767))) (-6 -4405)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-563)) . T) ((-610 (-858)) . T) ((-643 $) . T) ((-722) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-3263 (((-407 (-948 |#2|)) (-640 |#2|) (-640 |#2|) (-767) (-767)) 46)))
-(((-1046 |#1| |#2|) (-10 -7 (-15 -3263 ((-407 (-948 |#2|)) (-640 |#2|) (-640 |#2|) (-767) (-767)))) (-1169) (-363)) (T -1046))
-((-3263 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-640 *6)) (-5 *4 (-767)) (-4 *6 (-363)) (-5 *2 (-407 (-948 *6))) (-5 *1 (-1046 *5 *6)) (-14 *5 (-1169)))))
-(-10 -7 (-15 -3263 ((-407 (-948 |#2|)) (-640 |#2|) (-640 |#2|) (-767) (-767))))
-((-3129 (((-112) $) 29)) (-1937 (((-112) $) 16)) (-2381 (((-767) $) 13)) (-2393 (((-767) $) 14)) (-2717 (((-112) $) 26)) (-3280 (((-112) $) 31)))
-(((-1047 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -2393 ((-767) |#1|)) (-15 -2381 ((-767) |#1|)) (-15 -3280 ((-112) |#1|)) (-15 -3129 ((-112) |#1|)) (-15 -2717 ((-112) |#1|)) (-15 -1937 ((-112) |#1|))) (-1048 |#2| |#3| |#4| |#5| |#6|) (-767) (-767) (-1045) (-238 |#3| |#4|) (-238 |#2| |#4|)) (T -1047))
-NIL
-(-10 -8 (-15 -2393 ((-767) |#1|)) (-15 -2381 ((-767) |#1|)) (-15 -3280 ((-112) |#1|)) (-15 -3129 ((-112) |#1|)) (-15 -2717 ((-112) |#1|)) (-15 -1937 ((-112) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-3129 (((-112) $) 51)) (-1495 (((-3 $ "failed") $ $) 19)) (-1937 (((-112) $) 53)) (-2759 (((-112) $ (-767)) 61)) (-4239 (($) 17 T CONST)) (-4069 (($ $) 34 (|has| |#3| (-307)))) (-2368 ((|#4| $ (-563)) 39)) (-2522 (((-767) $) 33 (|has| |#3| (-555)))) (-4293 ((|#3| $ (-563) (-563)) 41)) (-2659 (((-640 |#3|) $) 68 (|has| $ (-6 -4407)))) (-1997 (((-767) $) 32 (|has| |#3| (-555)))) (-2345 (((-640 |#5|) $) 31 (|has| |#3| (-555)))) (-2381 (((-767) $) 45)) (-2393 (((-767) $) 44)) (-2581 (((-112) $ (-767)) 60)) (-2013 (((-563) $) 49)) (-3650 (((-563) $) 47)) (-2259 (((-640 |#3|) $) 69 (|has| $ (-6 -4407)))) (-1729 (((-112) |#3| $) 71 (-12 (|has| |#3| (-1093)) (|has| $ (-6 -4407))))) (-1859 (((-563) $) 48)) (-2207 (((-563) $) 46)) (-4038 (($ (-640 (-640 |#3|))) 54)) (-4345 (($ (-1 |#3| |#3|) $) 64 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#3| |#3|) $) 63) (($ (-1 |#3| |#3| |#3|) $ $) 37)) (-4136 (((-640 (-640 |#3|)) $) 43)) (-2382 (((-112) $ (-767)) 59)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3008 (((-3 $ "failed") $ |#3|) 36 (|has| |#3| (-555)))) (-3138 (((-112) (-1 (-112) |#3|) $) 66 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 |#3|) (-640 |#3|)) 75 (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ |#3| |#3|) 74 (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-294 |#3|)) 73 (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-640 (-294 |#3|))) 72 (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093))))) (-2026 (((-112) $ $) 55)) (-3756 (((-112) $) 58)) (-3135 (($) 57)) (-2309 ((|#3| $ (-563) (-563)) 42) ((|#3| $ (-563) (-563) |#3|) 40)) (-2717 (((-112) $) 52)) (-1709 (((-767) |#3| $) 70 (-12 (|has| |#3| (-1093)) (|has| $ (-6 -4407)))) (((-767) (-1 (-112) |#3|) $) 67 (|has| $ (-6 -4407)))) (-1872 (($ $) 56)) (-1912 ((|#5| $ (-563)) 38)) (-1693 (((-858) $) 11)) (-4383 (((-112) (-1 (-112) |#3|) $) 65 (|has| $ (-6 -4407)))) (-3280 (((-112) $) 50)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1837 (($ $ |#3|) 35 (|has| |#3| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#3| $) 23) (($ $ |#3|) 26)) (-3608 (((-767) $) 62 (|has| $ (-6 -4407)))))
+((-1908 (((-407 (-948 |#2|)) (-640 |#2|) (-640 |#2|) (-767) (-767)) 46)))
+(((-1046 |#1| |#2|) (-10 -7 (-15 -1908 ((-407 (-948 |#2|)) (-640 |#2|) (-640 |#2|) (-767) (-767)))) (-1169) (-363)) (T -1046))
+((-1908 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-640 *6)) (-5 *4 (-767)) (-4 *6 (-363)) (-5 *2 (-407 (-948 *6))) (-5 *1 (-1046 *5 *6)) (-14 *5 (-1169)))))
+(-10 -7 (-15 -1908 ((-407 (-948 |#2|)) (-640 |#2|) (-640 |#2|) (-767) (-767))))
+((-3870 (((-112) $) 29)) (-3893 (((-112) $) 16)) (-2380 (((-767) $) 13)) (-2391 (((-767) $) 14)) (-3881 (((-112) $) 26)) (-2005 (((-112) $) 31)))
+(((-1047 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -2391 ((-767) |#1|)) (-15 -2380 ((-767) |#1|)) (-15 -2005 ((-112) |#1|)) (-15 -3870 ((-112) |#1|)) (-15 -3881 ((-112) |#1|)) (-15 -3893 ((-112) |#1|))) (-1048 |#2| |#3| |#4| |#5| |#6|) (-767) (-767) (-1045) (-238 |#3| |#4|) (-238 |#2| |#4|)) (T -1047))
+NIL
+(-10 -8 (-15 -2391 ((-767) |#1|)) (-15 -2380 ((-767) |#1|)) (-15 -2005 ((-112) |#1|)) (-15 -3870 ((-112) |#1|)) (-15 -3881 ((-112) |#1|)) (-15 -3893 ((-112) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3870 (((-112) $) 51)) (-3905 (((-3 $ "failed") $ $) 19)) (-3893 (((-112) $) 53)) (-3001 (((-112) $ (-767)) 61)) (-2569 (($) 17 T CONST)) (-1940 (($ $) 34 (|has| |#3| (-307)))) (-1960 ((|#4| $ (-563)) 39)) (-2521 (((-767) $) 33 (|has| |#3| (-555)))) (-4293 ((|#3| $ (-563) (-563)) 41)) (-2658 (((-640 |#3|) $) 68 (|has| $ (-6 -4408)))) (-1929 (((-767) $) 32 (|has| |#3| (-555)))) (-1917 (((-640 |#5|) $) 31 (|has| |#3| (-555)))) (-2380 (((-767) $) 45)) (-2391 (((-767) $) 44)) (-2514 (((-112) $ (-767)) 60)) (-1995 (((-563) $) 49)) (-1979 (((-563) $) 47)) (-3523 (((-640 |#3|) $) 69 (|has| $ (-6 -4408)))) (-2667 (((-112) |#3| $) 71 (-12 (|has| |#3| (-1093)) (|has| $ (-6 -4408))))) (-1986 (((-563) $) 48)) (-1969 (((-563) $) 46)) (-4040 (($ (-640 (-640 |#3|))) 54)) (-4347 (($ (-1 |#3| |#3|) $) 64 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#3| |#3|) $) 63) (($ (-1 |#3| |#3| |#3|) $ $) 37)) (-3734 (((-640 (-640 |#3|)) $) 43)) (-2481 (((-112) $ (-767)) 59)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-3012 (((-3 $ "failed") $ |#3|) 36 (|has| |#3| (-555)))) (-1458 (((-112) (-1 (-112) |#3|) $) 66 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 |#3|) (-640 |#3|)) 75 (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ |#3| |#3|) 74 (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-294 |#3|)) 73 (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-640 (-294 |#3|))) 72 (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093))))) (-2941 (((-112) $ $) 55)) (-1665 (((-112) $) 58)) (-3445 (($) 57)) (-2308 ((|#3| $ (-563) (-563)) 42) ((|#3| $ (-563) (-563) |#3|) 40)) (-3881 (((-112) $) 52)) (-1708 (((-767) |#3| $) 70 (-12 (|has| |#3| (-1093)) (|has| $ (-6 -4408)))) (((-767) (-1 (-112) |#3|) $) 67 (|has| $ (-6 -4408)))) (-1870 (($ $) 56)) (-1950 ((|#5| $ (-563)) 38)) (-1692 (((-858) $) 11)) (-1471 (((-112) (-1 (-112) |#3|) $) 65 (|has| $ (-6 -4408)))) (-2005 (((-112) $) 50)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1836 (($ $ |#3|) 35 (|has| |#3| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#3| $) 23) (($ $ |#3|) 26)) (-3610 (((-767) $) 62 (|has| $ (-6 -4408)))))
(((-1048 |#1| |#2| |#3| |#4| |#5|) (-140) (-767) (-767) (-1045) (-238 |t#2| |t#3|) (-238 |t#1| |t#3|)) (T -1048))
-((-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)))) (-4038 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 *5))) (-4 *5 (-1045)) (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)))) (-1937 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-2717 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-3129 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-3280 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-2013 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))) (-1859 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))) (-3650 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))) (-2207 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))) (-2381 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-767)))) (-2393 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-767)))) (-4136 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-640 (-640 *5))))) (-2309 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-4 *1 (-1048 *4 *5 *2 *6 *7)) (-4 *6 (-238 *5 *2)) (-4 *7 (-238 *4 *2)) (-4 *2 (-1045)))) (-4293 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-4 *1 (-1048 *4 *5 *2 *6 *7)) (-4 *6 (-238 *5 *2)) (-4 *7 (-238 *4 *2)) (-4 *2 (-1045)))) (-2309 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-563)) (-4 *1 (-1048 *4 *5 *2 *6 *7)) (-4 *2 (-1045)) (-4 *6 (-238 *5 *2)) (-4 *7 (-238 *4 *2)))) (-2368 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-1048 *4 *5 *6 *2 *7)) (-4 *6 (-1045)) (-4 *7 (-238 *4 *6)) (-4 *2 (-238 *5 *6)))) (-1912 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-1048 *4 *5 *6 *7 *2)) (-4 *6 (-1045)) (-4 *7 (-238 *5 *6)) (-4 *2 (-238 *4 *6)))) (-2240 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)))) (-3008 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1048 *3 *4 *2 *5 *6)) (-4 *2 (-1045)) (-4 *5 (-238 *4 *2)) (-4 *6 (-238 *3 *2)) (-4 *2 (-555)))) (-1837 (*1 *1 *1 *2) (-12 (-4 *1 (-1048 *3 *4 *2 *5 *6)) (-4 *2 (-1045)) (-4 *5 (-238 *4 *2)) (-4 *6 (-238 *3 *2)) (-4 *2 (-363)))) (-4069 (*1 *1 *1) (-12 (-4 *1 (-1048 *2 *3 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *2 *4)) (-4 *4 (-307)))) (-2522 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-555)) (-5 *2 (-767)))) (-1997 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-555)) (-5 *2 (-767)))) (-2345 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-555)) (-5 *2 (-640 *7)))))
-(-13 (-111 |t#3| |t#3|) (-489 |t#3|) (-10 -8 (-6 -4407) (IF (|has| |t#3| (-172)) (-6 (-713 |t#3|)) |%noBranch|) (-15 -4038 ($ (-640 (-640 |t#3|)))) (-15 -1937 ((-112) $)) (-15 -2717 ((-112) $)) (-15 -3129 ((-112) $)) (-15 -3280 ((-112) $)) (-15 -2013 ((-563) $)) (-15 -1859 ((-563) $)) (-15 -3650 ((-563) $)) (-15 -2207 ((-563) $)) (-15 -2381 ((-767) $)) (-15 -2393 ((-767) $)) (-15 -4136 ((-640 (-640 |t#3|)) $)) (-15 -2309 (|t#3| $ (-563) (-563))) (-15 -4293 (|t#3| $ (-563) (-563))) (-15 -2309 (|t#3| $ (-563) (-563) |t#3|)) (-15 -2368 (|t#4| $ (-563))) (-15 -1912 (|t#5| $ (-563))) (-15 -2240 ($ (-1 |t#3| |t#3|) $)) (-15 -2240 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-555)) (-15 -3008 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-363)) (-15 -1837 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-307)) (-15 -4069 ($ $)) |%noBranch|) (IF (|has| |t#3| (-555)) (PROGN (-15 -2522 ((-767) $)) (-15 -1997 ((-767) $)) (-15 -2345 ((-640 |t#5|) $))) |%noBranch|)))
+((-2238 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)))) (-4040 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 *5))) (-4 *5 (-1045)) (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)))) (-3893 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-3881 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-3870 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-2005 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-1995 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))) (-1986 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))) (-1979 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))) (-1969 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))) (-2380 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-767)))) (-2391 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-767)))) (-3734 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-640 (-640 *5))))) (-2308 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-4 *1 (-1048 *4 *5 *2 *6 *7)) (-4 *6 (-238 *5 *2)) (-4 *7 (-238 *4 *2)) (-4 *2 (-1045)))) (-4293 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-4 *1 (-1048 *4 *5 *2 *6 *7)) (-4 *6 (-238 *5 *2)) (-4 *7 (-238 *4 *2)) (-4 *2 (-1045)))) (-2308 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-563)) (-4 *1 (-1048 *4 *5 *2 *6 *7)) (-4 *2 (-1045)) (-4 *6 (-238 *5 *2)) (-4 *7 (-238 *4 *2)))) (-1960 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-1048 *4 *5 *6 *2 *7)) (-4 *6 (-1045)) (-4 *7 (-238 *4 *6)) (-4 *2 (-238 *5 *6)))) (-1950 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-1048 *4 *5 *6 *7 *2)) (-4 *6 (-1045)) (-4 *7 (-238 *5 *6)) (-4 *2 (-238 *4 *6)))) (-2238 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)))) (-3012 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1048 *3 *4 *2 *5 *6)) (-4 *2 (-1045)) (-4 *5 (-238 *4 *2)) (-4 *6 (-238 *3 *2)) (-4 *2 (-555)))) (-1836 (*1 *1 *1 *2) (-12 (-4 *1 (-1048 *3 *4 *2 *5 *6)) (-4 *2 (-1045)) (-4 *5 (-238 *4 *2)) (-4 *6 (-238 *3 *2)) (-4 *2 (-363)))) (-1940 (*1 *1 *1) (-12 (-4 *1 (-1048 *2 *3 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *2 *4)) (-4 *4 (-307)))) (-2521 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-555)) (-5 *2 (-767)))) (-1929 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-555)) (-5 *2 (-767)))) (-1917 (*1 *2 *1) (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-555)) (-5 *2 (-640 *7)))))
+(-13 (-111 |t#3| |t#3|) (-489 |t#3|) (-10 -8 (-6 -4408) (IF (|has| |t#3| (-172)) (-6 (-713 |t#3|)) |%noBranch|) (-15 -4040 ($ (-640 (-640 |t#3|)))) (-15 -3893 ((-112) $)) (-15 -3881 ((-112) $)) (-15 -3870 ((-112) $)) (-15 -2005 ((-112) $)) (-15 -1995 ((-563) $)) (-15 -1986 ((-563) $)) (-15 -1979 ((-563) $)) (-15 -1969 ((-563) $)) (-15 -2380 ((-767) $)) (-15 -2391 ((-767) $)) (-15 -3734 ((-640 (-640 |t#3|)) $)) (-15 -2308 (|t#3| $ (-563) (-563))) (-15 -4293 (|t#3| $ (-563) (-563))) (-15 -2308 (|t#3| $ (-563) (-563) |t#3|)) (-15 -1960 (|t#4| $ (-563))) (-15 -1950 (|t#5| $ (-563))) (-15 -2238 ($ (-1 |t#3| |t#3|) $)) (-15 -2238 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-555)) (-15 -3012 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-363)) (-15 -1836 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-307)) (-15 -1940 ($ $)) |%noBranch|) (IF (|has| |t#3| (-555)) (PROGN (-15 -2521 ((-767) $)) (-15 -1929 ((-767) $)) (-15 -1917 ((-640 |t#5|) $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-102) . T) ((-111 |#3| |#3|) . T) ((-131) . T) ((-610 (-858)) . T) ((-309 |#3|) -12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093))) ((-489 |#3|) . T) ((-514 |#3| |#3|) -12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093))) ((-643 |#3|) . T) ((-713 |#3|) |has| |#3| (-172)) ((-1051 |#3|) . T) ((-1093) . T) ((-1208) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3129 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-1937 (((-112) $) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-4239 (($) NIL T CONST)) (-4069 (($ $) 43 (|has| |#3| (-307)))) (-2368 (((-240 |#2| |#3|) $ (-563)) 32)) (-3107 (($ (-684 |#3|)) 41)) (-2522 (((-767) $) 45 (|has| |#3| (-555)))) (-4293 ((|#3| $ (-563) (-563)) NIL)) (-2659 (((-640 |#3|) $) NIL (|has| $ (-6 -4407)))) (-1997 (((-767) $) 47 (|has| |#3| (-555)))) (-2345 (((-640 (-240 |#1| |#3|)) $) 51 (|has| |#3| (-555)))) (-2381 (((-767) $) NIL)) (-2393 (((-767) $) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2013 (((-563) $) NIL)) (-3650 (((-563) $) NIL)) (-2259 (((-640 |#3|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#3| (-1093))))) (-1859 (((-563) $) NIL)) (-2207 (((-563) $) NIL)) (-4038 (($ (-640 (-640 |#3|))) 27)) (-4345 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-4136 (((-640 (-640 |#3|)) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3008 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-555)))) (-3138 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 |#3|) (-640 |#3|)) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-294 |#3|)) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-640 (-294 |#3|))) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#3| $ (-563) (-563)) NIL) ((|#3| $ (-563) (-563) |#3|) NIL)) (-3533 (((-134)) 54 (|has| |#3| (-363)))) (-2717 (((-112) $) NIL)) (-1709 (((-767) |#3| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#3| (-1093)))) (((-767) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) 61 (|has| |#3| (-611 (-536))))) (-1912 (((-240 |#1| |#3|) $ (-563)) 36)) (-1693 (((-858) $) 16) (((-684 |#3|) $) 38)) (-4383 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4407)))) (-3280 (((-112) $) NIL)) (-2241 (($) 13 T CONST)) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ |#3|) NIL (|has| |#3| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-1049 |#1| |#2| |#3|) (-13 (-1048 |#1| |#2| |#3| (-240 |#2| |#3|) (-240 |#1| |#3|)) (-610 (-684 |#3|)) (-10 -8 (IF (|has| |#3| (-363)) (-6 (-1264 |#3|)) |%noBranch|) (IF (|has| |#3| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (-15 -3107 ($ (-684 |#3|))))) (-767) (-767) (-1045)) (T -1049))
-((-3107 (*1 *1 *2) (-12 (-5 *2 (-684 *5)) (-4 *5 (-1045)) (-5 *1 (-1049 *3 *4 *5)) (-14 *3 (-767)) (-14 *4 (-767)))))
-(-13 (-1048 |#1| |#2| |#3| (-240 |#2| |#3|) (-240 |#1| |#3|)) (-610 (-684 |#3|)) (-10 -8 (IF (|has| |#3| (-363)) (-6 (-1264 |#3|)) |%noBranch|) (IF (|has| |#3| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (-15 -3107 ($ (-684 |#3|)))))
-((-2444 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 34)) (-2240 ((|#10| (-1 |#7| |#3|) |#6|) 32)))
-(((-1050 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -2240 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -2444 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|))) (-767) (-767) (-1045) (-238 |#2| |#3|) (-238 |#1| |#3|) (-1048 |#1| |#2| |#3| |#4| |#5|) (-1045) (-238 |#2| |#7|) (-238 |#1| |#7|) (-1048 |#1| |#2| |#7| |#8| |#9|)) (T -1050))
-((-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-1045)) (-4 *2 (-1045)) (-14 *5 (-767)) (-14 *6 (-767)) (-4 *8 (-238 *6 *7)) (-4 *9 (-238 *5 *7)) (-4 *10 (-238 *6 *2)) (-4 *11 (-238 *5 *2)) (-5 *1 (-1050 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12)) (-4 *4 (-1048 *5 *6 *7 *8 *9)) (-4 *12 (-1048 *5 *6 *2 *10 *11)))) (-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-1045)) (-4 *10 (-1045)) (-14 *5 (-767)) (-14 *6 (-767)) (-4 *8 (-238 *6 *7)) (-4 *9 (-238 *5 *7)) (-4 *2 (-1048 *5 *6 *10 *11 *12)) (-5 *1 (-1050 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2)) (-4 *4 (-1048 *5 *6 *7 *8 *9)) (-4 *11 (-238 *6 *10)) (-4 *12 (-238 *5 *10)))))
-(-10 -7 (-15 -2240 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -2444 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ |#1|) 23)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3870 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-3893 (((-112) $) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-2569 (($) NIL T CONST)) (-1940 (($ $) 43 (|has| |#3| (-307)))) (-1960 (((-240 |#2| |#3|) $ (-563)) 32)) (-3902 (($ (-684 |#3|)) 41)) (-2521 (((-767) $) 45 (|has| |#3| (-555)))) (-4293 ((|#3| $ (-563) (-563)) NIL)) (-2658 (((-640 |#3|) $) NIL (|has| $ (-6 -4408)))) (-1929 (((-767) $) 47 (|has| |#3| (-555)))) (-1917 (((-640 (-240 |#1| |#3|)) $) 51 (|has| |#3| (-555)))) (-2380 (((-767) $) NIL)) (-2391 (((-767) $) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-1995 (((-563) $) NIL)) (-1979 (((-563) $) NIL)) (-3523 (((-640 |#3|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#3| (-1093))))) (-1986 (((-563) $) NIL)) (-1969 (((-563) $) NIL)) (-4040 (($ (-640 (-640 |#3|))) 27)) (-4347 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-3734 (((-640 (-640 |#3|)) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3012 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-555)))) (-1458 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 |#3|) (-640 |#3|)) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-294 |#3|)) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-640 (-294 |#3|))) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#3| $ (-563) (-563)) NIL) ((|#3| $ (-563) (-563) |#3|) NIL)) (-3526 (((-134)) 54 (|has| |#3| (-363)))) (-3881 (((-112) $) NIL)) (-1708 (((-767) |#3| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#3| (-1093)))) (((-767) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) 61 (|has| |#3| (-611 (-536))))) (-1950 (((-240 |#1| |#3|) $ (-563)) 36)) (-1692 (((-858) $) 16) (((-684 |#3|) $) 38)) (-1471 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4408)))) (-2005 (((-112) $) NIL)) (-2239 (($) 13 T CONST)) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ |#3|) NIL (|has| |#3| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-1049 |#1| |#2| |#3|) (-13 (-1048 |#1| |#2| |#3| (-240 |#2| |#3|) (-240 |#1| |#3|)) (-610 (-684 |#3|)) (-10 -8 (IF (|has| |#3| (-363)) (-6 (-1264 |#3|)) |%noBranch|) (IF (|has| |#3| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (-15 -3902 ($ (-684 |#3|))))) (-767) (-767) (-1045)) (T -1049))
+((-3902 (*1 *1 *2) (-12 (-5 *2 (-684 *5)) (-4 *5 (-1045)) (-5 *1 (-1049 *3 *4 *5)) (-14 *3 (-767)) (-14 *4 (-767)))))
+(-13 (-1048 |#1| |#2| |#3| (-240 |#2| |#3|) (-240 |#1| |#3|)) (-610 (-684 |#3|)) (-10 -8 (IF (|has| |#3| (-363)) (-6 (-1264 |#3|)) |%noBranch|) (IF (|has| |#3| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|) (-15 -3902 ($ (-684 |#3|)))))
+((-2444 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 34)) (-2238 ((|#10| (-1 |#7| |#3|) |#6|) 32)))
+(((-1050 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -2238 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -2444 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|))) (-767) (-767) (-1045) (-238 |#2| |#3|) (-238 |#1| |#3|) (-1048 |#1| |#2| |#3| |#4| |#5|) (-1045) (-238 |#2| |#7|) (-238 |#1| |#7|) (-1048 |#1| |#2| |#7| |#8| |#9|)) (T -1050))
+((-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-1045)) (-4 *2 (-1045)) (-14 *5 (-767)) (-14 *6 (-767)) (-4 *8 (-238 *6 *7)) (-4 *9 (-238 *5 *7)) (-4 *10 (-238 *6 *2)) (-4 *11 (-238 *5 *2)) (-5 *1 (-1050 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12)) (-4 *4 (-1048 *5 *6 *7 *8 *9)) (-4 *12 (-1048 *5 *6 *2 *10 *11)))) (-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-1045)) (-4 *10 (-1045)) (-14 *5 (-767)) (-14 *6 (-767)) (-4 *8 (-238 *6 *7)) (-4 *9 (-238 *5 *7)) (-4 *2 (-1048 *5 *6 *10 *11 *12)) (-5 *1 (-1050 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2)) (-4 *4 (-1048 *5 *6 *7 *8 *9)) (-4 *11 (-238 *6 *10)) (-4 *12 (-238 *5 *10)))))
+(-10 -7 (-15 -2238 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -2444 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ |#1|) 23)))
(((-1051 |#1|) (-140) (-1052)) (T -1051))
((* (*1 *1 *1 *2) (-12 (-4 *1 (-1051 *2)) (-4 *2 (-1052)))))
(-13 (-21) (-10 -8 (-15 * ($ $ |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-1052) (-140)) (T -1052))
NIL
(-13 (-21) (-1105))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-610 (-858)) . T) ((-1105) . T) ((-1093) . T))
-((-2421 (($ $) 16)) (-3796 (($ $) 22)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 49)) (-3793 (($ $) 24)) (-4215 (($ $) 11)) (-1583 (($ $) 38)) (-2220 (((-379) $) NIL) (((-225) $) NIL) (((-888 (-379)) $) 33)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) 28) (($ (-563)) NIL) (($ (-407 (-563))) 28)) (-1675 (((-767)) 8)) (-4194 (($ $) 39)))
-(((-1053 |#1|) (-10 -8 (-15 -3796 (|#1| |#1|)) (-15 -2421 (|#1| |#1|)) (-15 -4215 (|#1| |#1|)) (-15 -1583 (|#1| |#1|)) (-15 -4194 (|#1| |#1|)) (-15 -3793 (|#1| |#1|)) (-15 -3787 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -2220 ((-888 (-379)) |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -1693 (|#1| (-563))) (-15 -2220 ((-225) |#1|)) (-15 -2220 ((-379) |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -1693 (|#1| |#1|)) (-15 -1675 ((-767))) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|))) (-1054)) (T -1053))
-((-1675 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1053 *3)) (-4 *3 (-1054)))))
-(-10 -8 (-15 -3796 (|#1| |#1|)) (-15 -2421 (|#1| |#1|)) (-15 -4215 (|#1| |#1|)) (-15 -1583 (|#1| |#1|)) (-15 -4194 (|#1| |#1|)) (-15 -3793 (|#1| |#1|)) (-15 -3787 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -2220 ((-888 (-379)) |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -1693 (|#1| (-563))) (-15 -2220 ((-225) |#1|)) (-15 -2220 ((-379) |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -1693 (|#1| |#1|)) (-15 -1675 ((-767))) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-3401 (((-563) $) 90)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-2421 (($ $) 88)) (-1495 (((-3 $ "failed") $ $) 19)) (-4335 (($ $) 74)) (-3205 (((-418 $) $) 73)) (-2186 (($ $) 98)) (-1919 (((-112) $ $) 60)) (-1857 (((-563) $) 115)) (-4239 (($) 17 T CONST)) (-3796 (($ $) 87)) (-2131 (((-3 (-563) "failed") $) 103) (((-3 (-407 (-563)) "failed") $) 100)) (-2058 (((-563) $) 104) (((-407 (-563)) $) 101)) (-3090 (($ $ $) 56)) (-3400 (((-3 $ "failed") $) 33)) (-3050 (($ $ $) 57)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 52)) (-2468 (((-112) $) 72)) (-3101 (((-112) $) 113)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 94)) (-3827 (((-112) $) 31)) (-1645 (($ $ (-563)) 97)) (-3793 (($ $) 93)) (-1419 (((-112) $) 114)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3084 (($ $ $) 112)) (-1777 (($ $ $) 111)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-2688 (($ $) 71)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-4215 (($ $) 89)) (-1583 (($ $) 91)) (-2174 (((-418 $) $) 75)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3008 (((-3 $ "failed") $ $) 43)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-2628 (((-767) $) 59)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 58)) (-2220 (((-379) $) 106) (((-225) $) 105) (((-888 (-379)) $) 95)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67) (($ (-563)) 102) (($ (-407 (-563))) 99)) (-1675 (((-767)) 28)) (-4194 (($ $) 92)) (-2126 (((-112) $ $) 40)) (-2509 (($ $) 116)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1778 (((-112) $ $) 109)) (-1756 (((-112) $ $) 108)) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 110)) (-1744 (((-112) $ $) 107)) (-1837 (($ $ $) 66)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70) (($ $ (-407 (-563))) 96)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68)))
+((-1763 (($ $) 16)) (-3925 (($ $) 22)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 49)) (-3975 (($ $) 24)) (-3935 (($ $) 11)) (-3954 (($ $) 38)) (-2219 (((-379) $) NIL) (((-225) $) NIL) (((-888 (-379)) $) 33)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL) (($ (-407 (-563))) 28) (($ (-563)) NIL) (($ (-407 (-563))) 28)) (-3914 (((-767)) 8)) (-3965 (($ $) 39)))
+(((-1053 |#1|) (-10 -8 (-15 -3925 (|#1| |#1|)) (-15 -1763 (|#1| |#1|)) (-15 -3935 (|#1| |#1|)) (-15 -3954 (|#1| |#1|)) (-15 -3965 (|#1| |#1|)) (-15 -3975 (|#1| |#1|)) (-15 -1812 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -2219 ((-888 (-379)) |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -1692 (|#1| (-563))) (-15 -2219 ((-225) |#1|)) (-15 -2219 ((-379) |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -1692 (|#1| |#1|)) (-15 -3914 ((-767))) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|))) (-1054)) (T -1053))
+((-3914 (*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1053 *3)) (-4 *3 (-1054)))))
+(-10 -8 (-15 -3925 (|#1| |#1|)) (-15 -1763 (|#1| |#1|)) (-15 -3935 (|#1| |#1|)) (-15 -3954 (|#1| |#1|)) (-15 -3965 (|#1| |#1|)) (-15 -3975 (|#1| |#1|)) (-15 -1812 ((-885 (-379) |#1|) |#1| (-888 (-379)) (-885 (-379) |#1|))) (-15 -2219 ((-888 (-379)) |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -1692 (|#1| (-563))) (-15 -2219 ((-225) |#1|)) (-15 -2219 ((-379) |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -1692 (|#1| |#1|)) (-15 -3914 ((-767))) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3944 (((-563) $) 90)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-1763 (($ $) 88)) (-3905 (((-3 $ "failed") $ $) 19)) (-1798 (($ $) 74)) (-2802 (((-418 $) $) 73)) (-2185 (($ $) 98)) (-2003 (((-112) $ $) 60)) (-2807 (((-563) $) 115)) (-2569 (($) 17 T CONST)) (-3925 (($ $) 87)) (-2130 (((-3 (-563) "failed") $) 103) (((-3 (-407 (-563)) "failed") $) 100)) (-2057 (((-563) $) 104) (((-407 (-563)) $) 101)) (-3094 (($ $ $) 56)) (-3951 (((-3 $ "failed") $) 33)) (-3054 (($ $ $) 57)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 52)) (-2560 (((-112) $) 72)) (-3414 (((-112) $) 113)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 94)) (-3401 (((-112) $) 31)) (-2172 (($ $ (-563)) 97)) (-3975 (($ $) 93)) (-3426 (((-112) $) 114)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3088 (($ $ $) 112)) (-1776 (($ $ $) 111)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-2687 (($ $) 71)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-3935 (($ $) 89)) (-3954 (($ $) 91)) (-2173 (((-418 $) $) 75)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3012 (((-3 $ "failed") $ $) 43)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-1993 (((-767) $) 59)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 58)) (-2219 (((-379) $) 106) (((-225) $) 105) (((-888 (-379)) $) 95)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67) (($ (-563)) 102) (($ (-407 (-563))) 99)) (-3914 (((-767)) 28)) (-3965 (($ $) 92)) (-3223 (((-112) $ $) 40)) (-1462 (($ $) 116)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1779 (((-112) $ $) 109)) (-1754 (((-112) $ $) 108)) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 110)) (-1743 (((-112) $ $) 107)) (-1836 (($ $ $) 66)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70) (($ $ (-407 (-563))) 96)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68)))
(((-1054) (-140)) (T -1054))
-((-2509 (*1 *1 *1) (-4 *1 (-1054))) (-3793 (*1 *1 *1) (-4 *1 (-1054))) (-4194 (*1 *1 *1) (-4 *1 (-1054))) (-1583 (*1 *1 *1) (-4 *1 (-1054))) (-3401 (*1 *2 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-563)))) (-4215 (*1 *1 *1) (-4 *1 (-1054))) (-2421 (*1 *1 *1) (-4 *1 (-1054))) (-3796 (*1 *1 *1) (-4 *1 (-1054))))
-(-13 (-363) (-844) (-1018) (-1034 (-563)) (-1034 (-407 (-563))) (-998) (-611 (-888 (-379))) (-882 (-379)) (-147) (-10 -8 (-15 -3793 ($ $)) (-15 -4194 ($ $)) (-15 -1583 ($ $)) (-15 -3401 ((-563) $)) (-15 -4215 ($ $)) (-15 -2421 ($ $)) (-15 -3796 ($ $)) (-15 -2509 ($ $))))
+((-1462 (*1 *1 *1) (-4 *1 (-1054))) (-3975 (*1 *1 *1) (-4 *1 (-1054))) (-3965 (*1 *1 *1) (-4 *1 (-1054))) (-3954 (*1 *1 *1) (-4 *1 (-1054))) (-3944 (*1 *2 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-563)))) (-3935 (*1 *1 *1) (-4 *1 (-1054))) (-1763 (*1 *1 *1) (-4 *1 (-1054))) (-3925 (*1 *1 *1) (-4 *1 (-1054))))
+(-13 (-363) (-844) (-1018) (-1034 (-563)) (-1034 (-407 (-563))) (-998) (-611 (-888 (-379))) (-882 (-379)) (-147) (-10 -8 (-15 -3975 ($ $)) (-15 -3965 ($ $)) (-15 -3954 ($ $)) (-15 -3944 ((-563) $)) (-15 -3935 ($ $)) (-15 -1763 ($ $)) (-15 -3925 ($ $)) (-15 -1462 ($ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-131) . T) ((-147) . T) ((-613 #0#) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-611 (-225)) . T) ((-611 (-379)) . T) ((-611 (-888 (-379))) . T) ((-243) . T) ((-290) . T) ((-307) . T) ((-363) . T) ((-452) . T) ((-555) . T) ((-643 #0#) . T) ((-643 $) . T) ((-713 #0#) . T) ((-713 $) . T) ((-722) . T) ((-787) . T) ((-788) . T) ((-790) . T) ((-791) . T) ((-844) . T) ((-846) . T) ((-882 (-379)) . T) ((-916) . T) ((-998) . T) ((-1018) . T) ((-1034 (-407 (-563))) . T) ((-1034 (-563)) . T) ((-1051 #0#) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1212) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) |#2| $) 23)) (-3749 ((|#1| $) 10)) (-1857 (((-563) |#2| $) 87)) (-3457 (((-3 $ "failed") |#2| (-917)) 57)) (-1701 ((|#1| $) 28)) (-3527 ((|#1| |#2| $ |#1|) 37)) (-1441 (($ $) 25)) (-3400 (((-3 |#2| "failed") |#2| $) 86)) (-3101 (((-112) |#2| $) NIL)) (-1419 (((-112) |#2| $) NIL)) (-2161 (((-112) |#2| $) 24)) (-1354 ((|#1| $) 88)) (-1686 ((|#1| $) 27)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3390 ((|#2| $) 78)) (-1693 (((-858) $) 70)) (-1403 ((|#1| |#2| $ |#1|) 38)) (-2783 (((-640 $) |#2|) 59)) (-1718 (((-112) $ $) 73)))
-(((-1055 |#1| |#2|) (-13 (-1062 |#1| |#2|) (-10 -8 (-15 -1686 (|#1| $)) (-15 -1701 (|#1| $)) (-15 -3749 (|#1| $)) (-15 -1354 (|#1| $)) (-15 -1441 ($ $)) (-15 -2161 ((-112) |#2| $)) (-15 -3527 (|#1| |#2| $ |#1|)))) (-13 (-844) (-363)) (-1233 |#1|)) (T -1055))
-((-3527 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3)) (-4 *3 (-1233 *2)))) (-1686 (*1 *2 *1) (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3)) (-4 *3 (-1233 *2)))) (-1701 (*1 *2 *1) (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3)) (-4 *3 (-1233 *2)))) (-3749 (*1 *2 *1) (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3)) (-4 *3 (-1233 *2)))) (-1354 (*1 *2 *1) (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3)) (-4 *3 (-1233 *2)))) (-1441 (*1 *1 *1) (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3)) (-4 *3 (-1233 *2)))) (-2161 (*1 *2 *3 *1) (-12 (-4 *4 (-13 (-844) (-363))) (-5 *2 (-112)) (-5 *1 (-1055 *4 *3)) (-4 *3 (-1233 *4)))))
-(-13 (-1062 |#1| |#2|) (-10 -8 (-15 -1686 (|#1| $)) (-15 -1701 (|#1| $)) (-15 -3749 (|#1| $)) (-15 -1354 (|#1| $)) (-15 -1441 ($ $)) (-15 -2161 ((-112) |#2| $)) (-15 -3527 (|#1| |#2| $ |#1|))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1433 (($ $ $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2448 (($ $ $ $) NIL)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-1857 (((-563) $) NIL)) (-3458 (($ $ $) NIL)) (-4239 (($) NIL T CONST)) (-2852 (($ (-1169)) 10) (($ (-563)) 7)) (-2131 (((-3 (-563) "failed") $) NIL)) (-2058 (((-563) $) NIL)) (-3090 (($ $ $) NIL)) (-2950 (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-3909 (((-3 (-407 (-563)) "failed") $) NIL)) (-2239 (((-112) $) NIL)) (-2651 (((-407 (-563)) $) NIL)) (-1691 (($) NIL) (($ $) NIL)) (-3050 (($ $ $) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-4362 (($ $ $ $) NIL)) (-1544 (($ $ $) NIL)) (-3101 (((-112) $) NIL)) (-3972 (($ $ $) NIL)) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL)) (-3827 (((-112) $) NIL)) (-3131 (((-112) $) NIL)) (-2408 (((-3 $ "failed") $) NIL)) (-1419 (((-112) $) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2692 (($ $ $ $) NIL)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-2646 (($ $) NIL)) (-3415 (($ $) NIL)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-3364 (($ $ $) NIL)) (-2523 (($) NIL T CONST)) (-2824 (($ $) NIL)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3219 (($ $) NIL)) (-2174 (((-418 $) $) NIL)) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2359 (((-112) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-4202 (($ $ (-767)) NIL) (($ $) NIL)) (-3872 (($ $) NIL)) (-1872 (($ $) NIL)) (-2220 (((-563) $) 16) (((-536) $) NIL) (((-888 (-563)) $) NIL) (((-379) $) NIL) (((-225) $) NIL) (($ (-1169)) 9)) (-1693 (((-858) $) 20) (($ (-563)) 6) (($ $) NIL) (($ (-563)) 6)) (-1675 (((-767)) NIL)) (-1570 (((-112) $ $) NIL)) (-2869 (($ $ $) NIL)) (-4211 (($) NIL)) (-2126 (((-112) $ $) NIL)) (-2039 (($ $ $ $) NIL)) (-2509 (($ $) NIL)) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ (-767)) NIL) (($ $) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)) (-1826 (($ $) 19) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL)))
-(((-1056) (-13 (-545) (-615 (-1169)) (-10 -8 (-6 -4394) (-6 -4399) (-6 -4395) (-15 -2852 ($ (-1169))) (-15 -2852 ($ (-563)))))) (T -1056))
-((-2852 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1056)))) (-2852 (*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1056)))))
-(-13 (-545) (-615 (-1169)) (-10 -8 (-6 -4394) (-6 -4399) (-6 -4395) (-15 -2852 ($ (-1169))) (-15 -2852 ($ (-563)))))
-((-1677 (((-112) $ $) NIL (-4032 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093))))) (-1552 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) NIL)) (-4378 (((-1262) $ (-1169) (-1169)) NIL (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) NIL)) (-1822 (($) 9)) (-1849 (((-52) $ (-1169) (-52)) NIL)) (-2498 (($ $) 30)) (-2841 (($ $) 28)) (-3543 (($ $) 27)) (-4035 (($ $) 29)) (-4164 (($ $) 32)) (-2407 (($ $) 33)) (-1348 (($ $) 26)) (-1320 (($ $) 31)) (-2812 (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) 25 (|has| $ (-6 -4407)))) (-1577 (((-3 (-52) "failed") (-1169) $) 40)) (-4239 (($) NIL T CONST)) (-1304 (($) 7)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093))))) (-2705 (($ (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) $) 50 (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-3 (-52) "failed") (-1169) $) NIL)) (-1459 (($ (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407)))) (-2444 (((-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $ (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (((-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $ (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) NIL (|has| $ (-6 -4407))) (((-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407)))) (-4257 (((-3 (-1151) "failed") $ (-1151) (-563)) 59)) (-4355 (((-52) $ (-1169) (-52)) NIL (|has| $ (-6 -4408)))) (-4293 (((-52) $ (-1169)) NIL)) (-2659 (((-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-640 (-52)) $) NIL (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-1169) $) NIL (|has| (-1169) (-846)))) (-2259 (((-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) 35 (|has| $ (-6 -4407))) (((-640 (-52)) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-52) (-1093))))) (-3860 (((-1169) $) NIL (|has| (-1169) (-846)))) (-4345 (($ (-1 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (-4032 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093))))) (-1303 (((-640 (-1169)) $) NIL)) (-4173 (((-112) (-1169) $) NIL)) (-2964 (((-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) $) NIL)) (-1812 (($ (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) $) 43)) (-4318 (((-640 (-1169)) $) NIL)) (-3192 (((-112) (-1169) $) NIL)) (-1694 (((-1113) $) NIL (-4032 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093))))) (-1371 (((-379) $ (-1169)) 49)) (-3779 (((-640 (-1151)) $ (-1151)) 60)) (-3781 (((-52) $) NIL (|has| (-1169) (-846)))) (-4203 (((-3 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) "failed") (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL)) (-2358 (($ $ (-52)) NIL (|has| $ (-6 -4408)))) (-3755 (((-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) $) NIL)) (-3138 (((-112) (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (($ $ (-294 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (($ $ (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (($ $ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (($ $ (-640 (-52)) (-640 (-52))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-294 (-52))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-640 (-294 (-52)))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-52) (-1093))))) (-2836 (((-640 (-52)) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 (((-52) $ (-1169)) NIL) (((-52) $ (-1169) (-52)) NIL)) (-3890 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) NIL)) (-1450 (($ $ (-1169)) 51)) (-1709 (((-767) (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093)))) (((-767) (-52) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-52) (-1093)))) (((-767) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-611 (-536))))) (-1707 (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) 37)) (-2853 (($ $ $) 38)) (-1693 (((-858) $) NIL (-4032 (|has| (-52) (-610 (-858))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-610 (-858)))))) (-1816 (($ $ (-1169) (-379)) 47)) (-2735 (($ $ (-1169) (-379)) 48)) (-2233 (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))))) NIL)) (-4383 (((-112) (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2557 (-52)))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (-4032 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2557 (-52))) (-1093))))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-1057) (-13 (-1184 (-1169) (-52)) (-10 -8 (-15 -2853 ($ $ $)) (-15 -1304 ($)) (-15 -1348 ($ $)) (-15 -3543 ($ $)) (-15 -2841 ($ $)) (-15 -4035 ($ $)) (-15 -1320 ($ $)) (-15 -2498 ($ $)) (-15 -4164 ($ $)) (-15 -2407 ($ $)) (-15 -1816 ($ $ (-1169) (-379))) (-15 -2735 ($ $ (-1169) (-379))) (-15 -1371 ((-379) $ (-1169))) (-15 -3779 ((-640 (-1151)) $ (-1151))) (-15 -1450 ($ $ (-1169))) (-15 -1822 ($)) (-15 -4257 ((-3 (-1151) "failed") $ (-1151) (-563))) (-6 -4407)))) (T -1057))
-((-2853 (*1 *1 *1 *1) (-5 *1 (-1057))) (-1304 (*1 *1) (-5 *1 (-1057))) (-1348 (*1 *1 *1) (-5 *1 (-1057))) (-3543 (*1 *1 *1) (-5 *1 (-1057))) (-2841 (*1 *1 *1) (-5 *1 (-1057))) (-4035 (*1 *1 *1) (-5 *1 (-1057))) (-1320 (*1 *1 *1) (-5 *1 (-1057))) (-2498 (*1 *1 *1) (-5 *1 (-1057))) (-4164 (*1 *1 *1) (-5 *1 (-1057))) (-2407 (*1 *1 *1) (-5 *1 (-1057))) (-1816 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-379)) (-5 *1 (-1057)))) (-2735 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-379)) (-5 *1 (-1057)))) (-1371 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-379)) (-5 *1 (-1057)))) (-3779 (*1 *2 *1 *3) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1057)) (-5 *3 (-1151)))) (-1450 (*1 *1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1057)))) (-1822 (*1 *1) (-5 *1 (-1057))) (-4257 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1151)) (-5 *3 (-563)) (-5 *1 (-1057)))))
-(-13 (-1184 (-1169) (-52)) (-10 -8 (-15 -2853 ($ $ $)) (-15 -1304 ($)) (-15 -1348 ($ $)) (-15 -3543 ($ $)) (-15 -2841 ($ $)) (-15 -4035 ($ $)) (-15 -1320 ($ $)) (-15 -2498 ($ $)) (-15 -4164 ($ $)) (-15 -2407 ($ $)) (-15 -1816 ($ $ (-1169) (-379))) (-15 -2735 ($ $ (-1169) (-379))) (-15 -1371 ((-379) $ (-1169))) (-15 -3779 ((-640 (-1151)) $ (-1151))) (-15 -1450 ($ $ (-1169))) (-15 -1822 ($)) (-15 -4257 ((-3 (-1151) "failed") $ (-1151) (-563))) (-6 -4407)))
-((-4302 (($ $) 45)) (-2645 (((-112) $ $) 74)) (-2131 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 (-563) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-948 (-407 (-563)))) 226) (((-3 $ "failed") (-948 (-563))) 225) (((-3 $ "failed") (-948 |#2|)) 228)) (-2058 ((|#2| $) NIL) (((-407 (-563)) $) NIL) (((-563) $) NIL) ((|#4| $) NIL) (($ (-948 (-407 (-563)))) 214) (($ (-948 (-563))) 210) (($ (-948 |#2|)) 230)) (-2751 (($ $) NIL) (($ $ |#4|) 43)) (-3990 (((-112) $ $) 111) (((-112) $ (-640 $)) 112)) (-2921 (((-112) $) 56)) (-2521 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 106)) (-2060 (($ $) 137)) (-2003 (($ $) 133)) (-2253 (($ $) 132)) (-4189 (($ $ $) 79) (($ $ $ |#4|) 84)) (-2110 (($ $ $) 82) (($ $ $ |#4|) 86)) (-2299 (((-112) $ $) 120) (((-112) $ (-640 $)) 121)) (-2957 ((|#4| $) 33)) (-1421 (($ $ $) 109)) (-2792 (((-112) $) 55)) (-3064 (((-767) $) 35)) (-2216 (($ $) 151)) (-3208 (($ $) 148)) (-2305 (((-640 $) $) 68)) (-2196 (($ $) 57)) (-4099 (($ $) 144)) (-2120 (((-640 $) $) 65)) (-4216 (($ $) 59)) (-2726 ((|#2| $) NIL) (($ $ |#4|) 38)) (-3206 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -2269 (-767))) $ $) 110)) (-2365 (((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -3490 $) (|:| -1972 $)) $ $) 107) (((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -3490 $) (|:| -1972 $)) $ $ |#4|) 108)) (-4227 (((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -1972 $)) $ $) 103) (((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -1972 $)) $ $ |#4|) 104)) (-2173 (($ $ $) 89) (($ $ $ |#4|) 94)) (-2679 (($ $ $) 90) (($ $ $ |#4|) 95)) (-2134 (((-640 $) $) 51)) (-4197 (((-112) $ $) 117) (((-112) $ (-640 $)) 118)) (-2715 (($ $ $) 102)) (-2523 (($ $) 37)) (-3009 (((-112) $ $) 72)) (-2031 (((-112) $ $) 113) (((-112) $ (-640 $)) 115)) (-4056 (($ $ $) 100)) (-2917 (($ $) 40)) (-3548 ((|#2| |#2| $) 141) (($ (-640 $)) NIL) (($ $ $) NIL)) (-2307 (($ $ |#2|) NIL) (($ $ $) 130)) (-1327 (($ $ |#2|) 125) (($ $ $) 128)) (-1935 (($ $) 48)) (-3938 (($ $) 52)) (-2220 (((-888 (-379)) $) NIL) (((-888 (-563)) $) NIL) (((-536) $) NIL) (($ (-948 (-407 (-563)))) 216) (($ (-948 (-563))) 212) (($ (-948 |#2|)) 227) (((-1151) $) 249) (((-948 |#2|) $) 161)) (-1693 (((-858) $) 30) (($ (-563)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-948 |#2|) $) 162) (($ (-407 (-563))) NIL) (($ $) NIL)) (-3738 (((-3 (-112) "failed") $ $) 71)))
-(((-1058 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1693 (|#1| |#1|)) (-15 -3548 (|#1| |#1| |#1|)) (-15 -3548 (|#1| (-640 |#1|))) (-15 -1693 (|#1| (-407 (-563)))) (-15 -1693 ((-948 |#2|) |#1|)) (-15 -2220 ((-948 |#2|) |#1|)) (-15 -2220 ((-1151) |#1|)) (-15 -2216 (|#1| |#1|)) (-15 -3208 (|#1| |#1|)) (-15 -4099 (|#1| |#1|)) (-15 -2060 (|#1| |#1|)) (-15 -3548 (|#2| |#2| |#1|)) (-15 -2307 (|#1| |#1| |#1|)) (-15 -1327 (|#1| |#1| |#1|)) (-15 -2307 (|#1| |#1| |#2|)) (-15 -1327 (|#1| |#1| |#2|)) (-15 -2003 (|#1| |#1|)) (-15 -2253 (|#1| |#1|)) (-15 -2220 (|#1| (-948 |#2|))) (-15 -2058 (|#1| (-948 |#2|))) (-15 -2131 ((-3 |#1| "failed") (-948 |#2|))) (-15 -2220 (|#1| (-948 (-563)))) (-15 -2058 (|#1| (-948 (-563)))) (-15 -2131 ((-3 |#1| "failed") (-948 (-563)))) (-15 -2220 (|#1| (-948 (-407 (-563))))) (-15 -2058 (|#1| (-948 (-407 (-563))))) (-15 -2131 ((-3 |#1| "failed") (-948 (-407 (-563))))) (-15 -2715 (|#1| |#1| |#1|)) (-15 -4056 (|#1| |#1| |#1|)) (-15 -3206 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -2269 (-767))) |#1| |#1|)) (-15 -1421 (|#1| |#1| |#1|)) (-15 -2521 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -2365 ((-2 (|:| -2311 |#1|) (|:| |gap| (-767)) (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1| |#4|)) (-15 -2365 ((-2 (|:| -2311 |#1|) (|:| |gap| (-767)) (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -4227 ((-2 (|:| -2311 |#1|) (|:| |gap| (-767)) (|:| -1972 |#1|)) |#1| |#1| |#4|)) (-15 -4227 ((-2 (|:| -2311 |#1|) (|:| |gap| (-767)) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -2679 (|#1| |#1| |#1| |#4|)) (-15 -2173 (|#1| |#1| |#1| |#4|)) (-15 -2679 (|#1| |#1| |#1|)) (-15 -2173 (|#1| |#1| |#1|)) (-15 -2110 (|#1| |#1| |#1| |#4|)) (-15 -4189 (|#1| |#1| |#1| |#4|)) (-15 -2110 (|#1| |#1| |#1|)) (-15 -4189 (|#1| |#1| |#1|)) (-15 -2299 ((-112) |#1| (-640 |#1|))) (-15 -2299 ((-112) |#1| |#1|)) (-15 -4197 ((-112) |#1| (-640 |#1|))) (-15 -4197 ((-112) |#1| |#1|)) (-15 -2031 ((-112) |#1| (-640 |#1|))) (-15 -2031 ((-112) |#1| |#1|)) (-15 -3990 ((-112) |#1| (-640 |#1|))) (-15 -3990 ((-112) |#1| |#1|)) (-15 -2645 ((-112) |#1| |#1|)) (-15 -3009 ((-112) |#1| |#1|)) (-15 -3738 ((-3 (-112) "failed") |#1| |#1|)) (-15 -2305 ((-640 |#1|) |#1|)) (-15 -2120 ((-640 |#1|) |#1|)) (-15 -4216 (|#1| |#1|)) (-15 -2196 (|#1| |#1|)) (-15 -2921 ((-112) |#1|)) (-15 -2792 ((-112) |#1|)) (-15 -2751 (|#1| |#1| |#4|)) (-15 -2726 (|#1| |#1| |#4|)) (-15 -3938 (|#1| |#1|)) (-15 -2134 ((-640 |#1|) |#1|)) (-15 -1935 (|#1| |#1|)) (-15 -4302 (|#1| |#1|)) (-15 -2917 (|#1| |#1|)) (-15 -2523 (|#1| |#1|)) (-15 -3064 ((-767) |#1|)) (-15 -2957 (|#4| |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -2220 ((-888 (-563)) |#1|)) (-15 -2220 ((-888 (-379)) |#1|)) (-15 -1693 (|#1| |#4|)) (-15 -2131 ((-3 |#4| "failed") |#1|)) (-15 -2058 (|#4| |#1|)) (-15 -2726 (|#2| |#1|)) (-15 -2751 (|#1| |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -1693 (|#1| |#2|)) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|))) (-1059 |#2| |#3| |#4|) (-1045) (-789) (-846)) (T -1058))
-NIL
-(-10 -8 (-15 -1693 (|#1| |#1|)) (-15 -3548 (|#1| |#1| |#1|)) (-15 -3548 (|#1| (-640 |#1|))) (-15 -1693 (|#1| (-407 (-563)))) (-15 -1693 ((-948 |#2|) |#1|)) (-15 -2220 ((-948 |#2|) |#1|)) (-15 -2220 ((-1151) |#1|)) (-15 -2216 (|#1| |#1|)) (-15 -3208 (|#1| |#1|)) (-15 -4099 (|#1| |#1|)) (-15 -2060 (|#1| |#1|)) (-15 -3548 (|#2| |#2| |#1|)) (-15 -2307 (|#1| |#1| |#1|)) (-15 -1327 (|#1| |#1| |#1|)) (-15 -2307 (|#1| |#1| |#2|)) (-15 -1327 (|#1| |#1| |#2|)) (-15 -2003 (|#1| |#1|)) (-15 -2253 (|#1| |#1|)) (-15 -2220 (|#1| (-948 |#2|))) (-15 -2058 (|#1| (-948 |#2|))) (-15 -2131 ((-3 |#1| "failed") (-948 |#2|))) (-15 -2220 (|#1| (-948 (-563)))) (-15 -2058 (|#1| (-948 (-563)))) (-15 -2131 ((-3 |#1| "failed") (-948 (-563)))) (-15 -2220 (|#1| (-948 (-407 (-563))))) (-15 -2058 (|#1| (-948 (-407 (-563))))) (-15 -2131 ((-3 |#1| "failed") (-948 (-407 (-563))))) (-15 -2715 (|#1| |#1| |#1|)) (-15 -4056 (|#1| |#1| |#1|)) (-15 -3206 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -2269 (-767))) |#1| |#1|)) (-15 -1421 (|#1| |#1| |#1|)) (-15 -2521 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -2365 ((-2 (|:| -2311 |#1|) (|:| |gap| (-767)) (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1| |#4|)) (-15 -2365 ((-2 (|:| -2311 |#1|) (|:| |gap| (-767)) (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -4227 ((-2 (|:| -2311 |#1|) (|:| |gap| (-767)) (|:| -1972 |#1|)) |#1| |#1| |#4|)) (-15 -4227 ((-2 (|:| -2311 |#1|) (|:| |gap| (-767)) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -2679 (|#1| |#1| |#1| |#4|)) (-15 -2173 (|#1| |#1| |#1| |#4|)) (-15 -2679 (|#1| |#1| |#1|)) (-15 -2173 (|#1| |#1| |#1|)) (-15 -2110 (|#1| |#1| |#1| |#4|)) (-15 -4189 (|#1| |#1| |#1| |#4|)) (-15 -2110 (|#1| |#1| |#1|)) (-15 -4189 (|#1| |#1| |#1|)) (-15 -2299 ((-112) |#1| (-640 |#1|))) (-15 -2299 ((-112) |#1| |#1|)) (-15 -4197 ((-112) |#1| (-640 |#1|))) (-15 -4197 ((-112) |#1| |#1|)) (-15 -2031 ((-112) |#1| (-640 |#1|))) (-15 -2031 ((-112) |#1| |#1|)) (-15 -3990 ((-112) |#1| (-640 |#1|))) (-15 -3990 ((-112) |#1| |#1|)) (-15 -2645 ((-112) |#1| |#1|)) (-15 -3009 ((-112) |#1| |#1|)) (-15 -3738 ((-3 (-112) "failed") |#1| |#1|)) (-15 -2305 ((-640 |#1|) |#1|)) (-15 -2120 ((-640 |#1|) |#1|)) (-15 -4216 (|#1| |#1|)) (-15 -2196 (|#1| |#1|)) (-15 -2921 ((-112) |#1|)) (-15 -2792 ((-112) |#1|)) (-15 -2751 (|#1| |#1| |#4|)) (-15 -2726 (|#1| |#1| |#4|)) (-15 -3938 (|#1| |#1|)) (-15 -2134 ((-640 |#1|) |#1|)) (-15 -1935 (|#1| |#1|)) (-15 -4302 (|#1| |#1|)) (-15 -2917 (|#1| |#1|)) (-15 -2523 (|#1| |#1|)) (-15 -3064 ((-767) |#1|)) (-15 -2957 (|#4| |#1|)) (-15 -2220 ((-536) |#1|)) (-15 -2220 ((-888 (-563)) |#1|)) (-15 -2220 ((-888 (-379)) |#1|)) (-15 -1693 (|#1| |#4|)) (-15 -2131 ((-3 |#4| "failed") |#1|)) (-15 -2058 (|#4| |#1|)) (-15 -2726 (|#2| |#1|)) (-15 -2751 (|#1| |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -1693 (|#1| |#2|)) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-2606 (((-640 |#3|) $) 110)) (-2139 (((-1165 $) $ |#3|) 125) (((-1165 |#1|) $) 124)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 87 (|has| |#1| (-555)))) (-4223 (($ $) 88 (|has| |#1| (-555)))) (-3156 (((-112) $) 90 (|has| |#1| (-555)))) (-1779 (((-767) $) 112) (((-767) $ (-640 |#3|)) 111)) (-4302 (($ $) 271)) (-2645 (((-112) $ $) 257)) (-1495 (((-3 $ "failed") $ $) 19)) (-3724 (($ $ $) 216 (|has| |#1| (-555)))) (-1623 (((-640 $) $ $) 211 (|has| |#1| (-555)))) (-2424 (((-418 (-1165 $)) (-1165 $)) 100 (|has| |#1| (-905)))) (-4335 (($ $) 98 (|has| |#1| (-452)))) (-3205 (((-418 $) $) 97 (|has| |#1| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 103 (|has| |#1| (-905)))) (-4239 (($) 17 T CONST)) (-2131 (((-3 |#1| "failed") $) 164) (((-3 (-407 (-563)) "failed") $) 161 (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) 159 (|has| |#1| (-1034 (-563)))) (((-3 |#3| "failed") $) 136) (((-3 $ "failed") (-948 (-407 (-563)))) 231 (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169))))) (((-3 $ "failed") (-948 (-563))) 228 (-4032 (-12 (-2176 (|has| |#1| (-38 (-407 (-563))))) (|has| |#1| (-38 (-563))) (|has| |#3| (-611 (-1169)))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169)))))) (((-3 $ "failed") (-948 |#1|)) 225 (-4032 (-12 (-2176 (|has| |#1| (-38 (-407 (-563))))) (-2176 (|has| |#1| (-38 (-563)))) (|has| |#3| (-611 (-1169)))) (-12 (-2176 (|has| |#1| (-545))) (-2176 (|has| |#1| (-38 (-407 (-563))))) (|has| |#1| (-38 (-563))) (|has| |#3| (-611 (-1169)))) (-12 (-2176 (|has| |#1| (-988 (-563)))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169))))))) (-2058 ((|#1| $) 163) (((-407 (-563)) $) 162 (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) 160 (|has| |#1| (-1034 (-563)))) ((|#3| $) 137) (($ (-948 (-407 (-563)))) 230 (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169))))) (($ (-948 (-563))) 227 (-4032 (-12 (-2176 (|has| |#1| (-38 (-407 (-563))))) (|has| |#1| (-38 (-563))) (|has| |#3| (-611 (-1169)))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169)))))) (($ (-948 |#1|)) 224 (-4032 (-12 (-2176 (|has| |#1| (-38 (-407 (-563))))) (-2176 (|has| |#1| (-38 (-563)))) (|has| |#3| (-611 (-1169)))) (-12 (-2176 (|has| |#1| (-545))) (-2176 (|has| |#1| (-38 (-407 (-563))))) (|has| |#1| (-38 (-563))) (|has| |#3| (-611 (-1169)))) (-12 (-2176 (|has| |#1| (-988 (-563)))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169))))))) (-2742 (($ $ $ |#3|) 108 (|has| |#1| (-172))) (($ $ $) 212 (|has| |#1| (-555)))) (-2751 (($ $) 154) (($ $ |#3|) 266)) (-2950 (((-684 (-563)) (-684 $)) 134 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 133 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 132) (((-684 |#1|) (-684 $)) 131)) (-3990 (((-112) $ $) 256) (((-112) $ (-640 $)) 255)) (-3400 (((-3 $ "failed") $) 33)) (-2921 (((-112) $) 264)) (-2521 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 236)) (-2060 (($ $) 205 (|has| |#1| (-452)))) (-1300 (($ $) 176 (|has| |#1| (-452))) (($ $ |#3|) 105 (|has| |#1| (-452)))) (-2739 (((-640 $) $) 109)) (-2468 (((-112) $) 96 (|has| |#1| (-905)))) (-2003 (($ $) 221 (|has| |#1| (-555)))) (-2253 (($ $) 222 (|has| |#1| (-555)))) (-4189 (($ $ $) 248) (($ $ $ |#3|) 246)) (-2110 (($ $ $) 247) (($ $ $ |#3|) 245)) (-3554 (($ $ |#1| |#2| $) 172)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 84 (-12 (|has| |#3| (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 83 (-12 (|has| |#3| (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-3827 (((-112) $) 31)) (-4096 (((-767) $) 169)) (-2299 (((-112) $ $) 250) (((-112) $ (-640 $)) 249)) (-2398 (($ $ $ $ $) 207 (|has| |#1| (-555)))) (-2957 ((|#3| $) 275)) (-2596 (($ (-1165 |#1|) |#3|) 117) (($ (-1165 $) |#3|) 116)) (-1368 (((-640 $) $) 126)) (-3920 (((-112) $) 152)) (-2588 (($ |#1| |#2|) 153) (($ $ |#3| (-767)) 119) (($ $ (-640 |#3|) (-640 (-767))) 118)) (-1421 (($ $ $) 235)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ |#3|) 120)) (-2792 (((-112) $) 265)) (-2048 ((|#2| $) 170) (((-767) $ |#3|) 122) (((-640 (-767)) $ (-640 |#3|)) 121)) (-3084 (($ $ $) 79 (|has| |#1| (-846)))) (-3064 (((-767) $) 274)) (-1777 (($ $ $) 78 (|has| |#1| (-846)))) (-2803 (($ (-1 |#2| |#2|) $) 171)) (-2240 (($ (-1 |#1| |#1|) $) 151)) (-4234 (((-3 |#3| "failed") $) 123)) (-2216 (($ $) 202 (|has| |#1| (-452)))) (-3208 (($ $) 203 (|has| |#1| (-452)))) (-2305 (((-640 $) $) 260)) (-2196 (($ $) 263)) (-4099 (($ $) 204 (|has| |#1| (-452)))) (-2120 (((-640 $) $) 261)) (-4216 (($ $) 262)) (-2716 (($ $) 149)) (-2726 ((|#1| $) 148) (($ $ |#3|) 267)) (-3513 (($ (-640 $)) 94 (|has| |#1| (-452))) (($ $ $) 93 (|has| |#1| (-452)))) (-3206 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -2269 (-767))) $ $) 234)) (-2365 (((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -3490 $) (|:| -1972 $)) $ $) 238) (((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -3490 $) (|:| -1972 $)) $ $ |#3|) 237)) (-4227 (((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -1972 $)) $ $) 240) (((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -1972 $)) $ $ |#3|) 239)) (-2173 (($ $ $) 244) (($ $ $ |#3|) 242)) (-2679 (($ $ $) 243) (($ $ $ |#3|) 241)) (-3573 (((-1151) $) 9)) (-2898 (($ $ $) 210 (|has| |#1| (-555)))) (-2134 (((-640 $) $) 269)) (-3733 (((-3 (-640 $) "failed") $) 114)) (-2919 (((-3 (-640 $) "failed") $) 115)) (-4086 (((-3 (-2 (|:| |var| |#3|) (|:| -1654 (-767))) "failed") $) 113)) (-4197 (((-112) $ $) 252) (((-112) $ (-640 $)) 251)) (-2715 (($ $ $) 232)) (-2523 (($ $) 273)) (-3009 (((-112) $ $) 258)) (-2031 (((-112) $ $) 254) (((-112) $ (-640 $)) 253)) (-4056 (($ $ $) 233)) (-2917 (($ $) 272)) (-1694 (((-1113) $) 10)) (-4110 (((-2 (|:| -3548 $) (|:| |coef2| $)) $ $) 213 (|has| |#1| (-555)))) (-3183 (((-2 (|:| -3548 $) (|:| |coef1| $)) $ $) 214 (|has| |#1| (-555)))) (-2696 (((-112) $) 166)) (-2706 ((|#1| $) 167)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 95 (|has| |#1| (-452)))) (-3548 ((|#1| |#1| $) 206 (|has| |#1| (-452))) (($ (-640 $)) 92 (|has| |#1| (-452))) (($ $ $) 91 (|has| |#1| (-452)))) (-1876 (((-418 (-1165 $)) (-1165 $)) 102 (|has| |#1| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) 101 (|has| |#1| (-905)))) (-2174 (((-418 $) $) 99 (|has| |#1| (-905)))) (-2758 (((-2 (|:| -3548 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 215 (|has| |#1| (-555)))) (-3008 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-555))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-555)))) (-2307 (($ $ |#1|) 219 (|has| |#1| (-555))) (($ $ $) 217 (|has| |#1| (-555)))) (-1327 (($ $ |#1|) 220 (|has| |#1| (-555))) (($ $ $) 218 (|has| |#1| (-555)))) (-1540 (($ $ (-640 (-294 $))) 145) (($ $ (-294 $)) 144) (($ $ $ $) 143) (($ $ (-640 $) (-640 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-640 |#3|) (-640 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-640 |#3|) (-640 $)) 138)) (-2315 (($ $ |#3|) 107 (|has| |#1| (-172)))) (-4202 (($ $ |#3|) 42) (($ $ (-640 |#3|)) 41) (($ $ |#3| (-767)) 40) (($ $ (-640 |#3|) (-640 (-767))) 39)) (-4167 ((|#2| $) 150) (((-767) $ |#3|) 130) (((-640 (-767)) $ (-640 |#3|)) 129)) (-1935 (($ $) 270)) (-3938 (($ $) 268)) (-2220 (((-888 (-379)) $) 82 (-12 (|has| |#3| (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) 81 (-12 (|has| |#3| (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) 80 (-12 (|has| |#3| (-611 (-536))) (|has| |#1| (-611 (-536))))) (($ (-948 (-407 (-563)))) 229 (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169))))) (($ (-948 (-563))) 226 (-4032 (-12 (-2176 (|has| |#1| (-38 (-407 (-563))))) (|has| |#1| (-38 (-563))) (|has| |#3| (-611 (-1169)))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169)))))) (($ (-948 |#1|)) 223 (|has| |#3| (-611 (-1169)))) (((-1151) $) 201 (-12 (|has| |#1| (-1034 (-563))) (|has| |#3| (-611 (-1169))))) (((-948 |#1|) $) 200 (|has| |#3| (-611 (-1169))))) (-1836 ((|#1| $) 175 (|has| |#1| (-452))) (($ $ |#3|) 106 (|has| |#1| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) 104 (-2190 (|has| $ (-145)) (|has| |#1| (-905))))) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 165) (($ |#3|) 135) (((-948 |#1|) $) 199 (|has| |#3| (-611 (-1169)))) (($ (-407 (-563))) 72 (-4032 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563)))))) (($ $) 85 (|has| |#1| (-555)))) (-1337 (((-640 |#1|) $) 168)) (-4319 ((|#1| $ |#2|) 155) (($ $ |#3| (-767)) 128) (($ $ (-640 |#3|) (-640 (-767))) 127)) (-2779 (((-3 $ "failed") $) 73 (-4032 (-2190 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-1675 (((-767)) 28)) (-2793 (($ $ $ (-767)) 173 (|has| |#1| (-172)))) (-2126 (((-112) $ $) 89 (|has| |#1| (-555)))) (-2241 (($) 18 T CONST)) (-3738 (((-3 (-112) "failed") $ $) 259)) (-2254 (($) 30 T CONST)) (-1298 (($ $ $ $ (-767)) 208 (|has| |#1| (-555)))) (-2771 (($ $ $ (-767)) 209 (|has| |#1| (-555)))) (-3209 (($ $ |#3|) 38) (($ $ (-640 |#3|)) 37) (($ $ |#3| (-767)) 36) (($ $ (-640 |#3|) (-640 (-767))) 35)) (-1778 (((-112) $ $) 76 (|has| |#1| (-846)))) (-1756 (((-112) $ $) 75 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 77 (|has| |#1| (-846)))) (-1744 (((-112) $ $) 74 (|has| |#1| (-846)))) (-1837 (($ $ |#1|) 156 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 158 (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) 157 (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) |#2| $) 23)) (-3750 ((|#1| $) 10)) (-2807 (((-563) |#2| $) 87)) (-3377 (((-3 $ "failed") |#2| (-917)) 57)) (-1700 ((|#1| $) 28)) (-3365 ((|#1| |#2| $ |#1|) 37)) (-3998 (($ $) 25)) (-3951 (((-3 |#2| "failed") |#2| $) 86)) (-3414 (((-112) |#2| $) NIL)) (-3426 (((-112) |#2| $) NIL)) (-3986 (((-112) |#2| $) 24)) (-4009 ((|#1| $) 88)) (-1685 ((|#1| $) 27)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3402 ((|#2| $) 78)) (-1692 (((-858) $) 70)) (-1402 ((|#1| |#2| $ |#1|) 38)) (-3389 (((-640 $) |#2|) 59)) (-1718 (((-112) $ $) 73)))
+(((-1055 |#1| |#2|) (-13 (-1062 |#1| |#2|) (-10 -8 (-15 -1685 (|#1| $)) (-15 -1700 (|#1| $)) (-15 -3750 (|#1| $)) (-15 -4009 (|#1| $)) (-15 -3998 ($ $)) (-15 -3986 ((-112) |#2| $)) (-15 -3365 (|#1| |#2| $ |#1|)))) (-13 (-844) (-363)) (-1233 |#1|)) (T -1055))
+((-3365 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3)) (-4 *3 (-1233 *2)))) (-1685 (*1 *2 *1) (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3)) (-4 *3 (-1233 *2)))) (-1700 (*1 *2 *1) (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3)) (-4 *3 (-1233 *2)))) (-3750 (*1 *2 *1) (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3)) (-4 *3 (-1233 *2)))) (-4009 (*1 *2 *1) (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3)) (-4 *3 (-1233 *2)))) (-3998 (*1 *1 *1) (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3)) (-4 *3 (-1233 *2)))) (-3986 (*1 *2 *3 *1) (-12 (-4 *4 (-13 (-844) (-363))) (-5 *2 (-112)) (-5 *1 (-1055 *4 *3)) (-4 *3 (-1233 *4)))))
+(-13 (-1062 |#1| |#2|) (-10 -8 (-15 -1685 (|#1| $)) (-15 -1700 (|#1| $)) (-15 -3750 (|#1| $)) (-15 -4009 (|#1| $)) (-15 -3998 ($ $)) (-15 -3986 ((-112) |#2| $)) (-15 -3365 (|#1| |#2| $ |#1|))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-4297 (($ $ $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-4275 (($ $ $ $) NIL)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-2807 (((-563) $) NIL)) (-3462 (($ $ $) NIL)) (-2569 (($) NIL T CONST)) (-4019 (($ (-1169)) 10) (($ (-563)) 7)) (-2130 (((-3 (-563) "failed") $) NIL)) (-2057 (((-563) $) NIL)) (-3094 (($ $ $) NIL)) (-1476 (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-684 (-563)) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-2327 (((-3 (-407 (-563)) "failed") $) NIL)) (-2317 (((-112) $) NIL)) (-2306 (((-407 (-563)) $) NIL)) (-1690 (($) NIL) (($ $) NIL)) (-3054 (($ $ $) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-4251 (($ $ $ $) NIL)) (-4308 (($ $ $) NIL)) (-3414 (((-112) $) NIL)) (-2101 (($ $ $) NIL)) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL)) (-3401 (((-112) $) NIL)) (-2959 (((-112) $) NIL)) (-1983 (((-3 $ "failed") $) NIL)) (-3426 (((-112) $) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4264 (($ $ $ $) NIL)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-2645 (($ $) NIL)) (-3419 (($ $) NIL)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-4239 (($ $ $) NIL)) (-2522 (($) NIL T CONST)) (-2827 (($ $) NIL)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) NIL) (($ (-640 $)) NIL)) (-2081 (($ $) NIL)) (-2173 (((-418 $) $) NIL)) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2969 (((-112) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-4203 (($ $ (-767)) NIL) (($ $) NIL)) (-3873 (($ $) NIL)) (-1870 (($ $) NIL)) (-2219 (((-563) $) 16) (((-536) $) NIL) (((-888 (-563)) $) NIL) (((-379) $) NIL) (((-225) $) NIL) (($ (-1169)) 9)) (-1692 (((-858) $) 20) (($ (-563)) 6) (($ $) NIL) (($ (-563)) 6)) (-3914 (((-767)) NIL)) (-4319 (((-112) $ $) NIL)) (-1864 (($ $ $) NIL)) (-4212 (($) NIL)) (-3223 (((-112) $ $) NIL)) (-4287 (($ $ $ $) NIL)) (-1462 (($ $) NIL)) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-767)) NIL) (($ $) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)) (-1825 (($ $) 19) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL)))
+(((-1056) (-13 (-545) (-615 (-1169)) (-10 -8 (-6 -4395) (-6 -4400) (-6 -4396) (-15 -4019 ($ (-1169))) (-15 -4019 ($ (-563)))))) (T -1056))
+((-4019 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1056)))) (-4019 (*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1056)))))
+(-13 (-545) (-615 (-1169)) (-10 -8 (-6 -4395) (-6 -4400) (-6 -4396) (-15 -4019 ($ (-1169))) (-15 -4019 ($ (-563)))))
+((-1677 (((-112) $ $) NIL (-4034 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093))))) (-1551 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) NIL)) (-2208 (((-1262) $ (-1169) (-1169)) NIL (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) NIL)) (-4042 (($) 9)) (-1849 (((-52) $ (-1169) (-52)) NIL)) (-4130 (($ $) 30)) (-4164 (($ $) 28)) (-4173 (($ $) 27)) (-4154 (($ $) 29)) (-4120 (($ $) 32)) (-4109 (($ $) 33)) (-4183 (($ $) 26)) (-4143 (($ $) 31)) (-3678 (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) 25 (|has| $ (-6 -4408)))) (-1576 (((-3 (-52) "failed") (-1169) $) 40)) (-2569 (($) NIL T CONST)) (-4195 (($) 7)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093))))) (-1691 (($ (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) $) 50 (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-3 (-52) "failed") (-1169) $) NIL)) (-1459 (($ (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408)))) (-2444 (((-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $ (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (((-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $ (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408)))) (-4030 (((-3 (-1151) "failed") $ (-1151) (-563)) 59)) (-4356 (((-52) $ (-1169) (-52)) NIL (|has| $ (-6 -4409)))) (-4293 (((-52) $ (-1169)) NIL)) (-2658 (((-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-640 (-52)) $) NIL (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-1169) $) NIL (|has| (-1169) (-846)))) (-3523 (((-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) 35 (|has| $ (-6 -4408))) (((-640 (-52)) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-52) (-1093))))) (-2251 (((-1169) $) NIL (|has| (-1169) (-846)))) (-4347 (($ (-1 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4409))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (-4034 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093))))) (-1304 (((-640 (-1169)) $) NIL)) (-2305 (((-112) (-1169) $) NIL)) (-2627 (((-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) $) NIL)) (-3867 (($ (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) $) 43)) (-2272 (((-640 (-1169)) $) NIL)) (-2282 (((-112) (-1169) $) NIL)) (-1693 (((-1113) $) NIL (-4034 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093))))) (-4075 (((-379) $ (-1169)) 49)) (-4064 (((-640 (-1151)) $ (-1151)) 60)) (-3782 (((-52) $) NIL (|has| (-1169) (-846)))) (-1971 (((-3 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) "failed") (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL)) (-2221 (($ $ (-52)) NIL (|has| $ (-6 -4409)))) (-2808 (((-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) $) NIL)) (-1458 (((-112) (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (($ $ (-294 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (($ $ (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (($ $ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) NIL (-12 (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-309 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (($ $ (-640 (-52)) (-640 (-52))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-294 (-52))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093)))) (($ $ (-640 (-294 (-52)))) NIL (-12 (|has| (-52) (-309 (-52))) (|has| (-52) (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-52) (-1093))))) (-2295 (((-640 (-52)) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 (((-52) $ (-1169)) NIL) (((-52) $ (-1169) (-52)) NIL)) (-3863 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) NIL)) (-4054 (($ $ (-1169)) 51)) (-1708 (((-767) (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093)))) (((-767) (-52) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-52) (-1093)))) (((-767) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-611 (-536))))) (-1706 (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) 37)) (-2857 (($ $ $) 38)) (-1692 (((-858) $) NIL (-4034 (|has| (-52) (-610 (-858))) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-610 (-858)))))) (-4097 (($ $ (-1169) (-379)) 47)) (-4086 (($ $ (-1169) (-379)) 48)) (-2820 (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))))) NIL)) (-1471 (((-112) (-1 (-112) (-2 (|:| -2387 (-1169)) (|:| -2556 (-52)))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (-4034 (|has| (-52) (-1093)) (|has| (-2 (|:| -2387 (-1169)) (|:| -2556 (-52))) (-1093))))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-1057) (-13 (-1184 (-1169) (-52)) (-10 -8 (-15 -2857 ($ $ $)) (-15 -4195 ($)) (-15 -4183 ($ $)) (-15 -4173 ($ $)) (-15 -4164 ($ $)) (-15 -4154 ($ $)) (-15 -4143 ($ $)) (-15 -4130 ($ $)) (-15 -4120 ($ $)) (-15 -4109 ($ $)) (-15 -4097 ($ $ (-1169) (-379))) (-15 -4086 ($ $ (-1169) (-379))) (-15 -4075 ((-379) $ (-1169))) (-15 -4064 ((-640 (-1151)) $ (-1151))) (-15 -4054 ($ $ (-1169))) (-15 -4042 ($)) (-15 -4030 ((-3 (-1151) "failed") $ (-1151) (-563))) (-6 -4408)))) (T -1057))
+((-2857 (*1 *1 *1 *1) (-5 *1 (-1057))) (-4195 (*1 *1) (-5 *1 (-1057))) (-4183 (*1 *1 *1) (-5 *1 (-1057))) (-4173 (*1 *1 *1) (-5 *1 (-1057))) (-4164 (*1 *1 *1) (-5 *1 (-1057))) (-4154 (*1 *1 *1) (-5 *1 (-1057))) (-4143 (*1 *1 *1) (-5 *1 (-1057))) (-4130 (*1 *1 *1) (-5 *1 (-1057))) (-4120 (*1 *1 *1) (-5 *1 (-1057))) (-4109 (*1 *1 *1) (-5 *1 (-1057))) (-4097 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-379)) (-5 *1 (-1057)))) (-4086 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-379)) (-5 *1 (-1057)))) (-4075 (*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-379)) (-5 *1 (-1057)))) (-4064 (*1 *2 *1 *3) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1057)) (-5 *3 (-1151)))) (-4054 (*1 *1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1057)))) (-4042 (*1 *1) (-5 *1 (-1057))) (-4030 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1151)) (-5 *3 (-563)) (-5 *1 (-1057)))))
+(-13 (-1184 (-1169) (-52)) (-10 -8 (-15 -2857 ($ $ $)) (-15 -4195 ($)) (-15 -4183 ($ $)) (-15 -4173 ($ $)) (-15 -4164 ($ $)) (-15 -4154 ($ $)) (-15 -4143 ($ $)) (-15 -4130 ($ $)) (-15 -4120 ($ $)) (-15 -4109 ($ $)) (-15 -4097 ($ $ (-1169) (-379))) (-15 -4086 ($ $ (-1169) (-379))) (-15 -4075 ((-379) $ (-1169))) (-15 -4064 ((-640 (-1151)) $ (-1151))) (-15 -4054 ($ $ (-1169))) (-15 -4042 ($)) (-15 -4030 ((-3 (-1151) "failed") $ (-1151) (-563))) (-6 -4408)))
+((-4303 (($ $) 43)) (-1351 (((-112) $ $) 73)) (-2130 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 (-563) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-948 (-407 (-563)))) 225) (((-3 $ "failed") (-948 (-563))) 224) (((-3 $ "failed") (-948 |#2|)) 227)) (-2057 ((|#2| $) NIL) (((-407 (-563)) $) NIL) (((-563) $) NIL) ((|#4| $) NIL) (($ (-948 (-407 (-563)))) 213) (($ (-948 (-563))) 209) (($ (-948 |#2|)) 229)) (-2750 (($ $) NIL) (($ $ |#4|) 41)) (-2264 (((-112) $ $) 110) (((-112) $ (-640 $)) 111)) (-3277 (((-112) $) 54)) (-1564 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 105)) (-4235 (($ $) 136)) (-4349 (($ $) 132)) (-4359 (($ $) 131)) (-1341 (($ $ $) 78) (($ $ $ |#4|) 83)) (-1332 (($ $ $) 81) (($ $ $ |#4|) 85)) (-2274 (((-112) $ $) 119) (((-112) $ (-640 $)) 120)) (-3354 ((|#4| $) 31)) (-4379 (($ $ $) 108)) (-3286 (((-112) $) 53)) (-3343 (((-767) $) 33)) (-4206 (($ $) 150)) (-4216 (($ $) 147)) (-3239 (((-640 $) $) 67)) (-3267 (($ $) 56)) (-4226 (($ $) 143)) (-3249 (((-640 $) $) 64)) (-3260 (($ $) 58)) (-2725 ((|#2| $) NIL) (($ $ |#4|) 36)) (-4367 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -4104 (-767))) $ $) 109)) (-1291 (((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -1765 $) (|:| -3443 $)) $ $) 106) (((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -1765 $) (|:| -3443 $)) $ $ |#4|) 107)) (-1300 (((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -3443 $)) $ $) 102) (((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -3443 $)) $ $ |#4|) 103)) (-1322 (($ $ $) 88) (($ $ $ |#4|) 93)) (-1312 (($ $ $) 89) (($ $ $ |#4|) 94)) (-3312 (((-640 $) $) 49)) (-2225 (((-112) $ $) 116) (((-112) $ (-640 $)) 117)) (-2163 (($ $ $) 101)) (-2522 (($ $) 35)) (-2319 (((-112) $ $) 71)) (-2241 (((-112) $ $) 112) (((-112) $ (-640 $)) 114)) (-2176 (($ $ $) 99)) (-3333 (($ $) 38)) (-3551 ((|#2| |#2| $) 140) (($ (-640 $)) NIL) (($ $ $) NIL)) (-4326 (($ $ |#2|) NIL) (($ $ $) 129)) (-4338 (($ $ |#2|) 124) (($ $ $) 127)) (-3323 (($ $) 46)) (-3297 (($ $) 50)) (-2219 (((-888 (-379)) $) NIL) (((-888 (-563)) $) NIL) (((-536) $) NIL) (($ (-948 (-407 (-563)))) 215) (($ (-948 (-563))) 211) (($ (-948 |#2|)) 226) (((-1151) $) 249) (((-948 |#2|) $) 160)) (-1692 (((-858) $) 28) (($ (-563)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-948 |#2|) $) 161) (($ (-407 (-563))) NIL) (($ $) NIL)) (-1361 (((-3 (-112) "failed") $ $) 70)))
+(((-1058 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1692 (|#1| |#1|)) (-15 -3551 (|#1| |#1| |#1|)) (-15 -3551 (|#1| (-640 |#1|))) (-15 -1692 (|#1| (-407 (-563)))) (-15 -1692 ((-948 |#2|) |#1|)) (-15 -2219 ((-948 |#2|) |#1|)) (-15 -2219 ((-1151) |#1|)) (-15 -4206 (|#1| |#1|)) (-15 -4216 (|#1| |#1|)) (-15 -4226 (|#1| |#1|)) (-15 -4235 (|#1| |#1|)) (-15 -3551 (|#2| |#2| |#1|)) (-15 -4326 (|#1| |#1| |#1|)) (-15 -4338 (|#1| |#1| |#1|)) (-15 -4326 (|#1| |#1| |#2|)) (-15 -4338 (|#1| |#1| |#2|)) (-15 -4349 (|#1| |#1|)) (-15 -4359 (|#1| |#1|)) (-15 -2219 (|#1| (-948 |#2|))) (-15 -2057 (|#1| (-948 |#2|))) (-15 -2130 ((-3 |#1| "failed") (-948 |#2|))) (-15 -2219 (|#1| (-948 (-563)))) (-15 -2057 (|#1| (-948 (-563)))) (-15 -2130 ((-3 |#1| "failed") (-948 (-563)))) (-15 -2219 (|#1| (-948 (-407 (-563))))) (-15 -2057 (|#1| (-948 (-407 (-563))))) (-15 -2130 ((-3 |#1| "failed") (-948 (-407 (-563))))) (-15 -2163 (|#1| |#1| |#1|)) (-15 -2176 (|#1| |#1| |#1|)) (-15 -4367 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -4104 (-767))) |#1| |#1|)) (-15 -4379 (|#1| |#1| |#1|)) (-15 -1564 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -1291 ((-2 (|:| -2310 |#1|) (|:| |gap| (-767)) (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1| |#4|)) (-15 -1291 ((-2 (|:| -2310 |#1|) (|:| |gap| (-767)) (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -1300 ((-2 (|:| -2310 |#1|) (|:| |gap| (-767)) (|:| -3443 |#1|)) |#1| |#1| |#4|)) (-15 -1300 ((-2 (|:| -2310 |#1|) (|:| |gap| (-767)) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -1312 (|#1| |#1| |#1| |#4|)) (-15 -1322 (|#1| |#1| |#1| |#4|)) (-15 -1312 (|#1| |#1| |#1|)) (-15 -1322 (|#1| |#1| |#1|)) (-15 -1332 (|#1| |#1| |#1| |#4|)) (-15 -1341 (|#1| |#1| |#1| |#4|)) (-15 -1332 (|#1| |#1| |#1|)) (-15 -1341 (|#1| |#1| |#1|)) (-15 -2274 ((-112) |#1| (-640 |#1|))) (-15 -2274 ((-112) |#1| |#1|)) (-15 -2225 ((-112) |#1| (-640 |#1|))) (-15 -2225 ((-112) |#1| |#1|)) (-15 -2241 ((-112) |#1| (-640 |#1|))) (-15 -2241 ((-112) |#1| |#1|)) (-15 -2264 ((-112) |#1| (-640 |#1|))) (-15 -2264 ((-112) |#1| |#1|)) (-15 -1351 ((-112) |#1| |#1|)) (-15 -2319 ((-112) |#1| |#1|)) (-15 -1361 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3239 ((-640 |#1|) |#1|)) (-15 -3249 ((-640 |#1|) |#1|)) (-15 -3260 (|#1| |#1|)) (-15 -3267 (|#1| |#1|)) (-15 -3277 ((-112) |#1|)) (-15 -3286 ((-112) |#1|)) (-15 -2750 (|#1| |#1| |#4|)) (-15 -2725 (|#1| |#1| |#4|)) (-15 -3297 (|#1| |#1|)) (-15 -3312 ((-640 |#1|) |#1|)) (-15 -3323 (|#1| |#1|)) (-15 -4303 (|#1| |#1|)) (-15 -3333 (|#1| |#1|)) (-15 -2522 (|#1| |#1|)) (-15 -3343 ((-767) |#1|)) (-15 -3354 (|#4| |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -2219 ((-888 (-563)) |#1|)) (-15 -2219 ((-888 (-379)) |#1|)) (-15 -1692 (|#1| |#4|)) (-15 -2130 ((-3 |#4| "failed") |#1|)) (-15 -2057 (|#4| |#1|)) (-15 -2725 (|#2| |#1|)) (-15 -2750 (|#1| |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -1692 (|#1| |#2|)) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|))) (-1059 |#2| |#3| |#4|) (-1045) (-789) (-846)) (T -1058))
+NIL
+(-10 -8 (-15 -1692 (|#1| |#1|)) (-15 -3551 (|#1| |#1| |#1|)) (-15 -3551 (|#1| (-640 |#1|))) (-15 -1692 (|#1| (-407 (-563)))) (-15 -1692 ((-948 |#2|) |#1|)) (-15 -2219 ((-948 |#2|) |#1|)) (-15 -2219 ((-1151) |#1|)) (-15 -4206 (|#1| |#1|)) (-15 -4216 (|#1| |#1|)) (-15 -4226 (|#1| |#1|)) (-15 -4235 (|#1| |#1|)) (-15 -3551 (|#2| |#2| |#1|)) (-15 -4326 (|#1| |#1| |#1|)) (-15 -4338 (|#1| |#1| |#1|)) (-15 -4326 (|#1| |#1| |#2|)) (-15 -4338 (|#1| |#1| |#2|)) (-15 -4349 (|#1| |#1|)) (-15 -4359 (|#1| |#1|)) (-15 -2219 (|#1| (-948 |#2|))) (-15 -2057 (|#1| (-948 |#2|))) (-15 -2130 ((-3 |#1| "failed") (-948 |#2|))) (-15 -2219 (|#1| (-948 (-563)))) (-15 -2057 (|#1| (-948 (-563)))) (-15 -2130 ((-3 |#1| "failed") (-948 (-563)))) (-15 -2219 (|#1| (-948 (-407 (-563))))) (-15 -2057 (|#1| (-948 (-407 (-563))))) (-15 -2130 ((-3 |#1| "failed") (-948 (-407 (-563))))) (-15 -2163 (|#1| |#1| |#1|)) (-15 -2176 (|#1| |#1| |#1|)) (-15 -4367 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -4104 (-767))) |#1| |#1|)) (-15 -4379 (|#1| |#1| |#1|)) (-15 -1564 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -1291 ((-2 (|:| -2310 |#1|) (|:| |gap| (-767)) (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1| |#4|)) (-15 -1291 ((-2 (|:| -2310 |#1|) (|:| |gap| (-767)) (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -1300 ((-2 (|:| -2310 |#1|) (|:| |gap| (-767)) (|:| -3443 |#1|)) |#1| |#1| |#4|)) (-15 -1300 ((-2 (|:| -2310 |#1|) (|:| |gap| (-767)) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -1312 (|#1| |#1| |#1| |#4|)) (-15 -1322 (|#1| |#1| |#1| |#4|)) (-15 -1312 (|#1| |#1| |#1|)) (-15 -1322 (|#1| |#1| |#1|)) (-15 -1332 (|#1| |#1| |#1| |#4|)) (-15 -1341 (|#1| |#1| |#1| |#4|)) (-15 -1332 (|#1| |#1| |#1|)) (-15 -1341 (|#1| |#1| |#1|)) (-15 -2274 ((-112) |#1| (-640 |#1|))) (-15 -2274 ((-112) |#1| |#1|)) (-15 -2225 ((-112) |#1| (-640 |#1|))) (-15 -2225 ((-112) |#1| |#1|)) (-15 -2241 ((-112) |#1| (-640 |#1|))) (-15 -2241 ((-112) |#1| |#1|)) (-15 -2264 ((-112) |#1| (-640 |#1|))) (-15 -2264 ((-112) |#1| |#1|)) (-15 -1351 ((-112) |#1| |#1|)) (-15 -2319 ((-112) |#1| |#1|)) (-15 -1361 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3239 ((-640 |#1|) |#1|)) (-15 -3249 ((-640 |#1|) |#1|)) (-15 -3260 (|#1| |#1|)) (-15 -3267 (|#1| |#1|)) (-15 -3277 ((-112) |#1|)) (-15 -3286 ((-112) |#1|)) (-15 -2750 (|#1| |#1| |#4|)) (-15 -2725 (|#1| |#1| |#4|)) (-15 -3297 (|#1| |#1|)) (-15 -3312 ((-640 |#1|) |#1|)) (-15 -3323 (|#1| |#1|)) (-15 -4303 (|#1| |#1|)) (-15 -3333 (|#1| |#1|)) (-15 -2522 (|#1| |#1|)) (-15 -3343 ((-767) |#1|)) (-15 -3354 (|#4| |#1|)) (-15 -2219 ((-536) |#1|)) (-15 -2219 ((-888 (-563)) |#1|)) (-15 -2219 ((-888 (-379)) |#1|)) (-15 -1692 (|#1| |#4|)) (-15 -2130 ((-3 |#4| "failed") |#1|)) (-15 -2057 (|#4| |#1|)) (-15 -2725 (|#2| |#1|)) (-15 -2750 (|#1| |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -1692 (|#1| |#2|)) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-2605 (((-640 |#3|) $) 110)) (-2138 (((-1165 $) $ |#3|) 125) (((-1165 |#1|) $) 124)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 87 (|has| |#1| (-555)))) (-3231 (($ $) 88 (|has| |#1| (-555)))) (-3211 (((-112) $) 90 (|has| |#1| (-555)))) (-3897 (((-767) $) 112) (((-767) $ (-640 |#3|)) 111)) (-4303 (($ $) 271)) (-1351 (((-112) $ $) 257)) (-3905 (((-3 $ "failed") $ $) 19)) (-1601 (($ $ $) 216 (|has| |#1| (-555)))) (-4282 (((-640 $) $ $) 211 (|has| |#1| (-555)))) (-2093 (((-418 (-1165 $)) (-1165 $)) 100 (|has| |#1| (-905)))) (-1798 (($ $) 98 (|has| |#1| (-452)))) (-2802 (((-418 $) $) 97 (|has| |#1| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 103 (|has| |#1| (-905)))) (-2569 (($) 17 T CONST)) (-2130 (((-3 |#1| "failed") $) 164) (((-3 (-407 (-563)) "failed") $) 161 (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) 159 (|has| |#1| (-1034 (-563)))) (((-3 |#3| "failed") $) 136) (((-3 $ "failed") (-948 (-407 (-563)))) 231 (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169))))) (((-3 $ "failed") (-948 (-563))) 228 (-4034 (-12 (-2174 (|has| |#1| (-38 (-407 (-563))))) (|has| |#1| (-38 (-563))) (|has| |#3| (-611 (-1169)))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169)))))) (((-3 $ "failed") (-948 |#1|)) 225 (-4034 (-12 (-2174 (|has| |#1| (-38 (-407 (-563))))) (-2174 (|has| |#1| (-38 (-563)))) (|has| |#3| (-611 (-1169)))) (-12 (-2174 (|has| |#1| (-545))) (-2174 (|has| |#1| (-38 (-407 (-563))))) (|has| |#1| (-38 (-563))) (|has| |#3| (-611 (-1169)))) (-12 (-2174 (|has| |#1| (-988 (-563)))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169))))))) (-2057 ((|#1| $) 163) (((-407 (-563)) $) 162 (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) 160 (|has| |#1| (-1034 (-563)))) ((|#3| $) 137) (($ (-948 (-407 (-563)))) 230 (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169))))) (($ (-948 (-563))) 227 (-4034 (-12 (-2174 (|has| |#1| (-38 (-407 (-563))))) (|has| |#1| (-38 (-563))) (|has| |#3| (-611 (-1169)))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169)))))) (($ (-948 |#1|)) 224 (-4034 (-12 (-2174 (|has| |#1| (-38 (-407 (-563))))) (-2174 (|has| |#1| (-38 (-563)))) (|has| |#3| (-611 (-1169)))) (-12 (-2174 (|has| |#1| (-545))) (-2174 (|has| |#1| (-38 (-407 (-563))))) (|has| |#1| (-38 (-563))) (|has| |#3| (-611 (-1169)))) (-12 (-2174 (|has| |#1| (-988 (-563)))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169))))))) (-1612 (($ $ $ |#3|) 108 (|has| |#1| (-172))) (($ $ $) 212 (|has| |#1| (-555)))) (-2750 (($ $) 154) (($ $ |#3|) 266)) (-1476 (((-684 (-563)) (-684 $)) 134 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 133 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 132) (((-684 |#1|) (-684 $)) 131)) (-2264 (((-112) $ $) 256) (((-112) $ (-640 $)) 255)) (-3951 (((-3 $ "failed") $) 33)) (-3277 (((-112) $) 264)) (-1564 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 236)) (-4235 (($ $) 205 (|has| |#1| (-452)))) (-4151 (($ $) 176 (|has| |#1| (-452))) (($ $ |#3|) 105 (|has| |#1| (-452)))) (-2738 (((-640 $) $) 109)) (-2560 (((-112) $) 96 (|has| |#1| (-905)))) (-4349 (($ $) 221 (|has| |#1| (-555)))) (-4359 (($ $) 222 (|has| |#1| (-555)))) (-1341 (($ $ $) 248) (($ $ $ |#3|) 246)) (-1332 (($ $ $) 247) (($ $ $ |#3|) 245)) (-2159 (($ $ |#1| |#2| $) 172)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 84 (-12 (|has| |#3| (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 83 (-12 (|has| |#3| (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-3401 (((-112) $) 31)) (-3481 (((-767) $) 169)) (-2274 (((-112) $ $) 250) (((-112) $ (-640 $)) 249)) (-4246 (($ $ $ $ $) 207 (|has| |#1| (-555)))) (-3354 ((|#3| $) 275)) (-2595 (($ (-1165 |#1|) |#3|) 117) (($ (-1165 $) |#3|) 116)) (-3919 (((-640 $) $) 126)) (-3805 (((-112) $) 152)) (-2587 (($ |#1| |#2|) 153) (($ $ |#3| (-767)) 119) (($ $ (-640 |#3|) (-640 (-767))) 118)) (-4379 (($ $ $) 235)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ |#3|) 120)) (-3286 (((-112) $) 265)) (-3908 ((|#2| $) 170) (((-767) $ |#3|) 122) (((-640 (-767)) $ (-640 |#3|)) 121)) (-3088 (($ $ $) 79 (|has| |#1| (-846)))) (-3343 (((-767) $) 274)) (-1776 (($ $ $) 78 (|has| |#1| (-846)))) (-2170 (($ (-1 |#2| |#2|) $) 171)) (-2238 (($ (-1 |#1| |#1|) $) 151)) (-1698 (((-3 |#3| "failed") $) 123)) (-4206 (($ $) 202 (|has| |#1| (-452)))) (-4216 (($ $) 203 (|has| |#1| (-452)))) (-3239 (((-640 $) $) 260)) (-3267 (($ $) 263)) (-4226 (($ $) 204 (|has| |#1| (-452)))) (-3249 (((-640 $) $) 261)) (-3260 (($ $) 262)) (-2715 (($ $) 149)) (-2725 ((|#1| $) 148) (($ $ |#3|) 267)) (-3517 (($ (-640 $)) 94 (|has| |#1| (-452))) (($ $ $) 93 (|has| |#1| (-452)))) (-4367 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -4104 (-767))) $ $) 234)) (-1291 (((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -1765 $) (|:| -3443 $)) $ $) 238) (((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -1765 $) (|:| -3443 $)) $ $ |#3|) 237)) (-1300 (((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -3443 $)) $ $) 240) (((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -3443 $)) $ $ |#3|) 239)) (-1322 (($ $ $) 244) (($ $ $ |#3|) 242)) (-1312 (($ $ $) 243) (($ $ $ |#3|) 241)) (-3854 (((-1151) $) 9)) (-3461 (($ $ $) 210 (|has| |#1| (-555)))) (-3312 (((-640 $) $) 269)) (-3939 (((-3 (-640 $) "failed") $) 114)) (-3930 (((-3 (-640 $) "failed") $) 115)) (-3949 (((-3 (-2 (|:| |var| |#3|) (|:| -3311 (-767))) "failed") $) 113)) (-2225 (((-112) $ $) 252) (((-112) $ (-640 $)) 251)) (-2163 (($ $ $) 232)) (-2522 (($ $) 273)) (-2319 (((-112) $ $) 258)) (-2241 (((-112) $ $) 254) (((-112) $ (-640 $)) 253)) (-2176 (($ $ $) 233)) (-3333 (($ $) 272)) (-1693 (((-1113) $) 10)) (-4294 (((-2 (|:| -3551 $) (|:| |coef2| $)) $ $) 213 (|has| |#1| (-555)))) (-4305 (((-2 (|:| -3551 $) (|:| |coef1| $)) $ $) 214 (|has| |#1| (-555)))) (-2695 (((-112) $) 166)) (-2705 ((|#1| $) 167)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 95 (|has| |#1| (-452)))) (-3551 ((|#1| |#1| $) 206 (|has| |#1| (-452))) (($ (-640 $)) 92 (|has| |#1| (-452))) (($ $ $) 91 (|has| |#1| (-452)))) (-2075 (((-418 (-1165 $)) (-1165 $)) 102 (|has| |#1| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) 101 (|has| |#1| (-905)))) (-2173 (((-418 $) $) 99 (|has| |#1| (-905)))) (-4315 (((-2 (|:| -3551 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 215 (|has| |#1| (-555)))) (-3012 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-555))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-555)))) (-4326 (($ $ |#1|) 219 (|has| |#1| (-555))) (($ $ $) 217 (|has| |#1| (-555)))) (-4338 (($ $ |#1|) 220 (|has| |#1| (-555))) (($ $ $) 218 (|has| |#1| (-555)))) (-1542 (($ $ (-640 (-294 $))) 145) (($ $ (-294 $)) 144) (($ $ $ $) 143) (($ $ (-640 $) (-640 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-640 |#3|) (-640 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-640 |#3|) (-640 $)) 138)) (-1623 (($ $ |#3|) 107 (|has| |#1| (-172)))) (-4203 (($ $ |#3|) 42) (($ $ (-640 |#3|)) 41) (($ $ |#3| (-767)) 40) (($ $ (-640 |#3|) (-640 (-767))) 39)) (-3871 ((|#2| $) 150) (((-767) $ |#3|) 130) (((-640 (-767)) $ (-640 |#3|)) 129)) (-3323 (($ $) 270)) (-3297 (($ $) 268)) (-2219 (((-888 (-379)) $) 82 (-12 (|has| |#3| (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) 81 (-12 (|has| |#3| (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) 80 (-12 (|has| |#3| (-611 (-536))) (|has| |#1| (-611 (-536))))) (($ (-948 (-407 (-563)))) 229 (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169))))) (($ (-948 (-563))) 226 (-4034 (-12 (-2174 (|has| |#1| (-38 (-407 (-563))))) (|has| |#1| (-38 (-563))) (|has| |#3| (-611 (-1169)))) (-12 (|has| |#1| (-38 (-407 (-563)))) (|has| |#3| (-611 (-1169)))))) (($ (-948 |#1|)) 223 (|has| |#3| (-611 (-1169)))) (((-1151) $) 201 (-12 (|has| |#1| (-1034 (-563))) (|has| |#3| (-611 (-1169))))) (((-948 |#1|) $) 200 (|has| |#3| (-611 (-1169))))) (-3885 ((|#1| $) 175 (|has| |#1| (-452))) (($ $ |#3|) 106 (|has| |#1| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) 104 (-2188 (|has| $ (-145)) (|has| |#1| (-905))))) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 165) (($ |#3|) 135) (((-948 |#1|) $) 199 (|has| |#3| (-611 (-1169)))) (($ (-407 (-563))) 72 (-4034 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563)))))) (($ $) 85 (|has| |#1| (-555)))) (-3955 (((-640 |#1|) $) 168)) (-3244 ((|#1| $ |#2|) 155) (($ $ |#3| (-767)) 128) (($ $ (-640 |#3|) (-640 (-767))) 127)) (-2047 (((-3 $ "failed") $) 73 (-4034 (-2188 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-3914 (((-767)) 28)) (-2148 (($ $ $ (-767)) 173 (|has| |#1| (-172)))) (-3223 (((-112) $ $) 89 (|has| |#1| (-555)))) (-2239 (($) 18 T CONST)) (-1361 (((-3 (-112) "failed") $ $) 259)) (-2253 (($) 30 T CONST)) (-4259 (($ $ $ $ (-767)) 208 (|has| |#1| (-555)))) (-4271 (($ $ $ (-767)) 209 (|has| |#1| (-555)))) (-3213 (($ $ |#3|) 38) (($ $ (-640 |#3|)) 37) (($ $ |#3| (-767)) 36) (($ $ (-640 |#3|) (-640 (-767))) 35)) (-1779 (((-112) $ $) 76 (|has| |#1| (-846)))) (-1754 (((-112) $ $) 75 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 77 (|has| |#1| (-846)))) (-1743 (((-112) $ $) 74 (|has| |#1| (-846)))) (-1836 (($ $ |#1|) 156 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 158 (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) 157 (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
(((-1059 |#1| |#2| |#3|) (-140) (-1045) (-789) (-846)) (T -1059))
-((-2957 (*1 *2 *1) (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-3064 (*1 *2 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-767)))) (-2523 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-2917 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-4302 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-1935 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-2134 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1059 *3 *4 *5)))) (-3938 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-2726 (*1 *1 *1 *2) (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-2751 (*1 *1 *1 *2) (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-2792 (*1 *2 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-2921 (*1 *2 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-2196 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-4216 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-2120 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1059 *3 *4 *5)))) (-2305 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1059 *3 *4 *5)))) (-3738 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-3009 (*1 *2 *1 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-2645 (*1 *2 *1 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-3990 (*1 *2 *1 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-3990 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)))) (-2031 (*1 *2 *1 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-2031 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)))) (-4197 (*1 *2 *1 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-4197 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)))) (-2299 (*1 *2 *1 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-2299 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)))) (-4189 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-2110 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-4189 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-2110 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-2173 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-2679 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-2173 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-2679 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-4227 (*1 *2 *1 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| -2311 *1) (|:| |gap| (-767)) (|:| -1972 *1))) (-4 *1 (-1059 *3 *4 *5)))) (-4227 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-5 *2 (-2 (|:| -2311 *1) (|:| |gap| (-767)) (|:| -1972 *1))) (-4 *1 (-1059 *4 *5 *3)))) (-2365 (*1 *2 *1 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| -2311 *1) (|:| |gap| (-767)) (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-1059 *3 *4 *5)))) (-2365 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-5 *2 (-2 (|:| -2311 *1) (|:| |gap| (-767)) (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-1059 *4 *5 *3)))) (-2521 (*1 *2 *1 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-1059 *3 *4 *5)))) (-1421 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-3206 (*1 *2 *1 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -2269 (-767)))) (-4 *1 (-1059 *3 *4 *5)))) (-4056 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-2715 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-2131 (*1 *1 *2) (|partial| -12 (-5 *2 (-948 (-407 (-563)))) (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)))) (-2058 (*1 *1 *2) (-12 (-5 *2 (-948 (-407 (-563)))) (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)))) (-2220 (*1 *1 *2) (-12 (-5 *2 (-948 (-407 (-563)))) (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)))) (-2131 (*1 *1 *2) (|partial| -4032 (-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5)) (-12 (-2176 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))) (-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5)) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))))) (-2058 (*1 *1 *2) (-4032 (-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5)) (-12 (-2176 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))) (-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5)) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))))) (-2220 (*1 *1 *2) (-4032 (-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5)) (-12 (-2176 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))) (-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5)) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))))) (-2131 (*1 *1 *2) (|partial| -4032 (-12 (-5 *2 (-948 *3)) (-12 (-2176 (-4 *3 (-38 (-407 (-563))))) (-2176 (-4 *3 (-38 (-563)))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846))) (-12 (-5 *2 (-948 *3)) (-12 (-2176 (-4 *3 (-545))) (-2176 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846))) (-12 (-5 *2 (-948 *3)) (-12 (-2176 (-4 *3 (-988 (-563)))) (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846))))) (-2058 (*1 *1 *2) (-4032 (-12 (-5 *2 (-948 *3)) (-12 (-2176 (-4 *3 (-38 (-407 (-563))))) (-2176 (-4 *3 (-38 (-563)))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846))) (-12 (-5 *2 (-948 *3)) (-12 (-2176 (-4 *3 (-545))) (-2176 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846))) (-12 (-5 *2 (-948 *3)) (-12 (-2176 (-4 *3 (-988 (-563)))) (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846))))) (-2220 (*1 *1 *2) (-12 (-5 *2 (-948 *3)) (-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *5 (-611 (-1169))) (-4 *4 (-789)) (-4 *5 (-846)))) (-2253 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-2003 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-1327 (*1 *1 *1 *2) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-2307 (*1 *1 *1 *2) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-1327 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-2307 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-3724 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-2758 (*1 *2 *1 *1) (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| -3548 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-1059 *3 *4 *5)))) (-3183 (*1 *2 *1 *1) (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| -3548 *1) (|:| |coef1| *1))) (-4 *1 (-1059 *3 *4 *5)))) (-4110 (*1 *2 *1 *1) (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| -3548 *1) (|:| |coef2| *1))) (-4 *1 (-1059 *3 *4 *5)))) (-2742 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-1623 (*1 *2 *1 *1) (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1059 *3 *4 *5)))) (-2898 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-2771 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *3 (-555)))) (-1298 (*1 *1 *1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *3 (-555)))) (-2398 (*1 *1 *1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-3548 (*1 *2 *2 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-452)))) (-2060 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-452)))) (-4099 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-452)))) (-3208 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-452)))) (-2216 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-452)))))
-(-13 (-945 |t#1| |t#2| |t#3|) (-10 -8 (-15 -2957 (|t#3| $)) (-15 -3064 ((-767) $)) (-15 -2523 ($ $)) (-15 -2917 ($ $)) (-15 -4302 ($ $)) (-15 -1935 ($ $)) (-15 -2134 ((-640 $) $)) (-15 -3938 ($ $)) (-15 -2726 ($ $ |t#3|)) (-15 -2751 ($ $ |t#3|)) (-15 -2792 ((-112) $)) (-15 -2921 ((-112) $)) (-15 -2196 ($ $)) (-15 -4216 ($ $)) (-15 -2120 ((-640 $) $)) (-15 -2305 ((-640 $) $)) (-15 -3738 ((-3 (-112) "failed") $ $)) (-15 -3009 ((-112) $ $)) (-15 -2645 ((-112) $ $)) (-15 -3990 ((-112) $ $)) (-15 -3990 ((-112) $ (-640 $))) (-15 -2031 ((-112) $ $)) (-15 -2031 ((-112) $ (-640 $))) (-15 -4197 ((-112) $ $)) (-15 -4197 ((-112) $ (-640 $))) (-15 -2299 ((-112) $ $)) (-15 -2299 ((-112) $ (-640 $))) (-15 -4189 ($ $ $)) (-15 -2110 ($ $ $)) (-15 -4189 ($ $ $ |t#3|)) (-15 -2110 ($ $ $ |t#3|)) (-15 -2173 ($ $ $)) (-15 -2679 ($ $ $)) (-15 -2173 ($ $ $ |t#3|)) (-15 -2679 ($ $ $ |t#3|)) (-15 -4227 ((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -1972 $)) $ $)) (-15 -4227 ((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -1972 $)) $ $ |t#3|)) (-15 -2365 ((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -3490 $) (|:| -1972 $)) $ $)) (-15 -2365 ((-2 (|:| -2311 $) (|:| |gap| (-767)) (|:| -3490 $) (|:| -1972 $)) $ $ |t#3|)) (-15 -2521 ((-2 (|:| -3490 $) (|:| -1972 $)) $ $)) (-15 -1421 ($ $ $)) (-15 -3206 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -2269 (-767))) $ $)) (-15 -4056 ($ $ $)) (-15 -2715 ($ $ $)) (IF (|has| |t#3| (-611 (-1169))) (PROGN (-6 (-610 (-948 |t#1|))) (-6 (-611 (-948 |t#1|))) (IF (|has| |t#1| (-38 (-407 (-563)))) (PROGN (-15 -2131 ((-3 $ "failed") (-948 (-407 (-563))))) (-15 -2058 ($ (-948 (-407 (-563))))) (-15 -2220 ($ (-948 (-407 (-563))))) (-15 -2131 ((-3 $ "failed") (-948 (-563)))) (-15 -2058 ($ (-948 (-563)))) (-15 -2220 ($ (-948 (-563)))) (IF (|has| |t#1| (-988 (-563))) |%noBranch| (PROGN (-15 -2131 ((-3 $ "failed") (-948 |t#1|))) (-15 -2058 ($ (-948 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-38 (-563))) (IF (|has| |t#1| (-38 (-407 (-563)))) |%noBranch| (PROGN (-15 -2131 ((-3 $ "failed") (-948 (-563)))) (-15 -2058 ($ (-948 (-563)))) (-15 -2220 ($ (-948 (-563)))) (IF (|has| |t#1| (-545)) |%noBranch| (PROGN (-15 -2131 ((-3 $ "failed") (-948 |t#1|))) (-15 -2058 ($ (-948 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-38 (-563))) |%noBranch| (IF (|has| |t#1| (-38 (-407 (-563)))) |%noBranch| (PROGN (-15 -2131 ((-3 $ "failed") (-948 |t#1|))) (-15 -2058 ($ (-948 |t#1|)))))) (-15 -2220 ($ (-948 |t#1|))) (IF (|has| |t#1| (-1034 (-563))) (-6 (-611 (-1151))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-555)) (PROGN (-15 -2253 ($ $)) (-15 -2003 ($ $)) (-15 -1327 ($ $ |t#1|)) (-15 -2307 ($ $ |t#1|)) (-15 -1327 ($ $ $)) (-15 -2307 ($ $ $)) (-15 -3724 ($ $ $)) (-15 -2758 ((-2 (|:| -3548 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3183 ((-2 (|:| -3548 $) (|:| |coef1| $)) $ $)) (-15 -4110 ((-2 (|:| -3548 $) (|:| |coef2| $)) $ $)) (-15 -2742 ($ $ $)) (-15 -1623 ((-640 $) $ $)) (-15 -2898 ($ $ $)) (-15 -2771 ($ $ $ (-767))) (-15 -1298 ($ $ $ $ (-767))) (-15 -2398 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-452)) (PROGN (-15 -3548 (|t#1| |t#1| $)) (-15 -2060 ($ $)) (-15 -4099 ($ $)) (-15 -3208 ($ $)) (-15 -2216 ($ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) -4032 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 |#3|) . T) ((-613 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-610 (-858)) . T) ((-610 (-948 |#1|)) |has| |#3| (-611 (-1169))) ((-172) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-611 (-536)) -12 (|has| |#1| (-611 (-536))) (|has| |#3| (-611 (-536)))) ((-611 (-888 (-379))) -12 (|has| |#1| (-611 (-888 (-379)))) (|has| |#3| (-611 (-888 (-379))))) ((-611 (-888 (-563))) -12 (|has| |#1| (-611 (-888 (-563)))) (|has| |#3| (-611 (-888 (-563))))) ((-611 (-948 |#1|)) |has| |#3| (-611 (-1169))) ((-611 (-1151)) -12 (|has| |#1| (-1034 (-563))) (|has| |#3| (-611 (-1169)))) ((-290) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-309 $) . T) ((-326 |#1| |#2|) . T) ((-377 |#1|) . T) ((-411 |#1|) . T) ((-452) -4032 (|has| |#1| (-905)) (|has| |#1| (-452))) ((-514 |#3| |#1|) . T) ((-514 |#3| $) . T) ((-514 $ $) . T) ((-555) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-643 #0#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #0#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-722) . T) ((-846) |has| |#1| (-846)) ((-896 |#3|) . T) ((-882 (-379)) -12 (|has| |#1| (-882 (-379))) (|has| |#3| (-882 (-379)))) ((-882 (-563)) -12 (|has| |#1| (-882 (-563))) (|has| |#3| (-882 (-563)))) ((-945 |#1| |#2| |#3|) . T) ((-905) |has| |#1| (-905)) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1034 |#3|) . T) ((-1051 #0#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1212) |has| |#1| (-905)))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-2530 (((-640 (-1128)) $) 13)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 24) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3359 (((-1128) $) 15)) (-1718 (((-112) $ $) NIL)))
-(((-1060) (-13 (-1076) (-10 -8 (-15 -2530 ((-640 (-1128)) $)) (-15 -3359 ((-1128) $))))) (T -1060))
-((-2530 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-1060)))) (-3359 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1060)))))
-(-13 (-1076) (-10 -8 (-15 -2530 ((-640 (-1128)) $)) (-15 -3359 ((-1128) $))))
-((-3411 (((-112) |#3| $) 13)) (-3457 (((-3 $ "failed") |#3| (-917)) 23)) (-3400 (((-3 |#3| "failed") |#3| $) 38)) (-3101 (((-112) |#3| $) 16)) (-1419 (((-112) |#3| $) 14)))
-(((-1061 |#1| |#2| |#3|) (-10 -8 (-15 -3457 ((-3 |#1| "failed") |#3| (-917))) (-15 -3400 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3101 ((-112) |#3| |#1|)) (-15 -1419 ((-112) |#3| |#1|)) (-15 -3411 ((-112) |#3| |#1|))) (-1062 |#2| |#3|) (-13 (-844) (-363)) (-1233 |#2|)) (T -1061))
-NIL
-(-10 -8 (-15 -3457 ((-3 |#1| "failed") |#3| (-917))) (-15 -3400 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3101 ((-112) |#3| |#1|)) (-15 -1419 ((-112) |#3| |#1|)) (-15 -3411 ((-112) |#3| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) |#2| $) 21)) (-1857 (((-563) |#2| $) 22)) (-3457 (((-3 $ "failed") |#2| (-917)) 15)) (-3527 ((|#1| |#2| $ |#1|) 13)) (-3400 (((-3 |#2| "failed") |#2| $) 18)) (-3101 (((-112) |#2| $) 19)) (-1419 (((-112) |#2| $) 20)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3390 ((|#2| $) 17)) (-1693 (((-858) $) 11)) (-1403 ((|#1| |#2| $ |#1|) 14)) (-2783 (((-640 $) |#2|) 16)) (-1718 (((-112) $ $) 6)))
+((-3354 (*1 *2 *1) (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-3343 (*1 *2 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-767)))) (-2522 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-3333 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-4303 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-3323 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-3312 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1059 *3 *4 *5)))) (-3297 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-2725 (*1 *1 *1 *2) (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-2750 (*1 *1 *1 *2) (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-3286 (*1 *2 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-3277 (*1 *2 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-3267 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-3260 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-3249 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1059 *3 *4 *5)))) (-3239 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1059 *3 *4 *5)))) (-1361 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-2319 (*1 *2 *1 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-1351 (*1 *2 *1 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-2264 (*1 *2 *1 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-2264 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)))) (-2241 (*1 *2 *1 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-2241 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)))) (-2225 (*1 *2 *1 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-2225 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)))) (-2274 (*1 *2 *1 *1) (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))) (-2274 (*1 *2 *1 *3) (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)))) (-1341 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-1332 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-1341 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-1332 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-1322 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-1312 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-1322 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-1312 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *2 (-846)))) (-1300 (*1 *2 *1 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| -2310 *1) (|:| |gap| (-767)) (|:| -3443 *1))) (-4 *1 (-1059 *3 *4 *5)))) (-1300 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-5 *2 (-2 (|:| -2310 *1) (|:| |gap| (-767)) (|:| -3443 *1))) (-4 *1 (-1059 *4 *5 *3)))) (-1291 (*1 *2 *1 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| -2310 *1) (|:| |gap| (-767)) (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-1059 *3 *4 *5)))) (-1291 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846)) (-5 *2 (-2 (|:| -2310 *1) (|:| |gap| (-767)) (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-1059 *4 *5 *3)))) (-1564 (*1 *2 *1 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-1059 *3 *4 *5)))) (-4379 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-4367 (*1 *2 *1 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -4104 (-767)))) (-4 *1 (-1059 *3 *4 *5)))) (-2176 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-2163 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)))) (-2130 (*1 *1 *2) (|partial| -12 (-5 *2 (-948 (-407 (-563)))) (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)))) (-2057 (*1 *1 *2) (-12 (-5 *2 (-948 (-407 (-563)))) (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)))) (-2219 (*1 *1 *2) (-12 (-5 *2 (-948 (-407 (-563)))) (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)))) (-2130 (*1 *1 *2) (|partial| -4034 (-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5)) (-12 (-2174 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))) (-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5)) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))))) (-2057 (*1 *1 *2) (-4034 (-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5)) (-12 (-2174 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))) (-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5)) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))))) (-2219 (*1 *1 *2) (-4034 (-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5)) (-12 (-2174 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))) (-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5)) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))))) (-2130 (*1 *1 *2) (|partial| -4034 (-12 (-5 *2 (-948 *3)) (-12 (-2174 (-4 *3 (-38 (-407 (-563))))) (-2174 (-4 *3 (-38 (-563)))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846))) (-12 (-5 *2 (-948 *3)) (-12 (-2174 (-4 *3 (-545))) (-2174 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846))) (-12 (-5 *2 (-948 *3)) (-12 (-2174 (-4 *3 (-988 (-563)))) (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846))))) (-2057 (*1 *1 *2) (-4034 (-12 (-5 *2 (-948 *3)) (-12 (-2174 (-4 *3 (-38 (-407 (-563))))) (-2174 (-4 *3 (-38 (-563)))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846))) (-12 (-5 *2 (-948 *3)) (-12 (-2174 (-4 *3 (-545))) (-2174 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846))) (-12 (-5 *2 (-948 *3)) (-12 (-2174 (-4 *3 (-988 (-563)))) (-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169)))) (-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789)) (-4 *5 (-846))))) (-2219 (*1 *1 *2) (-12 (-5 *2 (-948 *3)) (-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *5 (-611 (-1169))) (-4 *4 (-789)) (-4 *5 (-846)))) (-4359 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-4349 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-4338 (*1 *1 *1 *2) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-4326 (*1 *1 *1 *2) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-4338 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-4326 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-1601 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-4315 (*1 *2 *1 *1) (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| -3551 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-1059 *3 *4 *5)))) (-4305 (*1 *2 *1 *1) (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| -3551 *1) (|:| |coef1| *1))) (-4 *1 (-1059 *3 *4 *5)))) (-4294 (*1 *2 *1 *1) (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-2 (|:| -3551 *1) (|:| |coef2| *1))) (-4 *1 (-1059 *3 *4 *5)))) (-1612 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-4282 (*1 *2 *1 *1) (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1059 *3 *4 *5)))) (-3461 (*1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-4271 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *3 (-555)))) (-4259 (*1 *1 *1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *3 (-555)))) (-4246 (*1 *1 *1 *1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-555)))) (-3551 (*1 *2 *2 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-452)))) (-4235 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-452)))) (-4226 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-452)))) (-4216 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-452)))) (-4206 (*1 *1 *1) (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-452)))))
+(-13 (-945 |t#1| |t#2| |t#3|) (-10 -8 (-15 -3354 (|t#3| $)) (-15 -3343 ((-767) $)) (-15 -2522 ($ $)) (-15 -3333 ($ $)) (-15 -4303 ($ $)) (-15 -3323 ($ $)) (-15 -3312 ((-640 $) $)) (-15 -3297 ($ $)) (-15 -2725 ($ $ |t#3|)) (-15 -2750 ($ $ |t#3|)) (-15 -3286 ((-112) $)) (-15 -3277 ((-112) $)) (-15 -3267 ($ $)) (-15 -3260 ($ $)) (-15 -3249 ((-640 $) $)) (-15 -3239 ((-640 $) $)) (-15 -1361 ((-3 (-112) "failed") $ $)) (-15 -2319 ((-112) $ $)) (-15 -1351 ((-112) $ $)) (-15 -2264 ((-112) $ $)) (-15 -2264 ((-112) $ (-640 $))) (-15 -2241 ((-112) $ $)) (-15 -2241 ((-112) $ (-640 $))) (-15 -2225 ((-112) $ $)) (-15 -2225 ((-112) $ (-640 $))) (-15 -2274 ((-112) $ $)) (-15 -2274 ((-112) $ (-640 $))) (-15 -1341 ($ $ $)) (-15 -1332 ($ $ $)) (-15 -1341 ($ $ $ |t#3|)) (-15 -1332 ($ $ $ |t#3|)) (-15 -1322 ($ $ $)) (-15 -1312 ($ $ $)) (-15 -1322 ($ $ $ |t#3|)) (-15 -1312 ($ $ $ |t#3|)) (-15 -1300 ((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -3443 $)) $ $)) (-15 -1300 ((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -3443 $)) $ $ |t#3|)) (-15 -1291 ((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -1765 $) (|:| -3443 $)) $ $)) (-15 -1291 ((-2 (|:| -2310 $) (|:| |gap| (-767)) (|:| -1765 $) (|:| -3443 $)) $ $ |t#3|)) (-15 -1564 ((-2 (|:| -1765 $) (|:| -3443 $)) $ $)) (-15 -4379 ($ $ $)) (-15 -4367 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -4104 (-767))) $ $)) (-15 -2176 ($ $ $)) (-15 -2163 ($ $ $)) (IF (|has| |t#3| (-611 (-1169))) (PROGN (-6 (-610 (-948 |t#1|))) (-6 (-611 (-948 |t#1|))) (IF (|has| |t#1| (-38 (-407 (-563)))) (PROGN (-15 -2130 ((-3 $ "failed") (-948 (-407 (-563))))) (-15 -2057 ($ (-948 (-407 (-563))))) (-15 -2219 ($ (-948 (-407 (-563))))) (-15 -2130 ((-3 $ "failed") (-948 (-563)))) (-15 -2057 ($ (-948 (-563)))) (-15 -2219 ($ (-948 (-563)))) (IF (|has| |t#1| (-988 (-563))) |%noBranch| (PROGN (-15 -2130 ((-3 $ "failed") (-948 |t#1|))) (-15 -2057 ($ (-948 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-38 (-563))) (IF (|has| |t#1| (-38 (-407 (-563)))) |%noBranch| (PROGN (-15 -2130 ((-3 $ "failed") (-948 (-563)))) (-15 -2057 ($ (-948 (-563)))) (-15 -2219 ($ (-948 (-563)))) (IF (|has| |t#1| (-545)) |%noBranch| (PROGN (-15 -2130 ((-3 $ "failed") (-948 |t#1|))) (-15 -2057 ($ (-948 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-38 (-563))) |%noBranch| (IF (|has| |t#1| (-38 (-407 (-563)))) |%noBranch| (PROGN (-15 -2130 ((-3 $ "failed") (-948 |t#1|))) (-15 -2057 ($ (-948 |t#1|)))))) (-15 -2219 ($ (-948 |t#1|))) (IF (|has| |t#1| (-1034 (-563))) (-6 (-611 (-1151))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-555)) (PROGN (-15 -4359 ($ $)) (-15 -4349 ($ $)) (-15 -4338 ($ $ |t#1|)) (-15 -4326 ($ $ |t#1|)) (-15 -4338 ($ $ $)) (-15 -4326 ($ $ $)) (-15 -1601 ($ $ $)) (-15 -4315 ((-2 (|:| -3551 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -4305 ((-2 (|:| -3551 $) (|:| |coef1| $)) $ $)) (-15 -4294 ((-2 (|:| -3551 $) (|:| |coef2| $)) $ $)) (-15 -1612 ($ $ $)) (-15 -4282 ((-640 $) $ $)) (-15 -3461 ($ $ $)) (-15 -4271 ($ $ $ (-767))) (-15 -4259 ($ $ $ $ (-767))) (-15 -4246 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-452)) (PROGN (-15 -3551 (|t#1| |t#1| $)) (-15 -4235 ($ $)) (-15 -4226 ($ $)) (-15 -4216 ($ $)) (-15 -4206 ($ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) -4034 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 |#3|) . T) ((-613 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-610 (-858)) . T) ((-610 (-948 |#1|)) |has| |#3| (-611 (-1169))) ((-172) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-611 (-536)) -12 (|has| |#1| (-611 (-536))) (|has| |#3| (-611 (-536)))) ((-611 (-888 (-379))) -12 (|has| |#1| (-611 (-888 (-379)))) (|has| |#3| (-611 (-888 (-379))))) ((-611 (-888 (-563))) -12 (|has| |#1| (-611 (-888 (-563)))) (|has| |#3| (-611 (-888 (-563))))) ((-611 (-948 |#1|)) |has| |#3| (-611 (-1169))) ((-611 (-1151)) -12 (|has| |#1| (-1034 (-563))) (|has| |#3| (-611 (-1169)))) ((-290) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-309 $) . T) ((-326 |#1| |#2|) . T) ((-377 |#1|) . T) ((-411 |#1|) . T) ((-452) -4034 (|has| |#1| (-905)) (|has| |#1| (-452))) ((-514 |#3| |#1|) . T) ((-514 |#3| $) . T) ((-514 $ $) . T) ((-555) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-643 #0#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #0#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452))) ((-722) . T) ((-846) |has| |#1| (-846)) ((-896 |#3|) . T) ((-882 (-379)) -12 (|has| |#1| (-882 (-379))) (|has| |#3| (-882 (-379)))) ((-882 (-563)) -12 (|has| |#1| (-882 (-563))) (|has| |#3| (-882 (-563)))) ((-945 |#1| |#2| |#3|) . T) ((-905) |has| |#1| (-905)) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 |#1|) . T) ((-1034 |#3|) . T) ((-1051 #0#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1212) |has| |#1| (-905)))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-2529 (((-640 (-1128)) $) 13)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 24) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3363 (((-1128) $) 15)) (-1718 (((-112) $ $) NIL)))
+(((-1060) (-13 (-1076) (-10 -8 (-15 -2529 ((-640 (-1128)) $)) (-15 -3363 ((-1128) $))))) (T -1060))
+((-2529 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-1060)))) (-3363 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1060)))))
+(-13 (-1076) (-10 -8 (-15 -2529 ((-640 (-1128)) $)) (-15 -3363 ((-1128) $))))
+((-3439 (((-112) |#3| $) 13)) (-3377 (((-3 $ "failed") |#3| (-917)) 23)) (-3951 (((-3 |#3| "failed") |#3| $) 38)) (-3414 (((-112) |#3| $) 16)) (-3426 (((-112) |#3| $) 14)))
+(((-1061 |#1| |#2| |#3|) (-10 -8 (-15 -3377 ((-3 |#1| "failed") |#3| (-917))) (-15 -3951 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3414 ((-112) |#3| |#1|)) (-15 -3426 ((-112) |#3| |#1|)) (-15 -3439 ((-112) |#3| |#1|))) (-1062 |#2| |#3|) (-13 (-844) (-363)) (-1233 |#2|)) (T -1061))
+NIL
+(-10 -8 (-15 -3377 ((-3 |#1| "failed") |#3| (-917))) (-15 -3951 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3414 ((-112) |#3| |#1|)) (-15 -3426 ((-112) |#3| |#1|)) (-15 -3439 ((-112) |#3| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) |#2| $) 21)) (-2807 (((-563) |#2| $) 22)) (-3377 (((-3 $ "failed") |#2| (-917)) 15)) (-3365 ((|#1| |#2| $ |#1|) 13)) (-3951 (((-3 |#2| "failed") |#2| $) 18)) (-3414 (((-112) |#2| $) 19)) (-3426 (((-112) |#2| $) 20)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-3402 ((|#2| $) 17)) (-1692 (((-858) $) 11)) (-1402 ((|#1| |#2| $ |#1|) 14)) (-3389 (((-640 $) |#2|) 16)) (-1718 (((-112) $ $) 6)))
(((-1062 |#1| |#2|) (-140) (-13 (-844) (-363)) (-1233 |t#1|)) (T -1062))
-((-1857 (*1 *2 *3 *1) (-12 (-4 *1 (-1062 *4 *3)) (-4 *4 (-13 (-844) (-363))) (-4 *3 (-1233 *4)) (-5 *2 (-563)))) (-3411 (*1 *2 *3 *1) (-12 (-4 *1 (-1062 *4 *3)) (-4 *4 (-13 (-844) (-363))) (-4 *3 (-1233 *4)) (-5 *2 (-112)))) (-1419 (*1 *2 *3 *1) (-12 (-4 *1 (-1062 *4 *3)) (-4 *4 (-13 (-844) (-363))) (-4 *3 (-1233 *4)) (-5 *2 (-112)))) (-3101 (*1 *2 *3 *1) (-12 (-4 *1 (-1062 *4 *3)) (-4 *4 (-13 (-844) (-363))) (-4 *3 (-1233 *4)) (-5 *2 (-112)))) (-3400 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-1062 *3 *2)) (-4 *3 (-13 (-844) (-363))) (-4 *2 (-1233 *3)))) (-3390 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *2)) (-4 *3 (-13 (-844) (-363))) (-4 *2 (-1233 *3)))) (-2783 (*1 *2 *3) (-12 (-4 *4 (-13 (-844) (-363))) (-4 *3 (-1233 *4)) (-5 *2 (-640 *1)) (-4 *1 (-1062 *4 *3)))) (-3457 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-917)) (-4 *4 (-13 (-844) (-363))) (-4 *1 (-1062 *4 *2)) (-4 *2 (-1233 *4)))) (-1403 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1062 *2 *3)) (-4 *2 (-13 (-844) (-363))) (-4 *3 (-1233 *2)))) (-3527 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1062 *2 *3)) (-4 *2 (-13 (-844) (-363))) (-4 *3 (-1233 *2)))))
-(-13 (-1093) (-10 -8 (-15 -1857 ((-563) |t#2| $)) (-15 -3411 ((-112) |t#2| $)) (-15 -1419 ((-112) |t#2| $)) (-15 -3101 ((-112) |t#2| $)) (-15 -3400 ((-3 |t#2| "failed") |t#2| $)) (-15 -3390 (|t#2| $)) (-15 -2783 ((-640 $) |t#2|)) (-15 -3457 ((-3 $ "failed") |t#2| (-917))) (-15 -1403 (|t#1| |t#2| $ |t#1|)) (-15 -3527 (|t#1| |t#2| $ |t#1|))))
+((-2807 (*1 *2 *3 *1) (-12 (-4 *1 (-1062 *4 *3)) (-4 *4 (-13 (-844) (-363))) (-4 *3 (-1233 *4)) (-5 *2 (-563)))) (-3439 (*1 *2 *3 *1) (-12 (-4 *1 (-1062 *4 *3)) (-4 *4 (-13 (-844) (-363))) (-4 *3 (-1233 *4)) (-5 *2 (-112)))) (-3426 (*1 *2 *3 *1) (-12 (-4 *1 (-1062 *4 *3)) (-4 *4 (-13 (-844) (-363))) (-4 *3 (-1233 *4)) (-5 *2 (-112)))) (-3414 (*1 *2 *3 *1) (-12 (-4 *1 (-1062 *4 *3)) (-4 *4 (-13 (-844) (-363))) (-4 *3 (-1233 *4)) (-5 *2 (-112)))) (-3951 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-1062 *3 *2)) (-4 *3 (-13 (-844) (-363))) (-4 *2 (-1233 *3)))) (-3402 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *2)) (-4 *3 (-13 (-844) (-363))) (-4 *2 (-1233 *3)))) (-3389 (*1 *2 *3) (-12 (-4 *4 (-13 (-844) (-363))) (-4 *3 (-1233 *4)) (-5 *2 (-640 *1)) (-4 *1 (-1062 *4 *3)))) (-3377 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-917)) (-4 *4 (-13 (-844) (-363))) (-4 *1 (-1062 *4 *2)) (-4 *2 (-1233 *4)))) (-1402 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1062 *2 *3)) (-4 *2 (-13 (-844) (-363))) (-4 *3 (-1233 *2)))) (-3365 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1062 *2 *3)) (-4 *2 (-13 (-844) (-363))) (-4 *3 (-1233 *2)))))
+(-13 (-1093) (-10 -8 (-15 -2807 ((-563) |t#2| $)) (-15 -3439 ((-112) |t#2| $)) (-15 -3426 ((-112) |t#2| $)) (-15 -3414 ((-112) |t#2| $)) (-15 -3951 ((-3 |t#2| "failed") |t#2| $)) (-15 -3402 (|t#2| $)) (-15 -3389 ((-640 $) |t#2|)) (-15 -3377 ((-3 $ "failed") |t#2| (-917))) (-15 -1402 (|t#1| |t#2| $ |t#1|)) (-15 -3365 (|t#1| |t#2| $ |t#1|))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-1672 (((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-640 |#4|) (-640 |#5|) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) (-767)) 95)) (-4037 (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767)) 56)) (-2672 (((-1262) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-767)) 87)) (-3867 (((-767) (-640 |#4|) (-640 |#5|)) 27)) (-4361 (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5|) 59) (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767)) 58) (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767) (-112)) 60)) (-2927 (((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112) (-112) (-112) (-112)) 78) (((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112)) 79)) (-2220 (((-1151) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) 82)) (-3705 (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-112)) 55)) (-3913 (((-767) (-640 |#4|) (-640 |#5|)) 19)))
-(((-1063 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3913 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -3867 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -3705 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-112))) (-15 -4037 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767))) (-15 -4037 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5|)) (-15 -4361 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767) (-112))) (-15 -4361 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767))) (-15 -4361 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5|)) (-15 -2927 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -2927 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -1672 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-640 |#4|) (-640 |#5|) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) (-767))) (-15 -2220 ((-1151) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)))) (-15 -2672 ((-1262) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-767)))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1065 |#1| |#2| |#3| |#4|)) (T -1063))
-((-2672 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2059 *9)))) (-5 *4 (-767)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-1262)) (-5 *1 (-1063 *5 *6 *7 *8 *9)))) (-2220 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2059 *8))) (-4 *7 (-1059 *4 *5 *6)) (-4 *8 (-1065 *4 *5 *6 *7)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1151)) (-5 *1 (-1063 *4 *5 *6 *7 *8)))) (-1672 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-640 *11)) (|:| |todo| (-640 (-2 (|:| |val| *3) (|:| -2059 *11)))))) (-5 *6 (-767)) (-5 *2 (-640 (-2 (|:| |val| (-640 *10)) (|:| -2059 *11)))) (-5 *3 (-640 *10)) (-5 *4 (-640 *11)) (-4 *10 (-1059 *7 *8 *9)) (-4 *11 (-1065 *7 *8 *9 *10)) (-4 *7 (-452)) (-4 *8 (-789)) (-4 *9 (-846)) (-5 *1 (-1063 *7 *8 *9 *10 *11)))) (-2927 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1063 *5 *6 *7 *8 *9)))) (-2927 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1063 *5 *6 *7 *8 *9)))) (-4361 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4)))))) (-5 *1 (-1063 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-4361 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *3 (-1059 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4)))))) (-5 *1 (-1063 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3)))) (-4361 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-767)) (-5 *6 (-112)) (-4 *7 (-452)) (-4 *8 (-789)) (-4 *9 (-846)) (-4 *3 (-1059 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4)))))) (-5 *1 (-1063 *7 *8 *9 *3 *4)) (-4 *4 (-1065 *7 *8 *9 *3)))) (-4037 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4)))))) (-5 *1 (-1063 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-4037 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *3 (-1059 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4)))))) (-5 *1 (-1063 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3)))) (-3705 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *3 (-1059 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4)))))) (-5 *1 (-1063 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3)))) (-3867 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1063 *5 *6 *7 *8 *9)))) (-3913 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1063 *5 *6 *7 *8 *9)))))
-(-10 -7 (-15 -3913 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -3867 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -3705 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-112))) (-15 -4037 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767))) (-15 -4037 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5|)) (-15 -4361 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767) (-112))) (-15 -4361 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767))) (-15 -4361 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5|)) (-15 -2927 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -2927 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -1672 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-640 |#4|) (-640 |#5|) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) (-767))) (-15 -2220 ((-1151) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)))) (-15 -2672 ((-1262) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-767))))
-((-2313 (((-112) |#5| $) 20)) (-3748 (((-112) |#5| $) 23)) (-1871 (((-112) |#5| $) 16) (((-112) $) 44)) (-2550 (((-640 $) |#5| $) NIL) (((-640 $) (-640 |#5|) $) 76) (((-640 $) (-640 |#5|) (-640 $)) 74) (((-640 $) |#5| (-640 $)) 77)) (-3320 (($ $ |#5|) NIL) (((-640 $) |#5| $) NIL) (((-640 $) |#5| (-640 $)) 59) (((-640 $) (-640 |#5|) $) 61) (((-640 $) (-640 |#5|) (-640 $)) 63)) (-2175 (((-640 $) |#5| $) NIL) (((-640 $) |#5| (-640 $)) 53) (((-640 $) (-640 |#5|) $) 55) (((-640 $) (-640 |#5|) (-640 $)) 57)) (-4279 (((-112) |#5| $) 26)))
-(((-1064 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3320 ((-640 |#1|) (-640 |#5|) (-640 |#1|))) (-15 -3320 ((-640 |#1|) (-640 |#5|) |#1|)) (-15 -3320 ((-640 |#1|) |#5| (-640 |#1|))) (-15 -3320 ((-640 |#1|) |#5| |#1|)) (-15 -2175 ((-640 |#1|) (-640 |#5|) (-640 |#1|))) (-15 -2175 ((-640 |#1|) (-640 |#5|) |#1|)) (-15 -2175 ((-640 |#1|) |#5| (-640 |#1|))) (-15 -2175 ((-640 |#1|) |#5| |#1|)) (-15 -2550 ((-640 |#1|) |#5| (-640 |#1|))) (-15 -2550 ((-640 |#1|) (-640 |#5|) (-640 |#1|))) (-15 -2550 ((-640 |#1|) (-640 |#5|) |#1|)) (-15 -2550 ((-640 |#1|) |#5| |#1|)) (-15 -3748 ((-112) |#5| |#1|)) (-15 -1871 ((-112) |#1|)) (-15 -4279 ((-112) |#5| |#1|)) (-15 -2313 ((-112) |#5| |#1|)) (-15 -1871 ((-112) |#5| |#1|)) (-15 -3320 (|#1| |#1| |#5|))) (-1065 |#2| |#3| |#4| |#5|) (-452) (-789) (-846) (-1059 |#2| |#3| |#4|)) (T -1064))
-NIL
-(-10 -8 (-15 -3320 ((-640 |#1|) (-640 |#5|) (-640 |#1|))) (-15 -3320 ((-640 |#1|) (-640 |#5|) |#1|)) (-15 -3320 ((-640 |#1|) |#5| (-640 |#1|))) (-15 -3320 ((-640 |#1|) |#5| |#1|)) (-15 -2175 ((-640 |#1|) (-640 |#5|) (-640 |#1|))) (-15 -2175 ((-640 |#1|) (-640 |#5|) |#1|)) (-15 -2175 ((-640 |#1|) |#5| (-640 |#1|))) (-15 -2175 ((-640 |#1|) |#5| |#1|)) (-15 -2550 ((-640 |#1|) |#5| (-640 |#1|))) (-15 -2550 ((-640 |#1|) (-640 |#5|) (-640 |#1|))) (-15 -2550 ((-640 |#1|) (-640 |#5|) |#1|)) (-15 -2550 ((-640 |#1|) |#5| |#1|)) (-15 -3748 ((-112) |#5| |#1|)) (-15 -1871 ((-112) |#1|)) (-15 -4279 ((-112) |#5| |#1|)) (-15 -2313 ((-112) |#5| |#1|)) (-15 -1871 ((-112) |#5| |#1|)) (-15 -3320 (|#1| |#1| |#5|)))
-((-1677 (((-112) $ $) 7)) (-1578 (((-640 (-2 (|:| -1442 $) (|:| -3405 (-640 |#4|)))) (-640 |#4|)) 85)) (-3319 (((-640 $) (-640 |#4|)) 86) (((-640 $) (-640 |#4|) (-112)) 111)) (-2606 (((-640 |#3|) $) 33)) (-1706 (((-112) $) 26)) (-3854 (((-112) $) 17 (|has| |#1| (-555)))) (-2620 (((-112) |#4| $) 101) (((-112) $) 97)) (-4053 ((|#4| |#4| $) 92)) (-4335 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 $))) |#4| $) 126)) (-1642 (((-2 (|:| |under| $) (|:| -1583 $) (|:| |upper| $)) $ |#3|) 27)) (-2759 (((-112) $ (-767)) 44)) (-2256 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4407))) (((-3 |#4| "failed") $ |#3|) 79)) (-4239 (($) 45 T CONST)) (-1483 (((-112) $) 22 (|has| |#1| (-555)))) (-1626 (((-112) $ $) 24 (|has| |#1| (-555)))) (-4221 (((-112) $ $) 23 (|has| |#1| (-555)))) (-1763 (((-112) $) 25 (|has| |#1| (-555)))) (-1833 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3746 (((-640 |#4|) (-640 |#4|) $) 18 (|has| |#1| (-555)))) (-1866 (((-640 |#4|) (-640 |#4|) $) 19 (|has| |#1| (-555)))) (-2131 (((-3 $ "failed") (-640 |#4|)) 36)) (-2058 (($ (-640 |#4|)) 35)) (-3792 (((-3 $ "failed") $) 82)) (-1719 ((|#4| |#4| $) 89)) (-3813 (($ $) 68 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ |#4| $) 67 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4407)))) (-1972 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-555)))) (-3990 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-3948 ((|#4| |#4| $) 87)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4407))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4407))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2144 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3405 (-640 |#4|))) $) 105)) (-2313 (((-112) |#4| $) 136)) (-3748 (((-112) |#4| $) 133)) (-1871 (((-112) |#4| $) 137) (((-112) $) 134)) (-2659 (((-640 |#4|) $) 52 (|has| $ (-6 -4407)))) (-2299 (((-112) |#4| $) 104) (((-112) $) 103)) (-2957 ((|#3| $) 34)) (-2581 (((-112) $ (-767)) 43)) (-2259 (((-640 |#4|) $) 53 (|has| $ (-6 -4407)))) (-1729 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#4| |#4|) $) 47)) (-2965 (((-640 |#3|) $) 32)) (-2780 (((-112) |#3| $) 31)) (-2382 (((-112) $ (-767)) 42)) (-3573 (((-1151) $) 9)) (-3083 (((-3 |#4| (-640 $)) |#4| |#4| $) 128)) (-2898 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 $))) |#4| |#4| $) 127)) (-1481 (((-3 |#4| "failed") $) 83)) (-3764 (((-640 $) |#4| $) 129)) (-1334 (((-3 (-112) (-640 $)) |#4| $) 132)) (-2069 (((-640 (-2 (|:| |val| (-112)) (|:| -2059 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-2550 (((-640 $) |#4| $) 125) (((-640 $) (-640 |#4|) $) 124) (((-640 $) (-640 |#4|) (-640 $)) 123) (((-640 $) |#4| (-640 $)) 122)) (-3291 (($ |#4| $) 117) (($ (-640 |#4|) $) 116)) (-2820 (((-640 |#4|) $) 107)) (-4197 (((-112) |#4| $) 99) (((-112) $) 95)) (-2715 ((|#4| |#4| $) 90)) (-3009 (((-112) $ $) 110)) (-2152 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-555)))) (-2031 (((-112) |#4| $) 100) (((-112) $) 96)) (-4056 ((|#4| |#4| $) 91)) (-1694 (((-1113) $) 10)) (-3781 (((-3 |#4| "failed") $) 84)) (-4203 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-3479 (((-3 $ "failed") $ |#4|) 78)) (-3320 (($ $ |#4|) 77) (((-640 $) |#4| $) 115) (((-640 $) |#4| (-640 $)) 114) (((-640 $) (-640 |#4|) $) 113) (((-640 $) (-640 |#4|) (-640 $)) 112)) (-3138 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 |#4|) (-640 |#4|)) 59 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) 57 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) 56 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2026 (((-112) $ $) 38)) (-3756 (((-112) $) 41)) (-3135 (($) 40)) (-4167 (((-767) $) 106)) (-1709 (((-767) |#4| $) 54 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) (((-767) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4407)))) (-1872 (($ $) 39)) (-2220 (((-536) $) 69 (|has| |#4| (-611 (-536))))) (-1707 (($ (-640 |#4|)) 60)) (-3577 (($ $ |#3|) 28)) (-1593 (($ $ |#3|) 30)) (-1924 (($ $) 88)) (-4192 (($ $ |#3|) 29)) (-1693 (((-858) $) 11) (((-640 |#4|) $) 37)) (-2437 (((-767) $) 76 (|has| |#3| (-368)))) (-2540 (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-2691 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) 98)) (-2175 (((-640 $) |#4| $) 121) (((-640 $) |#4| (-640 $)) 120) (((-640 $) (-640 |#4|) $) 119) (((-640 $) (-640 |#4|) (-640 $)) 118)) (-4383 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4407)))) (-1955 (((-640 |#3|) $) 81)) (-4279 (((-112) |#4| $) 135)) (-3152 (((-112) |#3| $) 80)) (-1718 (((-112) $ $) 6)) (-3608 (((-767) $) 46 (|has| $ (-6 -4407)))))
+((-1925 (((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-640 |#4|) (-640 |#5|) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) (-767)) 95)) (-1893 (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767)) 56)) (-2671 (((-1262) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-767)) 87)) (-1871 (((-767) (-640 |#4|) (-640 |#5|)) 27)) (-1903 (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5|) 59) (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767)) 58) (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767) (-112)) 60)) (-1913 (((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112) (-112) (-112) (-112)) 78) (((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112)) 79)) (-2219 (((-1151) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) 82)) (-1881 (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-112)) 55)) (-1860 (((-767) (-640 |#4|) (-640 |#5|)) 19)))
+(((-1063 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1860 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -1871 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -1881 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-112))) (-15 -1893 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767))) (-15 -1893 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5|)) (-15 -1903 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767) (-112))) (-15 -1903 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767))) (-15 -1903 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5|)) (-15 -1913 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -1913 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -1925 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-640 |#4|) (-640 |#5|) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) (-767))) (-15 -2219 ((-1151) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)))) (-15 -2671 ((-1262) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-767)))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1065 |#1| |#2| |#3| |#4|)) (T -1063))
+((-2671 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2058 *9)))) (-5 *4 (-767)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-1262)) (-5 *1 (-1063 *5 *6 *7 *8 *9)))) (-2219 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2058 *8))) (-4 *7 (-1059 *4 *5 *6)) (-4 *8 (-1065 *4 *5 *6 *7)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1151)) (-5 *1 (-1063 *4 *5 *6 *7 *8)))) (-1925 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-640 *11)) (|:| |todo| (-640 (-2 (|:| |val| *3) (|:| -2058 *11)))))) (-5 *6 (-767)) (-5 *2 (-640 (-2 (|:| |val| (-640 *10)) (|:| -2058 *11)))) (-5 *3 (-640 *10)) (-5 *4 (-640 *11)) (-4 *10 (-1059 *7 *8 *9)) (-4 *11 (-1065 *7 *8 *9 *10)) (-4 *7 (-452)) (-4 *8 (-789)) (-4 *9 (-846)) (-5 *1 (-1063 *7 *8 *9 *10 *11)))) (-1913 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1063 *5 *6 *7 *8 *9)))) (-1913 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1063 *5 *6 *7 *8 *9)))) (-1903 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4)))))) (-5 *1 (-1063 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-1903 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *3 (-1059 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4)))))) (-5 *1 (-1063 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3)))) (-1903 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-767)) (-5 *6 (-112)) (-4 *7 (-452)) (-4 *8 (-789)) (-4 *9 (-846)) (-4 *3 (-1059 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4)))))) (-5 *1 (-1063 *7 *8 *9 *3 *4)) (-4 *4 (-1065 *7 *8 *9 *3)))) (-1893 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4)))))) (-5 *1 (-1063 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-1893 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *3 (-1059 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4)))))) (-5 *1 (-1063 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3)))) (-1881 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *3 (-1059 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4)))))) (-5 *1 (-1063 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3)))) (-1871 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1063 *5 *6 *7 *8 *9)))) (-1860 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1063 *5 *6 *7 *8 *9)))))
+(-10 -7 (-15 -1860 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -1871 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -1881 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-112))) (-15 -1893 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767))) (-15 -1893 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5|)) (-15 -1903 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767) (-112))) (-15 -1903 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767))) (-15 -1903 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5|)) (-15 -1913 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -1913 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -1925 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-640 |#4|) (-640 |#5|) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) (-767))) (-15 -2219 ((-1151) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)))) (-15 -2671 ((-1262) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-767))))
+((-3536 (((-112) |#5| $) 20)) (-3514 (((-112) |#5| $) 23)) (-3548 (((-112) |#5| $) 16) (((-112) $) 44)) (-3834 (((-640 $) |#5| $) NIL) (((-640 $) (-640 |#5|) $) 76) (((-640 $) (-640 |#5|) (-640 $)) 74) (((-640 $) |#5| (-640 $)) 77)) (-1751 (($ $ |#5|) NIL) (((-640 $) |#5| $) NIL) (((-640 $) |#5| (-640 $)) 59) (((-640 $) (-640 |#5|) $) 61) (((-640 $) (-640 |#5|) (-640 $)) 63)) (-3450 (((-640 $) |#5| $) NIL) (((-640 $) |#5| (-640 $)) 53) (((-640 $) (-640 |#5|) $) 55) (((-640 $) (-640 |#5|) (-640 $)) 57)) (-3525 (((-112) |#5| $) 26)))
+(((-1064 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1751 ((-640 |#1|) (-640 |#5|) (-640 |#1|))) (-15 -1751 ((-640 |#1|) (-640 |#5|) |#1|)) (-15 -1751 ((-640 |#1|) |#5| (-640 |#1|))) (-15 -1751 ((-640 |#1|) |#5| |#1|)) (-15 -3450 ((-640 |#1|) (-640 |#5|) (-640 |#1|))) (-15 -3450 ((-640 |#1|) (-640 |#5|) |#1|)) (-15 -3450 ((-640 |#1|) |#5| (-640 |#1|))) (-15 -3450 ((-640 |#1|) |#5| |#1|)) (-15 -3834 ((-640 |#1|) |#5| (-640 |#1|))) (-15 -3834 ((-640 |#1|) (-640 |#5|) (-640 |#1|))) (-15 -3834 ((-640 |#1|) (-640 |#5|) |#1|)) (-15 -3834 ((-640 |#1|) |#5| |#1|)) (-15 -3514 ((-112) |#5| |#1|)) (-15 -3548 ((-112) |#1|)) (-15 -3525 ((-112) |#5| |#1|)) (-15 -3536 ((-112) |#5| |#1|)) (-15 -3548 ((-112) |#5| |#1|)) (-15 -1751 (|#1| |#1| |#5|))) (-1065 |#2| |#3| |#4| |#5|) (-452) (-789) (-846) (-1059 |#2| |#3| |#4|)) (T -1064))
+NIL
+(-10 -8 (-15 -1751 ((-640 |#1|) (-640 |#5|) (-640 |#1|))) (-15 -1751 ((-640 |#1|) (-640 |#5|) |#1|)) (-15 -1751 ((-640 |#1|) |#5| (-640 |#1|))) (-15 -1751 ((-640 |#1|) |#5| |#1|)) (-15 -3450 ((-640 |#1|) (-640 |#5|) (-640 |#1|))) (-15 -3450 ((-640 |#1|) (-640 |#5|) |#1|)) (-15 -3450 ((-640 |#1|) |#5| (-640 |#1|))) (-15 -3450 ((-640 |#1|) |#5| |#1|)) (-15 -3834 ((-640 |#1|) |#5| (-640 |#1|))) (-15 -3834 ((-640 |#1|) (-640 |#5|) (-640 |#1|))) (-15 -3834 ((-640 |#1|) (-640 |#5|) |#1|)) (-15 -3834 ((-640 |#1|) |#5| |#1|)) (-15 -3514 ((-112) |#5| |#1|)) (-15 -3548 ((-112) |#1|)) (-15 -3525 ((-112) |#5| |#1|)) (-15 -3536 ((-112) |#5| |#1|)) (-15 -3548 ((-112) |#5| |#1|)) (-15 -1751 (|#1| |#1| |#5|)))
+((-1677 (((-112) $ $) 7)) (-2110 (((-640 (-2 (|:| -1442 $) (|:| -3409 (-640 |#4|)))) (-640 |#4|)) 85)) (-2119 (((-640 $) (-640 |#4|)) 86) (((-640 $) (-640 |#4|) (-112)) 111)) (-2605 (((-640 |#3|) $) 33)) (-3508 (((-112) $) 26)) (-3406 (((-112) $) 17 (|has| |#1| (-555)))) (-2254 (((-112) |#4| $) 101) (((-112) $) 97)) (-2189 ((|#4| |#4| $) 92)) (-1798 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 $))) |#4| $) 126)) (-1640 (((-2 (|:| |under| $) (|:| -3954 $) (|:| |upper| $)) $ |#3|) 27)) (-3001 (((-112) $ (-767)) 44)) (-2255 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4408))) (((-3 |#4| "failed") $ |#3|) 79)) (-2569 (($) 45 T CONST)) (-3466 (((-112) $) 22 (|has| |#1| (-555)))) (-3486 (((-112) $ $) 24 (|has| |#1| (-555)))) (-3476 (((-112) $ $) 23 (|has| |#1| (-555)))) (-3496 (((-112) $) 25 (|has| |#1| (-555)))) (-2201 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3418 (((-640 |#4|) (-640 |#4|) $) 18 (|has| |#1| (-555)))) (-3431 (((-640 |#4|) (-640 |#4|) $) 19 (|has| |#1| (-555)))) (-2130 (((-3 $ "failed") (-640 |#4|)) 36)) (-2057 (($ (-640 |#4|)) 35)) (-3793 (((-3 $ "failed") $) 82)) (-2151 ((|#4| |#4| $) 89)) (-3814 (($ $) 68 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ |#4| $) 67 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4408)))) (-3443 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-555)))) (-2264 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-2131 ((|#4| |#4| $) 87)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4408))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4408))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2284 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3409 (-640 |#4|))) $) 105)) (-3536 (((-112) |#4| $) 136)) (-3514 (((-112) |#4| $) 133)) (-3548 (((-112) |#4| $) 137) (((-112) $) 134)) (-2658 (((-640 |#4|) $) 52 (|has| $ (-6 -4408)))) (-2274 (((-112) |#4| $) 104) (((-112) $) 103)) (-3354 ((|#3| $) 34)) (-2514 (((-112) $ (-767)) 43)) (-3523 (((-640 |#4|) $) 53 (|has| $ (-6 -4408)))) (-2667 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#4| |#4|) $) 47)) (-3568 (((-640 |#3|) $) 32)) (-3553 (((-112) |#3| $) 31)) (-2481 (((-112) $ (-767)) 42)) (-3854 (((-1151) $) 9)) (-3472 (((-3 |#4| (-640 $)) |#4| |#4| $) 128)) (-3461 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 $))) |#4| |#4| $) 127)) (-1481 (((-3 |#4| "failed") $) 83)) (-3482 (((-640 $) |#4| $) 129)) (-3503 (((-3 (-112) (-640 $)) |#4| $) 132)) (-3492 (((-640 (-2 (|:| |val| (-112)) (|:| -2058 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-3834 (((-640 $) |#4| $) 125) (((-640 $) (-640 |#4|) $) 124) (((-640 $) (-640 |#4|) (-640 $)) 123) (((-640 $) |#4| (-640 $)) 122)) (-1956 (($ |#4| $) 117) (($ (-640 |#4|) $) 116)) (-2297 (((-640 |#4|) $) 107)) (-2225 (((-112) |#4| $) 99) (((-112) $) 95)) (-2163 ((|#4| |#4| $) 90)) (-2319 (((-112) $ $) 110)) (-3454 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-555)))) (-2241 (((-112) |#4| $) 100) (((-112) $) 96)) (-2176 ((|#4| |#4| $) 91)) (-1693 (((-1113) $) 10)) (-3782 (((-3 |#4| "failed") $) 84)) (-1971 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-2089 (((-3 $ "failed") $ |#4|) 78)) (-1751 (($ $ |#4|) 77) (((-640 $) |#4| $) 115) (((-640 $) |#4| (-640 $)) 114) (((-640 $) (-640 |#4|) $) 113) (((-640 $) (-640 |#4|) (-640 $)) 112)) (-1458 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 |#4|) (-640 |#4|)) 59 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) 57 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) 56 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2941 (((-112) $ $) 38)) (-1665 (((-112) $) 41)) (-3445 (($) 40)) (-3871 (((-767) $) 106)) (-1708 (((-767) |#4| $) 54 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) (((-767) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4408)))) (-1870 (($ $) 39)) (-2219 (((-536) $) 69 (|has| |#4| (-611 (-536))))) (-1706 (($ (-640 |#4|)) 60)) (-3519 (($ $ |#3|) 28)) (-3542 (($ $ |#3|) 30)) (-2141 (($ $) 88)) (-3529 (($ $ |#3|) 29)) (-1692 (((-858) $) 11) (((-640 |#4|) $) 37)) (-3255 (((-767) $) 76 (|has| |#3| (-368)))) (-2307 (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-2211 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) 98)) (-3450 (((-640 $) |#4| $) 121) (((-640 $) |#4| (-640 $)) 120) (((-640 $) (-640 |#4|) $) 119) (((-640 $) (-640 |#4|) (-640 $)) 118)) (-1471 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4408)))) (-2100 (((-640 |#3|) $) 81)) (-3525 (((-112) |#4| $) 135)) (-3772 (((-112) |#3| $) 80)) (-1718 (((-112) $ $) 6)) (-3610 (((-767) $) 46 (|has| $ (-6 -4408)))))
(((-1065 |#1| |#2| |#3| |#4|) (-140) (-452) (-789) (-846) (-1059 |t#1| |t#2| |t#3|)) (T -1065))
-((-1871 (*1 *2 *3 *1) (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-2313 (*1 *2 *3 *1) (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-4279 (*1 *2 *3 *1) (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-1871 (*1 *2 *1) (-12 (-4 *1 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))) (-3748 (*1 *2 *3 *1) (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-1334 (*1 *2 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-3 (-112) (-640 *1))) (-4 *1 (-1065 *4 *5 *6 *3)))) (-2069 (*1 *2 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2059 *1)))) (-4 *1 (-1065 *4 *5 *6 *3)))) (-2069 (*1 *2 *3 *1) (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-3764 (*1 *2 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)))) (-3083 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-3 *3 (-640 *1))) (-4 *1 (-1065 *4 *5 *6 *3)))) (-2898 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *1)))) (-4 *1 (-1065 *4 *5 *6 *3)))) (-4335 (*1 *2 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *1)))) (-4 *1 (-1065 *4 *5 *6 *3)))) (-2550 (*1 *2 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)))) (-2550 (*1 *2 *3 *1) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *7)))) (-2550 (*1 *2 *3 *2) (-12 (-5 *2 (-640 *1)) (-5 *3 (-640 *7)) (-4 *1 (-1065 *4 *5 *6 *7)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)))) (-2550 (*1 *2 *3 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)))) (-2175 (*1 *2 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)))) (-2175 (*1 *2 *3 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)))) (-2175 (*1 *2 *3 *1) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *7)))) (-2175 (*1 *2 *3 *2) (-12 (-5 *2 (-640 *1)) (-5 *3 (-640 *7)) (-4 *1 (-1065 *4 *5 *6 *7)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)))) (-3291 (*1 *1 *2 *1) (-12 (-4 *1 (-1065 *3 *4 *5 *2)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-3291 (*1 *1 *2 *1) (-12 (-5 *2 (-640 *6)) (-4 *1 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)))) (-3320 (*1 *2 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)))) (-3320 (*1 *2 *3 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)))) (-3320 (*1 *2 *3 *1) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *7)))) (-3320 (*1 *2 *3 *2) (-12 (-5 *2 (-640 *1)) (-5 *3 (-640 *7)) (-4 *1 (-1065 *4 *5 *6 *7)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)))) (-3319 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *5 *6 *7 *8)))))
-(-13 (-1201 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-15 -1871 ((-112) |t#4| $)) (-15 -2313 ((-112) |t#4| $)) (-15 -4279 ((-112) |t#4| $)) (-15 -1871 ((-112) $)) (-15 -3748 ((-112) |t#4| $)) (-15 -1334 ((-3 (-112) (-640 $)) |t#4| $)) (-15 -2069 ((-640 (-2 (|:| |val| (-112)) (|:| -2059 $))) |t#4| $)) (-15 -2069 ((-112) |t#4| $)) (-15 -3764 ((-640 $) |t#4| $)) (-15 -3083 ((-3 |t#4| (-640 $)) |t#4| |t#4| $)) (-15 -2898 ((-640 (-2 (|:| |val| |t#4|) (|:| -2059 $))) |t#4| |t#4| $)) (-15 -4335 ((-640 (-2 (|:| |val| |t#4|) (|:| -2059 $))) |t#4| $)) (-15 -2550 ((-640 $) |t#4| $)) (-15 -2550 ((-640 $) (-640 |t#4|) $)) (-15 -2550 ((-640 $) (-640 |t#4|) (-640 $))) (-15 -2550 ((-640 $) |t#4| (-640 $))) (-15 -2175 ((-640 $) |t#4| $)) (-15 -2175 ((-640 $) |t#4| (-640 $))) (-15 -2175 ((-640 $) (-640 |t#4|) $)) (-15 -2175 ((-640 $) (-640 |t#4|) (-640 $))) (-15 -3291 ($ |t#4| $)) (-15 -3291 ($ (-640 |t#4|) $)) (-15 -3320 ((-640 $) |t#4| $)) (-15 -3320 ((-640 $) |t#4| (-640 $))) (-15 -3320 ((-640 $) (-640 |t#4|) $)) (-15 -3320 ((-640 $) (-640 |t#4|) (-640 $))) (-15 -3319 ((-640 $) (-640 |t#4|) (-112)))))
+((-3548 (*1 *2 *3 *1) (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-3536 (*1 *2 *3 *1) (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-3525 (*1 *2 *3 *1) (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-3548 (*1 *2 *1) (-12 (-4 *1 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))) (-3514 (*1 *2 *3 *1) (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-3503 (*1 *2 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-3 (-112) (-640 *1))) (-4 *1 (-1065 *4 *5 *6 *3)))) (-3492 (*1 *2 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2058 *1)))) (-4 *1 (-1065 *4 *5 *6 *3)))) (-3492 (*1 *2 *3 *1) (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-3482 (*1 *2 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)))) (-3472 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-3 *3 (-640 *1))) (-4 *1 (-1065 *4 *5 *6 *3)))) (-3461 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *1)))) (-4 *1 (-1065 *4 *5 *6 *3)))) (-1798 (*1 *2 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *1)))) (-4 *1 (-1065 *4 *5 *6 *3)))) (-3834 (*1 *2 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)))) (-3834 (*1 *2 *3 *1) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *7)))) (-3834 (*1 *2 *3 *2) (-12 (-5 *2 (-640 *1)) (-5 *3 (-640 *7)) (-4 *1 (-1065 *4 *5 *6 *7)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)))) (-3834 (*1 *2 *3 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)))) (-3450 (*1 *2 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)))) (-3450 (*1 *2 *3 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)))) (-3450 (*1 *2 *3 *1) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *7)))) (-3450 (*1 *2 *3 *2) (-12 (-5 *2 (-640 *1)) (-5 *3 (-640 *7)) (-4 *1 (-1065 *4 *5 *6 *7)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)))) (-1956 (*1 *1 *2 *1) (-12 (-4 *1 (-1065 *3 *4 *5 *2)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-1956 (*1 *1 *2 *1) (-12 (-5 *2 (-640 *6)) (-4 *1 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)))) (-1751 (*1 *2 *3 *1) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)))) (-1751 (*1 *2 *3 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)))) (-1751 (*1 *2 *3 *1) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *7)))) (-1751 (*1 *2 *3 *2) (-12 (-5 *2 (-640 *1)) (-5 *3 (-640 *7)) (-4 *1 (-1065 *4 *5 *6 *7)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)))) (-2119 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1065 *5 *6 *7 *8)))))
+(-13 (-1201 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-15 -3548 ((-112) |t#4| $)) (-15 -3536 ((-112) |t#4| $)) (-15 -3525 ((-112) |t#4| $)) (-15 -3548 ((-112) $)) (-15 -3514 ((-112) |t#4| $)) (-15 -3503 ((-3 (-112) (-640 $)) |t#4| $)) (-15 -3492 ((-640 (-2 (|:| |val| (-112)) (|:| -2058 $))) |t#4| $)) (-15 -3492 ((-112) |t#4| $)) (-15 -3482 ((-640 $) |t#4| $)) (-15 -3472 ((-3 |t#4| (-640 $)) |t#4| |t#4| $)) (-15 -3461 ((-640 (-2 (|:| |val| |t#4|) (|:| -2058 $))) |t#4| |t#4| $)) (-15 -1798 ((-640 (-2 (|:| |val| |t#4|) (|:| -2058 $))) |t#4| $)) (-15 -3834 ((-640 $) |t#4| $)) (-15 -3834 ((-640 $) (-640 |t#4|) $)) (-15 -3834 ((-640 $) (-640 |t#4|) (-640 $))) (-15 -3834 ((-640 $) |t#4| (-640 $))) (-15 -3450 ((-640 $) |t#4| $)) (-15 -3450 ((-640 $) |t#4| (-640 $))) (-15 -3450 ((-640 $) (-640 |t#4|) $)) (-15 -3450 ((-640 $) (-640 |t#4|) (-640 $))) (-15 -1956 ($ |t#4| $)) (-15 -1956 ($ (-640 |t#4|) $)) (-15 -1751 ((-640 $) |t#4| $)) (-15 -1751 ((-640 $) |t#4| (-640 $))) (-15 -1751 ((-640 $) (-640 |t#4|) $)) (-15 -1751 ((-640 $) (-640 |t#4|) (-640 $))) (-15 -2119 ((-640 $) (-640 |t#4|) (-112)))))
(((-34) . T) ((-102) . T) ((-610 (-640 |#4|)) . T) ((-610 (-858)) . T) ((-151 |#4|) . T) ((-611 (-536)) |has| |#4| (-611 (-536))) ((-309 |#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))) ((-489 |#4|) . T) ((-514 |#4| |#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))) ((-972 |#1| |#2| |#3| |#4|) . T) ((-1093) . T) ((-1201 |#1| |#2| |#3| |#4|) . T) ((-1208) . T))
-((-2572 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#5|) 81)) (-2766 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5|) 112)) (-1452 (((-640 |#5|) |#4| |#5|) 70)) (-3753 (((-640 (-2 (|:| |val| (-112)) (|:| -2059 |#5|))) |#4| |#5|) 46) (((-112) |#4| |#5|) 53)) (-3117 (((-1262)) 37)) (-2279 (((-1262)) 26)) (-3688 (((-1262) (-1151) (-1151) (-1151)) 33)) (-2574 (((-1262) (-1151) (-1151) (-1151)) 22)) (-2208 (((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) |#4| |#4| |#5|) 95)) (-1321 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) |#3| (-112)) 106) (((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5| (-112) (-112)) 50)) (-1684 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5|) 101)))
-(((-1066 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2574 ((-1262) (-1151) (-1151) (-1151))) (-15 -2279 ((-1262))) (-15 -3688 ((-1262) (-1151) (-1151) (-1151))) (-15 -3117 ((-1262))) (-15 -2208 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) |#4| |#4| |#5|)) (-15 -1321 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -1321 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) |#3| (-112))) (-15 -1684 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5|)) (-15 -2766 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5|)) (-15 -3753 ((-112) |#4| |#5|)) (-15 -3753 ((-640 (-2 (|:| |val| (-112)) (|:| -2059 |#5|))) |#4| |#5|)) (-15 -1452 ((-640 |#5|) |#4| |#5|)) (-15 -2572 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#5|))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1065 |#1| |#2| |#3| |#4|)) (T -1066))
-((-2572 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4)))) (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-1452 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4)) (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3753 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2059 *4)))) (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3753 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-2766 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4)))) (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-1684 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4)))) (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-1321 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2059 *9)))) (-5 *5 (-112)) (-4 *8 (-1059 *6 *7 *4)) (-4 *9 (-1065 *6 *7 *4 *8)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *4 (-846)) (-5 *2 (-640 (-2 (|:| |val| *8) (|:| -2059 *9)))) (-5 *1 (-1066 *6 *7 *4 *8 *9)))) (-1321 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *3 (-1059 *6 *7 *8)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4)))) (-5 *1 (-1066 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3)))) (-2208 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4)))) (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3117 (*1 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262)) (-5 *1 (-1066 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))) (-3688 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262)) (-5 *1 (-1066 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-2279 (*1 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262)) (-5 *1 (-1066 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))) (-2574 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262)) (-5 *1 (-1066 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2574 ((-1262) (-1151) (-1151) (-1151))) (-15 -2279 ((-1262))) (-15 -3688 ((-1262) (-1151) (-1151) (-1151))) (-15 -3117 ((-1262))) (-15 -2208 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) |#4| |#4| |#5|)) (-15 -1321 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -1321 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) |#3| (-112))) (-15 -1684 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5|)) (-15 -2766 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5|)) (-15 -3753 ((-112) |#4| |#5|)) (-15 -3753 ((-640 (-2 (|:| |val| (-112)) (|:| -2059 |#5|))) |#4| |#5|)) (-15 -1452 ((-640 |#5|) |#4| |#5|)) (-15 -2572 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#5|)))
-((-1677 (((-112) $ $) NIL)) (-4183 (((-1207) $) 13)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3685 (((-1128) $) 10)) (-1693 (((-858) $) 22) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-1067) (-13 (-1076) (-10 -8 (-15 -3685 ((-1128) $)) (-15 -4183 ((-1207) $))))) (T -1067))
-((-3685 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1067)))) (-4183 (*1 *2 *1) (-12 (-5 *2 (-1207)) (-5 *1 (-1067)))))
-(-13 (-1076) (-10 -8 (-15 -3685 ((-1128) $)) (-15 -4183 ((-1207) $))))
-((-1677 (((-112) $ $) NIL)) (-3348 (((-1169) $) 8)) (-3573 (((-1151) $) 16)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 11)) (-1718 (((-112) $ $) 13)))
-(((-1068 |#1|) (-13 (-1093) (-10 -8 (-15 -3348 ((-1169) $)))) (-1169)) (T -1068))
-((-3348 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-1068 *3)) (-14 *3 *2))))
-(-13 (-1093) (-10 -8 (-15 -3348 ((-1169) $))))
-((-1677 (((-112) $ $) NIL)) (-1959 (($ $ (-640 (-1169)) (-1 (-112) (-640 |#3|))) 33)) (-3709 (($ |#3| |#3|) 22) (($ |#3| |#3| (-640 (-1169))) 20)) (-2351 ((|#3| $) 13)) (-2131 (((-3 (-294 |#3|) "failed") $) 58)) (-2058 (((-294 |#3|) $) NIL)) (-3530 (((-640 (-1169)) $) 16)) (-3959 (((-888 |#1|) $) 11)) (-2340 ((|#3| $) 12)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2309 ((|#3| $ |#3|) 27) ((|#3| $ |#3| (-917)) 39)) (-1693 (((-858) $) 86) (($ (-294 |#3|)) 21)) (-1718 (((-112) $ $) 36)))
-(((-1069 |#1| |#2| |#3|) (-13 (-1093) (-286 |#3| |#3|) (-1034 (-294 |#3|)) (-10 -8 (-15 -3709 ($ |#3| |#3|)) (-15 -3709 ($ |#3| |#3| (-640 (-1169)))) (-15 -1959 ($ $ (-640 (-1169)) (-1 (-112) (-640 |#3|)))) (-15 -3959 ((-888 |#1|) $)) (-15 -2340 (|#3| $)) (-15 -2351 (|#3| $)) (-15 -2309 (|#3| $ |#3| (-917))) (-15 -3530 ((-640 (-1169)) $)))) (-1093) (-13 (-1045) (-882 |#1|) (-846) (-611 (-888 |#1|))) (-13 (-430 |#2|) (-882 |#1|) (-611 (-888 |#1|)))) (T -1069))
-((-3709 (*1 *1 *2 *2) (-12 (-4 *3 (-1093)) (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3)))) (-5 *1 (-1069 *3 *4 *2)) (-4 *2 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))))) (-3709 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-640 (-1169))) (-4 *4 (-1093)) (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4)))) (-5 *1 (-1069 *4 *5 *2)) (-4 *2 (-13 (-430 *5) (-882 *4) (-611 (-888 *4)))))) (-1959 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-1 (-112) (-640 *6))) (-4 *6 (-13 (-430 *5) (-882 *4) (-611 (-888 *4)))) (-4 *4 (-1093)) (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4)))) (-5 *1 (-1069 *4 *5 *6)))) (-3959 (*1 *2 *1) (-12 (-4 *3 (-1093)) (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 *2))) (-5 *2 (-888 *3)) (-5 *1 (-1069 *3 *4 *5)) (-4 *5 (-13 (-430 *4) (-882 *3) (-611 *2))))) (-2340 (*1 *2 *1) (-12 (-4 *3 (-1093)) (-4 *2 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))) (-5 *1 (-1069 *3 *4 *2)) (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3)))))) (-2351 (*1 *2 *1) (-12 (-4 *3 (-1093)) (-4 *2 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))) (-5 *1 (-1069 *3 *4 *2)) (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3)))))) (-2309 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-917)) (-4 *4 (-1093)) (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4)))) (-5 *1 (-1069 *4 *5 *2)) (-4 *2 (-13 (-430 *5) (-882 *4) (-611 (-888 *4)))))) (-3530 (*1 *2 *1) (-12 (-4 *3 (-1093)) (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3)))) (-5 *2 (-640 (-1169))) (-5 *1 (-1069 *3 *4 *5)) (-4 *5 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))))))
-(-13 (-1093) (-286 |#3| |#3|) (-1034 (-294 |#3|)) (-10 -8 (-15 -3709 ($ |#3| |#3|)) (-15 -3709 ($ |#3| |#3| (-640 (-1169)))) (-15 -1959 ($ $ (-640 (-1169)) (-1 (-112) (-640 |#3|)))) (-15 -3959 ((-888 |#1|) $)) (-15 -2340 (|#3| $)) (-15 -2351 (|#3| $)) (-15 -2309 (|#3| $ |#3| (-917))) (-15 -3530 ((-640 (-1169)) $))))
-((-1677 (((-112) $ $) NIL)) (-1927 (($ (-640 (-1069 |#1| |#2| |#3|))) 13)) (-2728 (((-640 (-1069 |#1| |#2| |#3|)) $) 20)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2309 ((|#3| $ |#3|) 23) ((|#3| $ |#3| (-917)) 26)) (-1693 (((-858) $) 16)) (-1718 (((-112) $ $) 19)))
-(((-1070 |#1| |#2| |#3|) (-13 (-1093) (-286 |#3| |#3|) (-10 -8 (-15 -1927 ($ (-640 (-1069 |#1| |#2| |#3|)))) (-15 -2728 ((-640 (-1069 |#1| |#2| |#3|)) $)) (-15 -2309 (|#3| $ |#3| (-917))))) (-1093) (-13 (-1045) (-882 |#1|) (-846) (-611 (-888 |#1|))) (-13 (-430 |#2|) (-882 |#1|) (-611 (-888 |#1|)))) (T -1070))
-((-1927 (*1 *1 *2) (-12 (-5 *2 (-640 (-1069 *3 *4 *5))) (-4 *3 (-1093)) (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3)))) (-4 *5 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))) (-5 *1 (-1070 *3 *4 *5)))) (-2728 (*1 *2 *1) (-12 (-4 *3 (-1093)) (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3)))) (-5 *2 (-640 (-1069 *3 *4 *5))) (-5 *1 (-1070 *3 *4 *5)) (-4 *5 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))))) (-2309 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-917)) (-4 *4 (-1093)) (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4)))) (-5 *1 (-1070 *4 *5 *2)) (-4 *2 (-13 (-430 *5) (-882 *4) (-611 (-888 *4)))))))
-(-13 (-1093) (-286 |#3| |#3|) (-10 -8 (-15 -1927 ($ (-640 (-1069 |#1| |#2| |#3|)))) (-15 -2728 ((-640 (-1069 |#1| |#2| |#3|)) $)) (-15 -2309 (|#3| $ |#3| (-917)))))
-((-2837 (((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112)) 74) (((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|))) 76) (((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112)) 75)))
-(((-1071 |#1| |#2|) (-10 -7 (-15 -2837 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112))) (-15 -2837 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)))) (-15 -2837 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112)))) (-13 (-307) (-147)) (-640 (-1169))) (T -1071))
-((-2837 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-5 *2 (-640 (-2 (|:| -1602 (-1165 *5)) (|:| -1880 (-640 (-948 *5)))))) (-5 *1 (-1071 *5 *6)) (-5 *3 (-640 (-948 *5))) (-14 *6 (-640 (-1169))))) (-2837 (*1 *2 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-5 *2 (-640 (-2 (|:| -1602 (-1165 *4)) (|:| -1880 (-640 (-948 *4)))))) (-5 *1 (-1071 *4 *5)) (-5 *3 (-640 (-948 *4))) (-14 *5 (-640 (-1169))))) (-2837 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-5 *2 (-640 (-2 (|:| -1602 (-1165 *5)) (|:| -1880 (-640 (-948 *5)))))) (-5 *1 (-1071 *5 *6)) (-5 *3 (-640 (-948 *5))) (-14 *6 (-640 (-1169))))))
-(-10 -7 (-15 -2837 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112))) (-15 -2837 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)))) (-15 -2837 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112))))
-((-2174 (((-418 |#3|) |#3|) 18)))
-(((-1072 |#1| |#2| |#3|) (-10 -7 (-15 -2174 ((-418 |#3|) |#3|))) (-1233 (-407 (-563))) (-13 (-363) (-147) (-720 (-407 (-563)) |#1|)) (-1233 |#2|)) (T -1072))
-((-2174 (*1 *2 *3) (-12 (-4 *4 (-1233 (-407 (-563)))) (-4 *5 (-13 (-363) (-147) (-720 (-407 (-563)) *4))) (-5 *2 (-418 *3)) (-5 *1 (-1072 *4 *5 *3)) (-4 *3 (-1233 *5)))))
-(-10 -7 (-15 -2174 ((-418 |#3|) |#3|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 126)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-363)))) (-4223 (($ $) NIL (|has| |#1| (-363)))) (-3156 (((-112) $) NIL (|has| |#1| (-363)))) (-3561 (((-684 |#1|) (-1257 $)) NIL) (((-684 |#1|)) 115)) (-1733 ((|#1| $) 119)) (-2752 (((-1181 (-917) (-767)) (-563)) NIL (|has| |#1| (-349)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL (|has| |#1| (-363)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-363)))) (-1919 (((-112) $ $) NIL (|has| |#1| (-363)))) (-3749 (((-767)) 40 (|has| |#1| (-368)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2058 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-3937 (($ (-1257 |#1|) (-1257 $)) NIL) (($ (-1257 |#1|)) 43)) (-3711 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-349)))) (-3090 (($ $ $) NIL (|has| |#1| (-363)))) (-3914 (((-684 |#1|) $ (-1257 $)) NIL) (((-684 |#1|) $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 106) (((-684 |#1|) (-684 $)) 101)) (-2444 (($ |#2|) 61) (((-3 $ "failed") (-407 |#2|)) NIL (|has| |#1| (-363)))) (-3400 (((-3 $ "failed") $) NIL)) (-2522 (((-917)) 77)) (-1691 (($) 44 (|has| |#1| (-368)))) (-3050 (($ $ $) NIL (|has| |#1| (-363)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-1571 (($) NIL (|has| |#1| (-349)))) (-2366 (((-112) $) NIL (|has| |#1| (-349)))) (-1637 (($ $ (-767)) NIL (|has| |#1| (-349))) (($ $) NIL (|has| |#1| (-349)))) (-2468 (((-112) $) NIL (|has| |#1| (-363)))) (-3254 (((-917) $) NIL (|has| |#1| (-349))) (((-829 (-917)) $) NIL (|has| |#1| (-349)))) (-3827 (((-112) $) NIL)) (-3793 ((|#1| $) NIL)) (-2408 (((-3 $ "failed") $) NIL (|has| |#1| (-349)))) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3941 ((|#2| $) 84 (|has| |#1| (-363)))) (-1476 (((-917) $) 130 (|has| |#1| (-368)))) (-2433 ((|#2| $) 58)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL (|has| |#1| (-363)))) (-2523 (($) NIL (|has| |#1| (-349)) CONST)) (-2555 (($ (-917)) 125 (|has| |#1| (-368)))) (-1694 (((-1113) $) NIL)) (-4333 (($) 121)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2727 (((-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))) NIL (|has| |#1| (-349)))) (-2174 (((-418 $) $) NIL (|has| |#1| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3008 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-2628 (((-767) $) NIL (|has| |#1| (-363)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-2315 ((|#1| (-1257 $)) NIL) ((|#1|) 109)) (-1423 (((-767) $) NIL (|has| |#1| (-349))) (((-3 (-767) "failed") $ $) NIL (|has| |#1| (-349)))) (-4202 (($ $) NIL (-4032 (-12 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-767)) NIL (-4032 (-12 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-1 |#1| |#1|) (-767)) NIL (|has| |#1| (-363))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-363)))) (-3974 (((-684 |#1|) (-1257 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-363)))) (-3390 ((|#2|) 73)) (-4284 (($) NIL (|has| |#1| (-349)))) (-1880 (((-1257 |#1|) $ (-1257 $)) 89) (((-684 |#1|) (-1257 $) (-1257 $)) NIL) (((-1257 |#1|) $) 71) (((-684 |#1|) (-1257 $)) 85)) (-2220 (((-1257 |#1|) $) NIL) (($ (-1257 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| |#1| (-349)))) (-1693 (((-858) $) 57) (($ (-563)) 53) (($ |#1|) 54) (($ $) NIL (|has| |#1| (-363))) (($ (-407 (-563))) NIL (-4032 (|has| |#1| (-363)) (|has| |#1| (-1034 (-407 (-563))))))) (-2779 (($ $) NIL (|has| |#1| (-349))) (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3421 ((|#2| $) 82)) (-1675 (((-767)) 75)) (-4315 (((-1257 $)) 81)) (-2126 (((-112) $ $) NIL (|has| |#1| (-363)))) (-2241 (($) 30 T CONST)) (-2254 (($) 19 T CONST)) (-3209 (($ $) NIL (-4032 (-12 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-767)) NIL (-4032 (-12 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-1 |#1| |#1|) (-767)) NIL (|has| |#1| (-363))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-363)))) (-1718 (((-112) $ $) 63)) (-1837 (($ $ $) NIL (|has| |#1| (-363)))) (-1826 (($ $) 67) (($ $ $) NIL)) (-1814 (($ $ $) 65)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 51) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 48) (($ (-407 (-563)) $) NIL (|has| |#1| (-363))) (($ $ (-407 (-563))) NIL (|has| |#1| (-363)))))
+((-3630 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#5|) 80)) (-3596 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5|) 111)) (-3618 (((-640 |#5|) |#4| |#5|) 70)) (-3607 (((-640 (-2 (|:| |val| (-112)) (|:| -2058 |#5|))) |#4| |#5|) 46) (((-112) |#4| |#5|) 53)) (-3000 (((-1262)) 37)) (-2980 (((-1262)) 26)) (-2989 (((-1262) (-1151) (-1151) (-1151)) 33)) (-2971 (((-1262) (-1151) (-1151) (-1151)) 22)) (-3561 (((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) |#4| |#4| |#5|) 94)) (-3574 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) |#3| (-112)) 105) (((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5| (-112) (-112)) 50)) (-3585 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5|) 100)))
+(((-1066 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2971 ((-1262) (-1151) (-1151) (-1151))) (-15 -2980 ((-1262))) (-15 -2989 ((-1262) (-1151) (-1151) (-1151))) (-15 -3000 ((-1262))) (-15 -3561 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) |#4| |#4| |#5|)) (-15 -3574 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3574 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) |#3| (-112))) (-15 -3585 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5|)) (-15 -3596 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5|)) (-15 -3607 ((-112) |#4| |#5|)) (-15 -3607 ((-640 (-2 (|:| |val| (-112)) (|:| -2058 |#5|))) |#4| |#5|)) (-15 -3618 ((-640 |#5|) |#4| |#5|)) (-15 -3630 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#5|))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1065 |#1| |#2| |#3| |#4|)) (T -1066))
+((-3630 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4)))) (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3618 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4)) (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3607 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2058 *4)))) (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3607 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3596 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4)))) (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3585 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4)))) (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3574 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2058 *9)))) (-5 *5 (-112)) (-4 *8 (-1059 *6 *7 *4)) (-4 *9 (-1065 *6 *7 *4 *8)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *4 (-846)) (-5 *2 (-640 (-2 (|:| |val| *8) (|:| -2058 *9)))) (-5 *1 (-1066 *6 *7 *4 *8 *9)))) (-3574 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *3 (-1059 *6 *7 *8)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4)))) (-5 *1 (-1066 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3)))) (-3561 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4)))) (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3000 (*1 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262)) (-5 *1 (-1066 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))) (-2989 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262)) (-5 *1 (-1066 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-2980 (*1 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262)) (-5 *1 (-1066 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))) (-2971 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262)) (-5 *1 (-1066 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2971 ((-1262) (-1151) (-1151) (-1151))) (-15 -2980 ((-1262))) (-15 -2989 ((-1262) (-1151) (-1151) (-1151))) (-15 -3000 ((-1262))) (-15 -3561 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) |#4| |#4| |#5|)) (-15 -3574 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3574 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) |#3| (-112))) (-15 -3585 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5|)) (-15 -3596 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5|)) (-15 -3607 ((-112) |#4| |#5|)) (-15 -3607 ((-640 (-2 (|:| |val| (-112)) (|:| -2058 |#5|))) |#4| |#5|)) (-15 -3618 ((-640 |#5|) |#4| |#5|)) (-15 -3630 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#5|)))
+((-1677 (((-112) $ $) NIL)) (-4184 (((-1207) $) 13)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3687 (((-1128) $) 10)) (-1692 (((-858) $) 22) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-1067) (-13 (-1076) (-10 -8 (-15 -3687 ((-1128) $)) (-15 -4184 ((-1207) $))))) (T -1067))
+((-3687 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1067)))) (-4184 (*1 *2 *1) (-12 (-5 *2 (-1207)) (-5 *1 (-1067)))))
+(-13 (-1076) (-10 -8 (-15 -3687 ((-1128) $)) (-15 -4184 ((-1207) $))))
+((-1677 (((-112) $ $) NIL)) (-3352 (((-1169) $) 8)) (-3854 (((-1151) $) 16)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 11)) (-1718 (((-112) $ $) 13)))
+(((-1068 |#1|) (-13 (-1093) (-10 -8 (-15 -3352 ((-1169) $)))) (-1169)) (T -1068))
+((-3352 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-1068 *3)) (-14 *3 *2))))
+(-13 (-1093) (-10 -8 (-15 -3352 ((-1169) $))))
+((-1677 (((-112) $ $) NIL)) (-1958 (($ $ (-640 (-1169)) (-1 (-112) (-640 |#3|))) 33)) (-3710 (($ |#3| |#3|) 22) (($ |#3| |#3| (-640 (-1169))) 20)) (-2350 ((|#3| $) 13)) (-2130 (((-3 (-294 |#3|) "failed") $) 58)) (-2057 (((-294 |#3|) $) NIL)) (-3642 (((-640 (-1169)) $) 16)) (-3960 (((-888 |#1|) $) 11)) (-2339 ((|#3| $) 12)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2308 ((|#3| $ |#3|) 27) ((|#3| $ |#3| (-917)) 39)) (-1692 (((-858) $) 86) (($ (-294 |#3|)) 21)) (-1718 (((-112) $ $) 36)))
+(((-1069 |#1| |#2| |#3|) (-13 (-1093) (-286 |#3| |#3|) (-1034 (-294 |#3|)) (-10 -8 (-15 -3710 ($ |#3| |#3|)) (-15 -3710 ($ |#3| |#3| (-640 (-1169)))) (-15 -1958 ($ $ (-640 (-1169)) (-1 (-112) (-640 |#3|)))) (-15 -3960 ((-888 |#1|) $)) (-15 -2339 (|#3| $)) (-15 -2350 (|#3| $)) (-15 -2308 (|#3| $ |#3| (-917))) (-15 -3642 ((-640 (-1169)) $)))) (-1093) (-13 (-1045) (-882 |#1|) (-846) (-611 (-888 |#1|))) (-13 (-430 |#2|) (-882 |#1|) (-611 (-888 |#1|)))) (T -1069))
+((-3710 (*1 *1 *2 *2) (-12 (-4 *3 (-1093)) (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3)))) (-5 *1 (-1069 *3 *4 *2)) (-4 *2 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))))) (-3710 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-640 (-1169))) (-4 *4 (-1093)) (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4)))) (-5 *1 (-1069 *4 *5 *2)) (-4 *2 (-13 (-430 *5) (-882 *4) (-611 (-888 *4)))))) (-1958 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-1 (-112) (-640 *6))) (-4 *6 (-13 (-430 *5) (-882 *4) (-611 (-888 *4)))) (-4 *4 (-1093)) (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4)))) (-5 *1 (-1069 *4 *5 *6)))) (-3960 (*1 *2 *1) (-12 (-4 *3 (-1093)) (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 *2))) (-5 *2 (-888 *3)) (-5 *1 (-1069 *3 *4 *5)) (-4 *5 (-13 (-430 *4) (-882 *3) (-611 *2))))) (-2339 (*1 *2 *1) (-12 (-4 *3 (-1093)) (-4 *2 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))) (-5 *1 (-1069 *3 *4 *2)) (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3)))))) (-2350 (*1 *2 *1) (-12 (-4 *3 (-1093)) (-4 *2 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))) (-5 *1 (-1069 *3 *4 *2)) (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3)))))) (-2308 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-917)) (-4 *4 (-1093)) (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4)))) (-5 *1 (-1069 *4 *5 *2)) (-4 *2 (-13 (-430 *5) (-882 *4) (-611 (-888 *4)))))) (-3642 (*1 *2 *1) (-12 (-4 *3 (-1093)) (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3)))) (-5 *2 (-640 (-1169))) (-5 *1 (-1069 *3 *4 *5)) (-4 *5 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))))))
+(-13 (-1093) (-286 |#3| |#3|) (-1034 (-294 |#3|)) (-10 -8 (-15 -3710 ($ |#3| |#3|)) (-15 -3710 ($ |#3| |#3| (-640 (-1169)))) (-15 -1958 ($ $ (-640 (-1169)) (-1 (-112) (-640 |#3|)))) (-15 -3960 ((-888 |#1|) $)) (-15 -2339 (|#3| $)) (-15 -2350 (|#3| $)) (-15 -2308 (|#3| $ |#3| (-917))) (-15 -3642 ((-640 (-1169)) $))))
+((-1677 (((-112) $ $) NIL)) (-1926 (($ (-640 (-1069 |#1| |#2| |#3|))) 13)) (-2727 (((-640 (-1069 |#1| |#2| |#3|)) $) 20)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2308 ((|#3| $ |#3|) 23) ((|#3| $ |#3| (-917)) 26)) (-1692 (((-858) $) 16)) (-1718 (((-112) $ $) 19)))
+(((-1070 |#1| |#2| |#3|) (-13 (-1093) (-286 |#3| |#3|) (-10 -8 (-15 -1926 ($ (-640 (-1069 |#1| |#2| |#3|)))) (-15 -2727 ((-640 (-1069 |#1| |#2| |#3|)) $)) (-15 -2308 (|#3| $ |#3| (-917))))) (-1093) (-13 (-1045) (-882 |#1|) (-846) (-611 (-888 |#1|))) (-13 (-430 |#2|) (-882 |#1|) (-611 (-888 |#1|)))) (T -1070))
+((-1926 (*1 *1 *2) (-12 (-5 *2 (-640 (-1069 *3 *4 *5))) (-4 *3 (-1093)) (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3)))) (-4 *5 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))) (-5 *1 (-1070 *3 *4 *5)))) (-2727 (*1 *2 *1) (-12 (-4 *3 (-1093)) (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3)))) (-5 *2 (-640 (-1069 *3 *4 *5))) (-5 *1 (-1070 *3 *4 *5)) (-4 *5 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))))) (-2308 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-917)) (-4 *4 (-1093)) (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4)))) (-5 *1 (-1070 *4 *5 *2)) (-4 *2 (-13 (-430 *5) (-882 *4) (-611 (-888 *4)))))))
+(-13 (-1093) (-286 |#3| |#3|) (-10 -8 (-15 -1926 ($ (-640 (-1069 |#1| |#2| |#3|)))) (-15 -2727 ((-640 (-1069 |#1| |#2| |#3|)) $)) (-15 -2308 (|#3| $ |#3| (-917)))))
+((-3653 (((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112)) 74) (((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|))) 76) (((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112)) 75)))
+(((-1071 |#1| |#2|) (-10 -7 (-15 -3653 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112))) (-15 -3653 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)))) (-15 -3653 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112)))) (-13 (-307) (-147)) (-640 (-1169))) (T -1071))
+((-3653 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-5 *2 (-640 (-2 (|:| -4224 (-1165 *5)) (|:| -3759 (-640 (-948 *5)))))) (-5 *1 (-1071 *5 *6)) (-5 *3 (-640 (-948 *5))) (-14 *6 (-640 (-1169))))) (-3653 (*1 *2 *3) (-12 (-4 *4 (-13 (-307) (-147))) (-5 *2 (-640 (-2 (|:| -4224 (-1165 *4)) (|:| -3759 (-640 (-948 *4)))))) (-5 *1 (-1071 *4 *5)) (-5 *3 (-640 (-948 *4))) (-14 *5 (-640 (-1169))))) (-3653 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-5 *2 (-640 (-2 (|:| -4224 (-1165 *5)) (|:| -3759 (-640 (-948 *5)))))) (-5 *1 (-1071 *5 *6)) (-5 *3 (-640 (-948 *5))) (-14 *6 (-640 (-1169))))))
+(-10 -7 (-15 -3653 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112))) (-15 -3653 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)))) (-15 -3653 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112))))
+((-2173 (((-418 |#3|) |#3|) 18)))
+(((-1072 |#1| |#2| |#3|) (-10 -7 (-15 -2173 ((-418 |#3|) |#3|))) (-1233 (-407 (-563))) (-13 (-363) (-147) (-720 (-407 (-563)) |#1|)) (-1233 |#2|)) (T -1072))
+((-2173 (*1 *2 *3) (-12 (-4 *4 (-1233 (-407 (-563)))) (-4 *5 (-13 (-363) (-147) (-720 (-407 (-563)) *4))) (-5 *2 (-418 *3)) (-5 *1 (-1072 *4 *5 *3)) (-4 *3 (-1233 *5)))))
+(-10 -7 (-15 -2173 ((-418 |#3|) |#3|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 126)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-363)))) (-3231 (($ $) NIL (|has| |#1| (-363)))) (-3211 (((-112) $) NIL (|has| |#1| (-363)))) (-3340 (((-684 |#1|) (-1257 $)) NIL) (((-684 |#1|)) 115)) (-1731 ((|#1| $) 119)) (-1597 (((-1181 (-917) (-767)) (-563)) NIL (|has| |#1| (-349)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL (|has| |#1| (-363)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2003 (((-112) $ $) NIL (|has| |#1| (-363)))) (-3750 (((-767)) 40 (|has| |#1| (-368)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2057 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-3458 (($ (-1257 |#1|) (-1257 $)) NIL) (($ (-1257 |#1|)) 43)) (-1573 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-349)))) (-3094 (($ $ $) NIL (|has| |#1| (-363)))) (-3330 (((-684 |#1|) $ (-1257 $)) NIL) (((-684 |#1|) $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 106) (((-684 |#1|) (-684 $)) 101)) (-2444 (($ |#2|) 61) (((-3 $ "failed") (-407 |#2|)) NIL (|has| |#1| (-363)))) (-3951 (((-3 $ "failed") $) NIL)) (-2521 (((-917)) 77)) (-1690 (($) 44 (|has| |#1| (-368)))) (-3054 (($ $ $) NIL (|has| |#1| (-363)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-4036 (($) NIL (|has| |#1| (-349)))) (-1656 (((-112) $) NIL (|has| |#1| (-349)))) (-3188 (($ $ (-767)) NIL (|has| |#1| (-349))) (($ $) NIL (|has| |#1| (-349)))) (-2560 (((-112) $) NIL (|has| |#1| (-363)))) (-1775 (((-917) $) NIL (|has| |#1| (-349))) (((-829 (-917)) $) NIL (|has| |#1| (-349)))) (-3401 (((-112) $) NIL)) (-3975 ((|#1| $) NIL)) (-1983 (((-3 $ "failed") $) NIL (|has| |#1| (-349)))) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-4035 ((|#2| $) 84 (|has| |#1| (-363)))) (-3990 (((-917) $) 130 (|has| |#1| (-368)))) (-2433 ((|#2| $) 58)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL (|has| |#1| (-363)))) (-2522 (($) NIL (|has| |#1| (-349)) CONST)) (-2552 (($ (-917)) 125 (|has| |#1| (-368)))) (-1693 (((-1113) $) NIL)) (-4334 (($) 121)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-1608 (((-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))) NIL (|has| |#1| (-349)))) (-2173 (((-418 $) $) NIL (|has| |#1| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-3012 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-1993 (((-767) $) NIL (|has| |#1| (-363)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-1623 ((|#1| (-1257 $)) NIL) ((|#1|) 109)) (-3196 (((-767) $) NIL (|has| |#1| (-349))) (((-3 (-767) "failed") $ $) NIL (|has| |#1| (-349)))) (-4203 (($ $) NIL (-4034 (-12 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-767)) NIL (-4034 (-12 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-1 |#1| |#1|) (-767)) NIL (|has| |#1| (-363))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-363)))) (-3388 (((-684 |#1|) (-1257 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-363)))) (-3402 ((|#2|) 73)) (-1586 (($) NIL (|has| |#1| (-349)))) (-3759 (((-1257 |#1|) $ (-1257 $)) 89) (((-684 |#1|) (-1257 $) (-1257 $)) NIL) (((-1257 |#1|) $) 71) (((-684 |#1|) (-1257 $)) 85)) (-2219 (((-1257 |#1|) $) NIL) (($ (-1257 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (|has| |#1| (-349)))) (-1692 (((-858) $) 57) (($ (-563)) 53) (($ |#1|) 54) (($ $) NIL (|has| |#1| (-363))) (($ (-407 (-563))) NIL (-4034 (|has| |#1| (-363)) (|has| |#1| (-1034 (-407 (-563))))))) (-2047 (($ $) NIL (|has| |#1| (-349))) (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1892 ((|#2| $) 82)) (-3914 (((-767)) 75)) (-4013 (((-1257 $)) 81)) (-3223 (((-112) $ $) NIL (|has| |#1| (-363)))) (-2239 (($) 30 T CONST)) (-2253 (($) 19 T CONST)) (-3213 (($ $) NIL (-4034 (-12 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-767)) NIL (-4034 (-12 (|has| |#1| (-233)) (|has| |#1| (-363))) (|has| |#1| (-349)))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-363)) (|has| |#1| (-896 (-1169))))) (($ $ (-1 |#1| |#1|) (-767)) NIL (|has| |#1| (-363))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-363)))) (-1718 (((-112) $ $) 63)) (-1836 (($ $ $) NIL (|has| |#1| (-363)))) (-1825 (($ $) 67) (($ $ $) NIL)) (-1813 (($ $ $) 65)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 51) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 48) (($ (-407 (-563)) $) NIL (|has| |#1| (-363))) (($ $ (-407 (-563))) NIL (|has| |#1| (-363)))))
(((-1073 |#1| |#2| |#3|) (-720 |#1| |#2|) (-172) (-1233 |#1|) |#2|) (T -1073))
NIL
(-720 |#1| |#2|)
-((-2174 (((-418 |#3|) |#3|) 19)))
-(((-1074 |#1| |#2| |#3|) (-10 -7 (-15 -2174 ((-418 |#3|) |#3|))) (-1233 (-407 (-948 (-563)))) (-13 (-363) (-147) (-720 (-407 (-948 (-563))) |#1|)) (-1233 |#2|)) (T -1074))
-((-2174 (*1 *2 *3) (-12 (-4 *4 (-1233 (-407 (-948 (-563))))) (-4 *5 (-13 (-363) (-147) (-720 (-407 (-948 (-563))) *4))) (-5 *2 (-418 *3)) (-5 *1 (-1074 *4 *5 *3)) (-4 *3 (-1233 *5)))))
-(-10 -7 (-15 -2174 ((-418 |#3|) |#3|)))
-((-1677 (((-112) $ $) NIL)) (-3084 (($ $ $) 14)) (-1777 (($ $ $) 15)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1507 (($) 6)) (-2220 (((-1169) $) 18)) (-1693 (((-858) $) 12)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 13)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 8)))
-(((-1075) (-13 (-846) (-611 (-1169)) (-10 -8 (-15 -1507 ($))))) (T -1075))
-((-1507 (*1 *1) (-5 *1 (-1075))))
-(-13 (-846) (-611 (-1169)) (-10 -8 (-15 -1507 ($))))
-((-1677 (((-112) $ $) 7)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ (-1174)) 16) (((-1174) $) 15)) (-1718 (((-112) $ $) 6)))
+((-2173 (((-418 |#3|) |#3|) 19)))
+(((-1074 |#1| |#2| |#3|) (-10 -7 (-15 -2173 ((-418 |#3|) |#3|))) (-1233 (-407 (-948 (-563)))) (-13 (-363) (-147) (-720 (-407 (-948 (-563))) |#1|)) (-1233 |#2|)) (T -1074))
+((-2173 (*1 *2 *3) (-12 (-4 *4 (-1233 (-407 (-948 (-563))))) (-4 *5 (-13 (-363) (-147) (-720 (-407 (-948 (-563))) *4))) (-5 *2 (-418 *3)) (-5 *1 (-1074 *4 *5 *3)) (-4 *3 (-1233 *5)))))
+(-10 -7 (-15 -2173 ((-418 |#3|) |#3|)))
+((-1677 (((-112) $ $) NIL)) (-3088 (($ $ $) 14)) (-1776 (($ $ $) 15)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3664 (($) 6)) (-2219 (((-1169) $) 18)) (-1692 (((-858) $) 12)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 13)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 8)))
+(((-1075) (-13 (-846) (-611 (-1169)) (-10 -8 (-15 -3664 ($))))) (T -1075))
+((-3664 (*1 *1) (-5 *1 (-1075))))
+(-13 (-846) (-611 (-1169)) (-10 -8 (-15 -3664 ($))))
+((-1677 (((-112) $ $) 7)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ (-1174)) 16) (((-1174) $) 15)) (-1718 (((-112) $ $) 6)))
(((-1076) (-140)) (T -1076))
NIL
(-13 (-93))
(((-93) . T) ((-102) . T) ((-613 #0=(-1174)) . T) ((-610 (-858)) . T) ((-610 #0#) . T) ((-490 #0#) . T) ((-1093) . T))
-((-2926 ((|#1| |#1| (-1 (-563) |#1| |#1|)) 23) ((|#1| |#1| (-1 (-112) |#1|)) 19)) (-3501 (((-1262)) 15)) (-1585 (((-640 |#1|)) 9)))
-(((-1077 |#1|) (-10 -7 (-15 -3501 ((-1262))) (-15 -1585 ((-640 |#1|))) (-15 -2926 (|#1| |#1| (-1 (-112) |#1|))) (-15 -2926 (|#1| |#1| (-1 (-563) |#1| |#1|)))) (-132)) (T -1077))
-((-2926 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-563) *2 *2)) (-4 *2 (-132)) (-5 *1 (-1077 *2)))) (-2926 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-132)) (-5 *1 (-1077 *2)))) (-1585 (*1 *2) (-12 (-5 *2 (-640 *3)) (-5 *1 (-1077 *3)) (-4 *3 (-132)))) (-3501 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1077 *3)) (-4 *3 (-132)))))
-(-10 -7 (-15 -3501 ((-1262))) (-15 -1585 ((-640 |#1|))) (-15 -2926 (|#1| |#1| (-1 (-112) |#1|))) (-15 -2926 (|#1| |#1| (-1 (-563) |#1| |#1|))))
-((-2874 (($ (-109) $) 16)) (-2087 (((-3 (-109) "failed") (-1169) $) 15)) (-3135 (($) 7)) (-1689 (($) 17)) (-2188 (($) 18)) (-1615 (((-640 (-175)) $) 10)) (-1693 (((-858) $) 21)))
-(((-1078) (-13 (-610 (-858)) (-10 -8 (-15 -3135 ($)) (-15 -1615 ((-640 (-175)) $)) (-15 -2087 ((-3 (-109) "failed") (-1169) $)) (-15 -2874 ($ (-109) $)) (-15 -1689 ($)) (-15 -2188 ($))))) (T -1078))
-((-3135 (*1 *1) (-5 *1 (-1078))) (-1615 (*1 *2 *1) (-12 (-5 *2 (-640 (-175))) (-5 *1 (-1078)))) (-2087 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-109)) (-5 *1 (-1078)))) (-2874 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1078)))) (-1689 (*1 *1) (-5 *1 (-1078))) (-2188 (*1 *1) (-5 *1 (-1078))))
-(-13 (-610 (-858)) (-10 -8 (-15 -3135 ($)) (-15 -1615 ((-640 (-175)) $)) (-15 -2087 ((-3 (-109) "failed") (-1169) $)) (-15 -2874 ($ (-109) $)) (-15 -1689 ($)) (-15 -2188 ($))))
-((-3507 (((-1257 (-684 |#1|)) (-640 (-684 |#1|))) 42) (((-1257 (-684 (-948 |#1|))) (-640 (-1169)) (-684 (-948 |#1|))) 62) (((-1257 (-684 (-407 (-948 |#1|)))) (-640 (-1169)) (-684 (-407 (-948 |#1|)))) 78)) (-1880 (((-1257 |#1|) (-684 |#1|) (-640 (-684 |#1|))) 36)))
-(((-1079 |#1|) (-10 -7 (-15 -3507 ((-1257 (-684 (-407 (-948 |#1|)))) (-640 (-1169)) (-684 (-407 (-948 |#1|))))) (-15 -3507 ((-1257 (-684 (-948 |#1|))) (-640 (-1169)) (-684 (-948 |#1|)))) (-15 -3507 ((-1257 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -1880 ((-1257 |#1|) (-684 |#1|) (-640 (-684 |#1|))))) (-363)) (T -1079))
-((-1880 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-684 *5))) (-5 *3 (-684 *5)) (-4 *5 (-363)) (-5 *2 (-1257 *5)) (-5 *1 (-1079 *5)))) (-3507 (*1 *2 *3) (-12 (-5 *3 (-640 (-684 *4))) (-4 *4 (-363)) (-5 *2 (-1257 (-684 *4))) (-5 *1 (-1079 *4)))) (-3507 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-1169))) (-4 *5 (-363)) (-5 *2 (-1257 (-684 (-948 *5)))) (-5 *1 (-1079 *5)) (-5 *4 (-684 (-948 *5))))) (-3507 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-1169))) (-4 *5 (-363)) (-5 *2 (-1257 (-684 (-407 (-948 *5))))) (-5 *1 (-1079 *5)) (-5 *4 (-684 (-407 (-948 *5)))))))
-(-10 -7 (-15 -3507 ((-1257 (-684 (-407 (-948 |#1|)))) (-640 (-1169)) (-684 (-407 (-948 |#1|))))) (-15 -3507 ((-1257 (-684 (-948 |#1|))) (-640 (-1169)) (-684 (-948 |#1|)))) (-15 -3507 ((-1257 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -1880 ((-1257 |#1|) (-684 |#1|) (-640 (-684 |#1|)))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2784 (((-640 (-767)) $) NIL) (((-640 (-767)) $ (-1169)) NIL)) (-1326 (((-767) $) NIL) (((-767) $ (-1169)) NIL)) (-2606 (((-640 (-1081 (-1169))) $) NIL)) (-2139 (((-1165 $) $ (-1081 (-1169))) NIL) (((-1165 |#1|) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-1779 (((-767) $) NIL) (((-767) $ (-640 (-1081 (-1169)))) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-4335 (($ $) NIL (|has| |#1| (-452)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-3942 (($ $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-1081 (-1169)) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL) (((-3 (-1118 |#1| (-1169)) "failed") $) NIL)) (-2058 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-1081 (-1169)) $) NIL) (((-1169) $) NIL) (((-1118 |#1| (-1169)) $) NIL)) (-2742 (($ $ $ (-1081 (-1169))) NIL (|has| |#1| (-172)))) (-2751 (($ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1300 (($ $) NIL (|has| |#1| (-452))) (($ $ (-1081 (-1169))) NIL (|has| |#1| (-452)))) (-2739 (((-640 $) $) NIL)) (-2468 (((-112) $) NIL (|has| |#1| (-905)))) (-3554 (($ $ |#1| (-531 (-1081 (-1169))) $) NIL)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1081 (-1169)) (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1081 (-1169)) (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-3254 (((-767) $ (-1169)) NIL) (((-767) $) NIL)) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) NIL)) (-2596 (($ (-1165 |#1|) (-1081 (-1169))) NIL) (($ (-1165 $) (-1081 (-1169))) NIL)) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-531 (-1081 (-1169)))) NIL) (($ $ (-1081 (-1169)) (-767)) NIL) (($ $ (-640 (-1081 (-1169))) (-640 (-767))) NIL)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ (-1081 (-1169))) NIL)) (-2048 (((-531 (-1081 (-1169))) $) NIL) (((-767) $ (-1081 (-1169))) NIL) (((-640 (-767)) $ (-640 (-1081 (-1169)))) NIL)) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-2803 (($ (-1 (-531 (-1081 (-1169))) (-531 (-1081 (-1169)))) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-3376 (((-1 $ (-767)) (-1169)) NIL) (((-1 $ (-767)) $) NIL (|has| |#1| (-233)))) (-4234 (((-3 (-1081 (-1169)) "failed") $) NIL)) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3759 (((-1081 (-1169)) $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3573 (((-1151) $) NIL)) (-3871 (((-112) $) NIL)) (-3733 (((-3 (-640 $) "failed") $) NIL)) (-2919 (((-3 (-640 $) "failed") $) NIL)) (-4086 (((-3 (-2 (|:| |var| (-1081 (-1169))) (|:| -1654 (-767))) "failed") $) NIL)) (-3562 (($ $) NIL)) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) NIL)) (-2706 ((|#1| $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2174 (((-418 $) $) NIL (|has| |#1| (-905)))) (-3008 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1540 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-1081 (-1169)) |#1|) NIL) (($ $ (-640 (-1081 (-1169))) (-640 |#1|)) NIL) (($ $ (-1081 (-1169)) $) NIL) (($ $ (-640 (-1081 (-1169))) (-640 $)) NIL) (($ $ (-1169) $) NIL (|has| |#1| (-233))) (($ $ (-640 (-1169)) (-640 $)) NIL (|has| |#1| (-233))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-233))) (($ $ (-640 (-1169)) (-640 |#1|)) NIL (|has| |#1| (-233)))) (-2315 (($ $ (-1081 (-1169))) NIL (|has| |#1| (-172)))) (-4202 (($ $ (-1081 (-1169))) NIL) (($ $ (-640 (-1081 (-1169)))) NIL) (($ $ (-1081 (-1169)) (-767)) NIL) (($ $ (-640 (-1081 (-1169))) (-640 (-767))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3745 (((-640 (-1169)) $) NIL)) (-4167 (((-531 (-1081 (-1169))) $) NIL) (((-767) $ (-1081 (-1169))) NIL) (((-640 (-767)) $ (-640 (-1081 (-1169)))) NIL) (((-767) $ (-1169)) NIL)) (-2220 (((-888 (-379)) $) NIL (-12 (|has| (-1081 (-1169)) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-1081 (-1169)) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-1081 (-1169)) (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-1836 ((|#1| $) NIL (|has| |#1| (-452))) (($ $ (-1081 (-1169))) NIL (|has| |#1| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-1081 (-1169))) NIL) (($ (-1169)) NIL) (($ (-1118 |#1| (-1169))) NIL) (($ (-407 (-563))) NIL (-4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-1337 (((-640 |#1|) $) NIL)) (-4319 ((|#1| $ (-531 (-1081 (-1169)))) NIL) (($ $ (-1081 (-1169)) (-767)) NIL) (($ $ (-640 (-1081 (-1169))) (-640 (-767))) NIL)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-1675 (((-767)) NIL)) (-2793 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ (-1081 (-1169))) NIL) (($ $ (-640 (-1081 (-1169)))) NIL) (($ $ (-1081 (-1169)) (-767)) NIL) (($ $ (-640 (-1081 (-1169))) (-640 (-767))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+((-3676 ((|#1| |#1| (-1 (-563) |#1| |#1|)) 23) ((|#1| |#1| (-1 (-112) |#1|)) 19)) (-3505 (((-1262)) 15)) (-1584 (((-640 |#1|)) 9)))
+(((-1077 |#1|) (-10 -7 (-15 -3505 ((-1262))) (-15 -1584 ((-640 |#1|))) (-15 -3676 (|#1| |#1| (-1 (-112) |#1|))) (-15 -3676 (|#1| |#1| (-1 (-563) |#1| |#1|)))) (-132)) (T -1077))
+((-3676 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-563) *2 *2)) (-4 *2 (-132)) (-5 *1 (-1077 *2)))) (-3676 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-132)) (-5 *1 (-1077 *2)))) (-1584 (*1 *2) (-12 (-5 *2 (-640 *3)) (-5 *1 (-1077 *3)) (-4 *3 (-132)))) (-3505 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1077 *3)) (-4 *3 (-132)))))
+(-10 -7 (-15 -3505 ((-1262))) (-15 -1584 ((-640 |#1|))) (-15 -3676 (|#1| |#1| (-1 (-112) |#1|))) (-15 -3676 (|#1| |#1| (-1 (-563) |#1| |#1|))))
+((-3714 (($ (-109) $) 16)) (-3726 (((-3 (-109) "failed") (-1169) $) 15)) (-3445 (($) 7)) (-3701 (($) 17)) (-3688 (($) 18)) (-3739 (((-640 (-175)) $) 10)) (-1692 (((-858) $) 21)))
+(((-1078) (-13 (-610 (-858)) (-10 -8 (-15 -3445 ($)) (-15 -3739 ((-640 (-175)) $)) (-15 -3726 ((-3 (-109) "failed") (-1169) $)) (-15 -3714 ($ (-109) $)) (-15 -3701 ($)) (-15 -3688 ($))))) (T -1078))
+((-3445 (*1 *1) (-5 *1 (-1078))) (-3739 (*1 *2 *1) (-12 (-5 *2 (-640 (-175))) (-5 *1 (-1078)))) (-3726 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-109)) (-5 *1 (-1078)))) (-3714 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1078)))) (-3701 (*1 *1) (-5 *1 (-1078))) (-3688 (*1 *1) (-5 *1 (-1078))))
+(-13 (-610 (-858)) (-10 -8 (-15 -3445 ($)) (-15 -3739 ((-640 (-175)) $)) (-15 -3726 ((-3 (-109) "failed") (-1169) $)) (-15 -3714 ($ (-109) $)) (-15 -3701 ($)) (-15 -3688 ($))))
+((-3749 (((-1257 (-684 |#1|)) (-640 (-684 |#1|))) 42) (((-1257 (-684 (-948 |#1|))) (-640 (-1169)) (-684 (-948 |#1|))) 62) (((-1257 (-684 (-407 (-948 |#1|)))) (-640 (-1169)) (-684 (-407 (-948 |#1|)))) 78)) (-3759 (((-1257 |#1|) (-684 |#1|) (-640 (-684 |#1|))) 36)))
+(((-1079 |#1|) (-10 -7 (-15 -3749 ((-1257 (-684 (-407 (-948 |#1|)))) (-640 (-1169)) (-684 (-407 (-948 |#1|))))) (-15 -3749 ((-1257 (-684 (-948 |#1|))) (-640 (-1169)) (-684 (-948 |#1|)))) (-15 -3749 ((-1257 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -3759 ((-1257 |#1|) (-684 |#1|) (-640 (-684 |#1|))))) (-363)) (T -1079))
+((-3759 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-684 *5))) (-5 *3 (-684 *5)) (-4 *5 (-363)) (-5 *2 (-1257 *5)) (-5 *1 (-1079 *5)))) (-3749 (*1 *2 *3) (-12 (-5 *3 (-640 (-684 *4))) (-4 *4 (-363)) (-5 *2 (-1257 (-684 *4))) (-5 *1 (-1079 *4)))) (-3749 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-1169))) (-4 *5 (-363)) (-5 *2 (-1257 (-684 (-948 *5)))) (-5 *1 (-1079 *5)) (-5 *4 (-684 (-948 *5))))) (-3749 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-1169))) (-4 *5 (-363)) (-5 *2 (-1257 (-684 (-407 (-948 *5))))) (-5 *1 (-1079 *5)) (-5 *4 (-684 (-407 (-948 *5)))))))
+(-10 -7 (-15 -3749 ((-1257 (-684 (-407 (-948 |#1|)))) (-640 (-1169)) (-684 (-407 (-948 |#1|))))) (-15 -3749 ((-1257 (-684 (-948 |#1|))) (-640 (-1169)) (-684 (-948 |#1|)))) (-15 -3749 ((-1257 (-684 |#1|)) (-640 (-684 |#1|)))) (-15 -3759 ((-1257 |#1|) (-684 |#1|) (-640 (-684 |#1|)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3989 (((-640 (-767)) $) NIL) (((-640 (-767)) $ (-1169)) NIL)) (-4329 (((-767) $) NIL) (((-767) $ (-1169)) NIL)) (-2605 (((-640 (-1081 (-1169))) $) NIL)) (-2138 (((-1165 $) $ (-1081 (-1169))) NIL) (((-1165 |#1|) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-3897 (((-767) $) NIL) (((-767) $ (-640 (-1081 (-1169)))) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-1798 (($ $) NIL (|has| |#1| (-452)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-3968 (($ $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-1081 (-1169)) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL) (((-3 (-1118 |#1| (-1169)) "failed") $) NIL)) (-2057 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-1081 (-1169)) $) NIL) (((-1169) $) NIL) (((-1118 |#1| (-1169)) $) NIL)) (-1612 (($ $ $ (-1081 (-1169))) NIL (|has| |#1| (-172)))) (-2750 (($ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-4151 (($ $) NIL (|has| |#1| (-452))) (($ $ (-1081 (-1169))) NIL (|has| |#1| (-452)))) (-2738 (((-640 $) $) NIL)) (-2560 (((-112) $) NIL (|has| |#1| (-905)))) (-2159 (($ $ |#1| (-531 (-1081 (-1169))) $) NIL)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1081 (-1169)) (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1081 (-1169)) (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-1775 (((-767) $ (-1169)) NIL) (((-767) $) NIL)) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) NIL)) (-2595 (($ (-1165 |#1|) (-1081 (-1169))) NIL) (($ (-1165 $) (-1081 (-1169))) NIL)) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-531 (-1081 (-1169)))) NIL) (($ $ (-1081 (-1169)) (-767)) NIL) (($ $ (-640 (-1081 (-1169))) (-640 (-767))) NIL)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ (-1081 (-1169))) NIL)) (-3908 (((-531 (-1081 (-1169))) $) NIL) (((-767) $ (-1081 (-1169))) NIL) (((-640 (-767)) $ (-640 (-1081 (-1169)))) NIL)) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-2170 (($ (-1 (-531 (-1081 (-1169))) (-531 (-1081 (-1169)))) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-4340 (((-1 $ (-767)) (-1169)) NIL) (((-1 $ (-767)) $) NIL (|has| |#1| (-233)))) (-1698 (((-3 (-1081 (-1169)) "failed") $) NIL)) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3760 (((-1081 (-1169)) $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3854 (((-1151) $) NIL)) (-3978 (((-112) $) NIL)) (-3939 (((-3 (-640 $) "failed") $) NIL)) (-3930 (((-3 (-640 $) "failed") $) NIL)) (-3949 (((-3 (-2 (|:| |var| (-1081 (-1169))) (|:| -3311 (-767))) "failed") $) NIL)) (-3564 (($ $) NIL)) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) NIL)) (-2705 ((|#1| $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-452)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2173 (((-418 $) $) NIL (|has| |#1| (-905)))) (-3012 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1542 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-1081 (-1169)) |#1|) NIL) (($ $ (-640 (-1081 (-1169))) (-640 |#1|)) NIL) (($ $ (-1081 (-1169)) $) NIL) (($ $ (-640 (-1081 (-1169))) (-640 $)) NIL) (($ $ (-1169) $) NIL (|has| |#1| (-233))) (($ $ (-640 (-1169)) (-640 $)) NIL (|has| |#1| (-233))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-233))) (($ $ (-640 (-1169)) (-640 |#1|)) NIL (|has| |#1| (-233)))) (-1623 (($ $ (-1081 (-1169))) NIL (|has| |#1| (-172)))) (-4203 (($ $ (-1081 (-1169))) NIL) (($ $ (-640 (-1081 (-1169)))) NIL) (($ $ (-1081 (-1169)) (-767)) NIL) (($ $ (-640 (-1081 (-1169))) (-640 (-767))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4001 (((-640 (-1169)) $) NIL)) (-3871 (((-531 (-1081 (-1169))) $) NIL) (((-767) $ (-1081 (-1169))) NIL) (((-640 (-767)) $ (-640 (-1081 (-1169)))) NIL) (((-767) $ (-1169)) NIL)) (-2219 (((-888 (-379)) $) NIL (-12 (|has| (-1081 (-1169)) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-1081 (-1169)) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-1081 (-1169)) (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-3885 ((|#1| $) NIL (|has| |#1| (-452))) (($ $ (-1081 (-1169))) NIL (|has| |#1| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-1081 (-1169))) NIL) (($ (-1169)) NIL) (($ (-1118 |#1| (-1169))) NIL) (($ (-407 (-563))) NIL (-4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-3955 (((-640 |#1|) $) NIL)) (-3244 ((|#1| $ (-531 (-1081 (-1169)))) NIL) (($ $ (-1081 (-1169)) (-767)) NIL) (($ $ (-640 (-1081 (-1169))) (-640 (-767))) NIL)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-3914 (((-767)) NIL)) (-2148 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-1081 (-1169))) NIL) (($ $ (-640 (-1081 (-1169)))) NIL) (($ $ (-1081 (-1169)) (-767)) NIL) (($ $ (-640 (-1081 (-1169))) (-640 (-767))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-767)) NIL (|has| |#1| (-233))) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
(((-1080 |#1|) (-13 (-253 |#1| (-1169) (-1081 (-1169)) (-531 (-1081 (-1169)))) (-1034 (-1118 |#1| (-1169)))) (-1045)) (T -1080))
NIL
(-13 (-253 |#1| (-1169) (-1081 (-1169)) (-531 (-1081 (-1169)))) (-1034 (-1118 |#1| (-1169))))
-((-1677 (((-112) $ $) NIL)) (-1326 (((-767) $) NIL)) (-2518 ((|#1| $) 10)) (-2131 (((-3 |#1| "failed") $) NIL)) (-2058 ((|#1| $) NIL)) (-3254 (((-767) $) 11)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3376 (($ |#1| (-767)) 9)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-4202 (($ $) NIL) (($ $ (-767)) NIL)) (-1693 (((-858) $) NIL) (($ |#1|) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 15)))
+((-1677 (((-112) $ $) NIL)) (-4329 (((-767) $) NIL)) (-2517 ((|#1| $) 10)) (-2130 (((-3 |#1| "failed") $) NIL)) (-2057 ((|#1| $) NIL)) (-1775 (((-767) $) 11)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-4340 (($ |#1| (-767)) 9)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-4203 (($ $) NIL) (($ $ (-767)) NIL)) (-1692 (((-858) $) NIL) (($ |#1|) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 15)))
(((-1081 |#1|) (-266 |#1|) (-846)) (T -1081))
NIL
(-266 |#1|)
-((-2240 (((-640 |#2|) (-1 |#2| |#1|) (-1087 |#1|)) 23 (|has| |#1| (-844))) (((-1087 |#2|) (-1 |#2| |#1|) (-1087 |#1|)) 14)))
-(((-1082 |#1| |#2|) (-10 -7 (-15 -2240 ((-1087 |#2|) (-1 |#2| |#1|) (-1087 |#1|))) (IF (|has| |#1| (-844)) (-15 -2240 ((-640 |#2|) (-1 |#2| |#1|) (-1087 |#1|))) |%noBranch|)) (-1208) (-1208)) (T -1082))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1087 *5)) (-4 *5 (-844)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-640 *6)) (-5 *1 (-1082 *5 *6)))) (-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1087 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-1087 *6)) (-5 *1 (-1082 *5 *6)))))
-(-10 -7 (-15 -2240 ((-1087 |#2|) (-1 |#2| |#1|) (-1087 |#1|))) (IF (|has| |#1| (-844)) (-15 -2240 ((-640 |#2|) (-1 |#2| |#1|) (-1087 |#1|))) |%noBranch|))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 17) (($ (-1174)) NIL) (((-1174) $) NIL)) (-2445 (((-640 (-1128)) $) 9)) (-1718 (((-112) $ $) NIL)))
-(((-1083) (-13 (-1076) (-10 -8 (-15 -2445 ((-640 (-1128)) $))))) (T -1083))
-((-2445 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-1083)))))
-(-13 (-1076) (-10 -8 (-15 -2445 ((-640 (-1128)) $))))
-((-2240 (((-1085 |#2|) (-1 |#2| |#1|) (-1085 |#1|)) 19)))
-(((-1084 |#1| |#2|) (-10 -7 (-15 -2240 ((-1085 |#2|) (-1 |#2| |#1|) (-1085 |#1|)))) (-1208) (-1208)) (T -1084))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1085 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-1085 *6)) (-5 *1 (-1084 *5 *6)))))
-(-10 -7 (-15 -2240 ((-1085 |#2|) (-1 |#2| |#1|) (-1085 |#1|))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2518 (((-1169) $) 11)) (-4260 (((-1087 |#1|) $) 12)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2378 (($ (-1169) (-1087 |#1|)) 10)) (-1693 (((-858) $) 20 (|has| |#1| (-1093)))) (-1718 (((-112) $ $) 15 (|has| |#1| (-1093)))))
-(((-1085 |#1|) (-13 (-1208) (-10 -8 (-15 -2378 ($ (-1169) (-1087 |#1|))) (-15 -2518 ((-1169) $)) (-15 -4260 ((-1087 |#1|) $)) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|))) (-1208)) (T -1085))
-((-2378 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1087 *4)) (-4 *4 (-1208)) (-5 *1 (-1085 *4)))) (-2518 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-1085 *3)) (-4 *3 (-1208)))) (-4260 (*1 *2 *1) (-12 (-5 *2 (-1087 *3)) (-5 *1 (-1085 *3)) (-4 *3 (-1208)))))
-(-13 (-1208) (-10 -8 (-15 -2378 ($ (-1169) (-1087 |#1|))) (-15 -2518 ((-1169) $)) (-15 -4260 ((-1087 |#1|) $)) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|)))
-((-4260 (($ |#1| |#1|) 8)) (-3244 ((|#1| $) 11)) (-3284 ((|#1| $) 13)) (-3298 (((-563) $) 9)) (-3289 ((|#1| $) 10)) (-3426 ((|#1| $) 12)) (-2220 (($ |#1|) 6)) (-2178 (($ |#1| |#1|) 15)) (-1464 (($ $ (-563)) 14)))
+((-2238 (((-640 |#2|) (-1 |#2| |#1|) (-1087 |#1|)) 23 (|has| |#1| (-844))) (((-1087 |#2|) (-1 |#2| |#1|) (-1087 |#1|)) 14)))
+(((-1082 |#1| |#2|) (-10 -7 (-15 -2238 ((-1087 |#2|) (-1 |#2| |#1|) (-1087 |#1|))) (IF (|has| |#1| (-844)) (-15 -2238 ((-640 |#2|) (-1 |#2| |#1|) (-1087 |#1|))) |%noBranch|)) (-1208) (-1208)) (T -1082))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1087 *5)) (-4 *5 (-844)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-640 *6)) (-5 *1 (-1082 *5 *6)))) (-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1087 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-1087 *6)) (-5 *1 (-1082 *5 *6)))))
+(-10 -7 (-15 -2238 ((-1087 |#2|) (-1 |#2| |#1|) (-1087 |#1|))) (IF (|has| |#1| (-844)) (-15 -2238 ((-640 |#2|) (-1 |#2| |#1|) (-1087 |#1|))) |%noBranch|))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 17) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3771 (((-640 (-1128)) $) 9)) (-1718 (((-112) $ $) NIL)))
+(((-1083) (-13 (-1076) (-10 -8 (-15 -3771 ((-640 (-1128)) $))))) (T -1083))
+((-3771 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-1083)))))
+(-13 (-1076) (-10 -8 (-15 -3771 ((-640 (-1128)) $))))
+((-2238 (((-1085 |#2|) (-1 |#2| |#1|) (-1085 |#1|)) 19)))
+(((-1084 |#1| |#2|) (-10 -7 (-15 -2238 ((-1085 |#2|) (-1 |#2| |#1|) (-1085 |#1|)))) (-1208) (-1208)) (T -1084))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1085 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-1085 *6)) (-5 *1 (-1084 *5 *6)))))
+(-10 -7 (-15 -2238 ((-1085 |#2|) (-1 |#2| |#1|) (-1085 |#1|))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2517 (((-1169) $) 11)) (-4260 (((-1087 |#1|) $) 12)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2377 (($ (-1169) (-1087 |#1|)) 10)) (-1692 (((-858) $) 20 (|has| |#1| (-1093)))) (-1718 (((-112) $ $) 15 (|has| |#1| (-1093)))))
+(((-1085 |#1|) (-13 (-1208) (-10 -8 (-15 -2377 ($ (-1169) (-1087 |#1|))) (-15 -2517 ((-1169) $)) (-15 -4260 ((-1087 |#1|) $)) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|))) (-1208)) (T -1085))
+((-2377 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1087 *4)) (-4 *4 (-1208)) (-5 *1 (-1085 *4)))) (-2517 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-1085 *3)) (-4 *3 (-1208)))) (-4260 (*1 *2 *1) (-12 (-5 *2 (-1087 *3)) (-5 *1 (-1085 *3)) (-4 *3 (-1208)))))
+(-13 (-1208) (-10 -8 (-15 -2377 ($ (-1169) (-1087 |#1|))) (-15 -2517 ((-1169) $)) (-15 -4260 ((-1087 |#1|) $)) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|)))
+((-4260 (($ |#1| |#1|) 8)) (-3792 ((|#1| $) 11)) (-3289 ((|#1| $) 13)) (-3302 (((-563) $) 9)) (-3781 ((|#1| $) 10)) (-3430 ((|#1| $) 12)) (-2219 (($ |#1|) 6)) (-2177 (($ |#1| |#1|) 15)) (-1464 (($ $ (-563)) 14)))
(((-1086 |#1|) (-140) (-1208)) (T -1086))
-((-2178 (*1 *1 *2 *2) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))) (-1464 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-1086 *3)) (-4 *3 (-1208)))) (-3284 (*1 *2 *1) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))) (-3426 (*1 *2 *1) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))) (-3244 (*1 *2 *1) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))) (-3289 (*1 *2 *1) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))) (-3298 (*1 *2 *1) (-12 (-4 *1 (-1086 *3)) (-4 *3 (-1208)) (-5 *2 (-563)))) (-4260 (*1 *1 *2 *2) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))))
-(-13 (-615 |t#1|) (-10 -8 (-15 -2178 ($ |t#1| |t#1|)) (-15 -1464 ($ $ (-563))) (-15 -3284 (|t#1| $)) (-15 -3426 (|t#1| $)) (-15 -3244 (|t#1| $)) (-15 -3289 (|t#1| $)) (-15 -3298 ((-563) $)) (-15 -4260 ($ |t#1| |t#1|))))
+((-2177 (*1 *1 *2 *2) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))) (-1464 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-1086 *3)) (-4 *3 (-1208)))) (-3289 (*1 *2 *1) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))) (-3430 (*1 *2 *1) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))) (-3792 (*1 *2 *1) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))) (-3781 (*1 *2 *1) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))) (-3302 (*1 *2 *1) (-12 (-4 *1 (-1086 *3)) (-4 *3 (-1208)) (-5 *2 (-563)))) (-4260 (*1 *1 *2 *2) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))))
+(-13 (-615 |t#1|) (-10 -8 (-15 -2177 ($ |t#1| |t#1|)) (-15 -1464 ($ $ (-563))) (-15 -3289 (|t#1| $)) (-15 -3430 (|t#1| $)) (-15 -3792 (|t#1| $)) (-15 -3781 (|t#1| $)) (-15 -3302 ((-563) $)) (-15 -4260 ($ |t#1| |t#1|))))
(((-615 |#1|) . T))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4260 (($ |#1| |#1|) 15)) (-2240 (((-640 |#1|) (-1 |#1| |#1|) $) 37 (|has| |#1| (-844)))) (-3244 ((|#1| $) 10)) (-3284 ((|#1| $) 9)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3298 (((-563) $) 14)) (-3289 ((|#1| $) 12)) (-3426 ((|#1| $) 11)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2213 (((-640 |#1|) $) 35 (|has| |#1| (-844))) (((-640 |#1|) (-640 $)) 34 (|has| |#1| (-844)))) (-2220 (($ |#1|) 26)) (-1693 (((-858) $) 25 (|has| |#1| (-1093)))) (-2178 (($ |#1| |#1|) 8)) (-1464 (($ $ (-563)) 16)) (-1718 (((-112) $ $) 19 (|has| |#1| (-1093)))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4260 (($ |#1| |#1|) 15)) (-2238 (((-640 |#1|) (-1 |#1| |#1|) $) 37 (|has| |#1| (-844)))) (-3792 ((|#1| $) 10)) (-3289 ((|#1| $) 9)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3302 (((-563) $) 14)) (-3781 ((|#1| $) 12)) (-3430 ((|#1| $) 11)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2212 (((-640 |#1|) $) 35 (|has| |#1| (-844))) (((-640 |#1|) (-640 $)) 34 (|has| |#1| (-844)))) (-2219 (($ |#1|) 26)) (-1692 (((-858) $) 25 (|has| |#1| (-1093)))) (-2177 (($ |#1| |#1|) 8)) (-1464 (($ $ (-563)) 16)) (-1718 (((-112) $ $) 19 (|has| |#1| (-1093)))))
(((-1087 |#1|) (-13 (-1086 |#1|) (-10 -7 (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|) (IF (|has| |#1| (-844)) (-6 (-1088 |#1| (-640 |#1|))) |%noBranch|))) (-1208)) (T -1087))
NIL
(-13 (-1086 |#1|) (-10 -7 (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|) (IF (|has| |#1| (-844)) (-6 (-1088 |#1| (-640 |#1|))) |%noBranch|)))
-((-4260 (($ |#1| |#1|) 8)) (-2240 ((|#2| (-1 |#1| |#1|) $) 16)) (-3244 ((|#1| $) 11)) (-3284 ((|#1| $) 13)) (-3298 (((-563) $) 9)) (-3289 ((|#1| $) 10)) (-3426 ((|#1| $) 12)) (-2213 ((|#2| (-640 $)) 18) ((|#2| $) 17)) (-2220 (($ |#1|) 6)) (-2178 (($ |#1| |#1|) 15)) (-1464 (($ $ (-563)) 14)))
+((-4260 (($ |#1| |#1|) 8)) (-2238 ((|#2| (-1 |#1| |#1|) $) 16)) (-3792 ((|#1| $) 11)) (-3289 ((|#1| $) 13)) (-3302 (((-563) $) 9)) (-3781 ((|#1| $) 10)) (-3430 ((|#1| $) 12)) (-2212 ((|#2| (-640 $)) 18) ((|#2| $) 17)) (-2219 (($ |#1|) 6)) (-2177 (($ |#1| |#1|) 15)) (-1464 (($ $ (-563)) 14)))
(((-1088 |#1| |#2|) (-140) (-844) (-1142 |t#1|)) (T -1088))
-((-2213 (*1 *2 *3) (-12 (-5 *3 (-640 *1)) (-4 *1 (-1088 *4 *2)) (-4 *4 (-844)) (-4 *2 (-1142 *4)))) (-2213 (*1 *2 *1) (-12 (-4 *1 (-1088 *3 *2)) (-4 *3 (-844)) (-4 *2 (-1142 *3)))) (-2240 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1088 *4 *2)) (-4 *4 (-844)) (-4 *2 (-1142 *4)))))
-(-13 (-1086 |t#1|) (-10 -8 (-15 -2213 (|t#2| (-640 $))) (-15 -2213 (|t#2| $)) (-15 -2240 (|t#2| (-1 |t#1| |t#1|) $))))
+((-2212 (*1 *2 *3) (-12 (-5 *3 (-640 *1)) (-4 *1 (-1088 *4 *2)) (-4 *4 (-844)) (-4 *2 (-1142 *4)))) (-2212 (*1 *2 *1) (-12 (-4 *1 (-1088 *3 *2)) (-4 *3 (-844)) (-4 *2 (-1142 *3)))) (-2238 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1088 *4 *2)) (-4 *4 (-844)) (-4 *2 (-1142 *4)))))
+(-13 (-1086 |t#1|) (-10 -8 (-15 -2212 (|t#2| (-640 $))) (-15 -2212 (|t#2| $)) (-15 -2238 (|t#2| (-1 |t#1| |t#1|) $))))
(((-615 |#1|) . T) ((-1086 |#1|) . T))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1481 (((-1128) $) 12)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 20) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3359 (((-640 (-1128)) $) 10)) (-1718 (((-112) $ $) NIL)))
-(((-1089) (-13 (-1076) (-10 -8 (-15 -3359 ((-640 (-1128)) $)) (-15 -1481 ((-1128) $))))) (T -1089))
-((-3359 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-1089)))) (-1481 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1089)))))
-(-13 (-1076) (-10 -8 (-15 -3359 ((-640 (-1128)) $)) (-15 -1481 ((-1128) $))))
-((-2583 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-4314 (($ $ $) 10)) (-1629 (($ $ $) NIL) (($ $ |#2|) 15)))
-(((-1090 |#1| |#2|) (-10 -8 (-15 -2583 (|#1| |#2| |#1|)) (-15 -2583 (|#1| |#1| |#2|)) (-15 -2583 (|#1| |#1| |#1|)) (-15 -4314 (|#1| |#1| |#1|)) (-15 -1629 (|#1| |#1| |#2|)) (-15 -1629 (|#1| |#1| |#1|))) (-1091 |#2|) (-1093)) (T -1090))
-NIL
-(-10 -8 (-15 -2583 (|#1| |#2| |#1|)) (-15 -2583 (|#1| |#1| |#2|)) (-15 -2583 (|#1| |#1| |#1|)) (-15 -4314 (|#1| |#1| |#1|)) (-15 -1629 (|#1| |#1| |#2|)) (-15 -1629 (|#1| |#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-2583 (($ $ $) 18) (($ $ |#1|) 17) (($ |#1| $) 16)) (-4314 (($ $ $) 20)) (-4149 (((-112) $ $) 19)) (-2759 (((-112) $ (-767)) 35)) (-1584 (($) 25) (($ (-640 |#1|)) 24)) (-2256 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4407)))) (-4239 (($) 36 T CONST)) (-3813 (($ $) 59 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ |#1| $) 58 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4407)))) (-2659 (((-640 |#1|) $) 43 (|has| $ (-6 -4407)))) (-2539 (((-112) $ $) 28)) (-2581 (((-112) $ (-767)) 34)) (-2259 (((-640 |#1|) $) 44 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 46 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 38)) (-2382 (((-112) $ (-767)) 33)) (-3573 (((-1151) $) 9)) (-2550 (($ $ $) 23)) (-1694 (((-1113) $) 10)) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-3138 (((-112) (-1 (-112) |#1|) $) 41 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 |#1|) (-640 |#1|)) 50 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 49 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 48 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 (-294 |#1|))) 47 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 29)) (-3756 (((-112) $) 32)) (-3135 (($) 31)) (-1629 (($ $ $) 22) (($ $ |#1|) 21)) (-1709 (((-767) |#1| $) 45 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) (((-767) (-1 (-112) |#1|) $) 42 (|has| $ (-6 -4407)))) (-1872 (($ $) 30)) (-2220 (((-536) $) 60 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 51)) (-1693 (((-858) $) 11)) (-2534 (($) 27) (($ (-640 |#1|)) 26)) (-4383 (((-112) (-1 (-112) |#1|) $) 40 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 6)) (-3608 (((-767) $) 37 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1481 (((-1128) $) 12)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 20) (($ (-1174)) NIL) (((-1174) $) NIL)) (-3363 (((-640 (-1128)) $) 10)) (-1718 (((-112) $ $) NIL)))
+(((-1089) (-13 (-1076) (-10 -8 (-15 -3363 ((-640 (-1128)) $)) (-15 -1481 ((-1128) $))))) (T -1089))
+((-3363 (*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-1089)))) (-1481 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1089)))))
+(-13 (-1076) (-10 -8 (-15 -3363 ((-640 (-1128)) $)) (-15 -1481 ((-1128) $))))
+((-2582 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-3816 (($ $ $) 10)) (-3827 (($ $ $) NIL) (($ $ |#2|) 15)))
+(((-1090 |#1| |#2|) (-10 -8 (-15 -2582 (|#1| |#2| |#1|)) (-15 -2582 (|#1| |#1| |#2|)) (-15 -2582 (|#1| |#1| |#1|)) (-15 -3816 (|#1| |#1| |#1|)) (-15 -3827 (|#1| |#1| |#2|)) (-15 -3827 (|#1| |#1| |#1|))) (-1091 |#2|) (-1093)) (T -1090))
+NIL
+(-10 -8 (-15 -2582 (|#1| |#2| |#1|)) (-15 -2582 (|#1| |#1| |#2|)) (-15 -2582 (|#1| |#1| |#1|)) (-15 -3816 (|#1| |#1| |#1|)) (-15 -3827 (|#1| |#1| |#2|)) (-15 -3827 (|#1| |#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-2582 (($ $ $) 18) (($ $ |#1|) 17) (($ |#1| $) 16)) (-3816 (($ $ $) 20)) (-3804 (((-112) $ $) 19)) (-3001 (((-112) $ (-767)) 35)) (-1582 (($) 25) (($ (-640 |#1|)) 24)) (-2255 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4408)))) (-2569 (($) 36 T CONST)) (-3814 (($ $) 59 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ |#1| $) 58 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4408)))) (-2658 (((-640 |#1|) $) 43 (|has| $ (-6 -4408)))) (-3845 (((-112) $ $) 28)) (-2514 (((-112) $ (-767)) 34)) (-3523 (((-640 |#1|) $) 44 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 46 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 38)) (-2481 (((-112) $ (-767)) 33)) (-3854 (((-1151) $) 9)) (-3834 (($ $ $) 23)) (-1693 (((-1113) $) 10)) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-1458 (((-112) (-1 (-112) |#1|) $) 41 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 |#1|) (-640 |#1|)) 50 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 49 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 48 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 (-294 |#1|))) 47 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 29)) (-1665 (((-112) $) 32)) (-3445 (($) 31)) (-3827 (($ $ $) 22) (($ $ |#1|) 21)) (-1708 (((-767) |#1| $) 45 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) (((-767) (-1 (-112) |#1|) $) 42 (|has| $ (-6 -4408)))) (-1870 (($ $) 30)) (-2219 (((-536) $) 60 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 51)) (-1692 (((-858) $) 11)) (-2533 (($) 27) (($ (-640 |#1|)) 26)) (-1471 (((-112) (-1 (-112) |#1|) $) 40 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 6)) (-3610 (((-767) $) 37 (|has| $ (-6 -4408)))))
(((-1091 |#1|) (-140) (-1093)) (T -1091))
-((-2539 (*1 *2 *1 *1) (-12 (-4 *1 (-1091 *3)) (-4 *3 (-1093)) (-5 *2 (-112)))) (-2534 (*1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-2534 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-4 *1 (-1091 *3)))) (-1584 (*1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-1584 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-4 *1 (-1091 *3)))) (-2550 (*1 *1 *1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-1629 (*1 *1 *1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-1629 (*1 *1 *1 *2) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-4314 (*1 *1 *1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-4149 (*1 *2 *1 *1) (-12 (-4 *1 (-1091 *3)) (-4 *3 (-1093)) (-5 *2 (-112)))) (-2583 (*1 *1 *1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-2583 (*1 *1 *1 *2) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-2583 (*1 *1 *2 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))))
-(-13 (-1093) (-151 |t#1|) (-10 -8 (-6 -4397) (-15 -2539 ((-112) $ $)) (-15 -2534 ($)) (-15 -2534 ($ (-640 |t#1|))) (-15 -1584 ($)) (-15 -1584 ($ (-640 |t#1|))) (-15 -2550 ($ $ $)) (-15 -1629 ($ $ $)) (-15 -1629 ($ $ |t#1|)) (-15 -4314 ($ $ $)) (-15 -4149 ((-112) $ $)) (-15 -2583 ($ $ $)) (-15 -2583 ($ $ |t#1|)) (-15 -2583 ($ |t#1| $))))
+((-3845 (*1 *2 *1 *1) (-12 (-4 *1 (-1091 *3)) (-4 *3 (-1093)) (-5 *2 (-112)))) (-2533 (*1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-2533 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-4 *1 (-1091 *3)))) (-1582 (*1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-1582 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-4 *1 (-1091 *3)))) (-3834 (*1 *1 *1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-3827 (*1 *1 *1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-3827 (*1 *1 *1 *2) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-3816 (*1 *1 *1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-3804 (*1 *2 *1 *1) (-12 (-4 *1 (-1091 *3)) (-4 *3 (-1093)) (-5 *2 (-112)))) (-2582 (*1 *1 *1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-2582 (*1 *1 *1 *2) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))) (-2582 (*1 *1 *2 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))))
+(-13 (-1093) (-151 |t#1|) (-10 -8 (-6 -4398) (-15 -3845 ((-112) $ $)) (-15 -2533 ($)) (-15 -2533 ($ (-640 |t#1|))) (-15 -1582 ($)) (-15 -1582 ($ (-640 |t#1|))) (-15 -3834 ($ $ $)) (-15 -3827 ($ $ $)) (-15 -3827 ($ $ |t#1|)) (-15 -3816 ($ $ $)) (-15 -3804 ((-112) $ $)) (-15 -2582 ($ $ $)) (-15 -2582 ($ $ |t#1|)) (-15 -2582 ($ |t#1| $))))
(((-34) . T) ((-102) . T) ((-610 (-858)) . T) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) . T) ((-1208) . T))
-((-3573 (((-1151) $) 10)) (-1694 (((-1113) $) 8)))
-(((-1092 |#1|) (-10 -8 (-15 -3573 ((-1151) |#1|)) (-15 -1694 ((-1113) |#1|))) (-1093)) (T -1092))
+((-3854 (((-1151) $) 10)) (-1693 (((-1113) $) 8)))
+(((-1092 |#1|) (-10 -8 (-15 -3854 ((-1151) |#1|)) (-15 -1693 ((-1113) |#1|))) (-1093)) (T -1092))
NIL
-(-10 -8 (-15 -3573 ((-1151) |#1|)) (-15 -1694 ((-1113) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1718 (((-112) $ $) 6)))
+(-10 -8 (-15 -3854 ((-1151) |#1|)) (-15 -1693 ((-1113) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1718 (((-112) $ $) 6)))
(((-1093) (-140)) (T -1093))
-((-1694 (*1 *2 *1) (-12 (-4 *1 (-1093)) (-5 *2 (-1113)))) (-3573 (*1 *2 *1) (-12 (-4 *1 (-1093)) (-5 *2 (-1151)))))
-(-13 (-102) (-610 (-858)) (-10 -8 (-15 -1694 ((-1113) $)) (-15 -3573 ((-1151) $))))
+((-1693 (*1 *2 *1) (-12 (-4 *1 (-1093)) (-5 *2 (-1113)))) (-3854 (*1 *2 *1) (-12 (-4 *1 (-1093)) (-5 *2 (-1151)))))
+(-13 (-102) (-610 (-858)) (-10 -8 (-15 -1693 ((-1113) $)) (-15 -3854 ((-1151) $))))
(((-102) . T) ((-610 (-858)) . T))
-((-1677 (((-112) $ $) NIL)) (-3749 (((-767)) 30)) (-2610 (($ (-640 (-917))) 52)) (-1668 (((-3 $ "failed") $ (-917) (-917)) 58)) (-1691 (($) 32)) (-1729 (((-112) (-917) $) 35)) (-1476 (((-917) $) 50)) (-3573 (((-1151) $) NIL)) (-2555 (($ (-917)) 31)) (-3652 (((-3 $ "failed") $ (-917)) 55)) (-1694 (((-1113) $) NIL)) (-3997 (((-1257 $)) 40)) (-2666 (((-640 (-917)) $) 24)) (-1648 (((-767) $ (-917) (-917)) 56)) (-1693 (((-858) $) 29)) (-1718 (((-112) $ $) 21)))
-(((-1094 |#1| |#2|) (-13 (-368) (-10 -8 (-15 -3652 ((-3 $ "failed") $ (-917))) (-15 -1668 ((-3 $ "failed") $ (-917) (-917))) (-15 -2666 ((-640 (-917)) $)) (-15 -2610 ($ (-640 (-917)))) (-15 -3997 ((-1257 $))) (-15 -1729 ((-112) (-917) $)) (-15 -1648 ((-767) $ (-917) (-917))))) (-917) (-917)) (T -1094))
-((-3652 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-917)) (-5 *1 (-1094 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-1668 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-917)) (-5 *1 (-1094 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-2666 (*1 *2 *1) (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1094 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917)))) (-2610 (*1 *1 *2) (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1094 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917)))) (-3997 (*1 *2) (-12 (-5 *2 (-1257 (-1094 *3 *4))) (-5 *1 (-1094 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917)))) (-1729 (*1 *2 *3 *1) (-12 (-5 *3 (-917)) (-5 *2 (-112)) (-5 *1 (-1094 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-1648 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-917)) (-5 *2 (-767)) (-5 *1 (-1094 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
-(-13 (-368) (-10 -8 (-15 -3652 ((-3 $ "failed") $ (-917))) (-15 -1668 ((-3 $ "failed") $ (-917) (-917))) (-15 -2666 ((-640 (-917)) $)) (-15 -2610 ($ (-640 (-917)))) (-15 -3997 ((-1257 $))) (-15 -1729 ((-112) (-917) $)) (-15 -1648 ((-767) $ (-917) (-917)))))
-((-1677 (((-112) $ $) NIL)) (-2941 (($) NIL (|has| |#1| (-368)))) (-2583 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 71)) (-4314 (($ $ $) 69)) (-4149 (((-112) $ $) 70)) (-2759 (((-112) $ (-767)) NIL)) (-3749 (((-767)) NIL (|has| |#1| (-368)))) (-1584 (($ (-640 |#1|)) NIL) (($) 13)) (-2812 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2705 (($ |#1| $) 65 (|has| $ (-6 -4407))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 41 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) 39 (|has| $ (-6 -4407)))) (-1691 (($) NIL (|has| |#1| (-368)))) (-2659 (((-640 |#1|) $) 19 (|has| $ (-6 -4407)))) (-2539 (((-112) $ $) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-3084 ((|#1| $) 55 (|has| |#1| (-846)))) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 64 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1777 ((|#1| $) 53 (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 34)) (-1476 (((-917) $) NIL (|has| |#1| (-368)))) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-2550 (($ $ $) 67)) (-2964 ((|#1| $) 25)) (-1812 (($ |#1| $) 63)) (-2555 (($ (-917)) NIL (|has| |#1| (-368)))) (-1694 (((-1113) $) NIL)) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 31)) (-3755 ((|#1| $) 27)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) 21)) (-3135 (($) 11)) (-1629 (($ $ |#1|) NIL) (($ $ $) 68)) (-3890 (($) NIL) (($ (-640 |#1|)) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) 16)) (-2220 (((-536) $) 50 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 59)) (-3085 (($ $) NIL (|has| |#1| (-368)))) (-1693 (((-858) $) NIL)) (-1663 (((-767) $) NIL)) (-2534 (($ (-640 |#1|)) NIL) (($) 12)) (-2233 (($ (-640 |#1|)) NIL)) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 52)) (-3608 (((-767) $) 10 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3750 (((-767)) 30)) (-2686 (($ (-640 (-917))) 52)) (-2704 (((-3 $ "failed") $ (-917) (-917)) 58)) (-1690 (($) 32)) (-2667 (((-112) (-917) $) 35)) (-3990 (((-917) $) 50)) (-3854 (((-1151) $) NIL)) (-2552 (($ (-917)) 31)) (-2714 (((-3 $ "failed") $ (-917)) 55)) (-1693 (((-1113) $) NIL)) (-2678 (((-1257 $)) 40)) (-2694 (((-640 (-917)) $) 24)) (-1648 (((-767) $ (-917) (-917)) 56)) (-1692 (((-858) $) 29)) (-1718 (((-112) $ $) 21)))
+(((-1094 |#1| |#2|) (-13 (-368) (-10 -8 (-15 -2714 ((-3 $ "failed") $ (-917))) (-15 -2704 ((-3 $ "failed") $ (-917) (-917))) (-15 -2694 ((-640 (-917)) $)) (-15 -2686 ($ (-640 (-917)))) (-15 -2678 ((-1257 $))) (-15 -2667 ((-112) (-917) $)) (-15 -1648 ((-767) $ (-917) (-917))))) (-917) (-917)) (T -1094))
+((-2714 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-917)) (-5 *1 (-1094 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-2704 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-917)) (-5 *1 (-1094 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-2694 (*1 *2 *1) (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1094 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917)))) (-2686 (*1 *1 *2) (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1094 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917)))) (-2678 (*1 *2) (-12 (-5 *2 (-1257 (-1094 *3 *4))) (-5 *1 (-1094 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917)))) (-2667 (*1 *2 *3 *1) (-12 (-5 *3 (-917)) (-5 *2 (-112)) (-5 *1 (-1094 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-1648 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-917)) (-5 *2 (-767)) (-5 *1 (-1094 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
+(-13 (-368) (-10 -8 (-15 -2714 ((-3 $ "failed") $ (-917))) (-15 -2704 ((-3 $ "failed") $ (-917) (-917))) (-15 -2694 ((-640 (-917)) $)) (-15 -2686 ($ (-640 (-917)))) (-15 -2678 ((-1257 $))) (-15 -2667 ((-112) (-917) $)) (-15 -1648 ((-767) $ (-917) (-917)))))
+((-1677 (((-112) $ $) NIL)) (-3533 (($) NIL (|has| |#1| (-368)))) (-2582 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 71)) (-3816 (($ $ $) 69)) (-3804 (((-112) $ $) 70)) (-3001 (((-112) $ (-767)) NIL)) (-3750 (((-767)) NIL (|has| |#1| (-368)))) (-1582 (($ (-640 |#1|)) NIL) (($) 13)) (-3678 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1691 (($ |#1| $) 65 (|has| $ (-6 -4408))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 41 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) 39 (|has| $ (-6 -4408)))) (-1690 (($) NIL (|has| |#1| (-368)))) (-2658 (((-640 |#1|) $) 19 (|has| $ (-6 -4408)))) (-3845 (((-112) $ $) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-3088 ((|#1| $) 55 (|has| |#1| (-846)))) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 64 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1776 ((|#1| $) 53 (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 34)) (-3990 (((-917) $) NIL (|has| |#1| (-368)))) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-3834 (($ $ $) 67)) (-2627 ((|#1| $) 25)) (-3867 (($ |#1| $) 63)) (-2552 (($ (-917)) NIL (|has| |#1| (-368)))) (-1693 (((-1113) $) NIL)) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 31)) (-2808 ((|#1| $) 27)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) 21)) (-3445 (($) 11)) (-3827 (($ $ |#1|) NIL) (($ $ $) 68)) (-3863 (($) NIL) (($ (-640 |#1|)) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) 16)) (-2219 (((-536) $) 50 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 59)) (-3545 (($ $) NIL (|has| |#1| (-368)))) (-1692 (((-858) $) NIL)) (-3556 (((-767) $) NIL)) (-2533 (($ (-640 |#1|)) NIL) (($) 12)) (-2820 (($ (-640 |#1|)) NIL)) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 52)) (-3610 (((-767) $) 10 (|has| $ (-6 -4408)))))
(((-1095 |#1|) (-425 |#1|) (-1093)) (T -1095))
NIL
(-425 |#1|)
-((-1677 (((-112) $ $) 7)) (-3264 (((-112) $) 32)) (-3674 ((|#2| $) 27)) (-4072 (((-112) $) 33)) (-3736 ((|#1| $) 28)) (-3611 (((-112) $) 35)) (-3243 (((-112) $) 37)) (-2341 (((-112) $) 34)) (-3573 (((-1151) $) 9)) (-3532 (((-112) $) 31)) (-3701 ((|#3| $) 26)) (-1694 (((-1113) $) 10)) (-3636 (((-112) $) 30)) (-4340 ((|#4| $) 25)) (-2474 ((|#5| $) 24)) (-1420 (((-112) $ $) 38)) (-2309 (($ $ (-563)) 20) (($ $ (-640 (-563))) 19)) (-2546 (((-640 $) $) 29)) (-2220 (($ |#1|) 44) (($ |#2|) 43) (($ |#3|) 42) (($ |#4|) 41) (($ |#5|) 40) (($ (-640 $)) 39)) (-1693 (((-858) $) 11)) (-3673 (($ $) 22)) (-3662 (($ $) 23)) (-1323 (((-112) $) 36)) (-1718 (((-112) $ $) 6)) (-3608 (((-563) $) 21)))
+((-1677 (((-112) $ $) 7)) (-2748 (((-112) $) 32)) (-3675 ((|#2| $) 27)) (-2759 (((-112) $) 33)) (-3737 ((|#1| $) 28)) (-2781 (((-112) $) 35)) (-2801 (((-112) $) 37)) (-2769 (((-112) $) 34)) (-3854 (((-1151) $) 9)) (-2736 (((-112) $) 31)) (-3702 ((|#3| $) 26)) (-1693 (((-1113) $) 10)) (-2724 (((-112) $) 30)) (-4341 ((|#4| $) 25)) (-2473 ((|#5| $) 24)) (-1420 (((-112) $ $) 38)) (-2308 (($ $ (-563)) 20) (($ $ (-640 (-563))) 19)) (-2545 (((-640 $) $) 29)) (-2219 (($ |#1|) 44) (($ |#2|) 43) (($ |#3|) 42) (($ |#4|) 41) (($ |#5|) 40) (($ (-640 $)) 39)) (-1692 (((-858) $) 11)) (-3674 (($ $) 22)) (-3663 (($ $) 23)) (-2791 (((-112) $) 36)) (-1718 (((-112) $ $) 6)) (-3610 (((-563) $) 21)))
(((-1096 |#1| |#2| |#3| |#4| |#5|) (-140) (-1093) (-1093) (-1093) (-1093) (-1093)) (T -1096))
-((-1420 (*1 *2 *1 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-3243 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-1323 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-3611 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-2341 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-4072 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-3264 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-3532 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-3636 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-2546 (*1 *2 *1) (-12 (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-640 *1)) (-4 *1 (-1096 *3 *4 *5 *6 *7)))) (-3736 (*1 *2 *1) (-12 (-4 *1 (-1096 *2 *3 *4 *5 *6)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)))) (-3674 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *2 *4 *5 *6)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)))) (-3701 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *2 *5 *6)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)))) (-4340 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *2 *6)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)))) (-2474 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *2)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)))) (-3662 (*1 *1 *1) (-12 (-4 *1 (-1096 *2 *3 *4 *5 *6)) (-4 *2 (-1093)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)))) (-3673 (*1 *1 *1) (-12 (-4 *1 (-1096 *2 *3 *4 *5 *6)) (-4 *2 (-1093)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)))) (-3608 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-563)))) (-2309 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)))) (-2309 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)))))
-(-13 (-1093) (-615 |t#1|) (-615 |t#2|) (-615 |t#3|) (-615 |t#4|) (-615 |t#4|) (-615 |t#5|) (-615 (-640 $)) (-10 -8 (-15 -1420 ((-112) $ $)) (-15 -3243 ((-112) $)) (-15 -1323 ((-112) $)) (-15 -3611 ((-112) $)) (-15 -2341 ((-112) $)) (-15 -4072 ((-112) $)) (-15 -3264 ((-112) $)) (-15 -3532 ((-112) $)) (-15 -3636 ((-112) $)) (-15 -2546 ((-640 $) $)) (-15 -3736 (|t#1| $)) (-15 -3674 (|t#2| $)) (-15 -3701 (|t#3| $)) (-15 -4340 (|t#4| $)) (-15 -2474 (|t#5| $)) (-15 -3662 ($ $)) (-15 -3673 ($ $)) (-15 -3608 ((-563) $)) (-15 -2309 ($ $ (-563))) (-15 -2309 ($ $ (-640 (-563))))))
+((-1420 (*1 *2 *1 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-2801 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-2791 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-2781 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-2769 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-2759 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-2748 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-2736 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-2724 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))) (-2545 (*1 *2 *1) (-12 (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-640 *1)) (-4 *1 (-1096 *3 *4 *5 *6 *7)))) (-3737 (*1 *2 *1) (-12 (-4 *1 (-1096 *2 *3 *4 *5 *6)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)))) (-3675 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *2 *4 *5 *6)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)))) (-3702 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *2 *5 *6)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)))) (-4341 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *2 *6)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)))) (-2473 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *2)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)))) (-3663 (*1 *1 *1) (-12 (-4 *1 (-1096 *2 *3 *4 *5 *6)) (-4 *2 (-1093)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)))) (-3674 (*1 *1 *1) (-12 (-4 *1 (-1096 *2 *3 *4 *5 *6)) (-4 *2 (-1093)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)))) (-3610 (*1 *2 *1) (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-563)))) (-2308 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)))) (-2308 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)))))
+(-13 (-1093) (-615 |t#1|) (-615 |t#2|) (-615 |t#3|) (-615 |t#4|) (-615 |t#4|) (-615 |t#5|) (-615 (-640 $)) (-10 -8 (-15 -1420 ((-112) $ $)) (-15 -2801 ((-112) $)) (-15 -2791 ((-112) $)) (-15 -2781 ((-112) $)) (-15 -2769 ((-112) $)) (-15 -2759 ((-112) $)) (-15 -2748 ((-112) $)) (-15 -2736 ((-112) $)) (-15 -2724 ((-112) $)) (-15 -2545 ((-640 $) $)) (-15 -3737 (|t#1| $)) (-15 -3675 (|t#2| $)) (-15 -3702 (|t#3| $)) (-15 -4341 (|t#4| $)) (-15 -2473 (|t#5| $)) (-15 -3663 ($ $)) (-15 -3674 ($ $)) (-15 -3610 ((-563) $)) (-15 -2308 ($ $ (-563))) (-15 -2308 ($ $ (-640 (-563))))))
(((-102) . T) ((-610 (-858)) . T) ((-615 (-640 $)) . T) ((-615 |#1|) . T) ((-615 |#2|) . T) ((-615 |#3|) . T) ((-615 |#4|) . T) ((-615 |#5|) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3264 (((-112) $) NIL)) (-3674 (((-1169) $) NIL)) (-4072 (((-112) $) NIL)) (-3736 (((-1151) $) NIL)) (-3611 (((-112) $) NIL)) (-3243 (((-112) $) NIL)) (-2341 (((-112) $) NIL)) (-3573 (((-1151) $) NIL)) (-3532 (((-112) $) NIL)) (-3701 (((-563) $) NIL)) (-1694 (((-1113) $) NIL)) (-3636 (((-112) $) NIL)) (-4340 (((-225) $) NIL)) (-2474 (((-858) $) NIL)) (-1420 (((-112) $ $) NIL)) (-2309 (($ $ (-563)) NIL) (($ $ (-640 (-563))) NIL)) (-2546 (((-640 $) $) NIL)) (-2220 (($ (-1151)) NIL) (($ (-1169)) NIL) (($ (-563)) NIL) (($ (-225)) NIL) (($ (-858)) NIL) (($ (-640 $)) NIL)) (-1693 (((-858) $) NIL)) (-3673 (($ $) NIL)) (-3662 (($ $) NIL)) (-1323 (((-112) $) NIL)) (-1718 (((-112) $ $) NIL)) (-3608 (((-563) $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-2748 (((-112) $) NIL)) (-3675 (((-1169) $) NIL)) (-2759 (((-112) $) NIL)) (-3737 (((-1151) $) NIL)) (-2781 (((-112) $) NIL)) (-2801 (((-112) $) NIL)) (-2769 (((-112) $) NIL)) (-3854 (((-1151) $) NIL)) (-2736 (((-112) $) NIL)) (-3702 (((-563) $) NIL)) (-1693 (((-1113) $) NIL)) (-2724 (((-112) $) NIL)) (-4341 (((-225) $) NIL)) (-2473 (((-858) $) NIL)) (-1420 (((-112) $ $) NIL)) (-2308 (($ $ (-563)) NIL) (($ $ (-640 (-563))) NIL)) (-2545 (((-640 $) $) NIL)) (-2219 (($ (-1151)) NIL) (($ (-1169)) NIL) (($ (-563)) NIL) (($ (-225)) NIL) (($ (-858)) NIL) (($ (-640 $)) NIL)) (-1692 (((-858) $) NIL)) (-3674 (($ $) NIL)) (-3663 (($ $) NIL)) (-2791 (((-112) $) NIL)) (-1718 (((-112) $ $) NIL)) (-3610 (((-563) $) NIL)))
(((-1097) (-1096 (-1151) (-1169) (-563) (-225) (-858))) (T -1097))
NIL
(-1096 (-1151) (-1169) (-563) (-225) (-858))
-((-1677 (((-112) $ $) NIL)) (-3264 (((-112) $) 39)) (-3674 ((|#2| $) 42)) (-4072 (((-112) $) 18)) (-3736 ((|#1| $) 19)) (-3611 (((-112) $) 37)) (-3243 (((-112) $) 14)) (-2341 (((-112) $) 38)) (-3573 (((-1151) $) NIL)) (-3532 (((-112) $) 40)) (-3701 ((|#3| $) 44)) (-1694 (((-1113) $) NIL)) (-3636 (((-112) $) 41)) (-4340 ((|#4| $) 43)) (-2474 ((|#5| $) 45)) (-1420 (((-112) $ $) 36)) (-2309 (($ $ (-563)) 56) (($ $ (-640 (-563))) 58)) (-2546 (((-640 $) $) 24)) (-2220 (($ |#1|) 47) (($ |#2|) 48) (($ |#3|) 49) (($ |#4|) 50) (($ |#5|) 51) (($ (-640 $)) 46)) (-1693 (((-858) $) 25)) (-3673 (($ $) 23)) (-3662 (($ $) 52)) (-1323 (((-112) $) 21)) (-1718 (((-112) $ $) 35)) (-3608 (((-563) $) 54)))
+((-1677 (((-112) $ $) NIL)) (-2748 (((-112) $) 39)) (-3675 ((|#2| $) 42)) (-2759 (((-112) $) 18)) (-3737 ((|#1| $) 19)) (-2781 (((-112) $) 37)) (-2801 (((-112) $) 14)) (-2769 (((-112) $) 38)) (-3854 (((-1151) $) NIL)) (-2736 (((-112) $) 40)) (-3702 ((|#3| $) 44)) (-1693 (((-1113) $) NIL)) (-2724 (((-112) $) 41)) (-4341 ((|#4| $) 43)) (-2473 ((|#5| $) 45)) (-1420 (((-112) $ $) 36)) (-2308 (($ $ (-563)) 56) (($ $ (-640 (-563))) 58)) (-2545 (((-640 $) $) 24)) (-2219 (($ |#1|) 47) (($ |#2|) 48) (($ |#3|) 49) (($ |#4|) 50) (($ |#5|) 51) (($ (-640 $)) 46)) (-1692 (((-858) $) 25)) (-3674 (($ $) 23)) (-3663 (($ $) 52)) (-2791 (((-112) $) 21)) (-1718 (((-112) $ $) 35)) (-3610 (((-563) $) 54)))
(((-1098 |#1| |#2| |#3| |#4| |#5|) (-1096 |#1| |#2| |#3| |#4| |#5|) (-1093) (-1093) (-1093) (-1093) (-1093)) (T -1098))
NIL
(-1096 |#1| |#2| |#3| |#4| |#5|)
-((-2615 (((-1262) $) 23)) (-3420 (($ (-1169) (-434) |#2|) 11)) (-1693 (((-858) $) 16)))
-(((-1099 |#1| |#2|) (-13 (-395) (-10 -8 (-15 -3420 ($ (-1169) (-434) |#2|)))) (-846) (-430 |#1|)) (T -1099))
-((-3420 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-434)) (-4 *5 (-846)) (-5 *1 (-1099 *5 *4)) (-4 *4 (-430 *5)))))
-(-13 (-395) (-10 -8 (-15 -3420 ($ (-1169) (-434) |#2|))))
-((-1918 (((-112) |#5| |#5|) 37)) (-1874 (((-112) |#5| |#5|) 51)) (-3607 (((-112) |#5| (-640 |#5|)) 74) (((-112) |#5| |#5|) 60)) (-2952 (((-112) (-640 |#4|) (-640 |#4|)) 57)) (-3150 (((-112) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) 62)) (-3044 (((-1262)) 33)) (-4387 (((-1262) (-1151) (-1151) (-1151)) 29)) (-3965 (((-640 |#5|) (-640 |#5|)) 81)) (-1530 (((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)))) 79)) (-1809 (((-640 (-2 (|:| -1420 (-640 |#4|)) (|:| -2059 |#5|) (|:| |ineq| (-640 |#4|)))) (-640 |#4|) (-640 |#5|) (-112) (-112)) 101)) (-3638 (((-112) |#5| |#5|) 46)) (-3506 (((-3 (-112) "failed") |#5| |#5|) 70)) (-3970 (((-112) (-640 |#4|) (-640 |#4|)) 56)) (-4342 (((-112) (-640 |#4|) (-640 |#4|)) 58)) (-3009 (((-112) (-640 |#4|) (-640 |#4|)) 59)) (-1737 (((-3 (-2 (|:| -1420 (-640 |#4|)) (|:| -2059 |#5|) (|:| |ineq| (-640 |#4|))) "failed") (-640 |#4|) |#5| (-640 |#4|) (-112) (-112) (-112) (-112) (-112)) 97)) (-1846 (((-640 |#5|) (-640 |#5|)) 42)))
-(((-1100 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4387 ((-1262) (-1151) (-1151) (-1151))) (-15 -3044 ((-1262))) (-15 -1918 ((-112) |#5| |#5|)) (-15 -1846 ((-640 |#5|) (-640 |#5|))) (-15 -3638 ((-112) |#5| |#5|)) (-15 -1874 ((-112) |#5| |#5|)) (-15 -2952 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -3970 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -4342 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -3009 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -3506 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3607 ((-112) |#5| |#5|)) (-15 -3607 ((-112) |#5| (-640 |#5|))) (-15 -3965 ((-640 |#5|) (-640 |#5|))) (-15 -3150 ((-112) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)))) (-15 -1530 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) (-15 -1809 ((-640 (-2 (|:| -1420 (-640 |#4|)) (|:| -2059 |#5|) (|:| |ineq| (-640 |#4|)))) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -1737 ((-3 (-2 (|:| -1420 (-640 |#4|)) (|:| -2059 |#5|) (|:| |ineq| (-640 |#4|))) "failed") (-640 |#4|) |#5| (-640 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1065 |#1| |#2| |#3| |#4|)) (T -1100))
-((-1737 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *9 (-1059 *6 *7 *8)) (-5 *2 (-2 (|:| -1420 (-640 *9)) (|:| -2059 *4) (|:| |ineq| (-640 *9)))) (-5 *1 (-1100 *6 *7 *8 *9 *4)) (-5 *3 (-640 *9)) (-4 *4 (-1065 *6 *7 *8 *9)))) (-1809 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-640 *10)) (-5 *5 (-112)) (-4 *10 (-1065 *6 *7 *8 *9)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *9 (-1059 *6 *7 *8)) (-5 *2 (-640 (-2 (|:| -1420 (-640 *9)) (|:| -2059 *10) (|:| |ineq| (-640 *9))))) (-5 *1 (-1100 *6 *7 *8 *9 *10)) (-5 *3 (-640 *9)))) (-1530 (*1 *2 *2) (-12 (-5 *2 (-640 (-2 (|:| |val| (-640 *6)) (|:| -2059 *7)))) (-4 *6 (-1059 *3 *4 *5)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-1100 *3 *4 *5 *6 *7)))) (-3150 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2059 *8))) (-4 *7 (-1059 *4 *5 *6)) (-4 *8 (-1065 *4 *5 *6 *7)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *8)))) (-3965 (*1 *2 *2) (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *1 (-1100 *3 *4 *5 *6 *7)))) (-3607 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *3)) (-4 *3 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1100 *5 *6 *7 *8 *3)))) (-3607 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-3506 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-3009 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-4342 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-3970 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-2952 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-1874 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-3638 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-1846 (*1 *2 *2) (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *1 (-1100 *3 *4 *5 *6 *7)))) (-1918 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-3044 (*1 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262)) (-5 *1 (-1100 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))) (-4387 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262)) (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
-(-10 -7 (-15 -4387 ((-1262) (-1151) (-1151) (-1151))) (-15 -3044 ((-1262))) (-15 -1918 ((-112) |#5| |#5|)) (-15 -1846 ((-640 |#5|) (-640 |#5|))) (-15 -3638 ((-112) |#5| |#5|)) (-15 -1874 ((-112) |#5| |#5|)) (-15 -2952 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -3970 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -4342 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -3009 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -3506 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3607 ((-112) |#5| |#5|)) (-15 -3607 ((-112) |#5| (-640 |#5|))) (-15 -3965 ((-640 |#5|) (-640 |#5|))) (-15 -3150 ((-112) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)))) (-15 -1530 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) (-15 -1809 ((-640 (-2 (|:| -1420 (-640 |#4|)) (|:| -2059 |#5|) (|:| |ineq| (-640 |#4|)))) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -1737 ((-3 (-2 (|:| -1420 (-640 |#4|)) (|:| -2059 |#5|) (|:| |ineq| (-640 |#4|))) "failed") (-640 |#4|) |#5| (-640 |#4|) (-112) (-112) (-112) (-112) (-112))))
-((-1991 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#5|) 95)) (-3016 (((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) |#4| |#4| |#5|) 71)) (-1329 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5|) 89)) (-3268 (((-640 |#5|) |#4| |#5|) 109)) (-1805 (((-640 |#5|) |#4| |#5|) 116)) (-3143 (((-640 |#5|) |#4| |#5|) 117)) (-4347 (((-640 (-2 (|:| |val| (-112)) (|:| -2059 |#5|))) |#4| |#5|) 96)) (-1500 (((-640 (-2 (|:| |val| (-112)) (|:| -2059 |#5|))) |#4| |#5|) 115)) (-1954 (((-640 (-2 (|:| |val| (-112)) (|:| -2059 |#5|))) |#4| |#5|) 46) (((-112) |#4| |#5|) 53)) (-2925 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) |#3| (-112)) 83) (((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5| (-112) (-112)) 50)) (-1612 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5|) 78)) (-3117 (((-1262)) 37)) (-2279 (((-1262)) 26)) (-3688 (((-1262) (-1151) (-1151) (-1151)) 33)) (-2574 (((-1262) (-1151) (-1151) (-1151)) 22)))
-(((-1101 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2574 ((-1262) (-1151) (-1151) (-1151))) (-15 -2279 ((-1262))) (-15 -3688 ((-1262) (-1151) (-1151) (-1151))) (-15 -3117 ((-1262))) (-15 -3016 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) |#4| |#4| |#5|)) (-15 -2925 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2925 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) |#3| (-112))) (-15 -1612 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5|)) (-15 -1329 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5|)) (-15 -1954 ((-112) |#4| |#5|)) (-15 -4347 ((-640 (-2 (|:| |val| (-112)) (|:| -2059 |#5|))) |#4| |#5|)) (-15 -3268 ((-640 |#5|) |#4| |#5|)) (-15 -1500 ((-640 (-2 (|:| |val| (-112)) (|:| -2059 |#5|))) |#4| |#5|)) (-15 -1805 ((-640 |#5|) |#4| |#5|)) (-15 -1954 ((-640 (-2 (|:| |val| (-112)) (|:| -2059 |#5|))) |#4| |#5|)) (-15 -3143 ((-640 |#5|) |#4| |#5|)) (-15 -1991 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#5|))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1065 |#1| |#2| |#3| |#4|)) (T -1101))
-((-1991 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4)))) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3143 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4)) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-1954 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2059 *4)))) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-1805 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4)) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-1500 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2059 *4)))) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3268 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4)) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-4347 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2059 *4)))) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-1954 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-1329 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4)))) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-1612 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4)))) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-2925 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2059 *9)))) (-5 *5 (-112)) (-4 *8 (-1059 *6 *7 *4)) (-4 *9 (-1065 *6 *7 *4 *8)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *4 (-846)) (-5 *2 (-640 (-2 (|:| |val| *8) (|:| -2059 *9)))) (-5 *1 (-1101 *6 *7 *4 *8 *9)))) (-2925 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *3 (-1059 *6 *7 *8)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4)))) (-5 *1 (-1101 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3)))) (-3016 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4)))) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3117 (*1 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262)) (-5 *1 (-1101 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))) (-3688 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262)) (-5 *1 (-1101 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-2279 (*1 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262)) (-5 *1 (-1101 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))) (-2574 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262)) (-5 *1 (-1101 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2574 ((-1262) (-1151) (-1151) (-1151))) (-15 -2279 ((-1262))) (-15 -3688 ((-1262) (-1151) (-1151) (-1151))) (-15 -3117 ((-1262))) (-15 -3016 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) |#4| |#4| |#5|)) (-15 -2925 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2925 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) |#3| (-112))) (-15 -1612 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5|)) (-15 -1329 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#4| |#5|)) (-15 -1954 ((-112) |#4| |#5|)) (-15 -4347 ((-640 (-2 (|:| |val| (-112)) (|:| -2059 |#5|))) |#4| |#5|)) (-15 -3268 ((-640 |#5|) |#4| |#5|)) (-15 -1500 ((-640 (-2 (|:| |val| (-112)) (|:| -2059 |#5|))) |#4| |#5|)) (-15 -1805 ((-640 |#5|) |#4| |#5|)) (-15 -1954 ((-640 (-2 (|:| |val| (-112)) (|:| -2059 |#5|))) |#4| |#5|)) (-15 -3143 ((-640 |#5|) |#4| |#5|)) (-15 -1991 ((-640 (-2 (|:| |val| |#4|) (|:| -2059 |#5|))) |#4| |#5|)))
-((-1677 (((-112) $ $) 7)) (-1578 (((-640 (-2 (|:| -1442 $) (|:| -3405 (-640 |#4|)))) (-640 |#4|)) 85)) (-3319 (((-640 $) (-640 |#4|)) 86) (((-640 $) (-640 |#4|) (-112)) 111)) (-2606 (((-640 |#3|) $) 33)) (-1706 (((-112) $) 26)) (-3854 (((-112) $) 17 (|has| |#1| (-555)))) (-2620 (((-112) |#4| $) 101) (((-112) $) 97)) (-4053 ((|#4| |#4| $) 92)) (-4335 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 $))) |#4| $) 126)) (-1642 (((-2 (|:| |under| $) (|:| -1583 $) (|:| |upper| $)) $ |#3|) 27)) (-2759 (((-112) $ (-767)) 44)) (-2256 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4407))) (((-3 |#4| "failed") $ |#3|) 79)) (-4239 (($) 45 T CONST)) (-1483 (((-112) $) 22 (|has| |#1| (-555)))) (-1626 (((-112) $ $) 24 (|has| |#1| (-555)))) (-4221 (((-112) $ $) 23 (|has| |#1| (-555)))) (-1763 (((-112) $) 25 (|has| |#1| (-555)))) (-1833 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3746 (((-640 |#4|) (-640 |#4|) $) 18 (|has| |#1| (-555)))) (-1866 (((-640 |#4|) (-640 |#4|) $) 19 (|has| |#1| (-555)))) (-2131 (((-3 $ "failed") (-640 |#4|)) 36)) (-2058 (($ (-640 |#4|)) 35)) (-3792 (((-3 $ "failed") $) 82)) (-1719 ((|#4| |#4| $) 89)) (-3813 (($ $) 68 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ |#4| $) 67 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4407)))) (-1972 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-555)))) (-3990 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-3948 ((|#4| |#4| $) 87)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4407))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4407))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2144 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3405 (-640 |#4|))) $) 105)) (-2313 (((-112) |#4| $) 136)) (-3748 (((-112) |#4| $) 133)) (-1871 (((-112) |#4| $) 137) (((-112) $) 134)) (-2659 (((-640 |#4|) $) 52 (|has| $ (-6 -4407)))) (-2299 (((-112) |#4| $) 104) (((-112) $) 103)) (-2957 ((|#3| $) 34)) (-2581 (((-112) $ (-767)) 43)) (-2259 (((-640 |#4|) $) 53 (|has| $ (-6 -4407)))) (-1729 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#4| |#4|) $) 47)) (-2965 (((-640 |#3|) $) 32)) (-2780 (((-112) |#3| $) 31)) (-2382 (((-112) $ (-767)) 42)) (-3573 (((-1151) $) 9)) (-3083 (((-3 |#4| (-640 $)) |#4| |#4| $) 128)) (-2898 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 $))) |#4| |#4| $) 127)) (-1481 (((-3 |#4| "failed") $) 83)) (-3764 (((-640 $) |#4| $) 129)) (-1334 (((-3 (-112) (-640 $)) |#4| $) 132)) (-2069 (((-640 (-2 (|:| |val| (-112)) (|:| -2059 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-2550 (((-640 $) |#4| $) 125) (((-640 $) (-640 |#4|) $) 124) (((-640 $) (-640 |#4|) (-640 $)) 123) (((-640 $) |#4| (-640 $)) 122)) (-3291 (($ |#4| $) 117) (($ (-640 |#4|) $) 116)) (-2820 (((-640 |#4|) $) 107)) (-4197 (((-112) |#4| $) 99) (((-112) $) 95)) (-2715 ((|#4| |#4| $) 90)) (-3009 (((-112) $ $) 110)) (-2152 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-555)))) (-2031 (((-112) |#4| $) 100) (((-112) $) 96)) (-4056 ((|#4| |#4| $) 91)) (-1694 (((-1113) $) 10)) (-3781 (((-3 |#4| "failed") $) 84)) (-4203 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-3479 (((-3 $ "failed") $ |#4|) 78)) (-3320 (($ $ |#4|) 77) (((-640 $) |#4| $) 115) (((-640 $) |#4| (-640 $)) 114) (((-640 $) (-640 |#4|) $) 113) (((-640 $) (-640 |#4|) (-640 $)) 112)) (-3138 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 |#4|) (-640 |#4|)) 59 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) 57 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) 56 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2026 (((-112) $ $) 38)) (-3756 (((-112) $) 41)) (-3135 (($) 40)) (-4167 (((-767) $) 106)) (-1709 (((-767) |#4| $) 54 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) (((-767) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4407)))) (-1872 (($ $) 39)) (-2220 (((-536) $) 69 (|has| |#4| (-611 (-536))))) (-1707 (($ (-640 |#4|)) 60)) (-3577 (($ $ |#3|) 28)) (-1593 (($ $ |#3|) 30)) (-1924 (($ $) 88)) (-4192 (($ $ |#3|) 29)) (-1693 (((-858) $) 11) (((-640 |#4|) $) 37)) (-2437 (((-767) $) 76 (|has| |#3| (-368)))) (-2540 (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-2691 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) 98)) (-2175 (((-640 $) |#4| $) 121) (((-640 $) |#4| (-640 $)) 120) (((-640 $) (-640 |#4|) $) 119) (((-640 $) (-640 |#4|) (-640 $)) 118)) (-4383 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4407)))) (-1955 (((-640 |#3|) $) 81)) (-4279 (((-112) |#4| $) 135)) (-3152 (((-112) |#3| $) 80)) (-1718 (((-112) $ $) 6)) (-3608 (((-767) $) 46 (|has| $ (-6 -4407)))))
+((-2615 (((-1262) $) 23)) (-3424 (($ (-1169) (-434) |#2|) 11)) (-1692 (((-858) $) 16)))
+(((-1099 |#1| |#2|) (-13 (-395) (-10 -8 (-15 -3424 ($ (-1169) (-434) |#2|)))) (-846) (-430 |#1|)) (T -1099))
+((-3424 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1169)) (-5 *3 (-434)) (-4 *5 (-846)) (-5 *1 (-1099 *5 *4)) (-4 *4 (-430 *5)))))
+(-13 (-395) (-10 -8 (-15 -3424 ($ (-1169) (-434) |#2|))))
+((-2836 (((-112) |#5| |#5|) 37)) (-2866 (((-112) |#5| |#5|) 51)) (-2912 (((-112) |#5| (-640 |#5|)) 74) (((-112) |#5| |#5|) 60)) (-2875 (((-112) (-640 |#4|) (-640 |#4|)) 57)) (-2931 (((-112) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) 62)) (-2824 (((-1262)) 33)) (-2812 (((-1262) (-1151) (-1151) (-1151)) 29)) (-2921 (((-640 |#5|) (-640 |#5|)) 81)) (-2940 (((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)))) 79)) (-2950 (((-640 (-2 (|:| -1420 (-640 |#4|)) (|:| -2058 |#5|) (|:| |ineq| (-640 |#4|)))) (-640 |#4|) (-640 |#5|) (-112) (-112)) 101)) (-2856 (((-112) |#5| |#5|) 46)) (-2902 (((-3 (-112) "failed") |#5| |#5|) 70)) (-2884 (((-112) (-640 |#4|) (-640 |#4|)) 56)) (-2893 (((-112) (-640 |#4|) (-640 |#4|)) 58)) (-2319 (((-112) (-640 |#4|) (-640 |#4|)) 59)) (-2961 (((-3 (-2 (|:| -1420 (-640 |#4|)) (|:| -2058 |#5|) (|:| |ineq| (-640 |#4|))) "failed") (-640 |#4|) |#5| (-640 |#4|) (-112) (-112) (-112) (-112) (-112)) 97)) (-2847 (((-640 |#5|) (-640 |#5|)) 42)))
+(((-1100 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2812 ((-1262) (-1151) (-1151) (-1151))) (-15 -2824 ((-1262))) (-15 -2836 ((-112) |#5| |#5|)) (-15 -2847 ((-640 |#5|) (-640 |#5|))) (-15 -2856 ((-112) |#5| |#5|)) (-15 -2866 ((-112) |#5| |#5|)) (-15 -2875 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2884 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2893 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2319 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2902 ((-3 (-112) "failed") |#5| |#5|)) (-15 -2912 ((-112) |#5| |#5|)) (-15 -2912 ((-112) |#5| (-640 |#5|))) (-15 -2921 ((-640 |#5|) (-640 |#5|))) (-15 -2931 ((-112) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)))) (-15 -2940 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) (-15 -2950 ((-640 (-2 (|:| -1420 (-640 |#4|)) (|:| -2058 |#5|) (|:| |ineq| (-640 |#4|)))) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -2961 ((-3 (-2 (|:| -1420 (-640 |#4|)) (|:| -2058 |#5|) (|:| |ineq| (-640 |#4|))) "failed") (-640 |#4|) |#5| (-640 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1065 |#1| |#2| |#3| |#4|)) (T -1100))
+((-2961 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *9 (-1059 *6 *7 *8)) (-5 *2 (-2 (|:| -1420 (-640 *9)) (|:| -2058 *4) (|:| |ineq| (-640 *9)))) (-5 *1 (-1100 *6 *7 *8 *9 *4)) (-5 *3 (-640 *9)) (-4 *4 (-1065 *6 *7 *8 *9)))) (-2950 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-640 *10)) (-5 *5 (-112)) (-4 *10 (-1065 *6 *7 *8 *9)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *9 (-1059 *6 *7 *8)) (-5 *2 (-640 (-2 (|:| -1420 (-640 *9)) (|:| -2058 *10) (|:| |ineq| (-640 *9))))) (-5 *1 (-1100 *6 *7 *8 *9 *10)) (-5 *3 (-640 *9)))) (-2940 (*1 *2 *2) (-12 (-5 *2 (-640 (-2 (|:| |val| (-640 *6)) (|:| -2058 *7)))) (-4 *6 (-1059 *3 *4 *5)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-1100 *3 *4 *5 *6 *7)))) (-2931 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2058 *8))) (-4 *7 (-1059 *4 *5 *6)) (-4 *8 (-1065 *4 *5 *6 *7)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *8)))) (-2921 (*1 *2 *2) (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *1 (-1100 *3 *4 *5 *6 *7)))) (-2912 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *3)) (-4 *3 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1100 *5 *6 *7 *8 *3)))) (-2912 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-2902 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-2319 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-2893 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-2884 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-2875 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-2866 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-2856 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-2847 (*1 *2 *2) (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *1 (-1100 *3 *4 *5 *6 *7)))) (-2836 (*1 *2 *3 *3) (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))) (-2824 (*1 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262)) (-5 *1 (-1100 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))) (-2812 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262)) (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2812 ((-1262) (-1151) (-1151) (-1151))) (-15 -2824 ((-1262))) (-15 -2836 ((-112) |#5| |#5|)) (-15 -2847 ((-640 |#5|) (-640 |#5|))) (-15 -2856 ((-112) |#5| |#5|)) (-15 -2866 ((-112) |#5| |#5|)) (-15 -2875 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2884 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2893 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2319 ((-112) (-640 |#4|) (-640 |#4|))) (-15 -2902 ((-3 (-112) "failed") |#5| |#5|)) (-15 -2912 ((-112) |#5| |#5|)) (-15 -2912 ((-112) |#5| (-640 |#5|))) (-15 -2921 ((-640 |#5|) (-640 |#5|))) (-15 -2931 ((-112) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)))) (-15 -2940 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) (-15 -2950 ((-640 (-2 (|:| -1420 (-640 |#4|)) (|:| -2058 |#5|) (|:| |ineq| (-640 |#4|)))) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -2961 ((-3 (-2 (|:| -1420 (-640 |#4|)) (|:| -2058 |#5|) (|:| |ineq| (-640 |#4|))) "failed") (-640 |#4|) |#5| (-640 |#4|) (-112) (-112) (-112) (-112) (-112))))
+((-3117 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#5|) 94)) (-3011 (((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) |#4| |#4| |#5|) 71)) (-3041 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5|) 89)) (-3063 (((-640 |#5|) |#4| |#5|) 108)) (-3081 (((-640 |#5|) |#4| |#5|) 115)) (-3105 (((-640 |#5|) |#4| |#5|) 116)) (-3053 (((-640 (-2 (|:| |val| (-112)) (|:| -2058 |#5|))) |#4| |#5|) 95)) (-3072 (((-640 (-2 (|:| |val| (-112)) (|:| -2058 |#5|))) |#4| |#5|) 114)) (-3093 (((-640 (-2 (|:| |val| (-112)) (|:| -2058 |#5|))) |#4| |#5|) 46) (((-112) |#4| |#5|) 53)) (-3022 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) |#3| (-112)) 83) (((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5| (-112) (-112)) 50)) (-3031 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5|) 78)) (-3000 (((-1262)) 37)) (-2980 (((-1262)) 26)) (-2989 (((-1262) (-1151) (-1151) (-1151)) 33)) (-2971 (((-1262) (-1151) (-1151) (-1151)) 22)))
+(((-1101 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2971 ((-1262) (-1151) (-1151) (-1151))) (-15 -2980 ((-1262))) (-15 -2989 ((-1262) (-1151) (-1151) (-1151))) (-15 -3000 ((-1262))) (-15 -3011 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) |#4| |#4| |#5|)) (-15 -3022 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3022 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) |#3| (-112))) (-15 -3031 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5|)) (-15 -3041 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5|)) (-15 -3093 ((-112) |#4| |#5|)) (-15 -3053 ((-640 (-2 (|:| |val| (-112)) (|:| -2058 |#5|))) |#4| |#5|)) (-15 -3063 ((-640 |#5|) |#4| |#5|)) (-15 -3072 ((-640 (-2 (|:| |val| (-112)) (|:| -2058 |#5|))) |#4| |#5|)) (-15 -3081 ((-640 |#5|) |#4| |#5|)) (-15 -3093 ((-640 (-2 (|:| |val| (-112)) (|:| -2058 |#5|))) |#4| |#5|)) (-15 -3105 ((-640 |#5|) |#4| |#5|)) (-15 -3117 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#5|))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1065 |#1| |#2| |#3| |#4|)) (T -1101))
+((-3117 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4)))) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3105 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4)) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3093 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2058 *4)))) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3081 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4)) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3072 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2058 *4)))) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3063 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4)) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3053 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2058 *4)))) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3093 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3041 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4)))) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3031 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4)))) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3022 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2058 *9)))) (-5 *5 (-112)) (-4 *8 (-1059 *6 *7 *4)) (-4 *9 (-1065 *6 *7 *4 *8)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *4 (-846)) (-5 *2 (-640 (-2 (|:| |val| *8) (|:| -2058 *9)))) (-5 *1 (-1101 *6 *7 *4 *8 *9)))) (-3022 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *3 (-1059 *6 *7 *8)) (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4)))) (-5 *1 (-1101 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3)))) (-3011 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4)))) (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))) (-3000 (*1 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262)) (-5 *1 (-1101 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))) (-2989 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262)) (-5 *1 (-1101 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))) (-2980 (*1 *2) (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262)) (-5 *1 (-1101 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))) (-2971 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262)) (-5 *1 (-1101 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2971 ((-1262) (-1151) (-1151) (-1151))) (-15 -2980 ((-1262))) (-15 -2989 ((-1262) (-1151) (-1151) (-1151))) (-15 -3000 ((-1262))) (-15 -3011 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) |#4| |#4| |#5|)) (-15 -3022 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3022 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) |#3| (-112))) (-15 -3031 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5|)) (-15 -3041 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#4| |#5|)) (-15 -3093 ((-112) |#4| |#5|)) (-15 -3053 ((-640 (-2 (|:| |val| (-112)) (|:| -2058 |#5|))) |#4| |#5|)) (-15 -3063 ((-640 |#5|) |#4| |#5|)) (-15 -3072 ((-640 (-2 (|:| |val| (-112)) (|:| -2058 |#5|))) |#4| |#5|)) (-15 -3081 ((-640 |#5|) |#4| |#5|)) (-15 -3093 ((-640 (-2 (|:| |val| (-112)) (|:| -2058 |#5|))) |#4| |#5|)) (-15 -3105 ((-640 |#5|) |#4| |#5|)) (-15 -3117 ((-640 (-2 (|:| |val| |#4|) (|:| -2058 |#5|))) |#4| |#5|)))
+((-1677 (((-112) $ $) 7)) (-2110 (((-640 (-2 (|:| -1442 $) (|:| -3409 (-640 |#4|)))) (-640 |#4|)) 85)) (-2119 (((-640 $) (-640 |#4|)) 86) (((-640 $) (-640 |#4|) (-112)) 111)) (-2605 (((-640 |#3|) $) 33)) (-3508 (((-112) $) 26)) (-3406 (((-112) $) 17 (|has| |#1| (-555)))) (-2254 (((-112) |#4| $) 101) (((-112) $) 97)) (-2189 ((|#4| |#4| $) 92)) (-1798 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 $))) |#4| $) 126)) (-1640 (((-2 (|:| |under| $) (|:| -3954 $) (|:| |upper| $)) $ |#3|) 27)) (-3001 (((-112) $ (-767)) 44)) (-2255 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4408))) (((-3 |#4| "failed") $ |#3|) 79)) (-2569 (($) 45 T CONST)) (-3466 (((-112) $) 22 (|has| |#1| (-555)))) (-3486 (((-112) $ $) 24 (|has| |#1| (-555)))) (-3476 (((-112) $ $) 23 (|has| |#1| (-555)))) (-3496 (((-112) $) 25 (|has| |#1| (-555)))) (-2201 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3418 (((-640 |#4|) (-640 |#4|) $) 18 (|has| |#1| (-555)))) (-3431 (((-640 |#4|) (-640 |#4|) $) 19 (|has| |#1| (-555)))) (-2130 (((-3 $ "failed") (-640 |#4|)) 36)) (-2057 (($ (-640 |#4|)) 35)) (-3793 (((-3 $ "failed") $) 82)) (-2151 ((|#4| |#4| $) 89)) (-3814 (($ $) 68 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ |#4| $) 67 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4408)))) (-3443 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-555)))) (-2264 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-2131 ((|#4| |#4| $) 87)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4408))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4408))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2284 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3409 (-640 |#4|))) $) 105)) (-3536 (((-112) |#4| $) 136)) (-3514 (((-112) |#4| $) 133)) (-3548 (((-112) |#4| $) 137) (((-112) $) 134)) (-2658 (((-640 |#4|) $) 52 (|has| $ (-6 -4408)))) (-2274 (((-112) |#4| $) 104) (((-112) $) 103)) (-3354 ((|#3| $) 34)) (-2514 (((-112) $ (-767)) 43)) (-3523 (((-640 |#4|) $) 53 (|has| $ (-6 -4408)))) (-2667 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#4| |#4|) $) 47)) (-3568 (((-640 |#3|) $) 32)) (-3553 (((-112) |#3| $) 31)) (-2481 (((-112) $ (-767)) 42)) (-3854 (((-1151) $) 9)) (-3472 (((-3 |#4| (-640 $)) |#4| |#4| $) 128)) (-3461 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 $))) |#4| |#4| $) 127)) (-1481 (((-3 |#4| "failed") $) 83)) (-3482 (((-640 $) |#4| $) 129)) (-3503 (((-3 (-112) (-640 $)) |#4| $) 132)) (-3492 (((-640 (-2 (|:| |val| (-112)) (|:| -2058 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-3834 (((-640 $) |#4| $) 125) (((-640 $) (-640 |#4|) $) 124) (((-640 $) (-640 |#4|) (-640 $)) 123) (((-640 $) |#4| (-640 $)) 122)) (-1956 (($ |#4| $) 117) (($ (-640 |#4|) $) 116)) (-2297 (((-640 |#4|) $) 107)) (-2225 (((-112) |#4| $) 99) (((-112) $) 95)) (-2163 ((|#4| |#4| $) 90)) (-2319 (((-112) $ $) 110)) (-3454 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-555)))) (-2241 (((-112) |#4| $) 100) (((-112) $) 96)) (-2176 ((|#4| |#4| $) 91)) (-1693 (((-1113) $) 10)) (-3782 (((-3 |#4| "failed") $) 84)) (-1971 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-2089 (((-3 $ "failed") $ |#4|) 78)) (-1751 (($ $ |#4|) 77) (((-640 $) |#4| $) 115) (((-640 $) |#4| (-640 $)) 114) (((-640 $) (-640 |#4|) $) 113) (((-640 $) (-640 |#4|) (-640 $)) 112)) (-1458 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 |#4|) (-640 |#4|)) 59 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) 57 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) 56 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2941 (((-112) $ $) 38)) (-1665 (((-112) $) 41)) (-3445 (($) 40)) (-3871 (((-767) $) 106)) (-1708 (((-767) |#4| $) 54 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) (((-767) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4408)))) (-1870 (($ $) 39)) (-2219 (((-536) $) 69 (|has| |#4| (-611 (-536))))) (-1706 (($ (-640 |#4|)) 60)) (-3519 (($ $ |#3|) 28)) (-3542 (($ $ |#3|) 30)) (-2141 (($ $) 88)) (-3529 (($ $ |#3|) 29)) (-1692 (((-858) $) 11) (((-640 |#4|) $) 37)) (-3255 (((-767) $) 76 (|has| |#3| (-368)))) (-2307 (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-2211 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) 98)) (-3450 (((-640 $) |#4| $) 121) (((-640 $) |#4| (-640 $)) 120) (((-640 $) (-640 |#4|) $) 119) (((-640 $) (-640 |#4|) (-640 $)) 118)) (-1471 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4408)))) (-2100 (((-640 |#3|) $) 81)) (-3525 (((-112) |#4| $) 135)) (-3772 (((-112) |#3| $) 80)) (-1718 (((-112) $ $) 6)) (-3610 (((-767) $) 46 (|has| $ (-6 -4408)))))
(((-1102 |#1| |#2| |#3| |#4|) (-140) (-452) (-789) (-846) (-1059 |t#1| |t#2| |t#3|)) (T -1102))
NIL
(-13 (-1065 |t#1| |t#2| |t#3| |t#4|))
(((-34) . T) ((-102) . T) ((-610 (-640 |#4|)) . T) ((-610 (-858)) . T) ((-151 |#4|) . T) ((-611 (-536)) |has| |#4| (-611 (-536))) ((-309 |#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))) ((-489 |#4|) . T) ((-514 |#4| |#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))) ((-972 |#1| |#2| |#3| |#4|) . T) ((-1065 |#1| |#2| |#3| |#4|) . T) ((-1093) . T) ((-1201 |#1| |#2| |#3| |#4|) . T) ((-1208) . T))
-((-3620 (((-640 (-563)) (-563) (-563) (-563)) 22)) (-3095 (((-640 (-563)) (-563) (-563) (-563)) 12)) (-3770 (((-640 (-563)) (-563) (-563) (-563)) 18)) (-3315 (((-563) (-563) (-563)) 9)) (-2210 (((-1257 (-563)) (-640 (-563)) (-1257 (-563)) (-563)) 45) (((-1257 (-563)) (-1257 (-563)) (-1257 (-563)) (-563)) 40)) (-1398 (((-640 (-563)) (-640 (-563)) (-640 (-563)) (-112)) 27)) (-2334 (((-684 (-563)) (-640 (-563)) (-640 (-563)) (-684 (-563))) 44)) (-4366 (((-684 (-563)) (-640 (-563)) (-640 (-563))) 32)) (-2707 (((-640 (-684 (-563))) (-640 (-563))) 34)) (-2460 (((-640 (-563)) (-640 (-563)) (-640 (-563)) (-684 (-563))) 48)) (-3622 (((-684 (-563)) (-640 (-563)) (-640 (-563)) (-640 (-563))) 56)))
-(((-1103) (-10 -7 (-15 -3622 ((-684 (-563)) (-640 (-563)) (-640 (-563)) (-640 (-563)))) (-15 -2460 ((-640 (-563)) (-640 (-563)) (-640 (-563)) (-684 (-563)))) (-15 -2707 ((-640 (-684 (-563))) (-640 (-563)))) (-15 -4366 ((-684 (-563)) (-640 (-563)) (-640 (-563)))) (-15 -2334 ((-684 (-563)) (-640 (-563)) (-640 (-563)) (-684 (-563)))) (-15 -1398 ((-640 (-563)) (-640 (-563)) (-640 (-563)) (-112))) (-15 -2210 ((-1257 (-563)) (-1257 (-563)) (-1257 (-563)) (-563))) (-15 -2210 ((-1257 (-563)) (-640 (-563)) (-1257 (-563)) (-563))) (-15 -3315 ((-563) (-563) (-563))) (-15 -3770 ((-640 (-563)) (-563) (-563) (-563))) (-15 -3095 ((-640 (-563)) (-563) (-563) (-563))) (-15 -3620 ((-640 (-563)) (-563) (-563) (-563))))) (T -1103))
-((-3620 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1103)) (-5 *3 (-563)))) (-3095 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1103)) (-5 *3 (-563)))) (-3770 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1103)) (-5 *3 (-563)))) (-3315 (*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1103)))) (-2210 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1257 (-563))) (-5 *3 (-640 (-563))) (-5 *4 (-563)) (-5 *1 (-1103)))) (-2210 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1257 (-563))) (-5 *3 (-563)) (-5 *1 (-1103)))) (-1398 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-640 (-563))) (-5 *3 (-112)) (-5 *1 (-1103)))) (-2334 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-684 (-563))) (-5 *3 (-640 (-563))) (-5 *1 (-1103)))) (-4366 (*1 *2 *3 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-684 (-563))) (-5 *1 (-1103)))) (-2707 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-640 (-684 (-563)))) (-5 *1 (-1103)))) (-2460 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-640 (-563))) (-5 *3 (-684 (-563))) (-5 *1 (-1103)))) (-3622 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-684 (-563))) (-5 *1 (-1103)))))
-(-10 -7 (-15 -3622 ((-684 (-563)) (-640 (-563)) (-640 (-563)) (-640 (-563)))) (-15 -2460 ((-640 (-563)) (-640 (-563)) (-640 (-563)) (-684 (-563)))) (-15 -2707 ((-640 (-684 (-563))) (-640 (-563)))) (-15 -4366 ((-684 (-563)) (-640 (-563)) (-640 (-563)))) (-15 -2334 ((-684 (-563)) (-640 (-563)) (-640 (-563)) (-684 (-563)))) (-15 -1398 ((-640 (-563)) (-640 (-563)) (-640 (-563)) (-112))) (-15 -2210 ((-1257 (-563)) (-1257 (-563)) (-1257 (-563)) (-563))) (-15 -2210 ((-1257 (-563)) (-640 (-563)) (-1257 (-563)) (-563))) (-15 -3315 ((-563) (-563) (-563))) (-15 -3770 ((-640 (-563)) (-563) (-563) (-563))) (-15 -3095 ((-640 (-563)) (-563) (-563) (-563))) (-15 -3620 ((-640 (-563)) (-563) (-563) (-563))))
+((-3220 (((-640 (-563)) (-563) (-563) (-563)) 22)) (-3209 (((-640 (-563)) (-563) (-563) (-563)) 12)) (-3199 (((-640 (-563)) (-563) (-563) (-563)) 18)) (-3191 (((-563) (-563) (-563)) 9)) (-3182 (((-1257 (-563)) (-640 (-563)) (-1257 (-563)) (-563)) 45) (((-1257 (-563)) (-1257 (-563)) (-1257 (-563)) (-563)) 40)) (-3172 (((-640 (-563)) (-640 (-563)) (-640 (-563)) (-112)) 27)) (-3163 (((-684 (-563)) (-640 (-563)) (-640 (-563)) (-684 (-563))) 44)) (-3156 (((-684 (-563)) (-640 (-563)) (-640 (-563))) 32)) (-3147 (((-640 (-684 (-563))) (-640 (-563))) 34)) (-3137 (((-640 (-563)) (-640 (-563)) (-640 (-563)) (-684 (-563))) 48)) (-3127 (((-684 (-563)) (-640 (-563)) (-640 (-563)) (-640 (-563))) 56)))
+(((-1103) (-10 -7 (-15 -3127 ((-684 (-563)) (-640 (-563)) (-640 (-563)) (-640 (-563)))) (-15 -3137 ((-640 (-563)) (-640 (-563)) (-640 (-563)) (-684 (-563)))) (-15 -3147 ((-640 (-684 (-563))) (-640 (-563)))) (-15 -3156 ((-684 (-563)) (-640 (-563)) (-640 (-563)))) (-15 -3163 ((-684 (-563)) (-640 (-563)) (-640 (-563)) (-684 (-563)))) (-15 -3172 ((-640 (-563)) (-640 (-563)) (-640 (-563)) (-112))) (-15 -3182 ((-1257 (-563)) (-1257 (-563)) (-1257 (-563)) (-563))) (-15 -3182 ((-1257 (-563)) (-640 (-563)) (-1257 (-563)) (-563))) (-15 -3191 ((-563) (-563) (-563))) (-15 -3199 ((-640 (-563)) (-563) (-563) (-563))) (-15 -3209 ((-640 (-563)) (-563) (-563) (-563))) (-15 -3220 ((-640 (-563)) (-563) (-563) (-563))))) (T -1103))
+((-3220 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1103)) (-5 *3 (-563)))) (-3209 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1103)) (-5 *3 (-563)))) (-3199 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1103)) (-5 *3 (-563)))) (-3191 (*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1103)))) (-3182 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1257 (-563))) (-5 *3 (-640 (-563))) (-5 *4 (-563)) (-5 *1 (-1103)))) (-3182 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1257 (-563))) (-5 *3 (-563)) (-5 *1 (-1103)))) (-3172 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-640 (-563))) (-5 *3 (-112)) (-5 *1 (-1103)))) (-3163 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-684 (-563))) (-5 *3 (-640 (-563))) (-5 *1 (-1103)))) (-3156 (*1 *2 *3 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-684 (-563))) (-5 *1 (-1103)))) (-3147 (*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-640 (-684 (-563)))) (-5 *1 (-1103)))) (-3137 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-640 (-563))) (-5 *3 (-684 (-563))) (-5 *1 (-1103)))) (-3127 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-684 (-563))) (-5 *1 (-1103)))))
+(-10 -7 (-15 -3127 ((-684 (-563)) (-640 (-563)) (-640 (-563)) (-640 (-563)))) (-15 -3137 ((-640 (-563)) (-640 (-563)) (-640 (-563)) (-684 (-563)))) (-15 -3147 ((-640 (-684 (-563))) (-640 (-563)))) (-15 -3156 ((-684 (-563)) (-640 (-563)) (-640 (-563)))) (-15 -3163 ((-684 (-563)) (-640 (-563)) (-640 (-563)) (-684 (-563)))) (-15 -3172 ((-640 (-563)) (-640 (-563)) (-640 (-563)) (-112))) (-15 -3182 ((-1257 (-563)) (-1257 (-563)) (-1257 (-563)) (-563))) (-15 -3182 ((-1257 (-563)) (-640 (-563)) (-1257 (-563)) (-563))) (-15 -3191 ((-563) (-563) (-563))) (-15 -3199 ((-640 (-563)) (-563) (-563) (-563))) (-15 -3209 ((-640 (-563)) (-563) (-563) (-563))) (-15 -3220 ((-640 (-563)) (-563) (-563) (-563))))
((** (($ $ (-917)) 10)))
(((-1104 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-917)))) (-1105)) (T -1104))
NIL
(-10 -8 (-15 ** (|#1| |#1| (-917))))
-((-1677 (((-112) $ $) 7)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1718 (((-112) $ $) 6)) (** (($ $ (-917)) 13)) (* (($ $ $) 14)))
+((-1677 (((-112) $ $) 7)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1718 (((-112) $ $) 6)) (** (($ $ (-917)) 13)) (* (($ $ $) 14)))
(((-1105) (-140)) (T -1105))
((* (*1 *1 *1 *1) (-4 *1 (-1105))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1105)) (-5 *2 (-917)))))
(-13 (-1093) (-10 -8 (-15 * ($ $ $)) (-15 ** ($ $ (-917)))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL (|has| |#3| (-1093)))) (-3411 (((-112) $) NIL (|has| |#3| (-131)))) (-1946 (($ (-917)) NIL (|has| |#3| (-1045)))) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-1901 (($ $ $) NIL (|has| |#3| (-789)))) (-1495 (((-3 $ "failed") $ $) NIL (|has| |#3| (-131)))) (-2759 (((-112) $ (-767)) NIL)) (-3749 (((-767)) NIL (|has| |#3| (-368)))) (-1857 (((-563) $) NIL (|has| |#3| (-844)))) (-1849 ((|#3| $ (-563) |#3|) NIL (|has| $ (-6 -4408)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093)))) (((-3 |#3| "failed") $) NIL (|has| |#3| (-1093)))) (-2058 (((-563) $) NIL (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093)))) (((-407 (-563)) $) NIL (-12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093)))) ((|#3| $) NIL (|has| |#3| (-1093)))) (-2950 (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045)))) (((-2 (|:| -2835 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 $) (-1257 $)) NIL (|has| |#3| (-1045))) (((-684 |#3|) (-684 $)) NIL (|has| |#3| (-1045)))) (-3400 (((-3 $ "failed") $) NIL (|has| |#3| (-722)))) (-1691 (($) NIL (|has| |#3| (-368)))) (-4355 ((|#3| $ (-563) |#3|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#3| $ (-563)) 12)) (-3101 (((-112) $) NIL (|has| |#3| (-844)))) (-2659 (((-640 |#3|) $) NIL (|has| $ (-6 -4407)))) (-3827 (((-112) $) NIL (|has| |#3| (-722)))) (-1419 (((-112) $) NIL (|has| |#3| (-844)))) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) NIL (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (-4032 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-2259 (((-640 |#3|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#3| (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (-4032 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-4345 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#3| |#3|) $) NIL)) (-1476 (((-917) $) NIL (|has| |#3| (-368)))) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#3| (-1093)))) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-2555 (($ (-917)) NIL (|has| |#3| (-368)))) (-1694 (((-1113) $) NIL (|has| |#3| (-1093)))) (-3781 ((|#3| $) NIL (|has| (-563) (-846)))) (-2358 (($ $ |#3|) NIL (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#3|))) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-294 |#3|)) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-640 |#3|) (-640 |#3|)) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#3| (-1093))))) (-2836 (((-640 |#3|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#3| $ (-563) |#3|) NIL) ((|#3| $ (-563)) NIL)) (-4092 ((|#3| $ $) NIL (|has| |#3| (-1045)))) (-2510 (($ (-1257 |#3|)) NIL)) (-3533 (((-134)) NIL (|has| |#3| (-363)))) (-4202 (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1 |#3| |#3|) (-767)) NIL (|has| |#3| (-1045))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1045)))) (-1709 (((-767) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4407))) (((-767) |#3| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#3| (-1093))))) (-1872 (($ $) NIL)) (-1693 (((-1257 |#3|) $) NIL) (($ (-563)) NIL (-4032 (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093))) (|has| |#3| (-1045)))) (($ (-407 (-563))) NIL (-12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093)))) (($ |#3|) NIL (|has| |#3| (-1093))) (((-858) $) NIL (|has| |#3| (-610 (-858))))) (-1675 (((-767)) NIL (|has| |#3| (-1045)))) (-4383 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4407)))) (-2509 (($ $) NIL (|has| |#3| (-844)))) (-2241 (($) NIL (|has| |#3| (-131)) CONST)) (-2254 (($) NIL (|has| |#3| (-722)) CONST)) (-3209 (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1 |#3| |#3|) (-767)) NIL (|has| |#3| (-1045))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1045)))) (-1778 (((-112) $ $) NIL (-4032 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1756 (((-112) $ $) NIL (-4032 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1718 (((-112) $ $) NIL (|has| |#3| (-1093)))) (-1768 (((-112) $ $) NIL (-4032 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1744 (((-112) $ $) 17 (-4032 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1837 (($ $ |#3|) NIL (|has| |#3| (-363)))) (-1826 (($ $ $) NIL (|has| |#3| (-1045))) (($ $) NIL (|has| |#3| (-1045)))) (-1814 (($ $ $) NIL (|has| |#3| (-25)))) (** (($ $ (-767)) NIL (|has| |#3| (-722))) (($ $ (-917)) NIL (|has| |#3| (-722)))) (* (($ (-563) $) NIL (|has| |#3| (-1045))) (($ $ $) NIL (|has| |#3| (-722))) (($ $ |#3|) NIL (|has| |#3| (-722))) (($ |#3| $) NIL (|has| |#3| (-722))) (($ (-767) $) NIL (|has| |#3| (-131))) (($ (-917) $) NIL (|has| |#3| (-25)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL (|has| |#3| (-1093)))) (-3439 (((-112) $) NIL (|has| |#3| (-131)))) (-2392 (($ (-917)) NIL (|has| |#3| (-1045)))) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4092 (($ $ $) NIL (|has| |#3| (-789)))) (-3905 (((-3 $ "failed") $ $) NIL (|has| |#3| (-131)))) (-3001 (((-112) $ (-767)) NIL)) (-3750 (((-767)) NIL (|has| |#3| (-368)))) (-2807 (((-563) $) NIL (|has| |#3| (-844)))) (-1849 ((|#3| $ (-563) |#3|) NIL (|has| $ (-6 -4409)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093)))) (((-3 |#3| "failed") $) NIL (|has| |#3| (-1093)))) (-2057 (((-563) $) NIL (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093)))) (((-407 (-563)) $) NIL (-12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093)))) ((|#3| $) NIL (|has| |#3| (-1093)))) (-1476 (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#3| (-636 (-563))) (|has| |#3| (-1045)))) (((-2 (|:| -1957 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 $) (-1257 $)) NIL (|has| |#3| (-1045))) (((-684 |#3|) (-684 $)) NIL (|has| |#3| (-1045)))) (-3951 (((-3 $ "failed") $) NIL (|has| |#3| (-722)))) (-1690 (($) NIL (|has| |#3| (-368)))) (-4356 ((|#3| $ (-563) |#3|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#3| $ (-563)) 12)) (-3414 (((-112) $) NIL (|has| |#3| (-844)))) (-2658 (((-640 |#3|) $) NIL (|has| $ (-6 -4408)))) (-3401 (((-112) $) NIL (|has| |#3| (-722)))) (-3426 (((-112) $) NIL (|has| |#3| (-844)))) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) NIL (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (-4034 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-3523 (((-640 |#3|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#3| (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (-4034 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-4347 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#3| |#3|) $) NIL)) (-3990 (((-917) $) NIL (|has| |#3| (-368)))) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#3| (-1093)))) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-2552 (($ (-917)) NIL (|has| |#3| (-368)))) (-1693 (((-1113) $) NIL (|has| |#3| (-1093)))) (-3782 ((|#3| $) NIL (|has| (-563) (-846)))) (-2221 (($ $ |#3|) NIL (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#3|))) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-294 |#3|)) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093)))) (($ $ (-640 |#3|) (-640 |#3|)) NIL (-12 (|has| |#3| (-309 |#3|)) (|has| |#3| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#3| (-1093))))) (-2295 (((-640 |#3|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#3| $ (-563) |#3|) NIL) ((|#3| $ (-563)) NIL)) (-4121 ((|#3| $ $) NIL (|has| |#3| (-1045)))) (-2509 (($ (-1257 |#3|)) NIL)) (-3526 (((-134)) NIL (|has| |#3| (-363)))) (-4203 (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1 |#3| |#3|) (-767)) NIL (|has| |#3| (-1045))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1045)))) (-1708 (((-767) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4408))) (((-767) |#3| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#3| (-1093))))) (-1870 (($ $) NIL)) (-1692 (((-1257 |#3|) $) NIL) (($ (-563)) NIL (-4034 (-12 (|has| |#3| (-1034 (-563))) (|has| |#3| (-1093))) (|has| |#3| (-1045)))) (($ (-407 (-563))) NIL (-12 (|has| |#3| (-1034 (-407 (-563)))) (|has| |#3| (-1093)))) (($ |#3|) NIL (|has| |#3| (-1093))) (((-858) $) NIL (|has| |#3| (-610 (-858))))) (-3914 (((-767)) NIL (|has| |#3| (-1045)))) (-1471 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4408)))) (-1462 (($ $) NIL (|has| |#3| (-844)))) (-2239 (($) NIL (|has| |#3| (-131)) CONST)) (-2253 (($) NIL (|has| |#3| (-722)) CONST)) (-3213 (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045)))) (($ $ (-767)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1045)))) (($ $ (-1169)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#3| (-896 (-1169))) (|has| |#3| (-1045)))) (($ $ (-1 |#3| |#3|) (-767)) NIL (|has| |#3| (-1045))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1045)))) (-1779 (((-112) $ $) NIL (-4034 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1754 (((-112) $ $) NIL (-4034 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1718 (((-112) $ $) NIL (|has| |#3| (-1093)))) (-1766 (((-112) $ $) NIL (-4034 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1743 (((-112) $ $) 17 (-4034 (|has| |#3| (-789)) (|has| |#3| (-844))))) (-1836 (($ $ |#3|) NIL (|has| |#3| (-363)))) (-1825 (($ $ $) NIL (|has| |#3| (-1045))) (($ $) NIL (|has| |#3| (-1045)))) (-1813 (($ $ $) NIL (|has| |#3| (-25)))) (** (($ $ (-767)) NIL (|has| |#3| (-722))) (($ $ (-917)) NIL (|has| |#3| (-722)))) (* (($ (-563) $) NIL (|has| |#3| (-1045))) (($ $ $) NIL (|has| |#3| (-722))) (($ $ |#3|) NIL (|has| |#3| (-722))) (($ |#3| $) NIL (|has| |#3| (-722))) (($ (-767) $) NIL (|has| |#3| (-131))) (($ (-917) $) NIL (|has| |#3| (-25)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
(((-1106 |#1| |#2| |#3|) (-238 |#1| |#3|) (-767) (-767) (-789)) (T -1106))
NIL
(-238 |#1| |#3|)
-((-1721 (((-640 (-1230 |#2| |#1|)) (-1230 |#2| |#1|) (-1230 |#2| |#1|)) 36)) (-4249 (((-563) (-1230 |#2| |#1|)) 68 (|has| |#1| (-452)))) (-2098 (((-563) (-1230 |#2| |#1|)) 53)) (-1519 (((-640 (-1230 |#2| |#1|)) (-1230 |#2| |#1|) (-1230 |#2| |#1|)) 44)) (-3508 (((-563) (-1230 |#2| |#1|) (-1230 |#2| |#1|)) 67 (|has| |#1| (-452)))) (-3111 (((-640 |#1|) (-1230 |#2| |#1|) (-1230 |#2| |#1|)) 47)) (-3035 (((-563) (-1230 |#2| |#1|) (-1230 |#2| |#1|)) 52)))
-(((-1107 |#1| |#2|) (-10 -7 (-15 -1721 ((-640 (-1230 |#2| |#1|)) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -1519 ((-640 (-1230 |#2| |#1|)) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -3111 ((-640 |#1|) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -3035 ((-563) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -2098 ((-563) (-1230 |#2| |#1|))) (IF (|has| |#1| (-452)) (PROGN (-15 -3508 ((-563) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -4249 ((-563) (-1230 |#2| |#1|)))) |%noBranch|)) (-816) (-1169)) (T -1107))
-((-4249 (*1 *2 *3) (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-452)) (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-563)) (-5 *1 (-1107 *4 *5)))) (-3508 (*1 *2 *3 *3) (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-452)) (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-563)) (-5 *1 (-1107 *4 *5)))) (-2098 (*1 *2 *3) (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-563)) (-5 *1 (-1107 *4 *5)))) (-3035 (*1 *2 *3 *3) (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-563)) (-5 *1 (-1107 *4 *5)))) (-3111 (*1 *2 *3 *3) (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-640 *4)) (-5 *1 (-1107 *4 *5)))) (-1519 (*1 *2 *3 *3) (-12 (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-640 (-1230 *5 *4))) (-5 *1 (-1107 *4 *5)) (-5 *3 (-1230 *5 *4)))) (-1721 (*1 *2 *3 *3) (-12 (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-640 (-1230 *5 *4))) (-5 *1 (-1107 *4 *5)) (-5 *3 (-1230 *5 *4)))))
-(-10 -7 (-15 -1721 ((-640 (-1230 |#2| |#1|)) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -1519 ((-640 (-1230 |#2| |#1|)) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -3111 ((-640 |#1|) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -3035 ((-563) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -2098 ((-563) (-1230 |#2| |#1|))) (IF (|has| |#1| (-452)) (PROGN (-15 -3508 ((-563) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -4249 ((-563) (-1230 |#2| |#1|)))) |%noBranch|))
-((-1677 (((-112) $ $) NIL)) (-2137 (($ (-506) (-1111)) 14)) (-2918 (((-1111) $) 20)) (-3348 (((-506) $) 17)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 28) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-1108) (-13 (-1076) (-10 -8 (-15 -2137 ($ (-506) (-1111))) (-15 -3348 ((-506) $)) (-15 -2918 ((-1111) $))))) (T -1108))
-((-2137 (*1 *1 *2 *3) (-12 (-5 *2 (-506)) (-5 *3 (-1111)) (-5 *1 (-1108)))) (-3348 (*1 *2 *1) (-12 (-5 *2 (-506)) (-5 *1 (-1108)))) (-2918 (*1 *2 *1) (-12 (-5 *2 (-1111)) (-5 *1 (-1108)))))
-(-13 (-1076) (-10 -8 (-15 -2137 ($ (-506) (-1111))) (-15 -3348 ((-506) $)) (-15 -2918 ((-1111) $))))
-((-1857 (((-3 (-563) "failed") |#2| (-1169) |#2| (-1151)) 17) (((-3 (-563) "failed") |#2| (-1169) (-839 |#2|)) 15) (((-3 (-563) "failed") |#2|) 53)))
-(((-1109 |#1| |#2|) (-10 -7 (-15 -1857 ((-3 (-563) "failed") |#2|)) (-15 -1857 ((-3 (-563) "failed") |#2| (-1169) (-839 |#2|))) (-15 -1857 ((-3 (-563) "failed") |#2| (-1169) |#2| (-1151)))) (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)) (-452)) (-13 (-27) (-1193) (-430 |#1|))) (T -1109))
-((-1857 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-1151)) (-4 *6 (-13 (-555) (-846) (-1034 *2) (-636 *2) (-452))) (-5 *2 (-563)) (-5 *1 (-1109 *6 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *6))))) (-1857 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-839 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-555) (-846) (-1034 *2) (-636 *2) (-452))) (-5 *2 (-563)) (-5 *1 (-1109 *6 *3)))) (-1857 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-555) (-846) (-1034 *2) (-636 *2) (-452))) (-5 *2 (-563)) (-5 *1 (-1109 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *4))))))
-(-10 -7 (-15 -1857 ((-3 (-563) "failed") |#2|)) (-15 -1857 ((-3 (-563) "failed") |#2| (-1169) (-839 |#2|))) (-15 -1857 ((-3 (-563) "failed") |#2| (-1169) |#2| (-1151))))
-((-1857 (((-3 (-563) "failed") (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|)) (-1151)) 35) (((-3 (-563) "failed") (-407 (-948 |#1|)) (-1169) (-839 (-407 (-948 |#1|)))) 30) (((-3 (-563) "failed") (-407 (-948 |#1|))) 13)))
-(((-1110 |#1|) (-10 -7 (-15 -1857 ((-3 (-563) "failed") (-407 (-948 |#1|)))) (-15 -1857 ((-3 (-563) "failed") (-407 (-948 |#1|)) (-1169) (-839 (-407 (-948 |#1|))))) (-15 -1857 ((-3 (-563) "failed") (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|)) (-1151)))) (-452)) (T -1110))
-((-1857 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-407 (-948 *6))) (-5 *4 (-1169)) (-5 *5 (-1151)) (-4 *6 (-452)) (-5 *2 (-563)) (-5 *1 (-1110 *6)))) (-1857 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-839 (-407 (-948 *6)))) (-5 *3 (-407 (-948 *6))) (-4 *6 (-452)) (-5 *2 (-563)) (-5 *1 (-1110 *6)))) (-1857 (*1 *2 *3) (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-452)) (-5 *2 (-563)) (-5 *1 (-1110 *4)))))
-(-10 -7 (-15 -1857 ((-3 (-563) "failed") (-407 (-948 |#1|)))) (-15 -1857 ((-3 (-563) "failed") (-407 (-948 |#1|)) (-1169) (-839 (-407 (-948 |#1|))))) (-15 -1857 ((-3 (-563) "failed") (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|)) (-1151))))
-((-1677 (((-112) $ $) NIL)) (-4183 (((-1174) $) 10)) (-4130 (((-640 (-1174)) $) 11)) (-2918 (($ (-640 (-1174)) (-1174)) 9)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 22)) (-1718 (((-112) $ $) 14)))
-(((-1111) (-13 (-1093) (-10 -8 (-15 -2918 ($ (-640 (-1174)) (-1174))) (-15 -4183 ((-1174) $)) (-15 -4130 ((-640 (-1174)) $))))) (T -1111))
-((-2918 (*1 *1 *2 *3) (-12 (-5 *2 (-640 (-1174))) (-5 *3 (-1174)) (-5 *1 (-1111)))) (-4183 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-1111)))) (-4130 (*1 *2 *1) (-12 (-5 *2 (-640 (-1174))) (-5 *1 (-1111)))))
-(-13 (-1093) (-10 -8 (-15 -2918 ($ (-640 (-1174)) (-1174))) (-15 -4183 ((-1174) $)) (-15 -4130 ((-640 (-1174)) $))))
-((-2609 (((-316 (-563)) (-48)) 12)))
-(((-1112) (-10 -7 (-15 -2609 ((-316 (-563)) (-48))))) (T -1112))
-((-2609 (*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-316 (-563))) (-5 *1 (-1112)))))
-(-10 -7 (-15 -2609 ((-316 (-563)) (-48))))
-((-1677 (((-112) $ $) NIL)) (-3380 (($ $) 40)) (-3411 (((-112) $) 64)) (-2212 (($ $ $) 47)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 89)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1433 (($ $ $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2448 (($ $ $ $) 74)) (-4335 (($ $) NIL)) (-3205 (((-418 $) $) NIL)) (-1919 (((-112) $ $) NIL)) (-3749 (((-767)) 76)) (-1857 (((-563) $) NIL)) (-3458 (($ $ $) 71)) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL)) (-2058 (((-563) $) NIL)) (-3090 (($ $ $) 58)) (-2950 (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 83) (((-684 (-563)) (-684 $)) 27)) (-3400 (((-3 $ "failed") $) NIL)) (-3909 (((-3 (-407 (-563)) "failed") $) NIL)) (-2239 (((-112) $) NIL)) (-2651 (((-407 (-563)) $) NIL)) (-1691 (($) 86) (($ $) 87)) (-3050 (($ $ $) 57)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL)) (-2468 (((-112) $) NIL)) (-4362 (($ $ $ $) NIL)) (-1544 (($ $ $) 84)) (-3101 (((-112) $) NIL)) (-3972 (($ $ $) NIL)) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL)) (-3827 (((-112) $) 65)) (-3131 (((-112) $) 63)) (-2176 (($ $) 41)) (-2408 (((-3 $ "failed") $) NIL)) (-1419 (((-112) $) 75)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2692 (($ $ $ $) 72)) (-3084 (($ $ $) 67) (($) 38 T CONST)) (-1777 (($ $ $) 66) (($) 37 T CONST)) (-2646 (($ $) NIL)) (-1476 (((-917) $) 79)) (-3415 (($ $) 70)) (-3513 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3573 (((-1151) $) NIL)) (-3364 (($ $ $) NIL)) (-2523 (($) NIL T CONST)) (-2555 (($ (-917)) 78)) (-2824 (($ $) 49)) (-1694 (((-1113) $) 69)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3548 (($ $ $) 61) (($ (-640 $)) NIL)) (-3219 (($ $) NIL)) (-2174 (((-418 $) $) NIL)) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL)) (-3008 (((-3 $ "failed") $ $) NIL)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2359 (((-112) $) NIL)) (-2628 (((-767) $) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 60)) (-4202 (($ $ (-767)) NIL) (($ $) NIL)) (-3872 (($ $) 50)) (-1872 (($ $) NIL)) (-2220 (((-563) $) 31) (((-536) $) NIL) (((-888 (-563)) $) NIL) (((-379) $) NIL) (((-225) $) NIL)) (-1693 (((-858) $) 30) (($ (-563)) 85) (($ $) NIL) (($ (-563)) 85)) (-1675 (((-767)) NIL)) (-1570 (((-112) $ $) NIL)) (-2869 (($ $ $) NIL)) (-4211 (($) 36)) (-2126 (((-112) $ $) NIL)) (-2039 (($ $ $ $) 73)) (-2509 (($ $) 62)) (-1534 (($ $ $) 43)) (-2241 (($) 34 T CONST)) (-3242 (($ $ $) 46)) (-2254 (($) 35 T CONST)) (-3741 (((-1151) $) 20) (((-1151) $ (-112)) 22) (((-1262) (-818) $) 23) (((-1262) (-818) $ (-112)) 24)) (-3252 (($ $) 44)) (-3209 (($ $ (-767)) NIL) (($ $) NIL)) (-3231 (($ $ $) 45)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 39)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 48)) (-1521 (($ $ $) 42)) (-1826 (($ $) 51) (($ $ $) 53)) (-1814 (($ $ $) 52)) (** (($ $ (-917)) NIL) (($ $ (-767)) 56)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 33) (($ $ $) 54)))
-(((-1113) (-13 (-545) (-840) (-656) (-824) (-10 -8 (-6 -4394) (-6 -4399) (-6 -4395) (-15 -2176 ($ $)) (-15 -2212 ($ $ $)) (-15 -3252 ($ $)) (-15 -3231 ($ $ $)) (-15 -3242 ($ $ $))))) (T -1113))
-((-2176 (*1 *1 *1) (-5 *1 (-1113))) (-2212 (*1 *1 *1 *1) (-5 *1 (-1113))) (-3252 (*1 *1 *1) (-5 *1 (-1113))) (-3231 (*1 *1 *1 *1) (-5 *1 (-1113))) (-3242 (*1 *1 *1 *1) (-5 *1 (-1113))))
-(-13 (-545) (-840) (-656) (-824) (-10 -8 (-6 -4394) (-6 -4399) (-6 -4395) (-15 -2176 ($ $)) (-15 -2212 ($ $ $)) (-15 -3252 ($ $)) (-15 -3231 ($ $ $)) (-15 -3242 ($ $ $))))
+((-2056 (((-640 (-1230 |#2| |#1|)) (-1230 |#2| |#1|) (-1230 |#2| |#1|)) 36)) (-2115 (((-563) (-1230 |#2| |#1|)) 68 (|has| |#1| (-452)))) (-2095 (((-563) (-1230 |#2| |#1|)) 53)) (-2068 (((-640 (-1230 |#2| |#1|)) (-1230 |#2| |#1|) (-1230 |#2| |#1|)) 44)) (-2105 (((-563) (-1230 |#2| |#1|) (-1230 |#2| |#1|)) 67 (|has| |#1| (-452)))) (-2077 (((-640 |#1|) (-1230 |#2| |#1|) (-1230 |#2| |#1|)) 47)) (-2085 (((-563) (-1230 |#2| |#1|) (-1230 |#2| |#1|)) 52)))
+(((-1107 |#1| |#2|) (-10 -7 (-15 -2056 ((-640 (-1230 |#2| |#1|)) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -2068 ((-640 (-1230 |#2| |#1|)) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -2077 ((-640 |#1|) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -2085 ((-563) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -2095 ((-563) (-1230 |#2| |#1|))) (IF (|has| |#1| (-452)) (PROGN (-15 -2105 ((-563) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -2115 ((-563) (-1230 |#2| |#1|)))) |%noBranch|)) (-816) (-1169)) (T -1107))
+((-2115 (*1 *2 *3) (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-452)) (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-563)) (-5 *1 (-1107 *4 *5)))) (-2105 (*1 *2 *3 *3) (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-452)) (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-563)) (-5 *1 (-1107 *4 *5)))) (-2095 (*1 *2 *3) (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-563)) (-5 *1 (-1107 *4 *5)))) (-2085 (*1 *2 *3 *3) (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-563)) (-5 *1 (-1107 *4 *5)))) (-2077 (*1 *2 *3 *3) (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-640 *4)) (-5 *1 (-1107 *4 *5)))) (-2068 (*1 *2 *3 *3) (-12 (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-640 (-1230 *5 *4))) (-5 *1 (-1107 *4 *5)) (-5 *3 (-1230 *5 *4)))) (-2056 (*1 *2 *3 *3) (-12 (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-640 (-1230 *5 *4))) (-5 *1 (-1107 *4 *5)) (-5 *3 (-1230 *5 *4)))))
+(-10 -7 (-15 -2056 ((-640 (-1230 |#2| |#1|)) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -2068 ((-640 (-1230 |#2| |#1|)) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -2077 ((-640 |#1|) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -2085 ((-563) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -2095 ((-563) (-1230 |#2| |#1|))) (IF (|has| |#1| (-452)) (PROGN (-15 -2105 ((-563) (-1230 |#2| |#1|) (-1230 |#2| |#1|))) (-15 -2115 ((-563) (-1230 |#2| |#1|)))) |%noBranch|))
+((-1677 (((-112) $ $) NIL)) (-2125 (($ (-506) (-1111)) 14)) (-2922 (((-1111) $) 20)) (-3352 (((-506) $) 17)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 28) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-1108) (-13 (-1076) (-10 -8 (-15 -2125 ($ (-506) (-1111))) (-15 -3352 ((-506) $)) (-15 -2922 ((-1111) $))))) (T -1108))
+((-2125 (*1 *1 *2 *3) (-12 (-5 *2 (-506)) (-5 *3 (-1111)) (-5 *1 (-1108)))) (-3352 (*1 *2 *1) (-12 (-5 *2 (-506)) (-5 *1 (-1108)))) (-2922 (*1 *2 *1) (-12 (-5 *2 (-1111)) (-5 *1 (-1108)))))
+(-13 (-1076) (-10 -8 (-15 -2125 ($ (-506) (-1111))) (-15 -3352 ((-506) $)) (-15 -2922 ((-1111) $))))
+((-2807 (((-3 (-563) "failed") |#2| (-1169) |#2| (-1151)) 17) (((-3 (-563) "failed") |#2| (-1169) (-839 |#2|)) 15) (((-3 (-563) "failed") |#2|) 53)))
+(((-1109 |#1| |#2|) (-10 -7 (-15 -2807 ((-3 (-563) "failed") |#2|)) (-15 -2807 ((-3 (-563) "failed") |#2| (-1169) (-839 |#2|))) (-15 -2807 ((-3 (-563) "failed") |#2| (-1169) |#2| (-1151)))) (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)) (-452)) (-13 (-27) (-1193) (-430 |#1|))) (T -1109))
+((-2807 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-1151)) (-4 *6 (-13 (-555) (-846) (-1034 *2) (-636 *2) (-452))) (-5 *2 (-563)) (-5 *1 (-1109 *6 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *6))))) (-2807 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-839 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *6))) (-4 *6 (-13 (-555) (-846) (-1034 *2) (-636 *2) (-452))) (-5 *2 (-563)) (-5 *1 (-1109 *6 *3)))) (-2807 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-555) (-846) (-1034 *2) (-636 *2) (-452))) (-5 *2 (-563)) (-5 *1 (-1109 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *4))))))
+(-10 -7 (-15 -2807 ((-3 (-563) "failed") |#2|)) (-15 -2807 ((-3 (-563) "failed") |#2| (-1169) (-839 |#2|))) (-15 -2807 ((-3 (-563) "failed") |#2| (-1169) |#2| (-1151))))
+((-2807 (((-3 (-563) "failed") (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|)) (-1151)) 35) (((-3 (-563) "failed") (-407 (-948 |#1|)) (-1169) (-839 (-407 (-948 |#1|)))) 30) (((-3 (-563) "failed") (-407 (-948 |#1|))) 13)))
+(((-1110 |#1|) (-10 -7 (-15 -2807 ((-3 (-563) "failed") (-407 (-948 |#1|)))) (-15 -2807 ((-3 (-563) "failed") (-407 (-948 |#1|)) (-1169) (-839 (-407 (-948 |#1|))))) (-15 -2807 ((-3 (-563) "failed") (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|)) (-1151)))) (-452)) (T -1110))
+((-2807 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-407 (-948 *6))) (-5 *4 (-1169)) (-5 *5 (-1151)) (-4 *6 (-452)) (-5 *2 (-563)) (-5 *1 (-1110 *6)))) (-2807 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-839 (-407 (-948 *6)))) (-5 *3 (-407 (-948 *6))) (-4 *6 (-452)) (-5 *2 (-563)) (-5 *1 (-1110 *6)))) (-2807 (*1 *2 *3) (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-452)) (-5 *2 (-563)) (-5 *1 (-1110 *4)))))
+(-10 -7 (-15 -2807 ((-3 (-563) "failed") (-407 (-948 |#1|)))) (-15 -2807 ((-3 (-563) "failed") (-407 (-948 |#1|)) (-1169) (-839 (-407 (-948 |#1|))))) (-15 -2807 ((-3 (-563) "failed") (-407 (-948 |#1|)) (-1169) (-407 (-948 |#1|)) (-1151))))
+((-1677 (((-112) $ $) NIL)) (-4184 (((-1174) $) 10)) (-4131 (((-640 (-1174)) $) 11)) (-2922 (($ (-640 (-1174)) (-1174)) 9)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 22)) (-1718 (((-112) $ $) 14)))
+(((-1111) (-13 (-1093) (-10 -8 (-15 -2922 ($ (-640 (-1174)) (-1174))) (-15 -4184 ((-1174) $)) (-15 -4131 ((-640 (-1174)) $))))) (T -1111))
+((-2922 (*1 *1 *2 *3) (-12 (-5 *2 (-640 (-1174))) (-5 *3 (-1174)) (-5 *1 (-1111)))) (-4184 (*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-1111)))) (-4131 (*1 *2 *1) (-12 (-5 *2 (-640 (-1174))) (-5 *1 (-1111)))))
+(-13 (-1093) (-10 -8 (-15 -2922 ($ (-640 (-1174)) (-1174))) (-15 -4184 ((-1174) $)) (-15 -4131 ((-640 (-1174)) $))))
+((-2966 (((-316 (-563)) (-48)) 12)))
+(((-1112) (-10 -7 (-15 -2966 ((-316 (-563)) (-48))))) (T -1112))
+((-2966 (*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-316 (-563))) (-5 *1 (-1112)))))
+(-10 -7 (-15 -2966 ((-316 (-563)) (-48))))
+((-1677 (((-112) $ $) NIL)) (-3384 (($ $) 40)) (-3439 (((-112) $) 64)) (-2210 (($ $ $) 47)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 89)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-4297 (($ $ $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-4275 (($ $ $ $) 74)) (-1798 (($ $) NIL)) (-2802 (((-418 $) $) NIL)) (-2003 (((-112) $ $) NIL)) (-3750 (((-767)) 76)) (-2807 (((-563) $) NIL)) (-3462 (($ $ $) 71)) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL)) (-2057 (((-563) $) NIL)) (-3094 (($ $ $) 58)) (-1476 (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 83) (((-684 (-563)) (-684 $)) 27)) (-3951 (((-3 $ "failed") $) NIL)) (-2327 (((-3 (-407 (-563)) "failed") $) NIL)) (-2317 (((-112) $) NIL)) (-2306 (((-407 (-563)) $) NIL)) (-1690 (($) 86) (($ $) 87)) (-3054 (($ $ $) 57)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL)) (-2560 (((-112) $) NIL)) (-4251 (($ $ $ $) NIL)) (-4308 (($ $ $) 84)) (-3414 (((-112) $) NIL)) (-2101 (($ $ $) NIL)) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL)) (-3401 (((-112) $) 65)) (-2959 (((-112) $) 63)) (-2174 (($ $) 41)) (-1983 (((-3 $ "failed") $) NIL)) (-3426 (((-112) $) 75)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-4264 (($ $ $ $) 72)) (-3088 (($ $ $) 67) (($) 38 T CONST)) (-1776 (($ $ $) 66) (($) 37 T CONST)) (-2645 (($ $) NIL)) (-3990 (((-917) $) 79)) (-3419 (($ $) 70)) (-3517 (($ $ $) NIL) (($ (-640 $)) NIL)) (-3854 (((-1151) $) NIL)) (-4239 (($ $ $) NIL)) (-2522 (($) NIL T CONST)) (-2552 (($ (-917)) 78)) (-2827 (($ $) 49)) (-1693 (((-1113) $) 69)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL)) (-3551 (($ $ $) 61) (($ (-640 $)) NIL)) (-2081 (($ $) NIL)) (-2173 (((-418 $) $) NIL)) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL)) (-3012 (((-3 $ "failed") $ $) NIL)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL)) (-2969 (((-112) $) NIL)) (-1993 (((-767) $) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 60)) (-4203 (($ $ (-767)) NIL) (($ $) NIL)) (-3873 (($ $) 50)) (-1870 (($ $) NIL)) (-2219 (((-563) $) 31) (((-536) $) NIL) (((-888 (-563)) $) NIL) (((-379) $) NIL) (((-225) $) NIL)) (-1692 (((-858) $) 30) (($ (-563)) 85) (($ $) NIL) (($ (-563)) 85)) (-3914 (((-767)) NIL)) (-4319 (((-112) $ $) NIL)) (-1864 (($ $ $) NIL)) (-4212 (($) 36)) (-3223 (((-112) $ $) NIL)) (-4287 (($ $ $ $) 73)) (-1462 (($ $) 62)) (-1531 (($ $ $) 43)) (-2239 (($) 34 T CONST)) (-3246 (($ $ $) 46)) (-2253 (($) 35 T CONST)) (-2742 (((-1151) $) 20) (((-1151) $ (-112)) 22) (((-1262) (-818) $) 23) (((-1262) (-818) $ (-112)) 24)) (-3256 (($ $) 44)) (-3213 (($ $ (-767)) NIL) (($ $) NIL)) (-3235 (($ $ $) 45)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 39)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 48)) (-1517 (($ $ $) 42)) (-1825 (($ $) 51) (($ $ $) 53)) (-1813 (($ $ $) 52)) (** (($ $ (-917)) NIL) (($ $ (-767)) 56)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 33) (($ $ $) 54)))
+(((-1113) (-13 (-545) (-840) (-656) (-824) (-10 -8 (-6 -4395) (-6 -4400) (-6 -4396) (-15 -2174 ($ $)) (-15 -2210 ($ $ $)) (-15 -3256 ($ $)) (-15 -3235 ($ $ $)) (-15 -3246 ($ $ $))))) (T -1113))
+((-2174 (*1 *1 *1) (-5 *1 (-1113))) (-2210 (*1 *1 *1 *1) (-5 *1 (-1113))) (-3256 (*1 *1 *1) (-5 *1 (-1113))) (-3235 (*1 *1 *1 *1) (-5 *1 (-1113))) (-3246 (*1 *1 *1 *1) (-5 *1 (-1113))))
+(-13 (-545) (-840) (-656) (-824) (-10 -8 (-6 -4395) (-6 -4400) (-6 -4396) (-15 -2174 ($ $)) (-15 -2210 ($ $ $)) (-15 -3256 ($ $)) (-15 -3235 ($ $ $)) (-15 -3246 ($ $ $))))
((|Integer|) (SMINTP |#1|))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2636 ((|#1| $) 44)) (-2759 (((-112) $ (-767)) 8)) (-4239 (($) 7 T CONST)) (-4325 ((|#1| |#1| $) 46)) (-3017 ((|#1| $) 45)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2964 ((|#1| $) 39)) (-1812 (($ |#1| $) 40)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3755 ((|#1| $) 41)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2370 (((-767) $) 43)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-2233 (($ (-640 |#1|)) 42)) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2635 ((|#1| $) 44)) (-3001 (((-112) $ (-767)) 8)) (-2569 (($) 7 T CONST)) (-2147 ((|#1| |#1| $) 46)) (-2136 ((|#1| $) 45)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-2627 ((|#1| $) 39)) (-3867 (($ |#1| $) 40)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-2808 ((|#1| $) 41)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2369 (((-767) $) 43)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-2820 (($ (-640 |#1|)) 42)) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-1114 |#1|) (-140) (-1208)) (T -1114))
-((-4325 (*1 *2 *2 *1) (-12 (-4 *1 (-1114 *2)) (-4 *2 (-1208)))) (-3017 (*1 *2 *1) (-12 (-4 *1 (-1114 *2)) (-4 *2 (-1208)))) (-2636 (*1 *2 *1) (-12 (-4 *1 (-1114 *2)) (-4 *2 (-1208)))) (-2370 (*1 *2 *1) (-12 (-4 *1 (-1114 *3)) (-4 *3 (-1208)) (-5 *2 (-767)))))
-(-13 (-107 |t#1|) (-10 -8 (-6 -4407) (-15 -4325 (|t#1| |t#1| $)) (-15 -3017 (|t#1| $)) (-15 -2636 (|t#1| $)) (-15 -2370 ((-767) $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-1733 ((|#3| $) 76)) (-2131 (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 |#3| "failed") $) 40)) (-2058 (((-563) $) NIL) (((-407 (-563)) $) NIL) ((|#3| $) 37)) (-2950 (((-684 (-563)) (-684 $)) NIL) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-2 (|:| -2835 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 $) (-1257 $)) 73) (((-684 |#3|) (-684 $)) 65)) (-4202 (($ $ (-1 |#3| |#3|)) 19) (($ $ (-1 |#3| |#3|) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL) (($ $ (-767)) NIL) (($ $) NIL)) (-3327 ((|#3| $) 78)) (-3154 ((|#4| $) 32)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 (-563))) NIL) (($ |#3|) 16)) (** (($ $ (-917)) NIL) (($ $ (-767)) 15) (($ $ (-563)) 82)))
-(((-1115 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 ** (|#1| |#1| (-563))) (-15 -3327 (|#3| |#1|)) (-15 -1733 (|#3| |#1|)) (-15 -3154 (|#4| |#1|)) (-15 -2950 ((-684 |#3|) (-684 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-684 (-563)) (-684 |#1|))) (-15 -1693 (|#1| |#3|)) (-15 -2131 ((-3 |#3| "failed") |#1|)) (-15 -2058 (|#3| |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4202 (|#1| |#1| (-1 |#3| |#3|) (-767))) (-15 -4202 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1693 (|#1| (-563))) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917))) (-15 -1693 ((-858) |#1|))) (-1116 |#2| |#3| |#4| |#5|) (-767) (-1045) (-238 |#2| |#3|) (-238 |#2| |#3|)) (T -1115))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-563))) (-15 -3327 (|#3| |#1|)) (-15 -1733 (|#3| |#1|)) (-15 -3154 (|#4| |#1|)) (-15 -2950 ((-684 |#3|) (-684 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -2950 ((-684 (-563)) (-684 |#1|))) (-15 -1693 (|#1| |#3|)) (-15 -2131 ((-3 |#3| "failed") |#1|)) (-15 -2058 (|#3| |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4202 (|#1| |#1| (-1 |#3| |#3|) (-767))) (-15 -4202 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1693 (|#1| (-563))) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917))) (-15 -1693 ((-858) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1733 ((|#2| $) 71)) (-3129 (((-112) $) 111)) (-1495 (((-3 $ "failed") $ $) 19)) (-1937 (((-112) $) 109)) (-2759 (((-112) $ (-767)) 101)) (-3845 (($ |#2|) 74)) (-4239 (($) 17 T CONST)) (-4069 (($ $) 128 (|has| |#2| (-307)))) (-2368 ((|#3| $ (-563)) 123)) (-2131 (((-3 (-563) "failed") $) 86 (|has| |#2| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 83 (|has| |#2| (-1034 (-407 (-563))))) (((-3 |#2| "failed") $) 80)) (-2058 (((-563) $) 85 (|has| |#2| (-1034 (-563)))) (((-407 (-563)) $) 82 (|has| |#2| (-1034 (-407 (-563))))) ((|#2| $) 81)) (-2950 (((-684 (-563)) (-684 $)) 78 (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 77 (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) 76) (((-684 |#2|) (-684 $)) 75)) (-3400 (((-3 $ "failed") $) 33)) (-2522 (((-767) $) 129 (|has| |#2| (-555)))) (-4293 ((|#2| $ (-563) (-563)) 121)) (-2659 (((-640 |#2|) $) 94 (|has| $ (-6 -4407)))) (-3827 (((-112) $) 31)) (-1997 (((-767) $) 130 (|has| |#2| (-555)))) (-2345 (((-640 |#4|) $) 131 (|has| |#2| (-555)))) (-2381 (((-767) $) 117)) (-2393 (((-767) $) 118)) (-2581 (((-112) $ (-767)) 102)) (-3977 ((|#2| $) 66 (|has| |#2| (-6 (-4409 "*"))))) (-2013 (((-563) $) 113)) (-3650 (((-563) $) 115)) (-2259 (((-640 |#2|) $) 93 (|has| $ (-6 -4407)))) (-1729 (((-112) |#2| $) 91 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4407))))) (-1859 (((-563) $) 114)) (-2207 (((-563) $) 116)) (-4038 (($ (-640 (-640 |#2|))) 108)) (-4345 (($ (-1 |#2| |#2|) $) 98 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#2| |#2| |#2|) $ $) 125) (($ (-1 |#2| |#2|) $) 99)) (-4136 (((-640 (-640 |#2|)) $) 119)) (-2382 (((-112) $ (-767)) 103)) (-3573 (((-1151) $) 9)) (-2591 (((-3 $ "failed") $) 65 (|has| |#2| (-363)))) (-1694 (((-1113) $) 10)) (-3008 (((-3 $ "failed") $ |#2|) 126 (|has| |#2| (-555)))) (-3138 (((-112) (-1 (-112) |#2|) $) 96 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#2|))) 90 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) 89 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) 88 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) 87 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2026 (((-112) $ $) 107)) (-3756 (((-112) $) 104)) (-3135 (($) 105)) (-2309 ((|#2| $ (-563) (-563) |#2|) 122) ((|#2| $ (-563) (-563)) 120)) (-4202 (($ $ (-1 |#2| |#2|)) 52) (($ $ (-1 |#2| |#2|) (-767)) 51) (($ $ (-640 (-1169)) (-640 (-767))) 44 (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) 43 (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) 42 (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) 41 (|has| |#2| (-896 (-1169)))) (($ $ (-767)) 39 (|has| |#2| (-233))) (($ $) 37 (|has| |#2| (-233)))) (-3327 ((|#2| $) 70)) (-2104 (($ (-640 |#2|)) 73)) (-2717 (((-112) $) 110)) (-3154 ((|#3| $) 72)) (-3848 ((|#2| $) 67 (|has| |#2| (-6 (-4409 "*"))))) (-1709 (((-767) (-1 (-112) |#2|) $) 95 (|has| $ (-6 -4407))) (((-767) |#2| $) 92 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 106)) (-1912 ((|#4| $ (-563)) 124)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 84 (|has| |#2| (-1034 (-407 (-563))))) (($ |#2|) 79)) (-1675 (((-767)) 28)) (-4383 (((-112) (-1 (-112) |#2|) $) 97 (|has| $ (-6 -4407)))) (-3280 (((-112) $) 112)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ (-1 |#2| |#2|)) 50) (($ $ (-1 |#2| |#2|) (-767)) 49) (($ $ (-640 (-1169)) (-640 (-767))) 48 (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) 47 (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) 46 (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) 45 (|has| |#2| (-896 (-1169)))) (($ $ (-767)) 40 (|has| |#2| (-233))) (($ $) 38 (|has| |#2| (-233)))) (-1718 (((-112) $ $) 6)) (-1837 (($ $ |#2|) 127 (|has| |#2| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 64 (|has| |#2| (-363)))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#2|) 133) (($ |#2| $) 132) ((|#4| $ |#4|) 69) ((|#3| |#3| $) 68)) (-3608 (((-767) $) 100 (|has| $ (-6 -4407)))))
+((-2147 (*1 *2 *2 *1) (-12 (-4 *1 (-1114 *2)) (-4 *2 (-1208)))) (-2136 (*1 *2 *1) (-12 (-4 *1 (-1114 *2)) (-4 *2 (-1208)))) (-2635 (*1 *2 *1) (-12 (-4 *1 (-1114 *2)) (-4 *2 (-1208)))) (-2369 (*1 *2 *1) (-12 (-4 *1 (-1114 *3)) (-4 *3 (-1208)) (-5 *2 (-767)))))
+(-13 (-107 |t#1|) (-10 -8 (-6 -4408) (-15 -2147 (|t#1| |t#1| $)) (-15 -2136 (|t#1| $)) (-15 -2635 (|t#1| $)) (-15 -2369 ((-767) $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-1731 ((|#3| $) 76)) (-2130 (((-3 (-563) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 |#3| "failed") $) 40)) (-2057 (((-563) $) NIL) (((-407 (-563)) $) NIL) ((|#3| $) 37)) (-1476 (((-684 (-563)) (-684 $)) NIL) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL) (((-2 (|:| -1957 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 $) (-1257 $)) 73) (((-684 |#3|) (-684 $)) 65)) (-4203 (($ $ (-1 |#3| |#3|)) 19) (($ $ (-1 |#3| |#3|) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169)) NIL) (($ $ (-767)) NIL) (($ $) NIL)) (-2183 ((|#3| $) 78)) (-2195 ((|#4| $) 32)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ (-407 (-563))) NIL) (($ |#3|) 16)) (** (($ $ (-917)) NIL) (($ $ (-767)) 15) (($ $ (-563)) 82)))
+(((-1115 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 ** (|#1| |#1| (-563))) (-15 -2183 (|#3| |#1|)) (-15 -1731 (|#3| |#1|)) (-15 -2195 (|#4| |#1|)) (-15 -1476 ((-684 |#3|) (-684 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-684 (-563)) (-684 |#1|))) (-15 -1692 (|#1| |#3|)) (-15 -2130 ((-3 |#3| "failed") |#1|)) (-15 -2057 (|#3| |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4203 (|#1| |#1| (-1 |#3| |#3|) (-767))) (-15 -4203 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1692 (|#1| (-563))) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917))) (-15 -1692 ((-858) |#1|))) (-1116 |#2| |#3| |#4| |#5|) (-767) (-1045) (-238 |#2| |#3|) (-238 |#2| |#3|)) (T -1115))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-563))) (-15 -2183 (|#3| |#1|)) (-15 -1731 (|#3| |#1|)) (-15 -2195 (|#4| |#1|)) (-15 -1476 ((-684 |#3|) (-684 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 |#3|)) (|:| |vec| (-1257 |#3|))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 |#1|) (-1257 |#1|))) (-15 -1476 ((-684 (-563)) (-684 |#1|))) (-15 -1692 (|#1| |#3|)) (-15 -2130 ((-3 |#3| "failed") |#1|)) (-15 -2057 (|#3| |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4203 (|#1| |#1| (-1 |#3| |#3|) (-767))) (-15 -4203 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1692 (|#1| (-563))) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917))) (-15 -1692 ((-858) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-1731 ((|#2| $) 71)) (-3870 (((-112) $) 111)) (-3905 (((-3 $ "failed") $ $) 19)) (-3893 (((-112) $) 109)) (-3001 (((-112) $ (-767)) 101)) (-2217 (($ |#2|) 74)) (-2569 (($) 17 T CONST)) (-1940 (($ $) 128 (|has| |#2| (-307)))) (-1960 ((|#3| $ (-563)) 123)) (-2130 (((-3 (-563) "failed") $) 86 (|has| |#2| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) 83 (|has| |#2| (-1034 (-407 (-563))))) (((-3 |#2| "failed") $) 80)) (-2057 (((-563) $) 85 (|has| |#2| (-1034 (-563)))) (((-407 (-563)) $) 82 (|has| |#2| (-1034 (-407 (-563))))) ((|#2| $) 81)) (-1476 (((-684 (-563)) (-684 $)) 78 (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 77 (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) 76) (((-684 |#2|) (-684 $)) 75)) (-3951 (((-3 $ "failed") $) 33)) (-2521 (((-767) $) 129 (|has| |#2| (-555)))) (-4293 ((|#2| $ (-563) (-563)) 121)) (-2658 (((-640 |#2|) $) 94 (|has| $ (-6 -4408)))) (-3401 (((-112) $) 31)) (-1929 (((-767) $) 130 (|has| |#2| (-555)))) (-1917 (((-640 |#4|) $) 131 (|has| |#2| (-555)))) (-2380 (((-767) $) 117)) (-2391 (((-767) $) 118)) (-2514 (((-112) $ (-767)) 102)) (-2157 ((|#2| $) 66 (|has| |#2| (-6 (-4410 "*"))))) (-1995 (((-563) $) 113)) (-1979 (((-563) $) 115)) (-3523 (((-640 |#2|) $) 93 (|has| $ (-6 -4408)))) (-2667 (((-112) |#2| $) 91 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4408))))) (-1986 (((-563) $) 114)) (-1969 (((-563) $) 116)) (-4040 (($ (-640 (-640 |#2|))) 108)) (-4347 (($ (-1 |#2| |#2|) $) 98 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#2| |#2| |#2|) $ $) 125) (($ (-1 |#2| |#2|) $) 99)) (-3734 (((-640 (-640 |#2|)) $) 119)) (-2481 (((-112) $ (-767)) 103)) (-3854 (((-1151) $) 9)) (-3694 (((-3 $ "failed") $) 65 (|has| |#2| (-363)))) (-1693 (((-1113) $) 10)) (-3012 (((-3 $ "failed") $ |#2|) 126 (|has| |#2| (-555)))) (-1458 (((-112) (-1 (-112) |#2|) $) 96 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#2|))) 90 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) 89 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) 88 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) 87 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2941 (((-112) $ $) 107)) (-1665 (((-112) $) 104)) (-3445 (($) 105)) (-2308 ((|#2| $ (-563) (-563) |#2|) 122) ((|#2| $ (-563) (-563)) 120)) (-4203 (($ $ (-1 |#2| |#2|)) 52) (($ $ (-1 |#2| |#2|) (-767)) 51) (($ $ (-640 (-1169)) (-640 (-767))) 44 (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) 43 (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) 42 (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) 41 (|has| |#2| (-896 (-1169)))) (($ $ (-767)) 39 (|has| |#2| (-233))) (($ $) 37 (|has| |#2| (-233)))) (-2183 ((|#2| $) 70)) (-2206 (($ (-640 |#2|)) 73)) (-3881 (((-112) $) 110)) (-2195 ((|#3| $) 72)) (-2168 ((|#2| $) 67 (|has| |#2| (-6 (-4410 "*"))))) (-1708 (((-767) (-1 (-112) |#2|) $) 95 (|has| $ (-6 -4408))) (((-767) |#2| $) 92 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 106)) (-1950 ((|#4| $ (-563)) 124)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 84 (|has| |#2| (-1034 (-407 (-563))))) (($ |#2|) 79)) (-3914 (((-767)) 28)) (-1471 (((-112) (-1 (-112) |#2|) $) 97 (|has| $ (-6 -4408)))) (-2005 (((-112) $) 112)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ (-1 |#2| |#2|)) 50) (($ $ (-1 |#2| |#2|) (-767)) 49) (($ $ (-640 (-1169)) (-640 (-767))) 48 (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) 47 (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) 46 (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) 45 (|has| |#2| (-896 (-1169)))) (($ $ (-767)) 40 (|has| |#2| (-233))) (($ $) 38 (|has| |#2| (-233)))) (-1718 (((-112) $ $) 6)) (-1836 (($ $ |#2|) 127 (|has| |#2| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 64 (|has| |#2| (-363)))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#2|) 133) (($ |#2| $) 132) ((|#4| $ |#4|) 69) ((|#3| |#3| $) 68)) (-3610 (((-767) $) 100 (|has| $ (-6 -4408)))))
(((-1116 |#1| |#2| |#3| |#4|) (-140) (-767) (-1045) (-238 |t#1| |t#2|) (-238 |t#1| |t#2|)) (T -1116))
-((-3845 (*1 *1 *2) (-12 (-4 *2 (-1045)) (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)))) (-2104 (*1 *1 *2) (-12 (-5 *2 (-640 *4)) (-4 *4 (-1045)) (-4 *1 (-1116 *3 *4 *5 *6)) (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *3 *4)))) (-3154 (*1 *2 *1) (-12 (-4 *1 (-1116 *3 *4 *2 *5)) (-4 *4 (-1045)) (-4 *5 (-238 *3 *4)) (-4 *2 (-238 *3 *4)))) (-1733 (*1 *2 *1) (-12 (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (-4 *2 (-1045)))) (-3327 (*1 *2 *1) (-12 (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (-4 *2 (-1045)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-1116 *3 *4 *5 *2)) (-4 *4 (-1045)) (-4 *5 (-238 *3 *4)) (-4 *2 (-238 *3 *4)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-1116 *3 *4 *2 *5)) (-4 *4 (-1045)) (-4 *2 (-238 *3 *4)) (-4 *5 (-238 *3 *4)))) (-3848 (*1 *2 *1) (-12 (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4409 "*"))) (-4 *2 (-1045)))) (-3977 (*1 *2 *1) (-12 (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4409 "*"))) (-4 *2 (-1045)))) (-2591 (*1 *1 *1) (|partial| -12 (-4 *1 (-1116 *2 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-238 *2 *3)) (-4 *5 (-238 *2 *3)) (-4 *3 (-363)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-1116 *3 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *3 *4)) (-4 *4 (-363)))))
-(-13 (-231 |t#2|) (-111 |t#2| |t#2|) (-1048 |t#1| |t#1| |t#2| |t#3| |t#4|) (-411 |t#2|) (-377 |t#2|) (-10 -8 (IF (|has| |t#2| (-172)) (-6 (-713 |t#2|)) |%noBranch|) (-15 -3845 ($ |t#2|)) (-15 -2104 ($ (-640 |t#2|))) (-15 -3154 (|t#3| $)) (-15 -1733 (|t#2| $)) (-15 -3327 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4409 "*"))) (PROGN (-6 (-38 |t#2|)) (-15 -3848 (|t#2| $)) (-15 -3977 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-363)) (PROGN (-15 -2591 ((-3 $ "failed") $)) (-15 ** ($ $ (-563)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-38 |#2|) |has| |#2| (-6 (-4409 "*"))) ((-102) . T) ((-111 |#2| |#2|) . T) ((-131) . T) ((-613 #0=(-407 (-563))) |has| |#2| (-1034 (-407 (-563)))) ((-613 (-563)) . T) ((-613 |#2|) . T) ((-610 (-858)) . T) ((-231 |#2|) . T) ((-233) |has| |#2| (-233)) ((-309 |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-377 |#2|) . T) ((-411 |#2|) . T) ((-489 |#2|) . T) ((-514 |#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-643 |#2|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#2| (-636 (-563))) ((-636 |#2|) . T) ((-713 |#2|) -4032 (|has| |#2| (-172)) (|has| |#2| (-6 (-4409 "*")))) ((-722) . T) ((-896 (-1169)) |has| |#2| (-896 (-1169))) ((-1048 |#1| |#1| |#2| |#3| |#4|) . T) ((-1034 #0#) |has| |#2| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#2| (-1034 (-563))) ((-1034 |#2|) . T) ((-1051 |#2|) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1208) . T))
-((-2352 ((|#4| |#4|) 70)) (-2209 ((|#4| |#4|) 65)) (-1655 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4315 (-640 |#3|))) |#4| |#3|) 78)) (-1966 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 69)) (-3285 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 67)))
-(((-1117 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2209 (|#4| |#4|)) (-15 -3285 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -2352 (|#4| |#4|)) (-15 -1966 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -1655 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4315 (-640 |#3|))) |#4| |#3|))) (-307) (-373 |#1|) (-373 |#1|) (-682 |#1| |#2| |#3|)) (T -1117))
-((-1655 (*1 *2 *3 *4) (-12 (-4 *5 (-307)) (-4 *6 (-373 *5)) (-4 *4 (-373 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4)))) (-5 *1 (-1117 *5 *6 *4 *3)) (-4 *3 (-682 *5 *6 *4)))) (-1966 (*1 *2 *3) (-12 (-4 *4 (-307)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3))) (-5 *1 (-1117 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-2352 (*1 *2 *2) (-12 (-4 *3 (-307)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-1117 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-3285 (*1 *2 *3) (-12 (-4 *4 (-307)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3))) (-5 *1 (-1117 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-2209 (*1 *2 *2) (-12 (-4 *3 (-307)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-1117 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
-(-10 -7 (-15 -2209 (|#4| |#4|)) (-15 -3285 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -2352 (|#4| |#4|)) (-15 -1966 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -1655 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4315 (-640 |#3|))) |#4| |#3|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 17)) (-2606 (((-640 |#2|) $) 158)) (-2139 (((-1165 $) $ |#2|) 53) (((-1165 |#1|) $) 42)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 107 (|has| |#1| (-555)))) (-4223 (($ $) 109 (|has| |#1| (-555)))) (-3156 (((-112) $) 111 (|has| |#1| (-555)))) (-1779 (((-767) $) NIL) (((-767) $ (-640 |#2|)) 191)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-4335 (($ $) NIL (|has| |#1| (-452)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) 155) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 |#2| "failed") $) NIL)) (-2058 ((|#1| $) 153) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) ((|#2| $) NIL)) (-2742 (($ $ $ |#2|) NIL (|has| |#1| (-172)))) (-2751 (($ $) 195)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) 81)) (-1300 (($ $) NIL (|has| |#1| (-452))) (($ $ |#2|) NIL (|has| |#1| (-452)))) (-2739 (((-640 $) $) NIL)) (-2468 (((-112) $) NIL (|has| |#1| (-905)))) (-3554 (($ $ |#1| (-531 |#2|) $) NIL)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| |#1| (-882 (-379))) (|has| |#2| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| |#1| (-882 (-563))) (|has| |#2| (-882 (-563)))))) (-3827 (((-112) $) 19)) (-4096 (((-767) $) 26)) (-2596 (($ (-1165 |#1|) |#2|) 47) (($ (-1165 $) |#2|) 63)) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) 32)) (-2588 (($ |#1| (-531 |#2|)) 70) (($ $ |#2| (-767)) 51) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ |#2|) NIL)) (-2048 (((-531 |#2|) $) 185) (((-767) $ |#2|) 186) (((-640 (-767)) $ (-640 |#2|)) 187)) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-2803 (($ (-1 (-531 |#2|) (-531 |#2|)) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) 119)) (-4234 (((-3 |#2| "failed") $) 160)) (-2716 (($ $) 194)) (-2726 ((|#1| $) 36)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3573 (((-1151) $) NIL)) (-3733 (((-3 (-640 $) "failed") $) NIL)) (-2919 (((-3 (-640 $) "failed") $) NIL)) (-4086 (((-3 (-2 (|:| |var| |#2|) (|:| -1654 (-767))) "failed") $) NIL)) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) 33)) (-2706 ((|#1| $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 137 (|has| |#1| (-452)))) (-3548 (($ (-640 $)) 142 (|has| |#1| (-452))) (($ $ $) 129 (|has| |#1| (-452)))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2174 (((-418 $) $) NIL (|has| |#1| (-905)))) (-3008 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) 117 (|has| |#1| (-555)))) (-1540 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ |#2| |#1|) 163) (($ $ (-640 |#2|) (-640 |#1|)) 176) (($ $ |#2| $) 162) (($ $ (-640 |#2|) (-640 $)) 175)) (-2315 (($ $ |#2|) NIL (|has| |#1| (-172)))) (-4202 (($ $ |#2|) 193) (($ $ (-640 |#2|)) NIL) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-4167 (((-531 |#2|) $) 181) (((-767) $ |#2|) 177) (((-640 (-767)) $ (-640 |#2|)) 179)) (-2220 (((-888 (-379)) $) NIL (-12 (|has| |#1| (-611 (-888 (-379)))) (|has| |#2| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| |#1| (-611 (-888 (-563)))) (|has| |#2| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| |#1| (-611 (-536))) (|has| |#2| (-611 (-536)))))) (-1836 ((|#1| $) 125 (|has| |#1| (-452))) (($ $ |#2|) 128 (|has| |#1| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1693 (((-858) $) 148) (($ (-563)) 75) (($ |#1|) 76) (($ |#2|) 28) (($ $) NIL (|has| |#1| (-555))) (($ (-407 (-563))) NIL (-4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-1337 (((-640 |#1|) $) 151)) (-4319 ((|#1| $ (-531 |#2|)) 72) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-1675 (((-767)) 78)) (-2793 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-2126 (((-112) $ $) 114 (|has| |#1| (-555)))) (-2241 (($) 12 T CONST)) (-2254 (($) 14 T CONST)) (-3209 (($ $ |#2|) NIL) (($ $ (-640 |#2|)) NIL) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) 96)) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1837 (($ $ |#1|) 123 (|has| |#1| (-363)))) (-1826 (($ $) 84) (($ $ $) 94)) (-1814 (($ $ $) 48)) (** (($ $ (-917)) 101) (($ $ (-767)) 99)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 87) (($ $ $) 64) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 89) (($ $ |#1|) NIL)))
+((-2217 (*1 *1 *2) (-12 (-4 *2 (-1045)) (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)))) (-2206 (*1 *1 *2) (-12 (-5 *2 (-640 *4)) (-4 *4 (-1045)) (-4 *1 (-1116 *3 *4 *5 *6)) (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *3 *4)))) (-2195 (*1 *2 *1) (-12 (-4 *1 (-1116 *3 *4 *2 *5)) (-4 *4 (-1045)) (-4 *5 (-238 *3 *4)) (-4 *2 (-238 *3 *4)))) (-1731 (*1 *2 *1) (-12 (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (-4 *2 (-1045)))) (-2183 (*1 *2 *1) (-12 (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (-4 *2 (-1045)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-1116 *3 *4 *5 *2)) (-4 *4 (-1045)) (-4 *5 (-238 *3 *4)) (-4 *2 (-238 *3 *4)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-1116 *3 *4 *2 *5)) (-4 *4 (-1045)) (-4 *2 (-238 *3 *4)) (-4 *5 (-238 *3 *4)))) (-2168 (*1 *2 *1) (-12 (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4410 "*"))) (-4 *2 (-1045)))) (-2157 (*1 *2 *1) (-12 (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4410 "*"))) (-4 *2 (-1045)))) (-3694 (*1 *1 *1) (|partial| -12 (-4 *1 (-1116 *2 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-238 *2 *3)) (-4 *5 (-238 *2 *3)) (-4 *3 (-363)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-1116 *3 *4 *5 *6)) (-4 *4 (-1045)) (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *3 *4)) (-4 *4 (-363)))))
+(-13 (-231 |t#2|) (-111 |t#2| |t#2|) (-1048 |t#1| |t#1| |t#2| |t#3| |t#4|) (-411 |t#2|) (-377 |t#2|) (-10 -8 (IF (|has| |t#2| (-172)) (-6 (-713 |t#2|)) |%noBranch|) (-15 -2217 ($ |t#2|)) (-15 -2206 ($ (-640 |t#2|))) (-15 -2195 (|t#3| $)) (-15 -1731 (|t#2| $)) (-15 -2183 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4410 "*"))) (PROGN (-6 (-38 |t#2|)) (-15 -2168 (|t#2| $)) (-15 -2157 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-363)) (PROGN (-15 -3694 ((-3 $ "failed") $)) (-15 ** ($ $ (-563)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-38 |#2|) |has| |#2| (-6 (-4410 "*"))) ((-102) . T) ((-111 |#2| |#2|) . T) ((-131) . T) ((-613 #0=(-407 (-563))) |has| |#2| (-1034 (-407 (-563)))) ((-613 (-563)) . T) ((-613 |#2|) . T) ((-610 (-858)) . T) ((-231 |#2|) . T) ((-233) |has| |#2| (-233)) ((-309 |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-377 |#2|) . T) ((-411 |#2|) . T) ((-489 |#2|) . T) ((-514 |#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-643 |#2|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#2| (-636 (-563))) ((-636 |#2|) . T) ((-713 |#2|) -4034 (|has| |#2| (-172)) (|has| |#2| (-6 (-4410 "*")))) ((-722) . T) ((-896 (-1169)) |has| |#2| (-896 (-1169))) ((-1048 |#1| |#1| |#2| |#3| |#4|) . T) ((-1034 #0#) |has| |#2| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#2| (-1034 (-563))) ((-1034 |#2|) . T) ((-1051 |#2|) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1208) . T))
+((-2260 ((|#4| |#4|) 70)) (-2231 ((|#4| |#4|) 65)) (-2280 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4013 (-640 |#3|))) |#4| |#3|) 78)) (-2270 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 69)) (-2247 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 67)))
+(((-1117 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2231 (|#4| |#4|)) (-15 -2247 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -2260 (|#4| |#4|)) (-15 -2270 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -2280 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4013 (-640 |#3|))) |#4| |#3|))) (-307) (-373 |#1|) (-373 |#1|) (-682 |#1| |#2| |#3|)) (T -1117))
+((-2280 (*1 *2 *3 *4) (-12 (-4 *5 (-307)) (-4 *6 (-373 *5)) (-4 *4 (-373 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4)))) (-5 *1 (-1117 *5 *6 *4 *3)) (-4 *3 (-682 *5 *6 *4)))) (-2270 (*1 *2 *3) (-12 (-4 *4 (-307)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3))) (-5 *1 (-1117 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-2260 (*1 *2 *2) (-12 (-4 *3 (-307)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-1117 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-2247 (*1 *2 *3) (-12 (-4 *4 (-307)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4)) (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3))) (-5 *1 (-1117 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))) (-2231 (*1 *2 *2) (-12 (-4 *3 (-307)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-1117 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
+(-10 -7 (-15 -2231 (|#4| |#4|)) (-15 -2247 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -2260 (|#4| |#4|)) (-15 -2270 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -2280 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4013 (-640 |#3|))) |#4| |#3|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 17)) (-2605 (((-640 |#2|) $) 159)) (-2138 (((-1165 $) $ |#2|) 53) (((-1165 |#1|) $) 42)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 108 (|has| |#1| (-555)))) (-3231 (($ $) 110 (|has| |#1| (-555)))) (-3211 (((-112) $) 112 (|has| |#1| (-555)))) (-3897 (((-767) $) NIL) (((-767) $ (-640 |#2|)) 192)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-1798 (($ $) NIL (|has| |#1| (-452)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) 156) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 |#2| "failed") $) NIL)) (-2057 ((|#1| $) 154) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) ((|#2| $) NIL)) (-1612 (($ $ $ |#2|) NIL (|has| |#1| (-172)))) (-2750 (($ $) 196)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) 81)) (-4151 (($ $) NIL (|has| |#1| (-452))) (($ $ |#2|) NIL (|has| |#1| (-452)))) (-2738 (((-640 $) $) NIL)) (-2560 (((-112) $) NIL (|has| |#1| (-905)))) (-2159 (($ $ |#1| (-531 |#2|) $) NIL)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| |#1| (-882 (-379))) (|has| |#2| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| |#1| (-882 (-563))) (|has| |#2| (-882 (-563)))))) (-3401 (((-112) $) 19)) (-3481 (((-767) $) 26)) (-2595 (($ (-1165 |#1|) |#2|) 47) (($ (-1165 $) |#2|) 63)) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) 32)) (-2587 (($ |#1| (-531 |#2|)) 70) (($ $ |#2| (-767)) 51) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ |#2|) NIL)) (-3908 (((-531 |#2|) $) 186) (((-767) $ |#2|) 187) (((-640 (-767)) $ (-640 |#2|)) 188)) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-2170 (($ (-1 (-531 |#2|) (-531 |#2|)) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) 120)) (-1698 (((-3 |#2| "failed") $) 161)) (-2715 (($ $) 195)) (-2725 ((|#1| $) 36)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3854 (((-1151) $) NIL)) (-3939 (((-3 (-640 $) "failed") $) NIL)) (-3930 (((-3 (-640 $) "failed") $) NIL)) (-3949 (((-3 (-2 (|:| |var| |#2|) (|:| -3311 (-767))) "failed") $) NIL)) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) 33)) (-2705 ((|#1| $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 138 (|has| |#1| (-452)))) (-3551 (($ (-640 $)) 143 (|has| |#1| (-452))) (($ $ $) 130 (|has| |#1| (-452)))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#1| (-905)))) (-2173 (((-418 $) $) NIL (|has| |#1| (-905)))) (-3012 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ $) 118 (|has| |#1| (-555)))) (-1542 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ |#2| |#1|) 164) (($ $ (-640 |#2|) (-640 |#1|)) 177) (($ $ |#2| $) 163) (($ $ (-640 |#2|) (-640 $)) 176)) (-1623 (($ $ |#2|) NIL (|has| |#1| (-172)))) (-4203 (($ $ |#2|) 194) (($ $ (-640 |#2|)) NIL) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-3871 (((-531 |#2|) $) 182) (((-767) $ |#2|) 178) (((-640 (-767)) $ (-640 |#2|)) 180)) (-2219 (((-888 (-379)) $) NIL (-12 (|has| |#1| (-611 (-888 (-379)))) (|has| |#2| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| |#1| (-611 (-888 (-563)))) (|has| |#2| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| |#1| (-611 (-536))) (|has| |#2| (-611 (-536)))))) (-3885 ((|#1| $) 126 (|has| |#1| (-452))) (($ $ |#2|) 129 (|has| |#1| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1692 (((-858) $) 149) (($ (-563)) 75) (($ |#1|) 76) (($ |#2|) 28) (($ $) NIL (|has| |#1| (-555))) (($ (-407 (-563))) NIL (-4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-3955 (((-640 |#1|) $) 152)) (-3244 ((|#1| $ (-531 |#2|)) 72) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-3914 (((-767)) 78)) (-2148 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-3223 (((-112) $ $) 115 (|has| |#1| (-555)))) (-2239 (($) 12 T CONST)) (-2253 (($) 14 T CONST)) (-3213 (($ $ |#2|) NIL) (($ $ (-640 |#2|)) NIL) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) 97)) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1836 (($ $ |#1|) 124 (|has| |#1| (-363)))) (-1825 (($ $) 84) (($ $ $) 95)) (-1813 (($ $ $) 48)) (** (($ $ (-917)) 102) (($ $ (-767)) 100)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 87) (($ $ $) 64) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 90) (($ $ |#1|) NIL)))
(((-1118 |#1| |#2|) (-945 |#1| (-531 |#2|) |#2|) (-1045) (-846)) (T -1118))
NIL
(-945 |#1| (-531 |#2|) |#2|)
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2606 (((-640 |#2|) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-1771 (($ $) 140 (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) 116 (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) NIL)) (-2186 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1748 (($ $) 136 (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) 112 (|has| |#1| (-38 (-407 (-563)))))) (-1794 (($ $) 144 (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) 120 (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) NIL T CONST)) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-3619 (((-948 |#1|) $ (-767)) NIL) (((-948 |#1|) $ (-767) (-767)) NIL)) (-2788 (((-112) $) NIL)) (-2180 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3254 (((-767) $ |#2|) NIL) (((-767) $ |#2| (-767)) NIL)) (-3827 (((-112) $) NIL)) (-1645 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3920 (((-112) $) NIL)) (-2588 (($ $ (-640 |#2|) (-640 (-531 |#2|))) NIL) (($ $ |#2| (-531 |#2|)) NIL) (($ |#1| (-531 |#2|)) NIL) (($ $ |#2| (-767)) 55) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-4371 (($ $) 110 (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-3698 (($ $ |#2|) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ |#2| |#1|) 163 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (((-1113) $) NIL)) (-3118 (($ (-1 $) |#2| |#1|) 162 (|has| |#1| (-38 (-407 (-563)))))) (-3320 (($ $ (-767)) 13)) (-3008 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-3368 (($ $) 108 (|has| |#1| (-38 (-407 (-563)))))) (-1540 (($ $ |#2| $) 94) (($ $ (-640 |#2|) (-640 $)) 87) (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL)) (-4202 (($ $ |#2|) 97) (($ $ (-640 |#2|)) NIL) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-4167 (((-531 |#2|) $) NIL)) (-3687 (((-1 (-1149 |#3|) |#3|) (-640 |#2|) (-640 (-1149 |#3|))) 76)) (-1806 (($ $) 146 (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) 122 (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) 142 (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) 118 (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) 138 (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) 114 (|has| |#1| (-38 (-407 (-563)))))) (-1741 (($ $) 15)) (-1693 (((-858) $) 179) (($ (-563)) NIL) (($ |#1|) 40 (|has| |#1| (-172))) (($ $) NIL (|has| |#1| (-555))) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#2|) 62) (($ |#3|) 60)) (-4319 ((|#1| $ (-531 |#2|)) NIL) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL) ((|#3| $ (-767)) 38)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) NIL)) (-1840 (($ $) 152 (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) 128 (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1817 (($ $) 148 (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) 124 (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) 156 (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) 132 (|has| |#1| (-38 (-407 (-563)))))) (-1311 (($ $) 158 (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) 134 (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) 154 (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) 130 (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) 150 (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) 126 (|has| |#1| (-38 (-407 (-563)))))) (-2241 (($) 47 T CONST)) (-2254 (($) 54 T CONST)) (-3209 (($ $ |#2|) NIL) (($ $ (-640 |#2|)) NIL) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ |#1|) 181 (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) 58)) (** (($ $ (-917)) NIL) (($ $ (-767)) 67) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 100 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 57) (($ $ (-407 (-563))) 105 (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) 103 (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 43) (($ $ |#1|) 44) (($ |#3| $) 42)))
-(((-1119 |#1| |#2| |#3|) (-13 (-736 |#1| |#2|) (-10 -8 (-15 -4319 (|#3| $ (-767))) (-15 -1693 ($ |#2|)) (-15 -1693 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -3687 ((-1 (-1149 |#3|) |#3|) (-640 |#2|) (-640 (-1149 |#3|)))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -3698 ($ $ |#2| |#1|)) (-15 -3118 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-1045) (-846) (-945 |#1| (-531 |#2|) |#2|)) (T -1119))
-((-4319 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *2 (-945 *4 (-531 *5) *5)) (-5 *1 (-1119 *4 *5 *2)) (-4 *4 (-1045)) (-4 *5 (-846)))) (-1693 (*1 *1 *2) (-12 (-4 *3 (-1045)) (-4 *2 (-846)) (-5 *1 (-1119 *3 *2 *4)) (-4 *4 (-945 *3 (-531 *2) *2)))) (-1693 (*1 *1 *2) (-12 (-4 *3 (-1045)) (-4 *4 (-846)) (-5 *1 (-1119 *3 *4 *2)) (-4 *2 (-945 *3 (-531 *4) *4)))) (* (*1 *1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-846)) (-5 *1 (-1119 *3 *4 *2)) (-4 *2 (-945 *3 (-531 *4) *4)))) (-3687 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *6)) (-5 *4 (-640 (-1149 *7))) (-4 *6 (-846)) (-4 *7 (-945 *5 (-531 *6) *6)) (-4 *5 (-1045)) (-5 *2 (-1 (-1149 *7) *7)) (-5 *1 (-1119 *5 *6 *7)))) (-3698 (*1 *1 *1 *2 *3) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-4 *2 (-846)) (-5 *1 (-1119 *3 *2 *4)) (-4 *4 (-945 *3 (-531 *2) *2)))) (-3118 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1119 *4 *3 *5))) (-4 *4 (-38 (-407 (-563)))) (-4 *4 (-1045)) (-4 *3 (-846)) (-5 *1 (-1119 *4 *3 *5)) (-4 *5 (-945 *4 (-531 *3) *3)))))
-(-13 (-736 |#1| |#2|) (-10 -8 (-15 -4319 (|#3| $ (-767))) (-15 -1693 ($ |#2|)) (-15 -1693 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -3687 ((-1 (-1149 |#3|) |#3|) (-640 |#2|) (-640 (-1149 |#3|)))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -3698 ($ $ |#2| |#1|)) (-15 -3118 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
-((-1677 (((-112) $ $) 7)) (-1578 (((-640 (-2 (|:| -1442 $) (|:| -3405 (-640 |#4|)))) (-640 |#4|)) 85)) (-3319 (((-640 $) (-640 |#4|)) 86) (((-640 $) (-640 |#4|) (-112)) 111)) (-2606 (((-640 |#3|) $) 33)) (-1706 (((-112) $) 26)) (-3854 (((-112) $) 17 (|has| |#1| (-555)))) (-2620 (((-112) |#4| $) 101) (((-112) $) 97)) (-4053 ((|#4| |#4| $) 92)) (-4335 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 $))) |#4| $) 126)) (-1642 (((-2 (|:| |under| $) (|:| -1583 $) (|:| |upper| $)) $ |#3|) 27)) (-2759 (((-112) $ (-767)) 44)) (-2256 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4407))) (((-3 |#4| "failed") $ |#3|) 79)) (-4239 (($) 45 T CONST)) (-1483 (((-112) $) 22 (|has| |#1| (-555)))) (-1626 (((-112) $ $) 24 (|has| |#1| (-555)))) (-4221 (((-112) $ $) 23 (|has| |#1| (-555)))) (-1763 (((-112) $) 25 (|has| |#1| (-555)))) (-1833 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3746 (((-640 |#4|) (-640 |#4|) $) 18 (|has| |#1| (-555)))) (-1866 (((-640 |#4|) (-640 |#4|) $) 19 (|has| |#1| (-555)))) (-2131 (((-3 $ "failed") (-640 |#4|)) 36)) (-2058 (($ (-640 |#4|)) 35)) (-3792 (((-3 $ "failed") $) 82)) (-1719 ((|#4| |#4| $) 89)) (-3813 (($ $) 68 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ |#4| $) 67 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4407)))) (-1972 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-555)))) (-3990 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-3948 ((|#4| |#4| $) 87)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4407))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4407))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2144 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3405 (-640 |#4|))) $) 105)) (-2313 (((-112) |#4| $) 136)) (-3748 (((-112) |#4| $) 133)) (-1871 (((-112) |#4| $) 137) (((-112) $) 134)) (-2659 (((-640 |#4|) $) 52 (|has| $ (-6 -4407)))) (-2299 (((-112) |#4| $) 104) (((-112) $) 103)) (-2957 ((|#3| $) 34)) (-2581 (((-112) $ (-767)) 43)) (-2259 (((-640 |#4|) $) 53 (|has| $ (-6 -4407)))) (-1729 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#4| |#4|) $) 47)) (-2965 (((-640 |#3|) $) 32)) (-2780 (((-112) |#3| $) 31)) (-2382 (((-112) $ (-767)) 42)) (-3573 (((-1151) $) 9)) (-3083 (((-3 |#4| (-640 $)) |#4| |#4| $) 128)) (-2898 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 $))) |#4| |#4| $) 127)) (-1481 (((-3 |#4| "failed") $) 83)) (-3764 (((-640 $) |#4| $) 129)) (-1334 (((-3 (-112) (-640 $)) |#4| $) 132)) (-2069 (((-640 (-2 (|:| |val| (-112)) (|:| -2059 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-2550 (((-640 $) |#4| $) 125) (((-640 $) (-640 |#4|) $) 124) (((-640 $) (-640 |#4|) (-640 $)) 123) (((-640 $) |#4| (-640 $)) 122)) (-3291 (($ |#4| $) 117) (($ (-640 |#4|) $) 116)) (-2820 (((-640 |#4|) $) 107)) (-4197 (((-112) |#4| $) 99) (((-112) $) 95)) (-2715 ((|#4| |#4| $) 90)) (-3009 (((-112) $ $) 110)) (-2152 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-555)))) (-2031 (((-112) |#4| $) 100) (((-112) $) 96)) (-4056 ((|#4| |#4| $) 91)) (-1694 (((-1113) $) 10)) (-3781 (((-3 |#4| "failed") $) 84)) (-4203 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-3479 (((-3 $ "failed") $ |#4|) 78)) (-3320 (($ $ |#4|) 77) (((-640 $) |#4| $) 115) (((-640 $) |#4| (-640 $)) 114) (((-640 $) (-640 |#4|) $) 113) (((-640 $) (-640 |#4|) (-640 $)) 112)) (-3138 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 |#4|) (-640 |#4|)) 59 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) 57 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) 56 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2026 (((-112) $ $) 38)) (-3756 (((-112) $) 41)) (-3135 (($) 40)) (-4167 (((-767) $) 106)) (-1709 (((-767) |#4| $) 54 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) (((-767) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4407)))) (-1872 (($ $) 39)) (-2220 (((-536) $) 69 (|has| |#4| (-611 (-536))))) (-1707 (($ (-640 |#4|)) 60)) (-3577 (($ $ |#3|) 28)) (-1593 (($ $ |#3|) 30)) (-1924 (($ $) 88)) (-4192 (($ $ |#3|) 29)) (-1693 (((-858) $) 11) (((-640 |#4|) $) 37)) (-2437 (((-767) $) 76 (|has| |#3| (-368)))) (-2540 (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-2691 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) 98)) (-2175 (((-640 $) |#4| $) 121) (((-640 $) |#4| (-640 $)) 120) (((-640 $) (-640 |#4|) $) 119) (((-640 $) (-640 |#4|) (-640 $)) 118)) (-4383 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4407)))) (-1955 (((-640 |#3|) $) 81)) (-4279 (((-112) |#4| $) 135)) (-3152 (((-112) |#3| $) 80)) (-1718 (((-112) $ $) 6)) (-3608 (((-767) $) 46 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2605 (((-640 |#2|) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-1770 (($ $) 140 (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) 116 (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) NIL)) (-2185 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1747 (($ $) 136 (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) 112 (|has| |#1| (-38 (-407 (-563)))))) (-1793 (($ $) 144 (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) 120 (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) NIL T CONST)) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3621 (((-948 |#1|) $ (-767)) NIL) (((-948 |#1|) $ (-767) (-767)) NIL)) (-3381 (((-112) $) NIL)) (-2179 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1775 (((-767) $ |#2|) NIL) (((-767) $ |#2| (-767)) NIL)) (-3401 (((-112) $) NIL)) (-2172 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3805 (((-112) $) NIL)) (-2587 (($ $ (-640 |#2|) (-640 (-531 |#2|))) NIL) (($ $ |#2| (-531 |#2|)) NIL) (($ |#1| (-531 |#2|)) NIL) (($ $ |#2| (-767)) 55) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-4372 (($ $) 110 (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-2062 (($ $ |#2|) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ |#2| |#1|) 163 (|has| |#1| (-38 (-407 (-563)))))) (-1693 (((-1113) $) NIL)) (-3234 (($ (-1 $) |#2| |#1|) 162 (|has| |#1| (-38 (-407 (-563)))))) (-1751 (($ $ (-767)) 13)) (-3012 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-3372 (($ $) 108 (|has| |#1| (-38 (-407 (-563)))))) (-1542 (($ $ |#2| $) 94) (($ $ (-640 |#2|) (-640 $)) 87) (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL)) (-4203 (($ $ |#2|) 97) (($ $ (-640 |#2|)) NIL) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-3871 (((-531 |#2|) $) NIL)) (-2291 (((-1 (-1149 |#3|) |#3|) (-640 |#2|) (-640 (-1149 |#3|))) 76)) (-1805 (($ $) 146 (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) 122 (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) 142 (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) 118 (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) 138 (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) 114 (|has| |#1| (-38 (-407 (-563)))))) (-3369 (($ $) 15)) (-1692 (((-858) $) 179) (($ (-563)) NIL) (($ |#1|) 40 (|has| |#1| (-172))) (($ $) NIL (|has| |#1| (-555))) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#2|) 62) (($ |#3|) 60)) (-3244 ((|#1| $ (-531 |#2|)) NIL) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL) ((|#3| $ (-767)) 38)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) NIL)) (-1839 (($ $) 152 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) 128 (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1816 (($ $) 148 (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) 124 (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) 156 (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) 132 (|has| |#1| (-38 (-407 (-563)))))) (-1311 (($ $) 158 (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) 134 (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) 154 (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) 130 (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) 150 (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) 126 (|has| |#1| (-38 (-407 (-563)))))) (-2239 (($) 47 T CONST)) (-2253 (($) 54 T CONST)) (-3213 (($ $ |#2|) NIL) (($ $ (-640 |#2|)) NIL) (($ $ |#2| (-767)) NIL) (($ $ (-640 |#2|) (-640 (-767))) NIL)) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ |#1|) 181 (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) 58)) (** (($ $ (-917)) NIL) (($ $ (-767)) 67) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 100 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 57) (($ $ (-407 (-563))) 105 (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) 103 (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 43) (($ $ |#1|) 44) (($ |#3| $) 42)))
+(((-1119 |#1| |#2| |#3|) (-13 (-736 |#1| |#2|) (-10 -8 (-15 -3244 (|#3| $ (-767))) (-15 -1692 ($ |#2|)) (-15 -1692 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -2291 ((-1 (-1149 |#3|) |#3|) (-640 |#2|) (-640 (-1149 |#3|)))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -2062 ($ $ |#2| |#1|)) (-15 -3234 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-1045) (-846) (-945 |#1| (-531 |#2|) |#2|)) (T -1119))
+((-3244 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *2 (-945 *4 (-531 *5) *5)) (-5 *1 (-1119 *4 *5 *2)) (-4 *4 (-1045)) (-4 *5 (-846)))) (-1692 (*1 *1 *2) (-12 (-4 *3 (-1045)) (-4 *2 (-846)) (-5 *1 (-1119 *3 *2 *4)) (-4 *4 (-945 *3 (-531 *2) *2)))) (-1692 (*1 *1 *2) (-12 (-4 *3 (-1045)) (-4 *4 (-846)) (-5 *1 (-1119 *3 *4 *2)) (-4 *2 (-945 *3 (-531 *4) *4)))) (* (*1 *1 *2 *1) (-12 (-4 *3 (-1045)) (-4 *4 (-846)) (-5 *1 (-1119 *3 *4 *2)) (-4 *2 (-945 *3 (-531 *4) *4)))) (-2291 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *6)) (-5 *4 (-640 (-1149 *7))) (-4 *6 (-846)) (-4 *7 (-945 *5 (-531 *6) *6)) (-4 *5 (-1045)) (-5 *2 (-1 (-1149 *7) *7)) (-5 *1 (-1119 *5 *6 *7)))) (-2062 (*1 *1 *1 *2 *3) (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-4 *2 (-846)) (-5 *1 (-1119 *3 *2 *4)) (-4 *4 (-945 *3 (-531 *2) *2)))) (-3234 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1119 *4 *3 *5))) (-4 *4 (-38 (-407 (-563)))) (-4 *4 (-1045)) (-4 *3 (-846)) (-5 *1 (-1119 *4 *3 *5)) (-4 *5 (-945 *4 (-531 *3) *3)))))
+(-13 (-736 |#1| |#2|) (-10 -8 (-15 -3244 (|#3| $ (-767))) (-15 -1692 ($ |#2|)) (-15 -1692 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -2291 ((-1 (-1149 |#3|) |#3|) (-640 |#2|) (-640 (-1149 |#3|)))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -2062 ($ $ |#2| |#1|)) (-15 -3234 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
+((-1677 (((-112) $ $) 7)) (-2110 (((-640 (-2 (|:| -1442 $) (|:| -3409 (-640 |#4|)))) (-640 |#4|)) 85)) (-2119 (((-640 $) (-640 |#4|)) 86) (((-640 $) (-640 |#4|) (-112)) 111)) (-2605 (((-640 |#3|) $) 33)) (-3508 (((-112) $) 26)) (-3406 (((-112) $) 17 (|has| |#1| (-555)))) (-2254 (((-112) |#4| $) 101) (((-112) $) 97)) (-2189 ((|#4| |#4| $) 92)) (-1798 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 $))) |#4| $) 126)) (-1640 (((-2 (|:| |under| $) (|:| -3954 $) (|:| |upper| $)) $ |#3|) 27)) (-3001 (((-112) $ (-767)) 44)) (-2255 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4408))) (((-3 |#4| "failed") $ |#3|) 79)) (-2569 (($) 45 T CONST)) (-3466 (((-112) $) 22 (|has| |#1| (-555)))) (-3486 (((-112) $ $) 24 (|has| |#1| (-555)))) (-3476 (((-112) $ $) 23 (|has| |#1| (-555)))) (-3496 (((-112) $) 25 (|has| |#1| (-555)))) (-2201 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3418 (((-640 |#4|) (-640 |#4|) $) 18 (|has| |#1| (-555)))) (-3431 (((-640 |#4|) (-640 |#4|) $) 19 (|has| |#1| (-555)))) (-2130 (((-3 $ "failed") (-640 |#4|)) 36)) (-2057 (($ (-640 |#4|)) 35)) (-3793 (((-3 $ "failed") $) 82)) (-2151 ((|#4| |#4| $) 89)) (-3814 (($ $) 68 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ |#4| $) 67 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4408)))) (-3443 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-555)))) (-2264 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-2131 ((|#4| |#4| $) 87)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4408))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4408))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2284 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3409 (-640 |#4|))) $) 105)) (-3536 (((-112) |#4| $) 136)) (-3514 (((-112) |#4| $) 133)) (-3548 (((-112) |#4| $) 137) (((-112) $) 134)) (-2658 (((-640 |#4|) $) 52 (|has| $ (-6 -4408)))) (-2274 (((-112) |#4| $) 104) (((-112) $) 103)) (-3354 ((|#3| $) 34)) (-2514 (((-112) $ (-767)) 43)) (-3523 (((-640 |#4|) $) 53 (|has| $ (-6 -4408)))) (-2667 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#4| |#4|) $) 47)) (-3568 (((-640 |#3|) $) 32)) (-3553 (((-112) |#3| $) 31)) (-2481 (((-112) $ (-767)) 42)) (-3854 (((-1151) $) 9)) (-3472 (((-3 |#4| (-640 $)) |#4| |#4| $) 128)) (-3461 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 $))) |#4| |#4| $) 127)) (-1481 (((-3 |#4| "failed") $) 83)) (-3482 (((-640 $) |#4| $) 129)) (-3503 (((-3 (-112) (-640 $)) |#4| $) 132)) (-3492 (((-640 (-2 (|:| |val| (-112)) (|:| -2058 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-3834 (((-640 $) |#4| $) 125) (((-640 $) (-640 |#4|) $) 124) (((-640 $) (-640 |#4|) (-640 $)) 123) (((-640 $) |#4| (-640 $)) 122)) (-1956 (($ |#4| $) 117) (($ (-640 |#4|) $) 116)) (-2297 (((-640 |#4|) $) 107)) (-2225 (((-112) |#4| $) 99) (((-112) $) 95)) (-2163 ((|#4| |#4| $) 90)) (-2319 (((-112) $ $) 110)) (-3454 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-555)))) (-2241 (((-112) |#4| $) 100) (((-112) $) 96)) (-2176 ((|#4| |#4| $) 91)) (-1693 (((-1113) $) 10)) (-3782 (((-3 |#4| "failed") $) 84)) (-1971 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-2089 (((-3 $ "failed") $ |#4|) 78)) (-1751 (($ $ |#4|) 77) (((-640 $) |#4| $) 115) (((-640 $) |#4| (-640 $)) 114) (((-640 $) (-640 |#4|) $) 113) (((-640 $) (-640 |#4|) (-640 $)) 112)) (-1458 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 |#4|) (-640 |#4|)) 59 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) 57 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) 56 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2941 (((-112) $ $) 38)) (-1665 (((-112) $) 41)) (-3445 (($) 40)) (-3871 (((-767) $) 106)) (-1708 (((-767) |#4| $) 54 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) (((-767) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4408)))) (-1870 (($ $) 39)) (-2219 (((-536) $) 69 (|has| |#4| (-611 (-536))))) (-1706 (($ (-640 |#4|)) 60)) (-3519 (($ $ |#3|) 28)) (-3542 (($ $ |#3|) 30)) (-2141 (($ $) 88)) (-3529 (($ $ |#3|) 29)) (-1692 (((-858) $) 11) (((-640 |#4|) $) 37)) (-3255 (((-767) $) 76 (|has| |#3| (-368)))) (-2307 (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-2211 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) 98)) (-3450 (((-640 $) |#4| $) 121) (((-640 $) |#4| (-640 $)) 120) (((-640 $) (-640 |#4|) $) 119) (((-640 $) (-640 |#4|) (-640 $)) 118)) (-1471 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4408)))) (-2100 (((-640 |#3|) $) 81)) (-3525 (((-112) |#4| $) 135)) (-3772 (((-112) |#3| $) 80)) (-1718 (((-112) $ $) 6)) (-3610 (((-767) $) 46 (|has| $ (-6 -4408)))))
(((-1120 |#1| |#2| |#3| |#4|) (-140) (-452) (-789) (-846) (-1059 |t#1| |t#2| |t#3|)) (T -1120))
NIL
(-13 (-1102 |t#1| |t#2| |t#3| |t#4|) (-780 |t#1| |t#2| |t#3| |t#4|))
(((-34) . T) ((-102) . T) ((-610 (-640 |#4|)) . T) ((-610 (-858)) . T) ((-151 |#4|) . T) ((-611 (-536)) |has| |#4| (-611 (-536))) ((-309 |#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))) ((-489 |#4|) . T) ((-514 |#4| |#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))) ((-780 |#1| |#2| |#3| |#4|) . T) ((-972 |#1| |#2| |#3| |#4|) . T) ((-1065 |#1| |#2| |#3| |#4|) . T) ((-1093) . T) ((-1102 |#1| |#2| |#3| |#4|) . T) ((-1201 |#1| |#2| |#3| |#4|) . T) ((-1208) . T))
-((-1793 (((-640 |#2|) |#1|) 12)) (-4124 (((-640 |#2|) |#2| |#2| |#2| |#2| |#2|) 38) (((-640 |#2|) |#1|) 49)) (-3754 (((-640 |#2|) |#2| |#2| |#2|) 36) (((-640 |#2|) |#1|) 47)) (-2635 ((|#2| |#1|) 43)) (-1505 (((-2 (|:| |solns| (-640 |#2|)) (|:| |maps| (-640 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 17)) (-3598 (((-640 |#2|) |#2| |#2|) 35) (((-640 |#2|) |#1|) 46)) (-1932 (((-640 |#2|) |#2| |#2| |#2| |#2|) 37) (((-640 |#2|) |#1|) 48)) (-2832 ((|#2| |#2| |#2| |#2| |#2| |#2|) 42)) (-3683 ((|#2| |#2| |#2| |#2|) 40)) (-1445 ((|#2| |#2| |#2|) 39)) (-3776 ((|#2| |#2| |#2| |#2| |#2|) 41)))
-(((-1121 |#1| |#2|) (-10 -7 (-15 -1793 ((-640 |#2|) |#1|)) (-15 -2635 (|#2| |#1|)) (-15 -1505 ((-2 (|:| |solns| (-640 |#2|)) (|:| |maps| (-640 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3598 ((-640 |#2|) |#1|)) (-15 -3754 ((-640 |#2|) |#1|)) (-15 -1932 ((-640 |#2|) |#1|)) (-15 -4124 ((-640 |#2|) |#1|)) (-15 -3598 ((-640 |#2|) |#2| |#2|)) (-15 -3754 ((-640 |#2|) |#2| |#2| |#2|)) (-15 -1932 ((-640 |#2|) |#2| |#2| |#2| |#2|)) (-15 -4124 ((-640 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -1445 (|#2| |#2| |#2|)) (-15 -3683 (|#2| |#2| |#2| |#2|)) (-15 -3776 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2832 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1233 |#2|) (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (T -1121))
-((-2832 (*1 *2 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))) (-3776 (*1 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))) (-3683 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))) (-1445 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))) (-4124 (*1 *2 *3 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *3)) (-5 *1 (-1121 *4 *3)) (-4 *4 (-1233 *3)))) (-1932 (*1 *2 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *3)) (-5 *1 (-1121 *4 *3)) (-4 *4 (-1233 *3)))) (-3754 (*1 *2 *3 *3 *3) (-12 (-4 *3 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *3)) (-5 *1 (-1121 *4 *3)) (-4 *4 (-1233 *3)))) (-3598 (*1 *2 *3 *3) (-12 (-4 *3 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *3)) (-5 *1 (-1121 *4 *3)) (-4 *4 (-1233 *3)))) (-4124 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4)))) (-1932 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4)))) (-3754 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4)))) (-3598 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4)))) (-1505 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *5 *5)) (-4 *5 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-2 (|:| |solns| (-640 *5)) (|:| |maps| (-640 (-2 (|:| |arg| *5) (|:| |res| *5)))))) (-5 *1 (-1121 *3 *5)) (-4 *3 (-1233 *5)))) (-2635 (*1 *2 *3) (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))) (-1793 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4)))))
-(-10 -7 (-15 -1793 ((-640 |#2|) |#1|)) (-15 -2635 (|#2| |#1|)) (-15 -1505 ((-2 (|:| |solns| (-640 |#2|)) (|:| |maps| (-640 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3598 ((-640 |#2|) |#1|)) (-15 -3754 ((-640 |#2|) |#1|)) (-15 -1932 ((-640 |#2|) |#1|)) (-15 -4124 ((-640 |#2|) |#1|)) (-15 -3598 ((-640 |#2|) |#2| |#2|)) (-15 -3754 ((-640 |#2|) |#2| |#2| |#2|)) (-15 -1932 ((-640 |#2|) |#2| |#2| |#2| |#2|)) (-15 -4124 ((-640 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -1445 (|#2| |#2| |#2|)) (-15 -3683 (|#2| |#2| |#2| |#2|)) (-15 -3776 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2832 (|#2| |#2| |#2| |#2| |#2| |#2|)))
-((-2747 (((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-407 (-948 |#1|))))) 95) (((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-407 (-948 |#1|)))) (-640 (-1169))) 94) (((-640 (-640 (-294 (-316 |#1|)))) (-640 (-407 (-948 |#1|)))) 92) (((-640 (-640 (-294 (-316 |#1|)))) (-640 (-407 (-948 |#1|))) (-640 (-1169))) 90) (((-640 (-294 (-316 |#1|))) (-294 (-407 (-948 |#1|)))) 75) (((-640 (-294 (-316 |#1|))) (-294 (-407 (-948 |#1|))) (-1169)) 76) (((-640 (-294 (-316 |#1|))) (-407 (-948 |#1|))) 70) (((-640 (-294 (-316 |#1|))) (-407 (-948 |#1|)) (-1169)) 59)) (-2363 (((-640 (-640 (-316 |#1|))) (-640 (-407 (-948 |#1|))) (-640 (-1169))) 88) (((-640 (-316 |#1|)) (-407 (-948 |#1|)) (-1169)) 43)) (-3946 (((-1158 (-640 (-316 |#1|)) (-640 (-294 (-316 |#1|)))) (-407 (-948 |#1|)) (-1169)) 98) (((-1158 (-640 (-316 |#1|)) (-640 (-294 (-316 |#1|)))) (-294 (-407 (-948 |#1|))) (-1169)) 97)))
-(((-1122 |#1|) (-10 -7 (-15 -2747 ((-640 (-294 (-316 |#1|))) (-407 (-948 |#1|)) (-1169))) (-15 -2747 ((-640 (-294 (-316 |#1|))) (-407 (-948 |#1|)))) (-15 -2747 ((-640 (-294 (-316 |#1|))) (-294 (-407 (-948 |#1|))) (-1169))) (-15 -2747 ((-640 (-294 (-316 |#1|))) (-294 (-407 (-948 |#1|))))) (-15 -2747 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -2747 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-407 (-948 |#1|))))) (-15 -2747 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-407 (-948 |#1|)))) (-640 (-1169)))) (-15 -2747 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-407 (-948 |#1|)))))) (-15 -2363 ((-640 (-316 |#1|)) (-407 (-948 |#1|)) (-1169))) (-15 -2363 ((-640 (-640 (-316 |#1|))) (-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -3946 ((-1158 (-640 (-316 |#1|)) (-640 (-294 (-316 |#1|)))) (-294 (-407 (-948 |#1|))) (-1169))) (-15 -3946 ((-1158 (-640 (-316 |#1|)) (-640 (-294 (-316 |#1|)))) (-407 (-948 |#1|)) (-1169)))) (-13 (-307) (-846) (-147))) (T -1122))
-((-3946 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-1158 (-640 (-316 *5)) (-640 (-294 (-316 *5))))) (-5 *1 (-1122 *5)))) (-3946 (*1 *2 *3 *4) (-12 (-5 *3 (-294 (-407 (-948 *5)))) (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-1158 (-640 (-316 *5)) (-640 (-294 (-316 *5))))) (-5 *1 (-1122 *5)))) (-2363 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169))) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-640 (-316 *5)))) (-5 *1 (-1122 *5)))) (-2363 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-316 *5))) (-5 *1 (-1122 *5)))) (-2747 (*1 *2 *3) (-12 (-5 *3 (-640 (-294 (-407 (-948 *4))))) (-4 *4 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-640 (-294 (-316 *4))))) (-5 *1 (-1122 *4)))) (-2747 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-294 (-407 (-948 *5))))) (-5 *4 (-640 (-1169))) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-640 (-294 (-316 *5))))) (-5 *1 (-1122 *5)))) (-2747 (*1 *2 *3) (-12 (-5 *3 (-640 (-407 (-948 *4)))) (-4 *4 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-640 (-294 (-316 *4))))) (-5 *1 (-1122 *4)))) (-2747 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169))) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-640 (-294 (-316 *5))))) (-5 *1 (-1122 *5)))) (-2747 (*1 *2 *3) (-12 (-5 *3 (-294 (-407 (-948 *4)))) (-4 *4 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-294 (-316 *4)))) (-5 *1 (-1122 *4)))) (-2747 (*1 *2 *3 *4) (-12 (-5 *3 (-294 (-407 (-948 *5)))) (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-294 (-316 *5)))) (-5 *1 (-1122 *5)))) (-2747 (*1 *2 *3) (-12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-294 (-316 *4)))) (-5 *1 (-1122 *4)))) (-2747 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-294 (-316 *5)))) (-5 *1 (-1122 *5)))))
-(-10 -7 (-15 -2747 ((-640 (-294 (-316 |#1|))) (-407 (-948 |#1|)) (-1169))) (-15 -2747 ((-640 (-294 (-316 |#1|))) (-407 (-948 |#1|)))) (-15 -2747 ((-640 (-294 (-316 |#1|))) (-294 (-407 (-948 |#1|))) (-1169))) (-15 -2747 ((-640 (-294 (-316 |#1|))) (-294 (-407 (-948 |#1|))))) (-15 -2747 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -2747 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-407 (-948 |#1|))))) (-15 -2747 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-407 (-948 |#1|)))) (-640 (-1169)))) (-15 -2747 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-407 (-948 |#1|)))))) (-15 -2363 ((-640 (-316 |#1|)) (-407 (-948 |#1|)) (-1169))) (-15 -2363 ((-640 (-640 (-316 |#1|))) (-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -3946 ((-1158 (-640 (-316 |#1|)) (-640 (-294 (-316 |#1|)))) (-294 (-407 (-948 |#1|))) (-1169))) (-15 -3946 ((-1158 (-640 (-316 |#1|)) (-640 (-294 (-316 |#1|)))) (-407 (-948 |#1|)) (-1169))))
-((-3201 (((-407 (-1165 (-316 |#1|))) (-1257 (-316 |#1|)) (-407 (-1165 (-316 |#1|))) (-563)) 29)) (-3896 (((-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|)))) 40)))
-(((-1123 |#1|) (-10 -7 (-15 -3896 ((-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))))) (-15 -3201 ((-407 (-1165 (-316 |#1|))) (-1257 (-316 |#1|)) (-407 (-1165 (-316 |#1|))) (-563)))) (-13 (-555) (-846))) (T -1123))
-((-3201 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-407 (-1165 (-316 *5)))) (-5 *3 (-1257 (-316 *5))) (-5 *4 (-563)) (-4 *5 (-13 (-555) (-846))) (-5 *1 (-1123 *5)))) (-3896 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-407 (-1165 (-316 *3)))) (-4 *3 (-13 (-555) (-846))) (-5 *1 (-1123 *3)))))
-(-10 -7 (-15 -3896 ((-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))))) (-15 -3201 ((-407 (-1165 (-316 |#1|))) (-1257 (-316 |#1|)) (-407 (-1165 (-316 |#1|))) (-563))))
-((-1793 (((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-316 |#1|))) (-640 (-1169))) 222) (((-640 (-294 (-316 |#1|))) (-316 |#1|) (-1169)) 20) (((-640 (-294 (-316 |#1|))) (-294 (-316 |#1|)) (-1169)) 26) (((-640 (-294 (-316 |#1|))) (-294 (-316 |#1|))) 25) (((-640 (-294 (-316 |#1|))) (-316 |#1|)) 21)))
-(((-1124 |#1|) (-10 -7 (-15 -1793 ((-640 (-294 (-316 |#1|))) (-316 |#1|))) (-15 -1793 ((-640 (-294 (-316 |#1|))) (-294 (-316 |#1|)))) (-15 -1793 ((-640 (-294 (-316 |#1|))) (-294 (-316 |#1|)) (-1169))) (-15 -1793 ((-640 (-294 (-316 |#1|))) (-316 |#1|) (-1169))) (-15 -1793 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-316 |#1|))) (-640 (-1169))))) (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (T -1124))
-((-1793 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-1169))) (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-640 (-640 (-294 (-316 *5))))) (-5 *1 (-1124 *5)) (-5 *3 (-640 (-294 (-316 *5)))))) (-1793 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-640 (-294 (-316 *5)))) (-5 *1 (-1124 *5)) (-5 *3 (-316 *5)))) (-1793 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-640 (-294 (-316 *5)))) (-5 *1 (-1124 *5)) (-5 *3 (-294 (-316 *5))))) (-1793 (*1 *2 *3) (-12 (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-640 (-294 (-316 *4)))) (-5 *1 (-1124 *4)) (-5 *3 (-294 (-316 *4))))) (-1793 (*1 *2 *3) (-12 (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-640 (-294 (-316 *4)))) (-5 *1 (-1124 *4)) (-5 *3 (-316 *4)))))
-(-10 -7 (-15 -1793 ((-640 (-294 (-316 |#1|))) (-316 |#1|))) (-15 -1793 ((-640 (-294 (-316 |#1|))) (-294 (-316 |#1|)))) (-15 -1793 ((-640 (-294 (-316 |#1|))) (-294 (-316 |#1|)) (-1169))) (-15 -1793 ((-640 (-294 (-316 |#1|))) (-316 |#1|) (-1169))) (-15 -1793 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-316 |#1|))) (-640 (-1169)))))
-((-2960 ((|#2| |#2|) 20 (|has| |#1| (-846))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 17)) (-2420 ((|#2| |#2|) 19 (|has| |#1| (-846))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 16)))
-(((-1125 |#1| |#2|) (-10 -7 (-15 -2420 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -2960 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-846)) (PROGN (-15 -2420 (|#2| |#2|)) (-15 -2960 (|#2| |#2|))) |%noBranch|)) (-1208) (-13 (-601 (-563) |#1|) (-10 -7 (-6 -4407) (-6 -4408)))) (T -1125))
-((-2960 (*1 *2 *2) (-12 (-4 *3 (-846)) (-4 *3 (-1208)) (-5 *1 (-1125 *3 *2)) (-4 *2 (-13 (-601 (-563) *3) (-10 -7 (-6 -4407) (-6 -4408)))))) (-2420 (*1 *2 *2) (-12 (-4 *3 (-846)) (-4 *3 (-1208)) (-5 *1 (-1125 *3 *2)) (-4 *2 (-13 (-601 (-563) *3) (-10 -7 (-6 -4407) (-6 -4408)))))) (-2960 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-1125 *4 *2)) (-4 *2 (-13 (-601 (-563) *4) (-10 -7 (-6 -4407) (-6 -4408)))))) (-2420 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-1125 *4 *2)) (-4 *2 (-13 (-601 (-563) *4) (-10 -7 (-6 -4407) (-6 -4408)))))))
-(-10 -7 (-15 -2420 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -2960 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-846)) (PROGN (-15 -2420 (|#2| |#2|)) (-15 -2960 (|#2| |#2|))) |%noBranch|))
-((-1677 (((-112) $ $) NIL)) (-2756 (((-1157 3 |#1|) $) 107)) (-3049 (((-112) $) 72)) (-3693 (($ $ (-640 (-939 |#1|))) 20) (($ $ (-640 (-640 |#1|))) 75) (($ (-640 (-939 |#1|))) 74) (((-640 (-939 |#1|)) $) 73)) (-3005 (((-112) $) 41)) (-3014 (($ $ (-939 |#1|)) 46) (($ $ (-640 |#1|)) 51) (($ $ (-767)) 53) (($ (-939 |#1|)) 47) (((-939 |#1|) $) 45)) (-4201 (((-2 (|:| -2630 (-767)) (|:| |curves| (-767)) (|:| |polygons| (-767)) (|:| |constructs| (-767))) $) 105)) (-1914 (((-767) $) 26)) (-3273 (((-767) $) 25)) (-3823 (($ $ (-767) (-939 |#1|)) 39)) (-1358 (((-112) $) 82)) (-2010 (($ $ (-640 (-640 (-939 |#1|))) (-640 (-171)) (-171)) 89) (($ $ (-640 (-640 (-640 |#1|))) (-640 (-171)) (-171)) 91) (($ $ (-640 (-640 (-939 |#1|))) (-112) (-112)) 85) (($ $ (-640 (-640 (-640 |#1|))) (-112) (-112)) 93) (($ (-640 (-640 (-939 |#1|)))) 86) (($ (-640 (-640 (-939 |#1|))) (-112) (-112)) 87) (((-640 (-640 (-939 |#1|))) $) 84)) (-3164 (($ (-640 $)) 28) (($ $ $) 29)) (-2390 (((-640 (-171)) $) 102)) (-2277 (((-640 (-939 |#1|)) $) 96)) (-2996 (((-640 (-640 (-171))) $) 101)) (-2303 (((-640 (-640 (-640 (-939 |#1|)))) $) NIL)) (-3850 (((-640 (-640 (-640 (-767)))) $) 99)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1781 (((-767) $ (-640 (-939 |#1|))) 37)) (-3002 (((-112) $) 54)) (-3448 (($ $ (-640 (-939 |#1|))) 56) (($ $ (-640 (-640 |#1|))) 62) (($ (-640 (-939 |#1|))) 57) (((-640 (-939 |#1|)) $) 55)) (-3940 (($) 23) (($ (-1157 3 |#1|)) 24)) (-1872 (($ $) 35)) (-3491 (((-640 $) $) 34)) (-1346 (($ (-640 $)) 31)) (-3526 (((-640 $) $) 33)) (-1693 (((-858) $) 111)) (-2575 (((-112) $) 64)) (-2929 (($ $ (-640 (-939 |#1|))) 66) (($ $ (-640 (-640 |#1|))) 69) (($ (-640 (-939 |#1|))) 67) (((-640 (-939 |#1|)) $) 65)) (-4350 (($ $) 106)) (-1718 (((-112) $ $) NIL)))
+((-3510 (((-640 |#2|) |#1|) 12)) (-2344 (((-640 |#2|) |#2| |#2| |#2| |#2| |#2|) 38) (((-640 |#2|) |#1|) 49)) (-2324 (((-640 |#2|) |#2| |#2| |#2|) 36) (((-640 |#2|) |#1|) 47)) (-2302 ((|#2| |#1|) 43)) (-2314 (((-2 (|:| |solns| (-640 |#2|)) (|:| |maps| (-640 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 17)) (-3599 (((-640 |#2|) |#2| |#2|) 35) (((-640 |#2|) |#1|) 46)) (-2333 (((-640 |#2|) |#2| |#2| |#2| |#2|) 37) (((-640 |#2|) |#1|) 48)) (-2386 ((|#2| |#2| |#2| |#2| |#2| |#2|) 42)) (-2364 ((|#2| |#2| |#2| |#2|) 40)) (-2355 ((|#2| |#2| |#2|) 39)) (-2374 ((|#2| |#2| |#2| |#2| |#2|) 41)))
+(((-1121 |#1| |#2|) (-10 -7 (-15 -3510 ((-640 |#2|) |#1|)) (-15 -2302 (|#2| |#1|)) (-15 -2314 ((-2 (|:| |solns| (-640 |#2|)) (|:| |maps| (-640 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3599 ((-640 |#2|) |#1|)) (-15 -2324 ((-640 |#2|) |#1|)) (-15 -2333 ((-640 |#2|) |#1|)) (-15 -2344 ((-640 |#2|) |#1|)) (-15 -3599 ((-640 |#2|) |#2| |#2|)) (-15 -2324 ((-640 |#2|) |#2| |#2| |#2|)) (-15 -2333 ((-640 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2344 ((-640 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -2355 (|#2| |#2| |#2|)) (-15 -2364 (|#2| |#2| |#2| |#2|)) (-15 -2374 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2386 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1233 |#2|) (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (T -1121))
+((-2386 (*1 *2 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))) (-2374 (*1 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))) (-2364 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))) (-2355 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))) (-2344 (*1 *2 *3 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *3)) (-5 *1 (-1121 *4 *3)) (-4 *4 (-1233 *3)))) (-2333 (*1 *2 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *3)) (-5 *1 (-1121 *4 *3)) (-4 *4 (-1233 *3)))) (-2324 (*1 *2 *3 *3 *3) (-12 (-4 *3 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *3)) (-5 *1 (-1121 *4 *3)) (-4 *4 (-1233 *3)))) (-3599 (*1 *2 *3 *3) (-12 (-4 *3 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *3)) (-5 *1 (-1121 *4 *3)) (-4 *4 (-1233 *3)))) (-2344 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4)))) (-2333 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4)))) (-2324 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4)))) (-3599 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4)))) (-2314 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *5 *5)) (-4 *5 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-2 (|:| |solns| (-640 *5)) (|:| |maps| (-640 (-2 (|:| |arg| *5) (|:| |res| *5)))))) (-5 *1 (-1121 *3 *5)) (-4 *3 (-1233 *5)))) (-2302 (*1 *2 *3) (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))) (-3510 (*1 *2 *3) (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563))))))) (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4)))))
+(-10 -7 (-15 -3510 ((-640 |#2|) |#1|)) (-15 -2302 (|#2| |#1|)) (-15 -2314 ((-2 (|:| |solns| (-640 |#2|)) (|:| |maps| (-640 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3599 ((-640 |#2|) |#1|)) (-15 -2324 ((-640 |#2|) |#1|)) (-15 -2333 ((-640 |#2|) |#1|)) (-15 -2344 ((-640 |#2|) |#1|)) (-15 -3599 ((-640 |#2|) |#2| |#2|)) (-15 -2324 ((-640 |#2|) |#2| |#2| |#2|)) (-15 -2333 ((-640 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2344 ((-640 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -2355 (|#2| |#2| |#2|)) (-15 -2364 (|#2| |#2| |#2| |#2|)) (-15 -2374 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2386 (|#2| |#2| |#2| |#2| |#2| |#2|)))
+((-2397 (((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-407 (-948 |#1|))))) 95) (((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-407 (-948 |#1|)))) (-640 (-1169))) 94) (((-640 (-640 (-294 (-316 |#1|)))) (-640 (-407 (-948 |#1|)))) 92) (((-640 (-640 (-294 (-316 |#1|)))) (-640 (-407 (-948 |#1|))) (-640 (-1169))) 90) (((-640 (-294 (-316 |#1|))) (-294 (-407 (-948 |#1|)))) 75) (((-640 (-294 (-316 |#1|))) (-294 (-407 (-948 |#1|))) (-1169)) 76) (((-640 (-294 (-316 |#1|))) (-407 (-948 |#1|))) 70) (((-640 (-294 (-316 |#1|))) (-407 (-948 |#1|)) (-1169)) 59)) (-2408 (((-640 (-640 (-316 |#1|))) (-640 (-407 (-948 |#1|))) (-640 (-1169))) 88) (((-640 (-316 |#1|)) (-407 (-948 |#1|)) (-1169)) 43)) (-2420 (((-1158 (-640 (-316 |#1|)) (-640 (-294 (-316 |#1|)))) (-407 (-948 |#1|)) (-1169)) 98) (((-1158 (-640 (-316 |#1|)) (-640 (-294 (-316 |#1|)))) (-294 (-407 (-948 |#1|))) (-1169)) 97)))
+(((-1122 |#1|) (-10 -7 (-15 -2397 ((-640 (-294 (-316 |#1|))) (-407 (-948 |#1|)) (-1169))) (-15 -2397 ((-640 (-294 (-316 |#1|))) (-407 (-948 |#1|)))) (-15 -2397 ((-640 (-294 (-316 |#1|))) (-294 (-407 (-948 |#1|))) (-1169))) (-15 -2397 ((-640 (-294 (-316 |#1|))) (-294 (-407 (-948 |#1|))))) (-15 -2397 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -2397 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-407 (-948 |#1|))))) (-15 -2397 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-407 (-948 |#1|)))) (-640 (-1169)))) (-15 -2397 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-407 (-948 |#1|)))))) (-15 -2408 ((-640 (-316 |#1|)) (-407 (-948 |#1|)) (-1169))) (-15 -2408 ((-640 (-640 (-316 |#1|))) (-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -2420 ((-1158 (-640 (-316 |#1|)) (-640 (-294 (-316 |#1|)))) (-294 (-407 (-948 |#1|))) (-1169))) (-15 -2420 ((-1158 (-640 (-316 |#1|)) (-640 (-294 (-316 |#1|)))) (-407 (-948 |#1|)) (-1169)))) (-13 (-307) (-846) (-147))) (T -1122))
+((-2420 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-1158 (-640 (-316 *5)) (-640 (-294 (-316 *5))))) (-5 *1 (-1122 *5)))) (-2420 (*1 *2 *3 *4) (-12 (-5 *3 (-294 (-407 (-948 *5)))) (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-1158 (-640 (-316 *5)) (-640 (-294 (-316 *5))))) (-5 *1 (-1122 *5)))) (-2408 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169))) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-640 (-316 *5)))) (-5 *1 (-1122 *5)))) (-2408 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-316 *5))) (-5 *1 (-1122 *5)))) (-2397 (*1 *2 *3) (-12 (-5 *3 (-640 (-294 (-407 (-948 *4))))) (-4 *4 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-640 (-294 (-316 *4))))) (-5 *1 (-1122 *4)))) (-2397 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-294 (-407 (-948 *5))))) (-5 *4 (-640 (-1169))) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-640 (-294 (-316 *5))))) (-5 *1 (-1122 *5)))) (-2397 (*1 *2 *3) (-12 (-5 *3 (-640 (-407 (-948 *4)))) (-4 *4 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-640 (-294 (-316 *4))))) (-5 *1 (-1122 *4)))) (-2397 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169))) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-640 (-294 (-316 *5))))) (-5 *1 (-1122 *5)))) (-2397 (*1 *2 *3) (-12 (-5 *3 (-294 (-407 (-948 *4)))) (-4 *4 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-294 (-316 *4)))) (-5 *1 (-1122 *4)))) (-2397 (*1 *2 *3 *4) (-12 (-5 *3 (-294 (-407 (-948 *5)))) (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-294 (-316 *5)))) (-5 *1 (-1122 *5)))) (-2397 (*1 *2 *3) (-12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-294 (-316 *4)))) (-5 *1 (-1122 *4)))) (-2397 (*1 *2 *3 *4) (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-294 (-316 *5)))) (-5 *1 (-1122 *5)))))
+(-10 -7 (-15 -2397 ((-640 (-294 (-316 |#1|))) (-407 (-948 |#1|)) (-1169))) (-15 -2397 ((-640 (-294 (-316 |#1|))) (-407 (-948 |#1|)))) (-15 -2397 ((-640 (-294 (-316 |#1|))) (-294 (-407 (-948 |#1|))) (-1169))) (-15 -2397 ((-640 (-294 (-316 |#1|))) (-294 (-407 (-948 |#1|))))) (-15 -2397 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -2397 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-407 (-948 |#1|))))) (-15 -2397 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-407 (-948 |#1|)))) (-640 (-1169)))) (-15 -2397 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-407 (-948 |#1|)))))) (-15 -2408 ((-640 (-316 |#1|)) (-407 (-948 |#1|)) (-1169))) (-15 -2408 ((-640 (-640 (-316 |#1|))) (-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -2420 ((-1158 (-640 (-316 |#1|)) (-640 (-294 (-316 |#1|)))) (-294 (-407 (-948 |#1|))) (-1169))) (-15 -2420 ((-1158 (-640 (-316 |#1|)) (-640 (-294 (-316 |#1|)))) (-407 (-948 |#1|)) (-1169))))
+((-2442 (((-407 (-1165 (-316 |#1|))) (-1257 (-316 |#1|)) (-407 (-1165 (-316 |#1|))) (-563)) 29)) (-2430 (((-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|)))) 40)))
+(((-1123 |#1|) (-10 -7 (-15 -2430 ((-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))))) (-15 -2442 ((-407 (-1165 (-316 |#1|))) (-1257 (-316 |#1|)) (-407 (-1165 (-316 |#1|))) (-563)))) (-13 (-555) (-846))) (T -1123))
+((-2442 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-407 (-1165 (-316 *5)))) (-5 *3 (-1257 (-316 *5))) (-5 *4 (-563)) (-4 *5 (-13 (-555) (-846))) (-5 *1 (-1123 *5)))) (-2430 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-407 (-1165 (-316 *3)))) (-4 *3 (-13 (-555) (-846))) (-5 *1 (-1123 *3)))))
+(-10 -7 (-15 -2430 ((-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))) (-407 (-1165 (-316 |#1|))))) (-15 -2442 ((-407 (-1165 (-316 |#1|))) (-1257 (-316 |#1|)) (-407 (-1165 (-316 |#1|))) (-563))))
+((-3510 (((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-316 |#1|))) (-640 (-1169))) 222) (((-640 (-294 (-316 |#1|))) (-316 |#1|) (-1169)) 20) (((-640 (-294 (-316 |#1|))) (-294 (-316 |#1|)) (-1169)) 26) (((-640 (-294 (-316 |#1|))) (-294 (-316 |#1|))) 25) (((-640 (-294 (-316 |#1|))) (-316 |#1|)) 21)))
+(((-1124 |#1|) (-10 -7 (-15 -3510 ((-640 (-294 (-316 |#1|))) (-316 |#1|))) (-15 -3510 ((-640 (-294 (-316 |#1|))) (-294 (-316 |#1|)))) (-15 -3510 ((-640 (-294 (-316 |#1|))) (-294 (-316 |#1|)) (-1169))) (-15 -3510 ((-640 (-294 (-316 |#1|))) (-316 |#1|) (-1169))) (-15 -3510 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-316 |#1|))) (-640 (-1169))))) (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (T -1124))
+((-3510 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-1169))) (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-640 (-640 (-294 (-316 *5))))) (-5 *1 (-1124 *5)) (-5 *3 (-640 (-294 (-316 *5)))))) (-3510 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-640 (-294 (-316 *5)))) (-5 *1 (-1124 *5)) (-5 *3 (-316 *5)))) (-3510 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-640 (-294 (-316 *5)))) (-5 *1 (-1124 *5)) (-5 *3 (-294 (-316 *5))))) (-3510 (*1 *2 *3) (-12 (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-640 (-294 (-316 *4)))) (-5 *1 (-1124 *4)) (-5 *3 (-294 (-316 *4))))) (-3510 (*1 *2 *3) (-12 (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147))) (-5 *2 (-640 (-294 (-316 *4)))) (-5 *1 (-1124 *4)) (-5 *3 (-316 *4)))))
+(-10 -7 (-15 -3510 ((-640 (-294 (-316 |#1|))) (-316 |#1|))) (-15 -3510 ((-640 (-294 (-316 |#1|))) (-294 (-316 |#1|)))) (-15 -3510 ((-640 (-294 (-316 |#1|))) (-294 (-316 |#1|)) (-1169))) (-15 -3510 ((-640 (-294 (-316 |#1|))) (-316 |#1|) (-1169))) (-15 -3510 ((-640 (-640 (-294 (-316 |#1|)))) (-640 (-294 (-316 |#1|))) (-640 (-1169)))))
+((-2463 ((|#2| |#2|) 20 (|has| |#1| (-846))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 17)) (-2453 ((|#2| |#2|) 19 (|has| |#1| (-846))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 16)))
+(((-1125 |#1| |#2|) (-10 -7 (-15 -2453 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -2463 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-846)) (PROGN (-15 -2453 (|#2| |#2|)) (-15 -2463 (|#2| |#2|))) |%noBranch|)) (-1208) (-13 (-601 (-563) |#1|) (-10 -7 (-6 -4408) (-6 -4409)))) (T -1125))
+((-2463 (*1 *2 *2) (-12 (-4 *3 (-846)) (-4 *3 (-1208)) (-5 *1 (-1125 *3 *2)) (-4 *2 (-13 (-601 (-563) *3) (-10 -7 (-6 -4408) (-6 -4409)))))) (-2453 (*1 *2 *2) (-12 (-4 *3 (-846)) (-4 *3 (-1208)) (-5 *1 (-1125 *3 *2)) (-4 *2 (-13 (-601 (-563) *3) (-10 -7 (-6 -4408) (-6 -4409)))))) (-2463 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-1125 *4 *2)) (-4 *2 (-13 (-601 (-563) *4) (-10 -7 (-6 -4408) (-6 -4409)))))) (-2453 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-1125 *4 *2)) (-4 *2 (-13 (-601 (-563) *4) (-10 -7 (-6 -4408) (-6 -4409)))))))
+(-10 -7 (-15 -2453 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -2463 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-846)) (PROGN (-15 -2453 (|#2| |#2|)) (-15 -2463 (|#2| |#2|))) |%noBranch|))
+((-1677 (((-112) $ $) NIL)) (-1414 (((-1157 3 |#1|) $) 107)) (-2555 (((-112) $) 72)) (-2565 (($ $ (-640 (-939 |#1|))) 20) (($ $ (-640 (-640 |#1|))) 75) (($ (-640 (-939 |#1|))) 74) (((-640 (-939 |#1|)) $) 73)) (-2613 (((-112) $) 41)) (-3018 (($ $ (-939 |#1|)) 46) (($ $ (-640 |#1|)) 51) (($ $ (-767)) 53) (($ (-939 |#1|)) 47) (((-939 |#1|) $) 45)) (-4201 (((-2 (|:| -4196 (-767)) (|:| |curves| (-767)) (|:| |polygons| (-767)) (|:| |constructs| (-767))) $) 105)) (-2650 (((-767) $) 26)) (-1419 (((-767) $) 25)) (-1403 (($ $ (-767) (-939 |#1|)) 39)) (-2532 (((-112) $) 82)) (-2544 (($ $ (-640 (-640 (-939 |#1|))) (-640 (-171)) (-171)) 89) (($ $ (-640 (-640 (-640 |#1|))) (-640 (-171)) (-171)) 91) (($ $ (-640 (-640 (-939 |#1|))) (-112) (-112)) 85) (($ $ (-640 (-640 (-640 |#1|))) (-112) (-112)) 93) (($ (-640 (-640 (-939 |#1|)))) 86) (($ (-640 (-640 (-939 |#1|))) (-112) (-112)) 87) (((-640 (-640 (-939 |#1|))) $) 84)) (-4300 (($ (-640 $)) 28) (($ $ $) 29)) (-2487 (((-640 (-171)) $) 102)) (-2276 (((-640 (-939 |#1|)) $) 96)) (-2497 (((-640 (-640 (-171))) $) 101)) (-2508 (((-640 (-640 (-640 (-939 |#1|)))) $) NIL)) (-2520 (((-640 (-640 (-640 (-767)))) $) 99)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2624 (((-767) $ (-640 (-939 |#1|))) 37)) (-2593 (((-112) $) 54)) (-2604 (($ $ (-640 (-939 |#1|))) 56) (($ $ (-640 (-640 |#1|))) 62) (($ (-640 (-939 |#1|))) 57) (((-640 (-939 |#1|)) $) 55)) (-1430 (($) 23) (($ (-1157 3 |#1|)) 24)) (-1870 (($ $) 35)) (-2631 (((-640 $) $) 34)) (-1590 (($ (-640 $)) 31)) (-2641 (((-640 $) $) 33)) (-1692 (((-858) $) 111)) (-2574 (((-112) $) 64)) (-2586 (($ $ (-640 (-939 |#1|))) 66) (($ $ (-640 (-640 |#1|))) 69) (($ (-640 (-939 |#1|))) 67) (((-640 (-939 |#1|)) $) 65)) (-2476 (($ $) 106)) (-1718 (((-112) $ $) NIL)))
(((-1126 |#1|) (-1127 |#1|) (-1045)) (T -1126))
NIL
(-1127 |#1|)
-((-1677 (((-112) $ $) 7)) (-2756 (((-1157 3 |#1|) $) 13)) (-3049 (((-112) $) 29)) (-3693 (($ $ (-640 (-939 |#1|))) 33) (($ $ (-640 (-640 |#1|))) 32) (($ (-640 (-939 |#1|))) 31) (((-640 (-939 |#1|)) $) 30)) (-3005 (((-112) $) 44)) (-3014 (($ $ (-939 |#1|)) 49) (($ $ (-640 |#1|)) 48) (($ $ (-767)) 47) (($ (-939 |#1|)) 46) (((-939 |#1|) $) 45)) (-4201 (((-2 (|:| -2630 (-767)) (|:| |curves| (-767)) (|:| |polygons| (-767)) (|:| |constructs| (-767))) $) 15)) (-1914 (((-767) $) 58)) (-3273 (((-767) $) 59)) (-3823 (($ $ (-767) (-939 |#1|)) 50)) (-1358 (((-112) $) 21)) (-2010 (($ $ (-640 (-640 (-939 |#1|))) (-640 (-171)) (-171)) 28) (($ $ (-640 (-640 (-640 |#1|))) (-640 (-171)) (-171)) 27) (($ $ (-640 (-640 (-939 |#1|))) (-112) (-112)) 26) (($ $ (-640 (-640 (-640 |#1|))) (-112) (-112)) 25) (($ (-640 (-640 (-939 |#1|)))) 24) (($ (-640 (-640 (-939 |#1|))) (-112) (-112)) 23) (((-640 (-640 (-939 |#1|))) $) 22)) (-3164 (($ (-640 $)) 57) (($ $ $) 56)) (-2390 (((-640 (-171)) $) 16)) (-2277 (((-640 (-939 |#1|)) $) 20)) (-2996 (((-640 (-640 (-171))) $) 17)) (-2303 (((-640 (-640 (-640 (-939 |#1|)))) $) 18)) (-3850 (((-640 (-640 (-640 (-767)))) $) 19)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1781 (((-767) $ (-640 (-939 |#1|))) 51)) (-3002 (((-112) $) 39)) (-3448 (($ $ (-640 (-939 |#1|))) 43) (($ $ (-640 (-640 |#1|))) 42) (($ (-640 (-939 |#1|))) 41) (((-640 (-939 |#1|)) $) 40)) (-3940 (($) 61) (($ (-1157 3 |#1|)) 60)) (-1872 (($ $) 52)) (-3491 (((-640 $) $) 53)) (-1346 (($ (-640 $)) 55)) (-3526 (((-640 $) $) 54)) (-1693 (((-858) $) 11)) (-2575 (((-112) $) 34)) (-2929 (($ $ (-640 (-939 |#1|))) 38) (($ $ (-640 (-640 |#1|))) 37) (($ (-640 (-939 |#1|))) 36) (((-640 (-939 |#1|)) $) 35)) (-4350 (($ $) 14)) (-1718 (((-112) $ $) 6)))
+((-1677 (((-112) $ $) 7)) (-1414 (((-1157 3 |#1|) $) 13)) (-2555 (((-112) $) 29)) (-2565 (($ $ (-640 (-939 |#1|))) 33) (($ $ (-640 (-640 |#1|))) 32) (($ (-640 (-939 |#1|))) 31) (((-640 (-939 |#1|)) $) 30)) (-2613 (((-112) $) 44)) (-3018 (($ $ (-939 |#1|)) 49) (($ $ (-640 |#1|)) 48) (($ $ (-767)) 47) (($ (-939 |#1|)) 46) (((-939 |#1|) $) 45)) (-4201 (((-2 (|:| -4196 (-767)) (|:| |curves| (-767)) (|:| |polygons| (-767)) (|:| |constructs| (-767))) $) 15)) (-2650 (((-767) $) 58)) (-1419 (((-767) $) 59)) (-1403 (($ $ (-767) (-939 |#1|)) 50)) (-2532 (((-112) $) 21)) (-2544 (($ $ (-640 (-640 (-939 |#1|))) (-640 (-171)) (-171)) 28) (($ $ (-640 (-640 (-640 |#1|))) (-640 (-171)) (-171)) 27) (($ $ (-640 (-640 (-939 |#1|))) (-112) (-112)) 26) (($ $ (-640 (-640 (-640 |#1|))) (-112) (-112)) 25) (($ (-640 (-640 (-939 |#1|)))) 24) (($ (-640 (-640 (-939 |#1|))) (-112) (-112)) 23) (((-640 (-640 (-939 |#1|))) $) 22)) (-4300 (($ (-640 $)) 57) (($ $ $) 56)) (-2487 (((-640 (-171)) $) 16)) (-2276 (((-640 (-939 |#1|)) $) 20)) (-2497 (((-640 (-640 (-171))) $) 17)) (-2508 (((-640 (-640 (-640 (-939 |#1|)))) $) 18)) (-2520 (((-640 (-640 (-640 (-767)))) $) 19)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-2624 (((-767) $ (-640 (-939 |#1|))) 51)) (-2593 (((-112) $) 39)) (-2604 (($ $ (-640 (-939 |#1|))) 43) (($ $ (-640 (-640 |#1|))) 42) (($ (-640 (-939 |#1|))) 41) (((-640 (-939 |#1|)) $) 40)) (-1430 (($) 61) (($ (-1157 3 |#1|)) 60)) (-1870 (($ $) 52)) (-2631 (((-640 $) $) 53)) (-1590 (($ (-640 $)) 55)) (-2641 (((-640 $) $) 54)) (-1692 (((-858) $) 11)) (-2574 (((-112) $) 34)) (-2586 (($ $ (-640 (-939 |#1|))) 38) (($ $ (-640 (-640 |#1|))) 37) (($ (-640 (-939 |#1|))) 36) (((-640 (-939 |#1|)) $) 35)) (-2476 (($ $) 14)) (-1718 (((-112) $ $) 6)))
(((-1127 |#1|) (-140) (-1045)) (T -1127))
-((-1693 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-858)))) (-3940 (*1 *1) (-12 (-4 *1 (-1127 *2)) (-4 *2 (-1045)))) (-3940 (*1 *1 *2) (-12 (-5 *2 (-1157 3 *3)) (-4 *3 (-1045)) (-4 *1 (-1127 *3)))) (-3273 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))) (-1914 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))) (-3164 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-3164 (*1 *1 *1 *1) (-12 (-4 *1 (-1127 *2)) (-4 *2 (-1045)))) (-1346 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-3526 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)))) (-3491 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)))) (-1872 (*1 *1 *1) (-12 (-4 *1 (-1127 *2)) (-4 *2 (-1045)))) (-1781 (*1 *2 *1 *3) (-12 (-5 *3 (-640 (-939 *4))) (-4 *1 (-1127 *4)) (-4 *4 (-1045)) (-5 *2 (-767)))) (-3823 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *3 (-939 *4)) (-4 *1 (-1127 *4)) (-4 *4 (-1045)))) (-3014 (*1 *1 *1 *2) (-12 (-5 *2 (-939 *3)) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-3014 (*1 *1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-3014 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-3014 (*1 *1 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-1045)) (-4 *1 (-1127 *3)))) (-3014 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-939 *3)))) (-3005 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))) (-3448 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-939 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-3448 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-3448 (*1 *1 *2) (-12 (-5 *2 (-640 (-939 *3))) (-4 *3 (-1045)) (-4 *1 (-1127 *3)))) (-3448 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-939 *3))))) (-3002 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))) (-2929 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-939 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-2929 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-2929 (*1 *1 *2) (-12 (-5 *2 (-640 (-939 *3))) (-4 *3 (-1045)) (-4 *1 (-1127 *3)))) (-2929 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-939 *3))))) (-2575 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))) (-3693 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-939 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-3693 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-3693 (*1 *1 *2) (-12 (-5 *2 (-640 (-939 *3))) (-4 *3 (-1045)) (-4 *1 (-1127 *3)))) (-3693 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-939 *3))))) (-3049 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))) (-2010 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-640 (-640 (-939 *5)))) (-5 *3 (-640 (-171))) (-5 *4 (-171)) (-4 *1 (-1127 *5)) (-4 *5 (-1045)))) (-2010 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-640 (-640 (-640 *5)))) (-5 *3 (-640 (-171))) (-5 *4 (-171)) (-4 *1 (-1127 *5)) (-4 *5 (-1045)))) (-2010 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-640 (-640 (-939 *4)))) (-5 *3 (-112)) (-4 *1 (-1127 *4)) (-4 *4 (-1045)))) (-2010 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-640 (-640 (-640 *4)))) (-5 *3 (-112)) (-4 *1 (-1127 *4)) (-4 *4 (-1045)))) (-2010 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 (-939 *3)))) (-4 *3 (-1045)) (-4 *1 (-1127 *3)))) (-2010 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-640 (-640 (-939 *4)))) (-5 *3 (-112)) (-4 *4 (-1045)) (-4 *1 (-1127 *4)))) (-2010 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-640 (-939 *3)))))) (-1358 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))) (-2277 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-939 *3))))) (-3850 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-640 (-640 (-767))))))) (-2303 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-640 (-640 (-939 *3))))))) (-2996 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-640 (-171)))))) (-2390 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-171))))) (-4201 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| -2630 (-767)) (|:| |curves| (-767)) (|:| |polygons| (-767)) (|:| |constructs| (-767)))))) (-4350 (*1 *1 *1) (-12 (-4 *1 (-1127 *2)) (-4 *2 (-1045)))) (-2756 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-1157 3 *3)))))
-(-13 (-1093) (-10 -8 (-15 -3940 ($)) (-15 -3940 ($ (-1157 3 |t#1|))) (-15 -3273 ((-767) $)) (-15 -1914 ((-767) $)) (-15 -3164 ($ (-640 $))) (-15 -3164 ($ $ $)) (-15 -1346 ($ (-640 $))) (-15 -3526 ((-640 $) $)) (-15 -3491 ((-640 $) $)) (-15 -1872 ($ $)) (-15 -1781 ((-767) $ (-640 (-939 |t#1|)))) (-15 -3823 ($ $ (-767) (-939 |t#1|))) (-15 -3014 ($ $ (-939 |t#1|))) (-15 -3014 ($ $ (-640 |t#1|))) (-15 -3014 ($ $ (-767))) (-15 -3014 ($ (-939 |t#1|))) (-15 -3014 ((-939 |t#1|) $)) (-15 -3005 ((-112) $)) (-15 -3448 ($ $ (-640 (-939 |t#1|)))) (-15 -3448 ($ $ (-640 (-640 |t#1|)))) (-15 -3448 ($ (-640 (-939 |t#1|)))) (-15 -3448 ((-640 (-939 |t#1|)) $)) (-15 -3002 ((-112) $)) (-15 -2929 ($ $ (-640 (-939 |t#1|)))) (-15 -2929 ($ $ (-640 (-640 |t#1|)))) (-15 -2929 ($ (-640 (-939 |t#1|)))) (-15 -2929 ((-640 (-939 |t#1|)) $)) (-15 -2575 ((-112) $)) (-15 -3693 ($ $ (-640 (-939 |t#1|)))) (-15 -3693 ($ $ (-640 (-640 |t#1|)))) (-15 -3693 ($ (-640 (-939 |t#1|)))) (-15 -3693 ((-640 (-939 |t#1|)) $)) (-15 -3049 ((-112) $)) (-15 -2010 ($ $ (-640 (-640 (-939 |t#1|))) (-640 (-171)) (-171))) (-15 -2010 ($ $ (-640 (-640 (-640 |t#1|))) (-640 (-171)) (-171))) (-15 -2010 ($ $ (-640 (-640 (-939 |t#1|))) (-112) (-112))) (-15 -2010 ($ $ (-640 (-640 (-640 |t#1|))) (-112) (-112))) (-15 -2010 ($ (-640 (-640 (-939 |t#1|))))) (-15 -2010 ($ (-640 (-640 (-939 |t#1|))) (-112) (-112))) (-15 -2010 ((-640 (-640 (-939 |t#1|))) $)) (-15 -1358 ((-112) $)) (-15 -2277 ((-640 (-939 |t#1|)) $)) (-15 -3850 ((-640 (-640 (-640 (-767)))) $)) (-15 -2303 ((-640 (-640 (-640 (-939 |t#1|)))) $)) (-15 -2996 ((-640 (-640 (-171))) $)) (-15 -2390 ((-640 (-171)) $)) (-15 -4201 ((-2 (|:| -2630 (-767)) (|:| |curves| (-767)) (|:| |polygons| (-767)) (|:| |constructs| (-767))) $)) (-15 -4350 ($ $)) (-15 -2756 ((-1157 3 |t#1|) $)) (-15 -1693 ((-858) $))))
+((-1692 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-858)))) (-1430 (*1 *1) (-12 (-4 *1 (-1127 *2)) (-4 *2 (-1045)))) (-1430 (*1 *1 *2) (-12 (-5 *2 (-1157 3 *3)) (-4 *3 (-1045)) (-4 *1 (-1127 *3)))) (-1419 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))) (-2650 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))) (-4300 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-4300 (*1 *1 *1 *1) (-12 (-4 *1 (-1127 *2)) (-4 *2 (-1045)))) (-1590 (*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-2641 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)))) (-2631 (*1 *2 *1) (-12 (-4 *3 (-1045)) (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)))) (-1870 (*1 *1 *1) (-12 (-4 *1 (-1127 *2)) (-4 *2 (-1045)))) (-2624 (*1 *2 *1 *3) (-12 (-5 *3 (-640 (-939 *4))) (-4 *1 (-1127 *4)) (-4 *4 (-1045)) (-5 *2 (-767)))) (-1403 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *3 (-939 *4)) (-4 *1 (-1127 *4)) (-4 *4 (-1045)))) (-3018 (*1 *1 *1 *2) (-12 (-5 *2 (-939 *3)) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-3018 (*1 *1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-3018 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-3018 (*1 *1 *2) (-12 (-5 *2 (-939 *3)) (-4 *3 (-1045)) (-4 *1 (-1127 *3)))) (-3018 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-939 *3)))) (-2613 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))) (-2604 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-939 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-2604 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-2604 (*1 *1 *2) (-12 (-5 *2 (-640 (-939 *3))) (-4 *3 (-1045)) (-4 *1 (-1127 *3)))) (-2604 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-939 *3))))) (-2593 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))) (-2586 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-939 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-2586 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-2586 (*1 *1 *2) (-12 (-5 *2 (-640 (-939 *3))) (-4 *3 (-1045)) (-4 *1 (-1127 *3)))) (-2586 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-939 *3))))) (-2574 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))) (-2565 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-939 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-2565 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))) (-2565 (*1 *1 *2) (-12 (-5 *2 (-640 (-939 *3))) (-4 *3 (-1045)) (-4 *1 (-1127 *3)))) (-2565 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-939 *3))))) (-2555 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))) (-2544 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-640 (-640 (-939 *5)))) (-5 *3 (-640 (-171))) (-5 *4 (-171)) (-4 *1 (-1127 *5)) (-4 *5 (-1045)))) (-2544 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-640 (-640 (-640 *5)))) (-5 *3 (-640 (-171))) (-5 *4 (-171)) (-4 *1 (-1127 *5)) (-4 *5 (-1045)))) (-2544 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-640 (-640 (-939 *4)))) (-5 *3 (-112)) (-4 *1 (-1127 *4)) (-4 *4 (-1045)))) (-2544 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-640 (-640 (-640 *4)))) (-5 *3 (-112)) (-4 *1 (-1127 *4)) (-4 *4 (-1045)))) (-2544 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 (-939 *3)))) (-4 *3 (-1045)) (-4 *1 (-1127 *3)))) (-2544 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-640 (-640 (-939 *4)))) (-5 *3 (-112)) (-4 *4 (-1045)) (-4 *1 (-1127 *4)))) (-2544 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-640 (-939 *3)))))) (-2532 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))) (-2276 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-939 *3))))) (-2520 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-640 (-640 (-767))))))) (-2508 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-640 (-640 (-939 *3))))))) (-2497 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-640 (-171)))))) (-2487 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-171))))) (-4201 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| -4196 (-767)) (|:| |curves| (-767)) (|:| |polygons| (-767)) (|:| |constructs| (-767)))))) (-2476 (*1 *1 *1) (-12 (-4 *1 (-1127 *2)) (-4 *2 (-1045)))) (-1414 (*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-1157 3 *3)))))
+(-13 (-1093) (-10 -8 (-15 -1430 ($)) (-15 -1430 ($ (-1157 3 |t#1|))) (-15 -1419 ((-767) $)) (-15 -2650 ((-767) $)) (-15 -4300 ($ (-640 $))) (-15 -4300 ($ $ $)) (-15 -1590 ($ (-640 $))) (-15 -2641 ((-640 $) $)) (-15 -2631 ((-640 $) $)) (-15 -1870 ($ $)) (-15 -2624 ((-767) $ (-640 (-939 |t#1|)))) (-15 -1403 ($ $ (-767) (-939 |t#1|))) (-15 -3018 ($ $ (-939 |t#1|))) (-15 -3018 ($ $ (-640 |t#1|))) (-15 -3018 ($ $ (-767))) (-15 -3018 ($ (-939 |t#1|))) (-15 -3018 ((-939 |t#1|) $)) (-15 -2613 ((-112) $)) (-15 -2604 ($ $ (-640 (-939 |t#1|)))) (-15 -2604 ($ $ (-640 (-640 |t#1|)))) (-15 -2604 ($ (-640 (-939 |t#1|)))) (-15 -2604 ((-640 (-939 |t#1|)) $)) (-15 -2593 ((-112) $)) (-15 -2586 ($ $ (-640 (-939 |t#1|)))) (-15 -2586 ($ $ (-640 (-640 |t#1|)))) (-15 -2586 ($ (-640 (-939 |t#1|)))) (-15 -2586 ((-640 (-939 |t#1|)) $)) (-15 -2574 ((-112) $)) (-15 -2565 ($ $ (-640 (-939 |t#1|)))) (-15 -2565 ($ $ (-640 (-640 |t#1|)))) (-15 -2565 ($ (-640 (-939 |t#1|)))) (-15 -2565 ((-640 (-939 |t#1|)) $)) (-15 -2555 ((-112) $)) (-15 -2544 ($ $ (-640 (-640 (-939 |t#1|))) (-640 (-171)) (-171))) (-15 -2544 ($ $ (-640 (-640 (-640 |t#1|))) (-640 (-171)) (-171))) (-15 -2544 ($ $ (-640 (-640 (-939 |t#1|))) (-112) (-112))) (-15 -2544 ($ $ (-640 (-640 (-640 |t#1|))) (-112) (-112))) (-15 -2544 ($ (-640 (-640 (-939 |t#1|))))) (-15 -2544 ($ (-640 (-640 (-939 |t#1|))) (-112) (-112))) (-15 -2544 ((-640 (-640 (-939 |t#1|))) $)) (-15 -2532 ((-112) $)) (-15 -2276 ((-640 (-939 |t#1|)) $)) (-15 -2520 ((-640 (-640 (-640 (-767)))) $)) (-15 -2508 ((-640 (-640 (-640 (-939 |t#1|)))) $)) (-15 -2497 ((-640 (-640 (-171))) $)) (-15 -2487 ((-640 (-171)) $)) (-15 -4201 ((-2 (|:| -4196 (-767)) (|:| |curves| (-767)) (|:| |polygons| (-767)) (|:| |constructs| (-767))) $)) (-15 -2476 ($ $)) (-15 -1414 ((-1157 3 |t#1|) $)) (-15 -1692 ((-858) $))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 176) (($ (-1174)) NIL) (((-1174) $) 7)) (-2226 (((-112) $ (|[\|\|]| (-524))) 17) (((-112) $ (|[\|\|]| (-218))) 21) (((-112) $ (|[\|\|]| (-671))) 25) (((-112) $ (|[\|\|]| (-1267))) 29) (((-112) $ (|[\|\|]| (-138))) 33) (((-112) $ (|[\|\|]| (-133))) 37) (((-112) $ (|[\|\|]| (-1108))) 41) (((-112) $ (|[\|\|]| (-96))) 45) (((-112) $ (|[\|\|]| (-676))) 49) (((-112) $ (|[\|\|]| (-517))) 53) (((-112) $ (|[\|\|]| (-1060))) 57) (((-112) $ (|[\|\|]| (-1268))) 61) (((-112) $ (|[\|\|]| (-525))) 65) (((-112) $ (|[\|\|]| (-154))) 69) (((-112) $ (|[\|\|]| (-666))) 73) (((-112) $ (|[\|\|]| (-311))) 77) (((-112) $ (|[\|\|]| (-1032))) 81) (((-112) $ (|[\|\|]| (-180))) 85) (((-112) $ (|[\|\|]| (-966))) 89) (((-112) $ (|[\|\|]| (-1067))) 93) (((-112) $ (|[\|\|]| (-1083))) 97) (((-112) $ (|[\|\|]| (-1089))) 101) (((-112) $ (|[\|\|]| (-623))) 105) (((-112) $ (|[\|\|]| (-1159))) 109) (((-112) $ (|[\|\|]| (-156))) 113) (((-112) $ (|[\|\|]| (-137))) 117) (((-112) $ (|[\|\|]| (-478))) 121) (((-112) $ (|[\|\|]| (-590))) 125) (((-112) $ (|[\|\|]| (-506))) 131) (((-112) $ (|[\|\|]| (-1151))) 135) (((-112) $ (|[\|\|]| (-563))) 139)) (-1905 (((-524) $) 18) (((-218) $) 22) (((-671) $) 26) (((-1267) $) 30) (((-138) $) 34) (((-133) $) 38) (((-1108) $) 42) (((-96) $) 46) (((-676) $) 50) (((-517) $) 54) (((-1060) $) 58) (((-1268) $) 62) (((-525) $) 66) (((-154) $) 70) (((-666) $) 74) (((-311) $) 78) (((-1032) $) 82) (((-180) $) 86) (((-966) $) 90) (((-1067) $) 94) (((-1083) $) 98) (((-1089) $) 102) (((-623) $) 106) (((-1159) $) 110) (((-156) $) 114) (((-137) $) 118) (((-478) $) 122) (((-590) $) 126) (((-506) $) 132) (((-1151) $) 136) (((-563) $) 140)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 176) (($ (-1174)) NIL) (((-1174) $) 7)) (-2224 (((-112) $ (|[\|\|]| (-524))) 17) (((-112) $ (|[\|\|]| (-218))) 21) (((-112) $ (|[\|\|]| (-671))) 25) (((-112) $ (|[\|\|]| (-1267))) 29) (((-112) $ (|[\|\|]| (-138))) 33) (((-112) $ (|[\|\|]| (-133))) 37) (((-112) $ (|[\|\|]| (-1108))) 41) (((-112) $ (|[\|\|]| (-96))) 45) (((-112) $ (|[\|\|]| (-676))) 49) (((-112) $ (|[\|\|]| (-517))) 53) (((-112) $ (|[\|\|]| (-1060))) 57) (((-112) $ (|[\|\|]| (-1268))) 61) (((-112) $ (|[\|\|]| (-525))) 65) (((-112) $ (|[\|\|]| (-154))) 69) (((-112) $ (|[\|\|]| (-666))) 73) (((-112) $ (|[\|\|]| (-311))) 77) (((-112) $ (|[\|\|]| (-1032))) 81) (((-112) $ (|[\|\|]| (-180))) 85) (((-112) $ (|[\|\|]| (-966))) 89) (((-112) $ (|[\|\|]| (-1067))) 93) (((-112) $ (|[\|\|]| (-1083))) 97) (((-112) $ (|[\|\|]| (-1089))) 101) (((-112) $ (|[\|\|]| (-623))) 105) (((-112) $ (|[\|\|]| (-1159))) 109) (((-112) $ (|[\|\|]| (-156))) 113) (((-112) $ (|[\|\|]| (-137))) 117) (((-112) $ (|[\|\|]| (-478))) 121) (((-112) $ (|[\|\|]| (-590))) 125) (((-112) $ (|[\|\|]| (-506))) 131) (((-112) $ (|[\|\|]| (-1151))) 135) (((-112) $ (|[\|\|]| (-563))) 139)) (-1904 (((-524) $) 18) (((-218) $) 22) (((-671) $) 26) (((-1267) $) 30) (((-138) $) 34) (((-133) $) 38) (((-1108) $) 42) (((-96) $) 46) (((-676) $) 50) (((-517) $) 54) (((-1060) $) 58) (((-1268) $) 62) (((-525) $) 66) (((-154) $) 70) (((-666) $) 74) (((-311) $) 78) (((-1032) $) 82) (((-180) $) 86) (((-966) $) 90) (((-1067) $) 94) (((-1083) $) 98) (((-1089) $) 102) (((-623) $) 106) (((-1159) $) 110) (((-156) $) 114) (((-137) $) 118) (((-478) $) 122) (((-590) $) 126) (((-506) $) 132) (((-1151) $) 136) (((-563) $) 140)) (-1718 (((-112) $ $) NIL)))
(((-1128) (-1130)) (T -1128))
NIL
(-1130)
-((-2432 (((-640 (-1174)) (-1151)) 9)))
-(((-1129) (-10 -7 (-15 -2432 ((-640 (-1174)) (-1151))))) (T -1129))
-((-2432 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-640 (-1174))) (-5 *1 (-1129)))))
-(-10 -7 (-15 -2432 ((-640 (-1174)) (-1151))))
-((-1677 (((-112) $ $) 7)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ (-1174)) 16) (((-1174) $) 15)) (-2226 (((-112) $ (|[\|\|]| (-524))) 80) (((-112) $ (|[\|\|]| (-218))) 78) (((-112) $ (|[\|\|]| (-671))) 76) (((-112) $ (|[\|\|]| (-1267))) 74) (((-112) $ (|[\|\|]| (-138))) 72) (((-112) $ (|[\|\|]| (-133))) 70) (((-112) $ (|[\|\|]| (-1108))) 68) (((-112) $ (|[\|\|]| (-96))) 66) (((-112) $ (|[\|\|]| (-676))) 64) (((-112) $ (|[\|\|]| (-517))) 62) (((-112) $ (|[\|\|]| (-1060))) 60) (((-112) $ (|[\|\|]| (-1268))) 58) (((-112) $ (|[\|\|]| (-525))) 56) (((-112) $ (|[\|\|]| (-154))) 54) (((-112) $ (|[\|\|]| (-666))) 52) (((-112) $ (|[\|\|]| (-311))) 50) (((-112) $ (|[\|\|]| (-1032))) 48) (((-112) $ (|[\|\|]| (-180))) 46) (((-112) $ (|[\|\|]| (-966))) 44) (((-112) $ (|[\|\|]| (-1067))) 42) (((-112) $ (|[\|\|]| (-1083))) 40) (((-112) $ (|[\|\|]| (-1089))) 38) (((-112) $ (|[\|\|]| (-623))) 36) (((-112) $ (|[\|\|]| (-1159))) 34) (((-112) $ (|[\|\|]| (-156))) 32) (((-112) $ (|[\|\|]| (-137))) 30) (((-112) $ (|[\|\|]| (-478))) 28) (((-112) $ (|[\|\|]| (-590))) 26) (((-112) $ (|[\|\|]| (-506))) 24) (((-112) $ (|[\|\|]| (-1151))) 22) (((-112) $ (|[\|\|]| (-563))) 20)) (-1905 (((-524) $) 79) (((-218) $) 77) (((-671) $) 75) (((-1267) $) 73) (((-138) $) 71) (((-133) $) 69) (((-1108) $) 67) (((-96) $) 65) (((-676) $) 63) (((-517) $) 61) (((-1060) $) 59) (((-1268) $) 57) (((-525) $) 55) (((-154) $) 53) (((-666) $) 51) (((-311) $) 49) (((-1032) $) 47) (((-180) $) 45) (((-966) $) 43) (((-1067) $) 41) (((-1083) $) 39) (((-1089) $) 37) (((-623) $) 35) (((-1159) $) 33) (((-156) $) 31) (((-137) $) 29) (((-478) $) 27) (((-590) $) 25) (((-506) $) 23) (((-1151) $) 21) (((-563) $) 19)) (-1718 (((-112) $ $) 6)))
+((-2431 (((-640 (-1174)) (-1151)) 9)))
+(((-1129) (-10 -7 (-15 -2431 ((-640 (-1174)) (-1151))))) (T -1129))
+((-2431 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-640 (-1174))) (-5 *1 (-1129)))))
+(-10 -7 (-15 -2431 ((-640 (-1174)) (-1151))))
+((-1677 (((-112) $ $) 7)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ (-1174)) 16) (((-1174) $) 15)) (-2224 (((-112) $ (|[\|\|]| (-524))) 80) (((-112) $ (|[\|\|]| (-218))) 78) (((-112) $ (|[\|\|]| (-671))) 76) (((-112) $ (|[\|\|]| (-1267))) 74) (((-112) $ (|[\|\|]| (-138))) 72) (((-112) $ (|[\|\|]| (-133))) 70) (((-112) $ (|[\|\|]| (-1108))) 68) (((-112) $ (|[\|\|]| (-96))) 66) (((-112) $ (|[\|\|]| (-676))) 64) (((-112) $ (|[\|\|]| (-517))) 62) (((-112) $ (|[\|\|]| (-1060))) 60) (((-112) $ (|[\|\|]| (-1268))) 58) (((-112) $ (|[\|\|]| (-525))) 56) (((-112) $ (|[\|\|]| (-154))) 54) (((-112) $ (|[\|\|]| (-666))) 52) (((-112) $ (|[\|\|]| (-311))) 50) (((-112) $ (|[\|\|]| (-1032))) 48) (((-112) $ (|[\|\|]| (-180))) 46) (((-112) $ (|[\|\|]| (-966))) 44) (((-112) $ (|[\|\|]| (-1067))) 42) (((-112) $ (|[\|\|]| (-1083))) 40) (((-112) $ (|[\|\|]| (-1089))) 38) (((-112) $ (|[\|\|]| (-623))) 36) (((-112) $ (|[\|\|]| (-1159))) 34) (((-112) $ (|[\|\|]| (-156))) 32) (((-112) $ (|[\|\|]| (-137))) 30) (((-112) $ (|[\|\|]| (-478))) 28) (((-112) $ (|[\|\|]| (-590))) 26) (((-112) $ (|[\|\|]| (-506))) 24) (((-112) $ (|[\|\|]| (-1151))) 22) (((-112) $ (|[\|\|]| (-563))) 20)) (-1904 (((-524) $) 79) (((-218) $) 77) (((-671) $) 75) (((-1267) $) 73) (((-138) $) 71) (((-133) $) 69) (((-1108) $) 67) (((-96) $) 65) (((-676) $) 63) (((-517) $) 61) (((-1060) $) 59) (((-1268) $) 57) (((-525) $) 55) (((-154) $) 53) (((-666) $) 51) (((-311) $) 49) (((-1032) $) 47) (((-180) $) 45) (((-966) $) 43) (((-1067) $) 41) (((-1083) $) 39) (((-1089) $) 37) (((-623) $) 35) (((-1159) $) 33) (((-156) $) 31) (((-137) $) 29) (((-478) $) 27) (((-590) $) 25) (((-506) $) 23) (((-1151) $) 21) (((-563) $) 19)) (-1718 (((-112) $ $) 6)))
(((-1130) (-140)) (T -1130))
-((-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-524))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-524)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-218))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-218)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-671))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-671)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1267))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1267)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-138))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-138)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-133))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-133)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1108))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1108)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-96))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-96)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-676))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-676)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-517))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-517)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1060))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1060)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1268))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1268)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-525))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-525)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-154))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-154)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-666))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-666)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-311))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-311)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1032))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1032)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-180))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-180)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-966))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-966)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1067))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1067)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1083))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1083)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1089))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1089)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-623))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-623)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1159))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1159)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-156))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-156)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-137))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-137)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-478))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-478)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-590))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-590)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-506))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-506)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1151))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1151)))) (-2226 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-563))) (-5 *2 (-112)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-563)))))
-(-13 (-1076) (-1252) (-10 -8 (-15 -2226 ((-112) $ (|[\|\|]| (-524)))) (-15 -1905 ((-524) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-218)))) (-15 -1905 ((-218) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-671)))) (-15 -1905 ((-671) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-1267)))) (-15 -1905 ((-1267) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-138)))) (-15 -1905 ((-138) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-133)))) (-15 -1905 ((-133) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-1108)))) (-15 -1905 ((-1108) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-96)))) (-15 -1905 ((-96) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-676)))) (-15 -1905 ((-676) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-517)))) (-15 -1905 ((-517) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-1060)))) (-15 -1905 ((-1060) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-1268)))) (-15 -1905 ((-1268) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-525)))) (-15 -1905 ((-525) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-154)))) (-15 -1905 ((-154) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-666)))) (-15 -1905 ((-666) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-311)))) (-15 -1905 ((-311) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-1032)))) (-15 -1905 ((-1032) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-180)))) (-15 -1905 ((-180) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-966)))) (-15 -1905 ((-966) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-1067)))) (-15 -1905 ((-1067) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-1083)))) (-15 -1905 ((-1083) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-1089)))) (-15 -1905 ((-1089) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-623)))) (-15 -1905 ((-623) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-1159)))) (-15 -1905 ((-1159) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-156)))) (-15 -1905 ((-156) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-137)))) (-15 -1905 ((-137) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-478)))) (-15 -1905 ((-478) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-590)))) (-15 -1905 ((-590) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-506)))) (-15 -1905 ((-506) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-1151)))) (-15 -1905 ((-1151) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-563)))) (-15 -1905 ((-563) $))))
+((-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-524))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-524)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-218))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-218)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-671))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-671)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1267))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1267)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-138))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-138)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-133))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-133)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1108))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1108)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-96))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-96)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-676))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-676)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-517))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-517)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1060))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1060)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1268))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1268)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-525))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-525)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-154))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-154)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-666))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-666)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-311))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-311)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1032))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1032)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-180))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-180)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-966))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-966)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1067))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1067)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1083))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1083)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1089))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1089)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-623))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-623)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1159))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1159)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-156))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-156)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-137))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-137)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-478))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-478)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-590))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-590)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-506))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-506)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-1151))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1151)))) (-2224 (*1 *2 *1 *3) (-12 (-4 *1 (-1130)) (-5 *3 (|[\|\|]| (-563))) (-5 *2 (-112)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-563)))))
+(-13 (-1076) (-1252) (-10 -8 (-15 -2224 ((-112) $ (|[\|\|]| (-524)))) (-15 -1904 ((-524) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-218)))) (-15 -1904 ((-218) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-671)))) (-15 -1904 ((-671) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-1267)))) (-15 -1904 ((-1267) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-138)))) (-15 -1904 ((-138) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-133)))) (-15 -1904 ((-133) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-1108)))) (-15 -1904 ((-1108) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-96)))) (-15 -1904 ((-96) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-676)))) (-15 -1904 ((-676) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-517)))) (-15 -1904 ((-517) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-1060)))) (-15 -1904 ((-1060) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-1268)))) (-15 -1904 ((-1268) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-525)))) (-15 -1904 ((-525) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-154)))) (-15 -1904 ((-154) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-666)))) (-15 -1904 ((-666) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-311)))) (-15 -1904 ((-311) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-1032)))) (-15 -1904 ((-1032) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-180)))) (-15 -1904 ((-180) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-966)))) (-15 -1904 ((-966) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-1067)))) (-15 -1904 ((-1067) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-1083)))) (-15 -1904 ((-1083) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-1089)))) (-15 -1904 ((-1089) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-623)))) (-15 -1904 ((-623) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-1159)))) (-15 -1904 ((-1159) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-156)))) (-15 -1904 ((-156) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-137)))) (-15 -1904 ((-137) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-478)))) (-15 -1904 ((-478) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-590)))) (-15 -1904 ((-590) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-506)))) (-15 -1904 ((-506) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-1151)))) (-15 -1904 ((-1151) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-563)))) (-15 -1904 ((-563) $))))
(((-93) . T) ((-102) . T) ((-613 #0=(-1174)) . T) ((-610 (-858)) . T) ((-610 #0#) . T) ((-490 #0#) . T) ((-1093) . T) ((-1076) . T) ((-1252) . T))
-((-3473 (((-1262) (-640 (-858))) 23) (((-1262) (-858)) 22)) (-2623 (((-1262) (-640 (-858))) 21) (((-1262) (-858)) 20)) (-2615 (((-1262) (-640 (-858))) 19) (((-1262) (-858)) 11) (((-1262) (-1151) (-858)) 17)))
-(((-1131) (-10 -7 (-15 -2615 ((-1262) (-1151) (-858))) (-15 -2615 ((-1262) (-858))) (-15 -2623 ((-1262) (-858))) (-15 -3473 ((-1262) (-858))) (-15 -2615 ((-1262) (-640 (-858)))) (-15 -2623 ((-1262) (-640 (-858)))) (-15 -3473 ((-1262) (-640 (-858)))))) (T -1131))
-((-3473 (*1 *2 *3) (-12 (-5 *3 (-640 (-858))) (-5 *2 (-1262)) (-5 *1 (-1131)))) (-2623 (*1 *2 *3) (-12 (-5 *3 (-640 (-858))) (-5 *2 (-1262)) (-5 *1 (-1131)))) (-2615 (*1 *2 *3) (-12 (-5 *3 (-640 (-858))) (-5 *2 (-1262)) (-5 *1 (-1131)))) (-3473 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-1131)))) (-2623 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-1131)))) (-2615 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-1131)))) (-2615 (*1 *2 *3 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-858)) (-5 *2 (-1262)) (-5 *1 (-1131)))))
-(-10 -7 (-15 -2615 ((-1262) (-1151) (-858))) (-15 -2615 ((-1262) (-858))) (-15 -2623 ((-1262) (-858))) (-15 -3473 ((-1262) (-858))) (-15 -2615 ((-1262) (-640 (-858)))) (-15 -2623 ((-1262) (-640 (-858)))) (-15 -3473 ((-1262) (-640 (-858)))))
-((-2507 (($ $ $) 10)) (-1760 (($ $) 9)) (-2736 (($ $ $) 13)) (-2040 (($ $ $) 15)) (-4271 (($ $ $) 12)) (-3988 (($ $ $) 14)) (-3336 (($ $) 17)) (-4252 (($ $) 16)) (-2509 (($ $) 6)) (-1341 (($ $ $) 11) (($ $) 7)) (-3929 (($ $ $) 8)))
+((-1451 (((-1262) (-640 (-858))) 23) (((-1262) (-858)) 22)) (-1441 (((-1262) (-640 (-858))) 21) (((-1262) (-858)) 20)) (-2615 (((-1262) (-640 (-858))) 19) (((-1262) (-858)) 11) (((-1262) (-1151) (-858)) 17)))
+(((-1131) (-10 -7 (-15 -2615 ((-1262) (-1151) (-858))) (-15 -2615 ((-1262) (-858))) (-15 -1441 ((-1262) (-858))) (-15 -1451 ((-1262) (-858))) (-15 -2615 ((-1262) (-640 (-858)))) (-15 -1441 ((-1262) (-640 (-858)))) (-15 -1451 ((-1262) (-640 (-858)))))) (T -1131))
+((-1451 (*1 *2 *3) (-12 (-5 *3 (-640 (-858))) (-5 *2 (-1262)) (-5 *1 (-1131)))) (-1441 (*1 *2 *3) (-12 (-5 *3 (-640 (-858))) (-5 *2 (-1262)) (-5 *1 (-1131)))) (-2615 (*1 *2 *3) (-12 (-5 *3 (-640 (-858))) (-5 *2 (-1262)) (-5 *1 (-1131)))) (-1451 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-1131)))) (-1441 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-1131)))) (-2615 (*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-1131)))) (-2615 (*1 *2 *3 *4) (-12 (-5 *3 (-1151)) (-5 *4 (-858)) (-5 *2 (-1262)) (-5 *1 (-1131)))))
+(-10 -7 (-15 -2615 ((-1262) (-1151) (-858))) (-15 -2615 ((-1262) (-858))) (-15 -1441 ((-1262) (-858))) (-15 -1451 ((-1262) (-858))) (-15 -2615 ((-1262) (-640 (-858)))) (-15 -1441 ((-1262) (-640 (-858)))) (-15 -1451 ((-1262) (-640 (-858)))))
+((-1496 (($ $ $) 10)) (-1485 (($ $) 9)) (-1534 (($ $ $) 13)) (-1558 (($ $ $) 15)) (-1521 (($ $ $) 12)) (-1545 (($ $ $) 14)) (-1583 (($ $) 17)) (-1570 (($ $) 16)) (-1462 (($ $) 6)) (-1507 (($ $ $) 11) (($ $) 7)) (-1474 (($ $ $) 8)))
(((-1132) (-140)) (T -1132))
-((-3336 (*1 *1 *1) (-4 *1 (-1132))) (-4252 (*1 *1 *1) (-4 *1 (-1132))) (-2040 (*1 *1 *1 *1) (-4 *1 (-1132))) (-3988 (*1 *1 *1 *1) (-4 *1 (-1132))) (-2736 (*1 *1 *1 *1) (-4 *1 (-1132))) (-4271 (*1 *1 *1 *1) (-4 *1 (-1132))) (-1341 (*1 *1 *1 *1) (-4 *1 (-1132))) (-2507 (*1 *1 *1 *1) (-4 *1 (-1132))) (-1760 (*1 *1 *1) (-4 *1 (-1132))) (-3929 (*1 *1 *1 *1) (-4 *1 (-1132))) (-1341 (*1 *1 *1) (-4 *1 (-1132))) (-2509 (*1 *1 *1) (-4 *1 (-1132))))
-(-13 (-10 -8 (-15 -2509 ($ $)) (-15 -1341 ($ $)) (-15 -3929 ($ $ $)) (-15 -1760 ($ $)) (-15 -2507 ($ $ $)) (-15 -1341 ($ $ $)) (-15 -4271 ($ $ $)) (-15 -2736 ($ $ $)) (-15 -3988 ($ $ $)) (-15 -2040 ($ $ $)) (-15 -4252 ($ $)) (-15 -3336 ($ $))))
-((-1677 (((-112) $ $) 42)) (-2619 ((|#1| $) 16)) (-3347 (((-112) $ $ (-1 (-112) |#2| |#2|)) 37)) (-2733 (((-112) $) 18)) (-3881 (($ $ |#1|) 29)) (-2032 (($ $ (-112)) 31)) (-1754 (($ $) 32)) (-3943 (($ $ |#2|) 30)) (-3573 (((-1151) $) NIL)) (-1798 (((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|)) 36)) (-1694 (((-1113) $) NIL)) (-3756 (((-112) $) 15)) (-3135 (($) 11)) (-1872 (($ $) 28)) (-1707 (($ |#1| |#2| (-112)) 19) (($ |#1| |#2|) 20) (($ (-2 (|:| |val| |#1|) (|:| -2059 |#2|))) 22) (((-640 $) (-640 (-2 (|:| |val| |#1|) (|:| -2059 |#2|)))) 25) (((-640 $) |#1| (-640 |#2|)) 27)) (-1394 ((|#2| $) 17)) (-1693 (((-858) $) 51)) (-1718 (((-112) $ $) 40)))
-(((-1133 |#1| |#2|) (-13 (-1093) (-10 -8 (-15 -3135 ($)) (-15 -3756 ((-112) $)) (-15 -2619 (|#1| $)) (-15 -1394 (|#2| $)) (-15 -2733 ((-112) $)) (-15 -1707 ($ |#1| |#2| (-112))) (-15 -1707 ($ |#1| |#2|)) (-15 -1707 ($ (-2 (|:| |val| |#1|) (|:| -2059 |#2|)))) (-15 -1707 ((-640 $) (-640 (-2 (|:| |val| |#1|) (|:| -2059 |#2|))))) (-15 -1707 ((-640 $) |#1| (-640 |#2|))) (-15 -1872 ($ $)) (-15 -3881 ($ $ |#1|)) (-15 -3943 ($ $ |#2|)) (-15 -2032 ($ $ (-112))) (-15 -1754 ($ $)) (-15 -1798 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -3347 ((-112) $ $ (-1 (-112) |#2| |#2|))))) (-13 (-1093) (-34)) (-13 (-1093) (-34))) (T -1133))
-((-3135 (*1 *1) (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-3756 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))))) (-2619 (*1 *2 *1) (-12 (-4 *2 (-13 (-1093) (-34))) (-5 *1 (-1133 *2 *3)) (-4 *3 (-13 (-1093) (-34))))) (-1394 (*1 *2 *1) (-12 (-4 *2 (-13 (-1093) (-34))) (-5 *1 (-1133 *3 *2)) (-4 *3 (-13 (-1093) (-34))))) (-2733 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))))) (-1707 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-1707 (*1 *1 *2 *3) (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-1707 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -2059 *4))) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1133 *3 *4)))) (-1707 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| |val| *4) (|:| -2059 *5)))) (-4 *4 (-13 (-1093) (-34))) (-4 *5 (-13 (-1093) (-34))) (-5 *2 (-640 (-1133 *4 *5))) (-5 *1 (-1133 *4 *5)))) (-1707 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *5)) (-4 *5 (-13 (-1093) (-34))) (-5 *2 (-640 (-1133 *3 *5))) (-5 *1 (-1133 *3 *5)) (-4 *3 (-13 (-1093) (-34))))) (-1872 (*1 *1 *1) (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-3881 (*1 *1 *1 *2) (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-3943 (*1 *1 *1 *2) (-12 (-5 *1 (-1133 *3 *2)) (-4 *3 (-13 (-1093) (-34))) (-4 *2 (-13 (-1093) (-34))))) (-2032 (*1 *1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))))) (-1754 (*1 *1 *1) (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-1798 (*1 *2 *1 *1 *3 *4) (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1093) (-34))) (-4 *6 (-13 (-1093) (-34))) (-5 *2 (-112)) (-5 *1 (-1133 *5 *6)))) (-3347 (*1 *2 *1 *1 *3) (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1093) (-34))) (-5 *2 (-112)) (-5 *1 (-1133 *4 *5)) (-4 *4 (-13 (-1093) (-34))))))
-(-13 (-1093) (-10 -8 (-15 -3135 ($)) (-15 -3756 ((-112) $)) (-15 -2619 (|#1| $)) (-15 -1394 (|#2| $)) (-15 -2733 ((-112) $)) (-15 -1707 ($ |#1| |#2| (-112))) (-15 -1707 ($ |#1| |#2|)) (-15 -1707 ($ (-2 (|:| |val| |#1|) (|:| -2059 |#2|)))) (-15 -1707 ((-640 $) (-640 (-2 (|:| |val| |#1|) (|:| -2059 |#2|))))) (-15 -1707 ((-640 $) |#1| (-640 |#2|))) (-15 -1872 ($ $)) (-15 -3881 ($ $ |#1|)) (-15 -3943 ($ $ |#2|)) (-15 -2032 ($ $ (-112))) (-15 -1754 ($ $)) (-15 -1798 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -3347 ((-112) $ $ (-1 (-112) |#2| |#2|)))))
-((-1677 (((-112) $ $) NIL (|has| (-1133 |#1| |#2|) (-1093)))) (-2619 (((-1133 |#1| |#2|) $) 26)) (-2883 (($ $) 76)) (-3521 (((-112) (-1133 |#1| |#2|) $ (-1 (-112) |#2| |#2|)) 85)) (-1640 (($ $ $ (-640 (-1133 |#1| |#2|))) 90) (($ $ $ (-640 (-1133 |#1| |#2|)) (-1 (-112) |#2| |#2|)) 91)) (-2759 (((-112) $ (-767)) NIL)) (-2936 (((-1133 |#1| |#2|) $ (-1133 |#1| |#2|)) 43 (|has| $ (-6 -4408)))) (-1849 (((-1133 |#1| |#2|) $ "value" (-1133 |#1| |#2|)) NIL (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) 41 (|has| $ (-6 -4408)))) (-4239 (($) NIL T CONST)) (-1921 (((-640 (-2 (|:| |val| |#1|) (|:| -2059 |#2|))) $) 80)) (-2705 (($ (-1133 |#1| |#2|) $) 39)) (-1459 (($ (-1133 |#1| |#2|) $) 31)) (-2659 (((-640 (-1133 |#1| |#2|)) $) NIL (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) 51)) (-3969 (((-112) (-1133 |#1| |#2|) $) 82)) (-1469 (((-112) $ $) NIL (|has| (-1133 |#1| |#2|) (-1093)))) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 (-1133 |#1| |#2|)) $) 55 (|has| $ (-6 -4407)))) (-1729 (((-112) (-1133 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-1133 |#1| |#2|) (-1093))))) (-4345 (($ (-1 (-1133 |#1| |#2|) (-1133 |#1| |#2|)) $) 47 (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-1133 |#1| |#2|) (-1133 |#1| |#2|)) $) 46)) (-2382 (((-112) $ (-767)) NIL)) (-2512 (((-640 (-1133 |#1| |#2|)) $) 53)) (-2194 (((-112) $) 42)) (-3573 (((-1151) $) NIL (|has| (-1133 |#1| |#2|) (-1093)))) (-1694 (((-1113) $) NIL (|has| (-1133 |#1| |#2|) (-1093)))) (-3148 (((-3 $ "failed") $) 75)) (-3138 (((-112) (-1 (-112) (-1133 |#1| |#2|)) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-1133 |#1| |#2|)))) NIL (-12 (|has| (-1133 |#1| |#2|) (-309 (-1133 |#1| |#2|))) (|has| (-1133 |#1| |#2|) (-1093)))) (($ $ (-294 (-1133 |#1| |#2|))) NIL (-12 (|has| (-1133 |#1| |#2|) (-309 (-1133 |#1| |#2|))) (|has| (-1133 |#1| |#2|) (-1093)))) (($ $ (-1133 |#1| |#2|) (-1133 |#1| |#2|)) NIL (-12 (|has| (-1133 |#1| |#2|) (-309 (-1133 |#1| |#2|))) (|has| (-1133 |#1| |#2|) (-1093)))) (($ $ (-640 (-1133 |#1| |#2|)) (-640 (-1133 |#1| |#2|))) NIL (-12 (|has| (-1133 |#1| |#2|) (-309 (-1133 |#1| |#2|))) (|has| (-1133 |#1| |#2|) (-1093))))) (-2026 (((-112) $ $) 50)) (-3756 (((-112) $) 23)) (-3135 (($) 25)) (-2309 (((-1133 |#1| |#2|) $ "value") NIL)) (-4071 (((-563) $ $) NIL)) (-1434 (((-112) $) 44)) (-1709 (((-767) (-1 (-112) (-1133 |#1| |#2|)) $) NIL (|has| $ (-6 -4407))) (((-767) (-1133 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-1133 |#1| |#2|) (-1093))))) (-1872 (($ $) 49)) (-1707 (($ (-1133 |#1| |#2|)) 10) (($ |#1| |#2| (-640 $)) 13) (($ |#1| |#2| (-640 (-1133 |#1| |#2|))) 15) (($ |#1| |#2| |#1| (-640 |#2|)) 18)) (-1907 (((-640 |#2|) $) 81)) (-1693 (((-858) $) 73 (|has| (-1133 |#1| |#2|) (-610 (-858))))) (-4258 (((-640 $) $) 29)) (-2962 (((-112) $ $) NIL (|has| (-1133 |#1| |#2|) (-1093)))) (-4383 (((-112) (-1 (-112) (-1133 |#1| |#2|)) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 64 (|has| (-1133 |#1| |#2|) (-1093)))) (-3608 (((-767) $) 58 (|has| $ (-6 -4407)))))
-(((-1134 |#1| |#2|) (-13 (-1006 (-1133 |#1| |#2|)) (-10 -8 (-6 -4408) (-6 -4407) (-15 -3148 ((-3 $ "failed") $)) (-15 -2883 ($ $)) (-15 -1707 ($ (-1133 |#1| |#2|))) (-15 -1707 ($ |#1| |#2| (-640 $))) (-15 -1707 ($ |#1| |#2| (-640 (-1133 |#1| |#2|)))) (-15 -1707 ($ |#1| |#2| |#1| (-640 |#2|))) (-15 -1907 ((-640 |#2|) $)) (-15 -1921 ((-640 (-2 (|:| |val| |#1|) (|:| -2059 |#2|))) $)) (-15 -3969 ((-112) (-1133 |#1| |#2|) $)) (-15 -3521 ((-112) (-1133 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1459 ($ (-1133 |#1| |#2|) $)) (-15 -2705 ($ (-1133 |#1| |#2|) $)) (-15 -1640 ($ $ $ (-640 (-1133 |#1| |#2|)))) (-15 -1640 ($ $ $ (-640 (-1133 |#1| |#2|)) (-1 (-112) |#2| |#2|))))) (-13 (-1093) (-34)) (-13 (-1093) (-34))) (T -1134))
-((-3148 (*1 *1 *1) (|partial| -12 (-5 *1 (-1134 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-2883 (*1 *1 *1) (-12 (-5 *1 (-1134 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-1707 (*1 *1 *2) (-12 (-5 *2 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1134 *3 *4)))) (-1707 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-640 (-1134 *2 *3))) (-5 *1 (-1134 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-1707 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-640 (-1133 *2 *3))) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))) (-5 *1 (-1134 *2 *3)))) (-1707 (*1 *1 *2 *3 *2 *4) (-12 (-5 *4 (-640 *3)) (-4 *3 (-13 (-1093) (-34))) (-5 *1 (-1134 *2 *3)) (-4 *2 (-13 (-1093) (-34))))) (-1907 (*1 *2 *1) (-12 (-5 *2 (-640 *4)) (-5 *1 (-1134 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))))) (-1921 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4)))) (-5 *1 (-1134 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))))) (-3969 (*1 *2 *3 *1) (-12 (-5 *3 (-1133 *4 *5)) (-4 *4 (-13 (-1093) (-34))) (-4 *5 (-13 (-1093) (-34))) (-5 *2 (-112)) (-5 *1 (-1134 *4 *5)))) (-3521 (*1 *2 *3 *1 *4) (-12 (-5 *3 (-1133 *5 *6)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1093) (-34))) (-4 *6 (-13 (-1093) (-34))) (-5 *2 (-112)) (-5 *1 (-1134 *5 *6)))) (-1459 (*1 *1 *2 *1) (-12 (-5 *2 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1134 *3 *4)))) (-2705 (*1 *1 *2 *1) (-12 (-5 *2 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1134 *3 *4)))) (-1640 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-640 (-1133 *3 *4))) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1134 *3 *4)))) (-1640 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-1133 *4 *5))) (-5 *3 (-1 (-112) *5 *5)) (-4 *4 (-13 (-1093) (-34))) (-4 *5 (-13 (-1093) (-34))) (-5 *1 (-1134 *4 *5)))))
-(-13 (-1006 (-1133 |#1| |#2|)) (-10 -8 (-6 -4408) (-6 -4407) (-15 -3148 ((-3 $ "failed") $)) (-15 -2883 ($ $)) (-15 -1707 ($ (-1133 |#1| |#2|))) (-15 -1707 ($ |#1| |#2| (-640 $))) (-15 -1707 ($ |#1| |#2| (-640 (-1133 |#1| |#2|)))) (-15 -1707 ($ |#1| |#2| |#1| (-640 |#2|))) (-15 -1907 ((-640 |#2|) $)) (-15 -1921 ((-640 (-2 (|:| |val| |#1|) (|:| -2059 |#2|))) $)) (-15 -3969 ((-112) (-1133 |#1| |#2|) $)) (-15 -3521 ((-112) (-1133 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1459 ($ (-1133 |#1| |#2|) $)) (-15 -2705 ($ (-1133 |#1| |#2|) $)) (-15 -1640 ($ $ $ (-640 (-1133 |#1| |#2|)))) (-15 -1640 ($ $ $ (-640 (-1133 |#1| |#2|)) (-1 (-112) |#2| |#2|)))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3493 (($ $) NIL)) (-1733 ((|#2| $) NIL)) (-3129 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-2332 (($ (-684 |#2|)) 50)) (-1937 (((-112) $) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-3845 (($ |#2|) 10)) (-4239 (($) NIL T CONST)) (-4069 (($ $) 63 (|has| |#2| (-307)))) (-2368 (((-240 |#1| |#2|) $ (-563)) 36)) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 |#2| "failed") $) NIL)) (-2058 (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) ((|#2| $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) 77)) (-2522 (((-767) $) 65 (|has| |#2| (-555)))) (-4293 ((|#2| $ (-563) (-563)) NIL)) (-2659 (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-3827 (((-112) $) NIL)) (-1997 (((-767) $) 67 (|has| |#2| (-555)))) (-2345 (((-640 (-240 |#1| |#2|)) $) 71 (|has| |#2| (-555)))) (-2381 (((-767) $) NIL)) (-1566 (($ |#2|) 20)) (-2393 (((-767) $) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-3977 ((|#2| $) 61 (|has| |#2| (-6 (-4409 "*"))))) (-2013 (((-563) $) NIL)) (-3650 (((-563) $) NIL)) (-2259 (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-1859 (((-563) $) NIL)) (-2207 (((-563) $) NIL)) (-4038 (($ (-640 (-640 |#2|))) 31)) (-4345 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-4136 (((-640 (-640 |#2|)) $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-2591 (((-3 $ "failed") $) 74 (|has| |#2| (-363)))) (-1694 (((-1113) $) NIL)) (-3008 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555)))) (-3138 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#2| $ (-563) (-563) |#2|) NIL) ((|#2| $ (-563) (-563)) NIL)) (-4202 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-3327 ((|#2| $) NIL)) (-2104 (($ (-640 |#2|)) 44)) (-2717 (((-112) $) NIL)) (-3154 (((-240 |#1| |#2|) $) NIL)) (-3848 ((|#2| $) 59 (|has| |#2| (-6 (-4409 "*"))))) (-1709 (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-1872 (($ $) NIL)) (-2220 (((-536) $) 84 (|has| |#2| (-611 (-536))))) (-1912 (((-240 |#1| |#2|) $ (-563)) 38)) (-1693 (((-858) $) 41) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#2| (-1034 (-407 (-563))))) (($ |#2|) NIL) (((-684 |#2|) $) 46)) (-1675 (((-767)) 18)) (-4383 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-3280 (((-112) $) NIL)) (-2241 (($) 12 T CONST)) (-2254 (($) 15 T CONST)) (-3209 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) 57) (($ $ (-563)) 76 (|has| |#2| (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-240 |#1| |#2|) $ (-240 |#1| |#2|)) 53) (((-240 |#1| |#2|) (-240 |#1| |#2|) $) 55)) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-1135 |#1| |#2|) (-13 (-1116 |#1| |#2| (-240 |#1| |#2|) (-240 |#1| |#2|)) (-610 (-684 |#2|)) (-10 -8 (-15 -1566 ($ |#2|)) (-15 -3493 ($ $)) (-15 -2332 ($ (-684 |#2|))) (IF (|has| |#2| (-6 (-4409 "*"))) (-6 -4396) |%noBranch|) (IF (|has| |#2| (-6 (-4409 "*"))) (IF (|has| |#2| (-6 -4404)) (-6 -4404) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|))) (-767) (-1045)) (T -1135))
-((-1566 (*1 *1 *2) (-12 (-5 *1 (-1135 *3 *2)) (-14 *3 (-767)) (-4 *2 (-1045)))) (-3493 (*1 *1 *1) (-12 (-5 *1 (-1135 *2 *3)) (-14 *2 (-767)) (-4 *3 (-1045)))) (-2332 (*1 *1 *2) (-12 (-5 *2 (-684 *4)) (-4 *4 (-1045)) (-5 *1 (-1135 *3 *4)) (-14 *3 (-767)))))
-(-13 (-1116 |#1| |#2| (-240 |#1| |#2|) (-240 |#1| |#2|)) (-610 (-684 |#2|)) (-10 -8 (-15 -1566 ($ |#2|)) (-15 -3493 ($ $)) (-15 -2332 ($ (-684 |#2|))) (IF (|has| |#2| (-6 (-4409 "*"))) (-6 -4396) |%noBranch|) (IF (|has| |#2| (-6 (-4409 "*"))) (IF (|has| |#2| (-6 -4404)) (-6 -4404) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|)))
-((-3697 (($ $) 19)) (-1967 (($ $ (-144)) 10) (($ $ (-141)) 14)) (-2580 (((-112) $ $) 24)) (-1652 (($ $) 17)) (-2309 (((-144) $ (-563) (-144)) NIL) (((-144) $ (-563)) NIL) (($ $ (-1224 (-563))) NIL) (($ $ $) 29)) (-1693 (($ (-144)) 27) (((-858) $) NIL)))
-(((-1136 |#1|) (-10 -8 (-15 -1693 ((-858) |#1|)) (-15 -2309 (|#1| |#1| |#1|)) (-15 -1967 (|#1| |#1| (-141))) (-15 -1967 (|#1| |#1| (-144))) (-15 -1693 (|#1| (-144))) (-15 -2580 ((-112) |#1| |#1|)) (-15 -3697 (|#1| |#1|)) (-15 -1652 (|#1| |#1|)) (-15 -2309 (|#1| |#1| (-1224 (-563)))) (-15 -2309 ((-144) |#1| (-563))) (-15 -2309 ((-144) |#1| (-563) (-144)))) (-1137)) (T -1136))
-NIL
-(-10 -8 (-15 -1693 ((-858) |#1|)) (-15 -2309 (|#1| |#1| |#1|)) (-15 -1967 (|#1| |#1| (-141))) (-15 -1967 (|#1| |#1| (-144))) (-15 -1693 (|#1| (-144))) (-15 -2580 ((-112) |#1| |#1|)) (-15 -3697 (|#1| |#1|)) (-15 -1652 (|#1| |#1|)) (-15 -2309 (|#1| |#1| (-1224 (-563)))) (-15 -2309 ((-144) |#1| (-563))) (-15 -2309 ((-144) |#1| (-563) (-144))))
-((-1677 (((-112) $ $) 19 (|has| (-144) (-1093)))) (-3700 (($ $) 120)) (-3697 (($ $) 121)) (-1967 (($ $ (-144)) 108) (($ $ (-141)) 107)) (-4378 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4408)))) (-2559 (((-112) $ $) 118)) (-2537 (((-112) $ $ (-563)) 117)) (-2335 (((-640 $) $ (-144)) 110) (((-640 $) $ (-141)) 109)) (-3523 (((-112) (-1 (-112) (-144) (-144)) $) 98) (((-112) $) 92 (|has| (-144) (-846)))) (-2770 (($ (-1 (-112) (-144) (-144)) $) 89 (|has| $ (-6 -4408))) (($ $) 88 (-12 (|has| (-144) (-846)) (|has| $ (-6 -4408))))) (-1642 (($ (-1 (-112) (-144) (-144)) $) 99) (($ $) 93 (|has| (-144) (-846)))) (-2759 (((-112) $ (-767)) 8)) (-1849 (((-144) $ (-563) (-144)) 52 (|has| $ (-6 -4408))) (((-144) $ (-1224 (-563)) (-144)) 58 (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) (-144)) $) 75 (|has| $ (-6 -4407)))) (-4239 (($) 7 T CONST)) (-2025 (($ $ (-144)) 104) (($ $ (-141)) 103)) (-2907 (($ $) 90 (|has| $ (-6 -4408)))) (-4382 (($ $) 100)) (-1938 (($ $ (-1224 (-563)) $) 114)) (-3813 (($ $) 78 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ (-144) $) 77 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) (-144)) $) 74 (|has| $ (-6 -4407)))) (-2444 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) 76 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4407)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) 73 (|has| $ (-6 -4407))) (((-144) (-1 (-144) (-144) (-144)) $) 72 (|has| $ (-6 -4407)))) (-4355 (((-144) $ (-563) (-144)) 53 (|has| $ (-6 -4408)))) (-4293 (((-144) $ (-563)) 51)) (-2580 (((-112) $ $) 119)) (-4368 (((-563) (-1 (-112) (-144)) $) 97) (((-563) (-144) $) 96 (|has| (-144) (-1093))) (((-563) (-144) $ (-563)) 95 (|has| (-144) (-1093))) (((-563) $ $ (-563)) 113) (((-563) (-141) $ (-563)) 112)) (-2659 (((-640 (-144)) $) 30 (|has| $ (-6 -4407)))) (-1566 (($ (-767) (-144)) 69)) (-2581 (((-112) $ (-767)) 9)) (-2411 (((-563) $) 43 (|has| (-563) (-846)))) (-3084 (($ $ $) 87 (|has| (-144) (-846)))) (-3164 (($ (-1 (-112) (-144) (-144)) $ $) 101) (($ $ $) 94 (|has| (-144) (-846)))) (-2259 (((-640 (-144)) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) (-144) $) 27 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4407))))) (-3860 (((-563) $) 44 (|has| (-563) (-846)))) (-1777 (($ $ $) 86 (|has| (-144) (-846)))) (-4367 (((-112) $ $ (-144)) 115)) (-1916 (((-767) $ $ (-144)) 116)) (-4345 (($ (-1 (-144) (-144)) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-144) (-144)) $) 35) (($ (-1 (-144) (-144) (-144)) $ $) 64)) (-2360 (($ $) 122)) (-1652 (($ $) 123)) (-2382 (((-112) $ (-767)) 10)) (-2036 (($ $ (-144)) 106) (($ $ (-141)) 105)) (-3573 (((-1151) $) 22 (|has| (-144) (-1093)))) (-3396 (($ (-144) $ (-563)) 60) (($ $ $ (-563)) 59)) (-4318 (((-640 (-563)) $) 46)) (-3192 (((-112) (-563) $) 47)) (-1694 (((-1113) $) 21 (|has| (-144) (-1093)))) (-3781 (((-144) $) 42 (|has| (-563) (-846)))) (-4203 (((-3 (-144) "failed") (-1 (-112) (-144)) $) 71)) (-2358 (($ $ (-144)) 41 (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) (-144)) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-144)))) 26 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-294 (-144))) 25 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-144) (-144)) 24 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-640 (-144)) (-640 (-144))) 23 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))))) (-2026 (((-112) $ $) 14)) (-2105 (((-112) (-144) $) 45 (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093))))) (-2836 (((-640 (-144)) $) 48)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 (((-144) $ (-563) (-144)) 50) (((-144) $ (-563)) 49) (($ $ (-1224 (-563))) 63) (($ $ $) 102)) (-2963 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-1709 (((-767) (-1 (-112) (-144)) $) 31 (|has| $ (-6 -4407))) (((-767) (-144) $) 28 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4407))))) (-3076 (($ $ $ (-563)) 91 (|has| $ (-6 -4408)))) (-1872 (($ $) 13)) (-2220 (((-536) $) 79 (|has| (-144) (-611 (-536))))) (-1707 (($ (-640 (-144))) 70)) (-2853 (($ $ (-144)) 68) (($ (-144) $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1693 (($ (-144)) 111) (((-858) $) 18 (|has| (-144) (-610 (-858))))) (-4383 (((-112) (-1 (-112) (-144)) $) 33 (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) 84 (|has| (-144) (-846)))) (-1756 (((-112) $ $) 83 (|has| (-144) (-846)))) (-1718 (((-112) $ $) 20 (|has| (-144) (-1093)))) (-1768 (((-112) $ $) 85 (|has| (-144) (-846)))) (-1744 (((-112) $ $) 82 (|has| (-144) (-846)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1583 (*1 *1 *1) (-4 *1 (-1132))) (-1570 (*1 *1 *1) (-4 *1 (-1132))) (-1558 (*1 *1 *1 *1) (-4 *1 (-1132))) (-1545 (*1 *1 *1 *1) (-4 *1 (-1132))) (-1534 (*1 *1 *1 *1) (-4 *1 (-1132))) (-1521 (*1 *1 *1 *1) (-4 *1 (-1132))) (-1507 (*1 *1 *1 *1) (-4 *1 (-1132))) (-1496 (*1 *1 *1 *1) (-4 *1 (-1132))) (-1485 (*1 *1 *1) (-4 *1 (-1132))) (-1474 (*1 *1 *1 *1) (-4 *1 (-1132))) (-1507 (*1 *1 *1) (-4 *1 (-1132))) (-1462 (*1 *1 *1) (-4 *1 (-1132))))
+(-13 (-10 -8 (-15 -1462 ($ $)) (-15 -1507 ($ $)) (-15 -1474 ($ $ $)) (-15 -1485 ($ $)) (-15 -1496 ($ $ $)) (-15 -1507 ($ $ $)) (-15 -1521 ($ $ $)) (-15 -1534 ($ $ $)) (-15 -1545 ($ $ $)) (-15 -1558 ($ $ $)) (-15 -1570 ($ $)) (-15 -1583 ($ $))))
+((-1677 (((-112) $ $) 42)) (-2618 ((|#1| $) 16)) (-1595 (((-112) $ $ (-1 (-112) |#2| |#2|)) 37)) (-2733 (((-112) $) 18)) (-1654 (($ $ |#1|) 29)) (-1628 (($ $ (-112)) 31)) (-1617 (($ $) 32)) (-1641 (($ $ |#2|) 30)) (-3854 (((-1151) $) NIL)) (-1606 (((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|)) 36)) (-1693 (((-1113) $) NIL)) (-1665 (((-112) $) 15)) (-3445 (($) 11)) (-1870 (($ $) 28)) (-1706 (($ |#1| |#2| (-112)) 19) (($ |#1| |#2|) 20) (($ (-2 (|:| |val| |#1|) (|:| -2058 |#2|))) 22) (((-640 $) (-640 (-2 (|:| |val| |#1|) (|:| -2058 |#2|)))) 25) (((-640 $) |#1| (-640 |#2|)) 27)) (-1394 ((|#2| $) 17)) (-1692 (((-858) $) 51)) (-1718 (((-112) $ $) 40)))
+(((-1133 |#1| |#2|) (-13 (-1093) (-10 -8 (-15 -3445 ($)) (-15 -1665 ((-112) $)) (-15 -2618 (|#1| $)) (-15 -1394 (|#2| $)) (-15 -2733 ((-112) $)) (-15 -1706 ($ |#1| |#2| (-112))) (-15 -1706 ($ |#1| |#2|)) (-15 -1706 ($ (-2 (|:| |val| |#1|) (|:| -2058 |#2|)))) (-15 -1706 ((-640 $) (-640 (-2 (|:| |val| |#1|) (|:| -2058 |#2|))))) (-15 -1706 ((-640 $) |#1| (-640 |#2|))) (-15 -1870 ($ $)) (-15 -1654 ($ $ |#1|)) (-15 -1641 ($ $ |#2|)) (-15 -1628 ($ $ (-112))) (-15 -1617 ($ $)) (-15 -1606 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -1595 ((-112) $ $ (-1 (-112) |#2| |#2|))))) (-13 (-1093) (-34)) (-13 (-1093) (-34))) (T -1133))
+((-3445 (*1 *1) (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-1665 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))))) (-2618 (*1 *2 *1) (-12 (-4 *2 (-13 (-1093) (-34))) (-5 *1 (-1133 *2 *3)) (-4 *3 (-13 (-1093) (-34))))) (-1394 (*1 *2 *1) (-12 (-4 *2 (-13 (-1093) (-34))) (-5 *1 (-1133 *3 *2)) (-4 *3 (-13 (-1093) (-34))))) (-2733 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))))) (-1706 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-1706 (*1 *1 *2 *3) (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-1706 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -2058 *4))) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1133 *3 *4)))) (-1706 (*1 *2 *3) (-12 (-5 *3 (-640 (-2 (|:| |val| *4) (|:| -2058 *5)))) (-4 *4 (-13 (-1093) (-34))) (-4 *5 (-13 (-1093) (-34))) (-5 *2 (-640 (-1133 *4 *5))) (-5 *1 (-1133 *4 *5)))) (-1706 (*1 *2 *3 *4) (-12 (-5 *4 (-640 *5)) (-4 *5 (-13 (-1093) (-34))) (-5 *2 (-640 (-1133 *3 *5))) (-5 *1 (-1133 *3 *5)) (-4 *3 (-13 (-1093) (-34))))) (-1870 (*1 *1 *1) (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-1654 (*1 *1 *1 *2) (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-1641 (*1 *1 *1 *2) (-12 (-5 *1 (-1133 *3 *2)) (-4 *3 (-13 (-1093) (-34))) (-4 *2 (-13 (-1093) (-34))))) (-1628 (*1 *1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))))) (-1617 (*1 *1 *1) (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-1606 (*1 *2 *1 *1 *3 *4) (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1093) (-34))) (-4 *6 (-13 (-1093) (-34))) (-5 *2 (-112)) (-5 *1 (-1133 *5 *6)))) (-1595 (*1 *2 *1 *1 *3) (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1093) (-34))) (-5 *2 (-112)) (-5 *1 (-1133 *4 *5)) (-4 *4 (-13 (-1093) (-34))))))
+(-13 (-1093) (-10 -8 (-15 -3445 ($)) (-15 -1665 ((-112) $)) (-15 -2618 (|#1| $)) (-15 -1394 (|#2| $)) (-15 -2733 ((-112) $)) (-15 -1706 ($ |#1| |#2| (-112))) (-15 -1706 ($ |#1| |#2|)) (-15 -1706 ($ (-2 (|:| |val| |#1|) (|:| -2058 |#2|)))) (-15 -1706 ((-640 $) (-640 (-2 (|:| |val| |#1|) (|:| -2058 |#2|))))) (-15 -1706 ((-640 $) |#1| (-640 |#2|))) (-15 -1870 ($ $)) (-15 -1654 ($ $ |#1|)) (-15 -1641 ($ $ |#2|)) (-15 -1628 ($ $ (-112))) (-15 -1617 ($ $)) (-15 -1606 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -1595 ((-112) $ $ (-1 (-112) |#2| |#2|)))))
+((-1677 (((-112) $ $) NIL (|has| (-1133 |#1| |#2|) (-1093)))) (-2618 (((-1133 |#1| |#2|) $) 26)) (-1732 (($ $) 76)) (-1705 (((-112) (-1133 |#1| |#2|) $ (-1 (-112) |#2| |#2|)) 85)) (-1678 (($ $ $ (-640 (-1133 |#1| |#2|))) 90) (($ $ $ (-640 (-1133 |#1| |#2|)) (-1 (-112) |#2| |#2|)) 91)) (-3001 (((-112) $ (-767)) NIL)) (-2336 (((-1133 |#1| |#2|) $ (-1133 |#1| |#2|)) 43 (|has| $ (-6 -4409)))) (-1849 (((-1133 |#1| |#2|) $ "value" (-1133 |#1| |#2|)) NIL (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) 41 (|has| $ (-6 -4409)))) (-2569 (($) NIL T CONST)) (-1920 (((-640 (-2 (|:| |val| |#1|) (|:| -2058 |#2|))) $) 80)) (-1691 (($ (-1133 |#1| |#2|) $) 39)) (-1459 (($ (-1133 |#1| |#2|) $) 31)) (-2658 (((-640 (-1133 |#1| |#2|)) $) NIL (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) 51)) (-1720 (((-112) (-1133 |#1| |#2|) $) 82)) (-2358 (((-112) $ $) NIL (|has| (-1133 |#1| |#2|) (-1093)))) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 (-1133 |#1| |#2|)) $) 55 (|has| $ (-6 -4408)))) (-2667 (((-112) (-1133 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-1133 |#1| |#2|) (-1093))))) (-4347 (($ (-1 (-1133 |#1| |#2|) (-1133 |#1| |#2|)) $) 47 (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-1133 |#1| |#2|) (-1133 |#1| |#2|)) $) 46)) (-2481 (((-112) $ (-767)) NIL)) (-2511 (((-640 (-1133 |#1| |#2|)) $) 53)) (-1298 (((-112) $) 42)) (-3854 (((-1151) $) NIL (|has| (-1133 |#1| |#2|) (-1093)))) (-1693 (((-1113) $) NIL (|has| (-1133 |#1| |#2|) (-1093)))) (-1746 (((-3 $ "failed") $) 75)) (-1458 (((-112) (-1 (-112) (-1133 |#1| |#2|)) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-1133 |#1| |#2|)))) NIL (-12 (|has| (-1133 |#1| |#2|) (-309 (-1133 |#1| |#2|))) (|has| (-1133 |#1| |#2|) (-1093)))) (($ $ (-294 (-1133 |#1| |#2|))) NIL (-12 (|has| (-1133 |#1| |#2|) (-309 (-1133 |#1| |#2|))) (|has| (-1133 |#1| |#2|) (-1093)))) (($ $ (-1133 |#1| |#2|) (-1133 |#1| |#2|)) NIL (-12 (|has| (-1133 |#1| |#2|) (-309 (-1133 |#1| |#2|))) (|has| (-1133 |#1| |#2|) (-1093)))) (($ $ (-640 (-1133 |#1| |#2|)) (-640 (-1133 |#1| |#2|))) NIL (-12 (|has| (-1133 |#1| |#2|) (-309 (-1133 |#1| |#2|))) (|has| (-1133 |#1| |#2|) (-1093))))) (-2941 (((-112) $ $) 50)) (-1665 (((-112) $) 23)) (-3445 (($) 25)) (-2308 (((-1133 |#1| |#2|) $ "value") NIL)) (-2379 (((-563) $ $) NIL)) (-2889 (((-112) $) 44)) (-1708 (((-767) (-1 (-112) (-1133 |#1| |#2|)) $) NIL (|has| $ (-6 -4408))) (((-767) (-1133 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-1133 |#1| |#2|) (-1093))))) (-1870 (($ $) 49)) (-1706 (($ (-1133 |#1| |#2|)) 10) (($ |#1| |#2| (-640 $)) 13) (($ |#1| |#2| (-640 (-1133 |#1| |#2|))) 15) (($ |#1| |#2| |#1| (-640 |#2|)) 18)) (-1906 (((-640 |#2|) $) 81)) (-1692 (((-858) $) 73 (|has| (-1133 |#1| |#2|) (-610 (-858))))) (-4345 (((-640 $) $) 29)) (-2367 (((-112) $ $) NIL (|has| (-1133 |#1| |#2|) (-1093)))) (-1471 (((-112) (-1 (-112) (-1133 |#1| |#2|)) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 64 (|has| (-1133 |#1| |#2|) (-1093)))) (-3610 (((-767) $) 58 (|has| $ (-6 -4408)))))
+(((-1134 |#1| |#2|) (-13 (-1006 (-1133 |#1| |#2|)) (-10 -8 (-6 -4409) (-6 -4408) (-15 -1746 ((-3 $ "failed") $)) (-15 -1732 ($ $)) (-15 -1706 ($ (-1133 |#1| |#2|))) (-15 -1706 ($ |#1| |#2| (-640 $))) (-15 -1706 ($ |#1| |#2| (-640 (-1133 |#1| |#2|)))) (-15 -1706 ($ |#1| |#2| |#1| (-640 |#2|))) (-15 -1906 ((-640 |#2|) $)) (-15 -1920 ((-640 (-2 (|:| |val| |#1|) (|:| -2058 |#2|))) $)) (-15 -1720 ((-112) (-1133 |#1| |#2|) $)) (-15 -1705 ((-112) (-1133 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1459 ($ (-1133 |#1| |#2|) $)) (-15 -1691 ($ (-1133 |#1| |#2|) $)) (-15 -1678 ($ $ $ (-640 (-1133 |#1| |#2|)))) (-15 -1678 ($ $ $ (-640 (-1133 |#1| |#2|)) (-1 (-112) |#2| |#2|))))) (-13 (-1093) (-34)) (-13 (-1093) (-34))) (T -1134))
+((-1746 (*1 *1 *1) (|partial| -12 (-5 *1 (-1134 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-1732 (*1 *1 *1) (-12 (-5 *1 (-1134 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-1706 (*1 *1 *2) (-12 (-5 *2 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1134 *3 *4)))) (-1706 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-640 (-1134 *2 *3))) (-5 *1 (-1134 *2 *3)) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))))) (-1706 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-640 (-1133 *2 *3))) (-4 *2 (-13 (-1093) (-34))) (-4 *3 (-13 (-1093) (-34))) (-5 *1 (-1134 *2 *3)))) (-1706 (*1 *1 *2 *3 *2 *4) (-12 (-5 *4 (-640 *3)) (-4 *3 (-13 (-1093) (-34))) (-5 *1 (-1134 *2 *3)) (-4 *2 (-13 (-1093) (-34))))) (-1906 (*1 *2 *1) (-12 (-5 *2 (-640 *4)) (-5 *1 (-1134 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))))) (-1920 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4)))) (-5 *1 (-1134 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))))) (-1720 (*1 *2 *3 *1) (-12 (-5 *3 (-1133 *4 *5)) (-4 *4 (-13 (-1093) (-34))) (-4 *5 (-13 (-1093) (-34))) (-5 *2 (-112)) (-5 *1 (-1134 *4 *5)))) (-1705 (*1 *2 *3 *1 *4) (-12 (-5 *3 (-1133 *5 *6)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1093) (-34))) (-4 *6 (-13 (-1093) (-34))) (-5 *2 (-112)) (-5 *1 (-1134 *5 *6)))) (-1459 (*1 *1 *2 *1) (-12 (-5 *2 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1134 *3 *4)))) (-1691 (*1 *1 *2 *1) (-12 (-5 *2 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1134 *3 *4)))) (-1678 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-640 (-1133 *3 *4))) (-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1134 *3 *4)))) (-1678 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-1133 *4 *5))) (-5 *3 (-1 (-112) *5 *5)) (-4 *4 (-13 (-1093) (-34))) (-4 *5 (-13 (-1093) (-34))) (-5 *1 (-1134 *4 *5)))))
+(-13 (-1006 (-1133 |#1| |#2|)) (-10 -8 (-6 -4409) (-6 -4408) (-15 -1746 ((-3 $ "failed") $)) (-15 -1732 ($ $)) (-15 -1706 ($ (-1133 |#1| |#2|))) (-15 -1706 ($ |#1| |#2| (-640 $))) (-15 -1706 ($ |#1| |#2| (-640 (-1133 |#1| |#2|)))) (-15 -1706 ($ |#1| |#2| |#1| (-640 |#2|))) (-15 -1906 ((-640 |#2|) $)) (-15 -1920 ((-640 (-2 (|:| |val| |#1|) (|:| -2058 |#2|))) $)) (-15 -1720 ((-112) (-1133 |#1| |#2|) $)) (-15 -1705 ((-112) (-1133 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1459 ($ (-1133 |#1| |#2|) $)) (-15 -1691 ($ (-1133 |#1| |#2|) $)) (-15 -1678 ($ $ $ (-640 (-1133 |#1| |#2|)))) (-15 -1678 ($ $ $ (-640 (-1133 |#1| |#2|)) (-1 (-112) |#2| |#2|)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-1769 (($ $) NIL)) (-1731 ((|#2| $) NIL)) (-3870 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1757 (($ (-684 |#2|)) 50)) (-3893 (((-112) $) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-2217 (($ |#2|) 10)) (-2569 (($) NIL T CONST)) (-1940 (($ $) 63 (|has| |#2| (-307)))) (-1960 (((-240 |#1| |#2|) $ (-563)) 36)) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 |#2| "failed") $) NIL)) (-2057 (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) ((|#2| $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) 77)) (-2521 (((-767) $) 65 (|has| |#2| (-555)))) (-4293 ((|#2| $ (-563) (-563)) NIL)) (-2658 (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-3401 (((-112) $) NIL)) (-1929 (((-767) $) 67 (|has| |#2| (-555)))) (-1917 (((-640 (-240 |#1| |#2|)) $) 71 (|has| |#2| (-555)))) (-2380 (((-767) $) NIL)) (-1565 (($ |#2|) 20)) (-2391 (((-767) $) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2157 ((|#2| $) 61 (|has| |#2| (-6 (-4410 "*"))))) (-1995 (((-563) $) NIL)) (-1979 (((-563) $) NIL)) (-3523 (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-1986 (((-563) $) NIL)) (-1969 (((-563) $) NIL)) (-4040 (($ (-640 (-640 |#2|))) 31)) (-4347 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-3734 (((-640 (-640 |#2|)) $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-3694 (((-3 $ "failed") $) 74 (|has| |#2| (-363)))) (-1693 (((-1113) $) NIL)) (-3012 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555)))) (-1458 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#2| $ (-563) (-563) |#2|) NIL) ((|#2| $ (-563) (-563)) NIL)) (-4203 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-2183 ((|#2| $) NIL)) (-2206 (($ (-640 |#2|)) 44)) (-3881 (((-112) $) NIL)) (-2195 (((-240 |#1| |#2|) $) NIL)) (-2168 ((|#2| $) 59 (|has| |#2| (-6 (-4410 "*"))))) (-1708 (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-1870 (($ $) NIL)) (-2219 (((-536) $) 84 (|has| |#2| (-611 (-536))))) (-1950 (((-240 |#1| |#2|) $ (-563)) 38)) (-1692 (((-858) $) 41) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#2| (-1034 (-407 (-563))))) (($ |#2|) NIL) (((-684 |#2|) $) 46)) (-3914 (((-767)) 18)) (-1471 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-2005 (((-112) $) NIL)) (-2239 (($) 12 T CONST)) (-2253 (($) 15 T CONST)) (-3213 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-767)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) 57) (($ $ (-563)) 76 (|has| |#2| (-363)))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-240 |#1| |#2|) $ (-240 |#1| |#2|)) 53) (((-240 |#1| |#2|) (-240 |#1| |#2|) $) 55)) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-1135 |#1| |#2|) (-13 (-1116 |#1| |#2| (-240 |#1| |#2|) (-240 |#1| |#2|)) (-610 (-684 |#2|)) (-10 -8 (-15 -1565 ($ |#2|)) (-15 -1769 ($ $)) (-15 -1757 ($ (-684 |#2|))) (IF (|has| |#2| (-6 (-4410 "*"))) (-6 -4397) |%noBranch|) (IF (|has| |#2| (-6 (-4410 "*"))) (IF (|has| |#2| (-6 -4405)) (-6 -4405) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|))) (-767) (-1045)) (T -1135))
+((-1565 (*1 *1 *2) (-12 (-5 *1 (-1135 *3 *2)) (-14 *3 (-767)) (-4 *2 (-1045)))) (-1769 (*1 *1 *1) (-12 (-5 *1 (-1135 *2 *3)) (-14 *2 (-767)) (-4 *3 (-1045)))) (-1757 (*1 *1 *2) (-12 (-5 *2 (-684 *4)) (-4 *4 (-1045)) (-5 *1 (-1135 *3 *4)) (-14 *3 (-767)))))
+(-13 (-1116 |#1| |#2| (-240 |#1| |#2|) (-240 |#1| |#2|)) (-610 (-684 |#2|)) (-10 -8 (-15 -1565 ($ |#2|)) (-15 -1769 ($ $)) (-15 -1757 ($ (-684 |#2|))) (IF (|has| |#2| (-6 (-4410 "*"))) (-6 -4397) |%noBranch|) (IF (|has| |#2| (-6 (-4410 "*"))) (IF (|has| |#2| (-6 -4405)) (-6 -4405) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-611 (-536))) (-6 (-611 (-536))) |%noBranch|)))
+((-1827 (($ $) 19)) (-1782 (($ $ (-144)) 10) (($ $ (-141)) 14)) (-2578 (((-112) $ $) 24)) (-1848 (($ $) 17)) (-2308 (((-144) $ (-563) (-144)) NIL) (((-144) $ (-563)) NIL) (($ $ (-1224 (-563))) NIL) (($ $ $) 29)) (-1692 (($ (-144)) 27) (((-858) $) NIL)))
+(((-1136 |#1|) (-10 -8 (-15 -1692 ((-858) |#1|)) (-15 -2308 (|#1| |#1| |#1|)) (-15 -1782 (|#1| |#1| (-141))) (-15 -1782 (|#1| |#1| (-144))) (-15 -1692 (|#1| (-144))) (-15 -2578 ((-112) |#1| |#1|)) (-15 -1827 (|#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 -2308 (|#1| |#1| (-1224 (-563)))) (-15 -2308 ((-144) |#1| (-563))) (-15 -2308 ((-144) |#1| (-563) (-144)))) (-1137)) (T -1136))
+NIL
+(-10 -8 (-15 -1692 ((-858) |#1|)) (-15 -2308 (|#1| |#1| |#1|)) (-15 -1782 (|#1| |#1| (-141))) (-15 -1782 (|#1| |#1| (-144))) (-15 -1692 (|#1| (-144))) (-15 -2578 ((-112) |#1| |#1|)) (-15 -1827 (|#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 -2308 (|#1| |#1| (-1224 (-563)))) (-15 -2308 ((-144) |#1| (-563))) (-15 -2308 ((-144) |#1| (-563) (-144))))
+((-1677 (((-112) $ $) 19 (|has| (-144) (-1093)))) (-1815 (($ $) 120)) (-1827 (($ $) 121)) (-1782 (($ $ (-144)) 108) (($ $ (-141)) 107)) (-2208 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4409)))) (-2558 (((-112) $ $) 118)) (-2537 (((-112) $ $ (-563)) 117)) (-1792 (((-640 $) $ (-144)) 110) (((-640 $) $ (-141)) 109)) (-4073 (((-112) (-1 (-112) (-144) (-144)) $) 98) (((-112) $) 92 (|has| (-144) (-846)))) (-4052 (($ (-1 (-112) (-144) (-144)) $) 89 (|has| $ (-6 -4409))) (($ $) 88 (-12 (|has| (-144) (-846)) (|has| $ (-6 -4409))))) (-1640 (($ (-1 (-112) (-144) (-144)) $) 99) (($ $) 93 (|has| (-144) (-846)))) (-3001 (((-112) $ (-767)) 8)) (-1849 (((-144) $ (-563) (-144)) 52 (|has| $ (-6 -4409))) (((-144) $ (-1224 (-563)) (-144)) 58 (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) (-144)) $) 75 (|has| $ (-6 -4408)))) (-2569 (($) 7 T CONST)) (-2023 (($ $ (-144)) 104) (($ $ (-141)) 103)) (-1574 (($ $) 90 (|has| $ (-6 -4409)))) (-4383 (($ $) 100)) (-1804 (($ $ (-1224 (-563)) $) 114)) (-3814 (($ $) 78 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ (-144) $) 77 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) (-144)) $) 74 (|has| $ (-6 -4408)))) (-2444 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) 76 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4408)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) 73 (|has| $ (-6 -4408))) (((-144) (-1 (-144) (-144) (-144)) $) 72 (|has| $ (-6 -4408)))) (-4356 (((-144) $ (-563) (-144)) 53 (|has| $ (-6 -4409)))) (-4293 (((-144) $ (-563)) 51)) (-2578 (((-112) $ $) 119)) (-4369 (((-563) (-1 (-112) (-144)) $) 97) (((-563) (-144) $) 96 (|has| (-144) (-1093))) (((-563) (-144) $ (-563)) 95 (|has| (-144) (-1093))) (((-563) $ $ (-563)) 113) (((-563) (-141) $ (-563)) 112)) (-2658 (((-640 (-144)) $) 30 (|has| $ (-6 -4408)))) (-1565 (($ (-767) (-144)) 69)) (-2514 (((-112) $ (-767)) 9)) (-2236 (((-563) $) 43 (|has| (-563) (-846)))) (-3088 (($ $ $) 87 (|has| (-144) (-846)))) (-4300 (($ (-1 (-112) (-144) (-144)) $ $) 101) (($ $ $) 94 (|has| (-144) (-846)))) (-3523 (((-640 (-144)) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) (-144) $) 27 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4408))))) (-2251 (((-563) $) 44 (|has| (-563) (-846)))) (-1776 (($ $ $) 86 (|has| (-144) (-846)))) (-4368 (((-112) $ $ (-144)) 115)) (-1915 (((-767) $ $ (-144)) 116)) (-4347 (($ (-1 (-144) (-144)) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-144) (-144)) $) 35) (($ (-1 (-144) (-144) (-144)) $ $) 64)) (-1838 (($ $) 122)) (-1848 (($ $) 123)) (-2481 (((-112) $ (-767)) 10)) (-2034 (($ $ (-144)) 106) (($ $ (-141)) 105)) (-3854 (((-1151) $) 22 (|has| (-144) (-1093)))) (-3399 (($ (-144) $ (-563)) 60) (($ $ $ (-563)) 59)) (-2272 (((-640 (-563)) $) 46)) (-2282 (((-112) (-563) $) 47)) (-1693 (((-1113) $) 21 (|has| (-144) (-1093)))) (-3782 (((-144) $) 42 (|has| (-563) (-846)))) (-1971 (((-3 (-144) "failed") (-1 (-112) (-144)) $) 71)) (-2221 (($ $ (-144)) 41 (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) (-144)) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-144)))) 26 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-294 (-144))) 25 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-144) (-144)) 24 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-640 (-144)) (-640 (-144))) 23 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))))) (-2941 (((-112) $ $) 14)) (-2262 (((-112) (-144) $) 45 (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093))))) (-2295 (((-640 (-144)) $) 48)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 (((-144) $ (-563) (-144)) 50) (((-144) $ (-563)) 49) (($ $ (-1224 (-563))) 63) (($ $ $) 102)) (-2967 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-1708 (((-767) (-1 (-112) (-144)) $) 31 (|has| $ (-6 -4408))) (((-767) (-144) $) 28 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4408))))) (-4062 (($ $ $ (-563)) 91 (|has| $ (-6 -4409)))) (-1870 (($ $) 13)) (-2219 (((-536) $) 79 (|has| (-144) (-611 (-536))))) (-1706 (($ (-640 (-144))) 70)) (-2857 (($ $ (-144)) 68) (($ (-144) $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1692 (($ (-144)) 111) (((-858) $) 18 (|has| (-144) (-610 (-858))))) (-1471 (((-112) (-1 (-112) (-144)) $) 33 (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) 84 (|has| (-144) (-846)))) (-1754 (((-112) $ $) 83 (|has| (-144) (-846)))) (-1718 (((-112) $ $) 20 (|has| (-144) (-1093)))) (-1766 (((-112) $ $) 85 (|has| (-144) (-846)))) (-1743 (((-112) $ $) 82 (|has| (-144) (-846)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-1137) (-140)) (T -1137))
-((-1652 (*1 *1 *1) (-4 *1 (-1137))) (-2360 (*1 *1 *1) (-4 *1 (-1137))) (-3697 (*1 *1 *1) (-4 *1 (-1137))) (-3700 (*1 *1 *1) (-4 *1 (-1137))) (-2580 (*1 *2 *1 *1) (-12 (-4 *1 (-1137)) (-5 *2 (-112)))) (-2559 (*1 *2 *1 *1) (-12 (-4 *1 (-1137)) (-5 *2 (-112)))) (-2537 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1137)) (-5 *3 (-563)) (-5 *2 (-112)))) (-1916 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1137)) (-5 *3 (-144)) (-5 *2 (-767)))) (-4367 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1137)) (-5 *3 (-144)) (-5 *2 (-112)))) (-1938 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1137)) (-5 *2 (-1224 (-563))))) (-4368 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-563)))) (-4368 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-563)) (-5 *3 (-141)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-144)) (-4 *1 (-1137)))) (-2335 (*1 *2 *1 *3) (-12 (-5 *3 (-144)) (-5 *2 (-640 *1)) (-4 *1 (-1137)))) (-2335 (*1 *2 *1 *3) (-12 (-5 *3 (-141)) (-5 *2 (-640 *1)) (-4 *1 (-1137)))) (-1967 (*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-144)))) (-1967 (*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-141)))) (-2036 (*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-144)))) (-2036 (*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-141)))) (-2025 (*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-144)))) (-2025 (*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-141)))) (-2309 (*1 *1 *1 *1) (-4 *1 (-1137))))
-(-13 (-19 (-144)) (-10 -8 (-15 -1652 ($ $)) (-15 -2360 ($ $)) (-15 -3697 ($ $)) (-15 -3700 ($ $)) (-15 -2580 ((-112) $ $)) (-15 -2559 ((-112) $ $)) (-15 -2537 ((-112) $ $ (-563))) (-15 -1916 ((-767) $ $ (-144))) (-15 -4367 ((-112) $ $ (-144))) (-15 -1938 ($ $ (-1224 (-563)) $)) (-15 -4368 ((-563) $ $ (-563))) (-15 -4368 ((-563) (-141) $ (-563))) (-15 -1693 ($ (-144))) (-15 -2335 ((-640 $) $ (-144))) (-15 -2335 ((-640 $) $ (-141))) (-15 -1967 ($ $ (-144))) (-15 -1967 ($ $ (-141))) (-15 -2036 ($ $ (-144))) (-15 -2036 ($ $ (-141))) (-15 -2025 ($ $ (-144))) (-15 -2025 ($ $ (-141))) (-15 -2309 ($ $ $))))
-(((-34) . T) ((-102) -4032 (|has| (-144) (-1093)) (|has| (-144) (-846))) ((-610 (-858)) -4032 (|has| (-144) (-1093)) (|has| (-144) (-846)) (|has| (-144) (-610 (-858)))) ((-151 #0=(-144)) . T) ((-611 (-536)) |has| (-144) (-611 (-536))) ((-286 #1=(-563) #0#) . T) ((-288 #1# #0#) . T) ((-309 #0#) -12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))) ((-373 #0#) . T) ((-489 #0#) . T) ((-601 #1# #0#) . T) ((-514 #0# #0#) -12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))) ((-646 #0#) . T) ((-19 #0#) . T) ((-846) |has| (-144) (-846)) ((-1093) -4032 (|has| (-144) (-1093)) (|has| (-144) (-846))) ((-1208) . T))
-((-1672 (((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-640 |#4|) (-640 |#5|) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) (-767)) 93)) (-4037 (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5|) 55) (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767)) 54)) (-2672 (((-1262) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-767)) 85)) (-3867 (((-767) (-640 |#4|) (-640 |#5|)) 27)) (-4361 (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767)) 56) (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767) (-112)) 58)) (-2927 (((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112) (-112) (-112) (-112)) 76) (((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112)) 77)) (-2220 (((-1151) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) 80)) (-3705 (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5|) 53)) (-3913 (((-767) (-640 |#4|) (-640 |#5|)) 19)))
-(((-1138 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3913 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -3867 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -3705 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5|)) (-15 -4037 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767))) (-15 -4037 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5|)) (-15 -4361 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767) (-112))) (-15 -4361 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767))) (-15 -4361 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5|)) (-15 -2927 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -2927 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -1672 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-640 |#4|) (-640 |#5|) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) (-767))) (-15 -2220 ((-1151) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)))) (-15 -2672 ((-1262) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-767)))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1102 |#1| |#2| |#3| |#4|)) (T -1138))
-((-2672 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2059 *9)))) (-5 *4 (-767)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-1262)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))) (-2220 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2059 *8))) (-4 *7 (-1059 *4 *5 *6)) (-4 *8 (-1102 *4 *5 *6 *7)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1151)) (-5 *1 (-1138 *4 *5 *6 *7 *8)))) (-1672 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-640 *11)) (|:| |todo| (-640 (-2 (|:| |val| *3) (|:| -2059 *11)))))) (-5 *6 (-767)) (-5 *2 (-640 (-2 (|:| |val| (-640 *10)) (|:| -2059 *11)))) (-5 *3 (-640 *10)) (-5 *4 (-640 *11)) (-4 *10 (-1059 *7 *8 *9)) (-4 *11 (-1102 *7 *8 *9 *10)) (-4 *7 (-452)) (-4 *8 (-789)) (-4 *9 (-846)) (-5 *1 (-1138 *7 *8 *9 *10 *11)))) (-2927 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))) (-2927 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))) (-4361 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4)))))) (-5 *1 (-1138 *5 *6 *7 *3 *4)) (-4 *4 (-1102 *5 *6 *7 *3)))) (-4361 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *3 (-1059 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4)))))) (-5 *1 (-1138 *6 *7 *8 *3 *4)) (-4 *4 (-1102 *6 *7 *8 *3)))) (-4361 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-767)) (-5 *6 (-112)) (-4 *7 (-452)) (-4 *8 (-789)) (-4 *9 (-846)) (-4 *3 (-1059 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4)))))) (-5 *1 (-1138 *7 *8 *9 *3 *4)) (-4 *4 (-1102 *7 *8 *9 *3)))) (-4037 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4)))))) (-5 *1 (-1138 *5 *6 *7 *3 *4)) (-4 *4 (-1102 *5 *6 *7 *3)))) (-4037 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *3 (-1059 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4)))))) (-5 *1 (-1138 *6 *7 *8 *3 *4)) (-4 *4 (-1102 *6 *7 *8 *3)))) (-3705 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4)))))) (-5 *1 (-1138 *5 *6 *7 *3 *4)) (-4 *4 (-1102 *5 *6 *7 *3)))) (-3867 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))) (-3913 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))))
-(-10 -7 (-15 -3913 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -3867 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -3705 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5|)) (-15 -4037 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767))) (-15 -4037 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5|)) (-15 -4361 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767) (-112))) (-15 -4361 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5| (-767))) (-15 -4361 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) |#4| |#5|)) (-15 -2927 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -2927 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -1672 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-640 |#4|) (-640 |#5|) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))))) (-767))) (-15 -2220 ((-1151) (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|)))) (-15 -2672 ((-1262) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2059 |#5|))) (-767))))
-((-1677 (((-112) $ $) NIL)) (-1578 (((-640 (-2 (|:| -1442 $) (|:| -3405 (-640 |#4|)))) (-640 |#4|)) NIL)) (-3319 (((-640 $) (-640 |#4|)) 110) (((-640 $) (-640 |#4|) (-112)) 111) (((-640 $) (-640 |#4|) (-112) (-112)) 109) (((-640 $) (-640 |#4|) (-112) (-112) (-112) (-112)) 112)) (-2606 (((-640 |#3|) $) NIL)) (-1706 (((-112) $) NIL)) (-3854 (((-112) $) NIL (|has| |#1| (-555)))) (-2620 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4053 ((|#4| |#4| $) NIL)) (-4335 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 $))) |#4| $) 84)) (-1642 (((-2 (|:| |under| $) (|:| -1583 $) (|:| |upper| $)) $ |#3|) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-2256 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407))) (((-3 |#4| "failed") $ |#3|) 62)) (-4239 (($) NIL T CONST)) (-1483 (((-112) $) 27 (|has| |#1| (-555)))) (-1626 (((-112) $ $) NIL (|has| |#1| (-555)))) (-4221 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1763 (((-112) $) NIL (|has| |#1| (-555)))) (-1833 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3746 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-1866 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-2131 (((-3 $ "failed") (-640 |#4|)) NIL)) (-2058 (($ (-640 |#4|)) NIL)) (-3792 (((-3 $ "failed") $) 40)) (-1719 ((|#4| |#4| $) 65)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093))))) (-1459 (($ |#4| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1972 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 78 (|has| |#1| (-555)))) (-3990 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3948 ((|#4| |#4| $) NIL)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4407))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4407))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2144 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3405 (-640 |#4|))) $) NIL)) (-2313 (((-112) |#4| $) NIL)) (-3748 (((-112) |#4| $) NIL)) (-1871 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2984 (((-2 (|:| |val| (-640 |#4|)) (|:| |towers| (-640 $))) (-640 |#4|) (-112) (-112)) 124)) (-2659 (((-640 |#4|) $) 17 (|has| $ (-6 -4407)))) (-2299 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2957 ((|#3| $) 34)) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#4|) $) 18 (|has| $ (-6 -4407)))) (-1729 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093))))) (-4345 (($ (-1 |#4| |#4|) $) 24 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#4| |#4|) $) 22)) (-2965 (((-640 |#3|) $) NIL)) (-2780 (((-112) |#3| $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-3083 (((-3 |#4| (-640 $)) |#4| |#4| $) NIL)) (-2898 (((-640 (-2 (|:| |val| |#4|) (|:| -2059 $))) |#4| |#4| $) 103)) (-1481 (((-3 |#4| "failed") $) 38)) (-3764 (((-640 $) |#4| $) 88)) (-1334 (((-3 (-112) (-640 $)) |#4| $) NIL)) (-2069 (((-640 (-2 (|:| |val| (-112)) (|:| -2059 $))) |#4| $) 98) (((-112) |#4| $) 53)) (-2550 (((-640 $) |#4| $) 107) (((-640 $) (-640 |#4|) $) NIL) (((-640 $) (-640 |#4|) (-640 $)) 108) (((-640 $) |#4| (-640 $)) NIL)) (-3211 (((-640 $) (-640 |#4|) (-112) (-112) (-112)) 119)) (-3291 (($ |#4| $) 75) (($ (-640 |#4|) $) 76) (((-640 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 74)) (-2820 (((-640 |#4|) $) NIL)) (-4197 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2715 ((|#4| |#4| $) NIL)) (-3009 (((-112) $ $) NIL)) (-2152 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-2031 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4056 ((|#4| |#4| $) NIL)) (-1694 (((-1113) $) NIL)) (-3781 (((-3 |#4| "failed") $) 36)) (-4203 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3479 (((-3 $ "failed") $ |#4|) 48)) (-3320 (($ $ |#4|) NIL) (((-640 $) |#4| $) 90) (((-640 $) |#4| (-640 $)) NIL) (((-640 $) (-640 |#4|) $) NIL) (((-640 $) (-640 |#4|) (-640 $)) 86)) (-3138 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 |#4|) (-640 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) 16)) (-3135 (($) 14)) (-4167 (((-767) $) NIL)) (-1709 (((-767) |#4| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093)))) (((-767) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) 13)) (-2220 (((-536) $) NIL (|has| |#4| (-611 (-536))))) (-1707 (($ (-640 |#4|)) 21)) (-3577 (($ $ |#3|) 43)) (-1593 (($ $ |#3|) 44)) (-1924 (($ $) NIL)) (-4192 (($ $ |#3|) NIL)) (-1693 (((-858) $) 32) (((-640 |#4|) $) 41)) (-2437 (((-767) $) NIL (|has| |#3| (-368)))) (-2540 (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2691 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) NIL)) (-2175 (((-640 $) |#4| $) 54) (((-640 $) |#4| (-640 $)) NIL) (((-640 $) (-640 |#4|) $) NIL) (((-640 $) (-640 |#4|) (-640 $)) NIL)) (-4383 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1955 (((-640 |#3|) $) NIL)) (-4279 (((-112) |#4| $) NIL)) (-3152 (((-112) |#3| $) 61)) (-1718 (((-112) $ $) NIL)) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-1139 |#1| |#2| |#3| |#4|) (-13 (-1102 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3291 ((-640 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3319 ((-640 $) (-640 |#4|) (-112) (-112))) (-15 -3319 ((-640 $) (-640 |#4|) (-112) (-112) (-112) (-112))) (-15 -3211 ((-640 $) (-640 |#4|) (-112) (-112) (-112))) (-15 -2984 ((-2 (|:| |val| (-640 |#4|)) (|:| |towers| (-640 $))) (-640 |#4|) (-112) (-112))))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|)) (T -1139))
-((-3291 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1139 *5 *6 *7 *3))) (-5 *1 (-1139 *5 *6 *7 *3)) (-4 *3 (-1059 *5 *6 *7)))) (-3319 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1139 *5 *6 *7 *8))) (-5 *1 (-1139 *5 *6 *7 *8)))) (-3319 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1139 *5 *6 *7 *8))) (-5 *1 (-1139 *5 *6 *7 *8)))) (-3211 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1139 *5 *6 *7 *8))) (-5 *1 (-1139 *5 *6 *7 *8)))) (-2984 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-640 *8)) (|:| |towers| (-640 (-1139 *5 *6 *7 *8))))) (-5 *1 (-1139 *5 *6 *7 *8)) (-5 *3 (-640 *8)))))
-(-13 (-1102 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3291 ((-640 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3319 ((-640 $) (-640 |#4|) (-112) (-112))) (-15 -3319 ((-640 $) (-640 |#4|) (-112) (-112) (-112) (-112))) (-15 -3211 ((-640 $) (-640 |#4|) (-112) (-112) (-112))) (-15 -2984 ((-2 (|:| |val| (-640 |#4|)) (|:| |towers| (-640 $))) (-640 |#4|) (-112) (-112)))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2636 ((|#1| $) 34)) (-3535 (($ (-640 |#1|)) 39)) (-2759 (((-112) $ (-767)) NIL)) (-4239 (($) NIL T CONST)) (-4325 ((|#1| |#1| $) 36)) (-3017 ((|#1| $) 32)) (-2659 (((-640 |#1|) $) 18 (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-4345 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 22)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2964 ((|#1| $) 35)) (-1812 (($ |#1| $) 37)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3755 ((|#1| $) 33)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) 31)) (-3135 (($) 38)) (-2370 (((-767) $) 29)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) 27)) (-1693 (((-858) $) 14 (|has| |#1| (-610 (-858))))) (-2233 (($ (-640 |#1|)) NIL)) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 17 (|has| |#1| (-1093)))) (-3608 (((-767) $) 30 (|has| $ (-6 -4407)))))
-(((-1140 |#1|) (-13 (-1114 |#1|) (-10 -8 (-15 -3535 ($ (-640 |#1|))))) (-1208)) (T -1140))
-((-3535 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-1140 *3)))))
-(-13 (-1114 |#1|) (-10 -8 (-15 -3535 ($ (-640 |#1|)))))
-((-1849 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1224 (-563)) |#2|) 43) ((|#2| $ (-563) |#2|) 40)) (-2018 (((-112) $) 11)) (-4345 (($ (-1 |#2| |#2|) $) 38)) (-3781 ((|#2| $) NIL) (($ $ (-767)) 16)) (-2358 (($ $ |#2|) 39)) (-2833 (((-112) $) 10)) (-2309 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1224 (-563))) 30) ((|#2| $ (-563)) 22) ((|#2| $ (-563) |#2|) NIL)) (-3245 (($ $ $) 46) (($ $ |#2|) NIL)) (-2853 (($ $ $) 32) (($ |#2| $) NIL) (($ (-640 $)) 35) (($ $ |#2|) NIL)))
-(((-1141 |#1| |#2|) (-10 -8 (-15 -2018 ((-112) |#1|)) (-15 -2833 ((-112) |#1|)) (-15 -1849 (|#2| |#1| (-563) |#2|)) (-15 -2309 (|#2| |#1| (-563) |#2|)) (-15 -2309 (|#2| |#1| (-563))) (-15 -2358 (|#1| |#1| |#2|)) (-15 -2853 (|#1| |#1| |#2|)) (-15 -2853 (|#1| (-640 |#1|))) (-15 -2309 (|#1| |#1| (-1224 (-563)))) (-15 -1849 (|#2| |#1| (-1224 (-563)) |#2|)) (-15 -1849 (|#2| |#1| "last" |#2|)) (-15 -1849 (|#1| |#1| "rest" |#1|)) (-15 -1849 (|#2| |#1| "first" |#2|)) (-15 -3245 (|#1| |#1| |#2|)) (-15 -3245 (|#1| |#1| |#1|)) (-15 -2309 (|#2| |#1| "last")) (-15 -2309 (|#1| |#1| "rest")) (-15 -3781 (|#1| |#1| (-767))) (-15 -2309 (|#2| |#1| "first")) (-15 -3781 (|#2| |#1|)) (-15 -2853 (|#1| |#2| |#1|)) (-15 -2853 (|#1| |#1| |#1|)) (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -2309 (|#2| |#1| "value")) (-15 -4345 (|#1| (-1 |#2| |#2|) |#1|))) (-1142 |#2|) (-1208)) (T -1141))
-NIL
-(-10 -8 (-15 -2018 ((-112) |#1|)) (-15 -2833 ((-112) |#1|)) (-15 -1849 (|#2| |#1| (-563) |#2|)) (-15 -2309 (|#2| |#1| (-563) |#2|)) (-15 -2309 (|#2| |#1| (-563))) (-15 -2358 (|#1| |#1| |#2|)) (-15 -2853 (|#1| |#1| |#2|)) (-15 -2853 (|#1| (-640 |#1|))) (-15 -2309 (|#1| |#1| (-1224 (-563)))) (-15 -1849 (|#2| |#1| (-1224 (-563)) |#2|)) (-15 -1849 (|#2| |#1| "last" |#2|)) (-15 -1849 (|#1| |#1| "rest" |#1|)) (-15 -1849 (|#2| |#1| "first" |#2|)) (-15 -3245 (|#1| |#1| |#2|)) (-15 -3245 (|#1| |#1| |#1|)) (-15 -2309 (|#2| |#1| "last")) (-15 -2309 (|#1| |#1| "rest")) (-15 -3781 (|#1| |#1| (-767))) (-15 -2309 (|#2| |#1| "first")) (-15 -3781 (|#2| |#1|)) (-15 -2853 (|#1| |#2| |#1|)) (-15 -2853 (|#1| |#1| |#1|)) (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -2309 (|#2| |#1| "value")) (-15 -4345 (|#1| (-1 |#2| |#2|) |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2619 ((|#1| $) 48)) (-3442 ((|#1| $) 65)) (-4302 (($ $) 67)) (-4378 (((-1262) $ (-563) (-563)) 97 (|has| $ (-6 -4408)))) (-1624 (($ $ (-563)) 52 (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) 8)) (-2936 ((|#1| $ |#1|) 39 (|has| $ (-6 -4408)))) (-3692 (($ $ $) 56 (|has| $ (-6 -4408)))) (-3889 ((|#1| $ |#1|) 54 (|has| $ (-6 -4408)))) (-1543 ((|#1| $ |#1|) 58 (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4408))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4408))) (($ $ "rest" $) 55 (|has| $ (-6 -4408))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) 117 (|has| $ (-6 -4408))) ((|#1| $ (-563) |#1|) 86 (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) 41 (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) |#1|) $) 102 (|has| $ (-6 -4407)))) (-3431 ((|#1| $) 66)) (-4239 (($) 7 T CONST)) (-3792 (($ $) 73) (($ $ (-767)) 71)) (-3813 (($ $) 99 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4407))) (($ |#1| $) 100 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4355 ((|#1| $ (-563) |#1|) 85 (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) 87)) (-2018 (((-112) $) 83)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) 50)) (-1469 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-1566 (($ (-767) |#1|) 108)) (-2581 (((-112) $ (-767)) 9)) (-2411 (((-563) $) 95 (|has| (-563) (-846)))) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-3860 (((-563) $) 94 (|has| (-563) (-846)))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-2382 (((-112) $ (-767)) 10)) (-2512 (((-640 |#1|) $) 45)) (-2194 (((-112) $) 49)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1481 ((|#1| $) 70) (($ $ (-767)) 68)) (-3396 (($ $ $ (-563)) 116) (($ |#1| $ (-563)) 115)) (-4318 (((-640 (-563)) $) 92)) (-3192 (((-112) (-563) $) 91)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3781 ((|#1| $) 76) (($ $ (-767)) 74)) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-2358 (($ $ |#1|) 96 (|has| $ (-6 -4408)))) (-2833 (((-112) $) 84)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-2105 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) 90)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1224 (-563))) 112) ((|#1| $ (-563)) 89) ((|#1| $ (-563) |#1|) 88)) (-4071 (((-563) $ $) 44)) (-2963 (($ $ (-1224 (-563))) 114) (($ $ (-563)) 113)) (-1434 (((-112) $) 46)) (-2749 (($ $) 62)) (-1322 (($ $) 59 (|has| $ (-6 -4408)))) (-1950 (((-767) $) 63)) (-3752 (($ $) 64)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-2220 (((-536) $) 98 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 107)) (-3245 (($ $ $) 61 (|has| $ (-6 -4408))) (($ $ |#1|) 60 (|has| $ (-6 -4408)))) (-2853 (($ $ $) 78) (($ |#1| $) 77) (($ (-640 $)) 110) (($ $ |#1|) 109)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) 51)) (-2962 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1848 (*1 *1 *1) (-4 *1 (-1137))) (-1838 (*1 *1 *1) (-4 *1 (-1137))) (-1827 (*1 *1 *1) (-4 *1 (-1137))) (-1815 (*1 *1 *1) (-4 *1 (-1137))) (-2578 (*1 *2 *1 *1) (-12 (-4 *1 (-1137)) (-5 *2 (-112)))) (-2558 (*1 *2 *1 *1) (-12 (-4 *1 (-1137)) (-5 *2 (-112)))) (-2537 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1137)) (-5 *3 (-563)) (-5 *2 (-112)))) (-1915 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1137)) (-5 *3 (-144)) (-5 *2 (-767)))) (-4368 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1137)) (-5 *3 (-144)) (-5 *2 (-112)))) (-1804 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1137)) (-5 *2 (-1224 (-563))))) (-4369 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-563)))) (-4369 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-563)) (-5 *3 (-141)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-144)) (-4 *1 (-1137)))) (-1792 (*1 *2 *1 *3) (-12 (-5 *3 (-144)) (-5 *2 (-640 *1)) (-4 *1 (-1137)))) (-1792 (*1 *2 *1 *3) (-12 (-5 *3 (-141)) (-5 *2 (-640 *1)) (-4 *1 (-1137)))) (-1782 (*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-144)))) (-1782 (*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-141)))) (-2034 (*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-144)))) (-2034 (*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-141)))) (-2023 (*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-144)))) (-2023 (*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-141)))) (-2308 (*1 *1 *1 *1) (-4 *1 (-1137))))
+(-13 (-19 (-144)) (-10 -8 (-15 -1848 ($ $)) (-15 -1838 ($ $)) (-15 -1827 ($ $)) (-15 -1815 ($ $)) (-15 -2578 ((-112) $ $)) (-15 -2558 ((-112) $ $)) (-15 -2537 ((-112) $ $ (-563))) (-15 -1915 ((-767) $ $ (-144))) (-15 -4368 ((-112) $ $ (-144))) (-15 -1804 ($ $ (-1224 (-563)) $)) (-15 -4369 ((-563) $ $ (-563))) (-15 -4369 ((-563) (-141) $ (-563))) (-15 -1692 ($ (-144))) (-15 -1792 ((-640 $) $ (-144))) (-15 -1792 ((-640 $) $ (-141))) (-15 -1782 ($ $ (-144))) (-15 -1782 ($ $ (-141))) (-15 -2034 ($ $ (-144))) (-15 -2034 ($ $ (-141))) (-15 -2023 ($ $ (-144))) (-15 -2023 ($ $ (-141))) (-15 -2308 ($ $ $))))
+(((-34) . T) ((-102) -4034 (|has| (-144) (-1093)) (|has| (-144) (-846))) ((-610 (-858)) -4034 (|has| (-144) (-1093)) (|has| (-144) (-846)) (|has| (-144) (-610 (-858)))) ((-151 #0=(-144)) . T) ((-611 (-536)) |has| (-144) (-611 (-536))) ((-286 #1=(-563) #0#) . T) ((-288 #1# #0#) . T) ((-309 #0#) -12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))) ((-373 #0#) . T) ((-489 #0#) . T) ((-601 #1# #0#) . T) ((-514 #0# #0#) -12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))) ((-646 #0#) . T) ((-19 #0#) . T) ((-846) |has| (-144) (-846)) ((-1093) -4034 (|has| (-144) (-1093)) (|has| (-144) (-846))) ((-1208) . T))
+((-1925 (((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-640 |#4|) (-640 |#5|) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) (-767)) 93)) (-1893 (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5|) 55) (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767)) 54)) (-2671 (((-1262) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-767)) 85)) (-1871 (((-767) (-640 |#4|) (-640 |#5|)) 27)) (-1903 (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767)) 56) (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767) (-112)) 58)) (-1913 (((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112) (-112) (-112) (-112)) 76) (((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112)) 77)) (-2219 (((-1151) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) 80)) (-1881 (((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5|) 53)) (-1860 (((-767) (-640 |#4|) (-640 |#5|)) 19)))
+(((-1138 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1860 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -1871 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -1881 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5|)) (-15 -1893 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767))) (-15 -1893 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5|)) (-15 -1903 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767) (-112))) (-15 -1903 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767))) (-15 -1903 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5|)) (-15 -1913 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -1913 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -1925 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-640 |#4|) (-640 |#5|) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) (-767))) (-15 -2219 ((-1151) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)))) (-15 -2671 ((-1262) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-767)))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|) (-1102 |#1| |#2| |#3| |#4|)) (T -1138))
+((-2671 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2058 *9)))) (-5 *4 (-767)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-1262)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))) (-2219 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2058 *8))) (-4 *7 (-1059 *4 *5 *6)) (-4 *8 (-1102 *4 *5 *6 *7)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1151)) (-5 *1 (-1138 *4 *5 *6 *7 *8)))) (-1925 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-640 *11)) (|:| |todo| (-640 (-2 (|:| |val| *3) (|:| -2058 *11)))))) (-5 *6 (-767)) (-5 *2 (-640 (-2 (|:| |val| (-640 *10)) (|:| -2058 *11)))) (-5 *3 (-640 *10)) (-5 *4 (-640 *11)) (-4 *10 (-1059 *7 *8 *9)) (-4 *11 (-1102 *7 *8 *9 *10)) (-4 *7 (-452)) (-4 *8 (-789)) (-4 *9 (-846)) (-5 *1 (-1138 *7 *8 *9 *10 *11)))) (-1913 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))) (-1913 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))) (-1903 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4)))))) (-5 *1 (-1138 *5 *6 *7 *3 *4)) (-4 *4 (-1102 *5 *6 *7 *3)))) (-1903 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *3 (-1059 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4)))))) (-5 *1 (-1138 *6 *7 *8 *3 *4)) (-4 *4 (-1102 *6 *7 *8 *3)))) (-1903 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-767)) (-5 *6 (-112)) (-4 *7 (-452)) (-4 *8 (-789)) (-4 *9 (-846)) (-4 *3 (-1059 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4)))))) (-5 *1 (-1138 *7 *8 *9 *3 *4)) (-4 *4 (-1102 *7 *8 *9 *3)))) (-1893 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4)))))) (-5 *1 (-1138 *5 *6 *7 *3 *4)) (-4 *4 (-1102 *5 *6 *7 *3)))) (-1893 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *3 (-1059 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4)))))) (-5 *1 (-1138 *6 *7 *8 *3 *4)) (-4 *4 (-1102 *6 *7 *8 *3)))) (-1881 (*1 *2 *3 *4) (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-640 *4)) (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4)))))) (-5 *1 (-1138 *5 *6 *7 *3 *4)) (-4 *4 (-1102 *5 *6 *7 *3)))) (-1871 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))) (-1860 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))))
+(-10 -7 (-15 -1860 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -1871 ((-767) (-640 |#4|) (-640 |#5|))) (-15 -1881 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5|)) (-15 -1893 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767))) (-15 -1893 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5|)) (-15 -1903 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767) (-112))) (-15 -1903 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5| (-767))) (-15 -1903 ((-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) |#4| |#5|)) (-15 -1913 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112))) (-15 -1913 ((-640 |#5|) (-640 |#4|) (-640 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -1925 ((-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-640 |#4|) (-640 |#5|) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-2 (|:| |done| (-640 |#5|)) (|:| |todo| (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))))) (-767))) (-15 -2219 ((-1151) (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|)))) (-15 -2671 ((-1262) (-640 (-2 (|:| |val| (-640 |#4|)) (|:| -2058 |#5|))) (-767))))
+((-1677 (((-112) $ $) NIL)) (-2110 (((-640 (-2 (|:| -1442 $) (|:| -3409 (-640 |#4|)))) (-640 |#4|)) NIL)) (-2119 (((-640 $) (-640 |#4|)) 110) (((-640 $) (-640 |#4|) (-112)) 111) (((-640 $) (-640 |#4|) (-112) (-112)) 109) (((-640 $) (-640 |#4|) (-112) (-112) (-112) (-112)) 112)) (-2605 (((-640 |#3|) $) NIL)) (-3508 (((-112) $) NIL)) (-3406 (((-112) $) NIL (|has| |#1| (-555)))) (-2254 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2189 ((|#4| |#4| $) NIL)) (-1798 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 $))) |#4| $) 84)) (-1640 (((-2 (|:| |under| $) (|:| -3954 $) (|:| |upper| $)) $ |#3|) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-2255 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408))) (((-3 |#4| "failed") $ |#3|) 62)) (-2569 (($) NIL T CONST)) (-3466 (((-112) $) 27 (|has| |#1| (-555)))) (-3486 (((-112) $ $) NIL (|has| |#1| (-555)))) (-3476 (((-112) $ $) NIL (|has| |#1| (-555)))) (-3496 (((-112) $) NIL (|has| |#1| (-555)))) (-2201 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3418 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-3431 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-2130 (((-3 $ "failed") (-640 |#4|)) NIL)) (-2057 (($ (-640 |#4|)) NIL)) (-3793 (((-3 $ "failed") $) 40)) (-2151 ((|#4| |#4| $) 65)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093))))) (-1459 (($ |#4| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-3443 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 78 (|has| |#1| (-555)))) (-2264 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-2131 ((|#4| |#4| $) NIL)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4408))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4408))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2284 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3409 (-640 |#4|))) $) NIL)) (-3536 (((-112) |#4| $) NIL)) (-3514 (((-112) |#4| $) NIL)) (-3548 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1936 (((-2 (|:| |val| (-640 |#4|)) (|:| |towers| (-640 $))) (-640 |#4|) (-112) (-112)) 124)) (-2658 (((-640 |#4|) $) 17 (|has| $ (-6 -4408)))) (-2274 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3354 ((|#3| $) 34)) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#4|) $) 18 (|has| $ (-6 -4408)))) (-2667 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093))))) (-4347 (($ (-1 |#4| |#4|) $) 24 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#4| |#4|) $) 22)) (-3568 (((-640 |#3|) $) NIL)) (-3553 (((-112) |#3| $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-3472 (((-3 |#4| (-640 $)) |#4| |#4| $) NIL)) (-3461 (((-640 (-2 (|:| |val| |#4|) (|:| -2058 $))) |#4| |#4| $) 103)) (-1481 (((-3 |#4| "failed") $) 38)) (-3482 (((-640 $) |#4| $) 88)) (-3503 (((-3 (-112) (-640 $)) |#4| $) NIL)) (-3492 (((-640 (-2 (|:| |val| (-112)) (|:| -2058 $))) |#4| $) 98) (((-112) |#4| $) 53)) (-3834 (((-640 $) |#4| $) 107) (((-640 $) (-640 |#4|) $) NIL) (((-640 $) (-640 |#4|) (-640 $)) 108) (((-640 $) |#4| (-640 $)) NIL)) (-1947 (((-640 $) (-640 |#4|) (-112) (-112) (-112)) 119)) (-1956 (($ |#4| $) 75) (($ (-640 |#4|) $) 76) (((-640 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 74)) (-2297 (((-640 |#4|) $) NIL)) (-2225 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2163 ((|#4| |#4| $) NIL)) (-2319 (((-112) $ $) NIL)) (-3454 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-2241 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2176 ((|#4| |#4| $) NIL)) (-1693 (((-1113) $) NIL)) (-3782 (((-3 |#4| "failed") $) 36)) (-1971 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-2089 (((-3 $ "failed") $ |#4|) 48)) (-1751 (($ $ |#4|) NIL) (((-640 $) |#4| $) 90) (((-640 $) |#4| (-640 $)) NIL) (((-640 $) (-640 |#4|) $) NIL) (((-640 $) (-640 |#4|) (-640 $)) 86)) (-1458 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 |#4|) (-640 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) 16)) (-3445 (($) 14)) (-3871 (((-767) $) NIL)) (-1708 (((-767) |#4| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093)))) (((-767) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) 13)) (-2219 (((-536) $) NIL (|has| |#4| (-611 (-536))))) (-1706 (($ (-640 |#4|)) 21)) (-3519 (($ $ |#3|) 43)) (-3542 (($ $ |#3|) 44)) (-2141 (($ $) NIL)) (-3529 (($ $ |#3|) NIL)) (-1692 (((-858) $) 32) (((-640 |#4|) $) 41)) (-3255 (((-767) $) NIL (|has| |#3| (-368)))) (-2307 (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2211 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) NIL)) (-3450 (((-640 $) |#4| $) 54) (((-640 $) |#4| (-640 $)) NIL) (((-640 $) (-640 |#4|) $) NIL) (((-640 $) (-640 |#4|) (-640 $)) NIL)) (-1471 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-2100 (((-640 |#3|) $) NIL)) (-3525 (((-112) |#4| $) NIL)) (-3772 (((-112) |#3| $) 61)) (-1718 (((-112) $ $) NIL)) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-1139 |#1| |#2| |#3| |#4|) (-13 (-1102 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1956 ((-640 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2119 ((-640 $) (-640 |#4|) (-112) (-112))) (-15 -2119 ((-640 $) (-640 |#4|) (-112) (-112) (-112) (-112))) (-15 -1947 ((-640 $) (-640 |#4|) (-112) (-112) (-112))) (-15 -1936 ((-2 (|:| |val| (-640 |#4|)) (|:| |towers| (-640 $))) (-640 |#4|) (-112) (-112))))) (-452) (-789) (-846) (-1059 |#1| |#2| |#3|)) (T -1139))
+((-1956 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1139 *5 *6 *7 *3))) (-5 *1 (-1139 *5 *6 *7 *3)) (-4 *3 (-1059 *5 *6 *7)))) (-2119 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1139 *5 *6 *7 *8))) (-5 *1 (-1139 *5 *6 *7 *8)))) (-2119 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1139 *5 *6 *7 *8))) (-5 *1 (-1139 *5 *6 *7 *8)))) (-1947 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 (-1139 *5 *6 *7 *8))) (-5 *1 (-1139 *5 *6 *7 *8)))) (-1936 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-640 *8)) (|:| |towers| (-640 (-1139 *5 *6 *7 *8))))) (-5 *1 (-1139 *5 *6 *7 *8)) (-5 *3 (-640 *8)))))
+(-13 (-1102 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1956 ((-640 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2119 ((-640 $) (-640 |#4|) (-112) (-112))) (-15 -2119 ((-640 $) (-640 |#4|) (-112) (-112) (-112) (-112))) (-15 -1947 ((-640 $) (-640 |#4|) (-112) (-112) (-112))) (-15 -1936 ((-2 (|:| |val| (-640 |#4|)) (|:| |towers| (-640 $))) (-640 |#4|) (-112) (-112)))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2635 ((|#1| $) 34)) (-3538 (($ (-640 |#1|)) 39)) (-3001 (((-112) $ (-767)) NIL)) (-2569 (($) NIL T CONST)) (-2147 ((|#1| |#1| $) 36)) (-2136 ((|#1| $) 32)) (-2658 (((-640 |#1|) $) 18 (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4347 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 22)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-2627 ((|#1| $) 35)) (-3867 (($ |#1| $) 37)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2808 ((|#1| $) 33)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) 31)) (-3445 (($) 38)) (-2369 (((-767) $) 29)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) 27)) (-1692 (((-858) $) 14 (|has| |#1| (-610 (-858))))) (-2820 (($ (-640 |#1|)) NIL)) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 17 (|has| |#1| (-1093)))) (-3610 (((-767) $) 30 (|has| $ (-6 -4408)))))
+(((-1140 |#1|) (-13 (-1114 |#1|) (-10 -8 (-15 -3538 ($ (-640 |#1|))))) (-1208)) (T -1140))
+((-3538 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-1140 *3)))))
+(-13 (-1114 |#1|) (-10 -8 (-15 -3538 ($ (-640 |#1|)))))
+((-1849 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1224 (-563)) |#2|) 43) ((|#2| $ (-563) |#2|) 40)) (-1966 (((-112) $) 11)) (-4347 (($ (-1 |#2| |#2|) $) 38)) (-3782 ((|#2| $) NIL) (($ $ (-767)) 16)) (-2221 (($ $ |#2|) 39)) (-1976 (((-112) $) 10)) (-2308 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1224 (-563))) 30) ((|#2| $ (-563)) 22) ((|#2| $ (-563) |#2|) NIL)) (-1941 (($ $ $) 46) (($ $ |#2|) NIL)) (-2857 (($ $ $) 32) (($ |#2| $) NIL) (($ (-640 $)) 35) (($ $ |#2|) NIL)))
+(((-1141 |#1| |#2|) (-10 -8 (-15 -1966 ((-112) |#1|)) (-15 -1976 ((-112) |#1|)) (-15 -1849 (|#2| |#1| (-563) |#2|)) (-15 -2308 (|#2| |#1| (-563) |#2|)) (-15 -2308 (|#2| |#1| (-563))) (-15 -2221 (|#1| |#1| |#2|)) (-15 -2857 (|#1| |#1| |#2|)) (-15 -2857 (|#1| (-640 |#1|))) (-15 -2308 (|#1| |#1| (-1224 (-563)))) (-15 -1849 (|#2| |#1| (-1224 (-563)) |#2|)) (-15 -1849 (|#2| |#1| "last" |#2|)) (-15 -1849 (|#1| |#1| "rest" |#1|)) (-15 -1849 (|#2| |#1| "first" |#2|)) (-15 -1941 (|#1| |#1| |#2|)) (-15 -1941 (|#1| |#1| |#1|)) (-15 -2308 (|#2| |#1| "last")) (-15 -2308 (|#1| |#1| "rest")) (-15 -3782 (|#1| |#1| (-767))) (-15 -2308 (|#2| |#1| "first")) (-15 -3782 (|#2| |#1|)) (-15 -2857 (|#1| |#2| |#1|)) (-15 -2857 (|#1| |#1| |#1|)) (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -2308 (|#2| |#1| "value")) (-15 -4347 (|#1| (-1 |#2| |#2|) |#1|))) (-1142 |#2|) (-1208)) (T -1141))
+NIL
+(-10 -8 (-15 -1966 ((-112) |#1|)) (-15 -1976 ((-112) |#1|)) (-15 -1849 (|#2| |#1| (-563) |#2|)) (-15 -2308 (|#2| |#1| (-563) |#2|)) (-15 -2308 (|#2| |#1| (-563))) (-15 -2221 (|#1| |#1| |#2|)) (-15 -2857 (|#1| |#1| |#2|)) (-15 -2857 (|#1| (-640 |#1|))) (-15 -2308 (|#1| |#1| (-1224 (-563)))) (-15 -1849 (|#2| |#1| (-1224 (-563)) |#2|)) (-15 -1849 (|#2| |#1| "last" |#2|)) (-15 -1849 (|#1| |#1| "rest" |#1|)) (-15 -1849 (|#2| |#1| "first" |#2|)) (-15 -1941 (|#1| |#1| |#2|)) (-15 -1941 (|#1| |#1| |#1|)) (-15 -2308 (|#2| |#1| "last")) (-15 -2308 (|#1| |#1| "rest")) (-15 -3782 (|#1| |#1| (-767))) (-15 -2308 (|#2| |#1| "first")) (-15 -3782 (|#2| |#1|)) (-15 -2857 (|#1| |#2| |#1|)) (-15 -2857 (|#1| |#1| |#1|)) (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -2308 (|#2| |#1| "value")) (-15 -4347 (|#1| (-1 |#2| |#2|) |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2618 ((|#1| $) 48)) (-3446 ((|#1| $) 65)) (-4303 (($ $) 67)) (-2208 (((-1262) $ (-563) (-563)) 97 (|has| $ (-6 -4409)))) (-1887 (($ $ (-563)) 52 (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) 8)) (-2336 ((|#1| $ |#1|) 39 (|has| $ (-6 -4409)))) (-1909 (($ $ $) 56 (|has| $ (-6 -4409)))) (-1898 ((|#1| $ |#1|) 54 (|has| $ (-6 -4409)))) (-1919 ((|#1| $ |#1|) 58 (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4409))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4409))) (($ $ "rest" $) 55 (|has| $ (-6 -4409))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) 117 (|has| $ (-6 -4409))) ((|#1| $ (-563) |#1|) 86 (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) 41 (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) |#1|) $) 102 (|has| $ (-6 -4408)))) (-3435 ((|#1| $) 66)) (-2569 (($) 7 T CONST)) (-3793 (($ $) 73) (($ $ (-767)) 71)) (-3814 (($ $) 99 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4408))) (($ |#1| $) 100 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4356 ((|#1| $ (-563) |#1|) 85 (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) 87)) (-1966 (((-112) $) 83)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) 50)) (-2358 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-1565 (($ (-767) |#1|) 108)) (-2514 (((-112) $ (-767)) 9)) (-2236 (((-563) $) 95 (|has| (-563) (-846)))) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-2251 (((-563) $) 94 (|has| (-563) (-846)))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-2481 (((-112) $ (-767)) 10)) (-2511 (((-640 |#1|) $) 45)) (-1298 (((-112) $) 49)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1481 ((|#1| $) 70) (($ $ (-767)) 68)) (-3399 (($ $ $ (-563)) 116) (($ |#1| $ (-563)) 115)) (-2272 (((-640 (-563)) $) 92)) (-2282 (((-112) (-563) $) 91)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3782 ((|#1| $) 76) (($ $ (-767)) 74)) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-2221 (($ $ |#1|) 96 (|has| $ (-6 -4409)))) (-1976 (((-112) $) 84)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) 90)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1224 (-563))) 112) ((|#1| $ (-563)) 89) ((|#1| $ (-563) |#1|) 88)) (-2379 (((-563) $ $) 44)) (-2967 (($ $ (-1224 (-563))) 114) (($ $ (-563)) 113)) (-2889 (((-112) $) 46)) (-1951 (($ $) 62)) (-1930 (($ $) 59 (|has| $ (-6 -4409)))) (-1961 (((-767) $) 63)) (-1970 (($ $) 64)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-2219 (((-536) $) 98 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 107)) (-1941 (($ $ $) 61 (|has| $ (-6 -4409))) (($ $ |#1|) 60 (|has| $ (-6 -4409)))) (-2857 (($ $ $) 78) (($ |#1| $) 77) (($ (-640 $)) 110) (($ $ |#1|) 109)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) 51)) (-2367 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-1142 |#1|) (-140) (-1208)) (T -1142))
-((-2833 (*1 *2 *1) (-12 (-4 *1 (-1142 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))) (-2018 (*1 *2 *1) (-12 (-4 *1 (-1142 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))))
-(-13 (-1245 |t#1|) (-646 |t#1|) (-10 -8 (-15 -2833 ((-112) $)) (-15 -2018 ((-112) $))))
-(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-1006 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1208) . T) ((-1245 |#1|) . T))
-((-1677 (((-112) $ $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1552 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-4378 (((-1262) $ |#1| |#1|) NIL (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#2| $ |#1| |#2|) NIL)) (-2812 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-1577 (((-3 |#2| "failed") |#1| $) NIL)) (-4239 (($) NIL T CONST)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-2705 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-3 |#2| "failed") |#1| $) NIL)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4407))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#2| $ |#1|) NIL)) (-2659 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2411 ((|#1| $) NIL (|has| |#1| (-846)))) (-2259 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-3860 ((|#1| $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4408))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1303 (((-640 |#1|) $) NIL)) (-4173 (((-112) |#1| $) NIL)) (-2964 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-1812 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-4318 (((-640 |#1|) $) NIL)) (-3192 (((-112) |#1| $) NIL)) (-1694 (((-1113) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3781 ((|#2| $) NIL (|has| |#1| (-846)))) (-4203 (((-3 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL)) (-2358 (($ $ |#2|) NIL (|has| $ (-6 -4408)))) (-3755 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-3138 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-2836 (((-640 |#2|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3890 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-1709 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093)))) (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-611 (-536))))) (-1707 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-1693 (((-858) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858)))))) (-2233 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-4383 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
+((-1976 (*1 *2 *1) (-12 (-4 *1 (-1142 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))) (-1966 (*1 *2 *1) (-12 (-4 *1 (-1142 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))))
+(-13 (-1245 |t#1|) (-646 |t#1|) (-10 -8 (-15 -1976 ((-112) $)) (-15 -1966 ((-112) $))))
+(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-1006 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1208) . T) ((-1245 |#1|) . T))
+((-1677 (((-112) $ $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1551 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-2208 (((-1262) $ |#1| |#1|) NIL (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#2| $ |#1| |#2|) NIL)) (-3678 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-1576 (((-3 |#2| "failed") |#1| $) NIL)) (-2569 (($) NIL T CONST)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-1691 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-3 |#2| "failed") |#1| $) NIL)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#2| $ |#1|) NIL)) (-2658 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-2236 ((|#1| $) NIL (|has| |#1| (-846)))) (-3523 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2251 ((|#1| $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4409))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1304 (((-640 |#1|) $) NIL)) (-2305 (((-112) |#1| $) NIL)) (-2627 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-3867 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-2272 (((-640 |#1|) $) NIL)) (-2282 (((-112) |#1| $) NIL)) (-1693 (((-1113) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3782 ((|#2| $) NIL (|has| |#1| (-846)))) (-1971 (((-3 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL)) (-2221 (($ $ |#2|) NIL (|has| $ (-6 -4409)))) (-2808 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-1458 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2295 (((-640 |#2|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3863 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1708 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093)))) (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-611 (-536))))) (-1706 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1692 (((-858) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858)))))) (-2820 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1471 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
(((-1143 |#1| |#2| |#3|) (-1184 |#1| |#2|) (-1093) (-1093) |#2|) (T -1143))
NIL
(-1184 |#1| |#2|)
-((-1677 (((-112) $ $) 7)) (-2408 (((-3 $ "failed") $) 13)) (-3573 (((-1151) $) 9)) (-2523 (($) 14 T CONST)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11)) (-1718 (((-112) $ $) 6)))
+((-1677 (((-112) $ $) 7)) (-1983 (((-3 $ "failed") $) 13)) (-3854 (((-1151) $) 9)) (-2522 (($) 14 T CONST)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11)) (-1718 (((-112) $ $) 6)))
(((-1144) (-140)) (T -1144))
-((-2523 (*1 *1) (-4 *1 (-1144))) (-2408 (*1 *1 *1) (|partial| -4 *1 (-1144))))
-(-13 (-1093) (-10 -8 (-15 -2523 ($) -2669) (-15 -2408 ((-3 $ "failed") $))))
+((-2522 (*1 *1) (-4 *1 (-1144))) (-1983 (*1 *1 *1) (|partial| -4 *1 (-1144))))
+(-13 (-1093) (-10 -8 (-15 -2522 ($) -2668) (-15 -1983 ((-3 $ "failed") $))))
(((-102) . T) ((-610 (-858)) . T) ((-1093) . T))
-((-1622 (((-1149 |#1|) (-1149 |#1|)) 17)) (-3462 (((-1149 |#1|) (-1149 |#1|)) 13)) (-3282 (((-1149 |#1|) (-1149 |#1|) (-563) (-563)) 20)) (-2028 (((-1149 |#1|) (-1149 |#1|)) 15)))
-(((-1145 |#1|) (-10 -7 (-15 -3462 ((-1149 |#1|) (-1149 |#1|))) (-15 -2028 ((-1149 |#1|) (-1149 |#1|))) (-15 -1622 ((-1149 |#1|) (-1149 |#1|))) (-15 -3282 ((-1149 |#1|) (-1149 |#1|) (-563) (-563)))) (-13 (-555) (-147))) (T -1145))
-((-3282 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-13 (-555) (-147))) (-5 *1 (-1145 *4)))) (-1622 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-13 (-555) (-147))) (-5 *1 (-1145 *3)))) (-2028 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-13 (-555) (-147))) (-5 *1 (-1145 *3)))) (-3462 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-13 (-555) (-147))) (-5 *1 (-1145 *3)))))
-(-10 -7 (-15 -3462 ((-1149 |#1|) (-1149 |#1|))) (-15 -2028 ((-1149 |#1|) (-1149 |#1|))) (-15 -1622 ((-1149 |#1|) (-1149 |#1|))) (-15 -3282 ((-1149 |#1|) (-1149 |#1|) (-563) (-563))))
-((-2853 (((-1149 |#1|) (-1149 (-1149 |#1|))) 15)))
-(((-1146 |#1|) (-10 -7 (-15 -2853 ((-1149 |#1|) (-1149 (-1149 |#1|))))) (-1208)) (T -1146))
-((-2853 (*1 *2 *3) (-12 (-5 *3 (-1149 (-1149 *4))) (-5 *2 (-1149 *4)) (-5 *1 (-1146 *4)) (-4 *4 (-1208)))))
-(-10 -7 (-15 -2853 ((-1149 |#1|) (-1149 (-1149 |#1|)))))
-((-1567 (((-1149 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1149 |#1|)) 25)) (-2444 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1149 |#1|)) 26)) (-2240 (((-1149 |#2|) (-1 |#2| |#1|) (-1149 |#1|)) 16)))
-(((-1147 |#1| |#2|) (-10 -7 (-15 -2240 ((-1149 |#2|) (-1 |#2| |#1|) (-1149 |#1|))) (-15 -1567 ((-1149 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1149 |#1|))) (-15 -2444 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1149 |#1|)))) (-1208) (-1208)) (T -1147))
-((-2444 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1149 *5)) (-4 *5 (-1208)) (-4 *2 (-1208)) (-5 *1 (-1147 *5 *2)))) (-1567 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1149 *6)) (-4 *6 (-1208)) (-4 *3 (-1208)) (-5 *2 (-1149 *3)) (-5 *1 (-1147 *6 *3)))) (-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1149 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-1149 *6)) (-5 *1 (-1147 *5 *6)))))
-(-10 -7 (-15 -2240 ((-1149 |#2|) (-1 |#2| |#1|) (-1149 |#1|))) (-15 -1567 ((-1149 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1149 |#1|))) (-15 -2444 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1149 |#1|))))
-((-2240 (((-1149 |#3|) (-1 |#3| |#1| |#2|) (-1149 |#1|) (-1149 |#2|)) 21)))
-(((-1148 |#1| |#2| |#3|) (-10 -7 (-15 -2240 ((-1149 |#3|) (-1 |#3| |#1| |#2|) (-1149 |#1|) (-1149 |#2|)))) (-1208) (-1208) (-1208)) (T -1148))
-((-2240 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1149 *6)) (-5 *5 (-1149 *7)) (-4 *6 (-1208)) (-4 *7 (-1208)) (-4 *8 (-1208)) (-5 *2 (-1149 *8)) (-5 *1 (-1148 *6 *7 *8)))))
-(-10 -7 (-15 -2240 ((-1149 |#3|) (-1 |#3| |#1| |#2|) (-1149 |#1|) (-1149 |#2|))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2619 ((|#1| $) NIL)) (-3442 ((|#1| $) NIL)) (-4302 (($ $) 51)) (-4378 (((-1262) $ (-563) (-563)) 76 (|has| $ (-6 -4408)))) (-1624 (($ $ (-563)) 110 (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) NIL)) (-3821 (((-858) $) 40 (|has| |#1| (-1093)))) (-3007 (((-112)) 39 (|has| |#1| (-1093)))) (-2936 ((|#1| $ |#1|) NIL (|has| $ (-6 -4408)))) (-3692 (($ $ $) 98 (|has| $ (-6 -4408))) (($ $ (-563) $) 122)) (-3889 ((|#1| $ |#1|) 107 (|has| $ (-6 -4408)))) (-1543 ((|#1| $ |#1|) 102 (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4408))) ((|#1| $ "first" |#1|) 104 (|has| $ (-6 -4408))) (($ $ "rest" $) 106 (|has| $ (-6 -4408))) ((|#1| $ "last" |#1|) 109 (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) 89 (|has| $ (-6 -4408))) ((|#1| $ (-563) |#1|) 55 (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) NIL (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) |#1|) $) 58)) (-3431 ((|#1| $) NIL)) (-4239 (($) NIL T CONST)) (-2310 (($ $) 14)) (-3792 (($ $) 28) (($ $ (-767)) 88)) (-3925 (((-112) (-640 |#1|) $) 116 (|has| |#1| (-1093)))) (-3791 (($ (-640 |#1|)) 112)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) 57)) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-4355 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) NIL)) (-2018 (((-112) $) NIL)) (-2659 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1555 (((-1262) (-563) $) 121 (|has| |#1| (-1093)))) (-2808 (((-767) $) 118)) (-2071 (((-640 $) $) NIL)) (-1469 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1566 (($ (-767) |#1|) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) NIL (|has| (-563) (-846)))) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-4345 (($ (-1 |#1| |#1|) $) 73 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 63) (($ (-1 |#1| |#1| |#1|) $ $) 67)) (-2382 (((-112) $ (-767)) NIL)) (-2512 (((-640 |#1|) $) NIL)) (-2194 (((-112) $) NIL)) (-1785 (($ $) 90)) (-3858 (((-112) $) 13)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1481 ((|#1| $) NIL) (($ $ (-767)) NIL)) (-3396 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) 74)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2177 (($ (-1 |#1|)) 124) (($ (-1 |#1| |#1|) |#1|) 125)) (-2548 ((|#1| $) 10)) (-3781 ((|#1| $) 27) (($ $ (-767)) 49)) (-3361 (((-2 (|:| |cycle?| (-112)) (|:| -3246 (-767)) (|:| |period| (-767))) (-767) $) 24)) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2225 (($ (-1 (-112) |#1|) $) 126)) (-2242 (($ (-1 (-112) |#1|) $) 127)) (-2358 (($ $ |#1|) 68 (|has| $ (-6 -4408)))) (-3320 (($ $ (-563)) 31)) (-2833 (((-112) $) 72)) (-4122 (((-112) $) 12)) (-3063 (((-112) $) 117)) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 20)) (-2105 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) NIL)) (-3756 (((-112) $) 15)) (-3135 (($) 44)) (-2309 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1224 (-563))) NIL) ((|#1| $ (-563)) 54) ((|#1| $ (-563) |#1|) NIL)) (-4071 (((-563) $ $) 48)) (-2963 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-1429 (($ (-1 $)) 47)) (-1434 (((-112) $) 69)) (-2749 (($ $) 70)) (-1322 (($ $) 99 (|has| $ (-6 -4408)))) (-1950 (((-767) $) NIL)) (-3752 (($ $) NIL)) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) 43)) (-2220 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 53)) (-4063 (($ |#1| $) 97)) (-3245 (($ $ $) 100 (|has| $ (-6 -4408))) (($ $ |#1|) 101 (|has| $ (-6 -4408)))) (-2853 (($ $ $) 78) (($ |#1| $) 45) (($ (-640 $)) 83) (($ $ |#1|) 77)) (-1741 (($ $) 50)) (-1693 (($ (-640 |#1|)) 111) (((-858) $) 41 (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) NIL)) (-2962 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 114 (|has| |#1| (-1093)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-1149 |#1|) (-13 (-669 |#1|) (-613 (-640 |#1|)) (-10 -8 (-6 -4408) (-15 -3791 ($ (-640 |#1|))) (IF (|has| |#1| (-1093)) (-15 -3925 ((-112) (-640 |#1|) $)) |%noBranch|) (-15 -3361 ((-2 (|:| |cycle?| (-112)) (|:| -3246 (-767)) (|:| |period| (-767))) (-767) $)) (-15 -1429 ($ (-1 $))) (-15 -4063 ($ |#1| $)) (IF (|has| |#1| (-1093)) (PROGN (-15 -1555 ((-1262) (-563) $)) (-15 -3821 ((-858) $)) (-15 -3007 ((-112)))) |%noBranch|) (-15 -3692 ($ $ (-563) $)) (-15 -2177 ($ (-1 |#1|))) (-15 -2177 ($ (-1 |#1| |#1|) |#1|)) (-15 -2225 ($ (-1 (-112) |#1|) $)) (-15 -2242 ($ (-1 (-112) |#1|) $)))) (-1208)) (T -1149))
-((-3791 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-1149 *3)))) (-3925 (*1 *2 *3 *1) (-12 (-5 *3 (-640 *4)) (-4 *4 (-1093)) (-4 *4 (-1208)) (-5 *2 (-112)) (-5 *1 (-1149 *4)))) (-3361 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-112)) (|:| -3246 (-767)) (|:| |period| (-767)))) (-5 *1 (-1149 *4)) (-4 *4 (-1208)) (-5 *3 (-767)))) (-1429 (*1 *1 *2) (-12 (-5 *2 (-1 (-1149 *3))) (-5 *1 (-1149 *3)) (-4 *3 (-1208)))) (-4063 (*1 *1 *2 *1) (-12 (-5 *1 (-1149 *2)) (-4 *2 (-1208)))) (-1555 (*1 *2 *3 *1) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-1149 *4)) (-4 *4 (-1093)) (-4 *4 (-1208)))) (-3821 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-1149 *3)) (-4 *3 (-1093)) (-4 *3 (-1208)))) (-3007 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3)) (-4 *3 (-1093)) (-4 *3 (-1208)))) (-3692 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1149 *3)) (-4 *3 (-1208)))) (-2177 (*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1208)) (-5 *1 (-1149 *3)))) (-2177 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1208)) (-5 *1 (-1149 *3)))) (-2225 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1208)) (-5 *1 (-1149 *3)))) (-2242 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1208)) (-5 *1 (-1149 *3)))))
-(-13 (-669 |#1|) (-613 (-640 |#1|)) (-10 -8 (-6 -4408) (-15 -3791 ($ (-640 |#1|))) (IF (|has| |#1| (-1093)) (-15 -3925 ((-112) (-640 |#1|) $)) |%noBranch|) (-15 -3361 ((-2 (|:| |cycle?| (-112)) (|:| -3246 (-767)) (|:| |period| (-767))) (-767) $)) (-15 -1429 ($ (-1 $))) (-15 -4063 ($ |#1| $)) (IF (|has| |#1| (-1093)) (PROGN (-15 -1555 ((-1262) (-563) $)) (-15 -3821 ((-858) $)) (-15 -3007 ((-112)))) |%noBranch|) (-15 -3692 ($ $ (-563) $)) (-15 -2177 ($ (-1 |#1|))) (-15 -2177 ($ (-1 |#1| |#1|) |#1|)) (-15 -2225 ($ (-1 (-112) |#1|) $)) (-15 -2242 ($ (-1 (-112) |#1|) $))))
-((-1677 (((-112) $ $) 19)) (-3700 (($ $) 120)) (-3697 (($ $) 121)) (-1967 (($ $ (-144)) 108) (($ $ (-141)) 107)) (-4378 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4408)))) (-2559 (((-112) $ $) 118)) (-2537 (((-112) $ $ (-563)) 117)) (-3736 (($ (-563)) 127)) (-2335 (((-640 $) $ (-144)) 110) (((-640 $) $ (-141)) 109)) (-3523 (((-112) (-1 (-112) (-144) (-144)) $) 98) (((-112) $) 92 (|has| (-144) (-846)))) (-2770 (($ (-1 (-112) (-144) (-144)) $) 89 (|has| $ (-6 -4408))) (($ $) 88 (-12 (|has| (-144) (-846)) (|has| $ (-6 -4408))))) (-1642 (($ (-1 (-112) (-144) (-144)) $) 99) (($ $) 93 (|has| (-144) (-846)))) (-2759 (((-112) $ (-767)) 8)) (-1849 (((-144) $ (-563) (-144)) 52 (|has| $ (-6 -4408))) (((-144) $ (-1224 (-563)) (-144)) 58 (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) (-144)) $) 75 (|has| $ (-6 -4407)))) (-4239 (($) 7 T CONST)) (-2025 (($ $ (-144)) 104) (($ $ (-141)) 103)) (-2907 (($ $) 90 (|has| $ (-6 -4408)))) (-4382 (($ $) 100)) (-1938 (($ $ (-1224 (-563)) $) 114)) (-3813 (($ $) 78 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ (-144) $) 77 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) (-144)) $) 74 (|has| $ (-6 -4407)))) (-2444 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) 76 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4407)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) 73 (|has| $ (-6 -4407))) (((-144) (-1 (-144) (-144) (-144)) $) 72 (|has| $ (-6 -4407)))) (-4355 (((-144) $ (-563) (-144)) 53 (|has| $ (-6 -4408)))) (-4293 (((-144) $ (-563)) 51)) (-2580 (((-112) $ $) 119)) (-4368 (((-563) (-1 (-112) (-144)) $) 97) (((-563) (-144) $) 96 (|has| (-144) (-1093))) (((-563) (-144) $ (-563)) 95 (|has| (-144) (-1093))) (((-563) $ $ (-563)) 113) (((-563) (-141) $ (-563)) 112)) (-2659 (((-640 (-144)) $) 30 (|has| $ (-6 -4407)))) (-1566 (($ (-767) (-144)) 69)) (-2581 (((-112) $ (-767)) 9)) (-2411 (((-563) $) 43 (|has| (-563) (-846)))) (-3084 (($ $ $) 87 (|has| (-144) (-846)))) (-3164 (($ (-1 (-112) (-144) (-144)) $ $) 101) (($ $ $) 94 (|has| (-144) (-846)))) (-2259 (((-640 (-144)) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) (-144) $) 27 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4407))))) (-3860 (((-563) $) 44 (|has| (-563) (-846)))) (-1777 (($ $ $) 86 (|has| (-144) (-846)))) (-4367 (((-112) $ $ (-144)) 115)) (-1916 (((-767) $ $ (-144)) 116)) (-4345 (($ (-1 (-144) (-144)) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-144) (-144)) $) 35) (($ (-1 (-144) (-144) (-144)) $ $) 64)) (-2360 (($ $) 122)) (-1652 (($ $) 123)) (-2382 (((-112) $ (-767)) 10)) (-2036 (($ $ (-144)) 106) (($ $ (-141)) 105)) (-3573 (((-1151) $) 22)) (-3396 (($ (-144) $ (-563)) 60) (($ $ $ (-563)) 59)) (-4318 (((-640 (-563)) $) 46)) (-3192 (((-112) (-563) $) 47)) (-1694 (((-1113) $) 21)) (-3781 (((-144) $) 42 (|has| (-563) (-846)))) (-4203 (((-3 (-144) "failed") (-1 (-112) (-144)) $) 71)) (-2358 (($ $ (-144)) 41 (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) (-144)) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-144)))) 26 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-294 (-144))) 25 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-144) (-144)) 24 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-640 (-144)) (-640 (-144))) 23 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))))) (-2026 (((-112) $ $) 14)) (-2105 (((-112) (-144) $) 45 (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093))))) (-2836 (((-640 (-144)) $) 48)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 (((-144) $ (-563) (-144)) 50) (((-144) $ (-563)) 49) (($ $ (-1224 (-563))) 63) (($ $ $) 102)) (-2963 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-1709 (((-767) (-1 (-112) (-144)) $) 31 (|has| $ (-6 -4407))) (((-767) (-144) $) 28 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4407))))) (-3076 (($ $ $ (-563)) 91 (|has| $ (-6 -4408)))) (-1872 (($ $) 13)) (-2220 (((-536) $) 79 (|has| (-144) (-611 (-536))))) (-1707 (($ (-640 (-144))) 70)) (-2853 (($ $ (-144)) 68) (($ (-144) $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1693 (($ (-144)) 111) (((-858) $) 18)) (-4383 (((-112) (-1 (-112) (-144)) $) 33 (|has| $ (-6 -4407)))) (-3741 (((-1151) $) 131) (((-1151) $ (-112)) 130) (((-1262) (-818) $) 129) (((-1262) (-818) $ (-112)) 128)) (-1778 (((-112) $ $) 84 (|has| (-144) (-846)))) (-1756 (((-112) $ $) 83 (|has| (-144) (-846)))) (-1718 (((-112) $ $) 20)) (-1768 (((-112) $ $) 85 (|has| (-144) (-846)))) (-1744 (((-112) $ $) 82 (|has| (-144) (-846)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-2011 (((-1149 |#1|) (-1149 |#1|)) 17)) (-1992 (((-1149 |#1|) (-1149 |#1|)) 13)) (-2019 (((-1149 |#1|) (-1149 |#1|) (-563) (-563)) 20)) (-2002 (((-1149 |#1|) (-1149 |#1|)) 15)))
+(((-1145 |#1|) (-10 -7 (-15 -1992 ((-1149 |#1|) (-1149 |#1|))) (-15 -2002 ((-1149 |#1|) (-1149 |#1|))) (-15 -2011 ((-1149 |#1|) (-1149 |#1|))) (-15 -2019 ((-1149 |#1|) (-1149 |#1|) (-563) (-563)))) (-13 (-555) (-147))) (T -1145))
+((-2019 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-13 (-555) (-147))) (-5 *1 (-1145 *4)))) (-2011 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-13 (-555) (-147))) (-5 *1 (-1145 *3)))) (-2002 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-13 (-555) (-147))) (-5 *1 (-1145 *3)))) (-1992 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-13 (-555) (-147))) (-5 *1 (-1145 *3)))))
+(-10 -7 (-15 -1992 ((-1149 |#1|) (-1149 |#1|))) (-15 -2002 ((-1149 |#1|) (-1149 |#1|))) (-15 -2011 ((-1149 |#1|) (-1149 |#1|))) (-15 -2019 ((-1149 |#1|) (-1149 |#1|) (-563) (-563))))
+((-2857 (((-1149 |#1|) (-1149 (-1149 |#1|))) 15)))
+(((-1146 |#1|) (-10 -7 (-15 -2857 ((-1149 |#1|) (-1149 (-1149 |#1|))))) (-1208)) (T -1146))
+((-2857 (*1 *2 *3) (-12 (-5 *3 (-1149 (-1149 *4))) (-5 *2 (-1149 *4)) (-5 *1 (-1146 *4)) (-4 *4 (-1208)))))
+(-10 -7 (-15 -2857 ((-1149 |#1|) (-1149 (-1149 |#1|)))))
+((-4132 (((-1149 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1149 |#1|)) 25)) (-2444 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1149 |#1|)) 26)) (-2238 (((-1149 |#2|) (-1 |#2| |#1|) (-1149 |#1|)) 16)))
+(((-1147 |#1| |#2|) (-10 -7 (-15 -2238 ((-1149 |#2|) (-1 |#2| |#1|) (-1149 |#1|))) (-15 -4132 ((-1149 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1149 |#1|))) (-15 -2444 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1149 |#1|)))) (-1208) (-1208)) (T -1147))
+((-2444 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1149 *5)) (-4 *5 (-1208)) (-4 *2 (-1208)) (-5 *1 (-1147 *5 *2)))) (-4132 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1149 *6)) (-4 *6 (-1208)) (-4 *3 (-1208)) (-5 *2 (-1149 *3)) (-5 *1 (-1147 *6 *3)))) (-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1149 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-1149 *6)) (-5 *1 (-1147 *5 *6)))))
+(-10 -7 (-15 -2238 ((-1149 |#2|) (-1 |#2| |#1|) (-1149 |#1|))) (-15 -4132 ((-1149 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1149 |#1|))) (-15 -2444 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1149 |#1|))))
+((-2238 (((-1149 |#3|) (-1 |#3| |#1| |#2|) (-1149 |#1|) (-1149 |#2|)) 21)))
+(((-1148 |#1| |#2| |#3|) (-10 -7 (-15 -2238 ((-1149 |#3|) (-1 |#3| |#1| |#2|) (-1149 |#1|) (-1149 |#2|)))) (-1208) (-1208) (-1208)) (T -1148))
+((-2238 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1149 *6)) (-5 *5 (-1149 *7)) (-4 *6 (-1208)) (-4 *7 (-1208)) (-4 *8 (-1208)) (-5 *2 (-1149 *8)) (-5 *1 (-1148 *6 *7 *8)))))
+(-10 -7 (-15 -2238 ((-1149 |#3|) (-1 |#3| |#1| |#2|) (-1149 |#1|) (-1149 |#2|))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2618 ((|#1| $) NIL)) (-3446 ((|#1| $) NIL)) (-4303 (($ $) 51)) (-2208 (((-1262) $ (-563) (-563)) 76 (|has| $ (-6 -4409)))) (-1887 (($ $ (-563)) 110 (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) NIL)) (-2040 (((-858) $) 40 (|has| |#1| (-1093)))) (-2030 (((-112)) 39 (|has| |#1| (-1093)))) (-2336 ((|#1| $ |#1|) NIL (|has| $ (-6 -4409)))) (-1909 (($ $ $) 98 (|has| $ (-6 -4409))) (($ $ (-563) $) 122)) (-1898 ((|#1| $ |#1|) 107 (|has| $ (-6 -4409)))) (-1919 ((|#1| $ |#1|) 102 (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4409))) ((|#1| $ "first" |#1|) 104 (|has| $ (-6 -4409))) (($ $ "rest" $) 106 (|has| $ (-6 -4409))) ((|#1| $ "last" |#1|) 109 (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) 89 (|has| $ (-6 -4409))) ((|#1| $ (-563) |#1|) 55 (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) NIL (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) |#1|) $) 58)) (-3435 ((|#1| $) NIL)) (-2569 (($) NIL T CONST)) (-1796 (($ $) 14)) (-3793 (($ $) 28) (($ $ (-767)) 88)) (-3932 (((-112) (-640 |#1|) $) 116 (|has| |#1| (-1093)))) (-3941 (($ (-640 |#1|)) 112)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) 57)) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4356 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) NIL)) (-1966 (((-112) $) NIL)) (-2658 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-1554 (((-1262) (-563) $) 121 (|has| |#1| (-1093)))) (-1785 (((-767) $) 118)) (-2390 (((-640 $) $) NIL)) (-2358 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1565 (($ (-767) |#1|) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) NIL (|has| (-563) (-846)))) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-4347 (($ (-1 |#1| |#1|) $) 73 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 63) (($ (-1 |#1| |#1| |#1|) $ $) 67)) (-2481 (((-112) $ (-767)) NIL)) (-2511 (((-640 |#1|) $) NIL)) (-1298 (((-112) $) NIL)) (-1819 (($ $) 90)) (-1830 (((-112) $) 13)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1481 ((|#1| $) NIL) (($ $ (-767)) NIL)) (-3399 (($ $ $ (-563)) NIL) (($ |#1| $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) 74)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2175 (($ (-1 |#1|)) 124) (($ (-1 |#1| |#1|) |#1|) 125)) (-1807 ((|#1| $) 10)) (-3782 ((|#1| $) 27) (($ $ (-767)) 49)) (-3921 (((-2 (|:| |cycle?| (-112)) (|:| -3250 (-767)) (|:| |period| (-767))) (-767) $) 24)) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2223 (($ (-1 (-112) |#1|) $) 126)) (-2240 (($ (-1 (-112) |#1|) $) 127)) (-2221 (($ $ |#1|) 68 (|has| $ (-6 -4409)))) (-1751 (($ $ (-563)) 31)) (-1976 (((-112) $) 72)) (-1841 (((-112) $) 12)) (-1852 (((-112) $) 117)) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 20)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) NIL)) (-1665 (((-112) $) 15)) (-3445 (($) 44)) (-2308 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1224 (-563))) NIL) ((|#1| $ (-563)) 54) ((|#1| $ (-563) |#1|) NIL)) (-2379 (((-563) $ $) 48)) (-2967 (($ $ (-1224 (-563))) NIL) (($ $ (-563)) NIL)) (-3910 (($ (-1 $)) 47)) (-2889 (((-112) $) 69)) (-1951 (($ $) 70)) (-1930 (($ $) 99 (|has| $ (-6 -4409)))) (-1961 (((-767) $) NIL)) (-1970 (($ $) NIL)) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) 43)) (-2219 (((-536) $) NIL (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 53)) (-4065 (($ |#1| $) 97)) (-1941 (($ $ $) 100 (|has| $ (-6 -4409))) (($ $ |#1|) 101 (|has| $ (-6 -4409)))) (-2857 (($ $ $) 78) (($ |#1| $) 45) (($ (-640 $)) 83) (($ $ |#1|) 77)) (-3369 (($ $) 50)) (-1692 (($ (-640 |#1|)) 111) (((-858) $) 41 (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) NIL)) (-2367 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 114 (|has| |#1| (-1093)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-1149 |#1|) (-13 (-669 |#1|) (-613 (-640 |#1|)) (-10 -8 (-6 -4409) (-15 -3941 ($ (-640 |#1|))) (IF (|has| |#1| (-1093)) (-15 -3932 ((-112) (-640 |#1|) $)) |%noBranch|) (-15 -3921 ((-2 (|:| |cycle?| (-112)) (|:| -3250 (-767)) (|:| |period| (-767))) (-767) $)) (-15 -3910 ($ (-1 $))) (-15 -4065 ($ |#1| $)) (IF (|has| |#1| (-1093)) (PROGN (-15 -1554 ((-1262) (-563) $)) (-15 -2040 ((-858) $)) (-15 -2030 ((-112)))) |%noBranch|) (-15 -1909 ($ $ (-563) $)) (-15 -2175 ($ (-1 |#1|))) (-15 -2175 ($ (-1 |#1| |#1|) |#1|)) (-15 -2223 ($ (-1 (-112) |#1|) $)) (-15 -2240 ($ (-1 (-112) |#1|) $)))) (-1208)) (T -1149))
+((-3941 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-1149 *3)))) (-3932 (*1 *2 *3 *1) (-12 (-5 *3 (-640 *4)) (-4 *4 (-1093)) (-4 *4 (-1208)) (-5 *2 (-112)) (-5 *1 (-1149 *4)))) (-3921 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-112)) (|:| -3250 (-767)) (|:| |period| (-767)))) (-5 *1 (-1149 *4)) (-4 *4 (-1208)) (-5 *3 (-767)))) (-3910 (*1 *1 *2) (-12 (-5 *2 (-1 (-1149 *3))) (-5 *1 (-1149 *3)) (-4 *3 (-1208)))) (-4065 (*1 *1 *2 *1) (-12 (-5 *1 (-1149 *2)) (-4 *2 (-1208)))) (-1554 (*1 *2 *3 *1) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-1149 *4)) (-4 *4 (-1093)) (-4 *4 (-1208)))) (-2040 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-1149 *3)) (-4 *3 (-1093)) (-4 *3 (-1208)))) (-2030 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3)) (-4 *3 (-1093)) (-4 *3 (-1208)))) (-1909 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1149 *3)) (-4 *3 (-1208)))) (-2175 (*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1208)) (-5 *1 (-1149 *3)))) (-2175 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1208)) (-5 *1 (-1149 *3)))) (-2223 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1208)) (-5 *1 (-1149 *3)))) (-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1208)) (-5 *1 (-1149 *3)))))
+(-13 (-669 |#1|) (-613 (-640 |#1|)) (-10 -8 (-6 -4409) (-15 -3941 ($ (-640 |#1|))) (IF (|has| |#1| (-1093)) (-15 -3932 ((-112) (-640 |#1|) $)) |%noBranch|) (-15 -3921 ((-2 (|:| |cycle?| (-112)) (|:| -3250 (-767)) (|:| |period| (-767))) (-767) $)) (-15 -3910 ($ (-1 $))) (-15 -4065 ($ |#1| $)) (IF (|has| |#1| (-1093)) (PROGN (-15 -1554 ((-1262) (-563) $)) (-15 -2040 ((-858) $)) (-15 -2030 ((-112)))) |%noBranch|) (-15 -1909 ($ $ (-563) $)) (-15 -2175 ($ (-1 |#1|))) (-15 -2175 ($ (-1 |#1| |#1|) |#1|)) (-15 -2223 ($ (-1 (-112) |#1|) $)) (-15 -2240 ($ (-1 (-112) |#1|) $))))
+((-1677 (((-112) $ $) 19)) (-1815 (($ $) 120)) (-1827 (($ $) 121)) (-1782 (($ $ (-144)) 108) (($ $ (-141)) 107)) (-2208 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4409)))) (-2558 (((-112) $ $) 118)) (-2537 (((-112) $ $ (-563)) 117)) (-3737 (($ (-563)) 127)) (-1792 (((-640 $) $ (-144)) 110) (((-640 $) $ (-141)) 109)) (-4073 (((-112) (-1 (-112) (-144) (-144)) $) 98) (((-112) $) 92 (|has| (-144) (-846)))) (-4052 (($ (-1 (-112) (-144) (-144)) $) 89 (|has| $ (-6 -4409))) (($ $) 88 (-12 (|has| (-144) (-846)) (|has| $ (-6 -4409))))) (-1640 (($ (-1 (-112) (-144) (-144)) $) 99) (($ $) 93 (|has| (-144) (-846)))) (-3001 (((-112) $ (-767)) 8)) (-1849 (((-144) $ (-563) (-144)) 52 (|has| $ (-6 -4409))) (((-144) $ (-1224 (-563)) (-144)) 58 (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) (-144)) $) 75 (|has| $ (-6 -4408)))) (-2569 (($) 7 T CONST)) (-2023 (($ $ (-144)) 104) (($ $ (-141)) 103)) (-1574 (($ $) 90 (|has| $ (-6 -4409)))) (-4383 (($ $) 100)) (-1804 (($ $ (-1224 (-563)) $) 114)) (-3814 (($ $) 78 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ (-144) $) 77 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) (-144)) $) 74 (|has| $ (-6 -4408)))) (-2444 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) 76 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4408)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) 73 (|has| $ (-6 -4408))) (((-144) (-1 (-144) (-144) (-144)) $) 72 (|has| $ (-6 -4408)))) (-4356 (((-144) $ (-563) (-144)) 53 (|has| $ (-6 -4409)))) (-4293 (((-144) $ (-563)) 51)) (-2578 (((-112) $ $) 119)) (-4369 (((-563) (-1 (-112) (-144)) $) 97) (((-563) (-144) $) 96 (|has| (-144) (-1093))) (((-563) (-144) $ (-563)) 95 (|has| (-144) (-1093))) (((-563) $ $ (-563)) 113) (((-563) (-141) $ (-563)) 112)) (-2658 (((-640 (-144)) $) 30 (|has| $ (-6 -4408)))) (-1565 (($ (-767) (-144)) 69)) (-2514 (((-112) $ (-767)) 9)) (-2236 (((-563) $) 43 (|has| (-563) (-846)))) (-3088 (($ $ $) 87 (|has| (-144) (-846)))) (-4300 (($ (-1 (-112) (-144) (-144)) $ $) 101) (($ $ $) 94 (|has| (-144) (-846)))) (-3523 (((-640 (-144)) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) (-144) $) 27 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4408))))) (-2251 (((-563) $) 44 (|has| (-563) (-846)))) (-1776 (($ $ $) 86 (|has| (-144) (-846)))) (-4368 (((-112) $ $ (-144)) 115)) (-1915 (((-767) $ $ (-144)) 116)) (-4347 (($ (-1 (-144) (-144)) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-144) (-144)) $) 35) (($ (-1 (-144) (-144) (-144)) $ $) 64)) (-1838 (($ $) 122)) (-1848 (($ $) 123)) (-2481 (((-112) $ (-767)) 10)) (-2034 (($ $ (-144)) 106) (($ $ (-141)) 105)) (-3854 (((-1151) $) 22)) (-3399 (($ (-144) $ (-563)) 60) (($ $ $ (-563)) 59)) (-2272 (((-640 (-563)) $) 46)) (-2282 (((-112) (-563) $) 47)) (-1693 (((-1113) $) 21)) (-3782 (((-144) $) 42 (|has| (-563) (-846)))) (-1971 (((-3 (-144) "failed") (-1 (-112) (-144)) $) 71)) (-2221 (($ $ (-144)) 41 (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) (-144)) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-144)))) 26 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-294 (-144))) 25 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-144) (-144)) 24 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-640 (-144)) (-640 (-144))) 23 (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))))) (-2941 (((-112) $ $) 14)) (-2262 (((-112) (-144) $) 45 (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093))))) (-2295 (((-640 (-144)) $) 48)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 (((-144) $ (-563) (-144)) 50) (((-144) $ (-563)) 49) (($ $ (-1224 (-563))) 63) (($ $ $) 102)) (-2967 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-1708 (((-767) (-1 (-112) (-144)) $) 31 (|has| $ (-6 -4408))) (((-767) (-144) $) 28 (-12 (|has| (-144) (-1093)) (|has| $ (-6 -4408))))) (-4062 (($ $ $ (-563)) 91 (|has| $ (-6 -4409)))) (-1870 (($ $) 13)) (-2219 (((-536) $) 79 (|has| (-144) (-611 (-536))))) (-1706 (($ (-640 (-144))) 70)) (-2857 (($ $ (-144)) 68) (($ (-144) $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1692 (($ (-144)) 111) (((-858) $) 18)) (-1471 (((-112) (-1 (-112) (-144)) $) 33 (|has| $ (-6 -4408)))) (-2742 (((-1151) $) 131) (((-1151) $ (-112)) 130) (((-1262) (-818) $) 129) (((-1262) (-818) $ (-112)) 128)) (-1779 (((-112) $ $) 84 (|has| (-144) (-846)))) (-1754 (((-112) $ $) 83 (|has| (-144) (-846)))) (-1718 (((-112) $ $) 20)) (-1766 (((-112) $ $) 85 (|has| (-144) (-846)))) (-1743 (((-112) $ $) 82 (|has| (-144) (-846)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-1150) (-140)) (T -1150))
-((-3736 (*1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-1150)))))
-(-13 (-1137) (-1093) (-824) (-10 -8 (-15 -3736 ($ (-563)))))
+((-3737 (*1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-1150)))))
+(-13 (-1137) (-1093) (-824) (-10 -8 (-15 -3737 ($ (-563)))))
(((-34) . T) ((-102) . T) ((-610 (-858)) . T) ((-151 #0=(-144)) . T) ((-611 (-536)) |has| (-144) (-611 (-536))) ((-286 #1=(-563) #0#) . T) ((-288 #1# #0#) . T) ((-309 #0#) -12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))) ((-373 #0#) . T) ((-489 #0#) . T) ((-601 #1# #0#) . T) ((-514 #0# #0#) -12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))) ((-646 #0#) . T) ((-19 #0#) . T) ((-824) . T) ((-846) |has| (-144) (-846)) ((-1093) . T) ((-1137) . T) ((-1208) . T))
-((-1677 (((-112) $ $) NIL)) (-3700 (($ $) NIL)) (-3697 (($ $) NIL)) (-1967 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-2559 (((-112) $ $) NIL)) (-2537 (((-112) $ $ (-563)) NIL)) (-3736 (($ (-563)) 7)) (-2335 (((-640 $) $ (-144)) NIL) (((-640 $) $ (-141)) NIL)) (-3523 (((-112) (-1 (-112) (-144) (-144)) $) NIL) (((-112) $) NIL (|has| (-144) (-846)))) (-2770 (($ (-1 (-112) (-144) (-144)) $) NIL (|has| $ (-6 -4408))) (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-846))))) (-1642 (($ (-1 (-112) (-144) (-144)) $) NIL) (($ $) NIL (|has| (-144) (-846)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 (((-144) $ (-563) (-144)) NIL (|has| $ (-6 -4408))) (((-144) $ (-1224 (-563)) (-144)) NIL (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-2025 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-1938 (($ $ (-1224 (-563)) $) NIL)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093))))) (-1459 (($ (-144) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093)))) (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407)))) (-2444 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) NIL (|has| $ (-6 -4407))) (((-144) (-1 (-144) (-144) (-144)) $) NIL (|has| $ (-6 -4407)))) (-4355 (((-144) $ (-563) (-144)) NIL (|has| $ (-6 -4408)))) (-4293 (((-144) $ (-563)) NIL)) (-2580 (((-112) $ $) NIL)) (-4368 (((-563) (-1 (-112) (-144)) $) NIL) (((-563) (-144) $) NIL (|has| (-144) (-1093))) (((-563) (-144) $ (-563)) NIL (|has| (-144) (-1093))) (((-563) $ $ (-563)) NIL) (((-563) (-141) $ (-563)) NIL)) (-2659 (((-640 (-144)) $) NIL (|has| $ (-6 -4407)))) (-1566 (($ (-767) (-144)) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) NIL (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (|has| (-144) (-846)))) (-3164 (($ (-1 (-112) (-144) (-144)) $ $) NIL) (($ $ $) NIL (|has| (-144) (-846)))) (-2259 (((-640 (-144)) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| (-144) (-846)))) (-4367 (((-112) $ $ (-144)) NIL)) (-1916 (((-767) $ $ (-144)) NIL)) (-4345 (($ (-1 (-144) (-144)) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-144) (-144)) $) NIL) (($ (-1 (-144) (-144) (-144)) $ $) NIL)) (-2360 (($ $) NIL)) (-1652 (($ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-2036 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-3573 (((-1151) $) NIL)) (-3396 (($ (-144) $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL)) (-3781 (((-144) $) NIL (|has| (-563) (-846)))) (-4203 (((-3 (-144) "failed") (-1 (-112) (-144)) $) NIL)) (-2358 (($ $ (-144)) NIL (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-144)))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-294 (-144))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-144) (-144)) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-640 (-144)) (-640 (-144))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093))))) (-2836 (((-640 (-144)) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 (((-144) $ (-563) (-144)) NIL) (((-144) $ (-563)) NIL) (($ $ (-1224 (-563))) NIL) (($ $ $) NIL)) (-2963 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1709 (((-767) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407))) (((-767) (-144) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-144) (-1093))))) (-3076 (($ $ $ (-563)) NIL (|has| $ (-6 -4408)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-144) (-611 (-536))))) (-1707 (($ (-640 (-144))) NIL)) (-2853 (($ $ (-144)) NIL) (($ (-144) $) NIL) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1693 (($ (-144)) NIL) (((-858) $) NIL)) (-4383 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4407)))) (-3741 (((-1151) $) 18) (((-1151) $ (-112)) 20) (((-1262) (-818) $) 21) (((-1262) (-818) $ (-112)) 22)) (-1778 (((-112) $ $) NIL (|has| (-144) (-846)))) (-1756 (((-112) $ $) NIL (|has| (-144) (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| (-144) (-846)))) (-1744 (((-112) $ $) NIL (|has| (-144) (-846)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-1815 (($ $) NIL)) (-1827 (($ $) NIL)) (-1782 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-2558 (((-112) $ $) NIL)) (-2537 (((-112) $ $ (-563)) NIL)) (-3737 (($ (-563)) 7)) (-1792 (((-640 $) $ (-144)) NIL) (((-640 $) $ (-141)) NIL)) (-4073 (((-112) (-1 (-112) (-144) (-144)) $) NIL) (((-112) $) NIL (|has| (-144) (-846)))) (-4052 (($ (-1 (-112) (-144) (-144)) $) NIL (|has| $ (-6 -4409))) (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| (-144) (-846))))) (-1640 (($ (-1 (-112) (-144) (-144)) $) NIL) (($ $) NIL (|has| (-144) (-846)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 (((-144) $ (-563) (-144)) NIL (|has| $ (-6 -4409))) (((-144) $ (-1224 (-563)) (-144)) NIL (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-2023 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-1804 (($ $ (-1224 (-563)) $) NIL)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093))))) (-1459 (($ (-144) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093)))) (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408)))) (-2444 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) NIL (|has| $ (-6 -4408))) (((-144) (-1 (-144) (-144) (-144)) $) NIL (|has| $ (-6 -4408)))) (-4356 (((-144) $ (-563) (-144)) NIL (|has| $ (-6 -4409)))) (-4293 (((-144) $ (-563)) NIL)) (-2578 (((-112) $ $) NIL)) (-4369 (((-563) (-1 (-112) (-144)) $) NIL) (((-563) (-144) $) NIL (|has| (-144) (-1093))) (((-563) (-144) $ (-563)) NIL (|has| (-144) (-1093))) (((-563) $ $ (-563)) NIL) (((-563) (-141) $ (-563)) NIL)) (-2658 (((-640 (-144)) $) NIL (|has| $ (-6 -4408)))) (-1565 (($ (-767) (-144)) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) NIL (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (|has| (-144) (-846)))) (-4300 (($ (-1 (-112) (-144) (-144)) $ $) NIL) (($ $ $) NIL (|has| (-144) (-846)))) (-3523 (((-640 (-144)) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| (-144) (-846)))) (-4368 (((-112) $ $ (-144)) NIL)) (-1915 (((-767) $ $ (-144)) NIL)) (-4347 (($ (-1 (-144) (-144)) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-144) (-144)) $) NIL) (($ (-1 (-144) (-144) (-144)) $ $) NIL)) (-1838 (($ $) NIL)) (-1848 (($ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-2034 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-3854 (((-1151) $) NIL)) (-3399 (($ (-144) $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL)) (-3782 (((-144) $) NIL (|has| (-563) (-846)))) (-1971 (((-3 (-144) "failed") (-1 (-112) (-144)) $) NIL)) (-2221 (($ $ (-144)) NIL (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-144)))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-294 (-144))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-144) (-144)) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093)))) (($ $ (-640 (-144)) (-640 (-144))) NIL (-12 (|has| (-144) (-309 (-144))) (|has| (-144) (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093))))) (-2295 (((-640 (-144)) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 (((-144) $ (-563) (-144)) NIL) (((-144) $ (-563)) NIL) (($ $ (-1224 (-563))) NIL) (($ $ $) NIL)) (-2967 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1708 (((-767) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408))) (((-767) (-144) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-144) (-1093))))) (-4062 (($ $ $ (-563)) NIL (|has| $ (-6 -4409)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-144) (-611 (-536))))) (-1706 (($ (-640 (-144))) NIL)) (-2857 (($ $ (-144)) NIL) (($ (-144) $) NIL) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1692 (($ (-144)) NIL) (((-858) $) NIL)) (-1471 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4408)))) (-2742 (((-1151) $) 18) (((-1151) $ (-112)) 20) (((-1262) (-818) $) 21) (((-1262) (-818) $ (-112)) 22)) (-1779 (((-112) $ $) NIL (|has| (-144) (-846)))) (-1754 (((-112) $ $) NIL (|has| (-144) (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| (-144) (-846)))) (-1743 (((-112) $ $) NIL (|has| (-144) (-846)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
(((-1151) (-1150)) (T -1151))
NIL
(-1150)
-((-1677 (((-112) $ $) NIL (-4032 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)) (|has| |#1| (-1093))))) (-1552 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) NIL)) (-4378 (((-1262) $ (-1151) (-1151)) NIL (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-1151) |#1|) NIL)) (-2812 (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407)))) (-1577 (((-3 |#1| "failed") (-1151) $) NIL)) (-4239 (($) NIL T CONST)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093))))) (-2705 (($ (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $) NIL (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407))) (((-3 |#1| "failed") (-1151) $) NIL)) (-1459 (($ (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407)))) (-2444 (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $ (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)))) (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $ (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) NIL (|has| $ (-6 -4407))) (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#1| $ (-1151) |#1|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-1151)) NIL)) (-2659 (((-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407))) (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-1151) $) NIL (|has| (-1151) (-846)))) (-2259 (((-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407))) (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)))) (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3860 (((-1151) $) NIL (|has| (-1151) (-846)))) (-4345 (($ (-1 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4408))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (-4032 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)) (|has| |#1| (-1093))))) (-1303 (((-640 (-1151)) $) NIL)) (-4173 (((-112) (-1151) $) NIL)) (-2964 (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $) NIL)) (-1812 (($ (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $) NIL)) (-4318 (((-640 (-1151)) $) NIL)) (-3192 (((-112) (-1151) $) NIL)) (-1694 (((-1113) $) NIL (-4032 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)) (|has| |#1| (-1093))))) (-3781 ((|#1| $) NIL (|has| (-1151) (-846)))) (-4203 (((-3 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) "failed") (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL)) (-2358 (($ $ |#1|) NIL (|has| $ (-6 -4408)))) (-3755 (((-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $) NIL)) (-3138 (((-112) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)))) (($ $ (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#1| $ (-1151)) NIL) ((|#1| $ (-1151) |#1|) NIL)) (-3890 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) NIL)) (-1709 (((-767) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-611 (-536))))) (-1707 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) NIL)) (-1693 (((-858) $) NIL (-4032 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-610 (-858))) (|has| |#1| (-610 (-858)))))) (-2233 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)))) NIL)) (-4383 (((-112) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (-4032 (|has| (-2 (|:| -2387 (-1151)) (|:| -2557 |#1|)) (-1093)) (|has| |#1| (-1093))))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-1152 |#1|) (-13 (-1184 (-1151) |#1|) (-10 -7 (-6 -4407))) (-1093)) (T -1152))
-NIL
-(-13 (-1184 (-1151) |#1|) (-10 -7 (-6 -4407)))
-((-3337 (((-1149 |#1|) (-1149 |#1|)) 77)) (-3400 (((-3 (-1149 |#1|) "failed") (-1149 |#1|)) 37)) (-2813 (((-1149 |#1|) (-407 (-563)) (-1149 |#1|)) 121 (|has| |#1| (-38 (-407 (-563)))))) (-2269 (((-1149 |#1|) |#1| (-1149 |#1|)) 127 (|has| |#1| (-363)))) (-1291 (((-1149 |#1|) (-1149 |#1|)) 90)) (-2183 (((-1149 (-563)) (-563)) 57)) (-4150 (((-1149 |#1|) (-1149 (-1149 |#1|))) 109 (|has| |#1| (-38 (-407 (-563)))))) (-4205 (((-1149 |#1|) (-563) (-563) (-1149 |#1|)) 95)) (-4222 (((-1149 |#1|) |#1| (-563)) 45)) (-1896 (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 60)) (-4131 (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 124 (|has| |#1| (-363)))) (-4209 (((-1149 |#1|) |#1| (-1 (-1149 |#1|))) 108 (|has| |#1| (-38 (-407 (-563)))))) (-4251 (((-1149 |#1|) (-1 |#1| (-563)) |#1| (-1 (-1149 |#1|))) 125 (|has| |#1| (-363)))) (-4386 (((-1149 |#1|) (-1149 |#1|)) 89)) (-3771 (((-1149 |#1|) (-1149 |#1|)) 76)) (-4033 (((-1149 |#1|) (-563) (-563) (-1149 |#1|)) 96)) (-3698 (((-1149 |#1|) |#1| (-1149 |#1|)) 105 (|has| |#1| (-38 (-407 (-563)))))) (-3432 (((-1149 (-563)) (-563)) 56)) (-1479 (((-1149 |#1|) |#1|) 59)) (-1649 (((-1149 |#1|) (-1149 |#1|) (-563) (-563)) 92)) (-2200 (((-1149 |#1|) (-1 |#1| (-563)) (-1149 |#1|)) 66)) (-3008 (((-3 (-1149 |#1|) "failed") (-1149 |#1|) (-1149 |#1|)) 35)) (-3570 (((-1149 |#1|) (-1149 |#1|)) 91)) (-1540 (((-1149 |#1|) (-1149 |#1|) |#1|) 71)) (-1728 (((-1149 |#1|) (-1149 |#1|)) 62)) (-2337 (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 72)) (-1693 (((-1149 |#1|) |#1|) 67)) (-3159 (((-1149 |#1|) (-1149 (-1149 |#1|))) 82)) (-1837 (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 36)) (-1826 (((-1149 |#1|) (-1149 |#1|)) 21) (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 23)) (-1814 (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 17)) (* (((-1149 |#1|) (-1149 |#1|) |#1|) 29) (((-1149 |#1|) |#1| (-1149 |#1|)) 26) (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 27)))
-(((-1153 |#1|) (-10 -7 (-15 -1814 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -1826 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -1826 ((-1149 |#1|) (-1149 |#1|))) (-15 * ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 * ((-1149 |#1|) |#1| (-1149 |#1|))) (-15 * ((-1149 |#1|) (-1149 |#1|) |#1|)) (-15 -3008 ((-3 (-1149 |#1|) "failed") (-1149 |#1|) (-1149 |#1|))) (-15 -1837 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -3400 ((-3 (-1149 |#1|) "failed") (-1149 |#1|))) (-15 -4222 ((-1149 |#1|) |#1| (-563))) (-15 -3432 ((-1149 (-563)) (-563))) (-15 -2183 ((-1149 (-563)) (-563))) (-15 -1479 ((-1149 |#1|) |#1|)) (-15 -1896 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -1728 ((-1149 |#1|) (-1149 |#1|))) (-15 -2200 ((-1149 |#1|) (-1 |#1| (-563)) (-1149 |#1|))) (-15 -1693 ((-1149 |#1|) |#1|)) (-15 -1540 ((-1149 |#1|) (-1149 |#1|) |#1|)) (-15 -2337 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -3771 ((-1149 |#1|) (-1149 |#1|))) (-15 -3337 ((-1149 |#1|) (-1149 |#1|))) (-15 -3159 ((-1149 |#1|) (-1149 (-1149 |#1|)))) (-15 -4386 ((-1149 |#1|) (-1149 |#1|))) (-15 -1291 ((-1149 |#1|) (-1149 |#1|))) (-15 -3570 ((-1149 |#1|) (-1149 |#1|))) (-15 -1649 ((-1149 |#1|) (-1149 |#1|) (-563) (-563))) (-15 -4205 ((-1149 |#1|) (-563) (-563) (-1149 |#1|))) (-15 -4033 ((-1149 |#1|) (-563) (-563) (-1149 |#1|))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -3698 ((-1149 |#1|) |#1| (-1149 |#1|))) (-15 -4209 ((-1149 |#1|) |#1| (-1 (-1149 |#1|)))) (-15 -4150 ((-1149 |#1|) (-1149 (-1149 |#1|)))) (-15 -2813 ((-1149 |#1|) (-407 (-563)) (-1149 |#1|)))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-15 -4131 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -4251 ((-1149 |#1|) (-1 |#1| (-563)) |#1| (-1 (-1149 |#1|)))) (-15 -2269 ((-1149 |#1|) |#1| (-1149 |#1|)))) |%noBranch|)) (-1045)) (T -1153))
-((-2269 (*1 *2 *3 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-363)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-4251 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *4 (-563))) (-5 *5 (-1 (-1149 *4))) (-4 *4 (-363)) (-4 *4 (-1045)) (-5 *2 (-1149 *4)) (-5 *1 (-1153 *4)))) (-4131 (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-363)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-2813 (*1 *2 *3 *2) (-12 (-5 *2 (-1149 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1045)) (-5 *3 (-407 (-563))) (-5 *1 (-1153 *4)))) (-4150 (*1 *2 *3) (-12 (-5 *3 (-1149 (-1149 *4))) (-5 *2 (-1149 *4)) (-5 *1 (-1153 *4)) (-4 *4 (-38 (-407 (-563)))) (-4 *4 (-1045)))) (-4209 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-1149 *3))) (-5 *2 (-1149 *3)) (-5 *1 (-1153 *3)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)))) (-3698 (*1 *2 *3 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-4033 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-1045)) (-5 *1 (-1153 *4)))) (-4205 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-1045)) (-5 *1 (-1153 *4)))) (-1649 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-1045)) (-5 *1 (-1153 *4)))) (-3570 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1291 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-4386 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-3159 (*1 *2 *3) (-12 (-5 *3 (-1149 (-1149 *4))) (-5 *2 (-1149 *4)) (-5 *1 (-1153 *4)) (-4 *4 (-1045)))) (-3337 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-3771 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-2337 (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1540 (*1 *2 *2 *3) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1693 (*1 *2 *3) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-1153 *3)) (-4 *3 (-1045)))) (-2200 (*1 *2 *3 *2) (-12 (-5 *2 (-1149 *4)) (-5 *3 (-1 *4 (-563))) (-4 *4 (-1045)) (-5 *1 (-1153 *4)))) (-1728 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1896 (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1479 (*1 *2 *3) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-1153 *3)) (-4 *3 (-1045)))) (-2183 (*1 *2 *3) (-12 (-5 *2 (-1149 (-563))) (-5 *1 (-1153 *4)) (-4 *4 (-1045)) (-5 *3 (-563)))) (-3432 (*1 *2 *3) (-12 (-5 *2 (-1149 (-563))) (-5 *1 (-1153 *4)) (-4 *4 (-1045)) (-5 *3 (-563)))) (-4222 (*1 *2 *3 *4) (-12 (-5 *4 (-563)) (-5 *2 (-1149 *3)) (-5 *1 (-1153 *3)) (-4 *3 (-1045)))) (-3400 (*1 *2 *2) (|partial| -12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1837 (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-3008 (*1 *2 *2 *2) (|partial| -12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (* (*1 *2 *2 *3) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1826 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1826 (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1814 (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))))
-(-10 -7 (-15 -1814 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -1826 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -1826 ((-1149 |#1|) (-1149 |#1|))) (-15 * ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 * ((-1149 |#1|) |#1| (-1149 |#1|))) (-15 * ((-1149 |#1|) (-1149 |#1|) |#1|)) (-15 -3008 ((-3 (-1149 |#1|) "failed") (-1149 |#1|) (-1149 |#1|))) (-15 -1837 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -3400 ((-3 (-1149 |#1|) "failed") (-1149 |#1|))) (-15 -4222 ((-1149 |#1|) |#1| (-563))) (-15 -3432 ((-1149 (-563)) (-563))) (-15 -2183 ((-1149 (-563)) (-563))) (-15 -1479 ((-1149 |#1|) |#1|)) (-15 -1896 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -1728 ((-1149 |#1|) (-1149 |#1|))) (-15 -2200 ((-1149 |#1|) (-1 |#1| (-563)) (-1149 |#1|))) (-15 -1693 ((-1149 |#1|) |#1|)) (-15 -1540 ((-1149 |#1|) (-1149 |#1|) |#1|)) (-15 -2337 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -3771 ((-1149 |#1|) (-1149 |#1|))) (-15 -3337 ((-1149 |#1|) (-1149 |#1|))) (-15 -3159 ((-1149 |#1|) (-1149 (-1149 |#1|)))) (-15 -4386 ((-1149 |#1|) (-1149 |#1|))) (-15 -1291 ((-1149 |#1|) (-1149 |#1|))) (-15 -3570 ((-1149 |#1|) (-1149 |#1|))) (-15 -1649 ((-1149 |#1|) (-1149 |#1|) (-563) (-563))) (-15 -4205 ((-1149 |#1|) (-563) (-563) (-1149 |#1|))) (-15 -4033 ((-1149 |#1|) (-563) (-563) (-1149 |#1|))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -3698 ((-1149 |#1|) |#1| (-1149 |#1|))) (-15 -4209 ((-1149 |#1|) |#1| (-1 (-1149 |#1|)))) (-15 -4150 ((-1149 |#1|) (-1149 (-1149 |#1|)))) (-15 -2813 ((-1149 |#1|) (-407 (-563)) (-1149 |#1|)))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-15 -4131 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -4251 ((-1149 |#1|) (-1 |#1| (-563)) |#1| (-1 (-1149 |#1|)))) (-15 -2269 ((-1149 |#1|) |#1| (-1149 |#1|)))) |%noBranch|))
-((-1771 (((-1149 |#1|) (-1149 |#1|)) 57)) (-1619 (((-1149 |#1|) (-1149 |#1|)) 39)) (-1748 (((-1149 |#1|) (-1149 |#1|)) 53)) (-1597 (((-1149 |#1|) (-1149 |#1|)) 35)) (-1794 (((-1149 |#1|) (-1149 |#1|)) 60)) (-1643 (((-1149 |#1|) (-1149 |#1|)) 42)) (-4371 (((-1149 |#1|) (-1149 |#1|)) 31)) (-3368 (((-1149 |#1|) (-1149 |#1|)) 27)) (-1806 (((-1149 |#1|) (-1149 |#1|)) 61)) (-1656 (((-1149 |#1|) (-1149 |#1|)) 43)) (-1784 (((-1149 |#1|) (-1149 |#1|)) 58)) (-1630 (((-1149 |#1|) (-1149 |#1|)) 40)) (-1759 (((-1149 |#1|) (-1149 |#1|)) 55)) (-1608 (((-1149 |#1|) (-1149 |#1|)) 37)) (-1840 (((-1149 |#1|) (-1149 |#1|)) 65)) (-1695 (((-1149 |#1|) (-1149 |#1|)) 47)) (-1817 (((-1149 |#1|) (-1149 |#1|)) 63)) (-1667 (((-1149 |#1|) (-1149 |#1|)) 45)) (-1862 (((-1149 |#1|) (-1149 |#1|)) 68)) (-1722 (((-1149 |#1|) (-1149 |#1|)) 50)) (-1311 (((-1149 |#1|) (-1149 |#1|)) 69)) (-1735 (((-1149 |#1|) (-1149 |#1|)) 51)) (-1851 (((-1149 |#1|) (-1149 |#1|)) 67)) (-1710 (((-1149 |#1|) (-1149 |#1|)) 49)) (-1829 (((-1149 |#1|) (-1149 |#1|)) 66)) (-1680 (((-1149 |#1|) (-1149 |#1|)) 48)) (** (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 33)))
-(((-1154 |#1|) (-10 -7 (-15 -3368 ((-1149 |#1|) (-1149 |#1|))) (-15 -4371 ((-1149 |#1|) (-1149 |#1|))) (-15 ** ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -1597 ((-1149 |#1|) (-1149 |#1|))) (-15 -1608 ((-1149 |#1|) (-1149 |#1|))) (-15 -1619 ((-1149 |#1|) (-1149 |#1|))) (-15 -1630 ((-1149 |#1|) (-1149 |#1|))) (-15 -1643 ((-1149 |#1|) (-1149 |#1|))) (-15 -1656 ((-1149 |#1|) (-1149 |#1|))) (-15 -1667 ((-1149 |#1|) (-1149 |#1|))) (-15 -1680 ((-1149 |#1|) (-1149 |#1|))) (-15 -1695 ((-1149 |#1|) (-1149 |#1|))) (-15 -1710 ((-1149 |#1|) (-1149 |#1|))) (-15 -1722 ((-1149 |#1|) (-1149 |#1|))) (-15 -1735 ((-1149 |#1|) (-1149 |#1|))) (-15 -1748 ((-1149 |#1|) (-1149 |#1|))) (-15 -1759 ((-1149 |#1|) (-1149 |#1|))) (-15 -1771 ((-1149 |#1|) (-1149 |#1|))) (-15 -1784 ((-1149 |#1|) (-1149 |#1|))) (-15 -1794 ((-1149 |#1|) (-1149 |#1|))) (-15 -1806 ((-1149 |#1|) (-1149 |#1|))) (-15 -1817 ((-1149 |#1|) (-1149 |#1|))) (-15 -1829 ((-1149 |#1|) (-1149 |#1|))) (-15 -1840 ((-1149 |#1|) (-1149 |#1|))) (-15 -1851 ((-1149 |#1|) (-1149 |#1|))) (-15 -1862 ((-1149 |#1|) (-1149 |#1|))) (-15 -1311 ((-1149 |#1|) (-1149 |#1|)))) (-38 (-407 (-563)))) (T -1154))
-((-1311 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1862 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1851 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1840 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1829 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1817 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1806 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1794 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1784 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1771 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1759 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1748 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1735 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1722 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1710 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1695 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1680 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1667 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1656 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1643 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1630 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1619 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1608 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1597 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-4371 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-3368 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))))
-(-10 -7 (-15 -3368 ((-1149 |#1|) (-1149 |#1|))) (-15 -4371 ((-1149 |#1|) (-1149 |#1|))) (-15 ** ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -1597 ((-1149 |#1|) (-1149 |#1|))) (-15 -1608 ((-1149 |#1|) (-1149 |#1|))) (-15 -1619 ((-1149 |#1|) (-1149 |#1|))) (-15 -1630 ((-1149 |#1|) (-1149 |#1|))) (-15 -1643 ((-1149 |#1|) (-1149 |#1|))) (-15 -1656 ((-1149 |#1|) (-1149 |#1|))) (-15 -1667 ((-1149 |#1|) (-1149 |#1|))) (-15 -1680 ((-1149 |#1|) (-1149 |#1|))) (-15 -1695 ((-1149 |#1|) (-1149 |#1|))) (-15 -1710 ((-1149 |#1|) (-1149 |#1|))) (-15 -1722 ((-1149 |#1|) (-1149 |#1|))) (-15 -1735 ((-1149 |#1|) (-1149 |#1|))) (-15 -1748 ((-1149 |#1|) (-1149 |#1|))) (-15 -1759 ((-1149 |#1|) (-1149 |#1|))) (-15 -1771 ((-1149 |#1|) (-1149 |#1|))) (-15 -1784 ((-1149 |#1|) (-1149 |#1|))) (-15 -1794 ((-1149 |#1|) (-1149 |#1|))) (-15 -1806 ((-1149 |#1|) (-1149 |#1|))) (-15 -1817 ((-1149 |#1|) (-1149 |#1|))) (-15 -1829 ((-1149 |#1|) (-1149 |#1|))) (-15 -1840 ((-1149 |#1|) (-1149 |#1|))) (-15 -1851 ((-1149 |#1|) (-1149 |#1|))) (-15 -1862 ((-1149 |#1|) (-1149 |#1|))) (-15 -1311 ((-1149 |#1|) (-1149 |#1|))))
-((-1771 (((-1149 |#1|) (-1149 |#1|)) 100)) (-1619 (((-1149 |#1|) (-1149 |#1|)) 64)) (-3971 (((-2 (|:| -1748 (-1149 |#1|)) (|:| -1759 (-1149 |#1|))) (-1149 |#1|)) 96)) (-1748 (((-1149 |#1|) (-1149 |#1|)) 97)) (-4338 (((-2 (|:| -1597 (-1149 |#1|)) (|:| -1608 (-1149 |#1|))) (-1149 |#1|)) 53)) (-1597 (((-1149 |#1|) (-1149 |#1|)) 54)) (-1794 (((-1149 |#1|) (-1149 |#1|)) 102)) (-1643 (((-1149 |#1|) (-1149 |#1|)) 71)) (-4371 (((-1149 |#1|) (-1149 |#1|)) 39)) (-3368 (((-1149 |#1|) (-1149 |#1|)) 36)) (-1806 (((-1149 |#1|) (-1149 |#1|)) 103)) (-1656 (((-1149 |#1|) (-1149 |#1|)) 72)) (-1784 (((-1149 |#1|) (-1149 |#1|)) 101)) (-1630 (((-1149 |#1|) (-1149 |#1|)) 67)) (-1759 (((-1149 |#1|) (-1149 |#1|)) 98)) (-1608 (((-1149 |#1|) (-1149 |#1|)) 55)) (-1840 (((-1149 |#1|) (-1149 |#1|)) 111)) (-1695 (((-1149 |#1|) (-1149 |#1|)) 86)) (-1817 (((-1149 |#1|) (-1149 |#1|)) 105)) (-1667 (((-1149 |#1|) (-1149 |#1|)) 82)) (-1862 (((-1149 |#1|) (-1149 |#1|)) 115)) (-1722 (((-1149 |#1|) (-1149 |#1|)) 90)) (-1311 (((-1149 |#1|) (-1149 |#1|)) 117)) (-1735 (((-1149 |#1|) (-1149 |#1|)) 92)) (-1851 (((-1149 |#1|) (-1149 |#1|)) 113)) (-1710 (((-1149 |#1|) (-1149 |#1|)) 88)) (-1829 (((-1149 |#1|) (-1149 |#1|)) 107)) (-1680 (((-1149 |#1|) (-1149 |#1|)) 84)) (** (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 40)))
-(((-1155 |#1|) (-10 -7 (-15 -3368 ((-1149 |#1|) (-1149 |#1|))) (-15 -4371 ((-1149 |#1|) (-1149 |#1|))) (-15 ** ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -4338 ((-2 (|:| -1597 (-1149 |#1|)) (|:| -1608 (-1149 |#1|))) (-1149 |#1|))) (-15 -1597 ((-1149 |#1|) (-1149 |#1|))) (-15 -1608 ((-1149 |#1|) (-1149 |#1|))) (-15 -1619 ((-1149 |#1|) (-1149 |#1|))) (-15 -1630 ((-1149 |#1|) (-1149 |#1|))) (-15 -1643 ((-1149 |#1|) (-1149 |#1|))) (-15 -1656 ((-1149 |#1|) (-1149 |#1|))) (-15 -1667 ((-1149 |#1|) (-1149 |#1|))) (-15 -1680 ((-1149 |#1|) (-1149 |#1|))) (-15 -1695 ((-1149 |#1|) (-1149 |#1|))) (-15 -1710 ((-1149 |#1|) (-1149 |#1|))) (-15 -1722 ((-1149 |#1|) (-1149 |#1|))) (-15 -1735 ((-1149 |#1|) (-1149 |#1|))) (-15 -3971 ((-2 (|:| -1748 (-1149 |#1|)) (|:| -1759 (-1149 |#1|))) (-1149 |#1|))) (-15 -1748 ((-1149 |#1|) (-1149 |#1|))) (-15 -1759 ((-1149 |#1|) (-1149 |#1|))) (-15 -1771 ((-1149 |#1|) (-1149 |#1|))) (-15 -1784 ((-1149 |#1|) (-1149 |#1|))) (-15 -1794 ((-1149 |#1|) (-1149 |#1|))) (-15 -1806 ((-1149 |#1|) (-1149 |#1|))) (-15 -1817 ((-1149 |#1|) (-1149 |#1|))) (-15 -1829 ((-1149 |#1|) (-1149 |#1|))) (-15 -1840 ((-1149 |#1|) (-1149 |#1|))) (-15 -1851 ((-1149 |#1|) (-1149 |#1|))) (-15 -1862 ((-1149 |#1|) (-1149 |#1|))) (-15 -1311 ((-1149 |#1|) (-1149 |#1|)))) (-38 (-407 (-563)))) (T -1155))
-((-1311 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1862 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1851 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1840 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1829 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1817 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1806 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1794 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1784 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1771 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1759 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1748 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-3971 (*1 *2 *3) (-12 (-4 *4 (-38 (-407 (-563)))) (-5 *2 (-2 (|:| -1748 (-1149 *4)) (|:| -1759 (-1149 *4)))) (-5 *1 (-1155 *4)) (-5 *3 (-1149 *4)))) (-1735 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1722 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1710 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1695 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1680 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1667 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1656 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1643 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1630 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1619 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1608 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1597 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-4338 (*1 *2 *3) (-12 (-4 *4 (-38 (-407 (-563)))) (-5 *2 (-2 (|:| -1597 (-1149 *4)) (|:| -1608 (-1149 *4)))) (-5 *1 (-1155 *4)) (-5 *3 (-1149 *4)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-4371 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-3368 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))))
-(-10 -7 (-15 -3368 ((-1149 |#1|) (-1149 |#1|))) (-15 -4371 ((-1149 |#1|) (-1149 |#1|))) (-15 ** ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -4338 ((-2 (|:| -1597 (-1149 |#1|)) (|:| -1608 (-1149 |#1|))) (-1149 |#1|))) (-15 -1597 ((-1149 |#1|) (-1149 |#1|))) (-15 -1608 ((-1149 |#1|) (-1149 |#1|))) (-15 -1619 ((-1149 |#1|) (-1149 |#1|))) (-15 -1630 ((-1149 |#1|) (-1149 |#1|))) (-15 -1643 ((-1149 |#1|) (-1149 |#1|))) (-15 -1656 ((-1149 |#1|) (-1149 |#1|))) (-15 -1667 ((-1149 |#1|) (-1149 |#1|))) (-15 -1680 ((-1149 |#1|) (-1149 |#1|))) (-15 -1695 ((-1149 |#1|) (-1149 |#1|))) (-15 -1710 ((-1149 |#1|) (-1149 |#1|))) (-15 -1722 ((-1149 |#1|) (-1149 |#1|))) (-15 -1735 ((-1149 |#1|) (-1149 |#1|))) (-15 -3971 ((-2 (|:| -1748 (-1149 |#1|)) (|:| -1759 (-1149 |#1|))) (-1149 |#1|))) (-15 -1748 ((-1149 |#1|) (-1149 |#1|))) (-15 -1759 ((-1149 |#1|) (-1149 |#1|))) (-15 -1771 ((-1149 |#1|) (-1149 |#1|))) (-15 -1784 ((-1149 |#1|) (-1149 |#1|))) (-15 -1794 ((-1149 |#1|) (-1149 |#1|))) (-15 -1806 ((-1149 |#1|) (-1149 |#1|))) (-15 -1817 ((-1149 |#1|) (-1149 |#1|))) (-15 -1829 ((-1149 |#1|) (-1149 |#1|))) (-15 -1840 ((-1149 |#1|) (-1149 |#1|))) (-15 -1851 ((-1149 |#1|) (-1149 |#1|))) (-15 -1862 ((-1149 |#1|) (-1149 |#1|))) (-15 -1311 ((-1149 |#1|) (-1149 |#1|))))
-((-2985 (((-954 |#2|) |#2| |#2|) 35)) (-1300 ((|#2| |#2| |#1|) 19 (|has| |#1| (-307)))))
-(((-1156 |#1| |#2|) (-10 -7 (-15 -2985 ((-954 |#2|) |#2| |#2|)) (IF (|has| |#1| (-307)) (-15 -1300 (|#2| |#2| |#1|)) |%noBranch|)) (-555) (-1233 |#1|)) (T -1156))
-((-1300 (*1 *2 *2 *3) (-12 (-4 *3 (-307)) (-4 *3 (-555)) (-5 *1 (-1156 *3 *2)) (-4 *2 (-1233 *3)))) (-2985 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-954 *3)) (-5 *1 (-1156 *4 *3)) (-4 *3 (-1233 *4)))))
-(-10 -7 (-15 -2985 ((-954 |#2|) |#2| |#2|)) (IF (|has| |#1| (-307)) (-15 -1300 (|#2| |#2| |#1|)) |%noBranch|))
-((-1677 (((-112) $ $) NIL)) (-4321 (($ $ (-640 (-767))) 66)) (-2756 (($) 25)) (-3251 (($ $) 41)) (-3018 (((-640 $) $) 50)) (-3302 (((-112) $) 16)) (-2634 (((-640 (-939 |#2|)) $) 73)) (-3069 (($ $) 67)) (-2162 (((-767) $) 36)) (-1566 (($) 24)) (-3482 (($ $ (-640 (-767)) (-939 |#2|)) 59) (($ $ (-640 (-767)) (-767)) 60) (($ $ (-767) (-939 |#2|)) 62)) (-3164 (($ $ $) 47) (($ (-640 $)) 49)) (-1407 (((-767) $) 74)) (-2194 (((-112) $) 15)) (-3573 (((-1151) $) NIL)) (-2141 (((-112) $) 17)) (-1694 (((-1113) $) NIL)) (-4344 (((-171) $) 72)) (-2725 (((-939 |#2|) $) 68)) (-3615 (((-767) $) 69)) (-2116 (((-112) $) 71)) (-4365 (($ $ (-640 (-767)) (-171)) 65)) (-2649 (($ $) 42)) (-1693 (((-858) $) 85)) (-3057 (($ $ (-640 (-767)) (-112)) 64)) (-4258 (((-640 $) $) 11)) (-2347 (($ $ (-767)) 35)) (-3433 (($ $) 31)) (-2687 (($ $ $ (-939 |#2|) (-767)) 55)) (-4253 (($ $ (-939 |#2|)) 54)) (-2476 (($ $ (-640 (-767)) (-939 |#2|)) 53) (($ $ (-640 (-767)) (-767)) 57) (((-767) $ (-939 |#2|)) 58)) (-1718 (((-112) $ $) 79)))
-(((-1157 |#1| |#2|) (-13 (-1093) (-10 -8 (-15 -2194 ((-112) $)) (-15 -3302 ((-112) $)) (-15 -2141 ((-112) $)) (-15 -1566 ($)) (-15 -2756 ($)) (-15 -3433 ($ $)) (-15 -2347 ($ $ (-767))) (-15 -4258 ((-640 $) $)) (-15 -2162 ((-767) $)) (-15 -3251 ($ $)) (-15 -2649 ($ $)) (-15 -3164 ($ $ $)) (-15 -3164 ($ (-640 $))) (-15 -3018 ((-640 $) $)) (-15 -2476 ($ $ (-640 (-767)) (-939 |#2|))) (-15 -4253 ($ $ (-939 |#2|))) (-15 -2687 ($ $ $ (-939 |#2|) (-767))) (-15 -3482 ($ $ (-640 (-767)) (-939 |#2|))) (-15 -2476 ($ $ (-640 (-767)) (-767))) (-15 -3482 ($ $ (-640 (-767)) (-767))) (-15 -2476 ((-767) $ (-939 |#2|))) (-15 -3482 ($ $ (-767) (-939 |#2|))) (-15 -3057 ($ $ (-640 (-767)) (-112))) (-15 -4365 ($ $ (-640 (-767)) (-171))) (-15 -4321 ($ $ (-640 (-767)))) (-15 -2725 ((-939 |#2|) $)) (-15 -3615 ((-767) $)) (-15 -2116 ((-112) $)) (-15 -4344 ((-171) $)) (-15 -1407 ((-767) $)) (-15 -3069 ($ $)) (-15 -2634 ((-640 (-939 |#2|)) $)))) (-917) (-1045)) (T -1157))
-((-2194 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-3302 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-2141 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-1566 (*1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))) (-2756 (*1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))) (-3433 (*1 *1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))) (-2347 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-4258 (*1 *2 *1) (-12 (-5 *2 (-640 (-1157 *3 *4))) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-2162 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-3251 (*1 *1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))) (-2649 (*1 *1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))) (-3164 (*1 *1 *1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))) (-3164 (*1 *1 *2) (-12 (-5 *2 (-640 (-1157 *3 *4))) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-3018 (*1 *2 *1) (-12 (-5 *2 (-640 (-1157 *3 *4))) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-2476 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-767))) (-5 *3 (-939 *5)) (-4 *5 (-1045)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))) (-4253 (*1 *1 *1 *2) (-12 (-5 *2 (-939 *4)) (-4 *4 (-1045)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)))) (-2687 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-939 *5)) (-5 *3 (-767)) (-4 *5 (-1045)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))) (-3482 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-767))) (-5 *3 (-939 *5)) (-4 *5 (-1045)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))) (-2476 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-767))) (-5 *3 (-767)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)) (-4 *5 (-1045)))) (-3482 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-767))) (-5 *3 (-767)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)) (-4 *5 (-1045)))) (-2476 (*1 *2 *1 *3) (-12 (-5 *3 (-939 *5)) (-4 *5 (-1045)) (-5 *2 (-767)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))) (-3482 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *3 (-939 *5)) (-4 *5 (-1045)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))) (-3057 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-767))) (-5 *3 (-112)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)) (-4 *5 (-1045)))) (-4365 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-767))) (-5 *3 (-171)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)) (-4 *5 (-1045)))) (-4321 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-767))) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-2725 (*1 *2 *1) (-12 (-5 *2 (-939 *4)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-3615 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-2116 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-4344 (*1 *2 *1) (-12 (-5 *2 (-171)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-1407 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-3069 (*1 *1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))) (-2634 (*1 *2 *1) (-12 (-5 *2 (-640 (-939 *4))) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))))
-(-13 (-1093) (-10 -8 (-15 -2194 ((-112) $)) (-15 -3302 ((-112) $)) (-15 -2141 ((-112) $)) (-15 -1566 ($)) (-15 -2756 ($)) (-15 -3433 ($ $)) (-15 -2347 ($ $ (-767))) (-15 -4258 ((-640 $) $)) (-15 -2162 ((-767) $)) (-15 -3251 ($ $)) (-15 -2649 ($ $)) (-15 -3164 ($ $ $)) (-15 -3164 ($ (-640 $))) (-15 -3018 ((-640 $) $)) (-15 -2476 ($ $ (-640 (-767)) (-939 |#2|))) (-15 -4253 ($ $ (-939 |#2|))) (-15 -2687 ($ $ $ (-939 |#2|) (-767))) (-15 -3482 ($ $ (-640 (-767)) (-939 |#2|))) (-15 -2476 ($ $ (-640 (-767)) (-767))) (-15 -3482 ($ $ (-640 (-767)) (-767))) (-15 -2476 ((-767) $ (-939 |#2|))) (-15 -3482 ($ $ (-767) (-939 |#2|))) (-15 -3057 ($ $ (-640 (-767)) (-112))) (-15 -4365 ($ $ (-640 (-767)) (-171))) (-15 -4321 ($ $ (-640 (-767)))) (-15 -2725 ((-939 |#2|) $)) (-15 -3615 ((-767) $)) (-15 -2116 ((-112) $)) (-15 -4344 ((-171) $)) (-15 -1407 ((-767) $)) (-15 -3069 ($ $)) (-15 -2634 ((-640 (-939 |#2|)) $))))
-((-1677 (((-112) $ $) NIL)) (-2351 ((|#2| $) 11)) (-2340 ((|#1| $) 10)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1707 (($ |#1| |#2|) 9)) (-1693 (((-858) $) 16)) (-1718 (((-112) $ $) NIL)))
-(((-1158 |#1| |#2|) (-13 (-1093) (-10 -8 (-15 -1707 ($ |#1| |#2|)) (-15 -2340 (|#1| $)) (-15 -2351 (|#2| $)))) (-1093) (-1093)) (T -1158))
-((-1707 (*1 *1 *2 *3) (-12 (-5 *1 (-1158 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-2340 (*1 *2 *1) (-12 (-4 *2 (-1093)) (-5 *1 (-1158 *2 *3)) (-4 *3 (-1093)))) (-2351 (*1 *2 *1) (-12 (-4 *2 (-1093)) (-5 *1 (-1158 *3 *2)) (-4 *3 (-1093)))))
-(-13 (-1093) (-10 -8 (-15 -1707 ($ |#1| |#2|)) (-15 -2340 (|#1| $)) (-15 -2351 (|#2| $))))
-((-1677 (((-112) $ $) NIL)) (-3301 (((-1128) $) 9)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 17) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL (-4034 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)) (|has| |#1| (-1093))))) (-1551 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) NIL)) (-2208 (((-1262) $ (-1151) (-1151)) NIL (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-1151) |#1|) NIL)) (-3678 (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408)))) (-1576 (((-3 |#1| "failed") (-1151) $) NIL)) (-2569 (($) NIL T CONST)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093))))) (-1691 (($ (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408))) (((-3 |#1| "failed") (-1151) $) NIL)) (-1459 (($ (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408)))) (-2444 (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $ (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)))) (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $ (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#1| $ (-1151) |#1|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-1151)) NIL)) (-2658 (((-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408))) (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-1151) $) NIL (|has| (-1151) (-846)))) (-3523 (((-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408))) (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)))) (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2251 (((-1151) $) NIL (|has| (-1151) (-846)))) (-4347 (($ (-1 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4409))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (-4034 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)) (|has| |#1| (-1093))))) (-1304 (((-640 (-1151)) $) NIL)) (-2305 (((-112) (-1151) $) NIL)) (-2627 (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $) NIL)) (-3867 (($ (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $) NIL)) (-2272 (((-640 (-1151)) $) NIL)) (-2282 (((-112) (-1151) $) NIL)) (-1693 (((-1113) $) NIL (-4034 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)) (|has| |#1| (-1093))))) (-3782 ((|#1| $) NIL (|has| (-1151) (-846)))) (-1971 (((-3 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) "failed") (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL)) (-2221 (($ $ |#1|) NIL (|has| $ (-6 -4409)))) (-2808 (((-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $) NIL)) (-1458 (((-112) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)))) (($ $ (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) NIL (-12 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-309 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#1| $ (-1151)) NIL) ((|#1| $ (-1151) |#1|) NIL)) (-3863 (($) NIL) (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) NIL)) (-1708 (((-767) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-611 (-536))))) (-1706 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) NIL)) (-1692 (((-858) $) NIL (-4034 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-610 (-858))) (|has| |#1| (-610 (-858)))))) (-2820 (($ (-640 (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)))) NIL)) (-1471 (((-112) (-1 (-112) (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (-4034 (|has| (-2 (|:| -2387 (-1151)) (|:| -2556 |#1|)) (-1093)) (|has| |#1| (-1093))))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-1152 |#1|) (-13 (-1184 (-1151) |#1|) (-10 -7 (-6 -4408))) (-1093)) (T -1152))
+NIL
+(-13 (-1184 (-1151) |#1|) (-10 -7 (-6 -4408)))
+((-1996 (((-1149 |#1|) (-1149 |#1|)) 78)) (-3951 (((-3 (-1149 |#1|) "failed") (-1149 |#1|)) 37)) (-4072 (((-1149 |#1|) (-407 (-563)) (-1149 |#1|)) 121 (|has| |#1| (-38 (-407 (-563)))))) (-4104 (((-1149 |#1|) |#1| (-1149 |#1|)) 127 (|has| |#1| (-363)))) (-2024 (((-1149 |#1|) (-1149 |#1|)) 91)) (-3972 (((-1149 (-563)) (-563)) 57)) (-4061 (((-1149 |#1|) (-1149 (-1149 |#1|))) 110 (|has| |#1| (-38 (-407 (-563)))))) (-1987 (((-1149 |#1|) (-563) (-563) (-1149 |#1|)) 96)) (-4223 (((-1149 |#1|) |#1| (-563)) 45)) (-3993 (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 60)) (-4083 (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 124 (|has| |#1| (-363)))) (-4050 (((-1149 |#1|) |#1| (-1 (-1149 |#1|))) 109 (|has| |#1| (-38 (-407 (-563)))))) (-4093 (((-1149 |#1|) (-1 |#1| (-563)) |#1| (-1 (-1149 |#1|))) 125 (|has| |#1| (-363)))) (-2035 (((-1149 |#1|) (-1149 |#1|)) 90)) (-2044 (((-1149 |#1|) (-1149 |#1|)) 76)) (-1980 (((-1149 |#1|) (-563) (-563) (-1149 |#1|)) 97)) (-2062 (((-1149 |#1|) |#1| (-1149 |#1|)) 106 (|has| |#1| (-38 (-407 (-563)))))) (-3962 (((-1149 (-563)) (-563)) 56)) (-3982 (((-1149 |#1|) |#1|) 59)) (-2006 (((-1149 |#1|) (-1149 |#1|) (-563) (-563)) 93)) (-4016 (((-1149 |#1|) (-1 |#1| (-563)) (-1149 |#1|)) 66)) (-3012 (((-3 (-1149 |#1|) "failed") (-1149 |#1|) (-1149 |#1|)) 35)) (-2013 (((-1149 |#1|) (-1149 |#1|)) 92)) (-1542 (((-1149 |#1|) (-1149 |#1|) |#1|) 71)) (-4006 (((-1149 |#1|) (-1149 |#1|)) 62)) (-4027 (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 72)) (-1692 (((-1149 |#1|) |#1|) 67)) (-4038 (((-1149 |#1|) (-1149 (-1149 |#1|))) 83)) (-1836 (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 36)) (-1825 (((-1149 |#1|) (-1149 |#1|)) 21) (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 23)) (-1813 (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 17)) (* (((-1149 |#1|) (-1149 |#1|) |#1|) 29) (((-1149 |#1|) |#1| (-1149 |#1|)) 26) (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 27)))
+(((-1153 |#1|) (-10 -7 (-15 -1813 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -1825 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -1825 ((-1149 |#1|) (-1149 |#1|))) (-15 * ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 * ((-1149 |#1|) |#1| (-1149 |#1|))) (-15 * ((-1149 |#1|) (-1149 |#1|) |#1|)) (-15 -3012 ((-3 (-1149 |#1|) "failed") (-1149 |#1|) (-1149 |#1|))) (-15 -1836 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -3951 ((-3 (-1149 |#1|) "failed") (-1149 |#1|))) (-15 -4223 ((-1149 |#1|) |#1| (-563))) (-15 -3962 ((-1149 (-563)) (-563))) (-15 -3972 ((-1149 (-563)) (-563))) (-15 -3982 ((-1149 |#1|) |#1|)) (-15 -3993 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -4006 ((-1149 |#1|) (-1149 |#1|))) (-15 -4016 ((-1149 |#1|) (-1 |#1| (-563)) (-1149 |#1|))) (-15 -1692 ((-1149 |#1|) |#1|)) (-15 -1542 ((-1149 |#1|) (-1149 |#1|) |#1|)) (-15 -4027 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -2044 ((-1149 |#1|) (-1149 |#1|))) (-15 -1996 ((-1149 |#1|) (-1149 |#1|))) (-15 -4038 ((-1149 |#1|) (-1149 (-1149 |#1|)))) (-15 -2035 ((-1149 |#1|) (-1149 |#1|))) (-15 -2024 ((-1149 |#1|) (-1149 |#1|))) (-15 -2013 ((-1149 |#1|) (-1149 |#1|))) (-15 -2006 ((-1149 |#1|) (-1149 |#1|) (-563) (-563))) (-15 -1987 ((-1149 |#1|) (-563) (-563) (-1149 |#1|))) (-15 -1980 ((-1149 |#1|) (-563) (-563) (-1149 |#1|))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -2062 ((-1149 |#1|) |#1| (-1149 |#1|))) (-15 -4050 ((-1149 |#1|) |#1| (-1 (-1149 |#1|)))) (-15 -4061 ((-1149 |#1|) (-1149 (-1149 |#1|)))) (-15 -4072 ((-1149 |#1|) (-407 (-563)) (-1149 |#1|)))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-15 -4083 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -4093 ((-1149 |#1|) (-1 |#1| (-563)) |#1| (-1 (-1149 |#1|)))) (-15 -4104 ((-1149 |#1|) |#1| (-1149 |#1|)))) |%noBranch|)) (-1045)) (T -1153))
+((-4104 (*1 *2 *3 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-363)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-4093 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *4 (-563))) (-5 *5 (-1 (-1149 *4))) (-4 *4 (-363)) (-4 *4 (-1045)) (-5 *2 (-1149 *4)) (-5 *1 (-1153 *4)))) (-4083 (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-363)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-4072 (*1 *2 *3 *2) (-12 (-5 *2 (-1149 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1045)) (-5 *3 (-407 (-563))) (-5 *1 (-1153 *4)))) (-4061 (*1 *2 *3) (-12 (-5 *3 (-1149 (-1149 *4))) (-5 *2 (-1149 *4)) (-5 *1 (-1153 *4)) (-4 *4 (-38 (-407 (-563)))) (-4 *4 (-1045)))) (-4050 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-1149 *3))) (-5 *2 (-1149 *3)) (-5 *1 (-1153 *3)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)))) (-2062 (*1 *2 *3 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1980 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-1045)) (-5 *1 (-1153 *4)))) (-1987 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-1045)) (-5 *1 (-1153 *4)))) (-2006 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-1045)) (-5 *1 (-1153 *4)))) (-2013 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-2024 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-2035 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-4038 (*1 *2 *3) (-12 (-5 *3 (-1149 (-1149 *4))) (-5 *2 (-1149 *4)) (-5 *1 (-1153 *4)) (-4 *4 (-1045)))) (-1996 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-2044 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-4027 (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1542 (*1 *2 *2 *3) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1692 (*1 *2 *3) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-1153 *3)) (-4 *3 (-1045)))) (-4016 (*1 *2 *3 *2) (-12 (-5 *2 (-1149 *4)) (-5 *3 (-1 *4 (-563))) (-4 *4 (-1045)) (-5 *1 (-1153 *4)))) (-4006 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-3993 (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-3982 (*1 *2 *3) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-1153 *3)) (-4 *3 (-1045)))) (-3972 (*1 *2 *3) (-12 (-5 *2 (-1149 (-563))) (-5 *1 (-1153 *4)) (-4 *4 (-1045)) (-5 *3 (-563)))) (-3962 (*1 *2 *3) (-12 (-5 *2 (-1149 (-563))) (-5 *1 (-1153 *4)) (-4 *4 (-1045)) (-5 *3 (-563)))) (-4223 (*1 *2 *3 *4) (-12 (-5 *4 (-563)) (-5 *2 (-1149 *3)) (-5 *1 (-1153 *3)) (-4 *3 (-1045)))) (-3951 (*1 *2 *2) (|partial| -12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1836 (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-3012 (*1 *2 *2 *2) (|partial| -12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (* (*1 *2 *2 *3) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1825 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1825 (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))) (-1813 (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))))
+(-10 -7 (-15 -1813 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -1825 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -1825 ((-1149 |#1|) (-1149 |#1|))) (-15 * ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 * ((-1149 |#1|) |#1| (-1149 |#1|))) (-15 * ((-1149 |#1|) (-1149 |#1|) |#1|)) (-15 -3012 ((-3 (-1149 |#1|) "failed") (-1149 |#1|) (-1149 |#1|))) (-15 -1836 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -3951 ((-3 (-1149 |#1|) "failed") (-1149 |#1|))) (-15 -4223 ((-1149 |#1|) |#1| (-563))) (-15 -3962 ((-1149 (-563)) (-563))) (-15 -3972 ((-1149 (-563)) (-563))) (-15 -3982 ((-1149 |#1|) |#1|)) (-15 -3993 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -4006 ((-1149 |#1|) (-1149 |#1|))) (-15 -4016 ((-1149 |#1|) (-1 |#1| (-563)) (-1149 |#1|))) (-15 -1692 ((-1149 |#1|) |#1|)) (-15 -1542 ((-1149 |#1|) (-1149 |#1|) |#1|)) (-15 -4027 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -2044 ((-1149 |#1|) (-1149 |#1|))) (-15 -1996 ((-1149 |#1|) (-1149 |#1|))) (-15 -4038 ((-1149 |#1|) (-1149 (-1149 |#1|)))) (-15 -2035 ((-1149 |#1|) (-1149 |#1|))) (-15 -2024 ((-1149 |#1|) (-1149 |#1|))) (-15 -2013 ((-1149 |#1|) (-1149 |#1|))) (-15 -2006 ((-1149 |#1|) (-1149 |#1|) (-563) (-563))) (-15 -1987 ((-1149 |#1|) (-563) (-563) (-1149 |#1|))) (-15 -1980 ((-1149 |#1|) (-563) (-563) (-1149 |#1|))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -2062 ((-1149 |#1|) |#1| (-1149 |#1|))) (-15 -4050 ((-1149 |#1|) |#1| (-1 (-1149 |#1|)))) (-15 -4061 ((-1149 |#1|) (-1149 (-1149 |#1|)))) (-15 -4072 ((-1149 |#1|) (-407 (-563)) (-1149 |#1|)))) |%noBranch|) (IF (|has| |#1| (-363)) (PROGN (-15 -4083 ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -4093 ((-1149 |#1|) (-1 |#1| (-563)) |#1| (-1 (-1149 |#1|)))) (-15 -4104 ((-1149 |#1|) |#1| (-1149 |#1|)))) |%noBranch|))
+((-1770 (((-1149 |#1|) (-1149 |#1|)) 57)) (-1618 (((-1149 |#1|) (-1149 |#1|)) 39)) (-1747 (((-1149 |#1|) (-1149 |#1|)) 53)) (-1596 (((-1149 |#1|) (-1149 |#1|)) 35)) (-1793 (((-1149 |#1|) (-1149 |#1|)) 60)) (-1642 (((-1149 |#1|) (-1149 |#1|)) 42)) (-4372 (((-1149 |#1|) (-1149 |#1|)) 31)) (-3372 (((-1149 |#1|) (-1149 |#1|)) 27)) (-1805 (((-1149 |#1|) (-1149 |#1|)) 61)) (-1655 (((-1149 |#1|) (-1149 |#1|)) 43)) (-1783 (((-1149 |#1|) (-1149 |#1|)) 58)) (-1629 (((-1149 |#1|) (-1149 |#1|)) 40)) (-1758 (((-1149 |#1|) (-1149 |#1|)) 55)) (-1607 (((-1149 |#1|) (-1149 |#1|)) 37)) (-1839 (((-1149 |#1|) (-1149 |#1|)) 65)) (-1694 (((-1149 |#1|) (-1149 |#1|)) 47)) (-1816 (((-1149 |#1|) (-1149 |#1|)) 63)) (-1666 (((-1149 |#1|) (-1149 |#1|)) 45)) (-1861 (((-1149 |#1|) (-1149 |#1|)) 68)) (-1721 (((-1149 |#1|) (-1149 |#1|)) 50)) (-1311 (((-1149 |#1|) (-1149 |#1|)) 69)) (-1734 (((-1149 |#1|) (-1149 |#1|)) 51)) (-1850 (((-1149 |#1|) (-1149 |#1|)) 67)) (-1709 (((-1149 |#1|) (-1149 |#1|)) 49)) (-1828 (((-1149 |#1|) (-1149 |#1|)) 66)) (-1679 (((-1149 |#1|) (-1149 |#1|)) 48)) (** (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 33)))
+(((-1154 |#1|) (-10 -7 (-15 -3372 ((-1149 |#1|) (-1149 |#1|))) (-15 -4372 ((-1149 |#1|) (-1149 |#1|))) (-15 ** ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -1596 ((-1149 |#1|) (-1149 |#1|))) (-15 -1607 ((-1149 |#1|) (-1149 |#1|))) (-15 -1618 ((-1149 |#1|) (-1149 |#1|))) (-15 -1629 ((-1149 |#1|) (-1149 |#1|))) (-15 -1642 ((-1149 |#1|) (-1149 |#1|))) (-15 -1655 ((-1149 |#1|) (-1149 |#1|))) (-15 -1666 ((-1149 |#1|) (-1149 |#1|))) (-15 -1679 ((-1149 |#1|) (-1149 |#1|))) (-15 -1694 ((-1149 |#1|) (-1149 |#1|))) (-15 -1709 ((-1149 |#1|) (-1149 |#1|))) (-15 -1721 ((-1149 |#1|) (-1149 |#1|))) (-15 -1734 ((-1149 |#1|) (-1149 |#1|))) (-15 -1747 ((-1149 |#1|) (-1149 |#1|))) (-15 -1758 ((-1149 |#1|) (-1149 |#1|))) (-15 -1770 ((-1149 |#1|) (-1149 |#1|))) (-15 -1783 ((-1149 |#1|) (-1149 |#1|))) (-15 -1793 ((-1149 |#1|) (-1149 |#1|))) (-15 -1805 ((-1149 |#1|) (-1149 |#1|))) (-15 -1816 ((-1149 |#1|) (-1149 |#1|))) (-15 -1828 ((-1149 |#1|) (-1149 |#1|))) (-15 -1839 ((-1149 |#1|) (-1149 |#1|))) (-15 -1850 ((-1149 |#1|) (-1149 |#1|))) (-15 -1861 ((-1149 |#1|) (-1149 |#1|))) (-15 -1311 ((-1149 |#1|) (-1149 |#1|)))) (-38 (-407 (-563)))) (T -1154))
+((-1311 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1861 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1850 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1839 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1828 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1816 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1805 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1793 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1783 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1770 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1758 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1747 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1734 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1721 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1709 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1694 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1679 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1666 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1655 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1642 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1629 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1618 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1607 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-1596 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-4372 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))) (-3372 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1154 *3)))))
+(-10 -7 (-15 -3372 ((-1149 |#1|) (-1149 |#1|))) (-15 -4372 ((-1149 |#1|) (-1149 |#1|))) (-15 ** ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -1596 ((-1149 |#1|) (-1149 |#1|))) (-15 -1607 ((-1149 |#1|) (-1149 |#1|))) (-15 -1618 ((-1149 |#1|) (-1149 |#1|))) (-15 -1629 ((-1149 |#1|) (-1149 |#1|))) (-15 -1642 ((-1149 |#1|) (-1149 |#1|))) (-15 -1655 ((-1149 |#1|) (-1149 |#1|))) (-15 -1666 ((-1149 |#1|) (-1149 |#1|))) (-15 -1679 ((-1149 |#1|) (-1149 |#1|))) (-15 -1694 ((-1149 |#1|) (-1149 |#1|))) (-15 -1709 ((-1149 |#1|) (-1149 |#1|))) (-15 -1721 ((-1149 |#1|) (-1149 |#1|))) (-15 -1734 ((-1149 |#1|) (-1149 |#1|))) (-15 -1747 ((-1149 |#1|) (-1149 |#1|))) (-15 -1758 ((-1149 |#1|) (-1149 |#1|))) (-15 -1770 ((-1149 |#1|) (-1149 |#1|))) (-15 -1783 ((-1149 |#1|) (-1149 |#1|))) (-15 -1793 ((-1149 |#1|) (-1149 |#1|))) (-15 -1805 ((-1149 |#1|) (-1149 |#1|))) (-15 -1816 ((-1149 |#1|) (-1149 |#1|))) (-15 -1828 ((-1149 |#1|) (-1149 |#1|))) (-15 -1839 ((-1149 |#1|) (-1149 |#1|))) (-15 -1850 ((-1149 |#1|) (-1149 |#1|))) (-15 -1861 ((-1149 |#1|) (-1149 |#1|))) (-15 -1311 ((-1149 |#1|) (-1149 |#1|))))
+((-1770 (((-1149 |#1|) (-1149 |#1|)) 100)) (-1618 (((-1149 |#1|) (-1149 |#1|)) 64)) (-4127 (((-2 (|:| -1747 (-1149 |#1|)) (|:| -1758 (-1149 |#1|))) (-1149 |#1|)) 96)) (-1747 (((-1149 |#1|) (-1149 |#1|)) 97)) (-4117 (((-2 (|:| -1596 (-1149 |#1|)) (|:| -1607 (-1149 |#1|))) (-1149 |#1|)) 53)) (-1596 (((-1149 |#1|) (-1149 |#1|)) 54)) (-1793 (((-1149 |#1|) (-1149 |#1|)) 102)) (-1642 (((-1149 |#1|) (-1149 |#1|)) 71)) (-4372 (((-1149 |#1|) (-1149 |#1|)) 39)) (-3372 (((-1149 |#1|) (-1149 |#1|)) 36)) (-1805 (((-1149 |#1|) (-1149 |#1|)) 103)) (-1655 (((-1149 |#1|) (-1149 |#1|)) 72)) (-1783 (((-1149 |#1|) (-1149 |#1|)) 101)) (-1629 (((-1149 |#1|) (-1149 |#1|)) 67)) (-1758 (((-1149 |#1|) (-1149 |#1|)) 98)) (-1607 (((-1149 |#1|) (-1149 |#1|)) 55)) (-1839 (((-1149 |#1|) (-1149 |#1|)) 111)) (-1694 (((-1149 |#1|) (-1149 |#1|)) 86)) (-1816 (((-1149 |#1|) (-1149 |#1|)) 105)) (-1666 (((-1149 |#1|) (-1149 |#1|)) 82)) (-1861 (((-1149 |#1|) (-1149 |#1|)) 115)) (-1721 (((-1149 |#1|) (-1149 |#1|)) 90)) (-1311 (((-1149 |#1|) (-1149 |#1|)) 117)) (-1734 (((-1149 |#1|) (-1149 |#1|)) 92)) (-1850 (((-1149 |#1|) (-1149 |#1|)) 113)) (-1709 (((-1149 |#1|) (-1149 |#1|)) 88)) (-1828 (((-1149 |#1|) (-1149 |#1|)) 107)) (-1679 (((-1149 |#1|) (-1149 |#1|)) 84)) (** (((-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) 40)))
+(((-1155 |#1|) (-10 -7 (-15 -3372 ((-1149 |#1|) (-1149 |#1|))) (-15 -4372 ((-1149 |#1|) (-1149 |#1|))) (-15 ** ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -4117 ((-2 (|:| -1596 (-1149 |#1|)) (|:| -1607 (-1149 |#1|))) (-1149 |#1|))) (-15 -1596 ((-1149 |#1|) (-1149 |#1|))) (-15 -1607 ((-1149 |#1|) (-1149 |#1|))) (-15 -1618 ((-1149 |#1|) (-1149 |#1|))) (-15 -1629 ((-1149 |#1|) (-1149 |#1|))) (-15 -1642 ((-1149 |#1|) (-1149 |#1|))) (-15 -1655 ((-1149 |#1|) (-1149 |#1|))) (-15 -1666 ((-1149 |#1|) (-1149 |#1|))) (-15 -1679 ((-1149 |#1|) (-1149 |#1|))) (-15 -1694 ((-1149 |#1|) (-1149 |#1|))) (-15 -1709 ((-1149 |#1|) (-1149 |#1|))) (-15 -1721 ((-1149 |#1|) (-1149 |#1|))) (-15 -1734 ((-1149 |#1|) (-1149 |#1|))) (-15 -4127 ((-2 (|:| -1747 (-1149 |#1|)) (|:| -1758 (-1149 |#1|))) (-1149 |#1|))) (-15 -1747 ((-1149 |#1|) (-1149 |#1|))) (-15 -1758 ((-1149 |#1|) (-1149 |#1|))) (-15 -1770 ((-1149 |#1|) (-1149 |#1|))) (-15 -1783 ((-1149 |#1|) (-1149 |#1|))) (-15 -1793 ((-1149 |#1|) (-1149 |#1|))) (-15 -1805 ((-1149 |#1|) (-1149 |#1|))) (-15 -1816 ((-1149 |#1|) (-1149 |#1|))) (-15 -1828 ((-1149 |#1|) (-1149 |#1|))) (-15 -1839 ((-1149 |#1|) (-1149 |#1|))) (-15 -1850 ((-1149 |#1|) (-1149 |#1|))) (-15 -1861 ((-1149 |#1|) (-1149 |#1|))) (-15 -1311 ((-1149 |#1|) (-1149 |#1|)))) (-38 (-407 (-563)))) (T -1155))
+((-1311 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1861 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1850 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1839 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1828 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1816 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1805 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1793 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1783 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1770 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1758 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1747 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-4127 (*1 *2 *3) (-12 (-4 *4 (-38 (-407 (-563)))) (-5 *2 (-2 (|:| -1747 (-1149 *4)) (|:| -1758 (-1149 *4)))) (-5 *1 (-1155 *4)) (-5 *3 (-1149 *4)))) (-1734 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1721 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1709 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1694 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1679 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1666 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1655 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1642 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1629 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1618 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1607 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-1596 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-4117 (*1 *2 *3) (-12 (-4 *4 (-38 (-407 (-563)))) (-5 *2 (-2 (|:| -1596 (-1149 *4)) (|:| -1607 (-1149 *4)))) (-5 *1 (-1155 *4)) (-5 *3 (-1149 *4)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-4372 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))) (-3372 (*1 *2 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1155 *3)))))
+(-10 -7 (-15 -3372 ((-1149 |#1|) (-1149 |#1|))) (-15 -4372 ((-1149 |#1|) (-1149 |#1|))) (-15 ** ((-1149 |#1|) (-1149 |#1|) (-1149 |#1|))) (-15 -4117 ((-2 (|:| -1596 (-1149 |#1|)) (|:| -1607 (-1149 |#1|))) (-1149 |#1|))) (-15 -1596 ((-1149 |#1|) (-1149 |#1|))) (-15 -1607 ((-1149 |#1|) (-1149 |#1|))) (-15 -1618 ((-1149 |#1|) (-1149 |#1|))) (-15 -1629 ((-1149 |#1|) (-1149 |#1|))) (-15 -1642 ((-1149 |#1|) (-1149 |#1|))) (-15 -1655 ((-1149 |#1|) (-1149 |#1|))) (-15 -1666 ((-1149 |#1|) (-1149 |#1|))) (-15 -1679 ((-1149 |#1|) (-1149 |#1|))) (-15 -1694 ((-1149 |#1|) (-1149 |#1|))) (-15 -1709 ((-1149 |#1|) (-1149 |#1|))) (-15 -1721 ((-1149 |#1|) (-1149 |#1|))) (-15 -1734 ((-1149 |#1|) (-1149 |#1|))) (-15 -4127 ((-2 (|:| -1747 (-1149 |#1|)) (|:| -1758 (-1149 |#1|))) (-1149 |#1|))) (-15 -1747 ((-1149 |#1|) (-1149 |#1|))) (-15 -1758 ((-1149 |#1|) (-1149 |#1|))) (-15 -1770 ((-1149 |#1|) (-1149 |#1|))) (-15 -1783 ((-1149 |#1|) (-1149 |#1|))) (-15 -1793 ((-1149 |#1|) (-1149 |#1|))) (-15 -1805 ((-1149 |#1|) (-1149 |#1|))) (-15 -1816 ((-1149 |#1|) (-1149 |#1|))) (-15 -1828 ((-1149 |#1|) (-1149 |#1|))) (-15 -1839 ((-1149 |#1|) (-1149 |#1|))) (-15 -1850 ((-1149 |#1|) (-1149 |#1|))) (-15 -1861 ((-1149 |#1|) (-1149 |#1|))) (-15 -1311 ((-1149 |#1|) (-1149 |#1|))))
+((-4139 (((-954 |#2|) |#2| |#2|) 35)) (-4151 ((|#2| |#2| |#1|) 19 (|has| |#1| (-307)))))
+(((-1156 |#1| |#2|) (-10 -7 (-15 -4139 ((-954 |#2|) |#2| |#2|)) (IF (|has| |#1| (-307)) (-15 -4151 (|#2| |#2| |#1|)) |%noBranch|)) (-555) (-1233 |#1|)) (T -1156))
+((-4151 (*1 *2 *2 *3) (-12 (-4 *3 (-307)) (-4 *3 (-555)) (-5 *1 (-1156 *3 *2)) (-4 *2 (-1233 *3)))) (-4139 (*1 *2 *3 *3) (-12 (-4 *4 (-555)) (-5 *2 (-954 *3)) (-5 *1 (-1156 *4 *3)) (-4 *3 (-1233 *4)))))
+(-10 -7 (-15 -4139 ((-954 |#2|) |#2| |#2|)) (IF (|has| |#1| (-307)) (-15 -4151 (|#2| |#2| |#1|)) |%noBranch|))
+((-1677 (((-112) $ $) NIL)) (-4222 (($ $ (-640 (-767))) 66)) (-1414 (($) 25)) (-4322 (($ $) 41)) (-1550 (((-640 $) $) 50)) (-4387 (((-112) $) 16)) (-4161 (((-640 (-939 |#2|)) $) 73)) (-4170 (($ $) 67)) (-4333 (((-767) $) 36)) (-1565 (($) 24)) (-4254 (($ $ (-640 (-767)) (-939 |#2|)) 59) (($ $ (-640 (-767)) (-767)) 60) (($ $ (-767) (-939 |#2|)) 62)) (-4300 (($ $ $) 47) (($ (-640 $)) 49)) (-1407 (((-767) $) 74)) (-1298 (((-112) $) 15)) (-3854 (((-1151) $) NIL)) (-4376 (((-112) $) 17)) (-1693 (((-1113) $) NIL)) (-4179 (((-171) $) 72)) (-4213 (((-939 |#2|) $) 68)) (-4202 (((-767) $) 69)) (-4192 (((-112) $) 71)) (-4232 (($ $ (-640 (-767)) (-171)) 65)) (-4311 (($ $) 42)) (-1692 (((-858) $) 85)) (-4242 (($ $ (-640 (-767)) (-112)) 64)) (-4345 (((-640 $) $) 11)) (-4355 (($ $ (-767)) 35)) (-4364 (($ $) 31)) (-4267 (($ $ $ (-939 |#2|) (-767)) 55)) (-4278 (($ $ (-939 |#2|)) 54)) (-4290 (($ $ (-640 (-767)) (-939 |#2|)) 53) (($ $ (-640 (-767)) (-767)) 57) (((-767) $ (-939 |#2|)) 58)) (-1718 (((-112) $ $) 79)))
+(((-1157 |#1| |#2|) (-13 (-1093) (-10 -8 (-15 -1298 ((-112) $)) (-15 -4387 ((-112) $)) (-15 -4376 ((-112) $)) (-15 -1565 ($)) (-15 -1414 ($)) (-15 -4364 ($ $)) (-15 -4355 ($ $ (-767))) (-15 -4345 ((-640 $) $)) (-15 -4333 ((-767) $)) (-15 -4322 ($ $)) (-15 -4311 ($ $)) (-15 -4300 ($ $ $)) (-15 -4300 ($ (-640 $))) (-15 -1550 ((-640 $) $)) (-15 -4290 ($ $ (-640 (-767)) (-939 |#2|))) (-15 -4278 ($ $ (-939 |#2|))) (-15 -4267 ($ $ $ (-939 |#2|) (-767))) (-15 -4254 ($ $ (-640 (-767)) (-939 |#2|))) (-15 -4290 ($ $ (-640 (-767)) (-767))) (-15 -4254 ($ $ (-640 (-767)) (-767))) (-15 -4290 ((-767) $ (-939 |#2|))) (-15 -4254 ($ $ (-767) (-939 |#2|))) (-15 -4242 ($ $ (-640 (-767)) (-112))) (-15 -4232 ($ $ (-640 (-767)) (-171))) (-15 -4222 ($ $ (-640 (-767)))) (-15 -4213 ((-939 |#2|) $)) (-15 -4202 ((-767) $)) (-15 -4192 ((-112) $)) (-15 -4179 ((-171) $)) (-15 -1407 ((-767) $)) (-15 -4170 ($ $)) (-15 -4161 ((-640 (-939 |#2|)) $)))) (-917) (-1045)) (T -1157))
+((-1298 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-4387 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-4376 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-1565 (*1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))) (-1414 (*1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))) (-4364 (*1 *1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))) (-4355 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-4345 (*1 *2 *1) (-12 (-5 *2 (-640 (-1157 *3 *4))) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-4333 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-4322 (*1 *1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))) (-4311 (*1 *1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))) (-4300 (*1 *1 *1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))) (-4300 (*1 *1 *2) (-12 (-5 *2 (-640 (-1157 *3 *4))) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-1550 (*1 *2 *1) (-12 (-5 *2 (-640 (-1157 *3 *4))) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-4290 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-767))) (-5 *3 (-939 *5)) (-4 *5 (-1045)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))) (-4278 (*1 *1 *1 *2) (-12 (-5 *2 (-939 *4)) (-4 *4 (-1045)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)))) (-4267 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-939 *5)) (-5 *3 (-767)) (-4 *5 (-1045)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))) (-4254 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-767))) (-5 *3 (-939 *5)) (-4 *5 (-1045)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))) (-4290 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-767))) (-5 *3 (-767)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)) (-4 *5 (-1045)))) (-4254 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-767))) (-5 *3 (-767)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)) (-4 *5 (-1045)))) (-4290 (*1 *2 *1 *3) (-12 (-5 *3 (-939 *5)) (-4 *5 (-1045)) (-5 *2 (-767)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))) (-4254 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *3 (-939 *5)) (-4 *5 (-1045)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))) (-4242 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-767))) (-5 *3 (-112)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)) (-4 *5 (-1045)))) (-4232 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-640 (-767))) (-5 *3 (-171)) (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)) (-4 *5 (-1045)))) (-4222 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-767))) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-4213 (*1 *2 *1) (-12 (-5 *2 (-939 *4)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-4202 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-4192 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-4179 (*1 *2 *1) (-12 (-5 *2 (-171)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-1407 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))) (-4170 (*1 *1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))) (-4161 (*1 *2 *1) (-12 (-5 *2 (-640 (-939 *4))) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917)) (-4 *4 (-1045)))))
+(-13 (-1093) (-10 -8 (-15 -1298 ((-112) $)) (-15 -4387 ((-112) $)) (-15 -4376 ((-112) $)) (-15 -1565 ($)) (-15 -1414 ($)) (-15 -4364 ($ $)) (-15 -4355 ($ $ (-767))) (-15 -4345 ((-640 $) $)) (-15 -4333 ((-767) $)) (-15 -4322 ($ $)) (-15 -4311 ($ $)) (-15 -4300 ($ $ $)) (-15 -4300 ($ (-640 $))) (-15 -1550 ((-640 $) $)) (-15 -4290 ($ $ (-640 (-767)) (-939 |#2|))) (-15 -4278 ($ $ (-939 |#2|))) (-15 -4267 ($ $ $ (-939 |#2|) (-767))) (-15 -4254 ($ $ (-640 (-767)) (-939 |#2|))) (-15 -4290 ($ $ (-640 (-767)) (-767))) (-15 -4254 ($ $ (-640 (-767)) (-767))) (-15 -4290 ((-767) $ (-939 |#2|))) (-15 -4254 ($ $ (-767) (-939 |#2|))) (-15 -4242 ($ $ (-640 (-767)) (-112))) (-15 -4232 ($ $ (-640 (-767)) (-171))) (-15 -4222 ($ $ (-640 (-767)))) (-15 -4213 ((-939 |#2|) $)) (-15 -4202 ((-767) $)) (-15 -4192 ((-112) $)) (-15 -4179 ((-171) $)) (-15 -1407 ((-767) $)) (-15 -4170 ($ $)) (-15 -4161 ((-640 (-939 |#2|)) $))))
+((-1677 (((-112) $ $) NIL)) (-2350 ((|#2| $) 11)) (-2339 ((|#1| $) 10)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1706 (($ |#1| |#2|) 9)) (-1692 (((-858) $) 16)) (-1718 (((-112) $ $) NIL)))
+(((-1158 |#1| |#2|) (-13 (-1093) (-10 -8 (-15 -1706 ($ |#1| |#2|)) (-15 -2339 (|#1| $)) (-15 -2350 (|#2| $)))) (-1093) (-1093)) (T -1158))
+((-1706 (*1 *1 *2 *3) (-12 (-5 *1 (-1158 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-2339 (*1 *2 *1) (-12 (-4 *2 (-1093)) (-5 *1 (-1158 *2 *3)) (-4 *3 (-1093)))) (-2350 (*1 *2 *1) (-12 (-4 *2 (-1093)) (-5 *1 (-1158 *3 *2)) (-4 *3 (-1093)))))
+(-13 (-1093) (-10 -8 (-15 -1706 ($ |#1| |#2|)) (-15 -2339 (|#1| $)) (-15 -2350 (|#2| $))))
+((-1677 (((-112) $ $) NIL)) (-3301 (((-1128) $) 9)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 17) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-1159) (-13 (-1076) (-10 -8 (-15 -3301 ((-1128) $))))) (T -1159))
((-3301 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1159)))))
(-13 (-1076) (-10 -8 (-15 -3301 ((-1128) $))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3401 (((-1167 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-307)) (|has| |#1| (-363))))) (-2606 (((-640 (-1075)) $) NIL)) (-2518 (((-1169) $) 11)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-4223 (($ $) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-3156 (((-112) $) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-2421 (($ $ (-563)) NIL) (($ $ (-563) (-563)) 66)) (-1539 (((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $) NIL)) (-2084 (((-1167 |#1| |#2| |#3|) $) 36)) (-3258 (((-3 (-1167 |#1| |#2| |#3|) "failed") $) 29)) (-2652 (((-1167 |#1| |#2| |#3|) $) 30)) (-1771 (($ $) 107 (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) 83 (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-4335 (($ $) NIL (|has| |#1| (-363)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2186 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-1919 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1748 (($ $) 103 (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) 79 (|has| |#1| (-38 (-407 (-563)))))) (-1857 (((-563) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-3045 (($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|)))) NIL)) (-1794 (($ $) 111 (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) 87 (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-1167 |#1| |#2| |#3|) "failed") $) 31) (((-3 (-1169) "failed") $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-1169))) (|has| |#1| (-363)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363)))) (((-3 (-563) "failed") $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363))))) (-2058 (((-1167 |#1| |#2| |#3|) $) 131) (((-1169) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-1169))) (|has| |#1| (-363)))) (((-407 (-563)) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363)))) (((-563) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363))))) (-2457 (($ $) 34) (($ (-563) $) 35)) (-3090 (($ $ $) NIL (|has| |#1| (-363)))) (-2751 (($ $) NIL)) (-2950 (((-684 (-1167 |#1| |#2| |#3|)) (-684 $)) NIL (|has| |#1| (-363))) (((-2 (|:| -2835 (-684 (-1167 |#1| |#2| |#3|))) (|:| |vec| (-1257 (-1167 |#1| |#2| |#3|)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-363))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-636 (-563))) (|has| |#1| (-363)))) (((-684 (-563)) (-684 $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-636 (-563))) (|has| |#1| (-363))))) (-3400 (((-3 $ "failed") $) 48)) (-4064 (((-407 (-948 |#1|)) $ (-563)) 65 (|has| |#1| (-555))) (((-407 (-948 |#1|)) $ (-563) (-563)) 67 (|has| |#1| (-555)))) (-1691 (($) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-545)) (|has| |#1| (-363))))) (-3050 (($ $ $) NIL (|has| |#1| (-363)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2468 (((-112) $) NIL (|has| |#1| (-363)))) (-3101 (((-112) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-2788 (((-112) $) 25)) (-2180 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-882 (-379))) (|has| |#1| (-363)))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-882 (-563))) (|has| |#1| (-363))))) (-3254 (((-563) $) NIL) (((-563) $ (-563)) 24)) (-3827 (((-112) $) NIL)) (-2711 (($ $) NIL (|has| |#1| (-363)))) (-2143 (((-1167 |#1| |#2| |#3|) $) 38 (|has| |#1| (-363)))) (-1645 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2408 (((-3 $ "failed") $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1144)) (|has| |#1| (-363))))) (-1419 (((-112) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-1351 (($ $ (-917)) NIL)) (-2831 (($ (-1 |#1| (-563)) $) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-563)) 18) (($ $ (-1075) (-563)) NIL) (($ $ (-640 (-1075)) (-640 (-563))) NIL)) (-3084 (($ $ $) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1777 (($ $ $) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-363)))) (-4371 (($ $) 72 (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2660 (($ (-563) (-1167 |#1| |#2| |#3|)) 33)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL (|has| |#1| (-363)))) (-3698 (($ $) 70 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) NIL (-4032 (-12 (|has| |#1| (-15 -3698 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2606 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193))))) (($ $ (-1253 |#2|)) 71 (|has| |#1| (-38 (-407 (-563)))))) (-2523 (($) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1144)) (|has| |#1| (-363))) CONST)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-4215 (($ $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-307)) (|has| |#1| (-363))))) (-1583 (((-1167 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-545)) (|has| |#1| (-363))))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-2174 (((-418 $) $) NIL (|has| |#1| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3320 (($ $ (-563)) 145)) (-3008 (((-3 $ "failed") $ $) 49 (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3368 (($ $) 73 (|has| |#1| (-38 (-407 (-563)))))) (-1540 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-563))))) (($ $ (-1169) (-1167 |#1| |#2| |#3|)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-514 (-1169) (-1167 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-640 (-1169)) (-640 (-1167 |#1| |#2| |#3|))) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-514 (-1169) (-1167 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-640 (-294 (-1167 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-309 (-1167 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-294 (-1167 |#1| |#2| |#3|))) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-309 (-1167 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-309 (-1167 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-640 (-1167 |#1| |#2| |#3|)) (-640 (-1167 |#1| |#2| |#3|))) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-309 (-1167 |#1| |#2| |#3|))) (|has| |#1| (-363))))) (-2628 (((-767) $) NIL (|has| |#1| (-363)))) (-2309 ((|#1| $ (-563)) NIL) (($ $ $) 54 (|has| (-563) (-1105))) (($ $ (-1167 |#1| |#2| |#3|)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-286 (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|))) (|has| |#1| (-363))))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-4202 (($ $ (-1 (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|))) NIL (|has| |#1| (-363))) (($ $ (-1 (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|)) (-767)) NIL (|has| |#1| (-363))) (($ $ (-1253 |#2|)) 51) (($ $ (-767)) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) 50 (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169) (-767)) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-640 (-1169))) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169)) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))) (-1801 (($ $) NIL (|has| |#1| (-363)))) (-2154 (((-1167 |#1| |#2| |#3|) $) 41 (|has| |#1| (-363)))) (-4167 (((-563) $) 37)) (-1806 (($ $) 113 (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) 89 (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) 109 (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) 85 (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) 105 (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) 81 (|has| |#1| (-38 (-407 (-563)))))) (-2220 (((-536) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-611 (-536))) (|has| |#1| (-363)))) (((-379) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1018)) (|has| |#1| (-363)))) (((-225) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1018)) (|has| |#1| (-363)))) (((-888 (-379)) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-611 (-888 (-379)))) (|has| |#1| (-363)))) (((-888 (-563)) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-611 (-888 (-563)))) (|has| |#1| (-363))))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-1741 (($ $) NIL)) (-1693 (((-858) $) 149) (($ (-563)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1167 |#1| |#2| |#3|)) 27) (($ (-1253 |#2|)) 23) (($ (-1169)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-1169))) (|has| |#1| (-363)))) (($ $) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555)))) (($ (-407 (-563))) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363))) (|has| |#1| (-38 (-407 (-563))))))) (-4319 ((|#1| $ (-563)) 68)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-145)) (|has| |#1| (-363))) (|has| |#1| (-145))))) (-1675 (((-767)) NIL)) (-3408 ((|#1| $) 12)) (-4194 (((-1167 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-545)) (|has| |#1| (-363))))) (-1840 (($ $) 119 (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) 95 (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-1817 (($ $) 115 (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) 91 (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) 123 (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) 99 (|has| |#1| (-38 (-407 (-563)))))) (-1403 ((|#1| $ (-563)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-563)))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-1311 (($ $) 125 (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) 101 (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) 121 (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) 97 (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) 117 (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) 93 (|has| |#1| (-38 (-407 (-563)))))) (-2509 (($ $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-2241 (($) 20 T CONST)) (-2254 (($) 16 T CONST)) (-3209 (($ $ (-1 (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|))) NIL (|has| |#1| (-363))) (($ $ (-1 (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|)) (-767)) NIL (|has| |#1| (-363))) (($ $ (-767)) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169) (-767)) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-640 (-1169))) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169)) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))) (-1778 (((-112) $ $) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1756 (((-112) $ $) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1744 (((-112) $ $) NIL (-4032 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) 44 (|has| |#1| (-363))) (($ (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|)) 45 (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) 21)) (** (($ $ (-917)) NIL) (($ $ (-767)) 53) (($ $ (-563)) NIL (|has| |#1| (-363))) (($ $ $) 74 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 128 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 32) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1167 |#1| |#2| |#3|)) 43 (|has| |#1| (-363))) (($ (-1167 |#1| |#2| |#3|) $) 42 (|has| |#1| (-363))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
-(((-1160 |#1| |#2| |#3|) (-13 (-1219 |#1| (-1167 |#1| |#2| |#3|)) (-10 -8 (-15 -1693 ($ (-1253 |#2|))) (-15 -4202 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1253 |#2|))) |%noBranch|))) (-1045) (-1169) |#1|) (T -1160))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1160 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-4202 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1160 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-3698 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1160 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
-(-13 (-1219 |#1| (-1167 |#1| |#2| |#3|)) (-10 -8 (-15 -1693 ($ (-1253 |#2|))) (-15 -4202 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1253 |#2|))) |%noBranch|)))
-((-2236 ((|#2| |#2| (-1085 |#2|)) 26) ((|#2| |#2| (-1169)) 28)))
-(((-1161 |#1| |#2|) (-10 -7 (-15 -2236 (|#2| |#2| (-1169))) (-15 -2236 (|#2| |#2| (-1085 |#2|)))) (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-430 |#1|) (-160) (-27) (-1193))) (T -1161))
-((-2236 (*1 *2 *2 *3) (-12 (-5 *3 (-1085 *2)) (-4 *2 (-13 (-430 *4) (-160) (-27) (-1193))) (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1161 *4 *2)))) (-2236 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1161 *4 *2)) (-4 *2 (-13 (-430 *4) (-160) (-27) (-1193))))))
-(-10 -7 (-15 -2236 (|#2| |#2| (-1169))) (-15 -2236 (|#2| |#2| (-1085 |#2|))))
-((-2236 (((-3 (-407 (-948 |#1|)) (-316 |#1|)) (-407 (-948 |#1|)) (-1085 (-407 (-948 |#1|)))) 31) (((-407 (-948 |#1|)) (-948 |#1|) (-1085 (-948 |#1|))) 44) (((-3 (-407 (-948 |#1|)) (-316 |#1|)) (-407 (-948 |#1|)) (-1169)) 33) (((-407 (-948 |#1|)) (-948 |#1|) (-1169)) 36)))
-(((-1162 |#1|) (-10 -7 (-15 -2236 ((-407 (-948 |#1|)) (-948 |#1|) (-1169))) (-15 -2236 ((-3 (-407 (-948 |#1|)) (-316 |#1|)) (-407 (-948 |#1|)) (-1169))) (-15 -2236 ((-407 (-948 |#1|)) (-948 |#1|) (-1085 (-948 |#1|)))) (-15 -2236 ((-3 (-407 (-948 |#1|)) (-316 |#1|)) (-407 (-948 |#1|)) (-1085 (-407 (-948 |#1|)))))) (-13 (-555) (-846) (-1034 (-563)))) (T -1162))
-((-2236 (*1 *2 *3 *4) (-12 (-5 *4 (-1085 (-407 (-948 *5)))) (-5 *3 (-407 (-948 *5))) (-4 *5 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-3 *3 (-316 *5))) (-5 *1 (-1162 *5)))) (-2236 (*1 *2 *3 *4) (-12 (-5 *4 (-1085 (-948 *5))) (-5 *3 (-948 *5)) (-4 *5 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-407 *3)) (-5 *1 (-1162 *5)))) (-2236 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-3 (-407 (-948 *5)) (-316 *5))) (-5 *1 (-1162 *5)) (-5 *3 (-407 (-948 *5))))) (-2236 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-407 (-948 *5))) (-5 *1 (-1162 *5)) (-5 *3 (-948 *5)))))
-(-10 -7 (-15 -2236 ((-407 (-948 |#1|)) (-948 |#1|) (-1169))) (-15 -2236 ((-3 (-407 (-948 |#1|)) (-316 |#1|)) (-407 (-948 |#1|)) (-1169))) (-15 -2236 ((-407 (-948 |#1|)) (-948 |#1|) (-1085 (-948 |#1|)))) (-15 -2236 ((-3 (-407 (-948 |#1|)) (-316 |#1|)) (-407 (-948 |#1|)) (-1085 (-407 (-948 |#1|))))))
-((-2240 (((-1165 |#2|) (-1 |#2| |#1|) (-1165 |#1|)) 13)))
-(((-1163 |#1| |#2|) (-10 -7 (-15 -2240 ((-1165 |#2|) (-1 |#2| |#1|) (-1165 |#1|)))) (-1045) (-1045)) (T -1163))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1165 *5)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-5 *2 (-1165 *6)) (-5 *1 (-1163 *5 *6)))))
-(-10 -7 (-15 -2240 ((-1165 |#2|) (-1 |#2| |#1|) (-1165 |#1|))))
-((-3205 (((-418 (-1165 (-407 |#4|))) (-1165 (-407 |#4|))) 51)) (-2174 (((-418 (-1165 (-407 |#4|))) (-1165 (-407 |#4|))) 52)))
-(((-1164 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2174 ((-418 (-1165 (-407 |#4|))) (-1165 (-407 |#4|)))) (-15 -3205 ((-418 (-1165 (-407 |#4|))) (-1165 (-407 |#4|))))) (-789) (-846) (-452) (-945 |#3| |#1| |#2|)) (T -1164))
-((-3205 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-452)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-418 (-1165 (-407 *7)))) (-5 *1 (-1164 *4 *5 *6 *7)) (-5 *3 (-1165 (-407 *7))))) (-2174 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-452)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-418 (-1165 (-407 *7)))) (-5 *1 (-1164 *4 *5 *6 *7)) (-5 *3 (-1165 (-407 *7))))))
-(-10 -7 (-15 -2174 ((-418 (-1165 (-407 |#4|))) (-1165 (-407 |#4|)))) (-15 -3205 ((-418 (-1165 (-407 |#4|))) (-1165 (-407 |#4|)))))
-((-1677 (((-112) $ $) 136)) (-3411 (((-112) $) 27)) (-4030 (((-1257 |#1|) $ (-767)) NIL)) (-2606 (((-640 (-1075)) $) NIL)) (-1787 (($ (-1165 |#1|)) NIL)) (-2139 (((-1165 $) $ (-1075)) 58) (((-1165 |#1|) $) 47)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) 131 (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-1779 (((-767) $) NIL) (((-767) $ (-640 (-1075))) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3724 (($ $ $) 125 (|has| |#1| (-555)))) (-2424 (((-418 (-1165 $)) (-1165 $)) 71 (|has| |#1| (-905)))) (-4335 (($ $) NIL (|has| |#1| (-452)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 91 (|has| |#1| (-905)))) (-1919 (((-112) $ $) NIL (|has| |#1| (-363)))) (-3729 (($ $ (-767)) 39)) (-2618 (($ $ (-767)) 40)) (-3018 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-452)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#1| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-1075) "failed") $) NIL)) (-2058 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-1075) $) NIL)) (-2742 (($ $ $ (-1075)) NIL (|has| |#1| (-172))) ((|#1| $ $) 127 (|has| |#1| (-172)))) (-3090 (($ $ $) NIL (|has| |#1| (-363)))) (-2751 (($ $) 56)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-3050 (($ $ $) NIL (|has| |#1| (-363)))) (-4369 (($ $ $) 103)) (-2906 (($ $ $) NIL (|has| |#1| (-555)))) (-2521 (((-2 (|:| -2311 |#1|) (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-555)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-1300 (($ $) 132 (|has| |#1| (-452))) (($ $ (-1075)) NIL (|has| |#1| (-452)))) (-2739 (((-640 $) $) NIL)) (-2468 (((-112) $) NIL (|has| |#1| (-905)))) (-3554 (($ $ |#1| (-767) $) 45)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1075) (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1075) (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-2349 (((-858) $ (-858)) 116)) (-3254 (((-767) $ $) NIL (|has| |#1| (-555)))) (-3827 (((-112) $) 30)) (-4096 (((-767) $) NIL)) (-2408 (((-3 $ "failed") $) NIL (|has| |#1| (-1144)))) (-2596 (($ (-1165 |#1|) (-1075)) 49) (($ (-1165 $) (-1075)) 65)) (-1351 (($ $ (-767)) 32)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-767)) 63) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ (-1075)) NIL) (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 120)) (-2048 (((-767) $) NIL) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-2803 (($ (-1 (-767) (-767)) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-1580 (((-1165 |#1|) $) NIL)) (-4234 (((-3 (-1075) "failed") $) NIL)) (-2716 (($ $) NIL)) (-2726 ((|#1| $) 52)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3573 (((-1151) $) NIL)) (-3839 (((-2 (|:| -3490 $) (|:| -1972 $)) $ (-767)) 38)) (-3733 (((-3 (-640 $) "failed") $) NIL)) (-2919 (((-3 (-640 $) "failed") $) NIL)) (-4086 (((-3 (-2 (|:| |var| (-1075)) (|:| -1654 (-767))) "failed") $) NIL)) (-3698 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2523 (($) NIL (|has| |#1| (-1144)) CONST)) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) 31)) (-2706 ((|#1| $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 79 (|has| |#1| (-452)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) 134 (|has| |#1| (-452)))) (-3817 (($ $ (-767) |#1| $) 98)) (-1876 (((-418 (-1165 $)) (-1165 $)) 77 (|has| |#1| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) 76 (|has| |#1| (-905)))) (-2174 (((-418 $) $) 84 (|has| |#1| (-905)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3008 (((-3 $ "failed") $ |#1|) 130 (|has| |#1| (-555))) (((-3 $ "failed") $ $) 99 (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-1540 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-1075) |#1|) NIL) (($ $ (-640 (-1075)) (-640 |#1|)) NIL) (($ $ (-1075) $) NIL) (($ $ (-640 (-1075)) (-640 $)) NIL)) (-2628 (((-767) $) NIL (|has| |#1| (-363)))) (-2309 ((|#1| $ |#1|) 118) (($ $ $) 119) (((-407 $) (-407 $) (-407 $)) NIL (|has| |#1| (-555))) ((|#1| (-407 $) |#1|) NIL (|has| |#1| (-363))) (((-407 $) $ (-407 $)) NIL (|has| |#1| (-555)))) (-3862 (((-3 $ "failed") $ (-767)) 35)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 137 (|has| |#1| (-363)))) (-2315 (($ $ (-1075)) NIL (|has| |#1| (-172))) ((|#1| $) 123 (|has| |#1| (-172)))) (-4202 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-4167 (((-767) $) 54) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-2220 (((-888 (-379)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-1075) (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-1836 ((|#1| $) 129 (|has| |#1| (-452))) (($ $ (-1075)) NIL (|has| |#1| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1346 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555))) (((-3 (-407 $) "failed") (-407 $) $) NIL (|has| |#1| (-555)))) (-1693 (((-858) $) 117) (($ (-563)) NIL) (($ |#1|) 53) (($ (-1075)) NIL) (($ (-407 (-563))) NIL (-4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-1337 (((-640 |#1|) $) NIL)) (-4319 ((|#1| $ (-767)) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-1675 (((-767)) NIL)) (-2793 (($ $ $ (-767)) 25 (|has| |#1| (-172)))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2241 (($) 15 T CONST)) (-2254 (($) 16 T CONST)) (-3209 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) 96)) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1837 (($ $ |#1|) 138 (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) 66)) (** (($ $ (-917)) 14) (($ $ (-767)) 12)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 24) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 101) (($ $ |#1|) NIL)))
-(((-1165 |#1|) (-13 (-1233 |#1|) (-10 -8 (-15 -2349 ((-858) $ (-858))) (-15 -3817 ($ $ (-767) |#1| $)))) (-1045)) (T -1165))
-((-2349 (*1 *2 *1 *2) (-12 (-5 *2 (-858)) (-5 *1 (-1165 *3)) (-4 *3 (-1045)))) (-3817 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-767)) (-5 *1 (-1165 *3)) (-4 *3 (-1045)))))
-(-13 (-1233 |#1|) (-10 -8 (-15 -2349 ((-858) $ (-858))) (-15 -3817 ($ $ (-767) |#1| $))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2606 (((-640 (-1075)) $) NIL)) (-2518 (((-1169) $) 11)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-2421 (($ $ (-407 (-563))) NIL) (($ $ (-407 (-563)) (-407 (-563))) NIL)) (-1539 (((-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|))) $) NIL)) (-1771 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL (|has| |#1| (-363)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2186 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1919 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1748 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3045 (($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|)))) NIL)) (-1794 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-1160 |#1| |#2| |#3|) "failed") $) 33) (((-3 (-1167 |#1| |#2| |#3|) "failed") $) 36)) (-2058 (((-1160 |#1| |#2| |#3|) $) NIL) (((-1167 |#1| |#2| |#3|) $) NIL)) (-3090 (($ $ $) NIL (|has| |#1| (-363)))) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-4031 (((-407 (-563)) $) 55)) (-3050 (($ $ $) NIL (|has| |#1| (-363)))) (-2670 (($ (-407 (-563)) (-1160 |#1| |#2| |#3|)) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2468 (((-112) $) NIL (|has| |#1| (-363)))) (-2788 (((-112) $) NIL)) (-2180 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3254 (((-407 (-563)) $) NIL) (((-407 (-563)) $ (-407 (-563))) NIL)) (-3827 (((-112) $) NIL)) (-1645 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1351 (($ $ (-917)) NIL) (($ $ (-407 (-563))) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-407 (-563))) 20) (($ $ (-1075) (-407 (-563))) NIL) (($ $ (-640 (-1075)) (-640 (-407 (-563)))) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-4371 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-3377 (((-1160 |#1| |#2| |#3|) $) 41)) (-2401 (((-3 (-1160 |#1| |#2| |#3|) "failed") $) NIL)) (-2660 (((-1160 |#1| |#2| |#3|) $) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL (|has| |#1| (-363)))) (-3698 (($ $) 39 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) NIL (-4032 (-12 (|has| |#1| (-15 -3698 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2606 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193))))) (($ $ (-1253 |#2|)) 40 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2174 (((-418 $) $) NIL (|has| |#1| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3320 (($ $ (-407 (-563))) NIL)) (-3008 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3368 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1540 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))))) (-2628 (((-767) $) NIL (|has| |#1| (-363)))) (-2309 ((|#1| $ (-407 (-563))) NIL) (($ $ $) NIL (|has| (-407 (-563)) (-1105)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $ (-1253 |#2|)) 38)) (-4167 (((-407 (-563)) $) NIL)) (-1806 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1741 (($ $) NIL)) (-1693 (((-858) $) 58) (($ (-563)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1160 |#1| |#2| |#3|)) 30) (($ (-1167 |#1| |#2| |#3|)) 31) (($ (-1253 |#2|)) 26) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555)))) (-4319 ((|#1| $ (-407 (-563))) NIL)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) NIL)) (-3408 ((|#1| $) 12)) (-1840 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1817 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1403 ((|#1| $ (-407 (-563))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-1311 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2241 (($) 22 T CONST)) (-2254 (($) 16 T CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) 24)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
-(((-1166 |#1| |#2| |#3|) (-13 (-1240 |#1| (-1160 |#1| |#2| |#3|)) (-1034 (-1167 |#1| |#2| |#3|)) (-613 (-1253 |#2|)) (-10 -8 (-15 -4202 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1253 |#2|))) |%noBranch|))) (-1045) (-1169) |#1|) (T -1166))
-((-4202 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-3698 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
-(-13 (-1240 |#1| (-1160 |#1| |#2| |#3|)) (-1034 (-1167 |#1| |#2| |#3|)) (-613 (-1253 |#2|)) (-10 -8 (-15 -4202 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1253 |#2|))) |%noBranch|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 124)) (-2606 (((-640 (-1075)) $) NIL)) (-2518 (((-1169) $) 115)) (-1987 (((-1230 |#2| |#1|) $ (-767)) 62)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-2421 (($ $ (-767)) 78) (($ $ (-767) (-767)) 75)) (-1539 (((-1149 (-2 (|:| |k| (-767)) (|:| |c| |#1|))) $) 101)) (-1771 (($ $) 168 (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) 144 (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) NIL)) (-2186 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1748 (($ $) 164 (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) 140 (|has| |#1| (-38 (-407 (-563)))))) (-3045 (($ (-1149 (-2 (|:| |k| (-767)) (|:| |c| |#1|)))) 114) (($ (-1149 |#1|)) 109)) (-1794 (($ $) 172 (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) 148 (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) NIL T CONST)) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) 23)) (-2655 (($ $) 26)) (-3619 (((-948 |#1|) $ (-767)) 74) (((-948 |#1|) $ (-767) (-767)) 76)) (-2788 (((-112) $) 119)) (-2180 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3254 (((-767) $) 121) (((-767) $ (-767)) 123)) (-3827 (((-112) $) NIL)) (-1645 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1351 (($ $ (-917)) NIL)) (-2831 (($ (-1 |#1| (-563)) $) NIL)) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-767)) 13) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-4371 (($ $) 130 (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-3698 (($ $) 128 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) NIL (-4032 (-12 (|has| |#1| (-15 -3698 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2606 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193))))) (($ $ (-1253 |#2|)) 129 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (((-1113) $) NIL)) (-3320 (($ $ (-767)) 15)) (-3008 (((-3 $ "failed") $ $) 24 (|has| |#1| (-555)))) (-3368 (($ $) 132 (|has| |#1| (-38 (-407 (-563)))))) (-1540 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-767)))))) (-2309 ((|#1| $ (-767)) 118) (($ $ $) 127 (|has| (-767) (-1105)))) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $) 27 (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $ (-1253 |#2|)) 29)) (-4167 (((-767) $) NIL)) (-1806 (($ $) 174 (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) 150 (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) 170 (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) 146 (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) 166 (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) 142 (|has| |#1| (-38 (-407 (-563)))))) (-1741 (($ $) NIL)) (-1693 (((-858) $) 200) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555))) (($ |#1|) 125 (|has| |#1| (-172))) (($ (-1230 |#2| |#1|)) 50) (($ (-1253 |#2|)) 32)) (-1337 (((-1149 |#1|) $) 97)) (-4319 ((|#1| $ (-767)) 117)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) NIL)) (-3408 ((|#1| $) 53)) (-1840 (($ $) 180 (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) 156 (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1817 (($ $) 176 (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) 152 (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) 184 (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) 160 (|has| |#1| (-38 (-407 (-563)))))) (-1403 ((|#1| $ (-767)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-767)))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-1311 (($ $) 186 (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) 162 (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) 182 (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) 158 (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) 178 (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) 154 (|has| |#1| (-38 (-407 (-563)))))) (-2241 (($) 17 T CONST)) (-2254 (($) 19 T CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) 193)) (-1814 (($ $ $) 31)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ |#1|) 197 (|has| |#1| (-363))) (($ $ $) 133 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 136 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 131) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
-(((-1167 |#1| |#2| |#3|) (-13 (-1248 |#1|) (-10 -8 (-15 -1693 ($ (-1230 |#2| |#1|))) (-15 -1987 ((-1230 |#2| |#1|) $ (-767))) (-15 -1693 ($ (-1253 |#2|))) (-15 -4202 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1253 |#2|))) |%noBranch|))) (-1045) (-1169) |#1|) (T -1167))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1230 *4 *3)) (-4 *3 (-1045)) (-14 *4 (-1169)) (-14 *5 *3) (-5 *1 (-1167 *3 *4 *5)))) (-1987 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1230 *5 *4)) (-5 *1 (-1167 *4 *5 *6)) (-4 *4 (-1045)) (-14 *5 (-1169)) (-14 *6 *4))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1167 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-4202 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1167 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-3698 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1167 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
-(-13 (-1248 |#1|) (-10 -8 (-15 -1693 ($ (-1230 |#2| |#1|))) (-15 -1987 ((-1230 |#2| |#1|) $ (-767))) (-15 -1693 ($ (-1253 |#2|))) (-15 -4202 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1253 |#2|))) |%noBranch|)))
-((-1693 (((-858) $) 27) (($ (-1169)) 29)) (-4032 (($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 40)) (-4022 (($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 33) (($ $) 34)) (-1356 (($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 35)) (-1345 (($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 37)) (-1336 (($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 36)) (-1325 (($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 38)) (-3299 (($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 41)) (-12 (($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 39)))
-(((-1168) (-13 (-610 (-858)) (-10 -8 (-15 -1693 ($ (-1169))) (-15 -1356 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -1336 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -1345 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -1325 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -4032 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -3299 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -4022 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -4022 ($ $))))) (T -1168))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1168)))) (-1356 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-1336 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-1345 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-1325 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-4032 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-3299 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-4022 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-4022 (*1 *1 *1) (-5 *1 (-1168))))
-(-13 (-610 (-858)) (-10 -8 (-15 -1693 ($ (-1169))) (-15 -1356 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -1336 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -1345 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -1325 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -4032 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -3299 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -4022 ($ (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -4022 ($ $))))
-((-1677 (((-112) $ $) NIL)) (-2719 (($ $ (-640 (-858))) 59)) (-2167 (($ $ (-640 (-858))) 57)) (-3736 (((-1151) $) 84)) (-3428 (((-2 (|:| -3799 (-640 (-858))) (|:| -1901 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3034 (-640 (-858))) (|:| |args| (-640 (-858)))) $) 87)) (-4264 (((-112) $) 22)) (-3557 (($ $ (-640 (-640 (-858)))) 56) (($ $ (-2 (|:| -3799 (-640 (-858))) (|:| -1901 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3034 (-640 (-858))) (|:| |args| (-640 (-858))))) 82)) (-4239 (($) 123 T CONST)) (-1330 (((-1262)) 105)) (-3787 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 66) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 73)) (-1566 (($) 94) (($ $) 100)) (-3348 (($ $) 83)) (-3084 (($ $ $) NIL)) (-1777 (($ $ $) NIL)) (-3651 (((-640 $) $) 106)) (-3573 (((-1151) $) 89)) (-1694 (((-1113) $) NIL)) (-2309 (($ $ (-640 (-858))) 58)) (-2220 (((-536) $) 46) (((-1169) $) 47) (((-888 (-563)) $) 77) (((-888 (-379)) $) 75)) (-1693 (((-858) $) 53) (($ (-1151)) 48)) (-2930 (($ $ (-640 (-858))) 60)) (-3741 (((-1151) $) 33) (((-1151) $ (-112)) 34) (((-1262) (-818) $) 35) (((-1262) (-818) $ (-112)) 36)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 49)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) 50)))
-(((-1169) (-13 (-846) (-611 (-536)) (-824) (-611 (-1169)) (-613 (-1151)) (-611 (-888 (-563))) (-611 (-888 (-379))) (-882 (-563)) (-882 (-379)) (-10 -8 (-15 -1566 ($)) (-15 -1566 ($ $)) (-15 -1330 ((-1262))) (-15 -3348 ($ $)) (-15 -4264 ((-112) $)) (-15 -3428 ((-2 (|:| -3799 (-640 (-858))) (|:| -1901 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3034 (-640 (-858))) (|:| |args| (-640 (-858)))) $)) (-15 -3557 ($ $ (-640 (-640 (-858))))) (-15 -3557 ($ $ (-2 (|:| -3799 (-640 (-858))) (|:| -1901 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3034 (-640 (-858))) (|:| |args| (-640 (-858)))))) (-15 -2167 ($ $ (-640 (-858)))) (-15 -2719 ($ $ (-640 (-858)))) (-15 -2930 ($ $ (-640 (-858)))) (-15 -2309 ($ $ (-640 (-858)))) (-15 -3736 ((-1151) $)) (-15 -3651 ((-640 $) $)) (-15 -4239 ($) -2669)))) (T -1169))
-((-1566 (*1 *1) (-5 *1 (-1169))) (-1566 (*1 *1 *1) (-5 *1 (-1169))) (-1330 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1169)))) (-3348 (*1 *1 *1) (-5 *1 (-1169))) (-4264 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1169)))) (-3428 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -3799 (-640 (-858))) (|:| -1901 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3034 (-640 (-858))) (|:| |args| (-640 (-858))))) (-5 *1 (-1169)))) (-3557 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-640 (-858)))) (-5 *1 (-1169)))) (-3557 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -3799 (-640 (-858))) (|:| -1901 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3034 (-640 (-858))) (|:| |args| (-640 (-858))))) (-5 *1 (-1169)))) (-2167 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-1169)))) (-2719 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-1169)))) (-2930 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-1169)))) (-2309 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-1169)))) (-3736 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-1169)))) (-3651 (*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-1169)))) (-4239 (*1 *1) (-5 *1 (-1169))))
-(-13 (-846) (-611 (-536)) (-824) (-611 (-1169)) (-613 (-1151)) (-611 (-888 (-563))) (-611 (-888 (-379))) (-882 (-563)) (-882 (-379)) (-10 -8 (-15 -1566 ($)) (-15 -1566 ($ $)) (-15 -1330 ((-1262))) (-15 -3348 ($ $)) (-15 -4264 ((-112) $)) (-15 -3428 ((-2 (|:| -3799 (-640 (-858))) (|:| -1901 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3034 (-640 (-858))) (|:| |args| (-640 (-858)))) $)) (-15 -3557 ($ $ (-640 (-640 (-858))))) (-15 -3557 ($ $ (-2 (|:| -3799 (-640 (-858))) (|:| -1901 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3034 (-640 (-858))) (|:| |args| (-640 (-858)))))) (-15 -2167 ($ $ (-640 (-858)))) (-15 -2719 ($ $ (-640 (-858)))) (-15 -2930 ($ $ (-640 (-858)))) (-15 -2309 ($ $ (-640 (-858)))) (-15 -3736 ((-1151) $)) (-15 -3651 ((-640 $) $)) (-15 -4239 ($) -2669)))
-((-4041 (((-1257 |#1|) |#1| (-917)) 16) (((-1257 |#1|) (-640 |#1|)) 20)))
-(((-1170 |#1|) (-10 -7 (-15 -4041 ((-1257 |#1|) (-640 |#1|))) (-15 -4041 ((-1257 |#1|) |#1| (-917)))) (-1045)) (T -1170))
-((-4041 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-5 *2 (-1257 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1045)))) (-4041 (*1 *2 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-1045)) (-5 *2 (-1257 *4)) (-5 *1 (-1170 *4)))))
-(-10 -7 (-15 -4041 ((-1257 |#1|) (-640 |#1|))) (-15 -4041 ((-1257 |#1|) |#1| (-917))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2058 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-1300 (($ $) NIL (|has| |#1| (-452)))) (-3554 (($ $ |#1| (-967) $) NIL)) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) NIL)) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-967)) NIL)) (-2048 (((-967) $) NIL)) (-2803 (($ (-1 (-967) (-967)) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) NIL)) (-2706 ((|#1| $) NIL)) (-3817 (($ $ (-967) |#1| $) NIL (-12 (|has| (-967) (-131)) (|has| |#1| (-555))))) (-3008 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-4167 (((-967) $) NIL)) (-1836 ((|#1| $) NIL (|has| |#1| (-452)))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL (|has| |#1| (-555))) (($ |#1|) NIL) (($ (-407 (-563))) NIL (-4032 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-1337 (((-640 |#1|) $) NIL)) (-4319 ((|#1| $ (-967)) NIL)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) NIL)) (-2793 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2241 (($) 9 T CONST)) (-2254 (($) 14 T CONST)) (-1718 (((-112) $ $) 16)) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) 19)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) 13) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
-(((-1171 |#1|) (-13 (-326 |#1| (-967)) (-10 -8 (IF (|has| |#1| (-555)) (IF (|has| (-967) (-131)) (-15 -3817 ($ $ (-967) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4405)) (-6 -4405) |%noBranch|))) (-1045)) (T -1171))
-((-3817 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-967)) (-4 *2 (-131)) (-5 *1 (-1171 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))))
-(-13 (-326 |#1| (-967)) (-10 -8 (IF (|has| |#1| (-555)) (IF (|has| (-967) (-131)) (-15 -3817 ($ $ (-967) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4405)) (-6 -4405) |%noBranch|)))
-((-1996 (((-1173) (-1169) $) 25)) (-3027 (($) 29)) (-1598 (((-3 (|:| |fst| (-434)) (|:| -3784 "void")) (-1169) $) 22)) (-3720 (((-1262) (-1169) (-3 (|:| |fst| (-434)) (|:| -3784 "void")) $) 41) (((-1262) (-1169) (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) 42) (((-1262) (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) 43)) (-2156 (((-1262) (-1169)) 58)) (-2409 (((-1262) (-1169) $) 55) (((-1262) (-1169)) 56) (((-1262)) 57)) (-3658 (((-1262) (-1169)) 37)) (-2042 (((-1169)) 36)) (-3135 (($) 34)) (-4185 (((-437) (-1169) (-437) (-1169) $) 45) (((-437) (-640 (-1169)) (-437) (-1169) $) 49) (((-437) (-1169) (-437)) 46) (((-437) (-1169) (-437) (-1169)) 50)) (-4119 (((-1169)) 35)) (-1693 (((-858) $) 28)) (-2972 (((-1262)) 30) (((-1262) (-1169)) 33)) (-4169 (((-640 (-1169)) (-1169) $) 24)) (-4184 (((-1262) (-1169) (-640 (-1169)) $) 38) (((-1262) (-1169) (-640 (-1169))) 39) (((-1262) (-640 (-1169))) 40)))
-(((-1172) (-13 (-610 (-858)) (-10 -8 (-15 -3027 ($)) (-15 -2972 ((-1262))) (-15 -2972 ((-1262) (-1169))) (-15 -4185 ((-437) (-1169) (-437) (-1169) $)) (-15 -4185 ((-437) (-640 (-1169)) (-437) (-1169) $)) (-15 -4185 ((-437) (-1169) (-437))) (-15 -4185 ((-437) (-1169) (-437) (-1169))) (-15 -3658 ((-1262) (-1169))) (-15 -4119 ((-1169))) (-15 -2042 ((-1169))) (-15 -4184 ((-1262) (-1169) (-640 (-1169)) $)) (-15 -4184 ((-1262) (-1169) (-640 (-1169)))) (-15 -4184 ((-1262) (-640 (-1169)))) (-15 -3720 ((-1262) (-1169) (-3 (|:| |fst| (-434)) (|:| -3784 "void")) $)) (-15 -3720 ((-1262) (-1169) (-3 (|:| |fst| (-434)) (|:| -3784 "void")))) (-15 -3720 ((-1262) (-3 (|:| |fst| (-434)) (|:| -3784 "void")))) (-15 -2409 ((-1262) (-1169) $)) (-15 -2409 ((-1262) (-1169))) (-15 -2409 ((-1262))) (-15 -2156 ((-1262) (-1169))) (-15 -3135 ($)) (-15 -1598 ((-3 (|:| |fst| (-434)) (|:| -3784 "void")) (-1169) $)) (-15 -4169 ((-640 (-1169)) (-1169) $)) (-15 -1996 ((-1173) (-1169) $))))) (T -1172))
-((-3027 (*1 *1) (-5 *1 (-1172))) (-2972 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1172)))) (-2972 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-4185 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-437)) (-5 *3 (-1169)) (-5 *1 (-1172)))) (-4185 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-437)) (-5 *3 (-640 (-1169))) (-5 *4 (-1169)) (-5 *1 (-1172)))) (-4185 (*1 *2 *3 *2) (-12 (-5 *2 (-437)) (-5 *3 (-1169)) (-5 *1 (-1172)))) (-4185 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-437)) (-5 *3 (-1169)) (-5 *1 (-1172)))) (-3658 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-4119 (*1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1172)))) (-2042 (*1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1172)))) (-4184 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-4184 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-4184 (*1 *2 *3) (-12 (-5 *3 (-640 (-1169))) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3720 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1169)) (-5 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3720 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3720 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-2409 (*1 *2 *3 *1) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-2409 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-2409 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1172)))) (-2156 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3135 (*1 *1) (-5 *1 (-1172))) (-1598 (*1 *2 *3 *1) (-12 (-5 *3 (-1169)) (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-5 *1 (-1172)))) (-4169 (*1 *2 *3 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-1172)) (-5 *3 (-1169)))) (-1996 (*1 *2 *3 *1) (-12 (-5 *3 (-1169)) (-5 *2 (-1173)) (-5 *1 (-1172)))))
-(-13 (-610 (-858)) (-10 -8 (-15 -3027 ($)) (-15 -2972 ((-1262))) (-15 -2972 ((-1262) (-1169))) (-15 -4185 ((-437) (-1169) (-437) (-1169) $)) (-15 -4185 ((-437) (-640 (-1169)) (-437) (-1169) $)) (-15 -4185 ((-437) (-1169) (-437))) (-15 -4185 ((-437) (-1169) (-437) (-1169))) (-15 -3658 ((-1262) (-1169))) (-15 -4119 ((-1169))) (-15 -2042 ((-1169))) (-15 -4184 ((-1262) (-1169) (-640 (-1169)) $)) (-15 -4184 ((-1262) (-1169) (-640 (-1169)))) (-15 -4184 ((-1262) (-640 (-1169)))) (-15 -3720 ((-1262) (-1169) (-3 (|:| |fst| (-434)) (|:| -3784 "void")) $)) (-15 -3720 ((-1262) (-1169) (-3 (|:| |fst| (-434)) (|:| -3784 "void")))) (-15 -3720 ((-1262) (-3 (|:| |fst| (-434)) (|:| -3784 "void")))) (-15 -2409 ((-1262) (-1169) $)) (-15 -2409 ((-1262) (-1169))) (-15 -2409 ((-1262))) (-15 -2156 ((-1262) (-1169))) (-15 -3135 ($)) (-15 -1598 ((-3 (|:| |fst| (-434)) (|:| -3784 "void")) (-1169) $)) (-15 -4169 ((-640 (-1169)) (-1169) $)) (-15 -1996 ((-1173) (-1169) $))))
-((-3975 (((-640 (-640 (-3 (|:| -3348 (-1169)) (|:| -2445 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563))))))))) $) 59)) (-3317 (((-640 (-3 (|:| -3348 (-1169)) (|:| -2445 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563)))))))) (-434) $) 43)) (-2778 (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-437))))) 17)) (-2156 (((-1262) $) 67)) (-2587 (((-640 (-1169)) $) 22)) (-3846 (((-1097) $) 55)) (-3499 (((-437) (-1169) $) 27)) (-1509 (((-640 (-1169)) $) 30)) (-3135 (($) 19)) (-4185 (((-437) (-640 (-1169)) (-437) $) 25) (((-437) (-1169) (-437) $) 24)) (-1693 (((-858) $) 9) (((-1181 (-1169) (-437)) $) 13)))
-(((-1173) (-13 (-610 (-858)) (-10 -8 (-15 -1693 ((-1181 (-1169) (-437)) $)) (-15 -3135 ($)) (-15 -4185 ((-437) (-640 (-1169)) (-437) $)) (-15 -4185 ((-437) (-1169) (-437) $)) (-15 -3499 ((-437) (-1169) $)) (-15 -2587 ((-640 (-1169)) $)) (-15 -3317 ((-640 (-3 (|:| -3348 (-1169)) (|:| -2445 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563)))))))) (-434) $)) (-15 -1509 ((-640 (-1169)) $)) (-15 -3975 ((-640 (-640 (-3 (|:| -3348 (-1169)) (|:| -2445 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563))))))))) $)) (-15 -3846 ((-1097) $)) (-15 -2156 ((-1262) $)) (-15 -2778 ($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-437))))))))) (T -1173))
-((-1693 (*1 *2 *1) (-12 (-5 *2 (-1181 (-1169) (-437))) (-5 *1 (-1173)))) (-3135 (*1 *1) (-5 *1 (-1173))) (-4185 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-437)) (-5 *3 (-640 (-1169))) (-5 *1 (-1173)))) (-4185 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-437)) (-5 *3 (-1169)) (-5 *1 (-1173)))) (-3499 (*1 *2 *3 *1) (-12 (-5 *3 (-1169)) (-5 *2 (-437)) (-5 *1 (-1173)))) (-2587 (*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-1173)))) (-3317 (*1 *2 *3 *1) (-12 (-5 *3 (-434)) (-5 *2 (-640 (-3 (|:| -3348 (-1169)) (|:| -2445 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563))))))))) (-5 *1 (-1173)))) (-1509 (*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-1173)))) (-3975 (*1 *2 *1) (-12 (-5 *2 (-640 (-640 (-3 (|:| -3348 (-1169)) (|:| -2445 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563)))))))))) (-5 *1 (-1173)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-1173)))) (-2156 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1173)))) (-2778 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-437))))) (-5 *1 (-1173)))))
-(-13 (-610 (-858)) (-10 -8 (-15 -1693 ((-1181 (-1169) (-437)) $)) (-15 -3135 ($)) (-15 -4185 ((-437) (-640 (-1169)) (-437) $)) (-15 -4185 ((-437) (-1169) (-437) $)) (-15 -3499 ((-437) (-1169) $)) (-15 -2587 ((-640 (-1169)) $)) (-15 -3317 ((-640 (-3 (|:| -3348 (-1169)) (|:| -2445 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563)))))))) (-434) $)) (-15 -1509 ((-640 (-1169)) $)) (-15 -3975 ((-640 (-640 (-3 (|:| -3348 (-1169)) (|:| -2445 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563))))))))) $)) (-15 -3846 ((-1097) $)) (-15 -2156 ((-1262) $)) (-15 -2778 ($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-437))))))))
-((-1677 (((-112) $ $) NIL)) (-2131 (((-3 (-563) "failed") $) 29) (((-3 (-225) "failed") $) 35) (((-3 (-1169) "failed") $) 41) (((-3 (-1151) "failed") $) 47)) (-2058 (((-563) $) 30) (((-225) $) 36) (((-1169) $) 42) (((-1151) $) 48)) (-1799 (((-112) $) 53)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2658 (((-3 (-563) (-225) (-1169) (-1151) $) $) 55)) (-3639 (((-640 $) $) 57)) (-2220 (((-1097) $) 24) (($ (-1097)) 25)) (-2729 (((-112) $) 56)) (-1693 (((-858) $) 23) (($ (-563)) 26) (($ (-225)) 32) (($ (-1169)) 38) (($ (-1151)) 44) (((-536) $) 59) (((-563) $) 31) (((-225) $) 37) (((-1169) $) 43) (((-1151) $) 49)) (-2226 (((-112) $ (|[\|\|]| (-563))) 10) (((-112) $ (|[\|\|]| (-225))) 13) (((-112) $ (|[\|\|]| (-1169))) 19) (((-112) $ (|[\|\|]| (-1151))) 16)) (-1751 (($ (-1169) (-640 $)) 51) (($ $ (-640 $)) 52)) (-1905 (((-563) $) 27) (((-225) $) 33) (((-1169) $) 39) (((-1151) $) 45)) (-1718 (((-112) $ $) 7)))
-(((-1174) (-13 (-1252) (-1093) (-1034 (-563)) (-1034 (-225)) (-1034 (-1169)) (-1034 (-1151)) (-610 (-536)) (-10 -8 (-15 -2220 ((-1097) $)) (-15 -2220 ($ (-1097))) (-15 -1693 ((-563) $)) (-15 -1905 ((-563) $)) (-15 -1693 ((-225) $)) (-15 -1905 ((-225) $)) (-15 -1693 ((-1169) $)) (-15 -1905 ((-1169) $)) (-15 -1693 ((-1151) $)) (-15 -1905 ((-1151) $)) (-15 -1751 ($ (-1169) (-640 $))) (-15 -1751 ($ $ (-640 $))) (-15 -1799 ((-112) $)) (-15 -2658 ((-3 (-563) (-225) (-1169) (-1151) $) $)) (-15 -3639 ((-640 $) $)) (-15 -2729 ((-112) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-563)))) (-15 -2226 ((-112) $ (|[\|\|]| (-225)))) (-15 -2226 ((-112) $ (|[\|\|]| (-1169)))) (-15 -2226 ((-112) $ (|[\|\|]| (-1151))))))) (T -1174))
-((-2220 (*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-1174)))) (-2220 (*1 *1 *2) (-12 (-5 *2 (-1097)) (-5 *1 (-1174)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1174)))) (-1905 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1174)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-1174)))) (-1905 (*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-1174)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-1174)))) (-1905 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-1174)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-1174)))) (-1905 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-1174)))) (-1751 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-1174))) (-5 *1 (-1174)))) (-1751 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-1174))) (-5 *1 (-1174)))) (-1799 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174)))) (-2658 (*1 *2 *1) (-12 (-5 *2 (-3 (-563) (-225) (-1169) (-1151) (-1174))) (-5 *1 (-1174)))) (-3639 (*1 *2 *1) (-12 (-5 *2 (-640 (-1174))) (-5 *1 (-1174)))) (-2729 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174)))) (-2226 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-563))) (-5 *2 (-112)) (-5 *1 (-1174)))) (-2226 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-225))) (-5 *2 (-112)) (-5 *1 (-1174)))) (-2226 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1169))) (-5 *2 (-112)) (-5 *1 (-1174)))) (-2226 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1151))) (-5 *2 (-112)) (-5 *1 (-1174)))))
-(-13 (-1252) (-1093) (-1034 (-563)) (-1034 (-225)) (-1034 (-1169)) (-1034 (-1151)) (-610 (-536)) (-10 -8 (-15 -2220 ((-1097) $)) (-15 -2220 ($ (-1097))) (-15 -1693 ((-563) $)) (-15 -1905 ((-563) $)) (-15 -1693 ((-225) $)) (-15 -1905 ((-225) $)) (-15 -1693 ((-1169) $)) (-15 -1905 ((-1169) $)) (-15 -1693 ((-1151) $)) (-15 -1905 ((-1151) $)) (-15 -1751 ($ (-1169) (-640 $))) (-15 -1751 ($ $ (-640 $))) (-15 -1799 ((-112) $)) (-15 -2658 ((-3 (-563) (-225) (-1169) (-1151) $) $)) (-15 -3639 ((-640 $) $)) (-15 -2729 ((-112) $)) (-15 -2226 ((-112) $ (|[\|\|]| (-563)))) (-15 -2226 ((-112) $ (|[\|\|]| (-225)))) (-15 -2226 ((-112) $ (|[\|\|]| (-1169)))) (-15 -2226 ((-112) $ (|[\|\|]| (-1151))))))
-((-1677 (((-112) $ $) NIL)) (-3749 (((-767)) 10)) (-1691 (($) 14)) (-3084 (($ $ $) NIL) (($) 7 T CONST)) (-1777 (($ $ $) NIL) (($) 8 T CONST)) (-1476 (((-917) $) 13)) (-3573 (((-1151) $) NIL)) (-2555 (($ (-917)) 12)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3944 (((-1167 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-307)) (|has| |#1| (-363))))) (-2605 (((-640 (-1075)) $) NIL)) (-2517 (((-1169) $) 11)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-3231 (($ $) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-3211 (((-112) $) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-1763 (($ $ (-563)) NIL) (($ $ (-563) (-563)) 66)) (-1787 (((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $) NIL)) (-2609 (((-1167 |#1| |#2| |#3|) $) 36)) (-2591 (((-3 (-1167 |#1| |#2| |#3|) "failed") $) 29)) (-2651 (((-1167 |#1| |#2| |#3|) $) 30)) (-1770 (($ $) 107 (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) 83 (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-1798 (($ $) NIL (|has| |#1| (-363)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2185 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-2003 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1747 (($ $) 103 (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) 79 (|has| |#1| (-38 (-407 (-563)))))) (-2807 (((-563) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-3049 (($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|)))) NIL)) (-1793 (($ $) 111 (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) 87 (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-1167 |#1| |#2| |#3|) "failed") $) 31) (((-3 (-1169) "failed") $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-1169))) (|has| |#1| (-363)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363)))) (((-3 (-563) "failed") $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363))))) (-2057 (((-1167 |#1| |#2| |#3|) $) 131) (((-1169) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-1169))) (|has| |#1| (-363)))) (((-407 (-563)) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363)))) (((-563) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363))))) (-2600 (($ $) 34) (($ (-563) $) 35)) (-3094 (($ $ $) NIL (|has| |#1| (-363)))) (-2750 (($ $) NIL)) (-1476 (((-684 (-1167 |#1| |#2| |#3|)) (-684 $)) NIL (|has| |#1| (-363))) (((-2 (|:| -1957 (-684 (-1167 |#1| |#2| |#3|))) (|:| |vec| (-1257 (-1167 |#1| |#2| |#3|)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-363))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-636 (-563))) (|has| |#1| (-363)))) (((-684 (-563)) (-684 $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-636 (-563))) (|has| |#1| (-363))))) (-3951 (((-3 $ "failed") $) 48)) (-2580 (((-407 (-948 |#1|)) $ (-563)) 65 (|has| |#1| (-555))) (((-407 (-948 |#1|)) $ (-563) (-563)) 67 (|has| |#1| (-555)))) (-1690 (($) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-545)) (|has| |#1| (-363))))) (-3054 (($ $ $) NIL (|has| |#1| (-363)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2560 (((-112) $) NIL (|has| |#1| (-363)))) (-3414 (((-112) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-3381 (((-112) $) 25)) (-2179 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-882 (-379))) (|has| |#1| (-363)))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-882 (-563))) (|has| |#1| (-363))))) (-1775 (((-563) $) NIL) (((-563) $ (-563)) 24)) (-3401 (((-112) $) NIL)) (-2043 (($ $) NIL (|has| |#1| (-363)))) (-2143 (((-1167 |#1| |#2| |#3|) $) 38 (|has| |#1| (-363)))) (-2172 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1983 (((-3 $ "failed") $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1144)) (|has| |#1| (-363))))) (-3426 (((-112) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-1821 (($ $ (-917)) NIL)) (-2072 (($ (-1 |#1| (-563)) $) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-563)) 18) (($ $ (-1075) (-563)) NIL) (($ $ (-640 (-1075)) (-640 (-563))) NIL)) (-3088 (($ $ $) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1776 (($ $ $) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-363)))) (-4372 (($ $) 72 (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2659 (($ (-563) (-1167 |#1| |#2| |#3|)) 33)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL (|has| |#1| (-363)))) (-2062 (($ $) 70 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) NIL (-4034 (-12 (|has| |#1| (-15 -2062 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2605 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193))))) (($ $ (-1253 |#2|)) 71 (|has| |#1| (-38 (-407 (-563)))))) (-2522 (($) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1144)) (|has| |#1| (-363))) CONST)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-3935 (($ $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-307)) (|has| |#1| (-363))))) (-3954 (((-1167 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-545)) (|has| |#1| (-363))))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-2173 (((-418 $) $) NIL (|has| |#1| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-1751 (($ $ (-563)) 145)) (-3012 (((-3 $ "failed") $ $) 49 (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3372 (($ $) 73 (|has| |#1| (-38 (-407 (-563)))))) (-1542 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-563))))) (($ $ (-1169) (-1167 |#1| |#2| |#3|)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-514 (-1169) (-1167 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-640 (-1169)) (-640 (-1167 |#1| |#2| |#3|))) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-514 (-1169) (-1167 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-640 (-294 (-1167 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-309 (-1167 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-294 (-1167 |#1| |#2| |#3|))) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-309 (-1167 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-309 (-1167 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-640 (-1167 |#1| |#2| |#3|)) (-640 (-1167 |#1| |#2| |#3|))) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-309 (-1167 |#1| |#2| |#3|))) (|has| |#1| (-363))))) (-1993 (((-767) $) NIL (|has| |#1| (-363)))) (-2308 ((|#1| $ (-563)) NIL) (($ $ $) 54 (|has| (-563) (-1105))) (($ $ (-1167 |#1| |#2| |#3|)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-286 (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|))) (|has| |#1| (-363))))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-4203 (($ $ (-1 (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|))) NIL (|has| |#1| (-363))) (($ $ (-1 (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|)) (-767)) NIL (|has| |#1| (-363))) (($ $ (-1253 |#2|)) 51) (($ $ (-767)) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) 50 (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169) (-767)) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-640 (-1169))) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169)) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))) (-2033 (($ $) NIL (|has| |#1| (-363)))) (-2153 (((-1167 |#1| |#2| |#3|) $) 41 (|has| |#1| (-363)))) (-3871 (((-563) $) 37)) (-1805 (($ $) 113 (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) 89 (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) 109 (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) 85 (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) 105 (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) 81 (|has| |#1| (-38 (-407 (-563)))))) (-2219 (((-536) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-611 (-536))) (|has| |#1| (-363)))) (((-379) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1018)) (|has| |#1| (-363)))) (((-225) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1018)) (|has| |#1| (-363)))) (((-888 (-379)) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-611 (-888 (-379)))) (|has| |#1| (-363)))) (((-888 (-563)) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-611 (-888 (-563)))) (|has| |#1| (-363))))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-3369 (($ $) NIL)) (-1692 (((-858) $) 149) (($ (-563)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1167 |#1| |#2| |#3|)) 27) (($ (-1253 |#2|)) 23) (($ (-1169)) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-1169))) (|has| |#1| (-363)))) (($ $) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555)))) (($ (-407 (-563))) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363))) (|has| |#1| (-38 (-407 (-563))))))) (-3244 ((|#1| $ (-563)) 68)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-145)) (|has| |#1| (-363))) (|has| |#1| (-145))))) (-3914 (((-767)) NIL)) (-3412 ((|#1| $) 12)) (-3965 (((-1167 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-545)) (|has| |#1| (-363))))) (-1839 (($ $) 119 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) 95 (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-1816 (($ $) 115 (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) 91 (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) 123 (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) 99 (|has| |#1| (-38 (-407 (-563)))))) (-1402 ((|#1| $ (-563)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-563)))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-1311 (($ $) 125 (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) 101 (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) 121 (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) 97 (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) 117 (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) 93 (|has| |#1| (-38 (-407 (-563)))))) (-1462 (($ $) NIL (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-2239 (($) 20 T CONST)) (-2253 (($) 16 T CONST)) (-3213 (($ $ (-1 (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|))) NIL (|has| |#1| (-363))) (($ $ (-1 (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|)) (-767)) NIL (|has| |#1| (-363))) (($ $ (-767)) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169) (-767)) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-640 (-1169))) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169)) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))) (-1779 (((-112) $ $) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1754 (((-112) $ $) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1743 (((-112) $ $) NIL (-4034 (-12 (|has| (-1167 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1167 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) 44 (|has| |#1| (-363))) (($ (-1167 |#1| |#2| |#3|) (-1167 |#1| |#2| |#3|)) 45 (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) 21)) (** (($ $ (-917)) NIL) (($ $ (-767)) 53) (($ $ (-563)) NIL (|has| |#1| (-363))) (($ $ $) 74 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 128 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 32) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1167 |#1| |#2| |#3|)) 43 (|has| |#1| (-363))) (($ (-1167 |#1| |#2| |#3|) $) 42 (|has| |#1| (-363))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
+(((-1160 |#1| |#2| |#3|) (-13 (-1219 |#1| (-1167 |#1| |#2| |#3|)) (-10 -8 (-15 -1692 ($ (-1253 |#2|))) (-15 -4203 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1253 |#2|))) |%noBranch|))) (-1045) (-1169) |#1|) (T -1160))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1160 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-4203 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1160 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-2062 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1160 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
+(-13 (-1219 |#1| (-1167 |#1| |#2| |#3|)) (-10 -8 (-15 -1692 ($ (-1253 |#2|))) (-15 -4203 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1253 |#2|))) |%noBranch|)))
+((-2235 ((|#2| |#2| (-1085 |#2|)) 26) ((|#2| |#2| (-1169)) 28)))
+(((-1161 |#1| |#2|) (-10 -7 (-15 -2235 (|#2| |#2| (-1169))) (-15 -2235 (|#2| |#2| (-1085 |#2|)))) (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-430 |#1|) (-160) (-27) (-1193))) (T -1161))
+((-2235 (*1 *2 *2 *3) (-12 (-5 *3 (-1085 *2)) (-4 *2 (-13 (-430 *4) (-160) (-27) (-1193))) (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1161 *4 *2)))) (-2235 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1161 *4 *2)) (-4 *2 (-13 (-430 *4) (-160) (-27) (-1193))))))
+(-10 -7 (-15 -2235 (|#2| |#2| (-1169))) (-15 -2235 (|#2| |#2| (-1085 |#2|))))
+((-2235 (((-3 (-407 (-948 |#1|)) (-316 |#1|)) (-407 (-948 |#1|)) (-1085 (-407 (-948 |#1|)))) 31) (((-407 (-948 |#1|)) (-948 |#1|) (-1085 (-948 |#1|))) 44) (((-3 (-407 (-948 |#1|)) (-316 |#1|)) (-407 (-948 |#1|)) (-1169)) 33) (((-407 (-948 |#1|)) (-948 |#1|) (-1169)) 36)))
+(((-1162 |#1|) (-10 -7 (-15 -2235 ((-407 (-948 |#1|)) (-948 |#1|) (-1169))) (-15 -2235 ((-3 (-407 (-948 |#1|)) (-316 |#1|)) (-407 (-948 |#1|)) (-1169))) (-15 -2235 ((-407 (-948 |#1|)) (-948 |#1|) (-1085 (-948 |#1|)))) (-15 -2235 ((-3 (-407 (-948 |#1|)) (-316 |#1|)) (-407 (-948 |#1|)) (-1085 (-407 (-948 |#1|)))))) (-13 (-555) (-846) (-1034 (-563)))) (T -1162))
+((-2235 (*1 *2 *3 *4) (-12 (-5 *4 (-1085 (-407 (-948 *5)))) (-5 *3 (-407 (-948 *5))) (-4 *5 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-3 *3 (-316 *5))) (-5 *1 (-1162 *5)))) (-2235 (*1 *2 *3 *4) (-12 (-5 *4 (-1085 (-948 *5))) (-5 *3 (-948 *5)) (-4 *5 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-407 *3)) (-5 *1 (-1162 *5)))) (-2235 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-3 (-407 (-948 *5)) (-316 *5))) (-5 *1 (-1162 *5)) (-5 *3 (-407 (-948 *5))))) (-2235 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-407 (-948 *5))) (-5 *1 (-1162 *5)) (-5 *3 (-948 *5)))))
+(-10 -7 (-15 -2235 ((-407 (-948 |#1|)) (-948 |#1|) (-1169))) (-15 -2235 ((-3 (-407 (-948 |#1|)) (-316 |#1|)) (-407 (-948 |#1|)) (-1169))) (-15 -2235 ((-407 (-948 |#1|)) (-948 |#1|) (-1085 (-948 |#1|)))) (-15 -2235 ((-3 (-407 (-948 |#1|)) (-316 |#1|)) (-407 (-948 |#1|)) (-1085 (-407 (-948 |#1|))))))
+((-2238 (((-1165 |#2|) (-1 |#2| |#1|) (-1165 |#1|)) 13)))
+(((-1163 |#1| |#2|) (-10 -7 (-15 -2238 ((-1165 |#2|) (-1 |#2| |#1|) (-1165 |#1|)))) (-1045) (-1045)) (T -1163))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1165 *5)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-5 *2 (-1165 *6)) (-5 *1 (-1163 *5 *6)))))
+(-10 -7 (-15 -2238 ((-1165 |#2|) (-1 |#2| |#1|) (-1165 |#1|))))
+((-2802 (((-418 (-1165 (-407 |#4|))) (-1165 (-407 |#4|))) 51)) (-2173 (((-418 (-1165 (-407 |#4|))) (-1165 (-407 |#4|))) 52)))
+(((-1164 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2173 ((-418 (-1165 (-407 |#4|))) (-1165 (-407 |#4|)))) (-15 -2802 ((-418 (-1165 (-407 |#4|))) (-1165 (-407 |#4|))))) (-789) (-846) (-452) (-945 |#3| |#1| |#2|)) (T -1164))
+((-2802 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-452)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-418 (-1165 (-407 *7)))) (-5 *1 (-1164 *4 *5 *6 *7)) (-5 *3 (-1165 (-407 *7))))) (-2173 (*1 *2 *3) (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-452)) (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-418 (-1165 (-407 *7)))) (-5 *1 (-1164 *4 *5 *6 *7)) (-5 *3 (-1165 (-407 *7))))))
+(-10 -7 (-15 -2173 ((-418 (-1165 (-407 |#4|))) (-1165 (-407 |#4|)))) (-15 -2802 ((-418 (-1165 (-407 |#4|))) (-1165 (-407 |#4|)))))
+((-1677 (((-112) $ $) 137)) (-3439 (((-112) $) 27)) (-1740 (((-1257 |#1|) $ (-767)) NIL)) (-2605 (((-640 (-1075)) $) NIL)) (-1714 (($ (-1165 |#1|)) NIL)) (-2138 (((-1165 $) $ (-1075)) 58) (((-1165 |#1|) $) 47)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) 132 (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-3897 (((-767) $) NIL) (((-767) $ (-640 (-1075))) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1601 (($ $ $) 126 (|has| |#1| (-555)))) (-2093 (((-418 (-1165 $)) (-1165 $)) 71 (|has| |#1| (-905)))) (-1798 (($ $) NIL (|has| |#1| (-452)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 91 (|has| |#1| (-905)))) (-2003 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1660 (($ $ (-767)) 38)) (-1647 (($ $ (-767)) 39)) (-1550 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-452)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#1| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-1075) "failed") $) NIL)) (-2057 ((|#1| $) NIL) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-1075) $) NIL)) (-1612 (($ $ $ (-1075)) NIL (|has| |#1| (-172))) ((|#1| $ $) 128 (|has| |#1| (-172)))) (-3094 (($ $ $) NIL (|has| |#1| (-363)))) (-2750 (($ $) 56)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) NIL) (((-684 |#1|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3054 (($ $ $) NIL (|has| |#1| (-363)))) (-1634 (($ $ $) 103)) (-1577 (($ $ $) NIL (|has| |#1| (-555)))) (-1564 (((-2 (|:| -2310 |#1|) (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-555)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-4151 (($ $) 133 (|has| |#1| (-452))) (($ $ (-1075)) NIL (|has| |#1| (-452)))) (-2738 (((-640 $) $) NIL)) (-2560 (((-112) $) NIL (|has| |#1| (-905)))) (-2159 (($ $ |#1| (-767) $) 45)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1075) (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1075) (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-1307 (((-858) $ (-858)) 117)) (-1775 (((-767) $ $) NIL (|has| |#1| (-555)))) (-3401 (((-112) $) 29)) (-3481 (((-767) $) NIL)) (-1983 (((-3 $ "failed") $) NIL (|has| |#1| (-1144)))) (-2595 (($ (-1165 |#1|) (-1075)) 49) (($ (-1165 $) (-1075)) 65)) (-1821 (($ $ (-767)) 31)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-767)) 63) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ (-1075)) NIL) (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 121)) (-3908 (((-767) $) NIL) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-2170 (($ (-1 (-767) (-767)) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-1726 (((-1165 |#1|) $) NIL)) (-1698 (((-3 (-1075) "failed") $) NIL)) (-2715 (($ $) NIL)) (-2725 ((|#1| $) 52)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) NIL (|has| |#1| (-452)))) (-3854 (((-1151) $) NIL)) (-1671 (((-2 (|:| -1765 $) (|:| -3443 $)) $ (-767)) 37)) (-3939 (((-3 (-640 $) "failed") $) NIL)) (-3930 (((-3 (-640 $) "failed") $) NIL)) (-3949 (((-3 (-2 (|:| |var| (-1075)) (|:| -3311 (-767))) "failed") $) NIL)) (-2062 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2522 (($) NIL (|has| |#1| (-1144)) CONST)) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) 30)) (-2705 ((|#1| $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 79 (|has| |#1| (-452)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-452))) (($ $ $) 135 (|has| |#1| (-452)))) (-2646 (($ $ (-767) |#1| $) 98)) (-2075 (((-418 (-1165 $)) (-1165 $)) 77 (|has| |#1| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) 76 (|has| |#1| (-905)))) (-2173 (((-418 $) $) 84 (|has| |#1| (-905)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-3012 (((-3 $ "failed") $ |#1|) 131 (|has| |#1| (-555))) (((-3 $ "failed") $ $) 99 (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-1542 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-1075) |#1|) NIL) (($ $ (-640 (-1075)) (-640 |#1|)) NIL) (($ $ (-1075) $) NIL) (($ $ (-640 (-1075)) (-640 $)) NIL)) (-1993 (((-767) $) NIL (|has| |#1| (-363)))) (-2308 ((|#1| $ |#1|) 119) (($ $ $) 120) (((-407 $) (-407 $) (-407 $)) NIL (|has| |#1| (-555))) ((|#1| (-407 $) |#1|) NIL (|has| |#1| (-363))) (((-407 $) $ (-407 $)) NIL (|has| |#1| (-555)))) (-1699 (((-3 $ "failed") $ (-767)) 34)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 138 (|has| |#1| (-363)))) (-1623 (($ $ (-1075)) NIL (|has| |#1| (-172))) ((|#1| $) 124 (|has| |#1| (-172)))) (-4203 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3871 (((-767) $) 54) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-2219 (((-888 (-379)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-1075) (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-3885 ((|#1| $) 130 (|has| |#1| (-452))) (($ $ (-1075)) NIL (|has| |#1| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-905))))) (-1590 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555))) (((-3 (-407 $) "failed") (-407 $) $) NIL (|has| |#1| (-555)))) (-1692 (((-858) $) 118) (($ (-563)) NIL) (($ |#1|) 53) (($ (-1075)) NIL) (($ (-407 (-563))) NIL (-4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#1| (-555)))) (-3955 (((-640 |#1|) $) NIL)) (-3244 ((|#1| $ (-767)) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-3914 (((-767)) NIL)) (-2148 (($ $ $ (-767)) 25 (|has| |#1| (-172)))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2239 (($) 15 T CONST)) (-2253 (($) 16 T CONST)) (-3213 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) 96)) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1836 (($ $ |#1|) 139 (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) 66)) (** (($ $ (-917)) 14) (($ $ (-767)) 12)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 24) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 101) (($ $ |#1|) NIL)))
+(((-1165 |#1|) (-13 (-1233 |#1|) (-10 -8 (-15 -1307 ((-858) $ (-858))) (-15 -2646 ($ $ (-767) |#1| $)))) (-1045)) (T -1165))
+((-1307 (*1 *2 *1 *2) (-12 (-5 *2 (-858)) (-5 *1 (-1165 *3)) (-4 *3 (-1045)))) (-2646 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-767)) (-5 *1 (-1165 *3)) (-4 *3 (-1045)))))
+(-13 (-1233 |#1|) (-10 -8 (-15 -1307 ((-858) $ (-858))) (-15 -2646 ($ $ (-767) |#1| $))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2605 (((-640 (-1075)) $) NIL)) (-2517 (((-1169) $) 11)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-1763 (($ $ (-407 (-563))) NIL) (($ $ (-407 (-563)) (-407 (-563))) NIL)) (-1787 (((-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|))) $) NIL)) (-1770 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL (|has| |#1| (-363)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2185 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2003 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1747 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3049 (($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|)))) NIL)) (-1793 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-1160 |#1| |#2| |#3|) "failed") $) 33) (((-3 (-1167 |#1| |#2| |#3|) "failed") $) 36)) (-2057 (((-1160 |#1| |#2| |#3|) $) NIL) (((-1167 |#1| |#2| |#3|) $) NIL)) (-3094 (($ $ $) NIL (|has| |#1| (-363)))) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1854 (((-407 (-563)) $) 55)) (-3054 (($ $ $) NIL (|has| |#1| (-363)))) (-2669 (($ (-407 (-563)) (-1160 |#1| |#2| |#3|)) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2560 (((-112) $) NIL (|has| |#1| (-363)))) (-3381 (((-112) $) NIL)) (-2179 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1775 (((-407 (-563)) $) NIL) (((-407 (-563)) $ (-407 (-563))) NIL)) (-3401 (((-112) $) NIL)) (-2172 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1821 (($ $ (-917)) NIL) (($ $ (-407 (-563))) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-407 (-563))) 20) (($ $ (-1075) (-407 (-563))) NIL) (($ $ (-640 (-1075)) (-640 (-407 (-563)))) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-4372 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-1843 (((-1160 |#1| |#2| |#3|) $) 41)) (-1832 (((-3 (-1160 |#1| |#2| |#3|) "failed") $) NIL)) (-2659 (((-1160 |#1| |#2| |#3|) $) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL (|has| |#1| (-363)))) (-2062 (($ $) 39 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) NIL (-4034 (-12 (|has| |#1| (-15 -2062 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2605 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193))))) (($ $ (-1253 |#2|)) 40 (|has| |#1| (-38 (-407 (-563)))))) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2173 (((-418 $) $) NIL (|has| |#1| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-1751 (($ $ (-407 (-563))) NIL)) (-3012 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3372 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1542 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))))) (-1993 (((-767) $) NIL (|has| |#1| (-363)))) (-2308 ((|#1| $ (-407 (-563))) NIL) (($ $ $) NIL (|has| (-407 (-563)) (-1105)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $ (-1253 |#2|)) 38)) (-3871 (((-407 (-563)) $) NIL)) (-1805 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3369 (($ $) NIL)) (-1692 (((-858) $) 58) (($ (-563)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1160 |#1| |#2| |#3|)) 30) (($ (-1167 |#1| |#2| |#3|)) 31) (($ (-1253 |#2|)) 26) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555)))) (-3244 ((|#1| $ (-407 (-563))) NIL)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) NIL)) (-3412 ((|#1| $) 12)) (-1839 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1816 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1402 ((|#1| $ (-407 (-563))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-1311 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2239 (($) 22 T CONST)) (-2253 (($) 16 T CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) 24)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
+(((-1166 |#1| |#2| |#3|) (-13 (-1240 |#1| (-1160 |#1| |#2| |#3|)) (-1034 (-1167 |#1| |#2| |#3|)) (-613 (-1253 |#2|)) (-10 -8 (-15 -4203 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1253 |#2|))) |%noBranch|))) (-1045) (-1169) |#1|) (T -1166))
+((-4203 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-2062 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
+(-13 (-1240 |#1| (-1160 |#1| |#2| |#3|)) (-1034 (-1167 |#1| |#2| |#3|)) (-613 (-1253 |#2|)) (-10 -8 (-15 -4203 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1253 |#2|))) |%noBranch|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 124)) (-2605 (((-640 (-1075)) $) NIL)) (-2517 (((-1169) $) 115)) (-2051 (((-1230 |#2| |#1|) $ (-767)) 62)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-1763 (($ $ (-767)) 78) (($ $ (-767) (-767)) 75)) (-1787 (((-1149 (-2 (|:| |k| (-767)) (|:| |c| |#1|))) $) 101)) (-1770 (($ $) 168 (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) 144 (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) NIL)) (-2185 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1747 (($ $) 164 (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) 140 (|has| |#1| (-38 (-407 (-563)))))) (-3049 (($ (-1149 (-2 (|:| |k| (-767)) (|:| |c| |#1|)))) 114) (($ (-1149 |#1|)) 109)) (-1793 (($ $) 172 (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) 148 (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) NIL T CONST)) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) 23)) (-3945 (($ $) 26)) (-3621 (((-948 |#1|) $ (-767)) 74) (((-948 |#1|) $ (-767) (-767)) 76)) (-3381 (((-112) $) 119)) (-2179 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1775 (((-767) $) 121) (((-767) $ (-767)) 123)) (-3401 (((-112) $) NIL)) (-2172 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1821 (($ $ (-917)) NIL)) (-2072 (($ (-1 |#1| (-563)) $) NIL)) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-767)) 13) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-4372 (($ $) 130 (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-2062 (($ $) 128 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) NIL (-4034 (-12 (|has| |#1| (-15 -2062 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2605 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193))))) (($ $ (-1253 |#2|)) 129 (|has| |#1| (-38 (-407 (-563)))))) (-1693 (((-1113) $) NIL)) (-1751 (($ $ (-767)) 15)) (-3012 (((-3 $ "failed") $ $) 24 (|has| |#1| (-555)))) (-3372 (($ $) 132 (|has| |#1| (-38 (-407 (-563)))))) (-1542 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-767)))))) (-2308 ((|#1| $ (-767)) 118) (($ $ $) 127 (|has| (-767) (-1105)))) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $) 27 (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $ (-1253 |#2|)) 29)) (-3871 (((-767) $) NIL)) (-1805 (($ $) 174 (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) 150 (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) 170 (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) 146 (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) 166 (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) 142 (|has| |#1| (-38 (-407 (-563)))))) (-3369 (($ $) NIL)) (-1692 (((-858) $) 200) (($ (-563)) NIL) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555))) (($ |#1|) 125 (|has| |#1| (-172))) (($ (-1230 |#2| |#1|)) 50) (($ (-1253 |#2|)) 32)) (-3955 (((-1149 |#1|) $) 97)) (-3244 ((|#1| $ (-767)) 117)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) NIL)) (-3412 ((|#1| $) 53)) (-1839 (($ $) 180 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) 156 (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1816 (($ $) 176 (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) 152 (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) 184 (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) 160 (|has| |#1| (-38 (-407 (-563)))))) (-1402 ((|#1| $ (-767)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-767)))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-1311 (($ $) 186 (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) 162 (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) 182 (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) 158 (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) 178 (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) 154 (|has| |#1| (-38 (-407 (-563)))))) (-2239 (($) 17 T CONST)) (-2253 (($) 19 T CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) 193)) (-1813 (($ $ $) 31)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ |#1|) 197 (|has| |#1| (-363))) (($ $ $) 133 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 136 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 131) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
+(((-1167 |#1| |#2| |#3|) (-13 (-1248 |#1|) (-10 -8 (-15 -1692 ($ (-1230 |#2| |#1|))) (-15 -2051 ((-1230 |#2| |#1|) $ (-767))) (-15 -1692 ($ (-1253 |#2|))) (-15 -4203 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1253 |#2|))) |%noBranch|))) (-1045) (-1169) |#1|) (T -1167))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1230 *4 *3)) (-4 *3 (-1045)) (-14 *4 (-1169)) (-14 *5 *3) (-5 *1 (-1167 *3 *4 *5)))) (-2051 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1230 *5 *4)) (-5 *1 (-1167 *4 *5 *6)) (-4 *4 (-1045)) (-14 *5 (-1169)) (-14 *6 *4))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1167 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-4203 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1167 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-2062 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1167 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
+(-13 (-1248 |#1|) (-10 -8 (-15 -1692 ($ (-1230 |#2| |#1|))) (-15 -2051 ((-1230 |#2| |#1|) $ (-767))) (-15 -1692 ($ (-1253 |#2|))) (-15 -4203 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1253 |#2|))) |%noBranch|)))
+((-1692 (((-858) $) 27) (($ (-1169)) 29)) (-4034 (($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 40)) (-4023 (($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 33) (($ $) 34)) (-1355 (($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 35)) (-1345 (($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 37)) (-1336 (($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 36)) (-1325 (($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 38)) (-3303 (($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 41)) (-12 (($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $))) 39)))
+(((-1168) (-13 (-610 (-858)) (-10 -8 (-15 -1692 ($ (-1169))) (-15 -1355 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -1336 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -1345 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -1325 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -4034 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -3303 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -4023 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -4023 ($ $))))) (T -1168))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1168)))) (-1355 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-1336 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-1345 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-1325 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-4034 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-3303 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-4023 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168)))) (-5 *1 (-1168)))) (-4023 (*1 *1 *1) (-5 *1 (-1168))))
+(-13 (-610 (-858)) (-10 -8 (-15 -1692 ($ (-1169))) (-15 -1355 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -1336 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -1345 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -1325 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -4034 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -3303 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)) (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -4023 ($ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379))) (|:| CF (-316 (-169 (-379)))) (|:| |switch| $)))) (-15 -4023 ($ $))))
+((-1677 (((-112) $ $) NIL)) (-1329 (($ $ (-640 (-858))) 59)) (-1338 (($ $ (-640 (-858))) 57)) (-3737 (((-1151) $) 84)) (-3432 (((-2 (|:| -3331 (-640 (-858))) (|:| -4092 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3321 (-640 (-858))) (|:| |args| (-640 (-858)))) $) 87)) (-1348 (((-112) $) 22)) (-3559 (($ $ (-640 (-640 (-858)))) 56) (($ $ (-2 (|:| -3331 (-640 (-858))) (|:| -4092 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3321 (-640 (-858))) (|:| |args| (-640 (-858))))) 82)) (-2569 (($) 123 T CONST)) (-1358 (((-1262)) 105)) (-1812 (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 66) (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 73)) (-1565 (($) 94) (($ $) 100)) (-3352 (($ $) 83)) (-3088 (($ $ $) NIL)) (-1776 (($ $ $) NIL)) (-3652 (((-640 $) $) 106)) (-3854 (((-1151) $) 89)) (-1693 (((-1113) $) NIL)) (-2308 (($ $ (-640 (-858))) 58)) (-2219 (((-536) $) 46) (((-1169) $) 47) (((-888 (-563)) $) 77) (((-888 (-379)) $) 75)) (-1692 (((-858) $) 53) (($ (-1151)) 48)) (-1318 (($ $ (-640 (-858))) 60)) (-2742 (((-1151) $) 33) (((-1151) $ (-112)) 34) (((-1262) (-818) $) 35) (((-1262) (-818) $ (-112)) 36)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) 49)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) 50)))
+(((-1169) (-13 (-846) (-611 (-536)) (-824) (-611 (-1169)) (-613 (-1151)) (-611 (-888 (-563))) (-611 (-888 (-379))) (-882 (-563)) (-882 (-379)) (-10 -8 (-15 -1565 ($)) (-15 -1565 ($ $)) (-15 -1358 ((-1262))) (-15 -3352 ($ $)) (-15 -1348 ((-112) $)) (-15 -3432 ((-2 (|:| -3331 (-640 (-858))) (|:| -4092 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3321 (-640 (-858))) (|:| |args| (-640 (-858)))) $)) (-15 -3559 ($ $ (-640 (-640 (-858))))) (-15 -3559 ($ $ (-2 (|:| -3331 (-640 (-858))) (|:| -4092 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3321 (-640 (-858))) (|:| |args| (-640 (-858)))))) (-15 -1338 ($ $ (-640 (-858)))) (-15 -1329 ($ $ (-640 (-858)))) (-15 -1318 ($ $ (-640 (-858)))) (-15 -2308 ($ $ (-640 (-858)))) (-15 -3737 ((-1151) $)) (-15 -3652 ((-640 $) $)) (-15 -2569 ($) -2668)))) (T -1169))
+((-1565 (*1 *1) (-5 *1 (-1169))) (-1565 (*1 *1 *1) (-5 *1 (-1169))) (-1358 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1169)))) (-3352 (*1 *1 *1) (-5 *1 (-1169))) (-1348 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1169)))) (-3432 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -3331 (-640 (-858))) (|:| -4092 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3321 (-640 (-858))) (|:| |args| (-640 (-858))))) (-5 *1 (-1169)))) (-3559 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-640 (-858)))) (-5 *1 (-1169)))) (-3559 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -3331 (-640 (-858))) (|:| -4092 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3321 (-640 (-858))) (|:| |args| (-640 (-858))))) (-5 *1 (-1169)))) (-1338 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-1169)))) (-1329 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-1169)))) (-1318 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-1169)))) (-2308 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-1169)))) (-3737 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-1169)))) (-3652 (*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-1169)))) (-2569 (*1 *1) (-5 *1 (-1169))))
+(-13 (-846) (-611 (-536)) (-824) (-611 (-1169)) (-613 (-1151)) (-611 (-888 (-563))) (-611 (-888 (-379))) (-882 (-563)) (-882 (-379)) (-10 -8 (-15 -1565 ($)) (-15 -1565 ($ $)) (-15 -1358 ((-1262))) (-15 -3352 ($ $)) (-15 -1348 ((-112) $)) (-15 -3432 ((-2 (|:| -3331 (-640 (-858))) (|:| -4092 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3321 (-640 (-858))) (|:| |args| (-640 (-858)))) $)) (-15 -3559 ($ $ (-640 (-640 (-858))))) (-15 -3559 ($ $ (-2 (|:| -3331 (-640 (-858))) (|:| -4092 (-640 (-858))) (|:| |presup| (-640 (-858))) (|:| -3321 (-640 (-858))) (|:| |args| (-640 (-858)))))) (-15 -1338 ($ $ (-640 (-858)))) (-15 -1329 ($ $ (-640 (-858)))) (-15 -1318 ($ $ (-640 (-858)))) (-15 -2308 ($ $ (-640 (-858)))) (-15 -3737 ((-1151) $)) (-15 -3652 ((-640 $) $)) (-15 -2569 ($) -2668)))
+((-1367 (((-1257 |#1|) |#1| (-917)) 16) (((-1257 |#1|) (-640 |#1|)) 20)))
+(((-1170 |#1|) (-10 -7 (-15 -1367 ((-1257 |#1|) (-640 |#1|))) (-15 -1367 ((-1257 |#1|) |#1| (-917)))) (-1045)) (T -1170))
+((-1367 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-5 *2 (-1257 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1045)))) (-1367 (*1 *2 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-1045)) (-5 *2 (-1257 *4)) (-5 *1 (-1170 *4)))))
+(-10 -7 (-15 -1367 ((-1257 |#1|) (-640 |#1|))) (-15 -1367 ((-1257 |#1|) |#1| (-917))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL (|has| |#1| (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#1| (-1034 (-407 (-563))))) (((-3 |#1| "failed") $) NIL)) (-2057 (((-563) $) NIL (|has| |#1| (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| |#1| (-1034 (-407 (-563))))) ((|#1| $) NIL)) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-4151 (($ $) NIL (|has| |#1| (-452)))) (-2159 (($ $ |#1| (-967) $) NIL)) (-3401 (((-112) $) 14)) (-3481 (((-767) $) NIL)) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-967)) NIL)) (-3908 (((-967) $) NIL)) (-2170 (($ (-1 (-967) (-967)) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) NIL)) (-2705 ((|#1| $) NIL)) (-2646 (($ $ (-967) |#1| $) NIL (-12 (|has| (-967) (-131)) (|has| |#1| (-555))))) (-3012 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-555)))) (-3871 (((-967) $) NIL)) (-3885 ((|#1| $) NIL (|has| |#1| (-452)))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ $) NIL (|has| |#1| (-555))) (($ |#1|) NIL) (($ (-407 (-563))) NIL (-4034 (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-1034 (-407 (-563))))))) (-3955 (((-640 |#1|) $) NIL)) (-3244 ((|#1| $ (-967)) NIL)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) NIL)) (-2148 (($ $ $ (-767)) NIL (|has| |#1| (-172)))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-2239 (($) 9 T CONST)) (-2253 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) 17)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 18) (($ $ |#1|) NIL) (($ |#1| $) 13) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
+(((-1171 |#1|) (-13 (-326 |#1| (-967)) (-10 -8 (IF (|has| |#1| (-555)) (IF (|has| (-967) (-131)) (-15 -2646 ($ $ (-967) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4406)) (-6 -4406) |%noBranch|))) (-1045)) (T -1171))
+((-2646 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-967)) (-4 *2 (-131)) (-5 *1 (-1171 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))))
+(-13 (-326 |#1| (-967)) (-10 -8 (IF (|has| |#1| (-555)) (IF (|has| (-967) (-131)) (-15 -2646 ($ $ (-967) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4406)) (-6 -4406) |%noBranch|)))
+((-1376 (((-1173) (-1169) $) 25)) (-3349 (($) 29)) (-1397 (((-3 (|:| |fst| (-434)) (|:| -3785 "void")) (-1169) $) 22)) (-3282 (((-1262) (-1169) (-3 (|:| |fst| (-434)) (|:| -3785 "void")) $) 41) (((-1262) (-1169) (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) 42) (((-1262) (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) 43)) (-3360 (((-1262) (-1169)) 58)) (-3272 (((-1262) (-1169) $) 55) (((-1262) (-1169)) 56) (((-1262)) 57)) (-3329 (((-1262) (-1169)) 37)) (-3306 (((-1169)) 36)) (-3445 (($) 34)) (-4185 (((-437) (-1169) (-437) (-1169) $) 45) (((-437) (-640 (-1169)) (-437) (-1169) $) 49) (((-437) (-1169) (-437)) 46) (((-437) (-1169) (-437) (-1169)) 50)) (-3319 (((-1169)) 35)) (-1692 (((-858) $) 28)) (-3339 (((-1262)) 30) (((-1262) (-1169)) 33)) (-1386 (((-640 (-1169)) (-1169) $) 24)) (-3293 (((-1262) (-1169) (-640 (-1169)) $) 38) (((-1262) (-1169) (-640 (-1169))) 39) (((-1262) (-640 (-1169))) 40)))
+(((-1172) (-13 (-610 (-858)) (-10 -8 (-15 -3349 ($)) (-15 -3339 ((-1262))) (-15 -3339 ((-1262) (-1169))) (-15 -4185 ((-437) (-1169) (-437) (-1169) $)) (-15 -4185 ((-437) (-640 (-1169)) (-437) (-1169) $)) (-15 -4185 ((-437) (-1169) (-437))) (-15 -4185 ((-437) (-1169) (-437) (-1169))) (-15 -3329 ((-1262) (-1169))) (-15 -3319 ((-1169))) (-15 -3306 ((-1169))) (-15 -3293 ((-1262) (-1169) (-640 (-1169)) $)) (-15 -3293 ((-1262) (-1169) (-640 (-1169)))) (-15 -3293 ((-1262) (-640 (-1169)))) (-15 -3282 ((-1262) (-1169) (-3 (|:| |fst| (-434)) (|:| -3785 "void")) $)) (-15 -3282 ((-1262) (-1169) (-3 (|:| |fst| (-434)) (|:| -3785 "void")))) (-15 -3282 ((-1262) (-3 (|:| |fst| (-434)) (|:| -3785 "void")))) (-15 -3272 ((-1262) (-1169) $)) (-15 -3272 ((-1262) (-1169))) (-15 -3272 ((-1262))) (-15 -3360 ((-1262) (-1169))) (-15 -3445 ($)) (-15 -1397 ((-3 (|:| |fst| (-434)) (|:| -3785 "void")) (-1169) $)) (-15 -1386 ((-640 (-1169)) (-1169) $)) (-15 -1376 ((-1173) (-1169) $))))) (T -1172))
+((-3349 (*1 *1) (-5 *1 (-1172))) (-3339 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3339 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-4185 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-437)) (-5 *3 (-1169)) (-5 *1 (-1172)))) (-4185 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-437)) (-5 *3 (-640 (-1169))) (-5 *4 (-1169)) (-5 *1 (-1172)))) (-4185 (*1 *2 *3 *2) (-12 (-5 *2 (-437)) (-5 *3 (-1169)) (-5 *1 (-1172)))) (-4185 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-437)) (-5 *3 (-1169)) (-5 *1 (-1172)))) (-3329 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3319 (*1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1172)))) (-3306 (*1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1172)))) (-3293 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3293 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3293 (*1 *2 *3) (-12 (-5 *3 (-640 (-1169))) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3282 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1169)) (-5 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3282 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-5 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3282 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3272 (*1 *2 *3 *1) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3272 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3272 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3360 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))) (-3445 (*1 *1) (-5 *1 (-1172))) (-1397 (*1 *2 *3 *1) (-12 (-5 *3 (-1169)) (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-5 *1 (-1172)))) (-1386 (*1 *2 *3 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-1172)) (-5 *3 (-1169)))) (-1376 (*1 *2 *3 *1) (-12 (-5 *3 (-1169)) (-5 *2 (-1173)) (-5 *1 (-1172)))))
+(-13 (-610 (-858)) (-10 -8 (-15 -3349 ($)) (-15 -3339 ((-1262))) (-15 -3339 ((-1262) (-1169))) (-15 -4185 ((-437) (-1169) (-437) (-1169) $)) (-15 -4185 ((-437) (-640 (-1169)) (-437) (-1169) $)) (-15 -4185 ((-437) (-1169) (-437))) (-15 -4185 ((-437) (-1169) (-437) (-1169))) (-15 -3329 ((-1262) (-1169))) (-15 -3319 ((-1169))) (-15 -3306 ((-1169))) (-15 -3293 ((-1262) (-1169) (-640 (-1169)) $)) (-15 -3293 ((-1262) (-1169) (-640 (-1169)))) (-15 -3293 ((-1262) (-640 (-1169)))) (-15 -3282 ((-1262) (-1169) (-3 (|:| |fst| (-434)) (|:| -3785 "void")) $)) (-15 -3282 ((-1262) (-1169) (-3 (|:| |fst| (-434)) (|:| -3785 "void")))) (-15 -3282 ((-1262) (-3 (|:| |fst| (-434)) (|:| -3785 "void")))) (-15 -3272 ((-1262) (-1169) $)) (-15 -3272 ((-1262) (-1169))) (-15 -3272 ((-1262))) (-15 -3360 ((-1262) (-1169))) (-15 -3445 ($)) (-15 -1397 ((-3 (|:| |fst| (-434)) (|:| -3785 "void")) (-1169) $)) (-15 -1386 ((-640 (-1169)) (-1169) $)) (-15 -1376 ((-1173) (-1169) $))))
+((-3383 (((-640 (-640 (-3 (|:| -3352 (-1169)) (|:| -3771 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563))))))))) $) 59)) (-3408 (((-640 (-3 (|:| -3352 (-1169)) (|:| -3771 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563)))))))) (-434) $) 43)) (-2778 (($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-437))))) 17)) (-3360 (((-1262) $) 67)) (-3421 (((-640 (-1169)) $) 22)) (-3371 (((-1097) $) 55)) (-3434 (((-437) (-1169) $) 27)) (-3396 (((-640 (-1169)) $) 30)) (-3445 (($) 19)) (-4185 (((-437) (-640 (-1169)) (-437) $) 25) (((-437) (-1169) (-437) $) 24)) (-1692 (((-858) $) 9) (((-1181 (-1169) (-437)) $) 13)))
+(((-1173) (-13 (-610 (-858)) (-10 -8 (-15 -1692 ((-1181 (-1169) (-437)) $)) (-15 -3445 ($)) (-15 -4185 ((-437) (-640 (-1169)) (-437) $)) (-15 -4185 ((-437) (-1169) (-437) $)) (-15 -3434 ((-437) (-1169) $)) (-15 -3421 ((-640 (-1169)) $)) (-15 -3408 ((-640 (-3 (|:| -3352 (-1169)) (|:| -3771 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563)))))))) (-434) $)) (-15 -3396 ((-640 (-1169)) $)) (-15 -3383 ((-640 (-640 (-3 (|:| -3352 (-1169)) (|:| -3771 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563))))))))) $)) (-15 -3371 ((-1097) $)) (-15 -3360 ((-1262) $)) (-15 -2778 ($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-437))))))))) (T -1173))
+((-1692 (*1 *2 *1) (-12 (-5 *2 (-1181 (-1169) (-437))) (-5 *1 (-1173)))) (-3445 (*1 *1) (-5 *1 (-1173))) (-4185 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-437)) (-5 *3 (-640 (-1169))) (-5 *1 (-1173)))) (-4185 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-437)) (-5 *3 (-1169)) (-5 *1 (-1173)))) (-3434 (*1 *2 *3 *1) (-12 (-5 *3 (-1169)) (-5 *2 (-437)) (-5 *1 (-1173)))) (-3421 (*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-1173)))) (-3408 (*1 *2 *3 *1) (-12 (-5 *3 (-434)) (-5 *2 (-640 (-3 (|:| -3352 (-1169)) (|:| -3771 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563))))))))) (-5 *1 (-1173)))) (-3396 (*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-1173)))) (-3383 (*1 *2 *1) (-12 (-5 *2 (-640 (-640 (-3 (|:| -3352 (-1169)) (|:| -3771 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563)))))))))) (-5 *1 (-1173)))) (-3371 (*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-1173)))) (-3360 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1173)))) (-2778 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-437))))) (-5 *1 (-1173)))))
+(-13 (-610 (-858)) (-10 -8 (-15 -1692 ((-1181 (-1169) (-437)) $)) (-15 -3445 ($)) (-15 -4185 ((-437) (-640 (-1169)) (-437) $)) (-15 -4185 ((-437) (-1169) (-437) $)) (-15 -3434 ((-437) (-1169) $)) (-15 -3421 ((-640 (-1169)) $)) (-15 -3408 ((-640 (-3 (|:| -3352 (-1169)) (|:| -3771 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563)))))))) (-434) $)) (-15 -3396 ((-640 (-1169)) $)) (-15 -3383 ((-640 (-640 (-3 (|:| -3352 (-1169)) (|:| -3771 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563))))))))) $)) (-15 -3371 ((-1097) $)) (-15 -3360 ((-1262) $)) (-15 -2778 ($ (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-437))))))))
+((-1677 (((-112) $ $) NIL)) (-2130 (((-3 (-563) "failed") $) 29) (((-3 (-225) "failed") $) 35) (((-3 (-1169) "failed") $) 41) (((-3 (-1151) "failed") $) 47)) (-2057 (((-563) $) 30) (((-225) $) 36) (((-1169) $) 42) (((-1151) $) 48)) (-3488 (((-112) $) 53)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3478 (((-3 (-563) (-225) (-1169) (-1151) $) $) 55)) (-3468 (((-640 $) $) 57)) (-2219 (((-1097) $) 24) (($ (-1097)) 25)) (-3456 (((-112) $) 56)) (-1692 (((-858) $) 23) (($ (-563)) 26) (($ (-225)) 32) (($ (-1169)) 38) (($ (-1151)) 44) (((-536) $) 59) (((-563) $) 31) (((-225) $) 37) (((-1169) $) 43) (((-1151) $) 49)) (-2224 (((-112) $ (|[\|\|]| (-563))) 10) (((-112) $ (|[\|\|]| (-225))) 13) (((-112) $ (|[\|\|]| (-1169))) 19) (((-112) $ (|[\|\|]| (-1151))) 16)) (-3498 (($ (-1169) (-640 $)) 51) (($ $ (-640 $)) 52)) (-1904 (((-563) $) 27) (((-225) $) 33) (((-1169) $) 39) (((-1151) $) 45)) (-1718 (((-112) $ $) 7)))
+(((-1174) (-13 (-1252) (-1093) (-1034 (-563)) (-1034 (-225)) (-1034 (-1169)) (-1034 (-1151)) (-610 (-536)) (-10 -8 (-15 -2219 ((-1097) $)) (-15 -2219 ($ (-1097))) (-15 -1692 ((-563) $)) (-15 -1904 ((-563) $)) (-15 -1692 ((-225) $)) (-15 -1904 ((-225) $)) (-15 -1692 ((-1169) $)) (-15 -1904 ((-1169) $)) (-15 -1692 ((-1151) $)) (-15 -1904 ((-1151) $)) (-15 -3498 ($ (-1169) (-640 $))) (-15 -3498 ($ $ (-640 $))) (-15 -3488 ((-112) $)) (-15 -3478 ((-3 (-563) (-225) (-1169) (-1151) $) $)) (-15 -3468 ((-640 $) $)) (-15 -3456 ((-112) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-563)))) (-15 -2224 ((-112) $ (|[\|\|]| (-225)))) (-15 -2224 ((-112) $ (|[\|\|]| (-1169)))) (-15 -2224 ((-112) $ (|[\|\|]| (-1151))))))) (T -1174))
+((-2219 (*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-1174)))) (-2219 (*1 *1 *2) (-12 (-5 *2 (-1097)) (-5 *1 (-1174)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1174)))) (-1904 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1174)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-1174)))) (-1904 (*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-1174)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-1174)))) (-1904 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-1174)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-1174)))) (-1904 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-1174)))) (-3498 (*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-1174))) (-5 *1 (-1174)))) (-3498 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-1174))) (-5 *1 (-1174)))) (-3488 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174)))) (-3478 (*1 *2 *1) (-12 (-5 *2 (-3 (-563) (-225) (-1169) (-1151) (-1174))) (-5 *1 (-1174)))) (-3468 (*1 *2 *1) (-12 (-5 *2 (-640 (-1174))) (-5 *1 (-1174)))) (-3456 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174)))) (-2224 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-563))) (-5 *2 (-112)) (-5 *1 (-1174)))) (-2224 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-225))) (-5 *2 (-112)) (-5 *1 (-1174)))) (-2224 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1169))) (-5 *2 (-112)) (-5 *1 (-1174)))) (-2224 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1151))) (-5 *2 (-112)) (-5 *1 (-1174)))))
+(-13 (-1252) (-1093) (-1034 (-563)) (-1034 (-225)) (-1034 (-1169)) (-1034 (-1151)) (-610 (-536)) (-10 -8 (-15 -2219 ((-1097) $)) (-15 -2219 ($ (-1097))) (-15 -1692 ((-563) $)) (-15 -1904 ((-563) $)) (-15 -1692 ((-225) $)) (-15 -1904 ((-225) $)) (-15 -1692 ((-1169) $)) (-15 -1904 ((-1169) $)) (-15 -1692 ((-1151) $)) (-15 -1904 ((-1151) $)) (-15 -3498 ($ (-1169) (-640 $))) (-15 -3498 ($ $ (-640 $))) (-15 -3488 ((-112) $)) (-15 -3478 ((-3 (-563) (-225) (-1169) (-1151) $) $)) (-15 -3468 ((-640 $) $)) (-15 -3456 ((-112) $)) (-15 -2224 ((-112) $ (|[\|\|]| (-563)))) (-15 -2224 ((-112) $ (|[\|\|]| (-225)))) (-15 -2224 ((-112) $ (|[\|\|]| (-1169)))) (-15 -2224 ((-112) $ (|[\|\|]| (-1151))))))
+((-1677 (((-112) $ $) NIL)) (-3750 (((-767)) 10)) (-1690 (($) 14)) (-3088 (($ $ $) NIL) (($) 7 T CONST)) (-1776 (($ $ $) NIL) (($) 8 T CONST)) (-3990 (((-917) $) 13)) (-3854 (((-1151) $) NIL)) (-2552 (($ (-917)) 12)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)))
(((-1175 |#1|) (-840) (-917)) (T -1175))
NIL
(-840)
((|Integer|) (COND ((< @1 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-1677 (((-112) $ $) NIL)) (-3749 (((-767)) NIL)) (-4239 (($) 9)) (-1691 (($) NIL)) (-3084 (($ $ $) NIL) (($) 7 T CONST)) (-1777 (($ $ $) NIL) (($) 8 T CONST)) (-1476 (((-917) $) NIL)) (-3573 (((-1151) $) NIL)) (-2555 (($ (-917)) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-3119 (($ $ $) 11)) (-3109 (($ $ $) 10)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)))
-(((-1176 |#1|) (-13 (-840) (-10 -8 (-15 -3109 ($ $ $)) (-15 -3119 ($ $ $)) (-15 -4239 ($)))) (-917)) (T -1176))
-((-3109 (*1 *1 *1 *1) (-12 (-5 *1 (-1176 *2)) (-14 *2 (-917)))) (-3119 (*1 *1 *1 *1) (-12 (-5 *1 (-1176 *2)) (-14 *2 (-917)))) (-4239 (*1 *1) (-12 (-5 *1 (-1176 *2)) (-14 *2 (-917)))))
-(-13 (-840) (-10 -8 (-15 -3109 ($ $ $)) (-15 -3119 ($ $ $)) (-15 -4239 ($))))
+((-1677 (((-112) $ $) NIL)) (-3750 (((-767)) NIL)) (-2569 (($) 9)) (-1690 (($) NIL)) (-3088 (($ $ $) NIL) (($) 7 T CONST)) (-1776 (($ $ $) NIL) (($) 8 T CONST)) (-3990 (((-917) $) NIL)) (-3854 (((-1151) $) NIL)) (-2552 (($ (-917)) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-3123 (($ $ $) 11)) (-3113 (($ $ $) 10)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)))
+(((-1176 |#1|) (-13 (-840) (-10 -8 (-15 -3113 ($ $ $)) (-15 -3123 ($ $ $)) (-15 -2569 ($)))) (-917)) (T -1176))
+((-3113 (*1 *1 *1 *1) (-12 (-5 *1 (-1176 *2)) (-14 *2 (-917)))) (-3123 (*1 *1 *1 *1) (-12 (-5 *1 (-1176 *2)) (-14 *2 (-917)))) (-2569 (*1 *1) (-12 (-5 *1 (-1176 *2)) (-14 *2 (-917)))))
+(-13 (-840) (-10 -8 (-15 -3113 ($ $ $)) (-15 -3123 ($ $ $)) (-15 -2569 ($))))
((|NonNegativeInteger|) (COND ((< @1 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-2447 (((-640 (-640 (-948 |#1|))) (-640 (-407 (-948 |#1|))) (-640 (-1169))) 57)) (-1793 (((-640 (-294 (-407 (-948 |#1|)))) (-294 (-407 (-948 |#1|)))) 69) (((-640 (-294 (-407 (-948 |#1|)))) (-407 (-948 |#1|))) 65) (((-640 (-294 (-407 (-948 |#1|)))) (-294 (-407 (-948 |#1|))) (-1169)) 70) (((-640 (-294 (-407 (-948 |#1|)))) (-407 (-948 |#1|)) (-1169)) 64) (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-294 (-407 (-948 |#1|))))) 93) (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-407 (-948 |#1|)))) 92) (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-294 (-407 (-948 |#1|)))) (-640 (-1169))) 94) (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-407 (-948 |#1|))) (-640 (-1169))) 91)))
-(((-1177 |#1|) (-10 -7 (-15 -1793 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -1793 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-294 (-407 (-948 |#1|)))) (-640 (-1169)))) (-15 -1793 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-407 (-948 |#1|))))) (-15 -1793 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-294 (-407 (-948 |#1|)))))) (-15 -1793 ((-640 (-294 (-407 (-948 |#1|)))) (-407 (-948 |#1|)) (-1169))) (-15 -1793 ((-640 (-294 (-407 (-948 |#1|)))) (-294 (-407 (-948 |#1|))) (-1169))) (-15 -1793 ((-640 (-294 (-407 (-948 |#1|)))) (-407 (-948 |#1|)))) (-15 -1793 ((-640 (-294 (-407 (-948 |#1|)))) (-294 (-407 (-948 |#1|))))) (-15 -2447 ((-640 (-640 (-948 |#1|))) (-640 (-407 (-948 |#1|))) (-640 (-1169))))) (-555)) (T -1177))
-((-2447 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169))) (-4 *5 (-555)) (-5 *2 (-640 (-640 (-948 *5)))) (-5 *1 (-1177 *5)))) (-1793 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-640 (-294 (-407 (-948 *4))))) (-5 *1 (-1177 *4)) (-5 *3 (-294 (-407 (-948 *4)))))) (-1793 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-640 (-294 (-407 (-948 *4))))) (-5 *1 (-1177 *4)) (-5 *3 (-407 (-948 *4))))) (-1793 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-555)) (-5 *2 (-640 (-294 (-407 (-948 *5))))) (-5 *1 (-1177 *5)) (-5 *3 (-294 (-407 (-948 *5)))))) (-1793 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-555)) (-5 *2 (-640 (-294 (-407 (-948 *5))))) (-5 *1 (-1177 *5)) (-5 *3 (-407 (-948 *5))))) (-1793 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *4)))))) (-5 *1 (-1177 *4)) (-5 *3 (-640 (-294 (-407 (-948 *4))))))) (-1793 (*1 *2 *3) (-12 (-5 *3 (-640 (-407 (-948 *4)))) (-4 *4 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *4)))))) (-5 *1 (-1177 *4)))) (-1793 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-1169))) (-4 *5 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *5)))))) (-5 *1 (-1177 *5)) (-5 *3 (-640 (-294 (-407 (-948 *5))))))) (-1793 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169))) (-4 *5 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *5)))))) (-5 *1 (-1177 *5)))))
-(-10 -7 (-15 -1793 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -1793 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-294 (-407 (-948 |#1|)))) (-640 (-1169)))) (-15 -1793 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-407 (-948 |#1|))))) (-15 -1793 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-294 (-407 (-948 |#1|)))))) (-15 -1793 ((-640 (-294 (-407 (-948 |#1|)))) (-407 (-948 |#1|)) (-1169))) (-15 -1793 ((-640 (-294 (-407 (-948 |#1|)))) (-294 (-407 (-948 |#1|))) (-1169))) (-15 -1793 ((-640 (-294 (-407 (-948 |#1|)))) (-407 (-948 |#1|)))) (-15 -1793 ((-640 (-294 (-407 (-948 |#1|)))) (-294 (-407 (-948 |#1|))))) (-15 -2447 ((-640 (-640 (-948 |#1|))) (-640 (-407 (-948 |#1|))) (-640 (-1169)))))
-((-3309 (((-1151)) 7)) (-3545 (((-1151)) 9)) (-2465 (((-1262) (-1151)) 11)) (-2492 (((-1151)) 8)))
-(((-1178) (-10 -7 (-15 -3309 ((-1151))) (-15 -2492 ((-1151))) (-15 -3545 ((-1151))) (-15 -2465 ((-1262) (-1151))))) (T -1178))
-((-2465 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1178)))) (-3545 (*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1178)))) (-2492 (*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1178)))) (-3309 (*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1178)))))
-(-10 -7 (-15 -3309 ((-1151))) (-15 -2492 ((-1151))) (-15 -3545 ((-1151))) (-15 -2465 ((-1262) (-1151))))
-((-3441 (((-640 (-640 |#1|)) (-640 (-640 |#1|)) (-640 (-640 (-640 |#1|)))) 38)) (-4210 (((-640 (-640 (-640 |#1|))) (-640 (-640 |#1|))) 24)) (-3093 (((-1180 (-640 |#1|)) (-640 |#1|)) 34)) (-2777 (((-640 (-640 |#1|)) (-640 |#1|)) 30)) (-4105 (((-2 (|:| |f1| (-640 |#1|)) (|:| |f2| (-640 (-640 (-640 |#1|)))) (|:| |f3| (-640 (-640 |#1|))) (|:| |f4| (-640 (-640 (-640 |#1|))))) (-640 (-640 (-640 |#1|)))) 37)) (-1747 (((-2 (|:| |f1| (-640 |#1|)) (|:| |f2| (-640 (-640 (-640 |#1|)))) (|:| |f3| (-640 (-640 |#1|))) (|:| |f4| (-640 (-640 (-640 |#1|))))) (-640 |#1|) (-640 (-640 (-640 |#1|))) (-640 (-640 |#1|)) (-640 (-640 (-640 |#1|))) (-640 (-640 (-640 |#1|))) (-640 (-640 (-640 |#1|)))) 36)) (-2356 (((-640 (-640 |#1|)) (-640 (-640 |#1|))) 28)) (-2591 (((-640 |#1|) (-640 |#1|)) 31)) (-2301 (((-640 (-640 (-640 |#1|))) (-640 |#1|) (-640 (-640 (-640 |#1|)))) 18)) (-1821 (((-640 (-640 (-640 |#1|))) (-1 (-112) |#1| |#1|) (-640 |#1|) (-640 (-640 (-640 |#1|)))) 16)) (-1970 (((-2 (|:| |fs| (-112)) (|:| |sd| (-640 |#1|)) (|:| |td| (-640 (-640 |#1|)))) (-1 (-112) |#1| |#1|) (-640 |#1|) (-640 (-640 |#1|))) 14)) (-4015 (((-640 (-640 |#1|)) (-640 (-640 (-640 |#1|)))) 39)) (-1699 (((-640 (-640 |#1|)) (-1180 (-640 |#1|))) 41)))
-(((-1179 |#1|) (-10 -7 (-15 -1970 ((-2 (|:| |fs| (-112)) (|:| |sd| (-640 |#1|)) (|:| |td| (-640 (-640 |#1|)))) (-1 (-112) |#1| |#1|) (-640 |#1|) (-640 (-640 |#1|)))) (-15 -1821 ((-640 (-640 (-640 |#1|))) (-1 (-112) |#1| |#1|) (-640 |#1|) (-640 (-640 (-640 |#1|))))) (-15 -2301 ((-640 (-640 (-640 |#1|))) (-640 |#1|) (-640 (-640 (-640 |#1|))))) (-15 -3441 ((-640 (-640 |#1|)) (-640 (-640 |#1|)) (-640 (-640 (-640 |#1|))))) (-15 -4015 ((-640 (-640 |#1|)) (-640 (-640 (-640 |#1|))))) (-15 -1699 ((-640 (-640 |#1|)) (-1180 (-640 |#1|)))) (-15 -4210 ((-640 (-640 (-640 |#1|))) (-640 (-640 |#1|)))) (-15 -3093 ((-1180 (-640 |#1|)) (-640 |#1|))) (-15 -2356 ((-640 (-640 |#1|)) (-640 (-640 |#1|)))) (-15 -2777 ((-640 (-640 |#1|)) (-640 |#1|))) (-15 -2591 ((-640 |#1|) (-640 |#1|))) (-15 -1747 ((-2 (|:| |f1| (-640 |#1|)) (|:| |f2| (-640 (-640 (-640 |#1|)))) (|:| |f3| (-640 (-640 |#1|))) (|:| |f4| (-640 (-640 (-640 |#1|))))) (-640 |#1|) (-640 (-640 (-640 |#1|))) (-640 (-640 |#1|)) (-640 (-640 (-640 |#1|))) (-640 (-640 (-640 |#1|))) (-640 (-640 (-640 |#1|))))) (-15 -4105 ((-2 (|:| |f1| (-640 |#1|)) (|:| |f2| (-640 (-640 (-640 |#1|)))) (|:| |f3| (-640 (-640 |#1|))) (|:| |f4| (-640 (-640 (-640 |#1|))))) (-640 (-640 (-640 |#1|)))))) (-846)) (T -1179))
-((-4105 (*1 *2 *3) (-12 (-4 *4 (-846)) (-5 *2 (-2 (|:| |f1| (-640 *4)) (|:| |f2| (-640 (-640 (-640 *4)))) (|:| |f3| (-640 (-640 *4))) (|:| |f4| (-640 (-640 (-640 *4)))))) (-5 *1 (-1179 *4)) (-5 *3 (-640 (-640 (-640 *4)))))) (-1747 (*1 *2 *3 *4 *5 *4 *4 *4) (-12 (-4 *6 (-846)) (-5 *3 (-640 *6)) (-5 *5 (-640 *3)) (-5 *2 (-2 (|:| |f1| *3) (|:| |f2| (-640 *5)) (|:| |f3| *5) (|:| |f4| (-640 *5)))) (-5 *1 (-1179 *6)) (-5 *4 (-640 *5)))) (-2591 (*1 *2 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-1179 *3)))) (-2777 (*1 *2 *3) (-12 (-4 *4 (-846)) (-5 *2 (-640 (-640 *4))) (-5 *1 (-1179 *4)) (-5 *3 (-640 *4)))) (-2356 (*1 *2 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-846)) (-5 *1 (-1179 *3)))) (-3093 (*1 *2 *3) (-12 (-4 *4 (-846)) (-5 *2 (-1180 (-640 *4))) (-5 *1 (-1179 *4)) (-5 *3 (-640 *4)))) (-4210 (*1 *2 *3) (-12 (-4 *4 (-846)) (-5 *2 (-640 (-640 (-640 *4)))) (-5 *1 (-1179 *4)) (-5 *3 (-640 (-640 *4))))) (-1699 (*1 *2 *3) (-12 (-5 *3 (-1180 (-640 *4))) (-4 *4 (-846)) (-5 *2 (-640 (-640 *4))) (-5 *1 (-1179 *4)))) (-4015 (*1 *2 *3) (-12 (-5 *3 (-640 (-640 (-640 *4)))) (-5 *2 (-640 (-640 *4))) (-5 *1 (-1179 *4)) (-4 *4 (-846)))) (-3441 (*1 *2 *2 *3) (-12 (-5 *3 (-640 (-640 (-640 *4)))) (-5 *2 (-640 (-640 *4))) (-4 *4 (-846)) (-5 *1 (-1179 *4)))) (-2301 (*1 *2 *3 *2) (-12 (-5 *2 (-640 (-640 (-640 *4)))) (-5 *3 (-640 *4)) (-4 *4 (-846)) (-5 *1 (-1179 *4)))) (-1821 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-640 (-640 (-640 *5)))) (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-640 *5)) (-4 *5 (-846)) (-5 *1 (-1179 *5)))) (-1970 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-846)) (-5 *4 (-640 *6)) (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-640 *4)))) (-5 *1 (-1179 *6)) (-5 *5 (-640 *4)))))
-(-10 -7 (-15 -1970 ((-2 (|:| |fs| (-112)) (|:| |sd| (-640 |#1|)) (|:| |td| (-640 (-640 |#1|)))) (-1 (-112) |#1| |#1|) (-640 |#1|) (-640 (-640 |#1|)))) (-15 -1821 ((-640 (-640 (-640 |#1|))) (-1 (-112) |#1| |#1|) (-640 |#1|) (-640 (-640 (-640 |#1|))))) (-15 -2301 ((-640 (-640 (-640 |#1|))) (-640 |#1|) (-640 (-640 (-640 |#1|))))) (-15 -3441 ((-640 (-640 |#1|)) (-640 (-640 |#1|)) (-640 (-640 (-640 |#1|))))) (-15 -4015 ((-640 (-640 |#1|)) (-640 (-640 (-640 |#1|))))) (-15 -1699 ((-640 (-640 |#1|)) (-1180 (-640 |#1|)))) (-15 -4210 ((-640 (-640 (-640 |#1|))) (-640 (-640 |#1|)))) (-15 -3093 ((-1180 (-640 |#1|)) (-640 |#1|))) (-15 -2356 ((-640 (-640 |#1|)) (-640 (-640 |#1|)))) (-15 -2777 ((-640 (-640 |#1|)) (-640 |#1|))) (-15 -2591 ((-640 |#1|) (-640 |#1|))) (-15 -1747 ((-2 (|:| |f1| (-640 |#1|)) (|:| |f2| (-640 (-640 (-640 |#1|)))) (|:| |f3| (-640 (-640 |#1|))) (|:| |f4| (-640 (-640 (-640 |#1|))))) (-640 |#1|) (-640 (-640 (-640 |#1|))) (-640 (-640 |#1|)) (-640 (-640 (-640 |#1|))) (-640 (-640 (-640 |#1|))) (-640 (-640 (-640 |#1|))))) (-15 -4105 ((-2 (|:| |f1| (-640 |#1|)) (|:| |f2| (-640 (-640 (-640 |#1|)))) (|:| |f3| (-640 (-640 |#1|))) (|:| |f4| (-640 (-640 (-640 |#1|))))) (-640 (-640 (-640 |#1|))))))
-((-2738 (($ (-640 (-640 |#1|))) 10)) (-4136 (((-640 (-640 |#1|)) $) 11)) (-1693 (((-858) $) 26)))
-(((-1180 |#1|) (-10 -8 (-15 -2738 ($ (-640 (-640 |#1|)))) (-15 -4136 ((-640 (-640 |#1|)) $)) (-15 -1693 ((-858) $))) (-1093)) (T -1180))
-((-1693 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-1180 *3)) (-4 *3 (-1093)))) (-4136 (*1 *2 *1) (-12 (-5 *2 (-640 (-640 *3))) (-5 *1 (-1180 *3)) (-4 *3 (-1093)))) (-2738 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-5 *1 (-1180 *3)))))
-(-10 -8 (-15 -2738 ($ (-640 (-640 |#1|)))) (-15 -4136 ((-640 (-640 |#1|)) $)) (-15 -1693 ((-858) $)))
-((-1677 (((-112) $ $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1552 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-4378 (((-1262) $ |#1| |#1|) NIL (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#2| $ |#1| |#2|) NIL)) (-2812 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-1577 (((-3 |#2| "failed") |#1| $) NIL)) (-4239 (($) NIL T CONST)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-2705 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-3 |#2| "failed") |#1| $) NIL)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (|has| $ (-6 -4407))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#2| $ |#1|) NIL)) (-2659 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) NIL)) (-2411 ((|#1| $) NIL (|has| |#1| (-846)))) (-2259 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-640 |#2|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-3860 ((|#1| $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4408))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1303 (((-640 |#1|) $) NIL)) (-4173 (((-112) |#1| $) NIL)) (-2964 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-1812 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-4318 (((-640 |#1|) $) NIL)) (-3192 (((-112) |#1| $) NIL)) (-1694 (((-1113) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3781 ((|#2| $) NIL (|has| |#1| (-846)))) (-4203 (((-3 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL)) (-2358 (($ $ |#2|) NIL (|has| $ (-6 -4408)))) (-3755 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL)) (-3138 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-2836 (((-640 |#2|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3890 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-1709 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) NIL (-12 (|has| $ (-6 -4407)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093)))) (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-611 (-536))))) (-1707 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-1693 (((-858) $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858)))))) (-2233 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) NIL)) (-4383 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) NIL (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) NIL (-4032 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-1181 |#1| |#2|) (-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4407))) (-1093) (-1093)) (T -1181))
-NIL
-(-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4407)))
-((-2867 ((|#1| (-640 |#1|)) 32)) (-1363 ((|#1| |#1| (-563)) 18)) (-3171 (((-1165 |#1|) |#1| (-917)) 15)))
-(((-1182 |#1|) (-10 -7 (-15 -2867 (|#1| (-640 |#1|))) (-15 -3171 ((-1165 |#1|) |#1| (-917))) (-15 -1363 (|#1| |#1| (-563)))) (-363)) (T -1182))
-((-1363 (*1 *2 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-1182 *2)) (-4 *2 (-363)))) (-3171 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-5 *2 (-1165 *3)) (-5 *1 (-1182 *3)) (-4 *3 (-363)))) (-2867 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-5 *1 (-1182 *2)) (-4 *2 (-363)))))
-(-10 -7 (-15 -2867 (|#1| (-640 |#1|))) (-15 -3171 ((-1165 |#1|) |#1| (-917))) (-15 -1363 (|#1| |#1| (-563))))
-((-1552 (($) 10) (($ (-640 (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)))) 14)) (-2705 (($ (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) $) 61) (($ (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-2659 (((-640 (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) $) 39) (((-640 |#3|) $) 41)) (-4345 (($ (-1 (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) $) 53) (($ (-1 |#3| |#3|) $) 33)) (-2240 (($ (-1 (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) $) 51) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-2964 (((-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) $) 54)) (-1812 (($ (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) $) 16)) (-4318 (((-640 |#2|) $) 19)) (-3192 (((-112) |#2| $) 59)) (-4203 (((-3 (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) "failed") (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) $) 58)) (-3755 (((-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) $) 63)) (-3138 (((-112) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 66)) (-2836 (((-640 |#3|) $) 43)) (-2309 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-1709 (((-767) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) $) NIL) (((-767) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) $) NIL) (((-767) |#3| $) NIL) (((-767) (-1 (-112) |#3|) $) 67)) (-1693 (((-858) $) 27)) (-4383 (((-112) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 65)) (-1718 (((-112) $ $) 49)))
-(((-1183 |#1| |#2| |#3|) (-10 -8 (-15 -1718 ((-112) |#1| |#1|)) (-15 -1693 ((-858) |#1|)) (-15 -2240 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -1552 (|#1| (-640 (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))))) (-15 -1552 (|#1|)) (-15 -2240 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4345 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4383 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3138 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1709 ((-767) (-1 (-112) |#3|) |#1|)) (-15 -2659 ((-640 |#3|) |#1|)) (-15 -1709 ((-767) |#3| |#1|)) (-15 -2309 (|#3| |#1| |#2| |#3|)) (-15 -2309 (|#3| |#1| |#2|)) (-15 -2836 ((-640 |#3|) |#1|)) (-15 -3192 ((-112) |#2| |#1|)) (-15 -4318 ((-640 |#2|) |#1|)) (-15 -2705 ((-3 |#3| "failed") |#2| |#1|)) (-15 -2705 (|#1| (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|)) (-15 -2705 (|#1| (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) |#1|)) (-15 -4203 ((-3 (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) "failed") (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|)) (-15 -2964 ((-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) |#1|)) (-15 -1812 (|#1| (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) |#1|)) (-15 -3755 ((-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) |#1|)) (-15 -1709 ((-767) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) |#1|)) (-15 -2659 ((-640 (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|)) (-15 -1709 ((-767) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|)) (-15 -3138 ((-112) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|)) (-15 -4383 ((-112) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|)) (-15 -4345 (|#1| (-1 (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|)) (-15 -2240 (|#1| (-1 (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|))) (-1184 |#2| |#3|) (-1093) (-1093)) (T -1183))
-NIL
-(-10 -8 (-15 -1718 ((-112) |#1| |#1|)) (-15 -1693 ((-858) |#1|)) (-15 -2240 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -1552 (|#1| (-640 (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))))) (-15 -1552 (|#1|)) (-15 -2240 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4345 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4383 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3138 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1709 ((-767) (-1 (-112) |#3|) |#1|)) (-15 -2659 ((-640 |#3|) |#1|)) (-15 -1709 ((-767) |#3| |#1|)) (-15 -2309 (|#3| |#1| |#2| |#3|)) (-15 -2309 (|#3| |#1| |#2|)) (-15 -2836 ((-640 |#3|) |#1|)) (-15 -3192 ((-112) |#2| |#1|)) (-15 -4318 ((-640 |#2|) |#1|)) (-15 -2705 ((-3 |#3| "failed") |#2| |#1|)) (-15 -2705 (|#1| (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|)) (-15 -2705 (|#1| (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) |#1|)) (-15 -4203 ((-3 (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) "failed") (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|)) (-15 -2964 ((-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) |#1|)) (-15 -1812 (|#1| (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) |#1|)) (-15 -3755 ((-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) |#1|)) (-15 -1709 ((-767) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) |#1|)) (-15 -2659 ((-640 (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|)) (-15 -1709 ((-767) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|)) (-15 -3138 ((-112) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|)) (-15 -4383 ((-112) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|)) (-15 -4345 (|#1| (-1 (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|)) (-15 -2240 (|#1| (-1 (-2 (|:| -2387 |#2|) (|:| -2557 |#3|)) (-2 (|:| -2387 |#2|) (|:| -2557 |#3|))) |#1|)))
-((-1677 (((-112) $ $) 19 (-4032 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-1552 (($) 72) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 71)) (-4378 (((-1262) $ |#1| |#1|) 99 (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) 8)) (-1849 ((|#2| $ |#1| |#2|) 73)) (-2812 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 45 (|has| $ (-6 -4407)))) (-2256 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 55 (|has| $ (-6 -4407)))) (-1577 (((-3 |#2| "failed") |#1| $) 61)) (-4239 (($) 7 T CONST)) (-3813 (($ $) 58 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407))))) (-2705 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 47 (|has| $ (-6 -4407))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 46 (|has| $ (-6 -4407))) (((-3 |#2| "failed") |#1| $) 62)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 54 (|has| $ (-6 -4407)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 56 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407)))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 53 (|has| $ (-6 -4407))) (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 52 (|has| $ (-6 -4407)))) (-4355 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4408)))) (-4293 ((|#2| $ |#1|) 88)) (-2659 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 30 (|has| $ (-6 -4407))) (((-640 |#2|) $) 79 (|has| $ (-6 -4407)))) (-2581 (((-112) $ (-767)) 9)) (-2411 ((|#1| $) 96 (|has| |#1| (-846)))) (-2259 (((-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 29 (|has| $ (-6 -4407))) (((-640 |#2|) $) 80 (|has| $ (-6 -4407)))) (-1729 (((-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407)))) (((-112) |#2| $) 82 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4407))))) (-3860 ((|#1| $) 95 (|has| |#1| (-846)))) (-4345 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 34 (|has| $ (-6 -4408))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4408)))) (-2240 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70)) (-2382 (((-112) $ (-767)) 10)) (-3573 (((-1151) $) 22 (-4032 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-1303 (((-640 |#1|) $) 63)) (-4173 (((-112) |#1| $) 64)) (-2964 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 39)) (-1812 (($ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 40)) (-4318 (((-640 |#1|) $) 93)) (-3192 (((-112) |#1| $) 92)) (-1694 (((-1113) $) 21 (-4032 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-3781 ((|#2| $) 97 (|has| |#1| (-846)))) (-4203 (((-3 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 51)) (-2358 (($ $ |#2|) 98 (|has| $ (-6 -4408)))) (-3755 (((-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 41)) (-3138 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 32 (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))))) 26 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 25 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) 24 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 23 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) 86 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) 84 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) 83 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2026 (((-112) $ $) 14)) (-2105 (((-112) |#2| $) 94 (-12 (|has| $ (-6 -4407)) (|has| |#2| (-1093))))) (-2836 (((-640 |#2|) $) 91)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89)) (-3890 (($) 49) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 48)) (-1709 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 31 (|has| $ (-6 -4407))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| $ (-6 -4407)))) (((-767) |#2| $) 81 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4407)))) (((-767) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4407)))) (-1872 (($ $) 13)) (-2220 (((-536) $) 59 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-611 (-536))))) (-1707 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 50)) (-1693 (((-858) $) 18 (-4032 (|has| |#2| (-610 (-858))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-610 (-858)))))) (-2233 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) 42)) (-4383 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) $) 33 (|has| $ (-6 -4407))) (((-112) (-1 (-112) |#2|) $) 76 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (-4032 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-3521 (((-640 (-640 (-948 |#1|))) (-640 (-407 (-948 |#1|))) (-640 (-1169))) 57)) (-3510 (((-640 (-294 (-407 (-948 |#1|)))) (-294 (-407 (-948 |#1|)))) 69) (((-640 (-294 (-407 (-948 |#1|)))) (-407 (-948 |#1|))) 65) (((-640 (-294 (-407 (-948 |#1|)))) (-294 (-407 (-948 |#1|))) (-1169)) 70) (((-640 (-294 (-407 (-948 |#1|)))) (-407 (-948 |#1|)) (-1169)) 64) (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-294 (-407 (-948 |#1|))))) 93) (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-407 (-948 |#1|)))) 92) (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-294 (-407 (-948 |#1|)))) (-640 (-1169))) 94) (((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-407 (-948 |#1|))) (-640 (-1169))) 91)))
+(((-1177 |#1|) (-10 -7 (-15 -3510 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -3510 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-294 (-407 (-948 |#1|)))) (-640 (-1169)))) (-15 -3510 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-407 (-948 |#1|))))) (-15 -3510 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-294 (-407 (-948 |#1|)))))) (-15 -3510 ((-640 (-294 (-407 (-948 |#1|)))) (-407 (-948 |#1|)) (-1169))) (-15 -3510 ((-640 (-294 (-407 (-948 |#1|)))) (-294 (-407 (-948 |#1|))) (-1169))) (-15 -3510 ((-640 (-294 (-407 (-948 |#1|)))) (-407 (-948 |#1|)))) (-15 -3510 ((-640 (-294 (-407 (-948 |#1|)))) (-294 (-407 (-948 |#1|))))) (-15 -3521 ((-640 (-640 (-948 |#1|))) (-640 (-407 (-948 |#1|))) (-640 (-1169))))) (-555)) (T -1177))
+((-3521 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169))) (-4 *5 (-555)) (-5 *2 (-640 (-640 (-948 *5)))) (-5 *1 (-1177 *5)))) (-3510 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-640 (-294 (-407 (-948 *4))))) (-5 *1 (-1177 *4)) (-5 *3 (-294 (-407 (-948 *4)))))) (-3510 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-640 (-294 (-407 (-948 *4))))) (-5 *1 (-1177 *4)) (-5 *3 (-407 (-948 *4))))) (-3510 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-555)) (-5 *2 (-640 (-294 (-407 (-948 *5))))) (-5 *1 (-1177 *5)) (-5 *3 (-294 (-407 (-948 *5)))))) (-3510 (*1 *2 *3 *4) (-12 (-5 *4 (-1169)) (-4 *5 (-555)) (-5 *2 (-640 (-294 (-407 (-948 *5))))) (-5 *1 (-1177 *5)) (-5 *3 (-407 (-948 *5))))) (-3510 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *4)))))) (-5 *1 (-1177 *4)) (-5 *3 (-640 (-294 (-407 (-948 *4))))))) (-3510 (*1 *2 *3) (-12 (-5 *3 (-640 (-407 (-948 *4)))) (-4 *4 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *4)))))) (-5 *1 (-1177 *4)))) (-3510 (*1 *2 *3 *4) (-12 (-5 *4 (-640 (-1169))) (-4 *5 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *5)))))) (-5 *1 (-1177 *5)) (-5 *3 (-640 (-294 (-407 (-948 *5))))))) (-3510 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169))) (-4 *5 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *5)))))) (-5 *1 (-1177 *5)))))
+(-10 -7 (-15 -3510 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-407 (-948 |#1|))) (-640 (-1169)))) (-15 -3510 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-294 (-407 (-948 |#1|)))) (-640 (-1169)))) (-15 -3510 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-407 (-948 |#1|))))) (-15 -3510 ((-640 (-640 (-294 (-407 (-948 |#1|))))) (-640 (-294 (-407 (-948 |#1|)))))) (-15 -3510 ((-640 (-294 (-407 (-948 |#1|)))) (-407 (-948 |#1|)) (-1169))) (-15 -3510 ((-640 (-294 (-407 (-948 |#1|)))) (-294 (-407 (-948 |#1|))) (-1169))) (-15 -3510 ((-640 (-294 (-407 (-948 |#1|)))) (-407 (-948 |#1|)))) (-15 -3510 ((-640 (-294 (-407 (-948 |#1|)))) (-294 (-407 (-948 |#1|))))) (-15 -3521 ((-640 (-640 (-948 |#1|))) (-640 (-407 (-948 |#1|))) (-640 (-1169)))))
+((-3570 (((-1151)) 7)) (-3531 (((-1151)) 11 T CONST)) (-2464 (((-1262) (-1151)) 13)) (-3555 (((-1151)) 8 T CONST)) (-3544 (((-130)) 10 T CONST)))
+(((-1178) (-13 (-1208) (-10 -7 (-15 -3570 ((-1151))) (-15 -3555 ((-1151)) -2668) (-15 -3544 ((-130)) -2668) (-15 -3531 ((-1151)) -2668) (-15 -2464 ((-1262) (-1151)))))) (T -1178))
+((-3570 (*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1178)))) (-3555 (*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1178)))) (-3544 (*1 *2) (-12 (-5 *2 (-130)) (-5 *1 (-1178)))) (-3531 (*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1178)))) (-2464 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1178)))))
+(-13 (-1208) (-10 -7 (-15 -3570 ((-1151))) (-15 -3555 ((-1151)) -2668) (-15 -3544 ((-130)) -2668) (-15 -3531 ((-1151)) -2668) (-15 -2464 ((-1262) (-1151)))))
+((-3614 (((-640 (-640 |#1|)) (-640 (-640 |#1|)) (-640 (-640 (-640 |#1|)))) 38)) (-3648 (((-640 (-640 (-640 |#1|))) (-640 (-640 |#1|))) 24)) (-3659 (((-1180 (-640 |#1|)) (-640 |#1|)) 34)) (-3682 (((-640 (-640 |#1|)) (-640 |#1|)) 30)) (-4106 (((-2 (|:| |f1| (-640 |#1|)) (|:| |f2| (-640 (-640 (-640 |#1|)))) (|:| |f3| (-640 (-640 |#1|))) (|:| |f4| (-640 (-640 (-640 |#1|))))) (-640 (-640 (-640 |#1|)))) 37)) (-3708 (((-2 (|:| |f1| (-640 |#1|)) (|:| |f2| (-640 (-640 (-640 |#1|)))) (|:| |f3| (-640 (-640 |#1|))) (|:| |f4| (-640 (-640 (-640 |#1|))))) (-640 |#1|) (-640 (-640 (-640 |#1|))) (-640 (-640 |#1|)) (-640 (-640 (-640 |#1|))) (-640 (-640 (-640 |#1|))) (-640 (-640 (-640 |#1|)))) 36)) (-3670 (((-640 (-640 |#1|)) (-640 (-640 |#1|))) 28)) (-3694 (((-640 |#1|) (-640 |#1|)) 31)) (-3603 (((-640 (-640 (-640 |#1|))) (-640 |#1|) (-640 (-640 (-640 |#1|)))) 18)) (-3591 (((-640 (-640 (-640 |#1|))) (-1 (-112) |#1| |#1|) (-640 |#1|) (-640 (-640 (-640 |#1|)))) 16)) (-3581 (((-2 (|:| |fs| (-112)) (|:| |sd| (-640 |#1|)) (|:| |td| (-640 (-640 |#1|)))) (-1 (-112) |#1| |#1|) (-640 |#1|) (-640 (-640 |#1|))) 14)) (-3625 (((-640 (-640 |#1|)) (-640 (-640 (-640 |#1|)))) 39)) (-3637 (((-640 (-640 |#1|)) (-1180 (-640 |#1|))) 41)))
+(((-1179 |#1|) (-10 -7 (-15 -3581 ((-2 (|:| |fs| (-112)) (|:| |sd| (-640 |#1|)) (|:| |td| (-640 (-640 |#1|)))) (-1 (-112) |#1| |#1|) (-640 |#1|) (-640 (-640 |#1|)))) (-15 -3591 ((-640 (-640 (-640 |#1|))) (-1 (-112) |#1| |#1|) (-640 |#1|) (-640 (-640 (-640 |#1|))))) (-15 -3603 ((-640 (-640 (-640 |#1|))) (-640 |#1|) (-640 (-640 (-640 |#1|))))) (-15 -3614 ((-640 (-640 |#1|)) (-640 (-640 |#1|)) (-640 (-640 (-640 |#1|))))) (-15 -3625 ((-640 (-640 |#1|)) (-640 (-640 (-640 |#1|))))) (-15 -3637 ((-640 (-640 |#1|)) (-1180 (-640 |#1|)))) (-15 -3648 ((-640 (-640 (-640 |#1|))) (-640 (-640 |#1|)))) (-15 -3659 ((-1180 (-640 |#1|)) (-640 |#1|))) (-15 -3670 ((-640 (-640 |#1|)) (-640 (-640 |#1|)))) (-15 -3682 ((-640 (-640 |#1|)) (-640 |#1|))) (-15 -3694 ((-640 |#1|) (-640 |#1|))) (-15 -3708 ((-2 (|:| |f1| (-640 |#1|)) (|:| |f2| (-640 (-640 (-640 |#1|)))) (|:| |f3| (-640 (-640 |#1|))) (|:| |f4| (-640 (-640 (-640 |#1|))))) (-640 |#1|) (-640 (-640 (-640 |#1|))) (-640 (-640 |#1|)) (-640 (-640 (-640 |#1|))) (-640 (-640 (-640 |#1|))) (-640 (-640 (-640 |#1|))))) (-15 -4106 ((-2 (|:| |f1| (-640 |#1|)) (|:| |f2| (-640 (-640 (-640 |#1|)))) (|:| |f3| (-640 (-640 |#1|))) (|:| |f4| (-640 (-640 (-640 |#1|))))) (-640 (-640 (-640 |#1|)))))) (-846)) (T -1179))
+((-4106 (*1 *2 *3) (-12 (-4 *4 (-846)) (-5 *2 (-2 (|:| |f1| (-640 *4)) (|:| |f2| (-640 (-640 (-640 *4)))) (|:| |f3| (-640 (-640 *4))) (|:| |f4| (-640 (-640 (-640 *4)))))) (-5 *1 (-1179 *4)) (-5 *3 (-640 (-640 (-640 *4)))))) (-3708 (*1 *2 *3 *4 *5 *4 *4 *4) (-12 (-4 *6 (-846)) (-5 *3 (-640 *6)) (-5 *5 (-640 *3)) (-5 *2 (-2 (|:| |f1| *3) (|:| |f2| (-640 *5)) (|:| |f3| *5) (|:| |f4| (-640 *5)))) (-5 *1 (-1179 *6)) (-5 *4 (-640 *5)))) (-3694 (*1 *2 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-1179 *3)))) (-3682 (*1 *2 *3) (-12 (-4 *4 (-846)) (-5 *2 (-640 (-640 *4))) (-5 *1 (-1179 *4)) (-5 *3 (-640 *4)))) (-3670 (*1 *2 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-846)) (-5 *1 (-1179 *3)))) (-3659 (*1 *2 *3) (-12 (-4 *4 (-846)) (-5 *2 (-1180 (-640 *4))) (-5 *1 (-1179 *4)) (-5 *3 (-640 *4)))) (-3648 (*1 *2 *3) (-12 (-4 *4 (-846)) (-5 *2 (-640 (-640 (-640 *4)))) (-5 *1 (-1179 *4)) (-5 *3 (-640 (-640 *4))))) (-3637 (*1 *2 *3) (-12 (-5 *3 (-1180 (-640 *4))) (-4 *4 (-846)) (-5 *2 (-640 (-640 *4))) (-5 *1 (-1179 *4)))) (-3625 (*1 *2 *3) (-12 (-5 *3 (-640 (-640 (-640 *4)))) (-5 *2 (-640 (-640 *4))) (-5 *1 (-1179 *4)) (-4 *4 (-846)))) (-3614 (*1 *2 *2 *3) (-12 (-5 *3 (-640 (-640 (-640 *4)))) (-5 *2 (-640 (-640 *4))) (-4 *4 (-846)) (-5 *1 (-1179 *4)))) (-3603 (*1 *2 *3 *2) (-12 (-5 *2 (-640 (-640 (-640 *4)))) (-5 *3 (-640 *4)) (-4 *4 (-846)) (-5 *1 (-1179 *4)))) (-3591 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-640 (-640 (-640 *5)))) (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-640 *5)) (-4 *5 (-846)) (-5 *1 (-1179 *5)))) (-3581 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-846)) (-5 *4 (-640 *6)) (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-640 *4)))) (-5 *1 (-1179 *6)) (-5 *5 (-640 *4)))))
+(-10 -7 (-15 -3581 ((-2 (|:| |fs| (-112)) (|:| |sd| (-640 |#1|)) (|:| |td| (-640 (-640 |#1|)))) (-1 (-112) |#1| |#1|) (-640 |#1|) (-640 (-640 |#1|)))) (-15 -3591 ((-640 (-640 (-640 |#1|))) (-1 (-112) |#1| |#1|) (-640 |#1|) (-640 (-640 (-640 |#1|))))) (-15 -3603 ((-640 (-640 (-640 |#1|))) (-640 |#1|) (-640 (-640 (-640 |#1|))))) (-15 -3614 ((-640 (-640 |#1|)) (-640 (-640 |#1|)) (-640 (-640 (-640 |#1|))))) (-15 -3625 ((-640 (-640 |#1|)) (-640 (-640 (-640 |#1|))))) (-15 -3637 ((-640 (-640 |#1|)) (-1180 (-640 |#1|)))) (-15 -3648 ((-640 (-640 (-640 |#1|))) (-640 (-640 |#1|)))) (-15 -3659 ((-1180 (-640 |#1|)) (-640 |#1|))) (-15 -3670 ((-640 (-640 |#1|)) (-640 (-640 |#1|)))) (-15 -3682 ((-640 (-640 |#1|)) (-640 |#1|))) (-15 -3694 ((-640 |#1|) (-640 |#1|))) (-15 -3708 ((-2 (|:| |f1| (-640 |#1|)) (|:| |f2| (-640 (-640 (-640 |#1|)))) (|:| |f3| (-640 (-640 |#1|))) (|:| |f4| (-640 (-640 (-640 |#1|))))) (-640 |#1|) (-640 (-640 (-640 |#1|))) (-640 (-640 |#1|)) (-640 (-640 (-640 |#1|))) (-640 (-640 (-640 |#1|))) (-640 (-640 (-640 |#1|))))) (-15 -4106 ((-2 (|:| |f1| (-640 |#1|)) (|:| |f2| (-640 (-640 (-640 |#1|)))) (|:| |f3| (-640 (-640 |#1|))) (|:| |f4| (-640 (-640 (-640 |#1|))))) (-640 (-640 (-640 |#1|))))))
+((-3721 (($ (-640 (-640 |#1|))) 10)) (-3734 (((-640 (-640 |#1|)) $) 11)) (-1692 (((-858) $) 26)))
+(((-1180 |#1|) (-10 -8 (-15 -3721 ($ (-640 (-640 |#1|)))) (-15 -3734 ((-640 (-640 |#1|)) $)) (-15 -1692 ((-858) $))) (-1093)) (T -1180))
+((-1692 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-1180 *3)) (-4 *3 (-1093)))) (-3734 (*1 *2 *1) (-12 (-5 *2 (-640 (-640 *3))) (-5 *1 (-1180 *3)) (-4 *3 (-1093)))) (-3721 (*1 *1 *2) (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-5 *1 (-1180 *3)))))
+(-10 -8 (-15 -3721 ($ (-640 (-640 |#1|)))) (-15 -3734 ((-640 (-640 |#1|)) $)) (-15 -1692 ((-858) $)))
+((-1677 (((-112) $ $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1551 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-2208 (((-1262) $ |#1| |#1|) NIL (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#2| $ |#1| |#2|) NIL)) (-3678 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-1576 (((-3 |#2| "failed") |#1| $) NIL)) (-2569 (($) NIL T CONST)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-1691 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-3 |#2| "failed") |#1| $) NIL)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#2| $ |#1|) NIL)) (-2658 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) NIL)) (-2236 ((|#1| $) NIL (|has| |#1| (-846)))) (-3523 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-640 |#2|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2251 ((|#1| $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4409))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-1304 (((-640 |#1|) $) NIL)) (-2305 (((-112) |#1| $) NIL)) (-2627 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-3867 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-2272 (((-640 |#1|) $) NIL)) (-2282 (((-112) |#1| $) NIL)) (-1693 (((-1113) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3782 ((|#2| $) NIL (|has| |#1| (-846)))) (-1971 (((-3 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL)) (-2221 (($ $ |#2|) NIL (|has| $ (-6 -4409)))) (-2808 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL)) (-1458 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2295 (((-640 |#2|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3863 (($) NIL) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1708 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) NIL (-12 (|has| $ (-6 -4408)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (((-767) |#2| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093)))) (((-767) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-611 (-536))))) (-1706 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1692 (((-858) $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-610 (-858))) (|has| |#2| (-610 (-858)))))) (-2820 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) NIL)) (-1471 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) NIL (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) NIL (-4034 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| |#2| (-1093))))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-1181 |#1| |#2|) (-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4408))) (-1093) (-1093)) (T -1181))
+NIL
+(-13 (-1184 |#1| |#2|) (-10 -7 (-6 -4408)))
+((-3745 ((|#1| (-640 |#1|)) 32)) (-3767 ((|#1| |#1| (-563)) 18)) (-3755 (((-1165 |#1|) |#1| (-917)) 15)))
+(((-1182 |#1|) (-10 -7 (-15 -3745 (|#1| (-640 |#1|))) (-15 -3755 ((-1165 |#1|) |#1| (-917))) (-15 -3767 (|#1| |#1| (-563)))) (-363)) (T -1182))
+((-3767 (*1 *2 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-1182 *2)) (-4 *2 (-363)))) (-3755 (*1 *2 *3 *4) (-12 (-5 *4 (-917)) (-5 *2 (-1165 *3)) (-5 *1 (-1182 *3)) (-4 *3 (-363)))) (-3745 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-5 *1 (-1182 *2)) (-4 *2 (-363)))))
+(-10 -7 (-15 -3745 (|#1| (-640 |#1|))) (-15 -3755 ((-1165 |#1|) |#1| (-917))) (-15 -3767 (|#1| |#1| (-563))))
+((-1551 (($) 10) (($ (-640 (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)))) 14)) (-1691 (($ (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) $) 61) (($ (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-2658 (((-640 (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) $) 39) (((-640 |#3|) $) 41)) (-4347 (($ (-1 (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) $) 53) (($ (-1 |#3| |#3|) $) 33)) (-2238 (($ (-1 (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) $) 51) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-2627 (((-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) $) 54)) (-3867 (($ (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) $) 16)) (-2272 (((-640 |#2|) $) 19)) (-2282 (((-112) |#2| $) 59)) (-1971 (((-3 (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) "failed") (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) $) 58)) (-2808 (((-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) $) 63)) (-1458 (((-112) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 66)) (-2295 (((-640 |#3|) $) 43)) (-2308 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-1708 (((-767) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) $) NIL) (((-767) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) $) NIL) (((-767) |#3| $) NIL) (((-767) (-1 (-112) |#3|) $) 67)) (-1692 (((-858) $) 27)) (-1471 (((-112) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 65)) (-1718 (((-112) $ $) 49)))
+(((-1183 |#1| |#2| |#3|) (-10 -8 (-15 -1718 ((-112) |#1| |#1|)) (-15 -1692 ((-858) |#1|)) (-15 -2238 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -1551 (|#1| (-640 (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))))) (-15 -1551 (|#1|)) (-15 -2238 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4347 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1471 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1458 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1708 ((-767) (-1 (-112) |#3|) |#1|)) (-15 -2658 ((-640 |#3|) |#1|)) (-15 -1708 ((-767) |#3| |#1|)) (-15 -2308 (|#3| |#1| |#2| |#3|)) (-15 -2308 (|#3| |#1| |#2|)) (-15 -2295 ((-640 |#3|) |#1|)) (-15 -2282 ((-112) |#2| |#1|)) (-15 -2272 ((-640 |#2|) |#1|)) (-15 -1691 ((-3 |#3| "failed") |#2| |#1|)) (-15 -1691 (|#1| (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|)) (-15 -1691 (|#1| (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) |#1|)) (-15 -1971 ((-3 (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) "failed") (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|)) (-15 -2627 ((-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) |#1|)) (-15 -3867 (|#1| (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) |#1|)) (-15 -2808 ((-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) |#1|)) (-15 -1708 ((-767) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) |#1|)) (-15 -2658 ((-640 (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|)) (-15 -1708 ((-767) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|)) (-15 -1458 ((-112) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|)) (-15 -1471 ((-112) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|)) (-15 -4347 (|#1| (-1 (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|)) (-15 -2238 (|#1| (-1 (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|))) (-1184 |#2| |#3|) (-1093) (-1093)) (T -1183))
+NIL
+(-10 -8 (-15 -1718 ((-112) |#1| |#1|)) (-15 -1692 ((-858) |#1|)) (-15 -2238 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -1551 (|#1| (-640 (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))))) (-15 -1551 (|#1|)) (-15 -2238 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4347 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1471 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1458 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1708 ((-767) (-1 (-112) |#3|) |#1|)) (-15 -2658 ((-640 |#3|) |#1|)) (-15 -1708 ((-767) |#3| |#1|)) (-15 -2308 (|#3| |#1| |#2| |#3|)) (-15 -2308 (|#3| |#1| |#2|)) (-15 -2295 ((-640 |#3|) |#1|)) (-15 -2282 ((-112) |#2| |#1|)) (-15 -2272 ((-640 |#2|) |#1|)) (-15 -1691 ((-3 |#3| "failed") |#2| |#1|)) (-15 -1691 (|#1| (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|)) (-15 -1691 (|#1| (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) |#1|)) (-15 -1971 ((-3 (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) "failed") (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|)) (-15 -2627 ((-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) |#1|)) (-15 -3867 (|#1| (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) |#1|)) (-15 -2808 ((-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) |#1|)) (-15 -1708 ((-767) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) |#1|)) (-15 -2658 ((-640 (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|)) (-15 -1708 ((-767) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|)) (-15 -1458 ((-112) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|)) (-15 -1471 ((-112) (-1 (-112) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|)) (-15 -4347 (|#1| (-1 (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|)) (-15 -2238 (|#1| (-1 (-2 (|:| -2387 |#2|) (|:| -2556 |#3|)) (-2 (|:| -2387 |#2|) (|:| -2556 |#3|))) |#1|)))
+((-1677 (((-112) $ $) 19 (-4034 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-1551 (($) 72) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 71)) (-2208 (((-1262) $ |#1| |#1|) 99 (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) 8)) (-1849 ((|#2| $ |#1| |#2|) 73)) (-3678 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 45 (|has| $ (-6 -4408)))) (-2255 (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 55 (|has| $ (-6 -4408)))) (-1576 (((-3 |#2| "failed") |#1| $) 61)) (-2569 (($) 7 T CONST)) (-3814 (($ $) 58 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408))))) (-1691 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 47 (|has| $ (-6 -4408))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 46 (|has| $ (-6 -4408))) (((-3 |#2| "failed") |#1| $) 62)) (-1459 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 54 (|has| $ (-6 -4408)))) (-2444 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 56 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408)))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 53 (|has| $ (-6 -4408))) (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 52 (|has| $ (-6 -4408)))) (-4356 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4409)))) (-4293 ((|#2| $ |#1|) 88)) (-2658 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 30 (|has| $ (-6 -4408))) (((-640 |#2|) $) 79 (|has| $ (-6 -4408)))) (-2514 (((-112) $ (-767)) 9)) (-2236 ((|#1| $) 96 (|has| |#1| (-846)))) (-3523 (((-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 29 (|has| $ (-6 -4408))) (((-640 |#2|) $) 80 (|has| $ (-6 -4408)))) (-2667 (((-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408)))) (((-112) |#2| $) 82 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4408))))) (-2251 ((|#1| $) 95 (|has| |#1| (-846)))) (-4347 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 34 (|has| $ (-6 -4409))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4409)))) (-2238 (($ (-1 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70)) (-2481 (((-112) $ (-767)) 10)) (-3854 (((-1151) $) 22 (-4034 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-1304 (((-640 |#1|) $) 63)) (-2305 (((-112) |#1| $) 64)) (-2627 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 39)) (-3867 (($ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 40)) (-2272 (((-640 |#1|) $) 93)) (-2282 (((-112) |#1| $) 92)) (-1693 (((-1113) $) 21 (-4034 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-3782 ((|#2| $) 97 (|has| |#1| (-846)))) (-1971 (((-3 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) "failed") (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 51)) (-2221 (($ $ |#2|) 98 (|has| $ (-6 -4409)))) (-2808 (((-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 41)) (-1458 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 32 (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))))) 26 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-294 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 25 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) 24 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 23 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)))) (($ $ (-640 |#2|) (-640 |#2|)) 86 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-294 |#2|)) 84 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093)))) (($ $ (-640 (-294 |#2|))) 83 (-12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))))) (-2941 (((-112) $ $) 14)) (-2262 (((-112) |#2| $) 94 (-12 (|has| $ (-6 -4408)) (|has| |#2| (-1093))))) (-2295 (((-640 |#2|) $) 91)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89)) (-3863 (($) 49) (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 48)) (-1708 (((-767) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 31 (|has| $ (-6 -4408))) (((-767) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| $ (-6 -4408)))) (((-767) |#2| $) 81 (-12 (|has| |#2| (-1093)) (|has| $ (-6 -4408)))) (((-767) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4408)))) (-1870 (($ $) 13)) (-2219 (((-536) $) 59 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-611 (-536))))) (-1706 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 50)) (-1692 (((-858) $) 18 (-4034 (|has| |#2| (-610 (-858))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-610 (-858)))))) (-2820 (($ (-640 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) 42)) (-1471 (((-112) (-1 (-112) (-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) $) 33 (|has| $ (-6 -4408))) (((-112) (-1 (-112) |#2|) $) 76 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (-4034 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-1184 |#1| |#2|) (-140) (-1093) (-1093)) (T -1184))
-((-1849 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1184 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))) (-1552 (*1 *1) (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-1552 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| -2387 *3) (|:| -2557 *4)))) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *1 (-1184 *3 *4)))) (-2240 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1184 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))))
-(-13 (-607 |t#1| |t#2|) (-601 |t#1| |t#2|) (-10 -8 (-15 -1849 (|t#2| $ |t#1| |t#2|)) (-15 -1552 ($)) (-15 -1552 ($ (-640 (-2 (|:| -2387 |t#1|) (|:| -2557 |t#2|))))) (-15 -2240 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
-(((-34) . T) ((-107 #0=(-2 (|:| -2387 |#1|) (|:| -2557 |#2|))) . T) ((-102) -4032 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))) ((-610 (-858)) -4032 (|has| |#2| (-1093)) (|has| |#2| (-610 (-858))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-610 (-858)))) ((-151 #0#) . T) ((-611 (-536)) |has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-611 (-536))) ((-229 #0#) . T) ((-235 #0#) . T) ((-286 |#1| |#2|) . T) ((-288 |#1| |#2|) . T) ((-309 #0#) -12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))) ((-309 |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-489 #0#) . T) ((-489 |#2|) . T) ((-601 |#1| |#2|) . T) ((-514 #0# #0#) -12 (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))) ((-514 |#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-607 |#1| |#2|) . T) ((-1093) -4032 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2557 |#2|)) (-1093))) ((-1208) . T))
-((-4170 (((-112)) 24)) (-3684 (((-1262) (-1151)) 26)) (-2012 (((-112)) 36)) (-3222 (((-1262)) 34)) (-3313 (((-1262) (-1151) (-1151)) 25)) (-2560 (((-112)) 37)) (-1812 (((-1262) |#1| |#2|) 44)) (-3155 (((-1262)) 20)) (-4158 (((-3 |#2| "failed") |#1|) 42)) (-1646 (((-1262)) 35)))
-(((-1185 |#1| |#2|) (-10 -7 (-15 -3155 ((-1262))) (-15 -3313 ((-1262) (-1151) (-1151))) (-15 -3684 ((-1262) (-1151))) (-15 -3222 ((-1262))) (-15 -1646 ((-1262))) (-15 -4170 ((-112))) (-15 -2012 ((-112))) (-15 -2560 ((-112))) (-15 -4158 ((-3 |#2| "failed") |#1|)) (-15 -1812 ((-1262) |#1| |#2|))) (-1093) (-1093)) (T -1185))
-((-1812 (*1 *2 *3 *4) (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-4158 (*1 *2 *3) (|partial| -12 (-4 *2 (-1093)) (-5 *1 (-1185 *3 *2)) (-4 *3 (-1093)))) (-2560 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-2012 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-4170 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-1646 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-3222 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-3684 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1185 *4 *5)) (-4 *4 (-1093)) (-4 *5 (-1093)))) (-3313 (*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1185 *4 *5)) (-4 *4 (-1093)) (-4 *5 (-1093)))) (-3155 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))))
-(-10 -7 (-15 -3155 ((-1262))) (-15 -3313 ((-1262) (-1151) (-1151))) (-15 -3684 ((-1262) (-1151))) (-15 -3222 ((-1262))) (-15 -1646 ((-1262))) (-15 -4170 ((-112))) (-15 -2012 ((-112))) (-15 -2560 ((-112))) (-15 -4158 ((-3 |#2| "failed") |#1|)) (-15 -1812 ((-1262) |#1| |#2|)))
-((-2889 (((-1151) (-1151)) 18)) (-3931 (((-52) (-1151)) 21)))
-(((-1186) (-10 -7 (-15 -3931 ((-52) (-1151))) (-15 -2889 ((-1151) (-1151))))) (T -1186))
-((-2889 (*1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1186)))) (-3931 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-52)) (-5 *1 (-1186)))))
-(-10 -7 (-15 -3931 ((-52) (-1151))) (-15 -2889 ((-1151) (-1151))))
-((-1693 (((-1188) |#1|) 11)))
-(((-1187 |#1|) (-10 -7 (-15 -1693 ((-1188) |#1|))) (-1093)) (T -1187))
-((-1693 (*1 *2 *3) (-12 (-5 *2 (-1188)) (-5 *1 (-1187 *3)) (-4 *3 (-1093)))))
-(-10 -7 (-15 -1693 ((-1188) |#1|)))
-((-1677 (((-112) $ $) NIL)) (-3593 (((-640 (-1151)) $) 34)) (-4083 (((-640 (-1151)) $ (-640 (-1151))) 37)) (-2391 (((-640 (-1151)) $ (-640 (-1151))) 36)) (-2573 (((-640 (-1151)) $ (-640 (-1151))) 38)) (-2737 (((-640 (-1151)) $) 33)) (-1566 (($) 22)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3789 (((-640 (-1151)) $) 35)) (-1463 (((-1262) $ (-563)) 29) (((-1262) $) 30)) (-2220 (($ (-858) (-563)) 26) (($ (-858) (-563) (-858)) NIL)) (-1693 (((-858) $) 40) (($ (-858)) 24)) (-1718 (((-112) $ $) NIL)))
-(((-1188) (-13 (-1093) (-613 (-858)) (-10 -8 (-15 -2220 ($ (-858) (-563))) (-15 -2220 ($ (-858) (-563) (-858))) (-15 -1463 ((-1262) $ (-563))) (-15 -1463 ((-1262) $)) (-15 -3789 ((-640 (-1151)) $)) (-15 -3593 ((-640 (-1151)) $)) (-15 -1566 ($)) (-15 -2737 ((-640 (-1151)) $)) (-15 -2573 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -4083 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -2391 ((-640 (-1151)) $ (-640 (-1151))))))) (T -1188))
-((-2220 (*1 *1 *2 *3) (-12 (-5 *2 (-858)) (-5 *3 (-563)) (-5 *1 (-1188)))) (-2220 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-858)) (-5 *3 (-563)) (-5 *1 (-1188)))) (-1463 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-1188)))) (-1463 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1188)))) (-3789 (*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))) (-3593 (*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))) (-1566 (*1 *1) (-5 *1 (-1188))) (-2737 (*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))) (-2573 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))) (-4083 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))) (-2391 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))))
-(-13 (-1093) (-613 (-858)) (-10 -8 (-15 -2220 ($ (-858) (-563))) (-15 -2220 ($ (-858) (-563) (-858))) (-15 -1463 ((-1262) $ (-563))) (-15 -1463 ((-1262) $)) (-15 -3789 ((-640 (-1151)) $)) (-15 -3593 ((-640 (-1151)) $)) (-15 -1566 ($)) (-15 -2737 ((-640 (-1151)) $)) (-15 -2573 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -4083 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -2391 ((-640 (-1151)) $ (-640 (-1151))))))
-((-1677 (((-112) $ $) NIL)) (-3936 (((-1151) $ (-1151)) 17) (((-1151) $) 16)) (-2056 (((-1151) $ (-1151)) 15)) (-3010 (($ $ (-1151)) NIL)) (-4024 (((-3 (-1151) "failed") $) 11)) (-3588 (((-1151) $) 8)) (-2594 (((-3 (-1151) "failed") $) 12)) (-3538 (((-1151) $) 9)) (-3405 (($ (-388)) NIL) (($ (-388) (-1151)) NIL)) (-3348 (((-388) $) NIL)) (-3573 (((-1151) $) NIL)) (-2302 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3464 (((-112) $) 18)) (-1693 (((-858) $) NIL)) (-3004 (($ $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-1189) (-13 (-364 (-388) (-1151)) (-10 -8 (-15 -3936 ((-1151) $ (-1151))) (-15 -3936 ((-1151) $)) (-15 -3588 ((-1151) $)) (-15 -4024 ((-3 (-1151) "failed") $)) (-15 -2594 ((-3 (-1151) "failed") $)) (-15 -3464 ((-112) $))))) (T -1189))
-((-3936 (*1 *2 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1189)))) (-3936 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-1189)))) (-3588 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-1189)))) (-4024 (*1 *2 *1) (|partial| -12 (-5 *2 (-1151)) (-5 *1 (-1189)))) (-2594 (*1 *2 *1) (|partial| -12 (-5 *2 (-1151)) (-5 *1 (-1189)))) (-3464 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1189)))))
-(-13 (-364 (-388) (-1151)) (-10 -8 (-15 -3936 ((-1151) $ (-1151))) (-15 -3936 ((-1151) $)) (-15 -3588 ((-1151) $)) (-15 -4024 ((-3 (-1151) "failed") $)) (-15 -2594 ((-3 (-1151) "failed") $)) (-15 -3464 ((-112) $))))
-((-1857 (((-3 (-563) "failed") |#1|) 19)) (-2418 (((-3 (-563) "failed") |#1|) 14)) (-1397 (((-563) (-1151)) 28)))
-(((-1190 |#1|) (-10 -7 (-15 -1857 ((-3 (-563) "failed") |#1|)) (-15 -2418 ((-3 (-563) "failed") |#1|)) (-15 -1397 ((-563) (-1151)))) (-1045)) (T -1190))
-((-1397 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-563)) (-5 *1 (-1190 *4)) (-4 *4 (-1045)))) (-2418 (*1 *2 *3) (|partial| -12 (-5 *2 (-563)) (-5 *1 (-1190 *3)) (-4 *3 (-1045)))) (-1857 (*1 *2 *3) (|partial| -12 (-5 *2 (-563)) (-5 *1 (-1190 *3)) (-4 *3 (-1045)))))
-(-10 -7 (-15 -1857 ((-3 (-563) "failed") |#1|)) (-15 -2418 ((-3 (-563) "failed") |#1|)) (-15 -1397 ((-563) (-1151))))
-((-1301 (((-1126 (-225))) 9)))
-(((-1191) (-10 -7 (-15 -1301 ((-1126 (-225)))))) (T -1191))
-((-1301 (*1 *2) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-1191)))))
-(-10 -7 (-15 -1301 ((-1126 (-225)))))
-((-2180 (($) 11)) (-1840 (($ $) 35)) (-1817 (($ $) 33)) (-1667 (($ $) 25)) (-1862 (($ $) 17)) (-1311 (($ $) 15)) (-1851 (($ $) 19)) (-1710 (($ $) 30)) (-1829 (($ $) 34)) (-1680 (($ $) 29)))
-(((-1192 |#1|) (-10 -8 (-15 -2180 (|#1|)) (-15 -1840 (|#1| |#1|)) (-15 -1817 (|#1| |#1|)) (-15 -1862 (|#1| |#1|)) (-15 -1311 (|#1| |#1|)) (-15 -1851 (|#1| |#1|)) (-15 -1829 (|#1| |#1|)) (-15 -1667 (|#1| |#1|)) (-15 -1710 (|#1| |#1|)) (-15 -1680 (|#1| |#1|))) (-1193)) (T -1192))
-NIL
-(-10 -8 (-15 -2180 (|#1|)) (-15 -1840 (|#1| |#1|)) (-15 -1817 (|#1| |#1|)) (-15 -1862 (|#1| |#1|)) (-15 -1311 (|#1| |#1|)) (-15 -1851 (|#1| |#1|)) (-15 -1829 (|#1| |#1|)) (-15 -1667 (|#1| |#1|)) (-15 -1710 (|#1| |#1|)) (-15 -1680 (|#1| |#1|)))
-((-1771 (($ $) 26)) (-1619 (($ $) 11)) (-1748 (($ $) 27)) (-1597 (($ $) 10)) (-1794 (($ $) 28)) (-1643 (($ $) 9)) (-2180 (($) 16)) (-4371 (($ $) 19)) (-3368 (($ $) 18)) (-1806 (($ $) 29)) (-1656 (($ $) 8)) (-1784 (($ $) 30)) (-1630 (($ $) 7)) (-1759 (($ $) 31)) (-1608 (($ $) 6)) (-1840 (($ $) 20)) (-1695 (($ $) 32)) (-1817 (($ $) 21)) (-1667 (($ $) 33)) (-1862 (($ $) 22)) (-1722 (($ $) 34)) (-1311 (($ $) 23)) (-1735 (($ $) 35)) (-1851 (($ $) 24)) (-1710 (($ $) 36)) (-1829 (($ $) 25)) (-1680 (($ $) 37)) (** (($ $ $) 17)))
+((-1849 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1184 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))) (-1551 (*1 *1) (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))) (-1551 (*1 *1 *2) (-12 (-5 *2 (-640 (-2 (|:| -2387 *3) (|:| -2556 *4)))) (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *1 (-1184 *3 *4)))) (-2238 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1184 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))))
+(-13 (-607 |t#1| |t#2|) (-601 |t#1| |t#2|) (-10 -8 (-15 -1849 (|t#2| $ |t#1| |t#2|)) (-15 -1551 ($)) (-15 -1551 ($ (-640 (-2 (|:| -2387 |t#1|) (|:| -2556 |t#2|))))) (-15 -2238 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
+(((-34) . T) ((-107 #0=(-2 (|:| -2387 |#1|) (|:| -2556 |#2|))) . T) ((-102) -4034 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))) ((-610 (-858)) -4034 (|has| |#2| (-1093)) (|has| |#2| (-610 (-858))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-610 (-858)))) ((-151 #0#) . T) ((-611 (-536)) |has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-611 (-536))) ((-229 #0#) . T) ((-235 #0#) . T) ((-286 |#1| |#2|) . T) ((-288 |#1| |#2|) . T) ((-309 #0#) -12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))) ((-309 |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-489 #0#) . T) ((-489 |#2|) . T) ((-601 |#1| |#2|) . T) ((-514 #0# #0#) -12 (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-309 (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)))) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))) ((-514 |#2| |#2|) -12 (|has| |#2| (-309 |#2|)) (|has| |#2| (-1093))) ((-607 |#1| |#2|) . T) ((-1093) -4034 (|has| |#2| (-1093)) (|has| (-2 (|:| -2387 |#1|) (|:| -2556 |#2|)) (-1093))) ((-1208) . T))
+((-3831 (((-112)) 24)) (-3799 (((-1262) (-1151)) 26)) (-3842 (((-112)) 36)) (-3812 (((-1262)) 34)) (-3790 (((-1262) (-1151) (-1151)) 25)) (-3851 (((-112)) 37)) (-3867 (((-1262) |#1| |#2|) 44)) (-3777 (((-1262)) 20)) (-3860 (((-3 |#2| "failed") |#1|) 42)) (-3824 (((-1262)) 35)))
+(((-1185 |#1| |#2|) (-10 -7 (-15 -3777 ((-1262))) (-15 -3790 ((-1262) (-1151) (-1151))) (-15 -3799 ((-1262) (-1151))) (-15 -3812 ((-1262))) (-15 -3824 ((-1262))) (-15 -3831 ((-112))) (-15 -3842 ((-112))) (-15 -3851 ((-112))) (-15 -3860 ((-3 |#2| "failed") |#1|)) (-15 -3867 ((-1262) |#1| |#2|))) (-1093) (-1093)) (T -1185))
+((-3867 (*1 *2 *3 *4) (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-3860 (*1 *2 *3) (|partial| -12 (-4 *2 (-1093)) (-5 *1 (-1185 *3 *2)) (-4 *3 (-1093)))) (-3851 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-3842 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-3831 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-3824 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-3812 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))) (-3799 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1185 *4 *5)) (-4 *4 (-1093)) (-4 *5 (-1093)))) (-3790 (*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1185 *4 *5)) (-4 *4 (-1093)) (-4 *5 (-1093)))) (-3777 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093)))))
+(-10 -7 (-15 -3777 ((-1262))) (-15 -3790 ((-1262) (-1151) (-1151))) (-15 -3799 ((-1262) (-1151))) (-15 -3812 ((-1262))) (-15 -3824 ((-1262))) (-15 -3831 ((-112))) (-15 -3842 ((-112))) (-15 -3851 ((-112))) (-15 -3860 ((-3 |#2| "failed") |#1|)) (-15 -3867 ((-1262) |#1| |#2|)))
+((-3889 (((-1151) (-1151)) 18)) (-3878 (((-52) (-1151)) 21)))
+(((-1186) (-10 -7 (-15 -3878 ((-52) (-1151))) (-15 -3889 ((-1151) (-1151))))) (T -1186))
+((-3889 (*1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1186)))) (-3878 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-52)) (-5 *1 (-1186)))))
+(-10 -7 (-15 -3878 ((-52) (-1151))) (-15 -3889 ((-1151) (-1151))))
+((-1692 (((-1188) |#1|) 11)))
+(((-1187 |#1|) (-10 -7 (-15 -1692 ((-1188) |#1|))) (-1093)) (T -1187))
+((-1692 (*1 *2 *3) (-12 (-5 *2 (-1188)) (-5 *1 (-1187 *3)) (-4 *3 (-1093)))))
+(-10 -7 (-15 -1692 ((-1188) |#1|)))
+((-1677 (((-112) $ $) NIL)) (-3594 (((-640 (-1151)) $) 34)) (-2710 (((-640 (-1151)) $ (-640 (-1151))) 37)) (-2700 (((-640 (-1151)) $ (-640 (-1151))) 36)) (-2720 (((-640 (-1151)) $ (-640 (-1151))) 38)) (-2731 (((-640 (-1151)) $) 33)) (-1565 (($) 22)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2743 (((-640 (-1151)) $) 35)) (-1463 (((-1262) $ (-563)) 29) (((-1262) $) 30)) (-2219 (($ (-858) (-563)) 26) (($ (-858) (-563) (-858)) NIL)) (-1692 (((-858) $) 40) (($ (-858)) 24)) (-1718 (((-112) $ $) NIL)))
+(((-1188) (-13 (-1093) (-613 (-858)) (-10 -8 (-15 -2219 ($ (-858) (-563))) (-15 -2219 ($ (-858) (-563) (-858))) (-15 -1463 ((-1262) $ (-563))) (-15 -1463 ((-1262) $)) (-15 -2743 ((-640 (-1151)) $)) (-15 -3594 ((-640 (-1151)) $)) (-15 -1565 ($)) (-15 -2731 ((-640 (-1151)) $)) (-15 -2720 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -2710 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -2700 ((-640 (-1151)) $ (-640 (-1151))))))) (T -1188))
+((-2219 (*1 *1 *2 *3) (-12 (-5 *2 (-858)) (-5 *3 (-563)) (-5 *1 (-1188)))) (-2219 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-858)) (-5 *3 (-563)) (-5 *1 (-1188)))) (-1463 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-1188)))) (-1463 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1188)))) (-2743 (*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))) (-3594 (*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))) (-1565 (*1 *1) (-5 *1 (-1188))) (-2731 (*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))) (-2720 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))) (-2710 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))) (-2700 (*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))))
+(-13 (-1093) (-613 (-858)) (-10 -8 (-15 -2219 ($ (-858) (-563))) (-15 -2219 ($ (-858) (-563) (-858))) (-15 -1463 ((-1262) $ (-563))) (-15 -1463 ((-1262) $)) (-15 -2743 ((-640 (-1151)) $)) (-15 -3594 ((-640 (-1151)) $)) (-15 -1565 ($)) (-15 -2731 ((-640 (-1151)) $)) (-15 -2720 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -2710 ((-640 (-1151)) $ (-640 (-1151)))) (-15 -2700 ((-640 (-1151)) $ (-640 (-1151))))))
+((-1677 (((-112) $ $) NIL)) (-2797 (((-1151) $ (-1151)) 17) (((-1151) $) 16)) (-1862 (((-1151) $ (-1151)) 15)) (-1905 (($ $ (-1151)) NIL)) (-2776 (((-3 (-1151) "failed") $) 11)) (-2787 (((-1151) $) 8)) (-2765 (((-3 (-1151) "failed") $) 12)) (-1872 (((-1151) $) 9)) (-3409 (($ (-388)) NIL) (($ (-388) (-1151)) NIL)) (-3352 (((-388) $) NIL)) (-3854 (((-1151) $) NIL)) (-1883 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2755 (((-112) $) 18)) (-1692 (((-858) $) NIL)) (-1895 (($ $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-1189) (-13 (-364 (-388) (-1151)) (-10 -8 (-15 -2797 ((-1151) $ (-1151))) (-15 -2797 ((-1151) $)) (-15 -2787 ((-1151) $)) (-15 -2776 ((-3 (-1151) "failed") $)) (-15 -2765 ((-3 (-1151) "failed") $)) (-15 -2755 ((-112) $))))) (T -1189))
+((-2797 (*1 *2 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1189)))) (-2797 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-1189)))) (-2787 (*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-1189)))) (-2776 (*1 *2 *1) (|partial| -12 (-5 *2 (-1151)) (-5 *1 (-1189)))) (-2765 (*1 *2 *1) (|partial| -12 (-5 *2 (-1151)) (-5 *1 (-1189)))) (-2755 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1189)))))
+(-13 (-364 (-388) (-1151)) (-10 -8 (-15 -2797 ((-1151) $ (-1151))) (-15 -2797 ((-1151) $)) (-15 -2787 ((-1151) $)) (-15 -2776 ((-3 (-1151) "failed") $)) (-15 -2765 ((-3 (-1151) "failed") $)) (-15 -2755 ((-112) $))))
+((-2807 (((-3 (-563) "failed") |#1|) 19)) (-2818 (((-3 (-563) "failed") |#1|) 14)) (-2832 (((-563) (-1151)) 29)))
+(((-1190 |#1|) (-10 -7 (-15 -2807 ((-3 (-563) "failed") |#1|)) (-15 -2818 ((-3 (-563) "failed") |#1|)) (-15 -2832 ((-563) (-1151)))) (-1045)) (T -1190))
+((-2832 (*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-563)) (-5 *1 (-1190 *4)) (-4 *4 (-1045)))) (-2818 (*1 *2 *3) (|partial| -12 (-5 *2 (-563)) (-5 *1 (-1190 *3)) (-4 *3 (-1045)))) (-2807 (*1 *2 *3) (|partial| -12 (-5 *2 (-563)) (-5 *1 (-1190 *3)) (-4 *3 (-1045)))))
+(-10 -7 (-15 -2807 ((-3 (-563) "failed") |#1|)) (-15 -2818 ((-3 (-563) "failed") |#1|)) (-15 -2832 ((-563) (-1151))))
+((-2843 (((-1126 (-225))) 9)))
+(((-1191) (-10 -7 (-15 -2843 ((-1126 (-225)))))) (T -1191))
+((-2843 (*1 *2) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-1191)))))
+(-10 -7 (-15 -2843 ((-1126 (-225)))))
+((-2179 (($) 11)) (-1839 (($ $) 35)) (-1816 (($ $) 33)) (-1666 (($ $) 25)) (-1861 (($ $) 17)) (-1311 (($ $) 15)) (-1850 (($ $) 19)) (-1709 (($ $) 30)) (-1828 (($ $) 34)) (-1679 (($ $) 29)))
+(((-1192 |#1|) (-10 -8 (-15 -2179 (|#1|)) (-15 -1839 (|#1| |#1|)) (-15 -1816 (|#1| |#1|)) (-15 -1861 (|#1| |#1|)) (-15 -1311 (|#1| |#1|)) (-15 -1850 (|#1| |#1|)) (-15 -1828 (|#1| |#1|)) (-15 -1666 (|#1| |#1|)) (-15 -1709 (|#1| |#1|)) (-15 -1679 (|#1| |#1|))) (-1193)) (T -1192))
+NIL
+(-10 -8 (-15 -2179 (|#1|)) (-15 -1839 (|#1| |#1|)) (-15 -1816 (|#1| |#1|)) (-15 -1861 (|#1| |#1|)) (-15 -1311 (|#1| |#1|)) (-15 -1850 (|#1| |#1|)) (-15 -1828 (|#1| |#1|)) (-15 -1666 (|#1| |#1|)) (-15 -1709 (|#1| |#1|)) (-15 -1679 (|#1| |#1|)))
+((-1770 (($ $) 26)) (-1618 (($ $) 11)) (-1747 (($ $) 27)) (-1596 (($ $) 10)) (-1793 (($ $) 28)) (-1642 (($ $) 9)) (-2179 (($) 16)) (-4372 (($ $) 19)) (-3372 (($ $) 18)) (-1805 (($ $) 29)) (-1655 (($ $) 8)) (-1783 (($ $) 30)) (-1629 (($ $) 7)) (-1758 (($ $) 31)) (-1607 (($ $) 6)) (-1839 (($ $) 20)) (-1694 (($ $) 32)) (-1816 (($ $) 21)) (-1666 (($ $) 33)) (-1861 (($ $) 22)) (-1721 (($ $) 34)) (-1311 (($ $) 23)) (-1734 (($ $) 35)) (-1850 (($ $) 24)) (-1709 (($ $) 36)) (-1828 (($ $) 25)) (-1679 (($ $) 37)) (** (($ $ $) 17)))
(((-1193) (-140)) (T -1193))
-((-2180 (*1 *1) (-4 *1 (-1193))))
-(-13 (-1196) (-95) (-493) (-35) (-284) (-10 -8 (-15 -2180 ($))))
+((-2179 (*1 *1) (-4 *1 (-1193))))
+(-13 (-1196) (-95) (-493) (-35) (-284) (-10 -8 (-15 -2179 ($))))
(((-35) . T) ((-95) . T) ((-284) . T) ((-493) . T) ((-1196) . T))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2619 ((|#1| $) 17)) (-4267 (($ |#1| (-640 $)) 23) (($ (-640 |#1|)) 27) (($ |#1|) 25)) (-2759 (((-112) $ (-767)) 47)) (-2936 ((|#1| $ |#1|) 14 (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) 13 (|has| $ (-6 -4408)))) (-4239 (($) NIL T CONST)) (-2659 (((-640 |#1|) $) 51 (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) 42)) (-1469 (((-112) $ $) 32 (|has| |#1| (-1093)))) (-2581 (((-112) $ (-767)) 40)) (-2259 (((-640 |#1|) $) 52 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 50 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-4345 (($ (-1 |#1| |#1|) $) 24 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 22)) (-2382 (((-112) $ (-767)) 39)) (-2512 (((-640 |#1|) $) 36)) (-2194 (((-112) $) 35)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3138 (((-112) (-1 (-112) |#1|) $) 49 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 73)) (-3756 (((-112) $) 9)) (-3135 (($) 10)) (-2309 ((|#1| $ "value") NIL)) (-4071 (((-563) $ $) 31)) (-1634 (((-640 $) $) 58)) (-2612 (((-112) $ $) 76)) (-1449 (((-640 $) $) 71)) (-4226 (($ $) 72)) (-1434 (((-112) $) 55)) (-1709 (((-767) (-1 (-112) |#1|) $) 20 (|has| $ (-6 -4407))) (((-767) |#1| $) 16 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1872 (($ $) 57)) (-1693 (((-858) $) 60 (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) 12)) (-2962 (((-112) $ $) 29 (|has| |#1| (-1093)))) (-4383 (((-112) (-1 (-112) |#1|) $) 48 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 28 (|has| |#1| (-1093)))) (-3608 (((-767) $) 38 (|has| $ (-6 -4407)))))
-(((-1194 |#1|) (-13 (-1006 |#1|) (-10 -8 (-6 -4407) (-6 -4408) (-15 -4267 ($ |#1| (-640 $))) (-15 -4267 ($ (-640 |#1|))) (-15 -4267 ($ |#1|)) (-15 -1434 ((-112) $)) (-15 -4226 ($ $)) (-15 -1449 ((-640 $) $)) (-15 -2612 ((-112) $ $)) (-15 -1634 ((-640 $) $)))) (-1093)) (T -1194))
-((-1434 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))) (-4267 (*1 *1 *2 *3) (-12 (-5 *3 (-640 (-1194 *2))) (-5 *1 (-1194 *2)) (-4 *2 (-1093)))) (-4267 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-1194 *3)))) (-4267 (*1 *1 *2) (-12 (-5 *1 (-1194 *2)) (-4 *2 (-1093)))) (-4226 (*1 *1 *1) (-12 (-5 *1 (-1194 *2)) (-4 *2 (-1093)))) (-1449 (*1 *2 *1) (-12 (-5 *2 (-640 (-1194 *3))) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))) (-2612 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))) (-1634 (*1 *2 *1) (-12 (-5 *2 (-640 (-1194 *3))) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))))
-(-13 (-1006 |#1|) (-10 -8 (-6 -4407) (-6 -4408) (-15 -4267 ($ |#1| (-640 $))) (-15 -4267 ($ (-640 |#1|))) (-15 -4267 ($ |#1|)) (-15 -1434 ((-112) $)) (-15 -4226 ($ $)) (-15 -1449 ((-640 $) $)) (-15 -2612 ((-112) $ $)) (-15 -1634 ((-640 $) $))))
-((-1619 (($ $) 15)) (-1643 (($ $) 12)) (-1656 (($ $) 10)) (-1630 (($ $) 17)))
-(((-1195 |#1|) (-10 -8 (-15 -1630 (|#1| |#1|)) (-15 -1656 (|#1| |#1|)) (-15 -1643 (|#1| |#1|)) (-15 -1619 (|#1| |#1|))) (-1196)) (T -1195))
-NIL
-(-10 -8 (-15 -1630 (|#1| |#1|)) (-15 -1656 (|#1| |#1|)) (-15 -1643 (|#1| |#1|)) (-15 -1619 (|#1| |#1|)))
-((-1619 (($ $) 11)) (-1597 (($ $) 10)) (-1643 (($ $) 9)) (-1656 (($ $) 8)) (-1630 (($ $) 7)) (-1608 (($ $) 6)))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2618 ((|#1| $) 17)) (-4268 (($ |#1| (-640 $)) 23) (($ (-640 |#1|)) 27) (($ |#1|) 25)) (-3001 (((-112) $ (-767)) 47)) (-2336 ((|#1| $ |#1|) 14 (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) 13 (|has| $ (-6 -4409)))) (-2569 (($) NIL T CONST)) (-2658 (((-640 |#1|) $) 51 (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) 42)) (-2358 (((-112) $ $) 32 (|has| |#1| (-1093)))) (-2514 (((-112) $ (-767)) 40)) (-3523 (((-640 |#1|) $) 52 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 50 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4347 (($ (-1 |#1| |#1|) $) 24 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 22)) (-2481 (((-112) $ (-767)) 39)) (-2511 (((-640 |#1|) $) 36)) (-1298 (((-112) $) 35)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-1458 (((-112) (-1 (-112) |#1|) $) 49 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 73)) (-1665 (((-112) $) 9)) (-3445 (($) 10)) (-2308 ((|#1| $ "value") NIL)) (-2379 (((-563) $ $) 31)) (-2852 (((-640 $) $) 58)) (-2862 (((-112) $ $) 76)) (-2871 (((-640 $) $) 71)) (-2880 (($ $) 72)) (-2889 (((-112) $) 55)) (-1708 (((-767) (-1 (-112) |#1|) $) 20 (|has| $ (-6 -4408))) (((-767) |#1| $) 16 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1870 (($ $) 57)) (-1692 (((-858) $) 60 (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) 12)) (-2367 (((-112) $ $) 29 (|has| |#1| (-1093)))) (-1471 (((-112) (-1 (-112) |#1|) $) 48 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 28 (|has| |#1| (-1093)))) (-3610 (((-767) $) 38 (|has| $ (-6 -4408)))))
+(((-1194 |#1|) (-13 (-1006 |#1|) (-10 -8 (-6 -4408) (-6 -4409) (-15 -4268 ($ |#1| (-640 $))) (-15 -4268 ($ (-640 |#1|))) (-15 -4268 ($ |#1|)) (-15 -2889 ((-112) $)) (-15 -2880 ($ $)) (-15 -2871 ((-640 $) $)) (-15 -2862 ((-112) $ $)) (-15 -2852 ((-640 $) $)))) (-1093)) (T -1194))
+((-2889 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))) (-4268 (*1 *1 *2 *3) (-12 (-5 *3 (-640 (-1194 *2))) (-5 *1 (-1194 *2)) (-4 *2 (-1093)))) (-4268 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-1194 *3)))) (-4268 (*1 *1 *2) (-12 (-5 *1 (-1194 *2)) (-4 *2 (-1093)))) (-2880 (*1 *1 *1) (-12 (-5 *1 (-1194 *2)) (-4 *2 (-1093)))) (-2871 (*1 *2 *1) (-12 (-5 *2 (-640 (-1194 *3))) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))) (-2862 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))) (-2852 (*1 *2 *1) (-12 (-5 *2 (-640 (-1194 *3))) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))))
+(-13 (-1006 |#1|) (-10 -8 (-6 -4408) (-6 -4409) (-15 -4268 ($ |#1| (-640 $))) (-15 -4268 ($ (-640 |#1|))) (-15 -4268 ($ |#1|)) (-15 -2889 ((-112) $)) (-15 -2880 ($ $)) (-15 -2871 ((-640 $) $)) (-15 -2862 ((-112) $ $)) (-15 -2852 ((-640 $) $))))
+((-1618 (($ $) 15)) (-1642 (($ $) 12)) (-1655 (($ $) 10)) (-1629 (($ $) 17)))
+(((-1195 |#1|) (-10 -8 (-15 -1629 (|#1| |#1|)) (-15 -1655 (|#1| |#1|)) (-15 -1642 (|#1| |#1|)) (-15 -1618 (|#1| |#1|))) (-1196)) (T -1195))
+NIL
+(-10 -8 (-15 -1629 (|#1| |#1|)) (-15 -1655 (|#1| |#1|)) (-15 -1642 (|#1| |#1|)) (-15 -1618 (|#1| |#1|)))
+((-1618 (($ $) 11)) (-1596 (($ $) 10)) (-1642 (($ $) 9)) (-1655 (($ $) 8)) (-1629 (($ $) 7)) (-1607 (($ $) 6)))
(((-1196) (-140)) (T -1196))
-((-1619 (*1 *1 *1) (-4 *1 (-1196))) (-1597 (*1 *1 *1) (-4 *1 (-1196))) (-1643 (*1 *1 *1) (-4 *1 (-1196))) (-1656 (*1 *1 *1) (-4 *1 (-1196))) (-1630 (*1 *1 *1) (-4 *1 (-1196))) (-1608 (*1 *1 *1) (-4 *1 (-1196))))
-(-13 (-10 -8 (-15 -1608 ($ $)) (-15 -1630 ($ $)) (-15 -1656 ($ $)) (-15 -1643 ($ $)) (-15 -1597 ($ $)) (-15 -1619 ($ $))))
-((-3021 ((|#2| |#2|) 88)) (-3087 (((-112) |#2|) 26)) (-2489 ((|#2| |#2|) 30)) (-2499 ((|#2| |#2|) 32)) (-3172 ((|#2| |#2| (-1169)) 83) ((|#2| |#2|) 84)) (-2685 (((-169 |#2|) |#2|) 28)) (-1541 ((|#2| |#2| (-1169)) 85) ((|#2| |#2|) 86)))
-(((-1197 |#1| |#2|) (-10 -7 (-15 -3172 (|#2| |#2|)) (-15 -3172 (|#2| |#2| (-1169))) (-15 -1541 (|#2| |#2|)) (-15 -1541 (|#2| |#2| (-1169))) (-15 -3021 (|#2| |#2|)) (-15 -2489 (|#2| |#2|)) (-15 -2499 (|#2| |#2|)) (-15 -3087 ((-112) |#2|)) (-15 -2685 ((-169 |#2|) |#2|))) (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|))) (T -1197))
-((-2685 (*1 *2 *3) (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-169 *3)) (-5 *1 (-1197 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *4))))) (-3087 (*1 *2 *3) (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-112)) (-5 *1 (-1197 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *4))))) (-2499 (*1 *2 *2) (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))) (-2489 (*1 *2 *2) (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))) (-3021 (*1 *2 *2) (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))) (-1541 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1197 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))) (-1541 (*1 *2 *2) (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))) (-3172 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1197 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))) (-3172 (*1 *2 *2) (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))))
-(-10 -7 (-15 -3172 (|#2| |#2|)) (-15 -3172 (|#2| |#2| (-1169))) (-15 -1541 (|#2| |#2|)) (-15 -1541 (|#2| |#2| (-1169))) (-15 -3021 (|#2| |#2|)) (-15 -2489 (|#2| |#2|)) (-15 -2499 (|#2| |#2|)) (-15 -3087 ((-112) |#2|)) (-15 -2685 ((-169 |#2|) |#2|)))
-((-1941 ((|#4| |#4| |#1|) 27)) (-4013 ((|#4| |#4| |#1|) 28)))
-(((-1198 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1941 (|#4| |#4| |#1|)) (-15 -4013 (|#4| |#4| |#1|))) (-555) (-373 |#1|) (-373 |#1|) (-682 |#1| |#2| |#3|)) (T -1198))
-((-4013 (*1 *2 *2 *3) (-12 (-4 *3 (-555)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-1198 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-1941 (*1 *2 *2 *3) (-12 (-4 *3 (-555)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-1198 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
-(-10 -7 (-15 -1941 (|#4| |#4| |#1|)) (-15 -4013 (|#4| |#4| |#1|)))
-((-4229 ((|#2| |#2|) 133)) (-2887 ((|#2| |#2|) 130)) (-3758 ((|#2| |#2|) 121)) (-3950 ((|#2| |#2|) 118)) (-3413 ((|#2| |#2|) 126)) (-3713 ((|#2| |#2|) 114)) (-2911 ((|#2| |#2|) 41)) (-1384 ((|#2| |#2|) 92)) (-2609 ((|#2| |#2|) 72)) (-1596 ((|#2| |#2|) 128)) (-4114 ((|#2| |#2|) 116)) (-1616 ((|#2| |#2|) 138)) (-2255 ((|#2| |#2|) 136)) (-2453 ((|#2| |#2|) 137)) (-2983 ((|#2| |#2|) 135)) (-1542 ((|#2| |#2|) 148)) (-3661 ((|#2| |#2|) 30 (-12 (|has| |#2| (-611 (-888 |#1|))) (|has| |#2| (-882 |#1|)) (|has| |#1| (-611 (-888 |#1|))) (|has| |#1| (-882 |#1|))))) (-2034 ((|#2| |#2|) 73)) (-2072 ((|#2| |#2|) 139)) (-2213 ((|#2| |#2|) 140)) (-4116 ((|#2| |#2|) 127)) (-4106 ((|#2| |#2|) 115)) (-1745 ((|#2| |#2|) 134)) (-1545 ((|#2| |#2|) 132)) (-2775 ((|#2| |#2|) 122)) (-3474 ((|#2| |#2|) 120)) (-2629 ((|#2| |#2|) 124)) (-1810 ((|#2| |#2|) 112)))
-(((-1199 |#1| |#2|) (-10 -7 (-15 -2213 (|#2| |#2|)) (-15 -2609 (|#2| |#2|)) (-15 -1542 (|#2| |#2|)) (-15 -1384 (|#2| |#2|)) (-15 -2911 (|#2| |#2|)) (-15 -2034 (|#2| |#2|)) (-15 -2072 (|#2| |#2|)) (-15 -1810 (|#2| |#2|)) (-15 -2629 (|#2| |#2|)) (-15 -2775 (|#2| |#2|)) (-15 -1745 (|#2| |#2|)) (-15 -4106 (|#2| |#2|)) (-15 -4116 (|#2| |#2|)) (-15 -4114 (|#2| |#2|)) (-15 -1596 (|#2| |#2|)) (-15 -3713 (|#2| |#2|)) (-15 -3413 (|#2| |#2|)) (-15 -3758 (|#2| |#2|)) (-15 -4229 (|#2| |#2|)) (-15 -3950 (|#2| |#2|)) (-15 -2887 (|#2| |#2|)) (-15 -3474 (|#2| |#2|)) (-15 -1545 (|#2| |#2|)) (-15 -2983 (|#2| |#2|)) (-15 -2255 (|#2| |#2|)) (-15 -2453 (|#2| |#2|)) (-15 -1616 (|#2| |#2|)) (IF (|has| |#1| (-882 |#1|)) (IF (|has| |#1| (-611 (-888 |#1|))) (IF (|has| |#2| (-611 (-888 |#1|))) (IF (|has| |#2| (-882 |#1|)) (-15 -3661 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-13 (-846) (-452)) (-13 (-430 |#1|) (-1193))) (T -1199))
-((-3661 (*1 *2 *2) (-12 (-4 *3 (-611 (-888 *3))) (-4 *3 (-882 *3)) (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-611 (-888 *3))) (-4 *2 (-882 *3)) (-4 *2 (-13 (-430 *3) (-1193))))) (-1616 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2453 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2255 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2983 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-1545 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3474 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2887 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3950 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-4229 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3758 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3413 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3713 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-1596 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-4114 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-4116 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-4106 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-1745 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2775 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2629 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-1810 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2072 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2034 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2911 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-1384 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-1542 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2609 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2213 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))))
-(-10 -7 (-15 -2213 (|#2| |#2|)) (-15 -2609 (|#2| |#2|)) (-15 -1542 (|#2| |#2|)) (-15 -1384 (|#2| |#2|)) (-15 -2911 (|#2| |#2|)) (-15 -2034 (|#2| |#2|)) (-15 -2072 (|#2| |#2|)) (-15 -1810 (|#2| |#2|)) (-15 -2629 (|#2| |#2|)) (-15 -2775 (|#2| |#2|)) (-15 -1745 (|#2| |#2|)) (-15 -4106 (|#2| |#2|)) (-15 -4116 (|#2| |#2|)) (-15 -4114 (|#2| |#2|)) (-15 -1596 (|#2| |#2|)) (-15 -3713 (|#2| |#2|)) (-15 -3413 (|#2| |#2|)) (-15 -3758 (|#2| |#2|)) (-15 -4229 (|#2| |#2|)) (-15 -3950 (|#2| |#2|)) (-15 -2887 (|#2| |#2|)) (-15 -3474 (|#2| |#2|)) (-15 -1545 (|#2| |#2|)) (-15 -2983 (|#2| |#2|)) (-15 -2255 (|#2| |#2|)) (-15 -2453 (|#2| |#2|)) (-15 -1616 (|#2| |#2|)) (IF (|has| |#1| (-882 |#1|)) (IF (|has| |#1| (-611 (-888 |#1|))) (IF (|has| |#2| (-611 (-888 |#1|))) (IF (|has| |#2| (-882 |#1|)) (-15 -3661 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
-((-2620 (((-112) |#5| $) 59) (((-112) $) 101)) (-4053 ((|#5| |#5| $) 74)) (-2256 (($ (-1 (-112) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 118)) (-1833 (((-640 |#5|) (-640 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 72)) (-2131 (((-3 $ "failed") (-640 |#5|)) 125)) (-3792 (((-3 $ "failed") $) 111)) (-1719 ((|#5| |#5| $) 93)) (-3990 (((-112) |#5| $ (-1 (-112) |#5| |#5|)) 30)) (-3948 ((|#5| |#5| $) 97)) (-2444 ((|#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|)) 68)) (-2144 (((-2 (|:| -1442 (-640 |#5|)) (|:| -3405 (-640 |#5|))) $) 54)) (-2299 (((-112) |#5| $) 57) (((-112) $) 102)) (-2957 ((|#4| $) 107)) (-1481 (((-3 |#5| "failed") $) 109)) (-2820 (((-640 |#5|) $) 48)) (-4197 (((-112) |#5| $) 66) (((-112) $) 106)) (-2715 ((|#5| |#5| $) 80)) (-3009 (((-112) $ $) 26)) (-2031 (((-112) |#5| $) 62) (((-112) $) 104)) (-4056 ((|#5| |#5| $) 77)) (-3781 (((-3 |#5| "failed") $) 108)) (-3320 (($ $ |#5|) 126)) (-4167 (((-767) $) 51)) (-1707 (($ (-640 |#5|)) 123)) (-3577 (($ $ |#4|) 121)) (-1593 (($ $ |#4|) 120)) (-1924 (($ $) 119)) (-1693 (((-858) $) NIL) (((-640 |#5|) $) 112)) (-2437 (((-767) $) 129)) (-2540 (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#5|))) "failed") (-640 |#5|) (-1 (-112) |#5| |#5|)) 42) (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#5|))) "failed") (-640 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|)) 44)) (-2691 (((-112) $ (-1 (-112) |#5| (-640 |#5|))) 99)) (-1955 (((-640 |#4|) $) 114)) (-3152 (((-112) |#4| $) 117)) (-1718 (((-112) $ $) 19)))
-(((-1200 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2437 ((-767) |#1|)) (-15 -3320 (|#1| |#1| |#5|)) (-15 -2256 ((-3 |#5| "failed") |#1| |#4|)) (-15 -3152 ((-112) |#4| |#1|)) (-15 -1955 ((-640 |#4|) |#1|)) (-15 -3792 ((-3 |#1| "failed") |#1|)) (-15 -1481 ((-3 |#5| "failed") |#1|)) (-15 -3781 ((-3 |#5| "failed") |#1|)) (-15 -3948 (|#5| |#5| |#1|)) (-15 -1924 (|#1| |#1|)) (-15 -1719 (|#5| |#5| |#1|)) (-15 -2715 (|#5| |#5| |#1|)) (-15 -4056 (|#5| |#5| |#1|)) (-15 -4053 (|#5| |#5| |#1|)) (-15 -1833 ((-640 |#5|) (-640 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2444 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -4197 ((-112) |#1|)) (-15 -2031 ((-112) |#1|)) (-15 -2620 ((-112) |#1|)) (-15 -2691 ((-112) |#1| (-1 (-112) |#5| (-640 |#5|)))) (-15 -4197 ((-112) |#5| |#1|)) (-15 -2031 ((-112) |#5| |#1|)) (-15 -2620 ((-112) |#5| |#1|)) (-15 -3990 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -2299 ((-112) |#1|)) (-15 -2299 ((-112) |#5| |#1|)) (-15 -2144 ((-2 (|:| -1442 (-640 |#5|)) (|:| -3405 (-640 |#5|))) |#1|)) (-15 -4167 ((-767) |#1|)) (-15 -2820 ((-640 |#5|) |#1|)) (-15 -2540 ((-3 (-2 (|:| |bas| |#1|) (|:| -2636 (-640 |#5|))) "failed") (-640 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -2540 ((-3 (-2 (|:| |bas| |#1|) (|:| -2636 (-640 |#5|))) "failed") (-640 |#5|) (-1 (-112) |#5| |#5|))) (-15 -3009 ((-112) |#1| |#1|)) (-15 -3577 (|#1| |#1| |#4|)) (-15 -1593 (|#1| |#1| |#4|)) (-15 -2957 (|#4| |#1|)) (-15 -2131 ((-3 |#1| "failed") (-640 |#5|))) (-15 -1693 ((-640 |#5|) |#1|)) (-15 -1707 (|#1| (-640 |#5|))) (-15 -2444 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -2444 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -2256 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -2444 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -1693 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|))) (-1201 |#2| |#3| |#4| |#5|) (-555) (-789) (-846) (-1059 |#2| |#3| |#4|)) (T -1200))
-NIL
-(-10 -8 (-15 -2437 ((-767) |#1|)) (-15 -3320 (|#1| |#1| |#5|)) (-15 -2256 ((-3 |#5| "failed") |#1| |#4|)) (-15 -3152 ((-112) |#4| |#1|)) (-15 -1955 ((-640 |#4|) |#1|)) (-15 -3792 ((-3 |#1| "failed") |#1|)) (-15 -1481 ((-3 |#5| "failed") |#1|)) (-15 -3781 ((-3 |#5| "failed") |#1|)) (-15 -3948 (|#5| |#5| |#1|)) (-15 -1924 (|#1| |#1|)) (-15 -1719 (|#5| |#5| |#1|)) (-15 -2715 (|#5| |#5| |#1|)) (-15 -4056 (|#5| |#5| |#1|)) (-15 -4053 (|#5| |#5| |#1|)) (-15 -1833 ((-640 |#5|) (-640 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2444 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -4197 ((-112) |#1|)) (-15 -2031 ((-112) |#1|)) (-15 -2620 ((-112) |#1|)) (-15 -2691 ((-112) |#1| (-1 (-112) |#5| (-640 |#5|)))) (-15 -4197 ((-112) |#5| |#1|)) (-15 -2031 ((-112) |#5| |#1|)) (-15 -2620 ((-112) |#5| |#1|)) (-15 -3990 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -2299 ((-112) |#1|)) (-15 -2299 ((-112) |#5| |#1|)) (-15 -2144 ((-2 (|:| -1442 (-640 |#5|)) (|:| -3405 (-640 |#5|))) |#1|)) (-15 -4167 ((-767) |#1|)) (-15 -2820 ((-640 |#5|) |#1|)) (-15 -2540 ((-3 (-2 (|:| |bas| |#1|) (|:| -2636 (-640 |#5|))) "failed") (-640 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -2540 ((-3 (-2 (|:| |bas| |#1|) (|:| -2636 (-640 |#5|))) "failed") (-640 |#5|) (-1 (-112) |#5| |#5|))) (-15 -3009 ((-112) |#1| |#1|)) (-15 -3577 (|#1| |#1| |#4|)) (-15 -1593 (|#1| |#1| |#4|)) (-15 -2957 (|#4| |#1|)) (-15 -2131 ((-3 |#1| "failed") (-640 |#5|))) (-15 -1693 ((-640 |#5|) |#1|)) (-15 -1707 (|#1| (-640 |#5|))) (-15 -2444 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -2444 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -2256 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -2444 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -1693 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|)))
-((-1677 (((-112) $ $) 7)) (-1578 (((-640 (-2 (|:| -1442 $) (|:| -3405 (-640 |#4|)))) (-640 |#4|)) 85)) (-3319 (((-640 $) (-640 |#4|)) 86)) (-2606 (((-640 |#3|) $) 33)) (-1706 (((-112) $) 26)) (-3854 (((-112) $) 17 (|has| |#1| (-555)))) (-2620 (((-112) |#4| $) 101) (((-112) $) 97)) (-4053 ((|#4| |#4| $) 92)) (-1642 (((-2 (|:| |under| $) (|:| -1583 $) (|:| |upper| $)) $ |#3|) 27)) (-2759 (((-112) $ (-767)) 44)) (-2256 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4407))) (((-3 |#4| "failed") $ |#3|) 79)) (-4239 (($) 45 T CONST)) (-1483 (((-112) $) 22 (|has| |#1| (-555)))) (-1626 (((-112) $ $) 24 (|has| |#1| (-555)))) (-4221 (((-112) $ $) 23 (|has| |#1| (-555)))) (-1763 (((-112) $) 25 (|has| |#1| (-555)))) (-1833 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3746 (((-640 |#4|) (-640 |#4|) $) 18 (|has| |#1| (-555)))) (-1866 (((-640 |#4|) (-640 |#4|) $) 19 (|has| |#1| (-555)))) (-2131 (((-3 $ "failed") (-640 |#4|)) 36)) (-2058 (($ (-640 |#4|)) 35)) (-3792 (((-3 $ "failed") $) 82)) (-1719 ((|#4| |#4| $) 89)) (-3813 (($ $) 68 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ |#4| $) 67 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4407)))) (-1972 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-555)))) (-3990 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-3948 ((|#4| |#4| $) 87)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4407))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4407))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2144 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3405 (-640 |#4|))) $) 105)) (-2659 (((-640 |#4|) $) 52 (|has| $ (-6 -4407)))) (-2299 (((-112) |#4| $) 104) (((-112) $) 103)) (-2957 ((|#3| $) 34)) (-2581 (((-112) $ (-767)) 43)) (-2259 (((-640 |#4|) $) 53 (|has| $ (-6 -4407)))) (-1729 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#4| |#4|) $) 47)) (-2965 (((-640 |#3|) $) 32)) (-2780 (((-112) |#3| $) 31)) (-2382 (((-112) $ (-767)) 42)) (-3573 (((-1151) $) 9)) (-1481 (((-3 |#4| "failed") $) 83)) (-2820 (((-640 |#4|) $) 107)) (-4197 (((-112) |#4| $) 99) (((-112) $) 95)) (-2715 ((|#4| |#4| $) 90)) (-3009 (((-112) $ $) 110)) (-2152 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-555)))) (-2031 (((-112) |#4| $) 100) (((-112) $) 96)) (-4056 ((|#4| |#4| $) 91)) (-1694 (((-1113) $) 10)) (-3781 (((-3 |#4| "failed") $) 84)) (-4203 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-3479 (((-3 $ "failed") $ |#4|) 78)) (-3320 (($ $ |#4|) 77)) (-3138 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 |#4|) (-640 |#4|)) 59 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) 57 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) 56 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2026 (((-112) $ $) 38)) (-3756 (((-112) $) 41)) (-3135 (($) 40)) (-4167 (((-767) $) 106)) (-1709 (((-767) |#4| $) 54 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4407)))) (((-767) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4407)))) (-1872 (($ $) 39)) (-2220 (((-536) $) 69 (|has| |#4| (-611 (-536))))) (-1707 (($ (-640 |#4|)) 60)) (-3577 (($ $ |#3|) 28)) (-1593 (($ $ |#3|) 30)) (-1924 (($ $) 88)) (-4192 (($ $ |#3|) 29)) (-1693 (((-858) $) 11) (((-640 |#4|) $) 37)) (-2437 (((-767) $) 76 (|has| |#3| (-368)))) (-2540 (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-2691 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) 98)) (-4383 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4407)))) (-1955 (((-640 |#3|) $) 81)) (-3152 (((-112) |#3| $) 80)) (-1718 (((-112) $ $) 6)) (-3608 (((-767) $) 46 (|has| $ (-6 -4407)))))
+((-1618 (*1 *1 *1) (-4 *1 (-1196))) (-1596 (*1 *1 *1) (-4 *1 (-1196))) (-1642 (*1 *1 *1) (-4 *1 (-1196))) (-1655 (*1 *1 *1) (-4 *1 (-1196))) (-1629 (*1 *1 *1) (-4 *1 (-1196))) (-1607 (*1 *1 *1) (-4 *1 (-1196))))
+(-13 (-10 -8 (-15 -1607 ($ $)) (-15 -1629 ($ $)) (-15 -1655 ($ $)) (-15 -1642 ($ $)) (-15 -1596 ($ $)) (-15 -1618 ($ $))))
+((-2917 ((|#2| |#2|) 88)) (-2927 (((-112) |#2|) 26)) (-2488 ((|#2| |#2|) 30)) (-2498 ((|#2| |#2|) 32)) (-2898 ((|#2| |#2| (-1169)) 83) ((|#2| |#2|) 84)) (-2936 (((-169 |#2|) |#2|) 28)) (-2907 ((|#2| |#2| (-1169)) 85) ((|#2| |#2|) 86)))
+(((-1197 |#1| |#2|) (-10 -7 (-15 -2898 (|#2| |#2|)) (-15 -2898 (|#2| |#2| (-1169))) (-15 -2907 (|#2| |#2|)) (-15 -2907 (|#2| |#2| (-1169))) (-15 -2917 (|#2| |#2|)) (-15 -2488 (|#2| |#2|)) (-15 -2498 (|#2| |#2|)) (-15 -2927 ((-112) |#2|)) (-15 -2936 ((-169 |#2|) |#2|))) (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))) (-13 (-27) (-1193) (-430 |#1|))) (T -1197))
+((-2936 (*1 *2 *3) (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-169 *3)) (-5 *1 (-1197 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *4))))) (-2927 (*1 *2 *3) (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *2 (-112)) (-5 *1 (-1197 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *4))))) (-2498 (*1 *2 *2) (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))) (-2488 (*1 *2 *2) (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))) (-2917 (*1 *2 *2) (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))) (-2907 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1197 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))) (-2907 (*1 *2 *2) (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))) (-2898 (*1 *2 *2 *3) (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1197 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))) (-2898 (*1 *2 *2) (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563)))) (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))))
+(-10 -7 (-15 -2898 (|#2| |#2|)) (-15 -2898 (|#2| |#2| (-1169))) (-15 -2907 (|#2| |#2|)) (-15 -2907 (|#2| |#2| (-1169))) (-15 -2917 (|#2| |#2|)) (-15 -2488 (|#2| |#2|)) (-15 -2498 (|#2| |#2|)) (-15 -2927 ((-112) |#2|)) (-15 -2936 ((-169 |#2|) |#2|)))
+((-2946 ((|#4| |#4| |#1|) 27)) (-2956 ((|#4| |#4| |#1|) 28)))
+(((-1198 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2946 (|#4| |#4| |#1|)) (-15 -2956 (|#4| |#4| |#1|))) (-555) (-373 |#1|) (-373 |#1|) (-682 |#1| |#2| |#3|)) (T -1198))
+((-2956 (*1 *2 *2 *3) (-12 (-4 *3 (-555)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-1198 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))) (-2946 (*1 *2 *2 *3) (-12 (-4 *3 (-555)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3)) (-5 *1 (-1198 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
+(-10 -7 (-15 -2946 (|#4| |#4| |#1|)) (-15 -2956 (|#4| |#4| |#1|)))
+((-3143 ((|#2| |#2|) 133)) (-3161 ((|#2| |#2|) 130)) (-3133 ((|#2| |#2|) 121)) (-3152 ((|#2| |#2|) 118)) (-3122 ((|#2| |#2|) 126)) (-3111 ((|#2| |#2|) 114)) (-2995 ((|#2| |#2|) 41)) (-2985 ((|#2| |#2|) 91)) (-2966 ((|#2| |#2|) 72)) (-3099 ((|#2| |#2|) 128)) (-3087 ((|#2| |#2|) 116)) (-3215 ((|#2| |#2|) 138)) (-3194 ((|#2| |#2|) 136)) (-3205 ((|#2| |#2|) 137)) (-3187 ((|#2| |#2|) 135)) (-2976 ((|#2| |#2|) 148)) (-3226 ((|#2| |#2|) 30 (-12 (|has| |#2| (-611 (-888 |#1|))) (|has| |#2| (-882 |#1|)) (|has| |#1| (-611 (-888 |#1|))) (|has| |#1| (-882 |#1|))))) (-3006 ((|#2| |#2|) 73)) (-3017 ((|#2| |#2|) 139)) (-2212 ((|#2| |#2|) 140)) (-3077 ((|#2| |#2|) 127)) (-3068 ((|#2| |#2|) 115)) (-3059 ((|#2| |#2|) 134)) (-3178 ((|#2| |#2|) 132)) (-3048 ((|#2| |#2|) 122)) (-3168 ((|#2| |#2|) 120)) (-3037 ((|#2| |#2|) 124)) (-3027 ((|#2| |#2|) 112)))
+(((-1199 |#1| |#2|) (-10 -7 (-15 -2212 (|#2| |#2|)) (-15 -2966 (|#2| |#2|)) (-15 -2976 (|#2| |#2|)) (-15 -2985 (|#2| |#2|)) (-15 -2995 (|#2| |#2|)) (-15 -3006 (|#2| |#2|)) (-15 -3017 (|#2| |#2|)) (-15 -3027 (|#2| |#2|)) (-15 -3037 (|#2| |#2|)) (-15 -3048 (|#2| |#2|)) (-15 -3059 (|#2| |#2|)) (-15 -3068 (|#2| |#2|)) (-15 -3077 (|#2| |#2|)) (-15 -3087 (|#2| |#2|)) (-15 -3099 (|#2| |#2|)) (-15 -3111 (|#2| |#2|)) (-15 -3122 (|#2| |#2|)) (-15 -3133 (|#2| |#2|)) (-15 -3143 (|#2| |#2|)) (-15 -3152 (|#2| |#2|)) (-15 -3161 (|#2| |#2|)) (-15 -3168 (|#2| |#2|)) (-15 -3178 (|#2| |#2|)) (-15 -3187 (|#2| |#2|)) (-15 -3194 (|#2| |#2|)) (-15 -3205 (|#2| |#2|)) (-15 -3215 (|#2| |#2|)) (IF (|has| |#1| (-882 |#1|)) (IF (|has| |#1| (-611 (-888 |#1|))) (IF (|has| |#2| (-611 (-888 |#1|))) (IF (|has| |#2| (-882 |#1|)) (-15 -3226 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-13 (-846) (-452)) (-13 (-430 |#1|) (-1193))) (T -1199))
+((-3226 (*1 *2 *2) (-12 (-4 *3 (-611 (-888 *3))) (-4 *3 (-882 *3)) (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-611 (-888 *3))) (-4 *2 (-882 *3)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3215 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3205 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3194 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3187 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3178 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3168 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3161 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3152 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3143 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3133 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3122 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3111 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3099 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3087 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3077 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3068 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3059 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3048 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3037 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3027 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3017 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-3006 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2995 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2985 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2976 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2966 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))) (-2212 (*1 *2 *2) (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2)) (-4 *2 (-13 (-430 *3) (-1193))))))
+(-10 -7 (-15 -2212 (|#2| |#2|)) (-15 -2966 (|#2| |#2|)) (-15 -2976 (|#2| |#2|)) (-15 -2985 (|#2| |#2|)) (-15 -2995 (|#2| |#2|)) (-15 -3006 (|#2| |#2|)) (-15 -3017 (|#2| |#2|)) (-15 -3027 (|#2| |#2|)) (-15 -3037 (|#2| |#2|)) (-15 -3048 (|#2| |#2|)) (-15 -3059 (|#2| |#2|)) (-15 -3068 (|#2| |#2|)) (-15 -3077 (|#2| |#2|)) (-15 -3087 (|#2| |#2|)) (-15 -3099 (|#2| |#2|)) (-15 -3111 (|#2| |#2|)) (-15 -3122 (|#2| |#2|)) (-15 -3133 (|#2| |#2|)) (-15 -3143 (|#2| |#2|)) (-15 -3152 (|#2| |#2|)) (-15 -3161 (|#2| |#2|)) (-15 -3168 (|#2| |#2|)) (-15 -3178 (|#2| |#2|)) (-15 -3187 (|#2| |#2|)) (-15 -3194 (|#2| |#2|)) (-15 -3205 (|#2| |#2|)) (-15 -3215 (|#2| |#2|)) (IF (|has| |#1| (-882 |#1|)) (IF (|has| |#1| (-611 (-888 |#1|))) (IF (|has| |#2| (-611 (-888 |#1|))) (IF (|has| |#2| (-882 |#1|)) (-15 -3226 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
+((-2254 (((-112) |#5| $) 59) (((-112) $) 101)) (-2189 ((|#5| |#5| $) 74)) (-2255 (($ (-1 (-112) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 118)) (-2201 (((-640 |#5|) (-640 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 72)) (-2130 (((-3 $ "failed") (-640 |#5|)) 125)) (-3793 (((-3 $ "failed") $) 111)) (-2151 ((|#5| |#5| $) 93)) (-2264 (((-112) |#5| $ (-1 (-112) |#5| |#5|)) 30)) (-2131 ((|#5| |#5| $) 97)) (-2444 ((|#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|)) 68)) (-2284 (((-2 (|:| -1442 (-640 |#5|)) (|:| -3409 (-640 |#5|))) $) 54)) (-2274 (((-112) |#5| $) 57) (((-112) $) 102)) (-3354 ((|#4| $) 107)) (-1481 (((-3 |#5| "failed") $) 109)) (-2297 (((-640 |#5|) $) 48)) (-2225 (((-112) |#5| $) 66) (((-112) $) 106)) (-2163 ((|#5| |#5| $) 80)) (-2319 (((-112) $ $) 26)) (-2241 (((-112) |#5| $) 62) (((-112) $) 104)) (-2176 ((|#5| |#5| $) 77)) (-3782 (((-3 |#5| "failed") $) 108)) (-1751 (($ $ |#5|) 126)) (-3871 (((-767) $) 51)) (-1706 (($ (-640 |#5|)) 123)) (-3519 (($ $ |#4|) 121)) (-3542 (($ $ |#4|) 120)) (-2141 (($ $) 119)) (-1692 (((-858) $) NIL) (((-640 |#5|) $) 112)) (-3255 (((-767) $) 129)) (-2307 (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#5|))) "failed") (-640 |#5|) (-1 (-112) |#5| |#5|)) 42) (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#5|))) "failed") (-640 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|)) 44)) (-2211 (((-112) $ (-1 (-112) |#5| (-640 |#5|))) 99)) (-2100 (((-640 |#4|) $) 114)) (-3772 (((-112) |#4| $) 117)) (-1718 (((-112) $ $) 19)))
+(((-1200 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3255 ((-767) |#1|)) (-15 -1751 (|#1| |#1| |#5|)) (-15 -2255 ((-3 |#5| "failed") |#1| |#4|)) (-15 -3772 ((-112) |#4| |#1|)) (-15 -2100 ((-640 |#4|) |#1|)) (-15 -3793 ((-3 |#1| "failed") |#1|)) (-15 -1481 ((-3 |#5| "failed") |#1|)) (-15 -3782 ((-3 |#5| "failed") |#1|)) (-15 -2131 (|#5| |#5| |#1|)) (-15 -2141 (|#1| |#1|)) (-15 -2151 (|#5| |#5| |#1|)) (-15 -2163 (|#5| |#5| |#1|)) (-15 -2176 (|#5| |#5| |#1|)) (-15 -2189 (|#5| |#5| |#1|)) (-15 -2201 ((-640 |#5|) (-640 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2444 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2225 ((-112) |#1|)) (-15 -2241 ((-112) |#1|)) (-15 -2254 ((-112) |#1|)) (-15 -2211 ((-112) |#1| (-1 (-112) |#5| (-640 |#5|)))) (-15 -2225 ((-112) |#5| |#1|)) (-15 -2241 ((-112) |#5| |#1|)) (-15 -2254 ((-112) |#5| |#1|)) (-15 -2264 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -2274 ((-112) |#1|)) (-15 -2274 ((-112) |#5| |#1|)) (-15 -2284 ((-2 (|:| -1442 (-640 |#5|)) (|:| -3409 (-640 |#5|))) |#1|)) (-15 -3871 ((-767) |#1|)) (-15 -2297 ((-640 |#5|) |#1|)) (-15 -2307 ((-3 (-2 (|:| |bas| |#1|) (|:| -2635 (-640 |#5|))) "failed") (-640 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -2307 ((-3 (-2 (|:| |bas| |#1|) (|:| -2635 (-640 |#5|))) "failed") (-640 |#5|) (-1 (-112) |#5| |#5|))) (-15 -2319 ((-112) |#1| |#1|)) (-15 -3519 (|#1| |#1| |#4|)) (-15 -3542 (|#1| |#1| |#4|)) (-15 -3354 (|#4| |#1|)) (-15 -2130 ((-3 |#1| "failed") (-640 |#5|))) (-15 -1692 ((-640 |#5|) |#1|)) (-15 -1706 (|#1| (-640 |#5|))) (-15 -2444 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -2444 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -2255 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -2444 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -1692 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|))) (-1201 |#2| |#3| |#4| |#5|) (-555) (-789) (-846) (-1059 |#2| |#3| |#4|)) (T -1200))
+NIL
+(-10 -8 (-15 -3255 ((-767) |#1|)) (-15 -1751 (|#1| |#1| |#5|)) (-15 -2255 ((-3 |#5| "failed") |#1| |#4|)) (-15 -3772 ((-112) |#4| |#1|)) (-15 -2100 ((-640 |#4|) |#1|)) (-15 -3793 ((-3 |#1| "failed") |#1|)) (-15 -1481 ((-3 |#5| "failed") |#1|)) (-15 -3782 ((-3 |#5| "failed") |#1|)) (-15 -2131 (|#5| |#5| |#1|)) (-15 -2141 (|#1| |#1|)) (-15 -2151 (|#5| |#5| |#1|)) (-15 -2163 (|#5| |#5| |#1|)) (-15 -2176 (|#5| |#5| |#1|)) (-15 -2189 (|#5| |#5| |#1|)) (-15 -2201 ((-640 |#5|) (-640 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2444 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2225 ((-112) |#1|)) (-15 -2241 ((-112) |#1|)) (-15 -2254 ((-112) |#1|)) (-15 -2211 ((-112) |#1| (-1 (-112) |#5| (-640 |#5|)))) (-15 -2225 ((-112) |#5| |#1|)) (-15 -2241 ((-112) |#5| |#1|)) (-15 -2254 ((-112) |#5| |#1|)) (-15 -2264 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -2274 ((-112) |#1|)) (-15 -2274 ((-112) |#5| |#1|)) (-15 -2284 ((-2 (|:| -1442 (-640 |#5|)) (|:| -3409 (-640 |#5|))) |#1|)) (-15 -3871 ((-767) |#1|)) (-15 -2297 ((-640 |#5|) |#1|)) (-15 -2307 ((-3 (-2 (|:| |bas| |#1|) (|:| -2635 (-640 |#5|))) "failed") (-640 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -2307 ((-3 (-2 (|:| |bas| |#1|) (|:| -2635 (-640 |#5|))) "failed") (-640 |#5|) (-1 (-112) |#5| |#5|))) (-15 -2319 ((-112) |#1| |#1|)) (-15 -3519 (|#1| |#1| |#4|)) (-15 -3542 (|#1| |#1| |#4|)) (-15 -3354 (|#4| |#1|)) (-15 -2130 ((-3 |#1| "failed") (-640 |#5|))) (-15 -1692 ((-640 |#5|) |#1|)) (-15 -1706 (|#1| (-640 |#5|))) (-15 -2444 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -2444 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -2255 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -2444 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -1692 ((-858) |#1|)) (-15 -1718 ((-112) |#1| |#1|)))
+((-1677 (((-112) $ $) 7)) (-2110 (((-640 (-2 (|:| -1442 $) (|:| -3409 (-640 |#4|)))) (-640 |#4|)) 85)) (-2119 (((-640 $) (-640 |#4|)) 86)) (-2605 (((-640 |#3|) $) 33)) (-3508 (((-112) $) 26)) (-3406 (((-112) $) 17 (|has| |#1| (-555)))) (-2254 (((-112) |#4| $) 101) (((-112) $) 97)) (-2189 ((|#4| |#4| $) 92)) (-1640 (((-2 (|:| |under| $) (|:| -3954 $) (|:| |upper| $)) $ |#3|) 27)) (-3001 (((-112) $ (-767)) 44)) (-2255 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4408))) (((-3 |#4| "failed") $ |#3|) 79)) (-2569 (($) 45 T CONST)) (-3466 (((-112) $) 22 (|has| |#1| (-555)))) (-3486 (((-112) $ $) 24 (|has| |#1| (-555)))) (-3476 (((-112) $ $) 23 (|has| |#1| (-555)))) (-3496 (((-112) $) 25 (|has| |#1| (-555)))) (-2201 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3418 (((-640 |#4|) (-640 |#4|) $) 18 (|has| |#1| (-555)))) (-3431 (((-640 |#4|) (-640 |#4|) $) 19 (|has| |#1| (-555)))) (-2130 (((-3 $ "failed") (-640 |#4|)) 36)) (-2057 (($ (-640 |#4|)) 35)) (-3793 (((-3 $ "failed") $) 82)) (-2151 ((|#4| |#4| $) 89)) (-3814 (($ $) 68 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ |#4| $) 67 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4408)))) (-3443 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-555)))) (-2264 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-2131 ((|#4| |#4| $) 87)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4408))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4408))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2284 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3409 (-640 |#4|))) $) 105)) (-2658 (((-640 |#4|) $) 52 (|has| $ (-6 -4408)))) (-2274 (((-112) |#4| $) 104) (((-112) $) 103)) (-3354 ((|#3| $) 34)) (-2514 (((-112) $ (-767)) 43)) (-3523 (((-640 |#4|) $) 53 (|has| $ (-6 -4408)))) (-2667 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#4| |#4|) $) 47)) (-3568 (((-640 |#3|) $) 32)) (-3553 (((-112) |#3| $) 31)) (-2481 (((-112) $ (-767)) 42)) (-3854 (((-1151) $) 9)) (-1481 (((-3 |#4| "failed") $) 83)) (-2297 (((-640 |#4|) $) 107)) (-2225 (((-112) |#4| $) 99) (((-112) $) 95)) (-2163 ((|#4| |#4| $) 90)) (-2319 (((-112) $ $) 110)) (-3454 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-555)))) (-2241 (((-112) |#4| $) 100) (((-112) $) 96)) (-2176 ((|#4| |#4| $) 91)) (-1693 (((-1113) $) 10)) (-3782 (((-3 |#4| "failed") $) 84)) (-1971 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-2089 (((-3 $ "failed") $ |#4|) 78)) (-1751 (($ $ |#4|) 77)) (-1458 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 |#4|) (-640 |#4|)) 59 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) 57 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) 56 (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2941 (((-112) $ $) 38)) (-1665 (((-112) $) 41)) (-3445 (($) 40)) (-3871 (((-767) $) 106)) (-1708 (((-767) |#4| $) 54 (-12 (|has| |#4| (-1093)) (|has| $ (-6 -4408)))) (((-767) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4408)))) (-1870 (($ $) 39)) (-2219 (((-536) $) 69 (|has| |#4| (-611 (-536))))) (-1706 (($ (-640 |#4|)) 60)) (-3519 (($ $ |#3|) 28)) (-3542 (($ $ |#3|) 30)) (-2141 (($ $) 88)) (-3529 (($ $ |#3|) 29)) (-1692 (((-858) $) 11) (((-640 |#4|) $) 37)) (-3255 (((-767) $) 76 (|has| |#3| (-368)))) (-2307 (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-2211 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) 98)) (-1471 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4408)))) (-2100 (((-640 |#3|) $) 81)) (-3772 (((-112) |#3| $) 80)) (-1718 (((-112) $ $) 6)) (-3610 (((-767) $) 46 (|has| $ (-6 -4408)))))
(((-1201 |#1| |#2| |#3| |#4|) (-140) (-555) (-789) (-846) (-1059 |t#1| |t#2| |t#3|)) (T -1201))
-((-3009 (*1 *2 *1 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))) (-2540 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2636 (-640 *8)))) (-5 *3 (-640 *8)) (-4 *1 (-1201 *5 *6 *7 *8)))) (-2540 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9)) (-4 *9 (-1059 *6 *7 *8)) (-4 *6 (-555)) (-4 *7 (-789)) (-4 *8 (-846)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2636 (-640 *9)))) (-5 *3 (-640 *9)) (-4 *1 (-1201 *6 *7 *8 *9)))) (-2820 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-640 *6)))) (-4167 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-767)))) (-2144 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-2 (|:| -1442 (-640 *6)) (|:| -3405 (-640 *6)))))) (-2299 (*1 *2 *3 *1) (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-2299 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))) (-3990 (*1 *2 *3 *1 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1201 *5 *6 *7 *3)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-112)))) (-2620 (*1 *2 *3 *1) (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-2031 (*1 *2 *3 *1) (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-4197 (*1 *2 *3 *1) (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-2691 (*1 *2 *1 *3) (-12 (-5 *3 (-1 (-112) *7 (-640 *7))) (-4 *1 (-1201 *4 *5 *6 *7)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-2620 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))) (-2031 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))) (-4197 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))) (-2444 (*1 *2 *2 *1 *3 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-112) *2 *2)) (-4 *1 (-1201 *5 *6 *7 *2)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *2 (-1059 *5 *6 *7)))) (-1833 (*1 *2 *2 *1 *3 *4) (-12 (-5 *2 (-640 *8)) (-5 *3 (-1 *8 *8 *8)) (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1201 *5 *6 *7 *8)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)))) (-4053 (*1 *2 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-4056 (*1 *2 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-2715 (*1 *2 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-1719 (*1 *2 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-1924 (*1 *1 *1) (-12 (-4 *1 (-1201 *2 *3 *4 *5)) (-4 *2 (-555)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-1059 *2 *3 *4)))) (-3948 (*1 *2 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-3319 (*1 *2 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1201 *4 *5 *6 *7)))) (-1578 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-640 (-2 (|:| -1442 *1) (|:| -3405 (-640 *7))))) (-5 *3 (-640 *7)) (-4 *1 (-1201 *4 *5 *6 *7)))) (-3781 (*1 *2 *1) (|partial| -12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-1481 (*1 *2 *1) (|partial| -12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-3792 (*1 *1 *1) (|partial| -12 (-4 *1 (-1201 *2 *3 *4 *5)) (-4 *2 (-555)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-1059 *2 *3 *4)))) (-1955 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-640 *5)))) (-3152 (*1 *2 *3 *1) (-12 (-4 *1 (-1201 *4 *5 *3 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *3 (-846)) (-4 *6 (-1059 *4 *5 *3)) (-5 *2 (-112)))) (-2256 (*1 *2 *1 *3) (|partial| -12 (-4 *1 (-1201 *4 *5 *3 *2)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *3 (-846)) (-4 *2 (-1059 *4 *5 *3)))) (-3479 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-3320 (*1 *1 *1 *2) (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-2437 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *5 (-368)) (-5 *2 (-767)))))
-(-13 (-972 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-6 -4407) (-6 -4408) (-15 -3009 ((-112) $ $)) (-15 -2540 ((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |t#4|))) "failed") (-640 |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2540 ((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |t#4|))) "failed") (-640 |t#4|) (-1 (-112) |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2820 ((-640 |t#4|) $)) (-15 -4167 ((-767) $)) (-15 -2144 ((-2 (|:| -1442 (-640 |t#4|)) (|:| -3405 (-640 |t#4|))) $)) (-15 -2299 ((-112) |t#4| $)) (-15 -2299 ((-112) $)) (-15 -3990 ((-112) |t#4| $ (-1 (-112) |t#4| |t#4|))) (-15 -2620 ((-112) |t#4| $)) (-15 -2031 ((-112) |t#4| $)) (-15 -4197 ((-112) |t#4| $)) (-15 -2691 ((-112) $ (-1 (-112) |t#4| (-640 |t#4|)))) (-15 -2620 ((-112) $)) (-15 -2031 ((-112) $)) (-15 -4197 ((-112) $)) (-15 -2444 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -1833 ((-640 |t#4|) (-640 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -4053 (|t#4| |t#4| $)) (-15 -4056 (|t#4| |t#4| $)) (-15 -2715 (|t#4| |t#4| $)) (-15 -1719 (|t#4| |t#4| $)) (-15 -1924 ($ $)) (-15 -3948 (|t#4| |t#4| $)) (-15 -3319 ((-640 $) (-640 |t#4|))) (-15 -1578 ((-640 (-2 (|:| -1442 $) (|:| -3405 (-640 |t#4|)))) (-640 |t#4|))) (-15 -3781 ((-3 |t#4| "failed") $)) (-15 -1481 ((-3 |t#4| "failed") $)) (-15 -3792 ((-3 $ "failed") $)) (-15 -1955 ((-640 |t#3|) $)) (-15 -3152 ((-112) |t#3| $)) (-15 -2256 ((-3 |t#4| "failed") $ |t#3|)) (-15 -3479 ((-3 $ "failed") $ |t#4|)) (-15 -3320 ($ $ |t#4|)) (IF (|has| |t#3| (-368)) (-15 -2437 ((-767) $)) |%noBranch|)))
+((-2319 (*1 *2 *1 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))) (-2307 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2635 (-640 *8)))) (-5 *3 (-640 *8)) (-4 *1 (-1201 *5 *6 *7 *8)))) (-2307 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9)) (-4 *9 (-1059 *6 *7 *8)) (-4 *6 (-555)) (-4 *7 (-789)) (-4 *8 (-846)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2635 (-640 *9)))) (-5 *3 (-640 *9)) (-4 *1 (-1201 *6 *7 *8 *9)))) (-2297 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-640 *6)))) (-3871 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-767)))) (-2284 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-2 (|:| -1442 (-640 *6)) (|:| -3409 (-640 *6)))))) (-2274 (*1 *2 *3 *1) (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-2274 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))) (-2264 (*1 *2 *3 *1 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1201 *5 *6 *7 *3)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-112)))) (-2254 (*1 *2 *3 *1) (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-2241 (*1 *2 *3 *1) (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-2225 (*1 *2 *3 *1) (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-2211 (*1 *2 *1 *3) (-12 (-5 *3 (-1 (-112) *7 (-640 *7))) (-4 *1 (-1201 *4 *5 *6 *7)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)))) (-2254 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))) (-2241 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))) (-2225 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))) (-2444 (*1 *2 *2 *1 *3 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-112) *2 *2)) (-4 *1 (-1201 *5 *6 *7 *2)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *2 (-1059 *5 *6 *7)))) (-2201 (*1 *2 *2 *1 *3 *4) (-12 (-5 *2 (-640 *8)) (-5 *3 (-1 *8 *8 *8)) (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1201 *5 *6 *7 *8)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)))) (-2189 (*1 *2 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-2176 (*1 *2 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-2163 (*1 *2 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-2151 (*1 *2 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-2141 (*1 *1 *1) (-12 (-4 *1 (-1201 *2 *3 *4 *5)) (-4 *2 (-555)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-1059 *2 *3 *4)))) (-2131 (*1 *2 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-2119 (*1 *2 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1)) (-4 *1 (-1201 *4 *5 *6 *7)))) (-2110 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-640 (-2 (|:| -1442 *1) (|:| -3409 (-640 *7))))) (-5 *3 (-640 *7)) (-4 *1 (-1201 *4 *5 *6 *7)))) (-3782 (*1 *2 *1) (|partial| -12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-1481 (*1 *2 *1) (|partial| -12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-3793 (*1 *1 *1) (|partial| -12 (-4 *1 (-1201 *2 *3 *4 *5)) (-4 *2 (-555)) (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-1059 *2 *3 *4)))) (-2100 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-640 *5)))) (-3772 (*1 *2 *3 *1) (-12 (-4 *1 (-1201 *4 *5 *3 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *3 (-846)) (-4 *6 (-1059 *4 *5 *3)) (-5 *2 (-112)))) (-2255 (*1 *2 *1 *3) (|partial| -12 (-4 *1 (-1201 *4 *5 *3 *2)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *3 (-846)) (-4 *2 (-1059 *4 *5 *3)))) (-2089 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-1751 (*1 *1 *1 *2) (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))) (-3255 (*1 *2 *1) (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *5 (-368)) (-5 *2 (-767)))))
+(-13 (-972 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-6 -4408) (-6 -4409) (-15 -2319 ((-112) $ $)) (-15 -2307 ((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |t#4|))) "failed") (-640 |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2307 ((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |t#4|))) "failed") (-640 |t#4|) (-1 (-112) |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2297 ((-640 |t#4|) $)) (-15 -3871 ((-767) $)) (-15 -2284 ((-2 (|:| -1442 (-640 |t#4|)) (|:| -3409 (-640 |t#4|))) $)) (-15 -2274 ((-112) |t#4| $)) (-15 -2274 ((-112) $)) (-15 -2264 ((-112) |t#4| $ (-1 (-112) |t#4| |t#4|))) (-15 -2254 ((-112) |t#4| $)) (-15 -2241 ((-112) |t#4| $)) (-15 -2225 ((-112) |t#4| $)) (-15 -2211 ((-112) $ (-1 (-112) |t#4| (-640 |t#4|)))) (-15 -2254 ((-112) $)) (-15 -2241 ((-112) $)) (-15 -2225 ((-112) $)) (-15 -2444 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2201 ((-640 |t#4|) (-640 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2189 (|t#4| |t#4| $)) (-15 -2176 (|t#4| |t#4| $)) (-15 -2163 (|t#4| |t#4| $)) (-15 -2151 (|t#4| |t#4| $)) (-15 -2141 ($ $)) (-15 -2131 (|t#4| |t#4| $)) (-15 -2119 ((-640 $) (-640 |t#4|))) (-15 -2110 ((-640 (-2 (|:| -1442 $) (|:| -3409 (-640 |t#4|)))) (-640 |t#4|))) (-15 -3782 ((-3 |t#4| "failed") $)) (-15 -1481 ((-3 |t#4| "failed") $)) (-15 -3793 ((-3 $ "failed") $)) (-15 -2100 ((-640 |t#3|) $)) (-15 -3772 ((-112) |t#3| $)) (-15 -2255 ((-3 |t#4| "failed") $ |t#3|)) (-15 -2089 ((-3 $ "failed") $ |t#4|)) (-15 -1751 ($ $ |t#4|)) (IF (|has| |t#3| (-368)) (-15 -3255 ((-767) $)) |%noBranch|)))
(((-34) . T) ((-102) . T) ((-610 (-640 |#4|)) . T) ((-610 (-858)) . T) ((-151 |#4|) . T) ((-611 (-536)) |has| |#4| (-611 (-536))) ((-309 |#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))) ((-489 |#4|) . T) ((-514 |#4| |#4|) -12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))) ((-972 |#1| |#2| |#3| |#4|) . T) ((-1093) . T) ((-1208) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2606 (((-640 (-1169)) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-1771 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) NIL)) (-2186 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1748 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1794 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) NIL T CONST)) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-3619 (((-948 |#1|) $ (-767)) 16) (((-948 |#1|) $ (-767) (-767)) NIL)) (-2788 (((-112) $) NIL)) (-2180 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3254 (((-767) $ (-1169)) NIL) (((-767) $ (-1169) (-767)) NIL)) (-3827 (((-112) $) NIL)) (-1645 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3920 (((-112) $) NIL)) (-2588 (($ $ (-640 (-1169)) (-640 (-531 (-1169)))) NIL) (($ $ (-1169) (-531 (-1169))) NIL) (($ |#1| (-531 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-4371 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-3698 (($ $ (-1169)) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1694 (((-1113) $) NIL)) (-3118 (($ (-1 $) (-1169) |#1|) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3320 (($ $ (-767)) NIL)) (-3008 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-3368 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1540 (($ $ (-1169) $) NIL) (($ $ (-640 (-1169)) (-640 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL)) (-4202 (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL)) (-4167 (((-531 (-1169)) $) NIL)) (-1806 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1741 (($ $) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ $) NIL (|has| |#1| (-555))) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-1169)) NIL) (($ (-948 |#1|)) NIL)) (-4319 ((|#1| $ (-531 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (((-948 |#1|) $ (-767)) NIL)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) NIL)) (-1840 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1817 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1311 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2241 (($) NIL T CONST)) (-2254 (($) NIL T CONST)) (-3209 (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL)) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-1202 |#1|) (-13 (-736 |#1| (-1169)) (-10 -8 (-15 -4319 ((-948 |#1|) $ (-767))) (-15 -1693 ($ (-1169))) (-15 -1693 ($ (-948 |#1|))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -3698 ($ $ (-1169) |#1|)) (-15 -3118 ($ (-1 $) (-1169) |#1|))) |%noBranch|))) (-1045)) (T -1202))
-((-4319 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *2 (-948 *4)) (-5 *1 (-1202 *4)) (-4 *4 (-1045)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1202 *3)) (-4 *3 (-1045)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-948 *3)) (-4 *3 (-1045)) (-5 *1 (-1202 *3)))) (-3698 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *1 (-1202 *3)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)))) (-3118 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1202 *4))) (-5 *3 (-1169)) (-5 *1 (-1202 *4)) (-4 *4 (-38 (-407 (-563)))) (-4 *4 (-1045)))))
-(-13 (-736 |#1| (-1169)) (-10 -8 (-15 -4319 ((-948 |#1|) $ (-767))) (-15 -1693 ($ (-1169))) (-15 -1693 ($ (-948 |#1|))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -3698 ($ $ (-1169) |#1|)) (-15 -3118 ($ (-1 $) (-1169) |#1|))) |%noBranch|)))
-((-2357 (($ |#1| (-640 (-640 (-939 (-225)))) (-112)) 18)) (-1474 (((-112) $ (-112)) 17)) (-1430 (((-112) $) 16)) (-4348 (((-640 (-640 (-939 (-225)))) $) 13)) (-3402 ((|#1| $) 8)) (-1877 (((-112) $) 15)))
-(((-1203 |#1|) (-10 -8 (-15 -3402 (|#1| $)) (-15 -4348 ((-640 (-640 (-939 (-225)))) $)) (-15 -1877 ((-112) $)) (-15 -1430 ((-112) $)) (-15 -1474 ((-112) $ (-112))) (-15 -2357 ($ |#1| (-640 (-640 (-939 (-225)))) (-112)))) (-970)) (T -1203))
-((-2357 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-112)) (-5 *1 (-1203 *2)) (-4 *2 (-970)))) (-1474 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3)) (-4 *3 (-970)))) (-1430 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3)) (-4 *3 (-970)))) (-1877 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3)) (-4 *3 (-970)))) (-4348 (*1 *2 *1) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *1 (-1203 *3)) (-4 *3 (-970)))) (-3402 (*1 *2 *1) (-12 (-5 *1 (-1203 *2)) (-4 *2 (-970)))))
-(-10 -8 (-15 -3402 (|#1| $)) (-15 -4348 ((-640 (-640 (-939 (-225)))) $)) (-15 -1877 ((-112) $)) (-15 -1430 ((-112) $)) (-15 -1474 ((-112) $ (-112))) (-15 -2357 ($ |#1| (-640 (-640 (-939 (-225)))) (-112))))
-((-1946 (((-939 (-225)) (-939 (-225))) 25)) (-3014 (((-939 (-225)) (-225) (-225) (-225) (-225)) 10)) (-3436 (((-640 (-939 (-225))) (-939 (-225)) (-939 (-225)) (-939 (-225)) (-225) (-640 (-640 (-225)))) 35)) (-4092 (((-225) (-939 (-225)) (-939 (-225))) 21)) (-1627 (((-939 (-225)) (-939 (-225)) (-939 (-225))) 22)) (-1590 (((-640 (-640 (-225))) (-563)) 31)) (-1826 (((-939 (-225)) (-939 (-225)) (-939 (-225))) 20)) (-1814 (((-939 (-225)) (-939 (-225)) (-939 (-225))) 19)) (* (((-939 (-225)) (-225) (-939 (-225))) 18)))
-(((-1204) (-10 -7 (-15 -3014 ((-939 (-225)) (-225) (-225) (-225) (-225))) (-15 * ((-939 (-225)) (-225) (-939 (-225)))) (-15 -1814 ((-939 (-225)) (-939 (-225)) (-939 (-225)))) (-15 -1826 ((-939 (-225)) (-939 (-225)) (-939 (-225)))) (-15 -4092 ((-225) (-939 (-225)) (-939 (-225)))) (-15 -1627 ((-939 (-225)) (-939 (-225)) (-939 (-225)))) (-15 -1946 ((-939 (-225)) (-939 (-225)))) (-15 -1590 ((-640 (-640 (-225))) (-563))) (-15 -3436 ((-640 (-939 (-225))) (-939 (-225)) (-939 (-225)) (-939 (-225)) (-225) (-640 (-640 (-225))))))) (T -1204))
-((-3436 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-640 (-640 (-225)))) (-5 *4 (-225)) (-5 *2 (-640 (-939 *4))) (-5 *1 (-1204)) (-5 *3 (-939 *4)))) (-1590 (*1 *2 *3) (-12 (-5 *3 (-563)) (-5 *2 (-640 (-640 (-225)))) (-5 *1 (-1204)))) (-1946 (*1 *2 *2) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204)))) (-1627 (*1 *2 *2 *2) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204)))) (-4092 (*1 *2 *3 *3) (-12 (-5 *3 (-939 (-225))) (-5 *2 (-225)) (-5 *1 (-1204)))) (-1826 (*1 *2 *2 *2) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204)))) (-1814 (*1 *2 *2 *2) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-939 (-225))) (-5 *3 (-225)) (-5 *1 (-1204)))) (-3014 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204)) (-5 *3 (-225)))))
-(-10 -7 (-15 -3014 ((-939 (-225)) (-225) (-225) (-225) (-225))) (-15 * ((-939 (-225)) (-225) (-939 (-225)))) (-15 -1814 ((-939 (-225)) (-939 (-225)) (-939 (-225)))) (-15 -1826 ((-939 (-225)) (-939 (-225)) (-939 (-225)))) (-15 -4092 ((-225) (-939 (-225)) (-939 (-225)))) (-15 -1627 ((-939 (-225)) (-939 (-225)) (-939 (-225)))) (-15 -1946 ((-939 (-225)) (-939 (-225)))) (-15 -1590 ((-640 (-640 (-225))) (-563))) (-15 -3436 ((-640 (-939 (-225))) (-939 (-225)) (-939 (-225)) (-939 (-225)) (-225) (-640 (-640 (-225))))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2256 ((|#1| $ (-767)) 13)) (-3415 (((-767) $) 12)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-1693 (((-954 |#1|) $) 10) (($ (-954 |#1|)) 9) (((-858) $) 23 (|has| |#1| (-610 (-858))))) (-1718 (((-112) $ $) 16 (|has| |#1| (-1093)))))
-(((-1205 |#1|) (-13 (-490 (-954 |#1|)) (-10 -8 (-15 -2256 (|#1| $ (-767))) (-15 -3415 ((-767) $)) (IF (|has| |#1| (-610 (-858))) (-6 (-610 (-858))) |%noBranch|) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|))) (-1208)) (T -1205))
-((-2256 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *1 (-1205 *2)) (-4 *2 (-1208)))) (-3415 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-1205 *3)) (-4 *3 (-1208)))))
-(-13 (-490 (-954 |#1|)) (-10 -8 (-15 -2256 (|#1| $ (-767))) (-15 -3415 ((-767) $)) (IF (|has| |#1| (-610 (-858))) (-6 (-610 (-858))) |%noBranch|) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|)))
-((-1305 (((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|)) (-563)) 80)) (-4281 (((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|))) 74)) (-4336 (((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|))) 59)))
-(((-1206 |#1|) (-10 -7 (-15 -4281 ((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|)))) (-15 -4336 ((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|)))) (-15 -1305 ((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|)) (-563)))) (-349)) (T -1206))
-((-1305 (*1 *2 *3 *4) (-12 (-5 *4 (-563)) (-4 *5 (-349)) (-5 *2 (-418 (-1165 (-1165 *5)))) (-5 *1 (-1206 *5)) (-5 *3 (-1165 (-1165 *5))))) (-4336 (*1 *2 *3) (-12 (-4 *4 (-349)) (-5 *2 (-418 (-1165 (-1165 *4)))) (-5 *1 (-1206 *4)) (-5 *3 (-1165 (-1165 *4))))) (-4281 (*1 *2 *3) (-12 (-4 *4 (-349)) (-5 *2 (-418 (-1165 (-1165 *4)))) (-5 *1 (-1206 *4)) (-5 *3 (-1165 (-1165 *4))))))
-(-10 -7 (-15 -4281 ((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|)))) (-15 -4336 ((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|)))) (-15 -1305 ((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|)) (-563))))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 9) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2605 (((-640 (-1169)) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-1770 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) NIL)) (-2185 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1747 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1793 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) NIL T CONST)) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3621 (((-948 |#1|) $ (-767)) 16) (((-948 |#1|) $ (-767) (-767)) NIL)) (-3381 (((-112) $) NIL)) (-2179 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1775 (((-767) $ (-1169)) NIL) (((-767) $ (-1169) (-767)) NIL)) (-3401 (((-112) $) NIL)) (-2172 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3805 (((-112) $) NIL)) (-2587 (($ $ (-640 (-1169)) (-640 (-531 (-1169)))) NIL) (($ $ (-1169) (-531 (-1169))) NIL) (($ |#1| (-531 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-4372 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-2062 (($ $ (-1169)) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169) |#1|) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1693 (((-1113) $) NIL)) (-3234 (($ (-1 $) (-1169) |#1|) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1751 (($ $ (-767)) NIL)) (-3012 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-3372 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1542 (($ $ (-1169) $) NIL) (($ $ (-640 (-1169)) (-640 $)) NIL) (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL)) (-4203 (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL)) (-3871 (((-531 (-1169)) $) NIL)) (-1805 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3369 (($ $) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ $) NIL (|has| |#1| (-555))) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-1169)) NIL) (($ (-948 |#1|)) NIL)) (-3244 ((|#1| $ (-531 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (((-948 |#1|) $ (-767)) NIL)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) NIL)) (-1839 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1816 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1311 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2239 (($) NIL T CONST)) (-2253 (($) NIL T CONST)) (-3213 (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL)) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-1202 |#1|) (-13 (-736 |#1| (-1169)) (-10 -8 (-15 -3244 ((-948 |#1|) $ (-767))) (-15 -1692 ($ (-1169))) (-15 -1692 ($ (-948 |#1|))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -2062 ($ $ (-1169) |#1|)) (-15 -3234 ($ (-1 $) (-1169) |#1|))) |%noBranch|))) (-1045)) (T -1202))
+((-3244 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *2 (-948 *4)) (-5 *1 (-1202 *4)) (-4 *4 (-1045)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1202 *3)) (-4 *3 (-1045)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-948 *3)) (-4 *3 (-1045)) (-5 *1 (-1202 *3)))) (-2062 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *1 (-1202 *3)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)))) (-3234 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1202 *4))) (-5 *3 (-1169)) (-5 *1 (-1202 *4)) (-4 *4 (-38 (-407 (-563)))) (-4 *4 (-1045)))))
+(-13 (-736 |#1| (-1169)) (-10 -8 (-15 -3244 ((-948 |#1|) $ (-767))) (-15 -1692 ($ (-1169))) (-15 -1692 ($ (-948 |#1|))) (IF (|has| |#1| (-38 (-407 (-563)))) (PROGN (-15 -2062 ($ $ (-1169) |#1|)) (-15 -3234 ($ (-1 $) (-1169) |#1|))) |%noBranch|)))
+((-2381 (($ |#1| (-640 (-640 (-939 (-225)))) (-112)) 18)) (-2368 (((-112) $ (-112)) 17)) (-2359 (((-112) $) 16)) (-2338 (((-640 (-640 (-939 (-225)))) $) 13)) (-2328 ((|#1| $) 8)) (-2349 (((-112) $) 15)))
+(((-1203 |#1|) (-10 -8 (-15 -2328 (|#1| $)) (-15 -2338 ((-640 (-640 (-939 (-225)))) $)) (-15 -2349 ((-112) $)) (-15 -2359 ((-112) $)) (-15 -2368 ((-112) $ (-112))) (-15 -2381 ($ |#1| (-640 (-640 (-939 (-225)))) (-112)))) (-970)) (T -1203))
+((-2381 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-112)) (-5 *1 (-1203 *2)) (-4 *2 (-970)))) (-2368 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3)) (-4 *3 (-970)))) (-2359 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3)) (-4 *3 (-970)))) (-2349 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3)) (-4 *3 (-970)))) (-2338 (*1 *2 *1) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *1 (-1203 *3)) (-4 *3 (-970)))) (-2328 (*1 *2 *1) (-12 (-5 *1 (-1203 *2)) (-4 *2 (-970)))))
+(-10 -8 (-15 -2328 (|#1| $)) (-15 -2338 ((-640 (-640 (-939 (-225)))) $)) (-15 -2349 ((-112) $)) (-15 -2359 ((-112) $)) (-15 -2368 ((-112) $ (-112))) (-15 -2381 ($ |#1| (-640 (-640 (-939 (-225)))) (-112))))
+((-2392 (((-939 (-225)) (-939 (-225))) 25)) (-3018 (((-939 (-225)) (-225) (-225) (-225) (-225)) 10)) (-2413 (((-640 (-939 (-225))) (-939 (-225)) (-939 (-225)) (-939 (-225)) (-225) (-640 (-640 (-225)))) 35)) (-4121 (((-225) (-939 (-225)) (-939 (-225))) 21)) (-4111 (((-939 (-225)) (-939 (-225)) (-939 (-225))) 22)) (-2401 (((-640 (-640 (-225))) (-563)) 31)) (-1825 (((-939 (-225)) (-939 (-225)) (-939 (-225))) 20)) (-1813 (((-939 (-225)) (-939 (-225)) (-939 (-225))) 19)) (* (((-939 (-225)) (-225) (-939 (-225))) 18)))
+(((-1204) (-10 -7 (-15 -3018 ((-939 (-225)) (-225) (-225) (-225) (-225))) (-15 * ((-939 (-225)) (-225) (-939 (-225)))) (-15 -1813 ((-939 (-225)) (-939 (-225)) (-939 (-225)))) (-15 -1825 ((-939 (-225)) (-939 (-225)) (-939 (-225)))) (-15 -4121 ((-225) (-939 (-225)) (-939 (-225)))) (-15 -4111 ((-939 (-225)) (-939 (-225)) (-939 (-225)))) (-15 -2392 ((-939 (-225)) (-939 (-225)))) (-15 -2401 ((-640 (-640 (-225))) (-563))) (-15 -2413 ((-640 (-939 (-225))) (-939 (-225)) (-939 (-225)) (-939 (-225)) (-225) (-640 (-640 (-225))))))) (T -1204))
+((-2413 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-640 (-640 (-225)))) (-5 *4 (-225)) (-5 *2 (-640 (-939 *4))) (-5 *1 (-1204)) (-5 *3 (-939 *4)))) (-2401 (*1 *2 *3) (-12 (-5 *3 (-563)) (-5 *2 (-640 (-640 (-225)))) (-5 *1 (-1204)))) (-2392 (*1 *2 *2) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204)))) (-4111 (*1 *2 *2 *2) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204)))) (-4121 (*1 *2 *3 *3) (-12 (-5 *3 (-939 (-225))) (-5 *2 (-225)) (-5 *1 (-1204)))) (-1825 (*1 *2 *2 *2) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204)))) (-1813 (*1 *2 *2 *2) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-939 (-225))) (-5 *3 (-225)) (-5 *1 (-1204)))) (-3018 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204)) (-5 *3 (-225)))))
+(-10 -7 (-15 -3018 ((-939 (-225)) (-225) (-225) (-225) (-225))) (-15 * ((-939 (-225)) (-225) (-939 (-225)))) (-15 -1813 ((-939 (-225)) (-939 (-225)) (-939 (-225)))) (-15 -1825 ((-939 (-225)) (-939 (-225)) (-939 (-225)))) (-15 -4121 ((-225) (-939 (-225)) (-939 (-225)))) (-15 -4111 ((-939 (-225)) (-939 (-225)) (-939 (-225)))) (-15 -2392 ((-939 (-225)) (-939 (-225)))) (-15 -2401 ((-640 (-640 (-225))) (-563))) (-15 -2413 ((-640 (-939 (-225))) (-939 (-225)) (-939 (-225)) (-939 (-225)) (-225) (-640 (-640 (-225))))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-2255 ((|#1| $ (-767)) 13)) (-3419 (((-767) $) 12)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-1692 (((-954 |#1|) $) 10) (($ (-954 |#1|)) 9) (((-858) $) 23 (|has| |#1| (-610 (-858))))) (-1718 (((-112) $ $) 16 (|has| |#1| (-1093)))))
+(((-1205 |#1|) (-13 (-490 (-954 |#1|)) (-10 -8 (-15 -2255 (|#1| $ (-767))) (-15 -3419 ((-767) $)) (IF (|has| |#1| (-610 (-858))) (-6 (-610 (-858))) |%noBranch|) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|))) (-1208)) (T -1205))
+((-2255 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *1 (-1205 *2)) (-4 *2 (-1208)))) (-3419 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-1205 *3)) (-4 *3 (-1208)))))
+(-13 (-490 (-954 |#1|)) (-10 -8 (-15 -2255 (|#1| $ (-767))) (-15 -3419 ((-767) $)) (IF (|has| |#1| (-610 (-858))) (-6 (-610 (-858))) |%noBranch|) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|)))
+((-2447 (((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|)) (-563)) 80)) (-2424 (((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|))) 74)) (-2436 (((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|))) 59)))
+(((-1206 |#1|) (-10 -7 (-15 -2424 ((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|)))) (-15 -2436 ((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|)))) (-15 -2447 ((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|)) (-563)))) (-349)) (T -1206))
+((-2447 (*1 *2 *3 *4) (-12 (-5 *4 (-563)) (-4 *5 (-349)) (-5 *2 (-418 (-1165 (-1165 *5)))) (-5 *1 (-1206 *5)) (-5 *3 (-1165 (-1165 *5))))) (-2436 (*1 *2 *3) (-12 (-4 *4 (-349)) (-5 *2 (-418 (-1165 (-1165 *4)))) (-5 *1 (-1206 *4)) (-5 *3 (-1165 (-1165 *4))))) (-2424 (*1 *2 *3) (-12 (-4 *4 (-349)) (-5 *2 (-418 (-1165 (-1165 *4)))) (-5 *1 (-1206 *4)) (-5 *3 (-1165 (-1165 *4))))))
+(-10 -7 (-15 -2424 ((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|)))) (-15 -2436 ((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|)))) (-15 -2447 ((-418 (-1165 (-1165 |#1|))) (-1165 (-1165 |#1|)) (-563))))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 9) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-1207) (-1076)) (T -1207))
NIL
(-1076)
@@ -4958,329 +4958,329 @@ NIL
(((-1208) (-140)) (T -1208))
NIL
(-13 (-10 -7 (-6 -1370)))
-((-4270 (((-112)) 14)) (-2132 (((-1262) (-640 |#1|) (-640 |#1|)) 18) (((-1262) (-640 |#1|)) 19)) (-2581 (((-112) |#1| |#1|) 31 (|has| |#1| (-846)))) (-2382 (((-112) |#1| |#1| (-1 (-112) |#1| |#1|)) 26) (((-3 (-112) "failed") |#1| |#1|) 24)) (-4359 ((|#1| (-640 |#1|)) 32 (|has| |#1| (-846))) ((|#1| (-640 |#1|) (-1 (-112) |#1| |#1|)) 27)) (-2545 (((-2 (|:| -3244 (-640 |#1|)) (|:| -3289 (-640 |#1|)))) 16)))
-(((-1209 |#1|) (-10 -7 (-15 -2132 ((-1262) (-640 |#1|))) (-15 -2132 ((-1262) (-640 |#1|) (-640 |#1|))) (-15 -2545 ((-2 (|:| -3244 (-640 |#1|)) (|:| -3289 (-640 |#1|))))) (-15 -2382 ((-3 (-112) "failed") |#1| |#1|)) (-15 -2382 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -4359 (|#1| (-640 |#1|) (-1 (-112) |#1| |#1|))) (-15 -4270 ((-112))) (IF (|has| |#1| (-846)) (PROGN (-15 -4359 (|#1| (-640 |#1|))) (-15 -2581 ((-112) |#1| |#1|))) |%noBranch|)) (-1093)) (T -1209))
-((-2581 (*1 *2 *3 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-846)) (-4 *3 (-1093)))) (-4359 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-1093)) (-4 *2 (-846)) (-5 *1 (-1209 *2)))) (-4270 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-1093)))) (-4359 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1209 *2)) (-4 *2 (-1093)))) (-2382 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1093)) (-5 *2 (-112)) (-5 *1 (-1209 *3)))) (-2382 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-1093)))) (-2545 (*1 *2) (-12 (-5 *2 (-2 (|:| -3244 (-640 *3)) (|:| -3289 (-640 *3)))) (-5 *1 (-1209 *3)) (-4 *3 (-1093)))) (-2132 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-1093)) (-5 *2 (-1262)) (-5 *1 (-1209 *4)))) (-2132 (*1 *2 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-1093)) (-5 *2 (-1262)) (-5 *1 (-1209 *4)))))
-(-10 -7 (-15 -2132 ((-1262) (-640 |#1|))) (-15 -2132 ((-1262) (-640 |#1|) (-640 |#1|))) (-15 -2545 ((-2 (|:| -3244 (-640 |#1|)) (|:| -3289 (-640 |#1|))))) (-15 -2382 ((-3 (-112) "failed") |#1| |#1|)) (-15 -2382 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -4359 (|#1| (-640 |#1|) (-1 (-112) |#1| |#1|))) (-15 -4270 ((-112))) (IF (|has| |#1| (-846)) (PROGN (-15 -4359 (|#1| (-640 |#1|))) (-15 -2581 ((-112) |#1| |#1|))) |%noBranch|))
-((-1350 (((-1262) (-640 (-1169)) (-640 (-1169))) 13) (((-1262) (-640 (-1169))) 11)) (-3256 (((-1262)) 14)) (-3255 (((-2 (|:| -3289 (-640 (-1169))) (|:| -3244 (-640 (-1169))))) 18)))
-(((-1210) (-10 -7 (-15 -1350 ((-1262) (-640 (-1169)))) (-15 -1350 ((-1262) (-640 (-1169)) (-640 (-1169)))) (-15 -3255 ((-2 (|:| -3289 (-640 (-1169))) (|:| -3244 (-640 (-1169)))))) (-15 -3256 ((-1262))))) (T -1210))
-((-3256 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1210)))) (-3255 (*1 *2) (-12 (-5 *2 (-2 (|:| -3289 (-640 (-1169))) (|:| -3244 (-640 (-1169))))) (-5 *1 (-1210)))) (-1350 (*1 *2 *3 *3) (-12 (-5 *3 (-640 (-1169))) (-5 *2 (-1262)) (-5 *1 (-1210)))) (-1350 (*1 *2 *3) (-12 (-5 *3 (-640 (-1169))) (-5 *2 (-1262)) (-5 *1 (-1210)))))
-(-10 -7 (-15 -1350 ((-1262) (-640 (-1169)))) (-15 -1350 ((-1262) (-640 (-1169)) (-640 (-1169)))) (-15 -3255 ((-2 (|:| -3289 (-640 (-1169))) (|:| -3244 (-640 (-1169)))))) (-15 -3256 ((-1262))))
-((-4335 (($ $) 17)) (-2468 (((-112) $) 24)))
-(((-1211 |#1|) (-10 -8 (-15 -4335 (|#1| |#1|)) (-15 -2468 ((-112) |#1|))) (-1212)) (T -1211))
-NIL
-(-10 -8 (-15 -4335 (|#1| |#1|)) (-15 -2468 ((-112) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-1495 (((-3 $ "failed") $ $) 19)) (-4335 (($ $) 52)) (-3205 (((-418 $) $) 53)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-2468 (((-112) $) 54)) (-3827 (((-112) $) 31)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-2174 (((-418 $) $) 51)) (-3008 (((-3 $ "failed") $ $) 43)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 40)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
+((-2492 (((-112)) 14)) (-2457 (((-1262) (-640 |#1|) (-640 |#1|)) 18) (((-1262) (-640 |#1|)) 19)) (-2514 (((-112) |#1| |#1|) 31 (|has| |#1| (-846)))) (-2481 (((-112) |#1| |#1| (-1 (-112) |#1| |#1|)) 26) (((-3 (-112) "failed") |#1| |#1|) 24)) (-2502 ((|#1| (-640 |#1|)) 32 (|has| |#1| (-846))) ((|#1| (-640 |#1|) (-1 (-112) |#1| |#1|)) 27)) (-2469 (((-2 (|:| -3792 (-640 |#1|)) (|:| -3781 (-640 |#1|)))) 16)))
+(((-1209 |#1|) (-10 -7 (-15 -2457 ((-1262) (-640 |#1|))) (-15 -2457 ((-1262) (-640 |#1|) (-640 |#1|))) (-15 -2469 ((-2 (|:| -3792 (-640 |#1|)) (|:| -3781 (-640 |#1|))))) (-15 -2481 ((-3 (-112) "failed") |#1| |#1|)) (-15 -2481 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -2502 (|#1| (-640 |#1|) (-1 (-112) |#1| |#1|))) (-15 -2492 ((-112))) (IF (|has| |#1| (-846)) (PROGN (-15 -2502 (|#1| (-640 |#1|))) (-15 -2514 ((-112) |#1| |#1|))) |%noBranch|)) (-1093)) (T -1209))
+((-2514 (*1 *2 *3 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-846)) (-4 *3 (-1093)))) (-2502 (*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-4 *2 (-1093)) (-4 *2 (-846)) (-5 *1 (-1209 *2)))) (-2492 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-1093)))) (-2502 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1209 *2)) (-4 *2 (-1093)))) (-2481 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1093)) (-5 *2 (-112)) (-5 *1 (-1209 *3)))) (-2481 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-1093)))) (-2469 (*1 *2) (-12 (-5 *2 (-2 (|:| -3792 (-640 *3)) (|:| -3781 (-640 *3)))) (-5 *1 (-1209 *3)) (-4 *3 (-1093)))) (-2457 (*1 *2 *3 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-1093)) (-5 *2 (-1262)) (-5 *1 (-1209 *4)))) (-2457 (*1 *2 *3) (-12 (-5 *3 (-640 *4)) (-4 *4 (-1093)) (-5 *2 (-1262)) (-5 *1 (-1209 *4)))))
+(-10 -7 (-15 -2457 ((-1262) (-640 |#1|))) (-15 -2457 ((-1262) (-640 |#1|) (-640 |#1|))) (-15 -2469 ((-2 (|:| -3792 (-640 |#1|)) (|:| -3781 (-640 |#1|))))) (-15 -2481 ((-3 (-112) "failed") |#1| |#1|)) (-15 -2481 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -2502 (|#1| (-640 |#1|) (-1 (-112) |#1| |#1|))) (-15 -2492 ((-112))) (IF (|has| |#1| (-846)) (PROGN (-15 -2502 (|#1| (-640 |#1|))) (-15 -2514 ((-112) |#1| |#1|))) |%noBranch|))
+((-2527 (((-1262) (-640 (-1169)) (-640 (-1169))) 13) (((-1262) (-640 (-1169))) 11)) (-2549 (((-1262)) 14)) (-2539 (((-2 (|:| -3781 (-640 (-1169))) (|:| -3792 (-640 (-1169))))) 18)))
+(((-1210) (-10 -7 (-15 -2527 ((-1262) (-640 (-1169)))) (-15 -2527 ((-1262) (-640 (-1169)) (-640 (-1169)))) (-15 -2539 ((-2 (|:| -3781 (-640 (-1169))) (|:| -3792 (-640 (-1169)))))) (-15 -2549 ((-1262))))) (T -1210))
+((-2549 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1210)))) (-2539 (*1 *2) (-12 (-5 *2 (-2 (|:| -3781 (-640 (-1169))) (|:| -3792 (-640 (-1169))))) (-5 *1 (-1210)))) (-2527 (*1 *2 *3 *3) (-12 (-5 *3 (-640 (-1169))) (-5 *2 (-1262)) (-5 *1 (-1210)))) (-2527 (*1 *2 *3) (-12 (-5 *3 (-640 (-1169))) (-5 *2 (-1262)) (-5 *1 (-1210)))))
+(-10 -7 (-15 -2527 ((-1262) (-640 (-1169)))) (-15 -2527 ((-1262) (-640 (-1169)) (-640 (-1169)))) (-15 -2539 ((-2 (|:| -3781 (-640 (-1169))) (|:| -3792 (-640 (-1169)))))) (-15 -2549 ((-1262))))
+((-1798 (($ $) 17)) (-2560 (((-112) $) 24)))
+(((-1211 |#1|) (-10 -8 (-15 -1798 (|#1| |#1|)) (-15 -2560 ((-112) |#1|))) (-1212)) (T -1211))
+NIL
+(-10 -8 (-15 -1798 (|#1| |#1|)) (-15 -2560 ((-112) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-3905 (((-3 $ "failed") $ $) 19)) (-1798 (($ $) 52)) (-2802 (((-418 $) $) 53)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-2560 (((-112) $) 54)) (-3401 (((-112) $) 31)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-2173 (((-418 $) $) 51)) (-3012 (((-3 $ "failed") $ $) 43)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44)) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 40)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24)))
(((-1212) (-140)) (T -1212))
-((-2468 (*1 *2 *1) (-12 (-4 *1 (-1212)) (-5 *2 (-112)))) (-3205 (*1 *2 *1) (-12 (-5 *2 (-418 *1)) (-4 *1 (-1212)))) (-4335 (*1 *1 *1) (-4 *1 (-1212))) (-2174 (*1 *2 *1) (-12 (-5 *2 (-418 *1)) (-4 *1 (-1212)))))
-(-13 (-452) (-10 -8 (-15 -2468 ((-112) $)) (-15 -3205 ((-418 $) $)) (-15 -4335 ($ $)) (-15 -2174 ((-418 $) $))))
+((-2560 (*1 *2 *1) (-12 (-4 *1 (-1212)) (-5 *2 (-112)))) (-2802 (*1 *2 *1) (-12 (-5 *2 (-418 *1)) (-4 *1 (-1212)))) (-1798 (*1 *1 *1) (-4 *1 (-1212))) (-2173 (*1 *2 *1) (-12 (-5 *2 (-418 *1)) (-4 *1 (-1212)))))
+(-13 (-452) (-10 -8 (-15 -2560 ((-112) $)) (-15 -2802 ((-418 $) $)) (-15 -1798 ($ $)) (-15 -2173 ((-418 $) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-613 (-563)) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-290) . T) ((-452) . T) ((-555) . T) ((-643 $) . T) ((-713 $) . T) ((-722) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1677 (((-112) $ $) NIL)) (-3749 (((-767)) NIL)) (-4239 (($) NIL)) (-1691 (($) NIL)) (-3084 (($ $ $) NIL) (($) NIL T CONST)) (-1777 (($ $ $) NIL) (($) NIL T CONST)) (-1476 (((-917) $) NIL)) (-3573 (((-1151) $) NIL)) (-2555 (($ (-917)) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-3119 (($ $ $) NIL)) (-3109 (($ $ $) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)))
-(((-1213) (-13 (-840) (-10 -8 (-15 -3109 ($ $ $)) (-15 -3119 ($ $ $)) (-15 -4239 ($))))) (T -1213))
-((-3109 (*1 *1 *1 *1) (-5 *1 (-1213))) (-3119 (*1 *1 *1 *1) (-5 *1 (-1213))) (-4239 (*1 *1) (-5 *1 (-1213))))
-(-13 (-840) (-10 -8 (-15 -3109 ($ $ $)) (-15 -3119 ($ $ $)) (-15 -4239 ($))))
+((-1677 (((-112) $ $) NIL)) (-3750 (((-767)) NIL)) (-2569 (($) NIL)) (-1690 (($) NIL)) (-3088 (($ $ $) NIL) (($) NIL T CONST)) (-1776 (($ $ $) NIL) (($) NIL T CONST)) (-3990 (((-917) $) NIL)) (-3854 (((-1151) $) NIL)) (-2552 (($ (-917)) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-3123 (($ $ $) NIL)) (-3113 (($ $ $) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)))
+(((-1213) (-13 (-840) (-10 -8 (-15 -3113 ($ $ $)) (-15 -3123 ($ $ $)) (-15 -2569 ($))))) (T -1213))
+((-3113 (*1 *1 *1 *1) (-5 *1 (-1213))) (-3123 (*1 *1 *1 *1) (-5 *1 (-1213))) (-2569 (*1 *1) (-5 *1 (-1213))))
+(-13 (-840) (-10 -8 (-15 -3113 ($ $ $)) (-15 -3123 ($ $ $)) (-15 -2569 ($))))
((|NonNegativeInteger|) (COND ((< 16 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-1677 (((-112) $ $) NIL)) (-3749 (((-767)) NIL)) (-4239 (($) NIL)) (-1691 (($) NIL)) (-3084 (($ $ $) NIL) (($) NIL T CONST)) (-1777 (($ $ $) NIL) (($) NIL T CONST)) (-1476 (((-917) $) NIL)) (-3573 (((-1151) $) NIL)) (-2555 (($ (-917)) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-3119 (($ $ $) NIL)) (-3109 (($ $ $) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)))
-(((-1214) (-13 (-840) (-10 -8 (-15 -3109 ($ $ $)) (-15 -3119 ($ $ $)) (-15 -4239 ($))))) (T -1214))
-((-3109 (*1 *1 *1 *1) (-5 *1 (-1214))) (-3119 (*1 *1 *1 *1) (-5 *1 (-1214))) (-4239 (*1 *1) (-5 *1 (-1214))))
-(-13 (-840) (-10 -8 (-15 -3109 ($ $ $)) (-15 -3119 ($ $ $)) (-15 -4239 ($))))
+((-1677 (((-112) $ $) NIL)) (-3750 (((-767)) NIL)) (-2569 (($) NIL)) (-1690 (($) NIL)) (-3088 (($ $ $) NIL) (($) NIL T CONST)) (-1776 (($ $ $) NIL) (($) NIL T CONST)) (-3990 (((-917) $) NIL)) (-3854 (((-1151) $) NIL)) (-2552 (($ (-917)) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-3123 (($ $ $) NIL)) (-3113 (($ $ $) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)))
+(((-1214) (-13 (-840) (-10 -8 (-15 -3113 ($ $ $)) (-15 -3123 ($ $ $)) (-15 -2569 ($))))) (T -1214))
+((-3113 (*1 *1 *1 *1) (-5 *1 (-1214))) (-3123 (*1 *1 *1 *1) (-5 *1 (-1214))) (-2569 (*1 *1) (-5 *1 (-1214))))
+(-13 (-840) (-10 -8 (-15 -3113 ($ $ $)) (-15 -3123 ($ $ $)) (-15 -2569 ($))))
((|NonNegativeInteger|) (COND ((< 32 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-1677 (((-112) $ $) NIL)) (-3749 (((-767)) NIL)) (-4239 (($) NIL)) (-1691 (($) NIL)) (-3084 (($ $ $) NIL) (($) NIL T CONST)) (-1777 (($ $ $) NIL) (($) NIL T CONST)) (-1476 (((-917) $) NIL)) (-3573 (((-1151) $) NIL)) (-2555 (($ (-917)) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) NIL)) (-3119 (($ $ $) NIL)) (-3109 (($ $ $) NIL)) (-1778 (((-112) $ $) NIL)) (-1756 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL)) (-1744 (((-112) $ $) NIL)))
-(((-1215) (-13 (-840) (-10 -8 (-15 -3109 ($ $ $)) (-15 -3119 ($ $ $)) (-15 -4239 ($))))) (T -1215))
-((-3109 (*1 *1 *1 *1) (-5 *1 (-1215))) (-3119 (*1 *1 *1 *1) (-5 *1 (-1215))) (-4239 (*1 *1) (-5 *1 (-1215))))
-(-13 (-840) (-10 -8 (-15 -3109 ($ $ $)) (-15 -3119 ($ $ $)) (-15 -4239 ($))))
+((-1677 (((-112) $ $) NIL)) (-3750 (((-767)) NIL)) (-2569 (($) NIL)) (-1690 (($) NIL)) (-3088 (($ $ $) NIL) (($) NIL T CONST)) (-1776 (($ $ $) NIL) (($) NIL T CONST)) (-3990 (((-917) $) NIL)) (-3854 (((-1151) $) NIL)) (-2552 (($ (-917)) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) NIL)) (-3123 (($ $ $) NIL)) (-3113 (($ $ $) NIL)) (-1779 (((-112) $ $) NIL)) (-1754 (((-112) $ $) NIL)) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL)) (-1743 (((-112) $ $) NIL)))
+(((-1215) (-13 (-840) (-10 -8 (-15 -3113 ($ $ $)) (-15 -3123 ($ $ $)) (-15 -2569 ($))))) (T -1215))
+((-3113 (*1 *1 *1 *1) (-5 *1 (-1215))) (-3123 (*1 *1 *1 *1) (-5 *1 (-1215))) (-2569 (*1 *1) (-5 *1 (-1215))))
+(-13 (-840) (-10 -8 (-15 -3113 ($ $ $)) (-15 -3123 ($ $ $)) (-15 -2569 ($))))
((|NonNegativeInteger|) (COND ((< 8 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-2240 (((-1221 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1221 |#1| |#3| |#5|)) 23)))
-(((-1216 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2240 ((-1221 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1221 |#1| |#3| |#5|)))) (-1045) (-1045) (-1169) (-1169) |#1| |#2|) (T -1216))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1221 *5 *7 *9)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-14 *7 (-1169)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1221 *6 *8 *10)) (-5 *1 (-1216 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1169)))))
-(-10 -7 (-15 -2240 ((-1221 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1221 |#1| |#3| |#5|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-2606 (((-640 (-1075)) $) 77)) (-2518 (((-1169) $) 106)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-4223 (($ $) 55 (|has| |#1| (-555)))) (-3156 (((-112) $) 57 (|has| |#1| (-555)))) (-2421 (($ $ (-563)) 101) (($ $ (-563) (-563)) 100)) (-1539 (((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $) 108)) (-1771 (($ $) 138 (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) 121 (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) 19)) (-4335 (($ $) 165 (|has| |#1| (-363)))) (-3205 (((-418 $) $) 166 (|has| |#1| (-363)))) (-2186 (($ $) 120 (|has| |#1| (-38 (-407 (-563)))))) (-1919 (((-112) $ $) 156 (|has| |#1| (-363)))) (-1748 (($ $) 137 (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) 122 (|has| |#1| (-38 (-407 (-563)))))) (-3045 (($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|)))) 176)) (-1794 (($ $) 136 (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) 123 (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) 17 T CONST)) (-3090 (($ $ $) 160 (|has| |#1| (-363)))) (-2751 (($ $) 63)) (-3400 (((-3 $ "failed") $) 33)) (-4064 (((-407 (-948 |#1|)) $ (-563)) 174 (|has| |#1| (-555))) (((-407 (-948 |#1|)) $ (-563) (-563)) 173 (|has| |#1| (-555)))) (-3050 (($ $ $) 159 (|has| |#1| (-363)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 154 (|has| |#1| (-363)))) (-2468 (((-112) $) 167 (|has| |#1| (-363)))) (-2788 (((-112) $) 76)) (-2180 (($) 148 (|has| |#1| (-38 (-407 (-563)))))) (-3254 (((-563) $) 103) (((-563) $ (-563)) 102)) (-3827 (((-112) $) 31)) (-1645 (($ $ (-563)) 119 (|has| |#1| (-38 (-407 (-563)))))) (-1351 (($ $ (-917)) 104)) (-2831 (($ (-1 |#1| (-563)) $) 175)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 163 (|has| |#1| (-363)))) (-3920 (((-112) $) 65)) (-2588 (($ |#1| (-563)) 64) (($ $ (-1075) (-563)) 79) (($ $ (-640 (-1075)) (-640 (-563))) 78)) (-2240 (($ (-1 |#1| |#1|) $) 66)) (-4371 (($ $) 145 (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) 68)) (-2726 ((|#1| $) 69)) (-3513 (($ (-640 $)) 152 (|has| |#1| (-363))) (($ $ $) 151 (|has| |#1| (-363)))) (-3573 (((-1151) $) 9)) (-2688 (($ $) 168 (|has| |#1| (-363)))) (-3698 (($ $) 172 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 171 (-4032 (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-955)) (|has| |#1| (-1193)) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-15 -2606 ((-640 (-1169)) |#1|))) (|has| |#1| (-15 -3698 (|#1| |#1| (-1169)))) (|has| |#1| (-38 (-407 (-563)))))))) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 153 (|has| |#1| (-363)))) (-3548 (($ (-640 $)) 150 (|has| |#1| (-363))) (($ $ $) 149 (|has| |#1| (-363)))) (-2174 (((-418 $) $) 164 (|has| |#1| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 161 (|has| |#1| (-363)))) (-3320 (($ $ (-563)) 98)) (-3008 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 155 (|has| |#1| (-363)))) (-3368 (($ $) 146 (|has| |#1| (-38 (-407 (-563)))))) (-1540 (((-1149 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-563)))))) (-2628 (((-767) $) 157 (|has| |#1| (-363)))) (-2309 ((|#1| $ (-563)) 107) (($ $ $) 84 (|has| (-563) (-1105)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 158 (|has| |#1| (-363)))) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) 92 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-1169) (-767)) 91 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169))) 90 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-1169)) 89 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-767)) 87 (|has| |#1| (-15 * (|#1| (-563) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (-4167 (((-563) $) 67)) (-1806 (($ $) 135 (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) 124 (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) 134 (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) 125 (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) 133 (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) 126 (|has| |#1| (-38 (-407 (-563)))))) (-1741 (($ $) 75)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 50 (|has| |#1| (-172))) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555)))) (-4319 ((|#1| $ (-563)) 62)) (-2779 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-1675 (((-767)) 28)) (-3408 ((|#1| $) 105)) (-1840 (($ $) 144 (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) 132 (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) 56 (|has| |#1| (-555)))) (-1817 (($ $) 143 (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) 131 (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) 142 (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) 130 (|has| |#1| (-38 (-407 (-563)))))) (-1403 ((|#1| $ (-563)) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-563)))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-1311 (($ $) 141 (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) 129 (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) 140 (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) 128 (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) 139 (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) 127 (|has| |#1| (-38 (-407 (-563)))))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) 96 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-1169) (-767)) 95 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169))) 94 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-1169)) 93 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-767)) 88 (|has| |#1| (-15 * (|#1| (-563) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (-1718 (((-112) $ $) 6)) (-1837 (($ $ |#1|) 61 (|has| |#1| (-363))) (($ $ $) 170 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 169 (|has| |#1| (-363))) (($ $ $) 147 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 118 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
+((-2238 (((-1221 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1221 |#1| |#3| |#5|)) 23)))
+(((-1216 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2238 ((-1221 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1221 |#1| |#3| |#5|)))) (-1045) (-1045) (-1169) (-1169) |#1| |#2|) (T -1216))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1221 *5 *7 *9)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-14 *7 (-1169)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1221 *6 *8 *10)) (-5 *1 (-1216 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1169)))))
+(-10 -7 (-15 -2238 ((-1221 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1221 |#1| |#3| |#5|))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-2605 (((-640 (-1075)) $) 77)) (-2517 (((-1169) $) 106)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-3231 (($ $) 55 (|has| |#1| (-555)))) (-3211 (((-112) $) 57 (|has| |#1| (-555)))) (-1763 (($ $ (-563)) 101) (($ $ (-563) (-563)) 100)) (-1787 (((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $) 108)) (-1770 (($ $) 138 (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) 121 (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) 19)) (-1798 (($ $) 165 (|has| |#1| (-363)))) (-2802 (((-418 $) $) 166 (|has| |#1| (-363)))) (-2185 (($ $) 120 (|has| |#1| (-38 (-407 (-563)))))) (-2003 (((-112) $ $) 156 (|has| |#1| (-363)))) (-1747 (($ $) 137 (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) 122 (|has| |#1| (-38 (-407 (-563)))))) (-3049 (($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|)))) 176)) (-1793 (($ $) 136 (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) 123 (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) 17 T CONST)) (-3094 (($ $ $) 160 (|has| |#1| (-363)))) (-2750 (($ $) 63)) (-3951 (((-3 $ "failed") $) 33)) (-2580 (((-407 (-948 |#1|)) $ (-563)) 174 (|has| |#1| (-555))) (((-407 (-948 |#1|)) $ (-563) (-563)) 173 (|has| |#1| (-555)))) (-3054 (($ $ $) 159 (|has| |#1| (-363)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 154 (|has| |#1| (-363)))) (-2560 (((-112) $) 167 (|has| |#1| (-363)))) (-3381 (((-112) $) 76)) (-2179 (($) 148 (|has| |#1| (-38 (-407 (-563)))))) (-1775 (((-563) $) 103) (((-563) $ (-563)) 102)) (-3401 (((-112) $) 31)) (-2172 (($ $ (-563)) 119 (|has| |#1| (-38 (-407 (-563)))))) (-1821 (($ $ (-917)) 104)) (-2072 (($ (-1 |#1| (-563)) $) 175)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 163 (|has| |#1| (-363)))) (-3805 (((-112) $) 65)) (-2587 (($ |#1| (-563)) 64) (($ $ (-1075) (-563)) 79) (($ $ (-640 (-1075)) (-640 (-563))) 78)) (-2238 (($ (-1 |#1| |#1|) $) 66)) (-4372 (($ $) 145 (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) 68)) (-2725 ((|#1| $) 69)) (-3517 (($ (-640 $)) 152 (|has| |#1| (-363))) (($ $ $) 151 (|has| |#1| (-363)))) (-3854 (((-1151) $) 9)) (-2687 (($ $) 168 (|has| |#1| (-363)))) (-2062 (($ $) 172 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 171 (-4034 (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-955)) (|has| |#1| (-1193)) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-15 -2605 ((-640 (-1169)) |#1|))) (|has| |#1| (-15 -2062 (|#1| |#1| (-1169)))) (|has| |#1| (-38 (-407 (-563)))))))) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 153 (|has| |#1| (-363)))) (-3551 (($ (-640 $)) 150 (|has| |#1| (-363))) (($ $ $) 149 (|has| |#1| (-363)))) (-2173 (((-418 $) $) 164 (|has| |#1| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 161 (|has| |#1| (-363)))) (-1751 (($ $ (-563)) 98)) (-3012 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 155 (|has| |#1| (-363)))) (-3372 (($ $) 146 (|has| |#1| (-38 (-407 (-563)))))) (-1542 (((-1149 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-563)))))) (-1993 (((-767) $) 157 (|has| |#1| (-363)))) (-2308 ((|#1| $ (-563)) 107) (($ $ $) 84 (|has| (-563) (-1105)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 158 (|has| |#1| (-363)))) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) 92 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-1169) (-767)) 91 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169))) 90 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-1169)) 89 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-767)) 87 (|has| |#1| (-15 * (|#1| (-563) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (-3871 (((-563) $) 67)) (-1805 (($ $) 135 (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) 124 (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) 134 (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) 125 (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) 133 (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) 126 (|has| |#1| (-38 (-407 (-563)))))) (-3369 (($ $) 75)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 50 (|has| |#1| (-172))) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555)))) (-3244 ((|#1| $ (-563)) 62)) (-2047 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-3914 (((-767)) 28)) (-3412 ((|#1| $) 105)) (-1839 (($ $) 144 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) 132 (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) 56 (|has| |#1| (-555)))) (-1816 (($ $) 143 (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) 131 (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) 142 (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) 130 (|has| |#1| (-38 (-407 (-563)))))) (-1402 ((|#1| $ (-563)) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-563)))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-1311 (($ $) 141 (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) 129 (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) 140 (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) 128 (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) 139 (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) 127 (|has| |#1| (-38 (-407 (-563)))))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) 96 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-1169) (-767)) 95 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169))) 94 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-1169)) 93 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-767)) 88 (|has| |#1| (-15 * (|#1| (-563) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (-1718 (((-112) $ $) 6)) (-1836 (($ $ |#1|) 61 (|has| |#1| (-363))) (($ $ $) 170 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 169 (|has| |#1| (-363))) (($ $ $) 147 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 118 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
(((-1217 |#1|) (-140) (-1045)) (T -1217))
-((-3045 (*1 *1 *2) (-12 (-5 *2 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *3)))) (-4 *3 (-1045)) (-4 *1 (-1217 *3)))) (-2831 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-563))) (-4 *1 (-1217 *3)) (-4 *3 (-1045)))) (-4064 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-1217 *4)) (-4 *4 (-1045)) (-4 *4 (-555)) (-5 *2 (-407 (-948 *4))))) (-4064 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-4 *1 (-1217 *4)) (-4 *4 (-1045)) (-4 *4 (-555)) (-5 *2 (-407 (-948 *4))))) (-3698 (*1 *1 *1) (-12 (-4 *1 (-1217 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563)))))) (-3698 (*1 *1 *1 *2) (-4032 (-12 (-5 *2 (-1169)) (-4 *1 (-1217 *3)) (-4 *3 (-1045)) (-12 (-4 *3 (-29 (-563))) (-4 *3 (-955)) (-4 *3 (-1193)) (-4 *3 (-38 (-407 (-563)))))) (-12 (-5 *2 (-1169)) (-4 *1 (-1217 *3)) (-4 *3 (-1045)) (-12 (|has| *3 (-15 -2606 ((-640 *2) *3))) (|has| *3 (-15 -3698 (*3 *3 *2))) (-4 *3 (-38 (-407 (-563)))))))))
-(-13 (-1235 |t#1| (-563)) (-10 -8 (-15 -3045 ($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |t#1|))))) (-15 -2831 ($ (-1 |t#1| (-563)) $)) (IF (|has| |t#1| (-555)) (PROGN (-15 -4064 ((-407 (-948 |t#1|)) $ (-563))) (-15 -4064 ((-407 (-948 |t#1|)) $ (-563) (-563)))) |%noBranch|) (IF (|has| |t#1| (-38 (-407 (-563)))) (PROGN (-15 -3698 ($ $)) (IF (|has| |t#1| (-15 -3698 (|t#1| |t#1| (-1169)))) (IF (|has| |t#1| (-15 -2606 ((-640 (-1169)) |t#1|))) (-15 -3698 ($ $ (-1169))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1193)) (IF (|has| |t#1| (-955)) (IF (|has| |t#1| (-29 (-563))) (-15 -3698 ($ $ (-1169))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-998)) (-6 (-1193))) |%noBranch|) (IF (|has| |t#1| (-363)) (-6 (-363)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-563)) . T) ((-25) . T) ((-38 #1=(-407 (-563))) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-35) |has| |#1| (-38 (-407 (-563)))) ((-95) |has| |#1| (-38 (-407 (-563)))) ((-102) . T) ((-111 #1# #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-610 (-858)) . T) ((-172) -4032 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-233) |has| |#1| (-15 * (|#1| (-563) |#1|))) ((-243) |has| |#1| (-363)) ((-284) |has| |#1| (-38 (-407 (-563)))) ((-286 $ $) |has| (-563) (-1105)) ((-290) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-307) |has| |#1| (-363)) ((-363) |has| |#1| (-363)) ((-452) |has| |#1| (-363)) ((-493) |has| |#1| (-38 (-407 (-563)))) ((-555) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-643 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-722) . T) ((-896 (-1169)) -12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))) ((-969 |#1| #0# (-1075)) . T) ((-916) |has| |#1| (-363)) ((-998) |has| |#1| (-38 (-407 (-563)))) ((-1051 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-1051 |#1|) . T) ((-1051 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1193) |has| |#1| (-38 (-407 (-563)))) ((-1196) |has| |#1| (-38 (-407 (-563)))) ((-1212) |has| |#1| (-363)) ((-1235 |#1| #0#) . T))
-((-3411 (((-112) $) 12)) (-2131 (((-3 |#3| "failed") $) 17) (((-3 (-1169) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 (-563) "failed") $) NIL)) (-2058 ((|#3| $) 14) (((-1169) $) NIL) (((-407 (-563)) $) NIL) (((-563) $) NIL)))
-(((-1218 |#1| |#2| |#3|) (-10 -8 (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2131 ((-3 (-1169) "failed") |#1|)) (-15 -2058 ((-1169) |#1|)) (-15 -2131 ((-3 |#3| "failed") |#1|)) (-15 -2058 (|#3| |#1|)) (-15 -3411 ((-112) |#1|))) (-1219 |#2| |#3|) (-1045) (-1248 |#2|)) (T -1218))
-NIL
-(-10 -8 (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2131 ((-3 (-1169) "failed") |#1|)) (-15 -2058 ((-1169) |#1|)) (-15 -2131 ((-3 |#3| "failed") |#1|)) (-15 -2058 (|#3| |#1|)) (-15 -3411 ((-112) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-3401 ((|#2| $) 231 (-2190 (|has| |#2| (-307)) (|has| |#1| (-363))))) (-2606 (((-640 (-1075)) $) 77)) (-2518 (((-1169) $) 106)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-4223 (($ $) 55 (|has| |#1| (-555)))) (-3156 (((-112) $) 57 (|has| |#1| (-555)))) (-2421 (($ $ (-563)) 101) (($ $ (-563) (-563)) 100)) (-1539 (((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $) 108)) (-2084 ((|#2| $) 267)) (-3258 (((-3 |#2| "failed") $) 263)) (-2652 ((|#2| $) 264)) (-1771 (($ $) 138 (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) 121 (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) 19)) (-2424 (((-418 (-1165 $)) (-1165 $)) 240 (-2190 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-4335 (($ $) 165 (|has| |#1| (-363)))) (-3205 (((-418 $) $) 166 (|has| |#1| (-363)))) (-2186 (($ $) 120 (|has| |#1| (-38 (-407 (-563)))))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 237 (-2190 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-1919 (((-112) $ $) 156 (|has| |#1| (-363)))) (-1748 (($ $) 137 (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) 122 (|has| |#1| (-38 (-407 (-563)))))) (-1857 (((-563) $) 249 (-2190 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-3045 (($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|)))) 176)) (-1794 (($ $) 136 (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) 123 (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) 17 T CONST)) (-2131 (((-3 |#2| "failed") $) 270) (((-3 (-563) "failed") $) 260 (-2190 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-3 (-407 (-563)) "failed") $) 258 (-2190 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-3 (-1169) "failed") $) 242 (-2190 (|has| |#2| (-1034 (-1169))) (|has| |#1| (-363))))) (-2058 ((|#2| $) 271) (((-563) $) 259 (-2190 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-407 (-563)) $) 257 (-2190 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-1169) $) 241 (-2190 (|has| |#2| (-1034 (-1169))) (|has| |#1| (-363))))) (-2457 (($ $) 266) (($ (-563) $) 265)) (-3090 (($ $ $) 160 (|has| |#1| (-363)))) (-2751 (($ $) 63)) (-2950 (((-684 |#2|) (-684 $)) 221 (|has| |#1| (-363))) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) 220 (|has| |#1| (-363))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 219 (-2190 (|has| |#2| (-636 (-563))) (|has| |#1| (-363)))) (((-684 (-563)) (-684 $)) 218 (-2190 (|has| |#2| (-636 (-563))) (|has| |#1| (-363))))) (-3400 (((-3 $ "failed") $) 33)) (-4064 (((-407 (-948 |#1|)) $ (-563)) 174 (|has| |#1| (-555))) (((-407 (-948 |#1|)) $ (-563) (-563)) 173 (|has| |#1| (-555)))) (-1691 (($) 233 (-2190 (|has| |#2| (-545)) (|has| |#1| (-363))))) (-3050 (($ $ $) 159 (|has| |#1| (-363)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 154 (|has| |#1| (-363)))) (-2468 (((-112) $) 167 (|has| |#1| (-363)))) (-3101 (((-112) $) 247 (-2190 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-2788 (((-112) $) 76)) (-2180 (($) 148 (|has| |#1| (-38 (-407 (-563)))))) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 225 (-2190 (|has| |#2| (-882 (-379))) (|has| |#1| (-363)))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 224 (-2190 (|has| |#2| (-882 (-563))) (|has| |#1| (-363))))) (-3254 (((-563) $) 103) (((-563) $ (-563)) 102)) (-3827 (((-112) $) 31)) (-2711 (($ $) 229 (|has| |#1| (-363)))) (-2143 ((|#2| $) 227 (|has| |#1| (-363)))) (-1645 (($ $ (-563)) 119 (|has| |#1| (-38 (-407 (-563)))))) (-2408 (((-3 $ "failed") $) 261 (-2190 (|has| |#2| (-1144)) (|has| |#1| (-363))))) (-1419 (((-112) $) 248 (-2190 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-1351 (($ $ (-917)) 104)) (-2831 (($ (-1 |#1| (-563)) $) 175)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 163 (|has| |#1| (-363)))) (-3920 (((-112) $) 65)) (-2588 (($ |#1| (-563)) 64) (($ $ (-1075) (-563)) 79) (($ $ (-640 (-1075)) (-640 (-563))) 78)) (-3084 (($ $ $) 251 (-2190 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1777 (($ $ $) 252 (-2190 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-2240 (($ (-1 |#1| |#1|) $) 66) (($ (-1 |#2| |#2|) $) 213 (|has| |#1| (-363)))) (-4371 (($ $) 145 (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) 68)) (-2726 ((|#1| $) 69)) (-3513 (($ (-640 $)) 152 (|has| |#1| (-363))) (($ $ $) 151 (|has| |#1| (-363)))) (-2660 (($ (-563) |#2|) 268)) (-3573 (((-1151) $) 9)) (-2688 (($ $) 168 (|has| |#1| (-363)))) (-3698 (($ $) 172 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 171 (-4032 (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-955)) (|has| |#1| (-1193)) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-15 -2606 ((-640 (-1169)) |#1|))) (|has| |#1| (-15 -3698 (|#1| |#1| (-1169)))) (|has| |#1| (-38 (-407 (-563)))))))) (-2523 (($) 262 (-2190 (|has| |#2| (-1144)) (|has| |#1| (-363))) CONST)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 153 (|has| |#1| (-363)))) (-3548 (($ (-640 $)) 150 (|has| |#1| (-363))) (($ $ $) 149 (|has| |#1| (-363)))) (-4215 (($ $) 232 (-2190 (|has| |#2| (-307)) (|has| |#1| (-363))))) (-1583 ((|#2| $) 235 (-2190 (|has| |#2| (-545)) (|has| |#1| (-363))))) (-1876 (((-418 (-1165 $)) (-1165 $)) 238 (-2190 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-3116 (((-418 (-1165 $)) (-1165 $)) 239 (-2190 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-2174 (((-418 $) $) 164 (|has| |#1| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 161 (|has| |#1| (-363)))) (-3320 (($ $ (-563)) 98)) (-3008 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 155 (|has| |#1| (-363)))) (-3368 (($ $) 146 (|has| |#1| (-38 (-407 (-563)))))) (-1540 (((-1149 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-563))))) (($ $ (-1169) |#2|) 212 (-2190 (|has| |#2| (-514 (-1169) |#2|)) (|has| |#1| (-363)))) (($ $ (-640 (-1169)) (-640 |#2|)) 211 (-2190 (|has| |#2| (-514 (-1169) |#2|)) (|has| |#1| (-363)))) (($ $ (-640 (-294 |#2|))) 210 (-2190 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363)))) (($ $ (-294 |#2|)) 209 (-2190 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363)))) (($ $ |#2| |#2|) 208 (-2190 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363)))) (($ $ (-640 |#2|) (-640 |#2|)) 207 (-2190 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363))))) (-2628 (((-767) $) 157 (|has| |#1| (-363)))) (-2309 ((|#1| $ (-563)) 107) (($ $ $) 84 (|has| (-563) (-1105))) (($ $ |#2|) 206 (-2190 (|has| |#2| (-286 |#2| |#2|)) (|has| |#1| (-363))))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 158 (|has| |#1| (-363)))) (-4202 (($ $ (-1 |#2| |#2|)) 217 (|has| |#1| (-363))) (($ $ (-1 |#2| |#2|) (-767)) 216 (|has| |#1| (-363))) (($ $ (-767)) 87 (-4032 (-2190 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) 85 (-4032 (-2190 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) 92 (-4032 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|)))))) (($ $ (-1169) (-767)) 91 (-4032 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|)))))) (($ $ (-640 (-1169))) 90 (-4032 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|)))))) (($ $ (-1169)) 89 (-4032 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))))) (-1801 (($ $) 230 (|has| |#1| (-363)))) (-2154 ((|#2| $) 228 (|has| |#1| (-363)))) (-4167 (((-563) $) 67)) (-1806 (($ $) 135 (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) 124 (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) 134 (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) 125 (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) 133 (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) 126 (|has| |#1| (-38 (-407 (-563)))))) (-2220 (((-225) $) 246 (-2190 (|has| |#2| (-1018)) (|has| |#1| (-363)))) (((-379) $) 245 (-2190 (|has| |#2| (-1018)) (|has| |#1| (-363)))) (((-536) $) 244 (-2190 (|has| |#2| (-611 (-536))) (|has| |#1| (-363)))) (((-888 (-379)) $) 223 (-2190 (|has| |#2| (-611 (-888 (-379)))) (|has| |#1| (-363)))) (((-888 (-563)) $) 222 (-2190 (|has| |#2| (-611 (-888 (-563)))) (|has| |#1| (-363))))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) 236 (-2190 (-2190 (|has| $ (-145)) (|has| |#2| (-905))) (|has| |#1| (-363))))) (-1741 (($ $) 75)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 50 (|has| |#1| (-172))) (($ |#2|) 269) (($ (-1169)) 243 (-2190 (|has| |#2| (-1034 (-1169))) (|has| |#1| (-363)))) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555)))) (-4319 ((|#1| $ (-563)) 62)) (-2779 (((-3 $ "failed") $) 51 (-4032 (-2190 (-4032 (|has| |#2| (-145)) (-2190 (|has| $ (-145)) (|has| |#2| (-905)))) (|has| |#1| (-363))) (|has| |#1| (-145))))) (-1675 (((-767)) 28)) (-3408 ((|#1| $) 105)) (-4194 ((|#2| $) 234 (-2190 (|has| |#2| (-545)) (|has| |#1| (-363))))) (-1840 (($ $) 144 (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) 132 (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) 56 (|has| |#1| (-555)))) (-1817 (($ $) 143 (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) 131 (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) 142 (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) 130 (|has| |#1| (-38 (-407 (-563)))))) (-1403 ((|#1| $ (-563)) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-563)))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-1311 (($ $) 141 (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) 129 (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) 140 (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) 128 (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) 139 (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) 127 (|has| |#1| (-38 (-407 (-563)))))) (-2509 (($ $) 250 (-2190 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ (-1 |#2| |#2|)) 215 (|has| |#1| (-363))) (($ $ (-1 |#2| |#2|) (-767)) 214 (|has| |#1| (-363))) (($ $ (-767)) 88 (-4032 (-2190 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) 86 (-4032 (-2190 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) 96 (-4032 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|)))))) (($ $ (-1169) (-767)) 95 (-4032 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|)))))) (($ $ (-640 (-1169))) 94 (-4032 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|)))))) (($ $ (-1169)) 93 (-4032 (-2190 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))))) (-1778 (((-112) $ $) 254 (-2190 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1756 (((-112) $ $) 255 (-2190 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 253 (-2190 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1744 (((-112) $ $) 256 (-2190 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1837 (($ $ |#1|) 61 (|has| |#1| (-363))) (($ $ $) 170 (|has| |#1| (-363))) (($ |#2| |#2|) 226 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 169 (|has| |#1| (-363))) (($ $ $) 147 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 118 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ $ |#2|) 205 (|has| |#1| (-363))) (($ |#2| $) 204 (|has| |#1| (-363))) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
+((-3049 (*1 *1 *2) (-12 (-5 *2 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *3)))) (-4 *3 (-1045)) (-4 *1 (-1217 *3)))) (-2072 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-563))) (-4 *1 (-1217 *3)) (-4 *3 (-1045)))) (-2580 (*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-4 *1 (-1217 *4)) (-4 *4 (-1045)) (-4 *4 (-555)) (-5 *2 (-407 (-948 *4))))) (-2580 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-4 *1 (-1217 *4)) (-4 *4 (-1045)) (-4 *4 (-555)) (-5 *2 (-407 (-948 *4))))) (-2062 (*1 *1 *1) (-12 (-4 *1 (-1217 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563)))))) (-2062 (*1 *1 *1 *2) (-4034 (-12 (-5 *2 (-1169)) (-4 *1 (-1217 *3)) (-4 *3 (-1045)) (-12 (-4 *3 (-29 (-563))) (-4 *3 (-955)) (-4 *3 (-1193)) (-4 *3 (-38 (-407 (-563)))))) (-12 (-5 *2 (-1169)) (-4 *1 (-1217 *3)) (-4 *3 (-1045)) (-12 (|has| *3 (-15 -2605 ((-640 *2) *3))) (|has| *3 (-15 -2062 (*3 *3 *2))) (-4 *3 (-38 (-407 (-563)))))))))
+(-13 (-1235 |t#1| (-563)) (-10 -8 (-15 -3049 ($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |t#1|))))) (-15 -2072 ($ (-1 |t#1| (-563)) $)) (IF (|has| |t#1| (-555)) (PROGN (-15 -2580 ((-407 (-948 |t#1|)) $ (-563))) (-15 -2580 ((-407 (-948 |t#1|)) $ (-563) (-563)))) |%noBranch|) (IF (|has| |t#1| (-38 (-407 (-563)))) (PROGN (-15 -2062 ($ $)) (IF (|has| |t#1| (-15 -2062 (|t#1| |t#1| (-1169)))) (IF (|has| |t#1| (-15 -2605 ((-640 (-1169)) |t#1|))) (-15 -2062 ($ $ (-1169))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1193)) (IF (|has| |t#1| (-955)) (IF (|has| |t#1| (-29 (-563))) (-15 -2062 ($ $ (-1169))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-998)) (-6 (-1193))) |%noBranch|) (IF (|has| |t#1| (-363)) (-6 (-363)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-563)) . T) ((-25) . T) ((-38 #1=(-407 (-563))) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-35) |has| |#1| (-38 (-407 (-563)))) ((-95) |has| |#1| (-38 (-407 (-563)))) ((-102) . T) ((-111 #1# #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-610 (-858)) . T) ((-172) -4034 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-233) |has| |#1| (-15 * (|#1| (-563) |#1|))) ((-243) |has| |#1| (-363)) ((-284) |has| |#1| (-38 (-407 (-563)))) ((-286 $ $) |has| (-563) (-1105)) ((-290) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-307) |has| |#1| (-363)) ((-363) |has| |#1| (-363)) ((-452) |has| |#1| (-363)) ((-493) |has| |#1| (-38 (-407 (-563)))) ((-555) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-643 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-722) . T) ((-896 (-1169)) -12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))) ((-969 |#1| #0# (-1075)) . T) ((-916) |has| |#1| (-363)) ((-998) |has| |#1| (-38 (-407 (-563)))) ((-1051 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-1051 |#1|) . T) ((-1051 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1193) |has| |#1| (-38 (-407 (-563)))) ((-1196) |has| |#1| (-38 (-407 (-563)))) ((-1212) |has| |#1| (-363)) ((-1235 |#1| #0#) . T))
+((-3439 (((-112) $) 12)) (-2130 (((-3 |#3| "failed") $) 17) (((-3 (-1169) "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 (-563) "failed") $) NIL)) (-2057 ((|#3| $) 14) (((-1169) $) NIL) (((-407 (-563)) $) NIL) (((-563) $) NIL)))
+(((-1218 |#1| |#2| |#3|) (-10 -8 (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2130 ((-3 (-1169) "failed") |#1|)) (-15 -2057 ((-1169) |#1|)) (-15 -2130 ((-3 |#3| "failed") |#1|)) (-15 -2057 (|#3| |#1|)) (-15 -3439 ((-112) |#1|))) (-1219 |#2| |#3|) (-1045) (-1248 |#2|)) (T -1218))
+NIL
+(-10 -8 (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2130 ((-3 (-1169) "failed") |#1|)) (-15 -2057 ((-1169) |#1|)) (-15 -2130 ((-3 |#3| "failed") |#1|)) (-15 -2057 (|#3| |#1|)) (-15 -3439 ((-112) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3944 ((|#2| $) 231 (-2188 (|has| |#2| (-307)) (|has| |#1| (-363))))) (-2605 (((-640 (-1075)) $) 77)) (-2517 (((-1169) $) 106)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-3231 (($ $) 55 (|has| |#1| (-555)))) (-3211 (((-112) $) 57 (|has| |#1| (-555)))) (-1763 (($ $ (-563)) 101) (($ $ (-563) (-563)) 100)) (-1787 (((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $) 108)) (-2609 ((|#2| $) 267)) (-2591 (((-3 |#2| "failed") $) 263)) (-2651 ((|#2| $) 264)) (-1770 (($ $) 138 (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) 121 (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) 19)) (-2093 (((-418 (-1165 $)) (-1165 $)) 240 (-2188 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-1798 (($ $) 165 (|has| |#1| (-363)))) (-2802 (((-418 $) $) 166 (|has| |#1| (-363)))) (-2185 (($ $) 120 (|has| |#1| (-38 (-407 (-563)))))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 237 (-2188 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-2003 (((-112) $ $) 156 (|has| |#1| (-363)))) (-1747 (($ $) 137 (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) 122 (|has| |#1| (-38 (-407 (-563)))))) (-2807 (((-563) $) 249 (-2188 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-3049 (($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|)))) 176)) (-1793 (($ $) 136 (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) 123 (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) 17 T CONST)) (-2130 (((-3 |#2| "failed") $) 270) (((-3 (-563) "failed") $) 260 (-2188 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-3 (-407 (-563)) "failed") $) 258 (-2188 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-3 (-1169) "failed") $) 242 (-2188 (|has| |#2| (-1034 (-1169))) (|has| |#1| (-363))))) (-2057 ((|#2| $) 271) (((-563) $) 259 (-2188 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-407 (-563)) $) 257 (-2188 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-1169) $) 241 (-2188 (|has| |#2| (-1034 (-1169))) (|has| |#1| (-363))))) (-2600 (($ $) 266) (($ (-563) $) 265)) (-3094 (($ $ $) 160 (|has| |#1| (-363)))) (-2750 (($ $) 63)) (-1476 (((-684 |#2|) (-684 $)) 221 (|has| |#1| (-363))) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) 220 (|has| |#1| (-363))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 219 (-2188 (|has| |#2| (-636 (-563))) (|has| |#1| (-363)))) (((-684 (-563)) (-684 $)) 218 (-2188 (|has| |#2| (-636 (-563))) (|has| |#1| (-363))))) (-3951 (((-3 $ "failed") $) 33)) (-2580 (((-407 (-948 |#1|)) $ (-563)) 174 (|has| |#1| (-555))) (((-407 (-948 |#1|)) $ (-563) (-563)) 173 (|has| |#1| (-555)))) (-1690 (($) 233 (-2188 (|has| |#2| (-545)) (|has| |#1| (-363))))) (-3054 (($ $ $) 159 (|has| |#1| (-363)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 154 (|has| |#1| (-363)))) (-2560 (((-112) $) 167 (|has| |#1| (-363)))) (-3414 (((-112) $) 247 (-2188 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-3381 (((-112) $) 76)) (-2179 (($) 148 (|has| |#1| (-38 (-407 (-563)))))) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 225 (-2188 (|has| |#2| (-882 (-379))) (|has| |#1| (-363)))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 224 (-2188 (|has| |#2| (-882 (-563))) (|has| |#1| (-363))))) (-1775 (((-563) $) 103) (((-563) $ (-563)) 102)) (-3401 (((-112) $) 31)) (-2043 (($ $) 229 (|has| |#1| (-363)))) (-2143 ((|#2| $) 227 (|has| |#1| (-363)))) (-2172 (($ $ (-563)) 119 (|has| |#1| (-38 (-407 (-563)))))) (-1983 (((-3 $ "failed") $) 261 (-2188 (|has| |#2| (-1144)) (|has| |#1| (-363))))) (-3426 (((-112) $) 248 (-2188 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-1821 (($ $ (-917)) 104)) (-2072 (($ (-1 |#1| (-563)) $) 175)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 163 (|has| |#1| (-363)))) (-3805 (((-112) $) 65)) (-2587 (($ |#1| (-563)) 64) (($ $ (-1075) (-563)) 79) (($ $ (-640 (-1075)) (-640 (-563))) 78)) (-3088 (($ $ $) 251 (-2188 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1776 (($ $ $) 252 (-2188 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-2238 (($ (-1 |#1| |#1|) $) 66) (($ (-1 |#2| |#2|) $) 213 (|has| |#1| (-363)))) (-4372 (($ $) 145 (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) 68)) (-2725 ((|#1| $) 69)) (-3517 (($ (-640 $)) 152 (|has| |#1| (-363))) (($ $ $) 151 (|has| |#1| (-363)))) (-2659 (($ (-563) |#2|) 268)) (-3854 (((-1151) $) 9)) (-2687 (($ $) 168 (|has| |#1| (-363)))) (-2062 (($ $) 172 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 171 (-4034 (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-955)) (|has| |#1| (-1193)) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-15 -2605 ((-640 (-1169)) |#1|))) (|has| |#1| (-15 -2062 (|#1| |#1| (-1169)))) (|has| |#1| (-38 (-407 (-563)))))))) (-2522 (($) 262 (-2188 (|has| |#2| (-1144)) (|has| |#1| (-363))) CONST)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 153 (|has| |#1| (-363)))) (-3551 (($ (-640 $)) 150 (|has| |#1| (-363))) (($ $ $) 149 (|has| |#1| (-363)))) (-3935 (($ $) 232 (-2188 (|has| |#2| (-307)) (|has| |#1| (-363))))) (-3954 ((|#2| $) 235 (-2188 (|has| |#2| (-545)) (|has| |#1| (-363))))) (-2075 (((-418 (-1165 $)) (-1165 $)) 238 (-2188 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-2083 (((-418 (-1165 $)) (-1165 $)) 239 (-2188 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-2173 (((-418 $) $) 164 (|has| |#1| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 161 (|has| |#1| (-363)))) (-1751 (($ $ (-563)) 98)) (-3012 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 155 (|has| |#1| (-363)))) (-3372 (($ $) 146 (|has| |#1| (-38 (-407 (-563)))))) (-1542 (((-1149 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-563))))) (($ $ (-1169) |#2|) 212 (-2188 (|has| |#2| (-514 (-1169) |#2|)) (|has| |#1| (-363)))) (($ $ (-640 (-1169)) (-640 |#2|)) 211 (-2188 (|has| |#2| (-514 (-1169) |#2|)) (|has| |#1| (-363)))) (($ $ (-640 (-294 |#2|))) 210 (-2188 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363)))) (($ $ (-294 |#2|)) 209 (-2188 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363)))) (($ $ |#2| |#2|) 208 (-2188 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363)))) (($ $ (-640 |#2|) (-640 |#2|)) 207 (-2188 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363))))) (-1993 (((-767) $) 157 (|has| |#1| (-363)))) (-2308 ((|#1| $ (-563)) 107) (($ $ $) 84 (|has| (-563) (-1105))) (($ $ |#2|) 206 (-2188 (|has| |#2| (-286 |#2| |#2|)) (|has| |#1| (-363))))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 158 (|has| |#1| (-363)))) (-4203 (($ $ (-1 |#2| |#2|)) 217 (|has| |#1| (-363))) (($ $ (-1 |#2| |#2|) (-767)) 216 (|has| |#1| (-363))) (($ $ (-767)) 87 (-4034 (-2188 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) 85 (-4034 (-2188 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) 92 (-4034 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|)))))) (($ $ (-1169) (-767)) 91 (-4034 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|)))))) (($ $ (-640 (-1169))) 90 (-4034 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|)))))) (($ $ (-1169)) 89 (-4034 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))))) (-2033 (($ $) 230 (|has| |#1| (-363)))) (-2153 ((|#2| $) 228 (|has| |#1| (-363)))) (-3871 (((-563) $) 67)) (-1805 (($ $) 135 (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) 124 (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) 134 (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) 125 (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) 133 (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) 126 (|has| |#1| (-38 (-407 (-563)))))) (-2219 (((-225) $) 246 (-2188 (|has| |#2| (-1018)) (|has| |#1| (-363)))) (((-379) $) 245 (-2188 (|has| |#2| (-1018)) (|has| |#1| (-363)))) (((-536) $) 244 (-2188 (|has| |#2| (-611 (-536))) (|has| |#1| (-363)))) (((-888 (-379)) $) 223 (-2188 (|has| |#2| (-611 (-888 (-379)))) (|has| |#1| (-363)))) (((-888 (-563)) $) 222 (-2188 (|has| |#2| (-611 (-888 (-563)))) (|has| |#1| (-363))))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) 236 (-2188 (-2188 (|has| $ (-145)) (|has| |#2| (-905))) (|has| |#1| (-363))))) (-3369 (($ $) 75)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 50 (|has| |#1| (-172))) (($ |#2|) 269) (($ (-1169)) 243 (-2188 (|has| |#2| (-1034 (-1169))) (|has| |#1| (-363)))) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555)))) (-3244 ((|#1| $ (-563)) 62)) (-2047 (((-3 $ "failed") $) 51 (-4034 (-2188 (-4034 (|has| |#2| (-145)) (-2188 (|has| $ (-145)) (|has| |#2| (-905)))) (|has| |#1| (-363))) (|has| |#1| (-145))))) (-3914 (((-767)) 28)) (-3412 ((|#1| $) 105)) (-3965 ((|#2| $) 234 (-2188 (|has| |#2| (-545)) (|has| |#1| (-363))))) (-1839 (($ $) 144 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) 132 (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) 56 (|has| |#1| (-555)))) (-1816 (($ $) 143 (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) 131 (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) 142 (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) 130 (|has| |#1| (-38 (-407 (-563)))))) (-1402 ((|#1| $ (-563)) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-563)))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-1311 (($ $) 141 (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) 129 (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) 140 (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) 128 (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) 139 (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) 127 (|has| |#1| (-38 (-407 (-563)))))) (-1462 (($ $) 250 (-2188 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ (-1 |#2| |#2|)) 215 (|has| |#1| (-363))) (($ $ (-1 |#2| |#2|) (-767)) 214 (|has| |#1| (-363))) (($ $ (-767)) 88 (-4034 (-2188 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) 86 (-4034 (-2188 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) 96 (-4034 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|)))))) (($ $ (-1169) (-767)) 95 (-4034 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|)))))) (($ $ (-640 (-1169))) 94 (-4034 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|)))))) (($ $ (-1169)) 93 (-4034 (-2188 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))))) (-1779 (((-112) $ $) 254 (-2188 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1754 (((-112) $ $) 255 (-2188 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 253 (-2188 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1743 (((-112) $ $) 256 (-2188 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1836 (($ $ |#1|) 61 (|has| |#1| (-363))) (($ $ $) 170 (|has| |#1| (-363))) (($ |#2| |#2|) 226 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 169 (|has| |#1| (-363))) (($ $ $) 147 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 118 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ $ |#2|) 205 (|has| |#1| (-363))) (($ |#2| $) 204 (|has| |#1| (-363))) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
(((-1219 |#1| |#2|) (-140) (-1045) (-1248 |t#1|)) (T -1219))
-((-4167 (*1 *2 *1) (-12 (-4 *1 (-1219 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1248 *3)) (-5 *2 (-563)))) (-2660 (*1 *1 *2 *3) (-12 (-5 *2 (-563)) (-4 *4 (-1045)) (-4 *1 (-1219 *4 *3)) (-4 *3 (-1248 *4)))) (-2084 (*1 *2 *1) (-12 (-4 *1 (-1219 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1248 *3)))) (-2457 (*1 *1 *1) (-12 (-4 *1 (-1219 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-1248 *2)))) (-2457 (*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-4 *1 (-1219 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1248 *3)))) (-2652 (*1 *2 *1) (-12 (-4 *1 (-1219 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1248 *3)))) (-3258 (*1 *2 *1) (|partial| -12 (-4 *1 (-1219 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1248 *3)))))
-(-13 (-1217 |t#1|) (-1034 |t#2|) (-613 |t#2|) (-10 -8 (-15 -2660 ($ (-563) |t#2|)) (-15 -4167 ((-563) $)) (-15 -2084 (|t#2| $)) (-15 -2457 ($ $)) (-15 -2457 ($ (-563) $)) (-15 -2652 (|t#2| $)) (-15 -3258 ((-3 |t#2| "failed") $)) (IF (|has| |t#1| (-363)) (-6 (-988 |t#2|)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-563)) . T) ((-25) . T) ((-38 #1=(-407 (-563))) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-38 |#1|) |has| |#1| (-172)) ((-38 |#2|) |has| |#1| (-363)) ((-38 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-35) |has| |#1| (-38 (-407 (-563)))) ((-95) |has| |#1| (-38 (-407 (-563)))) ((-102) . T) ((-111 #1# #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-111 |#1| |#1|) . T) ((-111 |#2| |#2|) |has| |#1| (-363)) ((-111 $ $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-131) . T) ((-145) -4032 (-12 (|has| |#1| (-363)) (|has| |#2| (-145))) (|has| |#1| (-145))) ((-147) -4032 (-12 (|has| |#1| (-363)) (|has| |#2| (-147))) (|has| |#1| (-147))) ((-613 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 #2=(-1169)) -12 (|has| |#1| (-363)) (|has| |#2| (-1034 (-1169)))) ((-613 |#1|) |has| |#1| (-172)) ((-613 |#2|) . T) ((-613 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-610 (-858)) . T) ((-172) -4032 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-611 (-225)) -12 (|has| |#1| (-363)) (|has| |#2| (-1018))) ((-611 (-379)) -12 (|has| |#1| (-363)) (|has| |#2| (-1018))) ((-611 (-536)) -12 (|has| |#1| (-363)) (|has| |#2| (-611 (-536)))) ((-611 (-888 (-379))) -12 (|has| |#1| (-363)) (|has| |#2| (-611 (-888 (-379))))) ((-611 (-888 (-563))) -12 (|has| |#1| (-363)) (|has| |#2| (-611 (-888 (-563))))) ((-231 |#2|) |has| |#1| (-363)) ((-233) -4032 (-12 (|has| |#1| (-363)) (|has| |#2| (-233))) (|has| |#1| (-15 * (|#1| (-563) |#1|)))) ((-243) |has| |#1| (-363)) ((-284) |has| |#1| (-38 (-407 (-563)))) ((-286 |#2| $) -12 (|has| |#1| (-363)) (|has| |#2| (-286 |#2| |#2|))) ((-286 $ $) |has| (-563) (-1105)) ((-290) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-307) |has| |#1| (-363)) ((-309 |#2|) -12 (|has| |#1| (-363)) (|has| |#2| (-309 |#2|))) ((-363) |has| |#1| (-363)) ((-338 |#2|) |has| |#1| (-363)) ((-377 |#2|) |has| |#1| (-363)) ((-400 |#2|) |has| |#1| (-363)) ((-452) |has| |#1| (-363)) ((-493) |has| |#1| (-38 (-407 (-563)))) ((-514 (-1169) |#2|) -12 (|has| |#1| (-363)) (|has| |#2| (-514 (-1169) |#2|))) ((-514 |#2| |#2|) -12 (|has| |#1| (-363)) (|has| |#2| (-309 |#2|))) ((-555) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-643 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-643 |#1|) . T) ((-643 |#2|) |has| |#1| (-363)) ((-643 $) . T) ((-636 (-563)) -12 (|has| |#1| (-363)) (|has| |#2| (-636 (-563)))) ((-636 |#2|) |has| |#1| (-363)) ((-713 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-713 |#1|) |has| |#1| (-172)) ((-713 |#2|) |has| |#1| (-363)) ((-713 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-722) . T) ((-787) -12 (|has| |#1| (-363)) (|has| |#2| (-816))) ((-788) -12 (|has| |#1| (-363)) (|has| |#2| (-816))) ((-790) -12 (|has| |#1| (-363)) (|has| |#2| (-816))) ((-791) -12 (|has| |#1| (-363)) (|has| |#2| (-816))) ((-816) -12 (|has| |#1| (-363)) (|has| |#2| (-816))) ((-844) -12 (|has| |#1| (-363)) (|has| |#2| (-816))) ((-846) -4032 (-12 (|has| |#1| (-363)) (|has| |#2| (-846))) (-12 (|has| |#1| (-363)) (|has| |#2| (-816)))) ((-896 (-1169)) -4032 (-12 (|has| |#1| (-363)) (|has| |#2| (-896 (-1169)))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) ((-882 (-379)) -12 (|has| |#1| (-363)) (|has| |#2| (-882 (-379)))) ((-882 (-563)) -12 (|has| |#1| (-363)) (|has| |#2| (-882 (-563)))) ((-880 |#2|) |has| |#1| (-363)) ((-905) -12 (|has| |#1| (-363)) (|has| |#2| (-905))) ((-969 |#1| #0# (-1075)) . T) ((-916) |has| |#1| (-363)) ((-988 |#2|) |has| |#1| (-363)) ((-998) |has| |#1| (-38 (-407 (-563)))) ((-1018) -12 (|has| |#1| (-363)) (|has| |#2| (-1018))) ((-1034 (-407 (-563))) -12 (|has| |#1| (-363)) (|has| |#2| (-1034 (-563)))) ((-1034 (-563)) -12 (|has| |#1| (-363)) (|has| |#2| (-1034 (-563)))) ((-1034 #2#) -12 (|has| |#1| (-363)) (|has| |#2| (-1034 (-1169)))) ((-1034 |#2|) . T) ((-1051 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-1051 |#1|) . T) ((-1051 |#2|) |has| |#1| (-363)) ((-1051 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) -12 (|has| |#1| (-363)) (|has| |#2| (-1144))) ((-1193) |has| |#1| (-38 (-407 (-563)))) ((-1196) |has| |#1| (-38 (-407 (-563)))) ((-1208) |has| |#1| (-363)) ((-1212) |has| |#1| (-363)) ((-1217 |#1|) . T) ((-1235 |#1| #0#) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 70)) (-3401 ((|#2| $) NIL (-12 (|has| |#2| (-307)) (|has| |#1| (-363))))) (-2606 (((-640 (-1075)) $) NIL)) (-2518 (((-1169) $) 88)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-2421 (($ $ (-563)) 97) (($ $ (-563) (-563)) 99)) (-1539 (((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $) 47)) (-2084 ((|#2| $) 11)) (-3258 (((-3 |#2| "failed") $) 30)) (-2652 ((|#2| $) 31)) (-1771 (($ $) 192 (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) 168 (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-4335 (($ $) NIL (|has| |#1| (-363)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2186 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-1919 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1748 (($ $) 188 (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) 164 (|has| |#1| (-38 (-407 (-563)))))) (-1857 (((-563) $) NIL (-12 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-3045 (($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|)))) 57)) (-1794 (($ $) 196 (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) 172 (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#2| "failed") $) 144) (((-3 (-563) "failed") $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-3 (-1169) "failed") $) NIL (-12 (|has| |#2| (-1034 (-1169))) (|has| |#1| (-363))))) (-2058 ((|#2| $) 143) (((-563) $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-407 (-563)) $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-1169) $) NIL (-12 (|has| |#2| (-1034 (-1169))) (|has| |#1| (-363))))) (-2457 (($ $) 61) (($ (-563) $) 24)) (-3090 (($ $ $) NIL (|has| |#1| (-363)))) (-2751 (($ $) NIL)) (-2950 (((-684 |#2|) (-684 $)) NIL (|has| |#1| (-363))) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL (|has| |#1| (-363))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#1| (-363)))) (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#1| (-363))))) (-3400 (((-3 $ "failed") $) 77)) (-4064 (((-407 (-948 |#1|)) $ (-563)) 112 (|has| |#1| (-555))) (((-407 (-948 |#1|)) $ (-563) (-563)) 114 (|has| |#1| (-555)))) (-1691 (($) NIL (-12 (|has| |#2| (-545)) (|has| |#1| (-363))))) (-3050 (($ $ $) NIL (|has| |#1| (-363)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2468 (((-112) $) NIL (|has| |#1| (-363)))) (-3101 (((-112) $) NIL (-12 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-2788 (((-112) $) 64)) (-2180 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| |#2| (-882 (-379))) (|has| |#1| (-363)))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| |#2| (-882 (-563))) (|has| |#1| (-363))))) (-3254 (((-563) $) 93) (((-563) $ (-563)) 95)) (-3827 (((-112) $) NIL)) (-2711 (($ $) NIL (|has| |#1| (-363)))) (-2143 ((|#2| $) 151 (|has| |#1| (-363)))) (-1645 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2408 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1144)) (|has| |#1| (-363))))) (-1419 (((-112) $) NIL (-12 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-1351 (($ $ (-917)) 136)) (-2831 (($ (-1 |#1| (-563)) $) 132)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-563)) 19) (($ $ (-1075) (-563)) NIL) (($ $ (-640 (-1075)) (-640 (-563))) NIL)) (-3084 (($ $ $) NIL (-12 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1777 (($ $ $) NIL (-12 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-2240 (($ (-1 |#1| |#1|) $) 129) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-363)))) (-4371 (($ $) 162 (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2660 (($ (-563) |#2|) 10)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 145 (|has| |#1| (-363)))) (-3698 (($ $) 214 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 219 (-4032 (-12 (|has| |#1| (-15 -3698 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2606 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193)))))) (-2523 (($) NIL (-12 (|has| |#2| (-1144)) (|has| |#1| (-363))) CONST)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-4215 (($ $) NIL (-12 (|has| |#2| (-307)) (|has| |#1| (-363))))) (-1583 ((|#2| $) NIL (-12 (|has| |#2| (-545)) (|has| |#1| (-363))))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-2174 (((-418 $) $) NIL (|has| |#1| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3320 (($ $ (-563)) 126)) (-3008 (((-3 $ "failed") $ $) 116 (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3368 (($ $) 160 (|has| |#1| (-38 (-407 (-563)))))) (-1540 (((-1149 |#1|) $ |#1|) 85 (|has| |#1| (-15 ** (|#1| |#1| (-563))))) (($ $ (-1169) |#2|) NIL (-12 (|has| |#2| (-514 (-1169) |#2|)) (|has| |#1| (-363)))) (($ $ (-640 (-1169)) (-640 |#2|)) NIL (-12 (|has| |#2| (-514 (-1169) |#2|)) (|has| |#1| (-363)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363))))) (-2628 (((-767) $) NIL (|has| |#1| (-363)))) (-2309 ((|#1| $ (-563)) 91) (($ $ $) 79 (|has| (-563) (-1105))) (($ $ |#2|) NIL (-12 (|has| |#2| (-286 |#2| |#2|)) (|has| |#1| (-363))))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-4202 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-363))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#1| (-363))) (($ $ (-767)) NIL (-4032 (-12 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) 137 (-4032 (-12 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-4032 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169) (-767)) NIL (-4032 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-640 (-1169))) NIL (-4032 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169)) 140 (-4032 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))) (-1801 (($ $) NIL (|has| |#1| (-363)))) (-2154 ((|#2| $) 152 (|has| |#1| (-363)))) (-4167 (((-563) $) 12)) (-1806 (($ $) 198 (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) 174 (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) 194 (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) 170 (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) 190 (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) 166 (|has| |#1| (-38 (-407 (-563)))))) (-2220 (((-225) $) NIL (-12 (|has| |#2| (-1018)) (|has| |#1| (-363)))) (((-379) $) NIL (-12 (|has| |#2| (-1018)) (|has| |#1| (-363)))) (((-536) $) NIL (-12 (|has| |#2| (-611 (-536))) (|has| |#1| (-363)))) (((-888 (-379)) $) NIL (-12 (|has| |#2| (-611 (-888 (-379)))) (|has| |#1| (-363)))) (((-888 (-563)) $) NIL (-12 (|has| |#2| (-611 (-888 (-563)))) (|has| |#1| (-363))))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-905)) (|has| |#1| (-363))))) (-1741 (($ $) 124)) (-1693 (((-858) $) 244) (($ (-563)) 23) (($ |#1|) 21 (|has| |#1| (-172))) (($ |#2|) 20) (($ (-1169)) NIL (-12 (|has| |#2| (-1034 (-1169))) (|has| |#1| (-363)))) (($ (-407 (-563))) 155 (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555)))) (-4319 ((|#1| $ (-563)) 74)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#2| (-905)) (|has| |#1| (-363))) (-12 (|has| |#2| (-145)) (|has| |#1| (-363))) (|has| |#1| (-145))))) (-1675 (((-767)) 142)) (-3408 ((|#1| $) 90)) (-4194 ((|#2| $) NIL (-12 (|has| |#2| (-545)) (|has| |#1| (-363))))) (-1840 (($ $) 204 (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) 180 (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1817 (($ $) 200 (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) 176 (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) 208 (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) 184 (|has| |#1| (-38 (-407 (-563)))))) (-1403 ((|#1| $ (-563)) 122 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-563)))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-1311 (($ $) 210 (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) 186 (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) 206 (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) 182 (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) 202 (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) 178 (|has| |#1| (-38 (-407 (-563)))))) (-2509 (($ $) NIL (-12 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-2241 (($) 13 T CONST)) (-2254 (($) 17 T CONST)) (-3209 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-363))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#1| (-363))) (($ $ (-767)) NIL (-4032 (-12 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) NIL (-4032 (-12 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-4032 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169) (-767)) NIL (-4032 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-640 (-1169))) NIL (-4032 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169)) NIL (-4032 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))) (-1778 (((-112) $ $) NIL (-12 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1756 (((-112) $ $) NIL (-12 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1718 (((-112) $ $) 63)) (-1768 (((-112) $ $) NIL (-12 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1744 (((-112) $ $) NIL (-12 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) 149 (|has| |#1| (-363))) (($ |#2| |#2|) 150 (|has| |#1| (-363)))) (-1826 (($ $) 213) (($ $ $) 68)) (-1814 (($ $ $) 66)) (** (($ $ (-917)) NIL) (($ $ (-767)) 73) (($ $ (-563)) 146 (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 158 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 139) (($ $ |#2|) 148 (|has| |#1| (-363))) (($ |#2| $) 147 (|has| |#1| (-363))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
+((-3871 (*1 *2 *1) (-12 (-4 *1 (-1219 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1248 *3)) (-5 *2 (-563)))) (-2659 (*1 *1 *2 *3) (-12 (-5 *2 (-563)) (-4 *4 (-1045)) (-4 *1 (-1219 *4 *3)) (-4 *3 (-1248 *4)))) (-2609 (*1 *2 *1) (-12 (-4 *1 (-1219 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1248 *3)))) (-2600 (*1 *1 *1) (-12 (-4 *1 (-1219 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-1248 *2)))) (-2600 (*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-4 *1 (-1219 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1248 *3)))) (-2651 (*1 *2 *1) (-12 (-4 *1 (-1219 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1248 *3)))) (-2591 (*1 *2 *1) (|partial| -12 (-4 *1 (-1219 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1248 *3)))))
+(-13 (-1217 |t#1|) (-1034 |t#2|) (-613 |t#2|) (-10 -8 (-15 -2659 ($ (-563) |t#2|)) (-15 -3871 ((-563) $)) (-15 -2609 (|t#2| $)) (-15 -2600 ($ $)) (-15 -2600 ($ (-563) $)) (-15 -2651 (|t#2| $)) (-15 -2591 ((-3 |t#2| "failed") $)) (IF (|has| |t#1| (-363)) (-6 (-988 |t#2|)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-563)) . T) ((-25) . T) ((-38 #1=(-407 (-563))) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-38 |#1|) |has| |#1| (-172)) ((-38 |#2|) |has| |#1| (-363)) ((-38 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-35) |has| |#1| (-38 (-407 (-563)))) ((-95) |has| |#1| (-38 (-407 (-563)))) ((-102) . T) ((-111 #1# #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-111 |#1| |#1|) . T) ((-111 |#2| |#2|) |has| |#1| (-363)) ((-111 $ $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-131) . T) ((-145) -4034 (-12 (|has| |#1| (-363)) (|has| |#2| (-145))) (|has| |#1| (-145))) ((-147) -4034 (-12 (|has| |#1| (-363)) (|has| |#2| (-147))) (|has| |#1| (-147))) ((-613 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 #2=(-1169)) -12 (|has| |#1| (-363)) (|has| |#2| (-1034 (-1169)))) ((-613 |#1|) |has| |#1| (-172)) ((-613 |#2|) . T) ((-613 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-610 (-858)) . T) ((-172) -4034 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-611 (-225)) -12 (|has| |#1| (-363)) (|has| |#2| (-1018))) ((-611 (-379)) -12 (|has| |#1| (-363)) (|has| |#2| (-1018))) ((-611 (-536)) -12 (|has| |#1| (-363)) (|has| |#2| (-611 (-536)))) ((-611 (-888 (-379))) -12 (|has| |#1| (-363)) (|has| |#2| (-611 (-888 (-379))))) ((-611 (-888 (-563))) -12 (|has| |#1| (-363)) (|has| |#2| (-611 (-888 (-563))))) ((-231 |#2|) |has| |#1| (-363)) ((-233) -4034 (-12 (|has| |#1| (-363)) (|has| |#2| (-233))) (|has| |#1| (-15 * (|#1| (-563) |#1|)))) ((-243) |has| |#1| (-363)) ((-284) |has| |#1| (-38 (-407 (-563)))) ((-286 |#2| $) -12 (|has| |#1| (-363)) (|has| |#2| (-286 |#2| |#2|))) ((-286 $ $) |has| (-563) (-1105)) ((-290) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-307) |has| |#1| (-363)) ((-309 |#2|) -12 (|has| |#1| (-363)) (|has| |#2| (-309 |#2|))) ((-363) |has| |#1| (-363)) ((-338 |#2|) |has| |#1| (-363)) ((-377 |#2|) |has| |#1| (-363)) ((-400 |#2|) |has| |#1| (-363)) ((-452) |has| |#1| (-363)) ((-493) |has| |#1| (-38 (-407 (-563)))) ((-514 (-1169) |#2|) -12 (|has| |#1| (-363)) (|has| |#2| (-514 (-1169) |#2|))) ((-514 |#2| |#2|) -12 (|has| |#1| (-363)) (|has| |#2| (-309 |#2|))) ((-555) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-643 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-643 |#1|) . T) ((-643 |#2|) |has| |#1| (-363)) ((-643 $) . T) ((-636 (-563)) -12 (|has| |#1| (-363)) (|has| |#2| (-636 (-563)))) ((-636 |#2|) |has| |#1| (-363)) ((-713 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-713 |#1|) |has| |#1| (-172)) ((-713 |#2|) |has| |#1| (-363)) ((-713 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-722) . T) ((-787) -12 (|has| |#1| (-363)) (|has| |#2| (-816))) ((-788) -12 (|has| |#1| (-363)) (|has| |#2| (-816))) ((-790) -12 (|has| |#1| (-363)) (|has| |#2| (-816))) ((-791) -12 (|has| |#1| (-363)) (|has| |#2| (-816))) ((-816) -12 (|has| |#1| (-363)) (|has| |#2| (-816))) ((-844) -12 (|has| |#1| (-363)) (|has| |#2| (-816))) ((-846) -4034 (-12 (|has| |#1| (-363)) (|has| |#2| (-846))) (-12 (|has| |#1| (-363)) (|has| |#2| (-816)))) ((-896 (-1169)) -4034 (-12 (|has| |#1| (-363)) (|has| |#2| (-896 (-1169)))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))) ((-882 (-379)) -12 (|has| |#1| (-363)) (|has| |#2| (-882 (-379)))) ((-882 (-563)) -12 (|has| |#1| (-363)) (|has| |#2| (-882 (-563)))) ((-880 |#2|) |has| |#1| (-363)) ((-905) -12 (|has| |#1| (-363)) (|has| |#2| (-905))) ((-969 |#1| #0# (-1075)) . T) ((-916) |has| |#1| (-363)) ((-988 |#2|) |has| |#1| (-363)) ((-998) |has| |#1| (-38 (-407 (-563)))) ((-1018) -12 (|has| |#1| (-363)) (|has| |#2| (-1018))) ((-1034 (-407 (-563))) -12 (|has| |#1| (-363)) (|has| |#2| (-1034 (-563)))) ((-1034 (-563)) -12 (|has| |#1| (-363)) (|has| |#2| (-1034 (-563)))) ((-1034 #2#) -12 (|has| |#1| (-363)) (|has| |#2| (-1034 (-1169)))) ((-1034 |#2|) . T) ((-1051 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-1051 |#1|) . T) ((-1051 |#2|) |has| |#1| (-363)) ((-1051 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) -12 (|has| |#1| (-363)) (|has| |#2| (-1144))) ((-1193) |has| |#1| (-38 (-407 (-563)))) ((-1196) |has| |#1| (-38 (-407 (-563)))) ((-1208) |has| |#1| (-363)) ((-1212) |has| |#1| (-363)) ((-1217 |#1|) . T) ((-1235 |#1| #0#) . T))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 70)) (-3944 ((|#2| $) NIL (-12 (|has| |#2| (-307)) (|has| |#1| (-363))))) (-2605 (((-640 (-1075)) $) NIL)) (-2517 (((-1169) $) 88)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-1763 (($ $ (-563)) 97) (($ $ (-563) (-563)) 99)) (-1787 (((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $) 47)) (-2609 ((|#2| $) 11)) (-2591 (((-3 |#2| "failed") $) 30)) (-2651 ((|#2| $) 31)) (-1770 (($ $) 192 (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) 168 (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-1798 (($ $) NIL (|has| |#1| (-363)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2185 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-2003 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1747 (($ $) 188 (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) 164 (|has| |#1| (-38 (-407 (-563)))))) (-2807 (((-563) $) NIL (-12 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-3049 (($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|)))) 57)) (-1793 (($ $) 196 (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) 172 (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#2| "failed") $) 144) (((-3 (-563) "failed") $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-3 (-1169) "failed") $) NIL (-12 (|has| |#2| (-1034 (-1169))) (|has| |#1| (-363))))) (-2057 ((|#2| $) 143) (((-563) $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-407 (-563)) $) NIL (-12 (|has| |#2| (-1034 (-563))) (|has| |#1| (-363)))) (((-1169) $) NIL (-12 (|has| |#2| (-1034 (-1169))) (|has| |#1| (-363))))) (-2600 (($ $) 61) (($ (-563) $) 24)) (-3094 (($ $ $) NIL (|has| |#1| (-363)))) (-2750 (($ $) NIL)) (-1476 (((-684 |#2|) (-684 $)) NIL (|has| |#1| (-363))) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL (|has| |#1| (-363))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#1| (-363)))) (((-684 (-563)) (-684 $)) NIL (-12 (|has| |#2| (-636 (-563))) (|has| |#1| (-363))))) (-3951 (((-3 $ "failed") $) 77)) (-2580 (((-407 (-948 |#1|)) $ (-563)) 112 (|has| |#1| (-555))) (((-407 (-948 |#1|)) $ (-563) (-563)) 114 (|has| |#1| (-555)))) (-1690 (($) NIL (-12 (|has| |#2| (-545)) (|has| |#1| (-363))))) (-3054 (($ $ $) NIL (|has| |#1| (-363)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2560 (((-112) $) NIL (|has| |#1| (-363)))) (-3414 (((-112) $) NIL (-12 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-3381 (((-112) $) 64)) (-2179 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| |#2| (-882 (-379))) (|has| |#1| (-363)))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| |#2| (-882 (-563))) (|has| |#1| (-363))))) (-1775 (((-563) $) 93) (((-563) $ (-563)) 95)) (-3401 (((-112) $) NIL)) (-2043 (($ $) NIL (|has| |#1| (-363)))) (-2143 ((|#2| $) 151 (|has| |#1| (-363)))) (-2172 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1983 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1144)) (|has| |#1| (-363))))) (-3426 (((-112) $) NIL (-12 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-1821 (($ $ (-917)) 136)) (-2072 (($ (-1 |#1| (-563)) $) 132)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-563)) 19) (($ $ (-1075) (-563)) NIL) (($ $ (-640 (-1075)) (-640 (-563))) NIL)) (-3088 (($ $ $) NIL (-12 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1776 (($ $ $) NIL (-12 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-2238 (($ (-1 |#1| |#1|) $) 129) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-363)))) (-4372 (($ $) 162 (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2659 (($ (-563) |#2|) 10)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 145 (|has| |#1| (-363)))) (-2062 (($ $) 214 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 219 (-4034 (-12 (|has| |#1| (-15 -2062 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2605 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193)))))) (-2522 (($) NIL (-12 (|has| |#2| (-1144)) (|has| |#1| (-363))) CONST)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-3935 (($ $) NIL (-12 (|has| |#2| (-307)) (|has| |#1| (-363))))) (-3954 ((|#2| $) NIL (-12 (|has| |#2| (-545)) (|has| |#1| (-363))))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| |#2| (-905)) (|has| |#1| (-363))))) (-2173 (((-418 $) $) NIL (|has| |#1| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-1751 (($ $ (-563)) 126)) (-3012 (((-3 $ "failed") $ $) 116 (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3372 (($ $) 160 (|has| |#1| (-38 (-407 (-563)))))) (-1542 (((-1149 |#1|) $ |#1|) 85 (|has| |#1| (-15 ** (|#1| |#1| (-563))))) (($ $ (-1169) |#2|) NIL (-12 (|has| |#2| (-514 (-1169) |#2|)) (|has| |#1| (-363)))) (($ $ (-640 (-1169)) (-640 |#2|)) NIL (-12 (|has| |#2| (-514 (-1169) |#2|)) (|has| |#1| (-363)))) (($ $ (-640 (-294 |#2|))) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363)))) (($ $ (-294 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363)))) (($ $ (-640 |#2|) (-640 |#2|)) NIL (-12 (|has| |#2| (-309 |#2|)) (|has| |#1| (-363))))) (-1993 (((-767) $) NIL (|has| |#1| (-363)))) (-2308 ((|#1| $ (-563)) 91) (($ $ $) 79 (|has| (-563) (-1105))) (($ $ |#2|) NIL (-12 (|has| |#2| (-286 |#2| |#2|)) (|has| |#1| (-363))))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-4203 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-363))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#1| (-363))) (($ $ (-767)) NIL (-4034 (-12 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) 137 (-4034 (-12 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-4034 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169) (-767)) NIL (-4034 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-640 (-1169))) NIL (-4034 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169)) 140 (-4034 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))) (-2033 (($ $) NIL (|has| |#1| (-363)))) (-2153 ((|#2| $) 152 (|has| |#1| (-363)))) (-3871 (((-563) $) 12)) (-1805 (($ $) 198 (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) 174 (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) 194 (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) 170 (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) 190 (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) 166 (|has| |#1| (-38 (-407 (-563)))))) (-2219 (((-225) $) NIL (-12 (|has| |#2| (-1018)) (|has| |#1| (-363)))) (((-379) $) NIL (-12 (|has| |#2| (-1018)) (|has| |#1| (-363)))) (((-536) $) NIL (-12 (|has| |#2| (-611 (-536))) (|has| |#1| (-363)))) (((-888 (-379)) $) NIL (-12 (|has| |#2| (-611 (-888 (-379)))) (|has| |#1| (-363)))) (((-888 (-563)) $) NIL (-12 (|has| |#2| (-611 (-888 (-563)))) (|has| |#1| (-363))))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-905)) (|has| |#1| (-363))))) (-3369 (($ $) 124)) (-1692 (((-858) $) 244) (($ (-563)) 23) (($ |#1|) 21 (|has| |#1| (-172))) (($ |#2|) 20) (($ (-1169)) NIL (-12 (|has| |#2| (-1034 (-1169))) (|has| |#1| (-363)))) (($ (-407 (-563))) 155 (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555)))) (-3244 ((|#1| $ (-563)) 74)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#2| (-905)) (|has| |#1| (-363))) (-12 (|has| |#2| (-145)) (|has| |#1| (-363))) (|has| |#1| (-145))))) (-3914 (((-767)) 142)) (-3412 ((|#1| $) 90)) (-3965 ((|#2| $) NIL (-12 (|has| |#2| (-545)) (|has| |#1| (-363))))) (-1839 (($ $) 204 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) 180 (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1816 (($ $) 200 (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) 176 (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) 208 (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) 184 (|has| |#1| (-38 (-407 (-563)))))) (-1402 ((|#1| $ (-563)) 122 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-563)))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-1311 (($ $) 210 (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) 186 (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) 206 (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) 182 (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) 202 (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) 178 (|has| |#1| (-38 (-407 (-563)))))) (-1462 (($ $) NIL (-12 (|has| |#2| (-816)) (|has| |#1| (-363))))) (-2239 (($) 13 T CONST)) (-2253 (($) 17 T CONST)) (-3213 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-363))) (($ $ (-1 |#2| |#2|) (-767)) NIL (|has| |#1| (-363))) (($ $ (-767)) NIL (-4034 (-12 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) NIL (-4034 (-12 (|has| |#2| (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-4034 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169) (-767)) NIL (-4034 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-640 (-1169))) NIL (-4034 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169)) NIL (-4034 (-12 (|has| |#2| (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))) (-1779 (((-112) $ $) NIL (-12 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1754 (((-112) $ $) NIL (-12 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1718 (((-112) $ $) 63)) (-1766 (((-112) $ $) NIL (-12 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1743 (((-112) $ $) NIL (-12 (|has| |#2| (-846)) (|has| |#1| (-363))))) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) 149 (|has| |#1| (-363))) (($ |#2| |#2|) 150 (|has| |#1| (-363)))) (-1825 (($ $) 213) (($ $ $) 68)) (-1813 (($ $ $) 66)) (** (($ $ (-917)) NIL) (($ $ (-767)) 73) (($ $ (-563)) 146 (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 158 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 139) (($ $ |#2|) 148 (|has| |#1| (-363))) (($ |#2| $) 147 (|has| |#1| (-363))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
(((-1220 |#1| |#2|) (-1219 |#1| |#2|) (-1045) (-1248 |#1|)) (T -1220))
NIL
(-1219 |#1| |#2|)
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3401 (((-1249 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-307)) (|has| |#1| (-363))))) (-2606 (((-640 (-1075)) $) NIL)) (-2518 (((-1169) $) 10)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-4223 (($ $) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-3156 (((-112) $) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-2421 (($ $ (-563)) NIL) (($ $ (-563) (-563)) NIL)) (-1539 (((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $) NIL)) (-2084 (((-1249 |#1| |#2| |#3|) $) NIL)) (-3258 (((-3 (-1249 |#1| |#2| |#3|) "failed") $) NIL)) (-2652 (((-1249 |#1| |#2| |#3|) $) NIL)) (-1771 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) NIL)) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-4335 (($ $) NIL (|has| |#1| (-363)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2186 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-1919 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1748 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1857 (((-563) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-3045 (($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|)))) NIL)) (-1794 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-1249 |#1| |#2| |#3|) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-1169))) (|has| |#1| (-363)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363)))) (((-3 (-563) "failed") $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363))))) (-2058 (((-1249 |#1| |#2| |#3|) $) NIL) (((-1169) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-1169))) (|has| |#1| (-363)))) (((-407 (-563)) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363)))) (((-563) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363))))) (-2457 (($ $) NIL) (($ (-563) $) NIL)) (-3090 (($ $ $) NIL (|has| |#1| (-363)))) (-2751 (($ $) NIL)) (-2950 (((-684 (-1249 |#1| |#2| |#3|)) (-684 $)) NIL (|has| |#1| (-363))) (((-2 (|:| -2835 (-684 (-1249 |#1| |#2| |#3|))) (|:| |vec| (-1257 (-1249 |#1| |#2| |#3|)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-363))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-636 (-563))) (|has| |#1| (-363)))) (((-684 (-563)) (-684 $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-636 (-563))) (|has| |#1| (-363))))) (-3400 (((-3 $ "failed") $) NIL)) (-4064 (((-407 (-948 |#1|)) $ (-563)) NIL (|has| |#1| (-555))) (((-407 (-948 |#1|)) $ (-563) (-563)) NIL (|has| |#1| (-555)))) (-1691 (($) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-545)) (|has| |#1| (-363))))) (-3050 (($ $ $) NIL (|has| |#1| (-363)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2468 (((-112) $) NIL (|has| |#1| (-363)))) (-3101 (((-112) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-2788 (((-112) $) NIL)) (-2180 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-882 (-379))) (|has| |#1| (-363)))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-882 (-563))) (|has| |#1| (-363))))) (-3254 (((-563) $) NIL) (((-563) $ (-563)) NIL)) (-3827 (((-112) $) NIL)) (-2711 (($ $) NIL (|has| |#1| (-363)))) (-2143 (((-1249 |#1| |#2| |#3|) $) NIL (|has| |#1| (-363)))) (-1645 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2408 (((-3 $ "failed") $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1144)) (|has| |#1| (-363))))) (-1419 (((-112) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-1351 (($ $ (-917)) NIL)) (-2831 (($ (-1 |#1| (-563)) $) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-563)) 17) (($ $ (-1075) (-563)) NIL) (($ $ (-640 (-1075)) (-640 (-563))) NIL)) (-3084 (($ $ $) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1777 (($ $ $) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-363)))) (-4371 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2660 (($ (-563) (-1249 |#1| |#2| |#3|)) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL (|has| |#1| (-363)))) (-3698 (($ $) 25 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) NIL (-4032 (-12 (|has| |#1| (-15 -3698 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2606 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193))))) (($ $ (-1253 |#2|)) 26 (|has| |#1| (-38 (-407 (-563)))))) (-2523 (($) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1144)) (|has| |#1| (-363))) CONST)) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-4215 (($ $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-307)) (|has| |#1| (-363))))) (-1583 (((-1249 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-545)) (|has| |#1| (-363))))) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-2174 (((-418 $) $) NIL (|has| |#1| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3320 (($ $ (-563)) NIL)) (-3008 (((-3 $ "failed") $ $) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3368 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1540 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-563))))) (($ $ (-1169) (-1249 |#1| |#2| |#3|)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-514 (-1169) (-1249 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-640 (-1169)) (-640 (-1249 |#1| |#2| |#3|))) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-514 (-1169) (-1249 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-640 (-294 (-1249 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-309 (-1249 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-294 (-1249 |#1| |#2| |#3|))) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-309 (-1249 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-309 (-1249 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-640 (-1249 |#1| |#2| |#3|)) (-640 (-1249 |#1| |#2| |#3|))) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-309 (-1249 |#1| |#2| |#3|))) (|has| |#1| (-363))))) (-2628 (((-767) $) NIL (|has| |#1| (-363)))) (-2309 ((|#1| $ (-563)) NIL) (($ $ $) NIL (|has| (-563) (-1105))) (($ $ (-1249 |#1| |#2| |#3|)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-286 (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|))) (|has| |#1| (-363))))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-4202 (($ $ (-1 (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|))) NIL (|has| |#1| (-363))) (($ $ (-1 (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|)) (-767)) NIL (|has| |#1| (-363))) (($ $ (-1253 |#2|)) 24) (($ $ (-767)) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) 23 (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169) (-767)) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-640 (-1169))) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169)) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))) (-1801 (($ $) NIL (|has| |#1| (-363)))) (-2154 (((-1249 |#1| |#2| |#3|) $) NIL (|has| |#1| (-363)))) (-4167 (((-563) $) NIL)) (-1806 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2220 (((-536) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-611 (-536))) (|has| |#1| (-363)))) (((-379) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1018)) (|has| |#1| (-363)))) (((-225) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1018)) (|has| |#1| (-363)))) (((-888 (-379)) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-611 (-888 (-379)))) (|has| |#1| (-363)))) (((-888 (-563)) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-611 (-888 (-563)))) (|has| |#1| (-363))))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-1741 (($ $) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1249 |#1| |#2| |#3|)) NIL) (($ (-1253 |#2|)) 22) (($ (-1169)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-1169))) (|has| |#1| (-363)))) (($ $) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555)))) (($ (-407 (-563))) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363))) (|has| |#1| (-38 (-407 (-563))))))) (-4319 ((|#1| $ (-563)) NIL)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-145)) (|has| |#1| (-363))) (|has| |#1| (-145))))) (-1675 (((-767)) NIL)) (-3408 ((|#1| $) 11)) (-4194 (((-1249 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-545)) (|has| |#1| (-363))))) (-1840 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-1817 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1403 ((|#1| $ (-563)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-563)))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-1311 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2509 (($ $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-2241 (($) 19 T CONST)) (-2254 (($) 15 T CONST)) (-3209 (($ $ (-1 (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|))) NIL (|has| |#1| (-363))) (($ $ (-1 (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|)) (-767)) NIL (|has| |#1| (-363))) (($ $ (-767)) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169) (-767)) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-640 (-1169))) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169)) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))) (-1778 (((-112) $ $) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1756 (((-112) $ $) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1744 (((-112) $ $) NIL (-4032 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363))) (($ (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|)) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) 20)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1249 |#1| |#2| |#3|)) NIL (|has| |#1| (-363))) (($ (-1249 |#1| |#2| |#3|) $) NIL (|has| |#1| (-363))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
-(((-1221 |#1| |#2| |#3|) (-13 (-1219 |#1| (-1249 |#1| |#2| |#3|)) (-10 -8 (-15 -1693 ($ (-1253 |#2|))) (-15 -4202 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1253 |#2|))) |%noBranch|))) (-1045) (-1169) |#1|) (T -1221))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1221 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-4202 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1221 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-3698 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1221 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
-(-13 (-1219 |#1| (-1249 |#1| |#2| |#3|)) (-10 -8 (-15 -1693 ($ (-1253 |#2|))) (-15 -4202 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1253 |#2|))) |%noBranch|)))
-((-3645 (((-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| |#1|) (|:| -1650 (-563)))))) |#1| (-112)) 12)) (-2184 (((-418 |#1|) |#1|) 22)) (-2174 (((-418 |#1|) |#1|) 21)))
-(((-1222 |#1|) (-10 -7 (-15 -2174 ((-418 |#1|) |#1|)) (-15 -2184 ((-418 |#1|) |#1|)) (-15 -3645 ((-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| |#1|) (|:| -1650 (-563)))))) |#1| (-112)))) (-1233 (-563))) (T -1222))
-((-3645 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| *3) (|:| -1650 (-563))))))) (-5 *1 (-1222 *3)) (-4 *3 (-1233 (-563))))) (-2184 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-1222 *3)) (-4 *3 (-1233 (-563))))) (-2174 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-1222 *3)) (-4 *3 (-1233 (-563))))))
-(-10 -7 (-15 -2174 ((-418 |#1|) |#1|)) (-15 -2184 ((-418 |#1|) |#1|)) (-15 -3645 ((-2 (|:| |contp| (-563)) (|:| -2760 (-640 (-2 (|:| |irr| |#1|) (|:| -1650 (-563)))))) |#1| (-112))))
-((-2240 (((-1149 |#2|) (-1 |#2| |#1|) (-1224 |#1|)) 23 (|has| |#1| (-844))) (((-1224 |#2|) (-1 |#2| |#1|) (-1224 |#1|)) 17)))
-(((-1223 |#1| |#2|) (-10 -7 (-15 -2240 ((-1224 |#2|) (-1 |#2| |#1|) (-1224 |#1|))) (IF (|has| |#1| (-844)) (-15 -2240 ((-1149 |#2|) (-1 |#2| |#1|) (-1224 |#1|))) |%noBranch|)) (-1208) (-1208)) (T -1223))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1224 *5)) (-4 *5 (-844)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-1149 *6)) (-5 *1 (-1223 *5 *6)))) (-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1224 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-1224 *6)) (-5 *1 (-1223 *5 *6)))))
-(-10 -7 (-15 -2240 ((-1224 |#2|) (-1 |#2| |#1|) (-1224 |#1|))) (IF (|has| |#1| (-844)) (-15 -2240 ((-1149 |#2|) (-1 |#2| |#1|) (-1224 |#1|))) |%noBranch|))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4260 (($ |#1| |#1|) 9) (($ |#1|) 8)) (-2240 (((-1149 |#1|) (-1 |#1| |#1|) $) 41 (|has| |#1| (-844)))) (-3244 ((|#1| $) 14)) (-3284 ((|#1| $) 10)) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3298 (((-563) $) 18)) (-3289 ((|#1| $) 17)) (-3426 ((|#1| $) 11)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2118 (((-112) $) 16)) (-2213 (((-1149 |#1|) $) 38 (|has| |#1| (-844))) (((-1149 |#1|) (-640 $)) 37 (|has| |#1| (-844)))) (-2220 (($ |#1|) 25)) (-1693 (($ (-1087 |#1|)) 24) (((-858) $) 34 (|has| |#1| (-1093)))) (-2178 (($ |#1| |#1|) 20) (($ |#1|) 19)) (-1464 (($ $ (-563)) 13)) (-1718 (((-112) $ $) 27 (|has| |#1| (-1093)))))
-(((-1224 |#1|) (-13 (-1086 |#1|) (-10 -8 (-15 -2178 ($ |#1|)) (-15 -4260 ($ |#1|)) (-15 -1693 ($ (-1087 |#1|))) (-15 -2118 ((-112) $)) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|) (IF (|has| |#1| (-844)) (-6 (-1088 |#1| (-1149 |#1|))) |%noBranch|))) (-1208)) (T -1224))
-((-2178 (*1 *1 *2) (-12 (-5 *1 (-1224 *2)) (-4 *2 (-1208)))) (-4260 (*1 *1 *2) (-12 (-5 *1 (-1224 *2)) (-4 *2 (-1208)))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-1087 *3)) (-4 *3 (-1208)) (-5 *1 (-1224 *3)))) (-2118 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1224 *3)) (-4 *3 (-1208)))))
-(-13 (-1086 |#1|) (-10 -8 (-15 -2178 ($ |#1|)) (-15 -4260 ($ |#1|)) (-15 -1693 ($ (-1087 |#1|))) (-15 -2118 ((-112) $)) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|) (IF (|has| |#1| (-844)) (-6 (-1088 |#1| (-1149 |#1|))) |%noBranch|)))
-((-2240 (((-1230 |#3| |#4|) (-1 |#4| |#2|) (-1230 |#1| |#2|)) 15)))
-(((-1225 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2240 ((-1230 |#3| |#4|) (-1 |#4| |#2|) (-1230 |#1| |#2|)))) (-1169) (-1045) (-1169) (-1045)) (T -1225))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1230 *5 *6)) (-14 *5 (-1169)) (-4 *6 (-1045)) (-4 *8 (-1045)) (-5 *2 (-1230 *7 *8)) (-5 *1 (-1225 *5 *6 *7 *8)) (-14 *7 (-1169)))))
-(-10 -7 (-15 -2240 ((-1230 |#3| |#4|) (-1 |#4| |#2|) (-1230 |#1| |#2|))))
-((-3266 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-1417 ((|#1| |#3|) 13)) (-2119 ((|#3| |#3|) 19)))
-(((-1226 |#1| |#2| |#3|) (-10 -7 (-15 -1417 (|#1| |#3|)) (-15 -2119 (|#3| |#3|)) (-15 -3266 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-555) (-988 |#1|) (-1233 |#2|)) (T -1226))
-((-3266 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-988 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1226 *4 *5 *3)) (-4 *3 (-1233 *5)))) (-2119 (*1 *2 *2) (-12 (-4 *3 (-555)) (-4 *4 (-988 *3)) (-5 *1 (-1226 *3 *4 *2)) (-4 *2 (-1233 *4)))) (-1417 (*1 *2 *3) (-12 (-4 *4 (-988 *2)) (-4 *2 (-555)) (-5 *1 (-1226 *2 *4 *3)) (-4 *3 (-1233 *4)))))
-(-10 -7 (-15 -1417 (|#1| |#3|)) (-15 -2119 (|#3| |#3|)) (-15 -3266 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-3333 (((-3 |#2| "failed") |#2| (-767) |#1|) 29)) (-3798 (((-3 |#2| "failed") |#2| (-767)) 30)) (-2455 (((-3 (-2 (|:| -1686 |#2|) (|:| -1701 |#2|)) "failed") |#2|) 42)) (-2006 (((-640 |#2|) |#2|) 44)) (-2228 (((-3 |#2| "failed") |#2| |#2|) 39)))
-(((-1227 |#1| |#2|) (-10 -7 (-15 -3798 ((-3 |#2| "failed") |#2| (-767))) (-15 -3333 ((-3 |#2| "failed") |#2| (-767) |#1|)) (-15 -2228 ((-3 |#2| "failed") |#2| |#2|)) (-15 -2455 ((-3 (-2 (|:| -1686 |#2|) (|:| -1701 |#2|)) "failed") |#2|)) (-15 -2006 ((-640 |#2|) |#2|))) (-13 (-555) (-147)) (-1233 |#1|)) (T -1227))
-((-2006 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-147))) (-5 *2 (-640 *3)) (-5 *1 (-1227 *4 *3)) (-4 *3 (-1233 *4)))) (-2455 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-555) (-147))) (-5 *2 (-2 (|:| -1686 *3) (|:| -1701 *3))) (-5 *1 (-1227 *4 *3)) (-4 *3 (-1233 *4)))) (-2228 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-555) (-147))) (-5 *1 (-1227 *3 *2)) (-4 *2 (-1233 *3)))) (-3333 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-767)) (-4 *4 (-13 (-555) (-147))) (-5 *1 (-1227 *4 *2)) (-4 *2 (-1233 *4)))) (-3798 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-767)) (-4 *4 (-13 (-555) (-147))) (-5 *1 (-1227 *4 *2)) (-4 *2 (-1233 *4)))))
-(-10 -7 (-15 -3798 ((-3 |#2| "failed") |#2| (-767))) (-15 -3333 ((-3 |#2| "failed") |#2| (-767) |#1|)) (-15 -2228 ((-3 |#2| "failed") |#2| |#2|)) (-15 -2455 ((-3 (-2 (|:| -1686 |#2|) (|:| -1701 |#2|)) "failed") |#2|)) (-15 -2006 ((-640 |#2|) |#2|)))
-((-2148 (((-3 (-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) "failed") |#2| |#2|) 31)))
-(((-1228 |#1| |#2|) (-10 -7 (-15 -2148 ((-3 (-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) "failed") |#2| |#2|))) (-555) (-1233 |#1|)) (T -1228))
-((-2148 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-555)) (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-1228 *4 *3)) (-4 *3 (-1233 *4)))))
-(-10 -7 (-15 -2148 ((-3 (-2 (|:| -3490 |#2|) (|:| -1972 |#2|)) "failed") |#2| |#2|)))
-((-1711 ((|#2| |#2| |#2|) 19)) (-3261 ((|#2| |#2| |#2|) 30)) (-1395 ((|#2| |#2| |#2| (-767) (-767)) 36)))
-(((-1229 |#1| |#2|) (-10 -7 (-15 -1711 (|#2| |#2| |#2|)) (-15 -3261 (|#2| |#2| |#2|)) (-15 -1395 (|#2| |#2| |#2| (-767) (-767)))) (-1045) (-1233 |#1|)) (T -1229))
-((-1395 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-767)) (-4 *4 (-1045)) (-5 *1 (-1229 *4 *2)) (-4 *2 (-1233 *4)))) (-3261 (*1 *2 *2 *2) (-12 (-4 *3 (-1045)) (-5 *1 (-1229 *3 *2)) (-4 *2 (-1233 *3)))) (-1711 (*1 *2 *2 *2) (-12 (-4 *3 (-1045)) (-5 *1 (-1229 *3 *2)) (-4 *2 (-1233 *3)))))
-(-10 -7 (-15 -1711 (|#2| |#2| |#2|)) (-15 -3261 (|#2| |#2| |#2|)) (-15 -1395 (|#2| |#2| |#2| (-767) (-767))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-4030 (((-1257 |#2|) $ (-767)) NIL)) (-2606 (((-640 (-1075)) $) NIL)) (-1787 (($ (-1165 |#2|)) NIL)) (-2139 (((-1165 $) $ (-1075)) NIL) (((-1165 |#2|) $) NIL)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#2| (-555)))) (-4223 (($ $) NIL (|has| |#2| (-555)))) (-3156 (((-112) $) NIL (|has| |#2| (-555)))) (-1779 (((-767) $) NIL) (((-767) $ (-640 (-1075))) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3724 (($ $ $) NIL (|has| |#2| (-555)))) (-2424 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-4335 (($ $) NIL (|has| |#2| (-452)))) (-3205 (((-418 $) $) NIL (|has| |#2| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-1919 (((-112) $ $) NIL (|has| |#2| (-363)))) (-3729 (($ $ (-767)) NIL)) (-2618 (($ $ (-767)) NIL)) (-3018 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-452)))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-1075) "failed") $) NIL)) (-2058 ((|#2| $) NIL) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-1075) $) NIL)) (-2742 (($ $ $ (-1075)) NIL (|has| |#2| (-172))) ((|#2| $ $) NIL (|has| |#2| (-172)))) (-3090 (($ $ $) NIL (|has| |#2| (-363)))) (-2751 (($ $) NIL)) (-2950 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-3050 (($ $ $) NIL (|has| |#2| (-363)))) (-4369 (($ $ $) NIL)) (-2906 (($ $ $) NIL (|has| |#2| (-555)))) (-2521 (((-2 (|:| -2311 |#2|) (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#2| (-555)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#2| (-363)))) (-1300 (($ $) NIL (|has| |#2| (-452))) (($ $ (-1075)) NIL (|has| |#2| (-452)))) (-2739 (((-640 $) $) NIL)) (-2468 (((-112) $) NIL (|has| |#2| (-905)))) (-3554 (($ $ |#2| (-767) $) NIL)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1075) (-882 (-379))) (|has| |#2| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1075) (-882 (-563))) (|has| |#2| (-882 (-563)))))) (-3254 (((-767) $ $) NIL (|has| |#2| (-555)))) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) NIL)) (-2408 (((-3 $ "failed") $) NIL (|has| |#2| (-1144)))) (-2596 (($ (-1165 |#2|) (-1075)) NIL) (($ (-1165 $) (-1075)) NIL)) (-1351 (($ $ (-767)) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#2| (-363)))) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-2588 (($ |#2| (-767)) 17) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ (-1075)) NIL) (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL)) (-2048 (((-767) $) NIL) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-3084 (($ $ $) NIL (|has| |#2| (-846)))) (-1777 (($ $ $) NIL (|has| |#2| (-846)))) (-2803 (($ (-1 (-767) (-767)) $) NIL)) (-2240 (($ (-1 |#2| |#2|) $) NIL)) (-1580 (((-1165 |#2|) $) NIL)) (-4234 (((-3 (-1075) "failed") $) NIL)) (-2716 (($ $) NIL)) (-2726 ((|#2| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-3573 (((-1151) $) NIL)) (-3839 (((-2 (|:| -3490 $) (|:| -1972 $)) $ (-767)) NIL)) (-3733 (((-3 (-640 $) "failed") $) NIL)) (-2919 (((-3 (-640 $) "failed") $) NIL)) (-4086 (((-3 (-2 (|:| |var| (-1075)) (|:| -1654 (-767))) "failed") $) NIL)) (-3698 (($ $) NIL (|has| |#2| (-38 (-407 (-563)))))) (-2523 (($) NIL (|has| |#2| (-1144)) CONST)) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) NIL)) (-2706 ((|#2| $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#2| (-452)))) (-3548 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-3817 (($ $ (-767) |#2| $) NIL)) (-1876 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2174 (((-418 $) $) NIL (|has| |#2| (-905)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#2| (-363)))) (-3008 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#2| (-363)))) (-1540 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-1075) |#2|) NIL) (($ $ (-640 (-1075)) (-640 |#2|)) NIL) (($ $ (-1075) $) NIL) (($ $ (-640 (-1075)) (-640 $)) NIL)) (-2628 (((-767) $) NIL (|has| |#2| (-363)))) (-2309 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-407 $) (-407 $) (-407 $)) NIL (|has| |#2| (-555))) ((|#2| (-407 $) |#2|) NIL (|has| |#2| (-363))) (((-407 $) $ (-407 $)) NIL (|has| |#2| (-555)))) (-3862 (((-3 $ "failed") $ (-767)) NIL)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#2| (-363)))) (-2315 (($ $ (-1075)) NIL (|has| |#2| (-172))) ((|#2| $) NIL (|has| |#2| (-172)))) (-4202 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) $) NIL)) (-4167 (((-767) $) NIL) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-2220 (((-888 (-379)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-379)))) (|has| |#2| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-563)))) (|has| |#2| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-1075) (-611 (-536))) (|has| |#2| (-611 (-536)))))) (-1836 ((|#2| $) NIL (|has| |#2| (-452))) (($ $ (-1075)) NIL (|has| |#2| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-905))))) (-1346 (((-3 $ "failed") $ $) NIL (|has| |#2| (-555))) (((-3 (-407 $) "failed") (-407 $) $) NIL (|has| |#2| (-555)))) (-1693 (((-858) $) 13) (($ (-563)) NIL) (($ |#2|) NIL) (($ (-1075)) NIL) (($ (-1253 |#1|)) 19) (($ (-407 (-563))) NIL (-4032 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#2| (-555)))) (-1337 (((-640 |#2|) $) NIL)) (-4319 ((|#2| $ (-767)) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2779 (((-3 $ "failed") $) NIL (-4032 (-12 (|has| $ (-145)) (|has| |#2| (-905))) (|has| |#2| (-145))))) (-1675 (((-767)) NIL)) (-2793 (($ $ $ (-767)) NIL (|has| |#2| (-172)))) (-2126 (((-112) $ $) NIL (|has| |#2| (-555)))) (-2241 (($) NIL T CONST)) (-2254 (($) 14 T CONST)) (-3209 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1778 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1718 (((-112) $ $) NIL)) (-1768 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1837 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#2| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#2| (-38 (-407 (-563))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-1230 |#1| |#2|) (-13 (-1233 |#2|) (-613 (-1253 |#1|)) (-10 -8 (-15 -3817 ($ $ (-767) |#2| $)))) (-1169) (-1045)) (T -1230))
-((-3817 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-767)) (-5 *1 (-1230 *4 *3)) (-14 *4 (-1169)) (-4 *3 (-1045)))))
-(-13 (-1233 |#2|) (-613 (-1253 |#1|)) (-10 -8 (-15 -3817 ($ $ (-767) |#2| $))))
-((-2240 ((|#4| (-1 |#3| |#1|) |#2|) 22)))
-(((-1231 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2240 (|#4| (-1 |#3| |#1|) |#2|))) (-1045) (-1233 |#1|) (-1045) (-1233 |#3|)) (T -1231))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-4 *2 (-1233 *6)) (-5 *1 (-1231 *5 *4 *6 *2)) (-4 *4 (-1233 *5)))))
-(-10 -7 (-15 -2240 (|#4| (-1 |#3| |#1|) |#2|)))
-((-4030 (((-1257 |#2|) $ (-767)) 114)) (-2606 (((-640 (-1075)) $) 15)) (-1787 (($ (-1165 |#2|)) 67)) (-1779 (((-767) $) NIL) (((-767) $ (-640 (-1075))) 18)) (-2424 (((-418 (-1165 $)) (-1165 $)) 184)) (-4335 (($ $) 174)) (-3205 (((-418 $) $) 172)) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 82)) (-3729 (($ $ (-767)) 71)) (-2618 (($ $ (-767)) 73)) (-3018 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 130)) (-2131 (((-3 |#2| "failed") $) 117) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 (-563) "failed") $) NIL) (((-3 (-1075) "failed") $) NIL)) (-2058 ((|#2| $) 115) (((-407 (-563)) $) NIL) (((-563) $) NIL) (((-1075) $) NIL)) (-2906 (($ $ $) 151)) (-2521 (((-2 (|:| -2311 |#2|) (|:| -3490 $) (|:| -1972 $)) $ $) 153)) (-3254 (((-767) $ $) 169)) (-2408 (((-3 $ "failed") $) 123)) (-2588 (($ |#2| (-767)) NIL) (($ $ (-1075) (-767)) 47) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2048 (((-767) $) NIL) (((-767) $ (-1075)) 42) (((-640 (-767)) $ (-640 (-1075))) 43)) (-1580 (((-1165 |#2|) $) 59)) (-4234 (((-3 (-1075) "failed") $) 40)) (-3839 (((-2 (|:| -3490 $) (|:| -1972 $)) $ (-767)) 70)) (-3698 (($ $) 196)) (-2523 (($) 119)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 181)) (-1876 (((-418 (-1165 $)) (-1165 $)) 88)) (-3116 (((-418 (-1165 $)) (-1165 $)) 86)) (-2174 (((-418 $) $) 107)) (-1540 (($ $ (-640 (-294 $))) 39) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-1075) |#2|) 31) (($ $ (-640 (-1075)) (-640 |#2|)) 28) (($ $ (-1075) $) 25) (($ $ (-640 (-1075)) (-640 $)) 23)) (-2628 (((-767) $) 187)) (-2309 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-407 $) (-407 $) (-407 $)) 147) ((|#2| (-407 $) |#2|) 186) (((-407 $) $ (-407 $)) 168)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 190)) (-4202 (($ $ (-1075)) 140) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) 138) (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) 137) (($ $ (-1 |#2| |#2|) $) 134)) (-4167 (((-767) $) NIL) (((-767) $ (-1075)) 16) (((-640 (-767)) $ (-640 (-1075))) 20)) (-1836 ((|#2| $) NIL) (($ $ (-1075)) 125)) (-1346 (((-3 $ "failed") $ $) 161) (((-3 (-407 $) "failed") (-407 $) $) 157)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) NIL) (($ (-1075)) 51) (($ (-407 (-563))) NIL) (($ $) NIL)))
-(((-1232 |#1| |#2|) (-10 -8 (-15 -1693 (|#1| |#1|)) (-15 -3385 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))) (-15 -3205 ((-418 |#1|) |#1|)) (-15 -4335 (|#1| |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -2523 (|#1|)) (-15 -2408 ((-3 |#1| "failed") |#1|)) (-15 -2309 ((-407 |#1|) |#1| (-407 |#1|))) (-15 -2628 ((-767) |#1|)) (-15 -2452 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -3698 (|#1| |#1|)) (-15 -2309 (|#2| (-407 |#1|) |#2|)) (-15 -3018 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -2521 ((-2 (|:| -2311 |#2|) (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -2906 (|#1| |#1| |#1|)) (-15 -1346 ((-3 (-407 |#1|) "failed") (-407 |#1|) |#1|)) (-15 -1346 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3254 ((-767) |#1| |#1|)) (-15 -2309 ((-407 |#1|) (-407 |#1|) (-407 |#1|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -2618 (|#1| |#1| (-767))) (-15 -3729 (|#1| |#1| (-767))) (-15 -3839 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| (-767))) (-15 -1787 (|#1| (-1165 |#2|))) (-15 -1580 ((-1165 |#2|) |#1|)) (-15 -4030 ((-1257 |#2|) |#1| (-767))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -2309 (|#1| |#1| |#1|)) (-15 -2309 (|#2| |#1| |#2|)) (-15 -2174 ((-418 |#1|) |#1|)) (-15 -2424 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -3116 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -1876 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2748 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -1836 (|#1| |#1| (-1075))) (-15 -2606 ((-640 (-1075)) |#1|)) (-15 -1779 ((-767) |#1| (-640 (-1075)))) (-15 -1779 ((-767) |#1|)) (-15 -2588 (|#1| |#1| (-640 (-1075)) (-640 (-767)))) (-15 -2588 (|#1| |#1| (-1075) (-767))) (-15 -2048 ((-640 (-767)) |#1| (-640 (-1075)))) (-15 -2048 ((-767) |#1| (-1075))) (-15 -4234 ((-3 (-1075) "failed") |#1|)) (-15 -4167 ((-640 (-767)) |#1| (-640 (-1075)))) (-15 -4167 ((-767) |#1| (-1075))) (-15 -1693 (|#1| (-1075))) (-15 -2131 ((-3 (-1075) "failed") |#1|)) (-15 -2058 ((-1075) |#1|)) (-15 -1540 (|#1| |#1| (-640 (-1075)) (-640 |#1|))) (-15 -1540 (|#1| |#1| (-1075) |#1|)) (-15 -1540 (|#1| |#1| (-640 (-1075)) (-640 |#2|))) (-15 -1540 (|#1| |#1| (-1075) |#2|)) (-15 -1540 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#1| |#1|)) (-15 -1540 (|#1| |#1| (-294 |#1|))) (-15 -1540 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -4167 ((-767) |#1|)) (-15 -2588 (|#1| |#2| (-767))) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -1693 (|#1| |#2|)) (-15 -2048 ((-767) |#1|)) (-15 -1836 (|#2| |#1|)) (-15 -4202 (|#1| |#1| (-640 (-1075)) (-640 (-767)))) (-15 -4202 (|#1| |#1| (-1075) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1075)))) (-15 -4202 (|#1| |#1| (-1075))) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|))) (-1233 |#2|) (-1045)) (T -1232))
-NIL
-(-10 -8 (-15 -1693 (|#1| |#1|)) (-15 -3385 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))) (-15 -3205 ((-418 |#1|) |#1|)) (-15 -4335 (|#1| |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -2523 (|#1|)) (-15 -2408 ((-3 |#1| "failed") |#1|)) (-15 -2309 ((-407 |#1|) |#1| (-407 |#1|))) (-15 -2628 ((-767) |#1|)) (-15 -2452 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -3698 (|#1| |#1|)) (-15 -2309 (|#2| (-407 |#1|) |#2|)) (-15 -3018 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -2521 ((-2 (|:| -2311 |#2|) (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| |#1|)) (-15 -2906 (|#1| |#1| |#1|)) (-15 -1346 ((-3 (-407 |#1|) "failed") (-407 |#1|) |#1|)) (-15 -1346 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3254 ((-767) |#1| |#1|)) (-15 -2309 ((-407 |#1|) (-407 |#1|) (-407 |#1|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -2618 (|#1| |#1| (-767))) (-15 -3729 (|#1| |#1| (-767))) (-15 -3839 ((-2 (|:| -3490 |#1|) (|:| -1972 |#1|)) |#1| (-767))) (-15 -1787 (|#1| (-1165 |#2|))) (-15 -1580 ((-1165 |#2|) |#1|)) (-15 -4030 ((-1257 |#2|) |#1| (-767))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4202 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4202 (|#1| |#1| (-1169) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1169)))) (-15 -4202 (|#1| |#1| (-1169))) (-15 -4202 (|#1| |#1|)) (-15 -4202 (|#1| |#1| (-767))) (-15 -2309 (|#1| |#1| |#1|)) (-15 -2309 (|#2| |#1| |#2|)) (-15 -2174 ((-418 |#1|) |#1|)) (-15 -2424 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -3116 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -1876 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2748 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -1836 (|#1| |#1| (-1075))) (-15 -2606 ((-640 (-1075)) |#1|)) (-15 -1779 ((-767) |#1| (-640 (-1075)))) (-15 -1779 ((-767) |#1|)) (-15 -2588 (|#1| |#1| (-640 (-1075)) (-640 (-767)))) (-15 -2588 (|#1| |#1| (-1075) (-767))) (-15 -2048 ((-640 (-767)) |#1| (-640 (-1075)))) (-15 -2048 ((-767) |#1| (-1075))) (-15 -4234 ((-3 (-1075) "failed") |#1|)) (-15 -4167 ((-640 (-767)) |#1| (-640 (-1075)))) (-15 -4167 ((-767) |#1| (-1075))) (-15 -1693 (|#1| (-1075))) (-15 -2131 ((-3 (-1075) "failed") |#1|)) (-15 -2058 ((-1075) |#1|)) (-15 -1540 (|#1| |#1| (-640 (-1075)) (-640 |#1|))) (-15 -1540 (|#1| |#1| (-1075) |#1|)) (-15 -1540 (|#1| |#1| (-640 (-1075)) (-640 |#2|))) (-15 -1540 (|#1| |#1| (-1075) |#2|)) (-15 -1540 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1540 (|#1| |#1| |#1| |#1|)) (-15 -1540 (|#1| |#1| (-294 |#1|))) (-15 -1540 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -4167 ((-767) |#1|)) (-15 -2588 (|#1| |#2| (-767))) (-15 -2131 ((-3 (-563) "failed") |#1|)) (-15 -2058 ((-563) |#1|)) (-15 -2131 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2058 ((-407 (-563)) |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2131 ((-3 |#2| "failed") |#1|)) (-15 -1693 (|#1| |#2|)) (-15 -2048 ((-767) |#1|)) (-15 -1836 (|#2| |#1|)) (-15 -4202 (|#1| |#1| (-640 (-1075)) (-640 (-767)))) (-15 -4202 (|#1| |#1| (-1075) (-767))) (-15 -4202 (|#1| |#1| (-640 (-1075)))) (-15 -4202 (|#1| |#1| (-1075))) (-15 -1693 (|#1| (-563))) (-15 -1693 ((-858) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4030 (((-1257 |#1|) $ (-767)) 238)) (-2606 (((-640 (-1075)) $) 110)) (-1787 (($ (-1165 |#1|)) 236)) (-2139 (((-1165 $) $ (-1075)) 125) (((-1165 |#1|) $) 124)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 87 (|has| |#1| (-555)))) (-4223 (($ $) 88 (|has| |#1| (-555)))) (-3156 (((-112) $) 90 (|has| |#1| (-555)))) (-1779 (((-767) $) 112) (((-767) $ (-640 (-1075))) 111)) (-1495 (((-3 $ "failed") $ $) 19)) (-3724 (($ $ $) 223 (|has| |#1| (-555)))) (-2424 (((-418 (-1165 $)) (-1165 $)) 100 (|has| |#1| (-905)))) (-4335 (($ $) 98 (|has| |#1| (-452)))) (-3205 (((-418 $) $) 97 (|has| |#1| (-452)))) (-2748 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 103 (|has| |#1| (-905)))) (-1919 (((-112) $ $) 208 (|has| |#1| (-363)))) (-3729 (($ $ (-767)) 231)) (-2618 (($ $ (-767)) 230)) (-3018 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 218 (|has| |#1| (-452)))) (-4239 (($) 17 T CONST)) (-2131 (((-3 |#1| "failed") $) 164) (((-3 (-407 (-563)) "failed") $) 161 (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) 159 (|has| |#1| (-1034 (-563)))) (((-3 (-1075) "failed") $) 136)) (-2058 ((|#1| $) 163) (((-407 (-563)) $) 162 (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) 160 (|has| |#1| (-1034 (-563)))) (((-1075) $) 137)) (-2742 (($ $ $ (-1075)) 108 (|has| |#1| (-172))) ((|#1| $ $) 226 (|has| |#1| (-172)))) (-3090 (($ $ $) 212 (|has| |#1| (-363)))) (-2751 (($ $) 154)) (-2950 (((-684 (-563)) (-684 $)) 134 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 133 (|has| |#1| (-636 (-563)))) (((-2 (|:| -2835 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 132) (((-684 |#1|) (-684 $)) 131)) (-3400 (((-3 $ "failed") $) 33)) (-3050 (($ $ $) 211 (|has| |#1| (-363)))) (-4369 (($ $ $) 229)) (-2906 (($ $ $) 220 (|has| |#1| (-555)))) (-2521 (((-2 (|:| -2311 |#1|) (|:| -3490 $) (|:| -1972 $)) $ $) 219 (|has| |#1| (-555)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 206 (|has| |#1| (-363)))) (-1300 (($ $) 176 (|has| |#1| (-452))) (($ $ (-1075)) 105 (|has| |#1| (-452)))) (-2739 (((-640 $) $) 109)) (-2468 (((-112) $) 96 (|has| |#1| (-905)))) (-3554 (($ $ |#1| (-767) $) 172)) (-3787 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 84 (-12 (|has| (-1075) (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 83 (-12 (|has| (-1075) (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-3254 (((-767) $ $) 224 (|has| |#1| (-555)))) (-3827 (((-112) $) 31)) (-4096 (((-767) $) 169)) (-2408 (((-3 $ "failed") $) 204 (|has| |#1| (-1144)))) (-2596 (($ (-1165 |#1|) (-1075)) 117) (($ (-1165 $) (-1075)) 116)) (-1351 (($ $ (-767)) 235)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 215 (|has| |#1| (-363)))) (-1368 (((-640 $) $) 126)) (-3920 (((-112) $) 152)) (-2588 (($ |#1| (-767)) 153) (($ $ (-1075) (-767)) 119) (($ $ (-640 (-1075)) (-640 (-767))) 118)) (-2625 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $ (-1075)) 120) (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 233)) (-2048 (((-767) $) 170) (((-767) $ (-1075)) 122) (((-640 (-767)) $ (-640 (-1075))) 121)) (-3084 (($ $ $) 79 (|has| |#1| (-846)))) (-1777 (($ $ $) 78 (|has| |#1| (-846)))) (-2803 (($ (-1 (-767) (-767)) $) 171)) (-2240 (($ (-1 |#1| |#1|) $) 151)) (-1580 (((-1165 |#1|) $) 237)) (-4234 (((-3 (-1075) "failed") $) 123)) (-2716 (($ $) 149)) (-2726 ((|#1| $) 148)) (-3513 (($ (-640 $)) 94 (|has| |#1| (-452))) (($ $ $) 93 (|has| |#1| (-452)))) (-3573 (((-1151) $) 9)) (-3839 (((-2 (|:| -3490 $) (|:| -1972 $)) $ (-767)) 232)) (-3733 (((-3 (-640 $) "failed") $) 114)) (-2919 (((-3 (-640 $) "failed") $) 115)) (-4086 (((-3 (-2 (|:| |var| (-1075)) (|:| -1654 (-767))) "failed") $) 113)) (-3698 (($ $) 216 (|has| |#1| (-38 (-407 (-563)))))) (-2523 (($) 203 (|has| |#1| (-1144)) CONST)) (-1694 (((-1113) $) 10)) (-2696 (((-112) $) 166)) (-2706 ((|#1| $) 167)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 95 (|has| |#1| (-452)))) (-3548 (($ (-640 $)) 92 (|has| |#1| (-452))) (($ $ $) 91 (|has| |#1| (-452)))) (-1876 (((-418 (-1165 $)) (-1165 $)) 102 (|has| |#1| (-905)))) (-3116 (((-418 (-1165 $)) (-1165 $)) 101 (|has| |#1| (-905)))) (-2174 (((-418 $) $) 99 (|has| |#1| (-905)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 214 (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 213 (|has| |#1| (-363)))) (-3008 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-555))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 207 (|has| |#1| (-363)))) (-1540 (($ $ (-640 (-294 $))) 145) (($ $ (-294 $)) 144) (($ $ $ $) 143) (($ $ (-640 $) (-640 $)) 142) (($ $ (-1075) |#1|) 141) (($ $ (-640 (-1075)) (-640 |#1|)) 140) (($ $ (-1075) $) 139) (($ $ (-640 (-1075)) (-640 $)) 138)) (-2628 (((-767) $) 209 (|has| |#1| (-363)))) (-2309 ((|#1| $ |#1|) 256) (($ $ $) 255) (((-407 $) (-407 $) (-407 $)) 225 (|has| |#1| (-555))) ((|#1| (-407 $) |#1|) 217 (|has| |#1| (-363))) (((-407 $) $ (-407 $)) 205 (|has| |#1| (-555)))) (-3862 (((-3 $ "failed") $ (-767)) 234)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 210 (|has| |#1| (-363)))) (-2315 (($ $ (-1075)) 107 (|has| |#1| (-172))) ((|#1| $) 227 (|has| |#1| (-172)))) (-4202 (($ $ (-1075)) 42) (($ $ (-640 (-1075))) 41) (($ $ (-1075) (-767)) 40) (($ $ (-640 (-1075)) (-640 (-767))) 39) (($ $ (-767)) 253) (($ $) 251) (($ $ (-1169)) 250 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 249 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 248 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 247 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 240) (($ $ (-1 |#1| |#1|)) 239) (($ $ (-1 |#1| |#1|) $) 228)) (-4167 (((-767) $) 150) (((-767) $ (-1075)) 130) (((-640 (-767)) $ (-640 (-1075))) 129)) (-2220 (((-888 (-379)) $) 82 (-12 (|has| (-1075) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) 81 (-12 (|has| (-1075) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) 80 (-12 (|has| (-1075) (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-1836 ((|#1| $) 175 (|has| |#1| (-452))) (($ $ (-1075)) 106 (|has| |#1| (-452)))) (-1377 (((-3 (-1257 $) "failed") (-684 $)) 104 (-2190 (|has| $ (-145)) (|has| |#1| (-905))))) (-1346 (((-3 $ "failed") $ $) 222 (|has| |#1| (-555))) (((-3 (-407 $) "failed") (-407 $) $) 221 (|has| |#1| (-555)))) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 165) (($ (-1075)) 135) (($ (-407 (-563))) 72 (-4032 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563)))))) (($ $) 85 (|has| |#1| (-555)))) (-1337 (((-640 |#1|) $) 168)) (-4319 ((|#1| $ (-767)) 155) (($ $ (-1075) (-767)) 128) (($ $ (-640 (-1075)) (-640 (-767))) 127)) (-2779 (((-3 $ "failed") $) 73 (-4032 (-2190 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-1675 (((-767)) 28)) (-2793 (($ $ $ (-767)) 173 (|has| |#1| (-172)))) (-2126 (((-112) $ $) 89 (|has| |#1| (-555)))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ (-1075)) 38) (($ $ (-640 (-1075))) 37) (($ $ (-1075) (-767)) 36) (($ $ (-640 (-1075)) (-640 (-767))) 35) (($ $ (-767)) 254) (($ $) 252) (($ $ (-1169)) 246 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 245 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 244 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 243 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 242) (($ $ (-1 |#1| |#1|)) 241)) (-1778 (((-112) $ $) 76 (|has| |#1| (-846)))) (-1756 (((-112) $ $) 75 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1768 (((-112) $ $) 77 (|has| |#1| (-846)))) (-1744 (((-112) $ $) 74 (|has| |#1| (-846)))) (-1837 (($ $ |#1|) 156 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 158 (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) 157 (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3944 (((-1249 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-307)) (|has| |#1| (-363))))) (-2605 (((-640 (-1075)) $) NIL)) (-2517 (((-1169) $) 10)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-3231 (($ $) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-3211 (((-112) $) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-1763 (($ $ (-563)) NIL) (($ $ (-563) (-563)) NIL)) (-1787 (((-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|))) $) NIL)) (-2609 (((-1249 |#1| |#2| |#3|) $) NIL)) (-2591 (((-3 (-1249 |#1| |#2| |#3|) "failed") $) NIL)) (-2651 (((-1249 |#1| |#2| |#3|) $) NIL)) (-1770 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) NIL)) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-1798 (($ $) NIL (|has| |#1| (-363)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2185 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-2003 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1747 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2807 (((-563) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-3049 (($ (-1149 (-2 (|:| |k| (-563)) (|:| |c| |#1|)))) NIL)) (-1793 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-1249 |#1| |#2| |#3|) "failed") $) NIL) (((-3 (-1169) "failed") $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-1169))) (|has| |#1| (-363)))) (((-3 (-407 (-563)) "failed") $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363)))) (((-3 (-563) "failed") $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363))))) (-2057 (((-1249 |#1| |#2| |#3|) $) NIL) (((-1169) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-1169))) (|has| |#1| (-363)))) (((-407 (-563)) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363)))) (((-563) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363))))) (-2600 (($ $) NIL) (($ (-563) $) NIL)) (-3094 (($ $ $) NIL (|has| |#1| (-363)))) (-2750 (($ $) NIL)) (-1476 (((-684 (-1249 |#1| |#2| |#3|)) (-684 $)) NIL (|has| |#1| (-363))) (((-2 (|:| -1957 (-684 (-1249 |#1| |#2| |#3|))) (|:| |vec| (-1257 (-1249 |#1| |#2| |#3|)))) (-684 $) (-1257 $)) NIL (|has| |#1| (-363))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-636 (-563))) (|has| |#1| (-363)))) (((-684 (-563)) (-684 $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-636 (-563))) (|has| |#1| (-363))))) (-3951 (((-3 $ "failed") $) NIL)) (-2580 (((-407 (-948 |#1|)) $ (-563)) NIL (|has| |#1| (-555))) (((-407 (-948 |#1|)) $ (-563) (-563)) NIL (|has| |#1| (-555)))) (-1690 (($) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-545)) (|has| |#1| (-363))))) (-3054 (($ $ $) NIL (|has| |#1| (-363)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2560 (((-112) $) NIL (|has| |#1| (-363)))) (-3414 (((-112) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-3381 (((-112) $) NIL)) (-2179 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-882 (-379))) (|has| |#1| (-363)))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-882 (-563))) (|has| |#1| (-363))))) (-1775 (((-563) $) NIL) (((-563) $ (-563)) NIL)) (-3401 (((-112) $) NIL)) (-2043 (($ $) NIL (|has| |#1| (-363)))) (-2143 (((-1249 |#1| |#2| |#3|) $) NIL (|has| |#1| (-363)))) (-2172 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1983 (((-3 $ "failed") $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1144)) (|has| |#1| (-363))))) (-3426 (((-112) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-1821 (($ $ (-917)) NIL)) (-2072 (($ (-1 |#1| (-563)) $) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-563)) 17) (($ $ (-1075) (-563)) NIL) (($ $ (-640 (-1075)) (-640 (-563))) NIL)) (-3088 (($ $ $) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1776 (($ $ $) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-363)))) (-4372 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2659 (($ (-563) (-1249 |#1| |#2| |#3|)) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL (|has| |#1| (-363)))) (-2062 (($ $) 25 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) NIL (-4034 (-12 (|has| |#1| (-15 -2062 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2605 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193))))) (($ $ (-1253 |#2|)) 26 (|has| |#1| (-38 (-407 (-563)))))) (-2522 (($) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1144)) (|has| |#1| (-363))) CONST)) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-3935 (($ $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-307)) (|has| |#1| (-363))))) (-3954 (((-1249 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-545)) (|has| |#1| (-363))))) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-2173 (((-418 $) $) NIL (|has| |#1| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-1751 (($ $ (-563)) NIL)) (-3012 (((-3 $ "failed") $ $) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3372 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1542 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-563))))) (($ $ (-1169) (-1249 |#1| |#2| |#3|)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-514 (-1169) (-1249 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-640 (-1169)) (-640 (-1249 |#1| |#2| |#3|))) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-514 (-1169) (-1249 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-640 (-294 (-1249 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-309 (-1249 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-294 (-1249 |#1| |#2| |#3|))) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-309 (-1249 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-309 (-1249 |#1| |#2| |#3|))) (|has| |#1| (-363)))) (($ $ (-640 (-1249 |#1| |#2| |#3|)) (-640 (-1249 |#1| |#2| |#3|))) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-309 (-1249 |#1| |#2| |#3|))) (|has| |#1| (-363))))) (-1993 (((-767) $) NIL (|has| |#1| (-363)))) (-2308 ((|#1| $ (-563)) NIL) (($ $ $) NIL (|has| (-563) (-1105))) (($ $ (-1249 |#1| |#2| |#3|)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-286 (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|))) (|has| |#1| (-363))))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-4203 (($ $ (-1 (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|))) NIL (|has| |#1| (-363))) (($ $ (-1 (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|)) (-767)) NIL (|has| |#1| (-363))) (($ $ (-1253 |#2|)) 24) (($ $ (-767)) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) 23 (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169) (-767)) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-640 (-1169))) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169)) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))) (-2033 (($ $) NIL (|has| |#1| (-363)))) (-2153 (((-1249 |#1| |#2| |#3|) $) NIL (|has| |#1| (-363)))) (-3871 (((-563) $) NIL)) (-1805 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2219 (((-536) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-611 (-536))) (|has| |#1| (-363)))) (((-379) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1018)) (|has| |#1| (-363)))) (((-225) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1018)) (|has| |#1| (-363)))) (((-888 (-379)) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-611 (-888 (-379)))) (|has| |#1| (-363)))) (((-888 (-563)) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-611 (-888 (-563)))) (|has| |#1| (-363))))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))))) (-3369 (($ $) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1249 |#1| |#2| |#3|)) NIL) (($ (-1253 |#2|)) 22) (($ (-1169)) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-1169))) (|has| |#1| (-363)))) (($ $) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555)))) (($ (-407 (-563))) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-1034 (-563))) (|has| |#1| (-363))) (|has| |#1| (-38 (-407 (-563))))))) (-3244 ((|#1| $ (-563)) NIL)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-145)) (|has| |#1| (-363))) (|has| |#1| (-145))))) (-3914 (((-767)) NIL)) (-3412 ((|#1| $) 11)) (-3965 (((-1249 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-545)) (|has| |#1| (-363))))) (-1839 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-905)) (|has| |#1| (-363))) (|has| |#1| (-555))))) (-1816 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1402 ((|#1| $ (-563)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-563)))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-1311 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1462 (($ $) NIL (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))))) (-2239 (($) 19 T CONST)) (-2253 (($) 15 T CONST)) (-3213 (($ $ (-1 (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|))) NIL (|has| |#1| (-363))) (($ $ (-1 (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|)) (-767)) NIL (|has| |#1| (-363))) (($ $ (-767)) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-233)) (|has| |#1| (-363))) (|has| |#1| (-15 * (|#1| (-563) |#1|))))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169) (-767)) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-640 (-1169))) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169)))))) (($ $ (-1169)) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-896 (-1169))) (|has| |#1| (-363))) (-12 (|has| |#1| (-15 * (|#1| (-563) |#1|))) (|has| |#1| (-896 (-1169))))))) (-1779 (((-112) $ $) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1754 (((-112) $ $) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1743 (((-112) $ $) NIL (-4034 (-12 (|has| (-1249 |#1| |#2| |#3|) (-816)) (|has| |#1| (-363))) (-12 (|has| (-1249 |#1| |#2| |#3|) (-846)) (|has| |#1| (-363)))))) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363))) (($ (-1249 |#1| |#2| |#3|) (-1249 |#1| |#2| |#3|)) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) 20)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1249 |#1| |#2| |#3|)) NIL (|has| |#1| (-363))) (($ (-1249 |#1| |#2| |#3|) $) NIL (|has| |#1| (-363))) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
+(((-1221 |#1| |#2| |#3|) (-13 (-1219 |#1| (-1249 |#1| |#2| |#3|)) (-10 -8 (-15 -1692 ($ (-1253 |#2|))) (-15 -4203 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1253 |#2|))) |%noBranch|))) (-1045) (-1169) |#1|) (T -1221))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1221 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-4203 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1221 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-2062 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1221 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
+(-13 (-1219 |#1| (-1249 |#1| |#2| |#3|)) (-10 -8 (-15 -1692 ($ (-1253 |#2|))) (-15 -4203 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1253 |#2|))) |%noBranch|)))
+((-2626 (((-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| |#1|) (|:| -3259 (-563)))))) |#1| (-112)) 12)) (-2619 (((-418 |#1|) |#1|) 22)) (-2173 (((-418 |#1|) |#1|) 21)))
+(((-1222 |#1|) (-10 -7 (-15 -2173 ((-418 |#1|) |#1|)) (-15 -2619 ((-418 |#1|) |#1|)) (-15 -2626 ((-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| |#1|) (|:| -3259 (-563)))))) |#1| (-112)))) (-1233 (-563))) (T -1222))
+((-2626 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| *3) (|:| -3259 (-563))))))) (-5 *1 (-1222 *3)) (-4 *3 (-1233 (-563))))) (-2619 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-1222 *3)) (-4 *3 (-1233 (-563))))) (-2173 (*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-1222 *3)) (-4 *3 (-1233 (-563))))))
+(-10 -7 (-15 -2173 ((-418 |#1|) |#1|)) (-15 -2619 ((-418 |#1|) |#1|)) (-15 -2626 ((-2 (|:| |contp| (-563)) (|:| -1337 (-640 (-2 (|:| |irr| |#1|) (|:| -3259 (-563)))))) |#1| (-112))))
+((-2238 (((-1149 |#2|) (-1 |#2| |#1|) (-1224 |#1|)) 23 (|has| |#1| (-844))) (((-1224 |#2|) (-1 |#2| |#1|) (-1224 |#1|)) 17)))
+(((-1223 |#1| |#2|) (-10 -7 (-15 -2238 ((-1224 |#2|) (-1 |#2| |#1|) (-1224 |#1|))) (IF (|has| |#1| (-844)) (-15 -2238 ((-1149 |#2|) (-1 |#2| |#1|) (-1224 |#1|))) |%noBranch|)) (-1208) (-1208)) (T -1223))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1224 *5)) (-4 *5 (-844)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-1149 *6)) (-5 *1 (-1223 *5 *6)))) (-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1224 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-1224 *6)) (-5 *1 (-1223 *5 *6)))))
+(-10 -7 (-15 -2238 ((-1224 |#2|) (-1 |#2| |#1|) (-1224 |#1|))) (IF (|has| |#1| (-844)) (-15 -2238 ((-1149 |#2|) (-1 |#2| |#1|) (-1224 |#1|))) |%noBranch|))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-4260 (($ |#1| |#1|) 9) (($ |#1|) 8)) (-2238 (((-1149 |#1|) (-1 |#1| |#1|) $) 41 (|has| |#1| (-844)))) (-3792 ((|#1| $) 14)) (-3289 ((|#1| $) 10)) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3302 (((-563) $) 18)) (-3781 ((|#1| $) 17)) (-3430 ((|#1| $) 11)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-2637 (((-112) $) 16)) (-2212 (((-1149 |#1|) $) 38 (|has| |#1| (-844))) (((-1149 |#1|) (-640 $)) 37 (|has| |#1| (-844)))) (-2219 (($ |#1|) 25)) (-1692 (($ (-1087 |#1|)) 24) (((-858) $) 34 (|has| |#1| (-1093)))) (-2177 (($ |#1| |#1|) 20) (($ |#1|) 19)) (-1464 (($ $ (-563)) 13)) (-1718 (((-112) $ $) 27 (|has| |#1| (-1093)))))
+(((-1224 |#1|) (-13 (-1086 |#1|) (-10 -8 (-15 -2177 ($ |#1|)) (-15 -4260 ($ |#1|)) (-15 -1692 ($ (-1087 |#1|))) (-15 -2637 ((-112) $)) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|) (IF (|has| |#1| (-844)) (-6 (-1088 |#1| (-1149 |#1|))) |%noBranch|))) (-1208)) (T -1224))
+((-2177 (*1 *1 *2) (-12 (-5 *1 (-1224 *2)) (-4 *2 (-1208)))) (-4260 (*1 *1 *2) (-12 (-5 *1 (-1224 *2)) (-4 *2 (-1208)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-1087 *3)) (-4 *3 (-1208)) (-5 *1 (-1224 *3)))) (-2637 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1224 *3)) (-4 *3 (-1208)))))
+(-13 (-1086 |#1|) (-10 -8 (-15 -2177 ($ |#1|)) (-15 -4260 ($ |#1|)) (-15 -1692 ($ (-1087 |#1|))) (-15 -2637 ((-112) $)) (IF (|has| |#1| (-1093)) (-6 (-1093)) |%noBranch|) (IF (|has| |#1| (-844)) (-6 (-1088 |#1| (-1149 |#1|))) |%noBranch|)))
+((-2238 (((-1230 |#3| |#4|) (-1 |#4| |#2|) (-1230 |#1| |#2|)) 15)))
+(((-1225 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2238 ((-1230 |#3| |#4|) (-1 |#4| |#2|) (-1230 |#1| |#2|)))) (-1169) (-1045) (-1169) (-1045)) (T -1225))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1230 *5 *6)) (-14 *5 (-1169)) (-4 *6 (-1045)) (-4 *8 (-1045)) (-5 *2 (-1230 *7 *8)) (-5 *1 (-1225 *5 *6 *7 *8)) (-14 *7 (-1169)))))
+(-10 -7 (-15 -2238 ((-1230 |#3| |#4|) (-1 |#4| |#2|) (-1230 |#1| |#2|))))
+((-2674 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-2655 ((|#1| |#3|) 13)) (-2663 ((|#3| |#3|) 19)))
+(((-1226 |#1| |#2| |#3|) (-10 -7 (-15 -2655 (|#1| |#3|)) (-15 -2663 (|#3| |#3|)) (-15 -2674 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-555) (-988 |#1|) (-1233 |#2|)) (T -1226))
+((-2674 (*1 *2 *3) (-12 (-4 *4 (-555)) (-4 *5 (-988 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1226 *4 *5 *3)) (-4 *3 (-1233 *5)))) (-2663 (*1 *2 *2) (-12 (-4 *3 (-555)) (-4 *4 (-988 *3)) (-5 *1 (-1226 *3 *4 *2)) (-4 *2 (-1233 *4)))) (-2655 (*1 *2 *3) (-12 (-4 *4 (-988 *2)) (-4 *2 (-555)) (-5 *1 (-1226 *2 *4 *3)) (-4 *3 (-1233 *4)))))
+(-10 -7 (-15 -2655 (|#1| |#3|)) (-15 -2663 (|#3| |#3|)) (-15 -2674 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-1456 (((-3 |#2| "failed") |#2| (-767) |#1|) 29)) (-2682 (((-3 |#2| "failed") |#2| (-767)) 30)) (-1479 (((-3 (-2 (|:| -1685 |#2|) (|:| -1700 |#2|)) "failed") |#2|) 42)) (-1490 (((-640 |#2|) |#2|) 44)) (-1469 (((-3 |#2| "failed") |#2| |#2|) 39)))
+(((-1227 |#1| |#2|) (-10 -7 (-15 -2682 ((-3 |#2| "failed") |#2| (-767))) (-15 -1456 ((-3 |#2| "failed") |#2| (-767) |#1|)) (-15 -1469 ((-3 |#2| "failed") |#2| |#2|)) (-15 -1479 ((-3 (-2 (|:| -1685 |#2|) (|:| -1700 |#2|)) "failed") |#2|)) (-15 -1490 ((-640 |#2|) |#2|))) (-13 (-555) (-147)) (-1233 |#1|)) (T -1227))
+((-1490 (*1 *2 *3) (-12 (-4 *4 (-13 (-555) (-147))) (-5 *2 (-640 *3)) (-5 *1 (-1227 *4 *3)) (-4 *3 (-1233 *4)))) (-1479 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-555) (-147))) (-5 *2 (-2 (|:| -1685 *3) (|:| -1700 *3))) (-5 *1 (-1227 *4 *3)) (-4 *3 (-1233 *4)))) (-1469 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-555) (-147))) (-5 *1 (-1227 *3 *2)) (-4 *2 (-1233 *3)))) (-1456 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-767)) (-4 *4 (-13 (-555) (-147))) (-5 *1 (-1227 *4 *2)) (-4 *2 (-1233 *4)))) (-2682 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-767)) (-4 *4 (-13 (-555) (-147))) (-5 *1 (-1227 *4 *2)) (-4 *2 (-1233 *4)))))
+(-10 -7 (-15 -2682 ((-3 |#2| "failed") |#2| (-767))) (-15 -1456 ((-3 |#2| "failed") |#2| (-767) |#1|)) (-15 -1469 ((-3 |#2| "failed") |#2| |#2|)) (-15 -1479 ((-3 (-2 (|:| -1685 |#2|) (|:| -1700 |#2|)) "failed") |#2|)) (-15 -1490 ((-640 |#2|) |#2|)))
+((-1502 (((-3 (-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) "failed") |#2| |#2|) 29)))
+(((-1228 |#1| |#2|) (-10 -7 (-15 -1502 ((-3 (-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) "failed") |#2| |#2|))) (-555) (-1233 |#1|)) (T -1228))
+((-1502 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-555)) (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-1228 *4 *3)) (-4 *3 (-1233 *4)))))
+(-10 -7 (-15 -1502 ((-3 (-2 (|:| -1765 |#2|) (|:| -3443 |#2|)) "failed") |#2| |#2|)))
+((-1513 ((|#2| |#2| |#2|) 19)) (-1527 ((|#2| |#2| |#2|) 30)) (-1539 ((|#2| |#2| |#2| (-767) (-767)) 36)))
+(((-1229 |#1| |#2|) (-10 -7 (-15 -1513 (|#2| |#2| |#2|)) (-15 -1527 (|#2| |#2| |#2|)) (-15 -1539 (|#2| |#2| |#2| (-767) (-767)))) (-1045) (-1233 |#1|)) (T -1229))
+((-1539 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-767)) (-4 *4 (-1045)) (-5 *1 (-1229 *4 *2)) (-4 *2 (-1233 *4)))) (-1527 (*1 *2 *2 *2) (-12 (-4 *3 (-1045)) (-5 *1 (-1229 *3 *2)) (-4 *2 (-1233 *3)))) (-1513 (*1 *2 *2 *2) (-12 (-4 *3 (-1045)) (-5 *1 (-1229 *3 *2)) (-4 *2 (-1233 *3)))))
+(-10 -7 (-15 -1513 (|#2| |#2| |#2|)) (-15 -1527 (|#2| |#2| |#2|)) (-15 -1539 (|#2| |#2| |#2| (-767) (-767))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-1740 (((-1257 |#2|) $ (-767)) NIL)) (-2605 (((-640 (-1075)) $) NIL)) (-1714 (($ (-1165 |#2|)) NIL)) (-2138 (((-1165 $) $ (-1075)) NIL) (((-1165 |#2|) $) NIL)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#2| (-555)))) (-3231 (($ $) NIL (|has| |#2| (-555)))) (-3211 (((-112) $) NIL (|has| |#2| (-555)))) (-3897 (((-767) $) NIL) (((-767) $ (-640 (-1075))) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-1601 (($ $ $) NIL (|has| |#2| (-555)))) (-2093 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-1798 (($ $) NIL (|has| |#2| (-452)))) (-2802 (((-418 $) $) NIL (|has| |#2| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2003 (((-112) $ $) NIL (|has| |#2| (-363)))) (-1660 (($ $ (-767)) NIL)) (-1647 (($ $ (-767)) NIL)) (-1550 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-452)))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#2| "failed") $) NIL) (((-3 (-407 (-563)) "failed") $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) NIL (|has| |#2| (-1034 (-563)))) (((-3 (-1075) "failed") $) NIL)) (-2057 ((|#2| $) NIL) (((-407 (-563)) $) NIL (|has| |#2| (-1034 (-407 (-563))))) (((-563) $) NIL (|has| |#2| (-1034 (-563)))) (((-1075) $) NIL)) (-1612 (($ $ $ (-1075)) NIL (|has| |#2| (-172))) ((|#2| $ $) NIL (|has| |#2| (-172)))) (-3094 (($ $ $) NIL (|has| |#2| (-363)))) (-2750 (($ $) NIL)) (-1476 (((-684 (-563)) (-684 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) NIL (|has| |#2| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#2|)) (|:| |vec| (-1257 |#2|))) (-684 $) (-1257 $)) NIL) (((-684 |#2|) (-684 $)) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3054 (($ $ $) NIL (|has| |#2| (-363)))) (-1634 (($ $ $) NIL)) (-1577 (($ $ $) NIL (|has| |#2| (-555)))) (-1564 (((-2 (|:| -2310 |#2|) (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#2| (-555)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#2| (-363)))) (-4151 (($ $) NIL (|has| |#2| (-452))) (($ $ (-1075)) NIL (|has| |#2| (-452)))) (-2738 (((-640 $) $) NIL)) (-2560 (((-112) $) NIL (|has| |#2| (-905)))) (-2159 (($ $ |#2| (-767) $) NIL)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) NIL (-12 (|has| (-1075) (-882 (-379))) (|has| |#2| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) NIL (-12 (|has| (-1075) (-882 (-563))) (|has| |#2| (-882 (-563)))))) (-1775 (((-767) $ $) NIL (|has| |#2| (-555)))) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) NIL)) (-1983 (((-3 $ "failed") $) NIL (|has| |#2| (-1144)))) (-2595 (($ (-1165 |#2|) (-1075)) NIL) (($ (-1165 $) (-1075)) NIL)) (-1821 (($ $ (-767)) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#2| (-363)))) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-2587 (($ |#2| (-767)) 17) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ (-1075)) NIL) (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL)) (-3908 (((-767) $) NIL) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-3088 (($ $ $) NIL (|has| |#2| (-846)))) (-1776 (($ $ $) NIL (|has| |#2| (-846)))) (-2170 (($ (-1 (-767) (-767)) $) NIL)) (-2238 (($ (-1 |#2| |#2|) $) NIL)) (-1726 (((-1165 |#2|) $) NIL)) (-1698 (((-3 (-1075) "failed") $) NIL)) (-2715 (($ $) NIL)) (-2725 ((|#2| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-3854 (((-1151) $) NIL)) (-1671 (((-2 (|:| -1765 $) (|:| -3443 $)) $ (-767)) NIL)) (-3939 (((-3 (-640 $) "failed") $) NIL)) (-3930 (((-3 (-640 $) "failed") $) NIL)) (-3949 (((-3 (-2 (|:| |var| (-1075)) (|:| -3311 (-767))) "failed") $) NIL)) (-2062 (($ $) NIL (|has| |#2| (-38 (-407 (-563)))))) (-2522 (($) NIL (|has| |#2| (-1144)) CONST)) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) NIL)) (-2705 ((|#2| $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#2| (-452)))) (-3551 (($ (-640 $)) NIL (|has| |#2| (-452))) (($ $ $) NIL (|has| |#2| (-452)))) (-2646 (($ $ (-767) |#2| $) NIL)) (-2075 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) NIL (|has| |#2| (-905)))) (-2173 (((-418 $) $) NIL (|has| |#2| (-905)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#2| (-363)))) (-3012 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-555))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#2| (-363)))) (-1542 (($ $ (-640 (-294 $))) NIL) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-1075) |#2|) NIL) (($ $ (-640 (-1075)) (-640 |#2|)) NIL) (($ $ (-1075) $) NIL) (($ $ (-640 (-1075)) (-640 $)) NIL)) (-1993 (((-767) $) NIL (|has| |#2| (-363)))) (-2308 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-407 $) (-407 $) (-407 $)) NIL (|has| |#2| (-555))) ((|#2| (-407 $) |#2|) NIL (|has| |#2| (-363))) (((-407 $) $ (-407 $)) NIL (|has| |#2| (-555)))) (-1699 (((-3 $ "failed") $ (-767)) NIL)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#2| (-363)))) (-1623 (($ $ (-1075)) NIL (|has| |#2| (-172))) ((|#2| $) NIL (|has| |#2| (-172)))) (-4203 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) $) NIL)) (-3871 (((-767) $) NIL) (((-767) $ (-1075)) NIL) (((-640 (-767)) $ (-640 (-1075))) NIL)) (-2219 (((-888 (-379)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-379)))) (|has| |#2| (-611 (-888 (-379)))))) (((-888 (-563)) $) NIL (-12 (|has| (-1075) (-611 (-888 (-563)))) (|has| |#2| (-611 (-888 (-563)))))) (((-536) $) NIL (-12 (|has| (-1075) (-611 (-536))) (|has| |#2| (-611 (-536)))))) (-3885 ((|#2| $) NIL (|has| |#2| (-452))) (($ $ (-1075)) NIL (|has| |#2| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-905))))) (-1590 (((-3 $ "failed") $ $) NIL (|has| |#2| (-555))) (((-3 (-407 $) "failed") (-407 $) $) NIL (|has| |#2| (-555)))) (-1692 (((-858) $) 13) (($ (-563)) NIL) (($ |#2|) NIL) (($ (-1075)) NIL) (($ (-1253 |#1|)) 19) (($ (-407 (-563))) NIL (-4034 (|has| |#2| (-38 (-407 (-563)))) (|has| |#2| (-1034 (-407 (-563)))))) (($ $) NIL (|has| |#2| (-555)))) (-3955 (((-640 |#2|) $) NIL)) (-3244 ((|#2| $ (-767)) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2047 (((-3 $ "failed") $) NIL (-4034 (-12 (|has| $ (-145)) (|has| |#2| (-905))) (|has| |#2| (-145))))) (-3914 (((-767)) NIL)) (-2148 (($ $ $ (-767)) NIL (|has| |#2| (-172)))) (-3223 (((-112) $ $) NIL (|has| |#2| (-555)))) (-2239 (($) NIL T CONST)) (-2253 (($) 14 T CONST)) (-3213 (($ $ (-1075)) NIL) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) NIL) (($ $ (-1169)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1169) (-767)) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) NIL (|has| |#2| (-896 (-1169)))) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1779 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1718 (((-112) $ $) NIL)) (-1766 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#2| (-846)))) (-1836 (($ $ |#2|) NIL (|has| |#2| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-407 (-563))) NIL (|has| |#2| (-38 (-407 (-563))))) (($ (-407 (-563)) $) NIL (|has| |#2| (-38 (-407 (-563))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-1230 |#1| |#2|) (-13 (-1233 |#2|) (-613 (-1253 |#1|)) (-10 -8 (-15 -2646 ($ $ (-767) |#2| $)))) (-1169) (-1045)) (T -1230))
+((-2646 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-767)) (-5 *1 (-1230 *4 *3)) (-14 *4 (-1169)) (-4 *3 (-1045)))))
+(-13 (-1233 |#2|) (-613 (-1253 |#1|)) (-10 -8 (-15 -2646 ($ $ (-767) |#2| $))))
+((-2238 ((|#4| (-1 |#3| |#1|) |#2|) 22)))
+(((-1231 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2238 (|#4| (-1 |#3| |#1|) |#2|))) (-1045) (-1233 |#1|) (-1045) (-1233 |#3|)) (T -1231))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-4 *2 (-1233 *6)) (-5 *1 (-1231 *5 *4 *6 *2)) (-4 *4 (-1233 *5)))))
+(-10 -7 (-15 -2238 (|#4| (-1 |#3| |#1|) |#2|)))
+((-1740 (((-1257 |#2|) $ (-767)) 114)) (-2605 (((-640 (-1075)) $) 15)) (-1714 (($ (-1165 |#2|)) 67)) (-3897 (((-767) $) NIL) (((-767) $ (-640 (-1075))) 18)) (-2093 (((-418 (-1165 $)) (-1165 $)) 184)) (-1798 (($ $) 174)) (-2802 (((-418 $) $) 172)) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 82)) (-1660 (($ $ (-767)) 71)) (-1647 (($ $ (-767)) 73)) (-1550 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 130)) (-2130 (((-3 |#2| "failed") $) 117) (((-3 (-407 (-563)) "failed") $) NIL) (((-3 (-563) "failed") $) NIL) (((-3 (-1075) "failed") $) NIL)) (-2057 ((|#2| $) 115) (((-407 (-563)) $) NIL) (((-563) $) NIL) (((-1075) $) NIL)) (-1577 (($ $ $) 151)) (-1564 (((-2 (|:| -2310 |#2|) (|:| -1765 $) (|:| -3443 $)) $ $) 153)) (-1775 (((-767) $ $) 169)) (-1983 (((-3 $ "failed") $) 123)) (-2587 (($ |#2| (-767)) NIL) (($ $ (-1075) (-767)) 47) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-3908 (((-767) $) NIL) (((-767) $ (-1075)) 42) (((-640 (-767)) $ (-640 (-1075))) 43)) (-1726 (((-1165 |#2|) $) 59)) (-1698 (((-3 (-1075) "failed") $) 40)) (-1671 (((-2 (|:| -1765 $) (|:| -3443 $)) $ (-767)) 70)) (-2062 (($ $) 196)) (-2522 (($) 119)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 181)) (-2075 (((-418 (-1165 $)) (-1165 $)) 88)) (-2083 (((-418 (-1165 $)) (-1165 $)) 86)) (-2173 (((-418 $) $) 107)) (-1542 (($ $ (-640 (-294 $))) 39) (($ $ (-294 $)) NIL) (($ $ $ $) NIL) (($ $ (-640 $) (-640 $)) NIL) (($ $ (-1075) |#2|) 31) (($ $ (-640 (-1075)) (-640 |#2|)) 28) (($ $ (-1075) $) 25) (($ $ (-640 (-1075)) (-640 $)) 23)) (-1993 (((-767) $) 187)) (-2308 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-407 $) (-407 $) (-407 $)) 147) ((|#2| (-407 $) |#2|) 186) (((-407 $) $ (-407 $)) 168)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 190)) (-4203 (($ $ (-1075)) 140) (($ $ (-640 (-1075))) NIL) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL) (($ $ (-767)) NIL) (($ $) 138) (($ $ (-1169)) NIL) (($ $ (-640 (-1169))) NIL) (($ $ (-1169) (-767)) NIL) (($ $ (-640 (-1169)) (-640 (-767))) NIL) (($ $ (-1 |#2| |#2|) (-767)) NIL) (($ $ (-1 |#2| |#2|)) 137) (($ $ (-1 |#2| |#2|) $) 134)) (-3871 (((-767) $) NIL) (((-767) $ (-1075)) 16) (((-640 (-767)) $ (-640 (-1075))) 20)) (-3885 ((|#2| $) NIL) (($ $ (-1075)) 125)) (-1590 (((-3 $ "failed") $ $) 161) (((-3 (-407 $) "failed") (-407 $) $) 157)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#2|) NIL) (($ (-1075)) 51) (($ (-407 (-563))) NIL) (($ $) NIL)))
+(((-1232 |#1| |#2|) (-10 -8 (-15 -1692 (|#1| |#1|)) (-15 -2103 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))) (-15 -2802 ((-418 |#1|) |#1|)) (-15 -1798 (|#1| |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -2522 (|#1|)) (-15 -1983 ((-3 |#1| "failed") |#1|)) (-15 -2308 ((-407 |#1|) |#1| (-407 |#1|))) (-15 -1993 ((-767) |#1|)) (-15 -3263 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -2062 (|#1| |#1|)) (-15 -2308 (|#2| (-407 |#1|) |#2|)) (-15 -1550 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -1564 ((-2 (|:| -2310 |#2|) (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -1577 (|#1| |#1| |#1|)) (-15 -1590 ((-3 (-407 |#1|) "failed") (-407 |#1|) |#1|)) (-15 -1590 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1775 ((-767) |#1| |#1|)) (-15 -2308 ((-407 |#1|) (-407 |#1|) (-407 |#1|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -1647 (|#1| |#1| (-767))) (-15 -1660 (|#1| |#1| (-767))) (-15 -1671 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| (-767))) (-15 -1714 (|#1| (-1165 |#2|))) (-15 -1726 ((-1165 |#2|) |#1|)) (-15 -1740 ((-1257 |#2|) |#1| (-767))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -2308 (|#1| |#1| |#1|)) (-15 -2308 (|#2| |#1| |#2|)) (-15 -2173 ((-418 |#1|) |#1|)) (-15 -2093 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2083 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2075 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2066 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -3885 (|#1| |#1| (-1075))) (-15 -2605 ((-640 (-1075)) |#1|)) (-15 -3897 ((-767) |#1| (-640 (-1075)))) (-15 -3897 ((-767) |#1|)) (-15 -2587 (|#1| |#1| (-640 (-1075)) (-640 (-767)))) (-15 -2587 (|#1| |#1| (-1075) (-767))) (-15 -3908 ((-640 (-767)) |#1| (-640 (-1075)))) (-15 -3908 ((-767) |#1| (-1075))) (-15 -1698 ((-3 (-1075) "failed") |#1|)) (-15 -3871 ((-640 (-767)) |#1| (-640 (-1075)))) (-15 -3871 ((-767) |#1| (-1075))) (-15 -1692 (|#1| (-1075))) (-15 -2130 ((-3 (-1075) "failed") |#1|)) (-15 -2057 ((-1075) |#1|)) (-15 -1542 (|#1| |#1| (-640 (-1075)) (-640 |#1|))) (-15 -1542 (|#1| |#1| (-1075) |#1|)) (-15 -1542 (|#1| |#1| (-640 (-1075)) (-640 |#2|))) (-15 -1542 (|#1| |#1| (-1075) |#2|)) (-15 -1542 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#1| |#1|)) (-15 -1542 (|#1| |#1| (-294 |#1|))) (-15 -1542 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -3871 ((-767) |#1|)) (-15 -2587 (|#1| |#2| (-767))) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -1692 (|#1| |#2|)) (-15 -3908 ((-767) |#1|)) (-15 -3885 (|#2| |#1|)) (-15 -4203 (|#1| |#1| (-640 (-1075)) (-640 (-767)))) (-15 -4203 (|#1| |#1| (-1075) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1075)))) (-15 -4203 (|#1| |#1| (-1075))) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|))) (-1233 |#2|) (-1045)) (T -1232))
+NIL
+(-10 -8 (-15 -1692 (|#1| |#1|)) (-15 -2103 ((-1165 |#1|) (-1165 |#1|) (-1165 |#1|))) (-15 -2802 ((-418 |#1|) |#1|)) (-15 -1798 (|#1| |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -2522 (|#1|)) (-15 -1983 ((-3 |#1| "failed") |#1|)) (-15 -2308 ((-407 |#1|) |#1| (-407 |#1|))) (-15 -1993 ((-767) |#1|)) (-15 -3263 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -2062 (|#1| |#1|)) (-15 -2308 (|#2| (-407 |#1|) |#2|)) (-15 -1550 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -1564 ((-2 (|:| -2310 |#2|) (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| |#1|)) (-15 -1577 (|#1| |#1| |#1|)) (-15 -1590 ((-3 (-407 |#1|) "failed") (-407 |#1|) |#1|)) (-15 -1590 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1775 ((-767) |#1| |#1|)) (-15 -2308 ((-407 |#1|) (-407 |#1|) (-407 |#1|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -1647 (|#1| |#1| (-767))) (-15 -1660 (|#1| |#1| (-767))) (-15 -1671 ((-2 (|:| -1765 |#1|) (|:| -3443 |#1|)) |#1| (-767))) (-15 -1714 (|#1| (-1165 |#2|))) (-15 -1726 ((-1165 |#2|) |#1|)) (-15 -1740 ((-1257 |#2|) |#1| (-767))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4203 (|#1| |#1| (-1 |#2| |#2|) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)) (-640 (-767)))) (-15 -4203 (|#1| |#1| (-1169) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1169)))) (-15 -4203 (|#1| |#1| (-1169))) (-15 -4203 (|#1| |#1|)) (-15 -4203 (|#1| |#1| (-767))) (-15 -2308 (|#1| |#1| |#1|)) (-15 -2308 (|#2| |#1| |#2|)) (-15 -2173 ((-418 |#1|) |#1|)) (-15 -2093 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2083 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2075 ((-418 (-1165 |#1|)) (-1165 |#1|))) (-15 -2066 ((-3 (-640 (-1165 |#1|)) "failed") (-640 (-1165 |#1|)) (-1165 |#1|))) (-15 -3885 (|#1| |#1| (-1075))) (-15 -2605 ((-640 (-1075)) |#1|)) (-15 -3897 ((-767) |#1| (-640 (-1075)))) (-15 -3897 ((-767) |#1|)) (-15 -2587 (|#1| |#1| (-640 (-1075)) (-640 (-767)))) (-15 -2587 (|#1| |#1| (-1075) (-767))) (-15 -3908 ((-640 (-767)) |#1| (-640 (-1075)))) (-15 -3908 ((-767) |#1| (-1075))) (-15 -1698 ((-3 (-1075) "failed") |#1|)) (-15 -3871 ((-640 (-767)) |#1| (-640 (-1075)))) (-15 -3871 ((-767) |#1| (-1075))) (-15 -1692 (|#1| (-1075))) (-15 -2130 ((-3 (-1075) "failed") |#1|)) (-15 -2057 ((-1075) |#1|)) (-15 -1542 (|#1| |#1| (-640 (-1075)) (-640 |#1|))) (-15 -1542 (|#1| |#1| (-1075) |#1|)) (-15 -1542 (|#1| |#1| (-640 (-1075)) (-640 |#2|))) (-15 -1542 (|#1| |#1| (-1075) |#2|)) (-15 -1542 (|#1| |#1| (-640 |#1|) (-640 |#1|))) (-15 -1542 (|#1| |#1| |#1| |#1|)) (-15 -1542 (|#1| |#1| (-294 |#1|))) (-15 -1542 (|#1| |#1| (-640 (-294 |#1|)))) (-15 -3871 ((-767) |#1|)) (-15 -2587 (|#1| |#2| (-767))) (-15 -2130 ((-3 (-563) "failed") |#1|)) (-15 -2057 ((-563) |#1|)) (-15 -2130 ((-3 (-407 (-563)) "failed") |#1|)) (-15 -2057 ((-407 (-563)) |#1|)) (-15 -2057 (|#2| |#1|)) (-15 -2130 ((-3 |#2| "failed") |#1|)) (-15 -1692 (|#1| |#2|)) (-15 -3908 ((-767) |#1|)) (-15 -3885 (|#2| |#1|)) (-15 -4203 (|#1| |#1| (-640 (-1075)) (-640 (-767)))) (-15 -4203 (|#1| |#1| (-1075) (-767))) (-15 -4203 (|#1| |#1| (-640 (-1075)))) (-15 -4203 (|#1| |#1| (-1075))) (-15 -1692 (|#1| (-563))) (-15 -1692 ((-858) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-1740 (((-1257 |#1|) $ (-767)) 238)) (-2605 (((-640 (-1075)) $) 110)) (-1714 (($ (-1165 |#1|)) 236)) (-2138 (((-1165 $) $ (-1075)) 125) (((-1165 |#1|) $) 124)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 87 (|has| |#1| (-555)))) (-3231 (($ $) 88 (|has| |#1| (-555)))) (-3211 (((-112) $) 90 (|has| |#1| (-555)))) (-3897 (((-767) $) 112) (((-767) $ (-640 (-1075))) 111)) (-3905 (((-3 $ "failed") $ $) 19)) (-1601 (($ $ $) 223 (|has| |#1| (-555)))) (-2093 (((-418 (-1165 $)) (-1165 $)) 100 (|has| |#1| (-905)))) (-1798 (($ $) 98 (|has| |#1| (-452)))) (-2802 (((-418 $) $) 97 (|has| |#1| (-452)))) (-2066 (((-3 (-640 (-1165 $)) "failed") (-640 (-1165 $)) (-1165 $)) 103 (|has| |#1| (-905)))) (-2003 (((-112) $ $) 208 (|has| |#1| (-363)))) (-1660 (($ $ (-767)) 231)) (-1647 (($ $ (-767)) 230)) (-1550 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 218 (|has| |#1| (-452)))) (-2569 (($) 17 T CONST)) (-2130 (((-3 |#1| "failed") $) 164) (((-3 (-407 (-563)) "failed") $) 161 (|has| |#1| (-1034 (-407 (-563))))) (((-3 (-563) "failed") $) 159 (|has| |#1| (-1034 (-563)))) (((-3 (-1075) "failed") $) 136)) (-2057 ((|#1| $) 163) (((-407 (-563)) $) 162 (|has| |#1| (-1034 (-407 (-563))))) (((-563) $) 160 (|has| |#1| (-1034 (-563)))) (((-1075) $) 137)) (-1612 (($ $ $ (-1075)) 108 (|has| |#1| (-172))) ((|#1| $ $) 226 (|has| |#1| (-172)))) (-3094 (($ $ $) 212 (|has| |#1| (-363)))) (-2750 (($ $) 154)) (-1476 (((-684 (-563)) (-684 $)) 134 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 (-563))) (|:| |vec| (-1257 (-563)))) (-684 $) (-1257 $)) 133 (|has| |#1| (-636 (-563)))) (((-2 (|:| -1957 (-684 |#1|)) (|:| |vec| (-1257 |#1|))) (-684 $) (-1257 $)) 132) (((-684 |#1|) (-684 $)) 131)) (-3951 (((-3 $ "failed") $) 33)) (-3054 (($ $ $) 211 (|has| |#1| (-363)))) (-1634 (($ $ $) 229)) (-1577 (($ $ $) 220 (|has| |#1| (-555)))) (-1564 (((-2 (|:| -2310 |#1|) (|:| -1765 $) (|:| -3443 $)) $ $) 219 (|has| |#1| (-555)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 206 (|has| |#1| (-363)))) (-4151 (($ $) 176 (|has| |#1| (-452))) (($ $ (-1075)) 105 (|has| |#1| (-452)))) (-2738 (((-640 $) $) 109)) (-2560 (((-112) $) 96 (|has| |#1| (-905)))) (-2159 (($ $ |#1| (-767) $) 172)) (-1812 (((-885 (-379) $) $ (-888 (-379)) (-885 (-379) $)) 84 (-12 (|has| (-1075) (-882 (-379))) (|has| |#1| (-882 (-379))))) (((-885 (-563) $) $ (-888 (-563)) (-885 (-563) $)) 83 (-12 (|has| (-1075) (-882 (-563))) (|has| |#1| (-882 (-563)))))) (-1775 (((-767) $ $) 224 (|has| |#1| (-555)))) (-3401 (((-112) $) 31)) (-3481 (((-767) $) 169)) (-1983 (((-3 $ "failed") $) 204 (|has| |#1| (-1144)))) (-2595 (($ (-1165 |#1|) (-1075)) 117) (($ (-1165 $) (-1075)) 116)) (-1821 (($ $ (-767)) 235)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 215 (|has| |#1| (-363)))) (-3919 (((-640 $) $) 126)) (-3805 (((-112) $) 152)) (-2587 (($ |#1| (-767)) 153) (($ $ (-1075) (-767)) 119) (($ $ (-640 (-1075)) (-640 (-767))) 118)) (-1684 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $ (-1075)) 120) (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 233)) (-3908 (((-767) $) 170) (((-767) $ (-1075)) 122) (((-640 (-767)) $ (-640 (-1075))) 121)) (-3088 (($ $ $) 79 (|has| |#1| (-846)))) (-1776 (($ $ $) 78 (|has| |#1| (-846)))) (-2170 (($ (-1 (-767) (-767)) $) 171)) (-2238 (($ (-1 |#1| |#1|) $) 151)) (-1726 (((-1165 |#1|) $) 237)) (-1698 (((-3 (-1075) "failed") $) 123)) (-2715 (($ $) 149)) (-2725 ((|#1| $) 148)) (-3517 (($ (-640 $)) 94 (|has| |#1| (-452))) (($ $ $) 93 (|has| |#1| (-452)))) (-3854 (((-1151) $) 9)) (-1671 (((-2 (|:| -1765 $) (|:| -3443 $)) $ (-767)) 232)) (-3939 (((-3 (-640 $) "failed") $) 114)) (-3930 (((-3 (-640 $) "failed") $) 115)) (-3949 (((-3 (-2 (|:| |var| (-1075)) (|:| -3311 (-767))) "failed") $) 113)) (-2062 (($ $) 216 (|has| |#1| (-38 (-407 (-563)))))) (-2522 (($) 203 (|has| |#1| (-1144)) CONST)) (-1693 (((-1113) $) 10)) (-2695 (((-112) $) 166)) (-2705 ((|#1| $) 167)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 95 (|has| |#1| (-452)))) (-3551 (($ (-640 $)) 92 (|has| |#1| (-452))) (($ $ $) 91 (|has| |#1| (-452)))) (-2075 (((-418 (-1165 $)) (-1165 $)) 102 (|has| |#1| (-905)))) (-2083 (((-418 (-1165 $)) (-1165 $)) 101 (|has| |#1| (-905)))) (-2173 (((-418 $) $) 99 (|has| |#1| (-905)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 214 (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 213 (|has| |#1| (-363)))) (-3012 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-555))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 207 (|has| |#1| (-363)))) (-1542 (($ $ (-640 (-294 $))) 145) (($ $ (-294 $)) 144) (($ $ $ $) 143) (($ $ (-640 $) (-640 $)) 142) (($ $ (-1075) |#1|) 141) (($ $ (-640 (-1075)) (-640 |#1|)) 140) (($ $ (-1075) $) 139) (($ $ (-640 (-1075)) (-640 $)) 138)) (-1993 (((-767) $) 209 (|has| |#1| (-363)))) (-2308 ((|#1| $ |#1|) 256) (($ $ $) 255) (((-407 $) (-407 $) (-407 $)) 225 (|has| |#1| (-555))) ((|#1| (-407 $) |#1|) 217 (|has| |#1| (-363))) (((-407 $) $ (-407 $)) 205 (|has| |#1| (-555)))) (-1699 (((-3 $ "failed") $ (-767)) 234)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 210 (|has| |#1| (-363)))) (-1623 (($ $ (-1075)) 107 (|has| |#1| (-172))) ((|#1| $) 227 (|has| |#1| (-172)))) (-4203 (($ $ (-1075)) 42) (($ $ (-640 (-1075))) 41) (($ $ (-1075) (-767)) 40) (($ $ (-640 (-1075)) (-640 (-767))) 39) (($ $ (-767)) 253) (($ $) 251) (($ $ (-1169)) 250 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 249 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 248 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 247 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 240) (($ $ (-1 |#1| |#1|)) 239) (($ $ (-1 |#1| |#1|) $) 228)) (-3871 (((-767) $) 150) (((-767) $ (-1075)) 130) (((-640 (-767)) $ (-640 (-1075))) 129)) (-2219 (((-888 (-379)) $) 82 (-12 (|has| (-1075) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379)))))) (((-888 (-563)) $) 81 (-12 (|has| (-1075) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563)))))) (((-536) $) 80 (-12 (|has| (-1075) (-611 (-536))) (|has| |#1| (-611 (-536)))))) (-3885 ((|#1| $) 175 (|has| |#1| (-452))) (($ $ (-1075)) 106 (|has| |#1| (-452)))) (-2054 (((-3 (-1257 $) "failed") (-684 $)) 104 (-2188 (|has| $ (-145)) (|has| |#1| (-905))))) (-1590 (((-3 $ "failed") $ $) 222 (|has| |#1| (-555))) (((-3 (-407 $) "failed") (-407 $) $) 221 (|has| |#1| (-555)))) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 165) (($ (-1075)) 135) (($ (-407 (-563))) 72 (-4034 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563)))))) (($ $) 85 (|has| |#1| (-555)))) (-3955 (((-640 |#1|) $) 168)) (-3244 ((|#1| $ (-767)) 155) (($ $ (-1075) (-767)) 128) (($ $ (-640 (-1075)) (-640 (-767))) 127)) (-2047 (((-3 $ "failed") $) 73 (-4034 (-2188 (|has| $ (-145)) (|has| |#1| (-905))) (|has| |#1| (-145))))) (-3914 (((-767)) 28)) (-2148 (($ $ $ (-767)) 173 (|has| |#1| (-172)))) (-3223 (((-112) $ $) 89 (|has| |#1| (-555)))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ (-1075)) 38) (($ $ (-640 (-1075))) 37) (($ $ (-1075) (-767)) 36) (($ $ (-640 (-1075)) (-640 (-767))) 35) (($ $ (-767)) 254) (($ $) 252) (($ $ (-1169)) 246 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169))) 245 (|has| |#1| (-896 (-1169)))) (($ $ (-1169) (-767)) 244 (|has| |#1| (-896 (-1169)))) (($ $ (-640 (-1169)) (-640 (-767))) 243 (|has| |#1| (-896 (-1169)))) (($ $ (-1 |#1| |#1|) (-767)) 242) (($ $ (-1 |#1| |#1|)) 241)) (-1779 (((-112) $ $) 76 (|has| |#1| (-846)))) (-1754 (((-112) $ $) 75 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 6)) (-1766 (((-112) $ $) 77 (|has| |#1| (-846)))) (-1743 (((-112) $ $) 74 (|has| |#1| (-846)))) (-1836 (($ $ |#1|) 156 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 158 (|has| |#1| (-38 (-407 (-563))))) (($ (-407 (-563)) $) 157 (|has| |#1| (-38 (-407 (-563))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
(((-1233 |#1|) (-140) (-1045)) (T -1233))
-((-4030 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-1233 *4)) (-4 *4 (-1045)) (-5 *2 (-1257 *4)))) (-1580 (*1 *2 *1) (-12 (-4 *1 (-1233 *3)) (-4 *3 (-1045)) (-5 *2 (-1165 *3)))) (-1787 (*1 *1 *2) (-12 (-5 *2 (-1165 *3)) (-4 *3 (-1045)) (-4 *1 (-1233 *3)))) (-1351 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))) (-3862 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))) (-2625 (*1 *2 *1 *1) (-12 (-4 *3 (-1045)) (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-1233 *3)))) (-3839 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *4 (-1045)) (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-1233 *4)))) (-3729 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))) (-2618 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))) (-4369 (*1 *1 *1 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)))) (-4202 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))) (-2315 (*1 *2 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-172)))) (-2742 (*1 *2 *1 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-172)))) (-2309 (*1 *2 *2 *2) (-12 (-5 *2 (-407 *1)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)) (-4 *3 (-555)))) (-3254 (*1 *2 *1 *1) (-12 (-4 *1 (-1233 *3)) (-4 *3 (-1045)) (-4 *3 (-555)) (-5 *2 (-767)))) (-3724 (*1 *1 *1 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-555)))) (-1346 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-555)))) (-1346 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-407 *1)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)) (-4 *3 (-555)))) (-2906 (*1 *1 *1 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-555)))) (-2521 (*1 *2 *1 *1) (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| -2311 *3) (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-1233 *3)))) (-3018 (*1 *2 *1 *1) (-12 (-4 *3 (-452)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1233 *3)))) (-2309 (*1 *2 *3 *2) (-12 (-5 *3 (-407 *1)) (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3698 (*1 *1 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563)))))))
-(-13 (-945 |t#1| (-767) (-1075)) (-286 |t#1| |t#1|) (-286 $ $) (-233) (-231 |t#1|) (-10 -8 (-15 -4030 ((-1257 |t#1|) $ (-767))) (-15 -1580 ((-1165 |t#1|) $)) (-15 -1787 ($ (-1165 |t#1|))) (-15 -1351 ($ $ (-767))) (-15 -3862 ((-3 $ "failed") $ (-767))) (-15 -2625 ((-2 (|:| -3490 $) (|:| -1972 $)) $ $)) (-15 -3839 ((-2 (|:| -3490 $) (|:| -1972 $)) $ (-767))) (-15 -3729 ($ $ (-767))) (-15 -2618 ($ $ (-767))) (-15 -4369 ($ $ $)) (-15 -4202 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1144)) (-6 (-1144)) |%noBranch|) (IF (|has| |t#1| (-172)) (PROGN (-15 -2315 (|t#1| $)) (-15 -2742 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-555)) (PROGN (-6 (-286 (-407 $) (-407 $))) (-15 -2309 ((-407 $) (-407 $) (-407 $))) (-15 -3254 ((-767) $ $)) (-15 -3724 ($ $ $)) (-15 -1346 ((-3 $ "failed") $ $)) (-15 -1346 ((-3 (-407 $) "failed") (-407 $) $)) (-15 -2906 ($ $ $)) (-15 -2521 ((-2 (|:| -2311 |t#1|) (|:| -3490 $) (|:| -1972 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-452)) (-15 -3018 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-363)) (PROGN (-6 (-307)) (-6 -4403) (-15 -2309 (|t#1| (-407 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-38 (-407 (-563)))) (-15 -3698 ($ $)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-767)) . T) ((-25) . T) ((-38 #1=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #1#) -4032 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 #2=(-1075)) . T) ((-613 |#1|) . T) ((-613 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363))) ((-610 (-858)) . T) ((-172) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-611 (-536)) -12 (|has| (-1075) (-611 (-536))) (|has| |#1| (-611 (-536)))) ((-611 (-888 (-379))) -12 (|has| (-1075) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379))))) ((-611 (-888 (-563))) -12 (|has| (-1075) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563))))) ((-231 |#1|) . T) ((-233) . T) ((-286 (-407 $) (-407 $)) |has| |#1| (-555)) ((-286 |#1| |#1|) . T) ((-286 $ $) . T) ((-290) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363))) ((-307) |has| |#1| (-363)) ((-309 $) . T) ((-326 |#1| #0#) . T) ((-377 |#1|) . T) ((-411 |#1|) . T) ((-452) -4032 (|has| |#1| (-905)) (|has| |#1| (-452)) (|has| |#1| (-363))) ((-514 #2# |#1|) . T) ((-514 #2# $) . T) ((-514 $ $) . T) ((-555) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363))) ((-643 #1#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #1#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363))) ((-722) . T) ((-846) |has| |#1| (-846)) ((-896 #2#) . T) ((-896 (-1169)) |has| |#1| (-896 (-1169))) ((-882 (-379)) -12 (|has| (-1075) (-882 (-379))) (|has| |#1| (-882 (-379)))) ((-882 (-563)) -12 (|has| (-1075) (-882 (-563))) (|has| |#1| (-882 (-563)))) ((-945 |#1| #0# #2#) . T) ((-905) |has| |#1| (-905)) ((-916) |has| |#1| (-363)) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 #2#) . T) ((-1034 |#1|) . T) ((-1051 #1#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4032 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) |has| |#1| (-1144)) ((-1212) |has| |#1| (-905)))
-((-2606 (((-640 (-1075)) $) 28)) (-2751 (($ $) 25)) (-2588 (($ |#2| |#3|) NIL) (($ $ (-1075) |#3|) 22) (($ $ (-640 (-1075)) (-640 |#3|)) 21)) (-2716 (($ $) 14)) (-2726 ((|#2| $) 12)) (-4167 ((|#3| $) 10)))
-(((-1234 |#1| |#2| |#3|) (-10 -8 (-15 -2606 ((-640 (-1075)) |#1|)) (-15 -2588 (|#1| |#1| (-640 (-1075)) (-640 |#3|))) (-15 -2588 (|#1| |#1| (-1075) |#3|)) (-15 -2751 (|#1| |#1|)) (-15 -2588 (|#1| |#2| |#3|)) (-15 -4167 (|#3| |#1|)) (-15 -2716 (|#1| |#1|)) (-15 -2726 (|#2| |#1|))) (-1235 |#2| |#3|) (-1045) (-788)) (T -1234))
-NIL
-(-10 -8 (-15 -2606 ((-640 (-1075)) |#1|)) (-15 -2588 (|#1| |#1| (-640 (-1075)) (-640 |#3|))) (-15 -2588 (|#1| |#1| (-1075) |#3|)) (-15 -2751 (|#1| |#1|)) (-15 -2588 (|#1| |#2| |#3|)) (-15 -4167 (|#3| |#1|)) (-15 -2716 (|#1| |#1|)) (-15 -2726 (|#2| |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-2606 (((-640 (-1075)) $) 77)) (-2518 (((-1169) $) 106)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-4223 (($ $) 55 (|has| |#1| (-555)))) (-3156 (((-112) $) 57 (|has| |#1| (-555)))) (-2421 (($ $ |#2|) 101) (($ $ |#2| |#2|) 100)) (-1539 (((-1149 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 108)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-2751 (($ $) 63)) (-3400 (((-3 $ "failed") $) 33)) (-2788 (((-112) $) 76)) (-3254 ((|#2| $) 103) ((|#2| $ |#2|) 102)) (-3827 (((-112) $) 31)) (-1351 (($ $ (-917)) 104)) (-3920 (((-112) $) 65)) (-2588 (($ |#1| |#2|) 64) (($ $ (-1075) |#2|) 79) (($ $ (-640 (-1075)) (-640 |#2|)) 78)) (-2240 (($ (-1 |#1| |#1|) $) 66)) (-2716 (($ $) 68)) (-2726 ((|#1| $) 69)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3320 (($ $ |#2|) 98)) (-3008 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-1540 (((-1149 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-2309 ((|#1| $ |#2|) 107) (($ $ $) 84 (|has| |#2| (-1105)))) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) 92 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1169) (-767)) 91 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-640 (-1169))) 90 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1169)) 89 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-767)) 87 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-4167 ((|#2| $) 67)) (-1741 (($ $) 75)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555))) (($ |#1|) 50 (|has| |#1| (-172)))) (-4319 ((|#1| $ |#2|) 62)) (-2779 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-1675 (((-767)) 28)) (-3408 ((|#1| $) 105)) (-2126 (((-112) $ $) 56 (|has| |#1| (-555)))) (-1403 ((|#1| $ |#2|) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) 96 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1169) (-767)) 95 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-640 (-1169))) 94 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1169)) 93 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-767)) 88 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-1718 (((-112) $ $) 6)) (-1837 (($ $ |#1|) 61 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
+((-1740 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-1233 *4)) (-4 *4 (-1045)) (-5 *2 (-1257 *4)))) (-1726 (*1 *2 *1) (-12 (-4 *1 (-1233 *3)) (-4 *3 (-1045)) (-5 *2 (-1165 *3)))) (-1714 (*1 *1 *2) (-12 (-5 *2 (-1165 *3)) (-4 *3 (-1045)) (-4 *1 (-1233 *3)))) (-1821 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))) (-1699 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))) (-1684 (*1 *2 *1 *1) (-12 (-4 *3 (-1045)) (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-1233 *3)))) (-1671 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *4 (-1045)) (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-1233 *4)))) (-1660 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))) (-1647 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))) (-1634 (*1 *1 *1 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)))) (-4203 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))) (-1623 (*1 *2 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-172)))) (-1612 (*1 *2 *1 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-172)))) (-2308 (*1 *2 *2 *2) (-12 (-5 *2 (-407 *1)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)) (-4 *3 (-555)))) (-1775 (*1 *2 *1 *1) (-12 (-4 *1 (-1233 *3)) (-4 *3 (-1045)) (-4 *3 (-555)) (-5 *2 (-767)))) (-1601 (*1 *1 *1 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-555)))) (-1590 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-555)))) (-1590 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-407 *1)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)) (-4 *3 (-555)))) (-1577 (*1 *1 *1 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-555)))) (-1564 (*1 *2 *1 *1) (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| -2310 *3) (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-1233 *3)))) (-1550 (*1 *2 *1 *1) (-12 (-4 *3 (-452)) (-4 *3 (-1045)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1233 *3)))) (-2308 (*1 *2 *3 *2) (-12 (-5 *3 (-407 *1)) (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-2062 (*1 *1 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563)))))))
+(-13 (-945 |t#1| (-767) (-1075)) (-286 |t#1| |t#1|) (-286 $ $) (-233) (-231 |t#1|) (-10 -8 (-15 -1740 ((-1257 |t#1|) $ (-767))) (-15 -1726 ((-1165 |t#1|) $)) (-15 -1714 ($ (-1165 |t#1|))) (-15 -1821 ($ $ (-767))) (-15 -1699 ((-3 $ "failed") $ (-767))) (-15 -1684 ((-2 (|:| -1765 $) (|:| -3443 $)) $ $)) (-15 -1671 ((-2 (|:| -1765 $) (|:| -3443 $)) $ (-767))) (-15 -1660 ($ $ (-767))) (-15 -1647 ($ $ (-767))) (-15 -1634 ($ $ $)) (-15 -4203 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1144)) (-6 (-1144)) |%noBranch|) (IF (|has| |t#1| (-172)) (PROGN (-15 -1623 (|t#1| $)) (-15 -1612 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-555)) (PROGN (-6 (-286 (-407 $) (-407 $))) (-15 -2308 ((-407 $) (-407 $) (-407 $))) (-15 -1775 ((-767) $ $)) (-15 -1601 ($ $ $)) (-15 -1590 ((-3 $ "failed") $ $)) (-15 -1590 ((-3 (-407 $) "failed") (-407 $) $)) (-15 -1577 ($ $ $)) (-15 -1564 ((-2 (|:| -2310 |t#1|) (|:| -1765 $) (|:| -3443 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-452)) (-15 -1550 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-363)) (PROGN (-6 (-307)) (-6 -4404) (-15 -2308 (|t#1| (-407 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-38 (-407 (-563)))) (-15 -2062 ($ $)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-767)) . T) ((-25) . T) ((-38 #1=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #1#) -4034 (|has| |#1| (-1034 (-407 (-563)))) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 #2=(-1075)) . T) ((-613 |#1|) . T) ((-613 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363))) ((-610 (-858)) . T) ((-172) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-611 (-536)) -12 (|has| (-1075) (-611 (-536))) (|has| |#1| (-611 (-536)))) ((-611 (-888 (-379))) -12 (|has| (-1075) (-611 (-888 (-379)))) (|has| |#1| (-611 (-888 (-379))))) ((-611 (-888 (-563))) -12 (|has| (-1075) (-611 (-888 (-563)))) (|has| |#1| (-611 (-888 (-563))))) ((-231 |#1|) . T) ((-233) . T) ((-286 (-407 $) (-407 $)) |has| |#1| (-555)) ((-286 |#1| |#1|) . T) ((-286 $ $) . T) ((-290) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363))) ((-307) |has| |#1| (-363)) ((-309 $) . T) ((-326 |#1| #0#) . T) ((-377 |#1|) . T) ((-411 |#1|) . T) ((-452) -4034 (|has| |#1| (-905)) (|has| |#1| (-452)) (|has| |#1| (-363))) ((-514 #2# |#1|) . T) ((-514 #2# $) . T) ((-514 $ $) . T) ((-555) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363))) ((-643 #1#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-636 (-563)) |has| |#1| (-636 (-563))) ((-636 |#1|) . T) ((-713 #1#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363))) ((-722) . T) ((-846) |has| |#1| (-846)) ((-896 #2#) . T) ((-896 (-1169)) |has| |#1| (-896 (-1169))) ((-882 (-379)) -12 (|has| (-1075) (-882 (-379))) (|has| |#1| (-882 (-379)))) ((-882 (-563)) -12 (|has| (-1075) (-882 (-563))) (|has| |#1| (-882 (-563)))) ((-945 |#1| #0# #2#) . T) ((-905) |has| |#1| (-905)) ((-916) |has| |#1| (-363)) ((-1034 (-407 (-563))) |has| |#1| (-1034 (-407 (-563)))) ((-1034 (-563)) |has| |#1| (-1034 (-563))) ((-1034 #2#) . T) ((-1034 |#1|) . T) ((-1051 #1#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4034 (|has| |#1| (-905)) (|has| |#1| (-555)) (|has| |#1| (-452)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1144) |has| |#1| (-1144)) ((-1212) |has| |#1| (-905)))
+((-2605 (((-640 (-1075)) $) 28)) (-2750 (($ $) 25)) (-2587 (($ |#2| |#3|) NIL) (($ $ (-1075) |#3|) 22) (($ $ (-640 (-1075)) (-640 |#3|)) 21)) (-2715 (($ $) 14)) (-2725 ((|#2| $) 12)) (-3871 ((|#3| $) 10)))
+(((-1234 |#1| |#2| |#3|) (-10 -8 (-15 -2605 ((-640 (-1075)) |#1|)) (-15 -2587 (|#1| |#1| (-640 (-1075)) (-640 |#3|))) (-15 -2587 (|#1| |#1| (-1075) |#3|)) (-15 -2750 (|#1| |#1|)) (-15 -2587 (|#1| |#2| |#3|)) (-15 -3871 (|#3| |#1|)) (-15 -2715 (|#1| |#1|)) (-15 -2725 (|#2| |#1|))) (-1235 |#2| |#3|) (-1045) (-788)) (T -1234))
+NIL
+(-10 -8 (-15 -2605 ((-640 (-1075)) |#1|)) (-15 -2587 (|#1| |#1| (-640 (-1075)) (-640 |#3|))) (-15 -2587 (|#1| |#1| (-1075) |#3|)) (-15 -2750 (|#1| |#1|)) (-15 -2587 (|#1| |#2| |#3|)) (-15 -3871 (|#3| |#1|)) (-15 -2715 (|#1| |#1|)) (-15 -2725 (|#2| |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-2605 (((-640 (-1075)) $) 77)) (-2517 (((-1169) $) 106)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-3231 (($ $) 55 (|has| |#1| (-555)))) (-3211 (((-112) $) 57 (|has| |#1| (-555)))) (-1763 (($ $ |#2|) 101) (($ $ |#2| |#2|) 100)) (-1787 (((-1149 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 108)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-2750 (($ $) 63)) (-3951 (((-3 $ "failed") $) 33)) (-3381 (((-112) $) 76)) (-1775 ((|#2| $) 103) ((|#2| $ |#2|) 102)) (-3401 (((-112) $) 31)) (-1821 (($ $ (-917)) 104)) (-3805 (((-112) $) 65)) (-2587 (($ |#1| |#2|) 64) (($ $ (-1075) |#2|) 79) (($ $ (-640 (-1075)) (-640 |#2|)) 78)) (-2238 (($ (-1 |#1| |#1|) $) 66)) (-2715 (($ $) 68)) (-2725 ((|#1| $) 69)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1751 (($ $ |#2|) 98)) (-3012 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-1542 (((-1149 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-2308 ((|#1| $ |#2|) 107) (($ $ $) 84 (|has| |#2| (-1105)))) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) 92 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1169) (-767)) 91 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-640 (-1169))) 90 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1169)) 89 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-767)) 87 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-3871 ((|#2| $) 67)) (-3369 (($ $) 75)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555))) (($ |#1|) 50 (|has| |#1| (-172)))) (-3244 ((|#1| $ |#2|) 62)) (-2047 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-3914 (((-767)) 28)) (-3412 ((|#1| $) 105)) (-3223 (((-112) $ $) 56 (|has| |#1| (-555)))) (-1402 ((|#1| $ |#2|) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) 96 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1169) (-767)) 95 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-640 (-1169))) 94 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1169)) 93 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-767)) 88 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-1718 (((-112) $ $) 6)) (-1836 (($ $ |#1|) 61 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
(((-1235 |#1| |#2|) (-140) (-1045) (-788)) (T -1235))
-((-1539 (*1 *2 *1) (-12 (-4 *1 (-1235 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (-5 *2 (-1149 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-2309 (*1 *2 *1 *3) (-12 (-4 *1 (-1235 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045)))) (-2518 (*1 *2 *1) (-12 (-4 *1 (-1235 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (-5 *2 (-1169)))) (-3408 (*1 *2 *1) (-12 (-4 *1 (-1235 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045)))) (-1351 (*1 *1 *1 *2) (-12 (-5 *2 (-917)) (-4 *1 (-1235 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)))) (-3254 (*1 *2 *1) (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))) (-3254 (*1 *2 *1 *2) (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))) (-2421 (*1 *1 *1 *2) (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))) (-2421 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))) (-1403 (*1 *2 *1 *3) (-12 (-4 *1 (-1235 *2 *3)) (-4 *3 (-788)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -1693 (*2 (-1169)))) (-4 *2 (-1045)))) (-3320 (*1 *1 *1 *2) (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))) (-1540 (*1 *2 *1 *3) (-12 (-4 *1 (-1235 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1149 *3)))))
-(-13 (-969 |t#1| |t#2| (-1075)) (-10 -8 (-15 -1539 ((-1149 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -2309 (|t#1| $ |t#2|)) (-15 -2518 ((-1169) $)) (-15 -3408 (|t#1| $)) (-15 -1351 ($ $ (-917))) (-15 -3254 (|t#2| $)) (-15 -3254 (|t#2| $ |t#2|)) (-15 -2421 ($ $ |t#2|)) (-15 -2421 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -1693 (|t#1| (-1169)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -1403 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -3320 ($ $ |t#2|)) (IF (|has| |t#2| (-1105)) (-6 (-286 $ $)) |%noBranch|) (IF (|has| |t#1| (-15 * (|t#1| |t#2| |t#1|))) (PROGN (-6 (-233)) (IF (|has| |t#1| (-896 (-1169))) (-6 (-896 (-1169))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -1540 ((-1149 |t#1|) $ |t#1|)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-555)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) |has| |#1| (-38 (-407 (-563)))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 $) |has| |#1| (-555)) ((-610 (-858)) . T) ((-172) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-233) |has| |#1| (-15 * (|#1| |#2| |#1|))) ((-286 $ $) |has| |#2| (-1105)) ((-290) |has| |#1| (-555)) ((-555) |has| |#1| (-555)) ((-643 #0#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #0#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) |has| |#1| (-555)) ((-722) . T) ((-896 (-1169)) -12 (|has| |#1| (-15 * (|#1| |#2| |#1|))) (|has| |#1| (-896 (-1169)))) ((-969 |#1| |#2| (-1075)) . T) ((-1051 #0#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-4335 ((|#2| |#2|) 12)) (-3205 (((-418 |#2|) |#2|) 14)) (-2434 (((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-563))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-563)))) 30)))
-(((-1236 |#1| |#2|) (-10 -7 (-15 -3205 ((-418 |#2|) |#2|)) (-15 -4335 (|#2| |#2|)) (-15 -2434 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-563))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-563)))))) (-555) (-13 (-1233 |#1|) (-555) (-10 -8 (-15 -3548 ($ $ $))))) (T -1236))
-((-2434 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4) (|:| |xpnt| (-563)))) (-4 *4 (-13 (-1233 *3) (-555) (-10 -8 (-15 -3548 ($ $ $))))) (-4 *3 (-555)) (-5 *1 (-1236 *3 *4)))) (-4335 (*1 *2 *2) (-12 (-4 *3 (-555)) (-5 *1 (-1236 *3 *2)) (-4 *2 (-13 (-1233 *3) (-555) (-10 -8 (-15 -3548 ($ $ $))))))) (-3205 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-418 *3)) (-5 *1 (-1236 *4 *3)) (-4 *3 (-13 (-1233 *4) (-555) (-10 -8 (-15 -3548 ($ $ $))))))))
-(-10 -7 (-15 -3205 ((-418 |#2|) |#2|)) (-15 -4335 (|#2| |#2|)) (-15 -2434 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-563))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-563))))))
-((-2240 (((-1242 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1242 |#1| |#3| |#5|)) 24)))
-(((-1237 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2240 ((-1242 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1242 |#1| |#3| |#5|)))) (-1045) (-1045) (-1169) (-1169) |#1| |#2|) (T -1237))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1242 *5 *7 *9)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-14 *7 (-1169)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1242 *6 *8 *10)) (-5 *1 (-1237 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1169)))))
-(-10 -7 (-15 -2240 ((-1242 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1242 |#1| |#3| |#5|))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-2606 (((-640 (-1075)) $) 77)) (-2518 (((-1169) $) 106)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-4223 (($ $) 55 (|has| |#1| (-555)))) (-3156 (((-112) $) 57 (|has| |#1| (-555)))) (-2421 (($ $ (-407 (-563))) 101) (($ $ (-407 (-563)) (-407 (-563))) 100)) (-1539 (((-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|))) $) 108)) (-1771 (($ $) 138 (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) 121 (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) 19)) (-4335 (($ $) 165 (|has| |#1| (-363)))) (-3205 (((-418 $) $) 166 (|has| |#1| (-363)))) (-2186 (($ $) 120 (|has| |#1| (-38 (-407 (-563)))))) (-1919 (((-112) $ $) 156 (|has| |#1| (-363)))) (-1748 (($ $) 137 (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) 122 (|has| |#1| (-38 (-407 (-563)))))) (-3045 (($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|)))) 174)) (-1794 (($ $) 136 (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) 123 (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) 17 T CONST)) (-3090 (($ $ $) 160 (|has| |#1| (-363)))) (-2751 (($ $) 63)) (-3400 (((-3 $ "failed") $) 33)) (-3050 (($ $ $) 159 (|has| |#1| (-363)))) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 154 (|has| |#1| (-363)))) (-2468 (((-112) $) 167 (|has| |#1| (-363)))) (-2788 (((-112) $) 76)) (-2180 (($) 148 (|has| |#1| (-38 (-407 (-563)))))) (-3254 (((-407 (-563)) $) 103) (((-407 (-563)) $ (-407 (-563))) 102)) (-3827 (((-112) $) 31)) (-1645 (($ $ (-563)) 119 (|has| |#1| (-38 (-407 (-563)))))) (-1351 (($ $ (-917)) 104) (($ $ (-407 (-563))) 173)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 163 (|has| |#1| (-363)))) (-3920 (((-112) $) 65)) (-2588 (($ |#1| (-407 (-563))) 64) (($ $ (-1075) (-407 (-563))) 79) (($ $ (-640 (-1075)) (-640 (-407 (-563)))) 78)) (-2240 (($ (-1 |#1| |#1|) $) 66)) (-4371 (($ $) 145 (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) 68)) (-2726 ((|#1| $) 69)) (-3513 (($ (-640 $)) 152 (|has| |#1| (-363))) (($ $ $) 151 (|has| |#1| (-363)))) (-3573 (((-1151) $) 9)) (-2688 (($ $) 168 (|has| |#1| (-363)))) (-3698 (($ $) 172 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 171 (-4032 (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-955)) (|has| |#1| (-1193)) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-15 -2606 ((-640 (-1169)) |#1|))) (|has| |#1| (-15 -3698 (|#1| |#1| (-1169)))) (|has| |#1| (-38 (-407 (-563)))))))) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 153 (|has| |#1| (-363)))) (-3548 (($ (-640 $)) 150 (|has| |#1| (-363))) (($ $ $) 149 (|has| |#1| (-363)))) (-2174 (((-418 $) $) 164 (|has| |#1| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 161 (|has| |#1| (-363)))) (-3320 (($ $ (-407 (-563))) 98)) (-3008 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 155 (|has| |#1| (-363)))) (-3368 (($ $) 146 (|has| |#1| (-38 (-407 (-563)))))) (-1540 (((-1149 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))))) (-2628 (((-767) $) 157 (|has| |#1| (-363)))) (-2309 ((|#1| $ (-407 (-563))) 107) (($ $ $) 84 (|has| (-407 (-563)) (-1105)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 158 (|has| |#1| (-363)))) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) 92 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169) (-767)) 91 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-640 (-1169))) 90 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169)) 89 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-767)) 87 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-4167 (((-407 (-563)) $) 67)) (-1806 (($ $) 135 (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) 124 (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) 134 (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) 125 (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) 133 (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) 126 (|has| |#1| (-38 (-407 (-563)))))) (-1741 (($ $) 75)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 50 (|has| |#1| (-172))) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555)))) (-4319 ((|#1| $ (-407 (-563))) 62)) (-2779 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-1675 (((-767)) 28)) (-3408 ((|#1| $) 105)) (-1840 (($ $) 144 (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) 132 (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) 56 (|has| |#1| (-555)))) (-1817 (($ $) 143 (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) 131 (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) 142 (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) 130 (|has| |#1| (-38 (-407 (-563)))))) (-1403 ((|#1| $ (-407 (-563))) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-1311 (($ $) 141 (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) 129 (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) 140 (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) 128 (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) 139 (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) 127 (|has| |#1| (-38 (-407 (-563)))))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) 96 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169) (-767)) 95 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-640 (-1169))) 94 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169)) 93 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-767)) 88 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-1718 (((-112) $ $) 6)) (-1837 (($ $ |#1|) 61 (|has| |#1| (-363))) (($ $ $) 170 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 169 (|has| |#1| (-363))) (($ $ $) 147 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 118 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
+((-1787 (*1 *2 *1) (-12 (-4 *1 (-1235 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (-5 *2 (-1149 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-2308 (*1 *2 *1 *3) (-12 (-4 *1 (-1235 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045)))) (-2517 (*1 *2 *1) (-12 (-4 *1 (-1235 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (-5 *2 (-1169)))) (-3412 (*1 *2 *1) (-12 (-4 *1 (-1235 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045)))) (-1821 (*1 *1 *1 *2) (-12 (-5 *2 (-917)) (-4 *1 (-1235 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)))) (-1775 (*1 *2 *1) (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))) (-1775 (*1 *2 *1 *2) (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))) (-1763 (*1 *1 *1 *2) (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))) (-1763 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))) (-1402 (*1 *2 *1 *3) (-12 (-4 *1 (-1235 *2 *3)) (-4 *3 (-788)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -1692 (*2 (-1169)))) (-4 *2 (-1045)))) (-1751 (*1 *1 *1 *2) (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))) (-1542 (*1 *2 *1 *3) (-12 (-4 *1 (-1235 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788)) (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1149 *3)))))
+(-13 (-969 |t#1| |t#2| (-1075)) (-10 -8 (-15 -1787 ((-1149 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -2308 (|t#1| $ |t#2|)) (-15 -2517 ((-1169) $)) (-15 -3412 (|t#1| $)) (-15 -1821 ($ $ (-917))) (-15 -1775 (|t#2| $)) (-15 -1775 (|t#2| $ |t#2|)) (-15 -1763 ($ $ |t#2|)) (-15 -1763 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -1692 (|t#1| (-1169)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -1402 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -1751 ($ $ |t#2|)) (IF (|has| |t#2| (-1105)) (-6 (-286 $ $)) |%noBranch|) (IF (|has| |t#1| (-15 * (|t#1| |t#2| |t#1|))) (PROGN (-6 (-233)) (IF (|has| |t#1| (-896 (-1169))) (-6 (-896 (-1169))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -1542 ((-1149 |t#1|) $ |t#1|)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-555)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #0#) |has| |#1| (-38 (-407 (-563)))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 $) |has| |#1| (-555)) ((-610 (-858)) . T) ((-172) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-233) |has| |#1| (-15 * (|#1| |#2| |#1|))) ((-286 $ $) |has| |#2| (-1105)) ((-290) |has| |#1| (-555)) ((-555) |has| |#1| (-555)) ((-643 #0#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #0#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) |has| |#1| (-555)) ((-722) . T) ((-896 (-1169)) -12 (|has| |#1| (-15 * (|#1| |#2| |#1|))) (|has| |#1| (-896 (-1169)))) ((-969 |#1| |#2| (-1075)) . T) ((-1051 #0#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
+((-1798 ((|#2| |#2|) 12)) (-2802 (((-418 |#2|) |#2|) 14)) (-1809 (((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-563))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-563)))) 30)))
+(((-1236 |#1| |#2|) (-10 -7 (-15 -2802 ((-418 |#2|) |#2|)) (-15 -1798 (|#2| |#2|)) (-15 -1809 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-563))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-563)))))) (-555) (-13 (-1233 |#1|) (-555) (-10 -8 (-15 -3551 ($ $ $))))) (T -1236))
+((-1809 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4) (|:| |xpnt| (-563)))) (-4 *4 (-13 (-1233 *3) (-555) (-10 -8 (-15 -3551 ($ $ $))))) (-4 *3 (-555)) (-5 *1 (-1236 *3 *4)))) (-1798 (*1 *2 *2) (-12 (-4 *3 (-555)) (-5 *1 (-1236 *3 *2)) (-4 *2 (-13 (-1233 *3) (-555) (-10 -8 (-15 -3551 ($ $ $))))))) (-2802 (*1 *2 *3) (-12 (-4 *4 (-555)) (-5 *2 (-418 *3)) (-5 *1 (-1236 *4 *3)) (-4 *3 (-13 (-1233 *4) (-555) (-10 -8 (-15 -3551 ($ $ $))))))))
+(-10 -7 (-15 -2802 ((-418 |#2|) |#2|)) (-15 -1798 (|#2| |#2|)) (-15 -1809 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-563))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-563))))))
+((-2238 (((-1242 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1242 |#1| |#3| |#5|)) 24)))
+(((-1237 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2238 ((-1242 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1242 |#1| |#3| |#5|)))) (-1045) (-1045) (-1169) (-1169) |#1| |#2|) (T -1237))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1242 *5 *7 *9)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-14 *7 (-1169)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1242 *6 *8 *10)) (-5 *1 (-1237 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1169)))))
+(-10 -7 (-15 -2238 ((-1242 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1242 |#1| |#3| |#5|))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-2605 (((-640 (-1075)) $) 77)) (-2517 (((-1169) $) 106)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-3231 (($ $) 55 (|has| |#1| (-555)))) (-3211 (((-112) $) 57 (|has| |#1| (-555)))) (-1763 (($ $ (-407 (-563))) 101) (($ $ (-407 (-563)) (-407 (-563))) 100)) (-1787 (((-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|))) $) 108)) (-1770 (($ $) 138 (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) 121 (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) 19)) (-1798 (($ $) 165 (|has| |#1| (-363)))) (-2802 (((-418 $) $) 166 (|has| |#1| (-363)))) (-2185 (($ $) 120 (|has| |#1| (-38 (-407 (-563)))))) (-2003 (((-112) $ $) 156 (|has| |#1| (-363)))) (-1747 (($ $) 137 (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) 122 (|has| |#1| (-38 (-407 (-563)))))) (-3049 (($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|)))) 174)) (-1793 (($ $) 136 (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) 123 (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) 17 T CONST)) (-3094 (($ $ $) 160 (|has| |#1| (-363)))) (-2750 (($ $) 63)) (-3951 (((-3 $ "failed") $) 33)) (-3054 (($ $ $) 159 (|has| |#1| (-363)))) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 154 (|has| |#1| (-363)))) (-2560 (((-112) $) 167 (|has| |#1| (-363)))) (-3381 (((-112) $) 76)) (-2179 (($) 148 (|has| |#1| (-38 (-407 (-563)))))) (-1775 (((-407 (-563)) $) 103) (((-407 (-563)) $ (-407 (-563))) 102)) (-3401 (((-112) $) 31)) (-2172 (($ $ (-563)) 119 (|has| |#1| (-38 (-407 (-563)))))) (-1821 (($ $ (-917)) 104) (($ $ (-407 (-563))) 173)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 163 (|has| |#1| (-363)))) (-3805 (((-112) $) 65)) (-2587 (($ |#1| (-407 (-563))) 64) (($ $ (-1075) (-407 (-563))) 79) (($ $ (-640 (-1075)) (-640 (-407 (-563)))) 78)) (-2238 (($ (-1 |#1| |#1|) $) 66)) (-4372 (($ $) 145 (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) 68)) (-2725 ((|#1| $) 69)) (-3517 (($ (-640 $)) 152 (|has| |#1| (-363))) (($ $ $) 151 (|has| |#1| (-363)))) (-3854 (((-1151) $) 9)) (-2687 (($ $) 168 (|has| |#1| (-363)))) (-2062 (($ $) 172 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 171 (-4034 (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-955)) (|has| |#1| (-1193)) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-15 -2605 ((-640 (-1169)) |#1|))) (|has| |#1| (-15 -2062 (|#1| |#1| (-1169)))) (|has| |#1| (-38 (-407 (-563)))))))) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 153 (|has| |#1| (-363)))) (-3551 (($ (-640 $)) 150 (|has| |#1| (-363))) (($ $ $) 149 (|has| |#1| (-363)))) (-2173 (((-418 $) $) 164 (|has| |#1| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 161 (|has| |#1| (-363)))) (-1751 (($ $ (-407 (-563))) 98)) (-3012 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 155 (|has| |#1| (-363)))) (-3372 (($ $) 146 (|has| |#1| (-38 (-407 (-563)))))) (-1542 (((-1149 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))))) (-1993 (((-767) $) 157 (|has| |#1| (-363)))) (-2308 ((|#1| $ (-407 (-563))) 107) (($ $ $) 84 (|has| (-407 (-563)) (-1105)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 158 (|has| |#1| (-363)))) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) 92 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169) (-767)) 91 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-640 (-1169))) 90 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169)) 89 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-767)) 87 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-3871 (((-407 (-563)) $) 67)) (-1805 (($ $) 135 (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) 124 (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) 134 (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) 125 (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) 133 (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) 126 (|has| |#1| (-38 (-407 (-563)))))) (-3369 (($ $) 75)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 50 (|has| |#1| (-172))) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555)))) (-3244 ((|#1| $ (-407 (-563))) 62)) (-2047 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-3914 (((-767)) 28)) (-3412 ((|#1| $) 105)) (-1839 (($ $) 144 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) 132 (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) 56 (|has| |#1| (-555)))) (-1816 (($ $) 143 (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) 131 (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) 142 (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) 130 (|has| |#1| (-38 (-407 (-563)))))) (-1402 ((|#1| $ (-407 (-563))) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-1311 (($ $) 141 (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) 129 (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) 140 (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) 128 (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) 139 (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) 127 (|has| |#1| (-38 (-407 (-563)))))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) 96 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169) (-767)) 95 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-640 (-1169))) 94 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169)) 93 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-767)) 88 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-1718 (((-112) $ $) 6)) (-1836 (($ $ |#1|) 61 (|has| |#1| (-363))) (($ $ $) 170 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 169 (|has| |#1| (-363))) (($ $ $) 147 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 118 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
(((-1238 |#1|) (-140) (-1045)) (T -1238))
-((-3045 (*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *3 (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| *4)))) (-4 *4 (-1045)) (-4 *1 (-1238 *4)))) (-1351 (*1 *1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-4 *1 (-1238 *3)) (-4 *3 (-1045)))) (-3698 (*1 *1 *1) (-12 (-4 *1 (-1238 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563)))))) (-3698 (*1 *1 *1 *2) (-4032 (-12 (-5 *2 (-1169)) (-4 *1 (-1238 *3)) (-4 *3 (-1045)) (-12 (-4 *3 (-29 (-563))) (-4 *3 (-955)) (-4 *3 (-1193)) (-4 *3 (-38 (-407 (-563)))))) (-12 (-5 *2 (-1169)) (-4 *1 (-1238 *3)) (-4 *3 (-1045)) (-12 (|has| *3 (-15 -2606 ((-640 *2) *3))) (|has| *3 (-15 -3698 (*3 *3 *2))) (-4 *3 (-38 (-407 (-563)))))))))
-(-13 (-1235 |t#1| (-407 (-563))) (-10 -8 (-15 -3045 ($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |t#1|))))) (-15 -1351 ($ $ (-407 (-563)))) (IF (|has| |t#1| (-38 (-407 (-563)))) (PROGN (-15 -3698 ($ $)) (IF (|has| |t#1| (-15 -3698 (|t#1| |t#1| (-1169)))) (IF (|has| |t#1| (-15 -2606 ((-640 (-1169)) |t#1|))) (-15 -3698 ($ $ (-1169))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1193)) (IF (|has| |t#1| (-955)) (IF (|has| |t#1| (-29 (-563))) (-15 -3698 ($ $ (-1169))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-998)) (-6 (-1193))) |%noBranch|) (IF (|has| |t#1| (-363)) (-6 (-363)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-407 (-563))) . T) ((-25) . T) ((-38 #1=(-407 (-563))) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-35) |has| |#1| (-38 (-407 (-563)))) ((-95) |has| |#1| (-38 (-407 (-563)))) ((-102) . T) ((-111 #1# #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-610 (-858)) . T) ((-172) -4032 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-233) |has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) ((-243) |has| |#1| (-363)) ((-284) |has| |#1| (-38 (-407 (-563)))) ((-286 $ $) |has| (-407 (-563)) (-1105)) ((-290) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-307) |has| |#1| (-363)) ((-363) |has| |#1| (-363)) ((-452) |has| |#1| (-363)) ((-493) |has| |#1| (-38 (-407 (-563)))) ((-555) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-643 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-722) . T) ((-896 (-1169)) -12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169)))) ((-969 |#1| #0# (-1075)) . T) ((-916) |has| |#1| (-363)) ((-998) |has| |#1| (-38 (-407 (-563)))) ((-1051 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-1051 |#1|) . T) ((-1051 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1193) |has| |#1| (-38 (-407 (-563)))) ((-1196) |has| |#1| (-38 (-407 (-563)))) ((-1212) |has| |#1| (-363)) ((-1235 |#1| #0#) . T))
-((-3411 (((-112) $) 12)) (-2131 (((-3 |#3| "failed") $) 17)) (-2058 ((|#3| $) 14)))
-(((-1239 |#1| |#2| |#3|) (-10 -8 (-15 -2131 ((-3 |#3| "failed") |#1|)) (-15 -2058 (|#3| |#1|)) (-15 -3411 ((-112) |#1|))) (-1240 |#2| |#3|) (-1045) (-1217 |#2|)) (T -1239))
-NIL
-(-10 -8 (-15 -2131 ((-3 |#3| "failed") |#1|)) (-15 -2058 (|#3| |#1|)) (-15 -3411 ((-112) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-2606 (((-640 (-1075)) $) 77)) (-2518 (((-1169) $) 106)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-4223 (($ $) 55 (|has| |#1| (-555)))) (-3156 (((-112) $) 57 (|has| |#1| (-555)))) (-2421 (($ $ (-407 (-563))) 101) (($ $ (-407 (-563)) (-407 (-563))) 100)) (-1539 (((-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|))) $) 108)) (-1771 (($ $) 138 (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) 121 (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) 19)) (-4335 (($ $) 165 (|has| |#1| (-363)))) (-3205 (((-418 $) $) 166 (|has| |#1| (-363)))) (-2186 (($ $) 120 (|has| |#1| (-38 (-407 (-563)))))) (-1919 (((-112) $ $) 156 (|has| |#1| (-363)))) (-1748 (($ $) 137 (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) 122 (|has| |#1| (-38 (-407 (-563)))))) (-3045 (($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|)))) 174)) (-1794 (($ $) 136 (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) 123 (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) 17 T CONST)) (-2131 (((-3 |#2| "failed") $) 185)) (-2058 ((|#2| $) 186)) (-3090 (($ $ $) 160 (|has| |#1| (-363)))) (-2751 (($ $) 63)) (-3400 (((-3 $ "failed") $) 33)) (-4031 (((-407 (-563)) $) 182)) (-3050 (($ $ $) 159 (|has| |#1| (-363)))) (-2670 (($ (-407 (-563)) |#2|) 183)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 154 (|has| |#1| (-363)))) (-2468 (((-112) $) 167 (|has| |#1| (-363)))) (-2788 (((-112) $) 76)) (-2180 (($) 148 (|has| |#1| (-38 (-407 (-563)))))) (-3254 (((-407 (-563)) $) 103) (((-407 (-563)) $ (-407 (-563))) 102)) (-3827 (((-112) $) 31)) (-1645 (($ $ (-563)) 119 (|has| |#1| (-38 (-407 (-563)))))) (-1351 (($ $ (-917)) 104) (($ $ (-407 (-563))) 173)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 163 (|has| |#1| (-363)))) (-3920 (((-112) $) 65)) (-2588 (($ |#1| (-407 (-563))) 64) (($ $ (-1075) (-407 (-563))) 79) (($ $ (-640 (-1075)) (-640 (-407 (-563)))) 78)) (-2240 (($ (-1 |#1| |#1|) $) 66)) (-4371 (($ $) 145 (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) 68)) (-2726 ((|#1| $) 69)) (-3513 (($ (-640 $)) 152 (|has| |#1| (-363))) (($ $ $) 151 (|has| |#1| (-363)))) (-3377 ((|#2| $) 181)) (-2401 (((-3 |#2| "failed") $) 179)) (-2660 ((|#2| $) 180)) (-3573 (((-1151) $) 9)) (-2688 (($ $) 168 (|has| |#1| (-363)))) (-3698 (($ $) 172 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 171 (-4032 (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-955)) (|has| |#1| (-1193)) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-15 -2606 ((-640 (-1169)) |#1|))) (|has| |#1| (-15 -3698 (|#1| |#1| (-1169)))) (|has| |#1| (-38 (-407 (-563)))))))) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 153 (|has| |#1| (-363)))) (-3548 (($ (-640 $)) 150 (|has| |#1| (-363))) (($ $ $) 149 (|has| |#1| (-363)))) (-2174 (((-418 $) $) 164 (|has| |#1| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 161 (|has| |#1| (-363)))) (-3320 (($ $ (-407 (-563))) 98)) (-3008 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 155 (|has| |#1| (-363)))) (-3368 (($ $) 146 (|has| |#1| (-38 (-407 (-563)))))) (-1540 (((-1149 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))))) (-2628 (((-767) $) 157 (|has| |#1| (-363)))) (-2309 ((|#1| $ (-407 (-563))) 107) (($ $ $) 84 (|has| (-407 (-563)) (-1105)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 158 (|has| |#1| (-363)))) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) 92 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169) (-767)) 91 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-640 (-1169))) 90 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169)) 89 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-767)) 87 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-4167 (((-407 (-563)) $) 67)) (-1806 (($ $) 135 (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) 124 (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) 134 (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) 125 (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) 133 (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) 126 (|has| |#1| (-38 (-407 (-563)))))) (-1741 (($ $) 75)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 50 (|has| |#1| (-172))) (($ |#2|) 184) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555)))) (-4319 ((|#1| $ (-407 (-563))) 62)) (-2779 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-1675 (((-767)) 28)) (-3408 ((|#1| $) 105)) (-1840 (($ $) 144 (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) 132 (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) 56 (|has| |#1| (-555)))) (-1817 (($ $) 143 (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) 131 (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) 142 (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) 130 (|has| |#1| (-38 (-407 (-563)))))) (-1403 ((|#1| $ (-407 (-563))) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-1311 (($ $) 141 (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) 129 (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) 140 (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) 128 (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) 139 (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) 127 (|has| |#1| (-38 (-407 (-563)))))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) 96 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169) (-767)) 95 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-640 (-1169))) 94 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169)) 93 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-767)) 88 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-1718 (((-112) $ $) 6)) (-1837 (($ $ |#1|) 61 (|has| |#1| (-363))) (($ $ $) 170 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 169 (|has| |#1| (-363))) (($ $ $) 147 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 118 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
+((-3049 (*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *3 (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| *4)))) (-4 *4 (-1045)) (-4 *1 (-1238 *4)))) (-1821 (*1 *1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-4 *1 (-1238 *3)) (-4 *3 (-1045)))) (-2062 (*1 *1 *1) (-12 (-4 *1 (-1238 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563)))))) (-2062 (*1 *1 *1 *2) (-4034 (-12 (-5 *2 (-1169)) (-4 *1 (-1238 *3)) (-4 *3 (-1045)) (-12 (-4 *3 (-29 (-563))) (-4 *3 (-955)) (-4 *3 (-1193)) (-4 *3 (-38 (-407 (-563)))))) (-12 (-5 *2 (-1169)) (-4 *1 (-1238 *3)) (-4 *3 (-1045)) (-12 (|has| *3 (-15 -2605 ((-640 *2) *3))) (|has| *3 (-15 -2062 (*3 *3 *2))) (-4 *3 (-38 (-407 (-563)))))))))
+(-13 (-1235 |t#1| (-407 (-563))) (-10 -8 (-15 -3049 ($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |t#1|))))) (-15 -1821 ($ $ (-407 (-563)))) (IF (|has| |t#1| (-38 (-407 (-563)))) (PROGN (-15 -2062 ($ $)) (IF (|has| |t#1| (-15 -2062 (|t#1| |t#1| (-1169)))) (IF (|has| |t#1| (-15 -2605 ((-640 (-1169)) |t#1|))) (-15 -2062 ($ $ (-1169))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1193)) (IF (|has| |t#1| (-955)) (IF (|has| |t#1| (-29 (-563))) (-15 -2062 ($ $ (-1169))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-998)) (-6 (-1193))) |%noBranch|) (IF (|has| |t#1| (-363)) (-6 (-363)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-407 (-563))) . T) ((-25) . T) ((-38 #1=(-407 (-563))) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-35) |has| |#1| (-38 (-407 (-563)))) ((-95) |has| |#1| (-38 (-407 (-563)))) ((-102) . T) ((-111 #1# #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-610 (-858)) . T) ((-172) -4034 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-233) |has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) ((-243) |has| |#1| (-363)) ((-284) |has| |#1| (-38 (-407 (-563)))) ((-286 $ $) |has| (-407 (-563)) (-1105)) ((-290) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-307) |has| |#1| (-363)) ((-363) |has| |#1| (-363)) ((-452) |has| |#1| (-363)) ((-493) |has| |#1| (-38 (-407 (-563)))) ((-555) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-643 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-722) . T) ((-896 (-1169)) -12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169)))) ((-969 |#1| #0# (-1075)) . T) ((-916) |has| |#1| (-363)) ((-998) |has| |#1| (-38 (-407 (-563)))) ((-1051 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-1051 |#1|) . T) ((-1051 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1193) |has| |#1| (-38 (-407 (-563)))) ((-1196) |has| |#1| (-38 (-407 (-563)))) ((-1212) |has| |#1| (-363)) ((-1235 |#1| #0#) . T))
+((-3439 (((-112) $) 12)) (-2130 (((-3 |#3| "failed") $) 17)) (-2057 ((|#3| $) 14)))
+(((-1239 |#1| |#2| |#3|) (-10 -8 (-15 -2130 ((-3 |#3| "failed") |#1|)) (-15 -2057 (|#3| |#1|)) (-15 -3439 ((-112) |#1|))) (-1240 |#2| |#3|) (-1045) (-1217 |#2|)) (T -1239))
+NIL
+(-10 -8 (-15 -2130 ((-3 |#3| "failed") |#1|)) (-15 -2057 (|#3| |#1|)) (-15 -3439 ((-112) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-2605 (((-640 (-1075)) $) 77)) (-2517 (((-1169) $) 106)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-3231 (($ $) 55 (|has| |#1| (-555)))) (-3211 (((-112) $) 57 (|has| |#1| (-555)))) (-1763 (($ $ (-407 (-563))) 101) (($ $ (-407 (-563)) (-407 (-563))) 100)) (-1787 (((-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|))) $) 108)) (-1770 (($ $) 138 (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) 121 (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) 19)) (-1798 (($ $) 165 (|has| |#1| (-363)))) (-2802 (((-418 $) $) 166 (|has| |#1| (-363)))) (-2185 (($ $) 120 (|has| |#1| (-38 (-407 (-563)))))) (-2003 (((-112) $ $) 156 (|has| |#1| (-363)))) (-1747 (($ $) 137 (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) 122 (|has| |#1| (-38 (-407 (-563)))))) (-3049 (($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|)))) 174)) (-1793 (($ $) 136 (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) 123 (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) 17 T CONST)) (-2130 (((-3 |#2| "failed") $) 185)) (-2057 ((|#2| $) 186)) (-3094 (($ $ $) 160 (|has| |#1| (-363)))) (-2750 (($ $) 63)) (-3951 (((-3 $ "failed") $) 33)) (-1854 (((-407 (-563)) $) 182)) (-3054 (($ $ $) 159 (|has| |#1| (-363)))) (-2669 (($ (-407 (-563)) |#2|) 183)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 154 (|has| |#1| (-363)))) (-2560 (((-112) $) 167 (|has| |#1| (-363)))) (-3381 (((-112) $) 76)) (-2179 (($) 148 (|has| |#1| (-38 (-407 (-563)))))) (-1775 (((-407 (-563)) $) 103) (((-407 (-563)) $ (-407 (-563))) 102)) (-3401 (((-112) $) 31)) (-2172 (($ $ (-563)) 119 (|has| |#1| (-38 (-407 (-563)))))) (-1821 (($ $ (-917)) 104) (($ $ (-407 (-563))) 173)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 163 (|has| |#1| (-363)))) (-3805 (((-112) $) 65)) (-2587 (($ |#1| (-407 (-563))) 64) (($ $ (-1075) (-407 (-563))) 79) (($ $ (-640 (-1075)) (-640 (-407 (-563)))) 78)) (-2238 (($ (-1 |#1| |#1|) $) 66)) (-4372 (($ $) 145 (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) 68)) (-2725 ((|#1| $) 69)) (-3517 (($ (-640 $)) 152 (|has| |#1| (-363))) (($ $ $) 151 (|has| |#1| (-363)))) (-1843 ((|#2| $) 181)) (-1832 (((-3 |#2| "failed") $) 179)) (-2659 ((|#2| $) 180)) (-3854 (((-1151) $) 9)) (-2687 (($ $) 168 (|has| |#1| (-363)))) (-2062 (($ $) 172 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 171 (-4034 (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-955)) (|has| |#1| (-1193)) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-15 -2605 ((-640 (-1169)) |#1|))) (|has| |#1| (-15 -2062 (|#1| |#1| (-1169)))) (|has| |#1| (-38 (-407 (-563)))))))) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 153 (|has| |#1| (-363)))) (-3551 (($ (-640 $)) 150 (|has| |#1| (-363))) (($ $ $) 149 (|has| |#1| (-363)))) (-2173 (((-418 $) $) 164 (|has| |#1| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 161 (|has| |#1| (-363)))) (-1751 (($ $ (-407 (-563))) 98)) (-3012 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 155 (|has| |#1| (-363)))) (-3372 (($ $) 146 (|has| |#1| (-38 (-407 (-563)))))) (-1542 (((-1149 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))))) (-1993 (((-767) $) 157 (|has| |#1| (-363)))) (-2308 ((|#1| $ (-407 (-563))) 107) (($ $ $) 84 (|has| (-407 (-563)) (-1105)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 158 (|has| |#1| (-363)))) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) 92 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169) (-767)) 91 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-640 (-1169))) 90 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169)) 89 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-767)) 87 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-3871 (((-407 (-563)) $) 67)) (-1805 (($ $) 135 (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) 124 (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) 134 (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) 125 (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) 133 (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) 126 (|has| |#1| (-38 (-407 (-563)))))) (-3369 (($ $) 75)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 50 (|has| |#1| (-172))) (($ |#2|) 184) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555)))) (-3244 ((|#1| $ (-407 (-563))) 62)) (-2047 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-3914 (((-767)) 28)) (-3412 ((|#1| $) 105)) (-1839 (($ $) 144 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) 132 (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) 56 (|has| |#1| (-555)))) (-1816 (($ $) 143 (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) 131 (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) 142 (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) 130 (|has| |#1| (-38 (-407 (-563)))))) (-1402 ((|#1| $ (-407 (-563))) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-1311 (($ $) 141 (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) 129 (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) 140 (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) 128 (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) 139 (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) 127 (|has| |#1| (-38 (-407 (-563)))))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) 96 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169) (-767)) 95 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-640 (-1169))) 94 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-1169)) 93 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (($ $ (-767)) 88 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-1718 (((-112) $ $) 6)) (-1836 (($ $ |#1|) 61 (|has| |#1| (-363))) (($ $ $) 170 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 169 (|has| |#1| (-363))) (($ $ $) 147 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 118 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
(((-1240 |#1| |#2|) (-140) (-1045) (-1217 |t#1|)) (T -1240))
-((-4167 (*1 *2 *1) (-12 (-4 *1 (-1240 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1217 *3)) (-5 *2 (-407 (-563))))) (-2670 (*1 *1 *2 *3) (-12 (-5 *2 (-407 (-563))) (-4 *4 (-1045)) (-4 *1 (-1240 *4 *3)) (-4 *3 (-1217 *4)))) (-4031 (*1 *2 *1) (-12 (-4 *1 (-1240 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1217 *3)) (-5 *2 (-407 (-563))))) (-3377 (*1 *2 *1) (-12 (-4 *1 (-1240 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1217 *3)))) (-2660 (*1 *2 *1) (-12 (-4 *1 (-1240 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1217 *3)))) (-2401 (*1 *2 *1) (|partial| -12 (-4 *1 (-1240 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1217 *3)))))
-(-13 (-1238 |t#1|) (-1034 |t#2|) (-613 |t#2|) (-10 -8 (-15 -2670 ($ (-407 (-563)) |t#2|)) (-15 -4031 ((-407 (-563)) $)) (-15 -3377 (|t#2| $)) (-15 -4167 ((-407 (-563)) $)) (-15 -2660 (|t#2| $)) (-15 -2401 ((-3 |t#2| "failed") $))))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-407 (-563))) . T) ((-25) . T) ((-38 #1=(-407 (-563))) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-35) |has| |#1| (-38 (-407 (-563)))) ((-95) |has| |#1| (-38 (-407 (-563)))) ((-102) . T) ((-111 #1# #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 |#2|) . T) ((-613 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-610 (-858)) . T) ((-172) -4032 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-233) |has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) ((-243) |has| |#1| (-363)) ((-284) |has| |#1| (-38 (-407 (-563)))) ((-286 $ $) |has| (-407 (-563)) (-1105)) ((-290) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-307) |has| |#1| (-363)) ((-363) |has| |#1| (-363)) ((-452) |has| |#1| (-363)) ((-493) |has| |#1| (-38 (-407 (-563)))) ((-555) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-643 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-722) . T) ((-896 (-1169)) -12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169)))) ((-969 |#1| #0# (-1075)) . T) ((-916) |has| |#1| (-363)) ((-998) |has| |#1| (-38 (-407 (-563)))) ((-1034 |#2|) . T) ((-1051 #1#) -4032 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-1051 |#1|) . T) ((-1051 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1193) |has| |#1| (-38 (-407 (-563)))) ((-1196) |has| |#1| (-38 (-407 (-563)))) ((-1212) |has| |#1| (-363)) ((-1235 |#1| #0#) . T) ((-1238 |#1|) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2606 (((-640 (-1075)) $) NIL)) (-2518 (((-1169) $) 96)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-2421 (($ $ (-407 (-563))) 106) (($ $ (-407 (-563)) (-407 (-563))) 108)) (-1539 (((-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|))) $) 51)) (-1771 (($ $) 180 (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) 156 (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL (|has| |#1| (-363)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2186 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1919 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1748 (($ $) 176 (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) 152 (|has| |#1| (-38 (-407 (-563)))))) (-3045 (($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|)))) 61)) (-1794 (($ $) 184 (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) 160 (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#2| "failed") $) NIL)) (-2058 ((|#2| $) NIL)) (-3090 (($ $ $) NIL (|has| |#1| (-363)))) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) 79)) (-4031 (((-407 (-563)) $) 13)) (-3050 (($ $ $) NIL (|has| |#1| (-363)))) (-2670 (($ (-407 (-563)) |#2|) 11)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2468 (((-112) $) NIL (|has| |#1| (-363)))) (-2788 (((-112) $) 68)) (-2180 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3254 (((-407 (-563)) $) 103) (((-407 (-563)) $ (-407 (-563))) 104)) (-3827 (((-112) $) NIL)) (-1645 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1351 (($ $ (-917)) 120) (($ $ (-407 (-563))) 118)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-407 (-563))) 31) (($ $ (-1075) (-407 (-563))) NIL) (($ $ (-640 (-1075)) (-640 (-407 (-563)))) NIL)) (-2240 (($ (-1 |#1| |#1|) $) 115)) (-4371 (($ $) 150 (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-3377 ((|#2| $) 12)) (-2401 (((-3 |#2| "failed") $) 41)) (-2660 ((|#2| $) 42)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) 93 (|has| |#1| (-363)))) (-3698 (($ $) 135 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 140 (-4032 (-12 (|has| |#1| (-15 -3698 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2606 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193)))))) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2174 (((-418 $) $) NIL (|has| |#1| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3320 (($ $ (-407 (-563))) 112)) (-3008 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3368 (($ $) 148 (|has| |#1| (-38 (-407 (-563)))))) (-1540 (((-1149 |#1|) $ |#1|) 90 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))))) (-2628 (((-767) $) NIL (|has| |#1| (-363)))) (-2309 ((|#1| $ (-407 (-563))) 100) (($ $ $) 86 (|has| (-407 (-563)) (-1105)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) 127 (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 124 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-4167 (((-407 (-563)) $) 16)) (-1806 (($ $) 186 (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) 162 (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) 182 (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) 158 (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) 178 (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) 154 (|has| |#1| (-38 (-407 (-563)))))) (-1741 (($ $) 110)) (-1693 (((-858) $) NIL) (($ (-563)) 35) (($ |#1|) 27 (|has| |#1| (-172))) (($ |#2|) 32) (($ (-407 (-563))) 128 (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555)))) (-4319 ((|#1| $ (-407 (-563))) 99)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) 117)) (-3408 ((|#1| $) 98)) (-1840 (($ $) 192 (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) 168 (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1817 (($ $) 188 (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) 164 (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) 196 (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) 172 (|has| |#1| (-38 (-407 (-563)))))) (-1403 ((|#1| $ (-407 (-563))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-1311 (($ $) 198 (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) 174 (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) 194 (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) 170 (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) 190 (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) 166 (|has| |#1| (-38 (-407 (-563)))))) (-2241 (($) 21 T CONST)) (-2254 (($) 17 T CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-1718 (((-112) $ $) 66)) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) 92 (|has| |#1| (-363)))) (-1826 (($ $) 131) (($ $ $) 72)) (-1814 (($ $ $) 70)) (** (($ $ (-917)) NIL) (($ $ (-767)) 76) (($ $ (-563)) 145 (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 146 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 74) (($ $ |#1|) NIL) (($ |#1| $) 126) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
+((-3871 (*1 *2 *1) (-12 (-4 *1 (-1240 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1217 *3)) (-5 *2 (-407 (-563))))) (-2669 (*1 *1 *2 *3) (-12 (-5 *2 (-407 (-563))) (-4 *4 (-1045)) (-4 *1 (-1240 *4 *3)) (-4 *3 (-1217 *4)))) (-1854 (*1 *2 *1) (-12 (-4 *1 (-1240 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1217 *3)) (-5 *2 (-407 (-563))))) (-1843 (*1 *2 *1) (-12 (-4 *1 (-1240 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1217 *3)))) (-2659 (*1 *2 *1) (-12 (-4 *1 (-1240 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1217 *3)))) (-1832 (*1 *2 *1) (|partial| -12 (-4 *1 (-1240 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1217 *3)))))
+(-13 (-1238 |t#1|) (-1034 |t#2|) (-613 |t#2|) (-10 -8 (-15 -2669 ($ (-407 (-563)) |t#2|)) (-15 -1854 ((-407 (-563)) $)) (-15 -1843 (|t#2| $)) (-15 -3871 ((-407 (-563)) $)) (-15 -2659 (|t#2| $)) (-15 -1832 ((-3 |t#2| "failed") $))))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-407 (-563))) . T) ((-25) . T) ((-38 #1=(-407 (-563))) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-35) |has| |#1| (-38 (-407 (-563)))) ((-95) |has| |#1| (-38 (-407 (-563)))) ((-102) . T) ((-111 #1# #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 |#2|) . T) ((-613 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-610 (-858)) . T) ((-172) -4034 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-233) |has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) ((-243) |has| |#1| (-363)) ((-284) |has| |#1| (-38 (-407 (-563)))) ((-286 $ $) |has| (-407 (-563)) (-1105)) ((-290) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-307) |has| |#1| (-363)) ((-363) |has| |#1| (-363)) ((-452) |has| |#1| (-363)) ((-493) |has| |#1| (-38 (-407 (-563)))) ((-555) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-643 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363))) ((-722) . T) ((-896 (-1169)) -12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169)))) ((-969 |#1| #0# (-1075)) . T) ((-916) |has| |#1| (-363)) ((-998) |has| |#1| (-38 (-407 (-563)))) ((-1034 |#2|) . T) ((-1051 #1#) -4034 (|has| |#1| (-363)) (|has| |#1| (-38 (-407 (-563))))) ((-1051 |#1|) . T) ((-1051 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-363)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1193) |has| |#1| (-38 (-407 (-563)))) ((-1196) |has| |#1| (-38 (-407 (-563)))) ((-1212) |has| |#1| (-363)) ((-1235 |#1| #0#) . T) ((-1238 |#1|) . T))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2605 (((-640 (-1075)) $) NIL)) (-2517 (((-1169) $) 96)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-1763 (($ $ (-407 (-563))) 106) (($ $ (-407 (-563)) (-407 (-563))) 108)) (-1787 (((-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|))) $) 51)) (-1770 (($ $) 180 (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) 156 (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL (|has| |#1| (-363)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2185 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2003 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1747 (($ $) 176 (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) 152 (|has| |#1| (-38 (-407 (-563)))))) (-3049 (($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|)))) 61)) (-1793 (($ $) 184 (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) 160 (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#2| "failed") $) NIL)) (-2057 ((|#2| $) NIL)) (-3094 (($ $ $) NIL (|has| |#1| (-363)))) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) 79)) (-1854 (((-407 (-563)) $) 13)) (-3054 (($ $ $) NIL (|has| |#1| (-363)))) (-2669 (($ (-407 (-563)) |#2|) 11)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2560 (((-112) $) NIL (|has| |#1| (-363)))) (-3381 (((-112) $) 68)) (-2179 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1775 (((-407 (-563)) $) 103) (((-407 (-563)) $ (-407 (-563))) 104)) (-3401 (((-112) $) NIL)) (-2172 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1821 (($ $ (-917)) 120) (($ $ (-407 (-563))) 118)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-407 (-563))) 31) (($ $ (-1075) (-407 (-563))) NIL) (($ $ (-640 (-1075)) (-640 (-407 (-563)))) NIL)) (-2238 (($ (-1 |#1| |#1|) $) 115)) (-4372 (($ $) 150 (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-1843 ((|#2| $) 12)) (-1832 (((-3 |#2| "failed") $) 41)) (-2659 ((|#2| $) 42)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) 93 (|has| |#1| (-363)))) (-2062 (($ $) 135 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 140 (-4034 (-12 (|has| |#1| (-15 -2062 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2605 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193)))))) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2173 (((-418 $) $) NIL (|has| |#1| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-1751 (($ $ (-407 (-563))) 112)) (-3012 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3372 (($ $) 148 (|has| |#1| (-38 (-407 (-563)))))) (-1542 (((-1149 |#1|) $ |#1|) 90 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))))) (-1993 (((-767) $) NIL (|has| |#1| (-363)))) (-2308 ((|#1| $ (-407 (-563))) 100) (($ $ $) 86 (|has| (-407 (-563)) (-1105)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) 127 (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 124 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-3871 (((-407 (-563)) $) 16)) (-1805 (($ $) 186 (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) 162 (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) 182 (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) 158 (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) 178 (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) 154 (|has| |#1| (-38 (-407 (-563)))))) (-3369 (($ $) 110)) (-1692 (((-858) $) NIL) (($ (-563)) 35) (($ |#1|) 27 (|has| |#1| (-172))) (($ |#2|) 32) (($ (-407 (-563))) 128 (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555)))) (-3244 ((|#1| $ (-407 (-563))) 99)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) 117)) (-3412 ((|#1| $) 98)) (-1839 (($ $) 192 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) 168 (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1816 (($ $) 188 (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) 164 (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) 196 (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) 172 (|has| |#1| (-38 (-407 (-563)))))) (-1402 ((|#1| $ (-407 (-563))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-1311 (($ $) 198 (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) 174 (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) 194 (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) 170 (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) 190 (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) 166 (|has| |#1| (-38 (-407 (-563)))))) (-2239 (($) 21 T CONST)) (-2253 (($) 17 T CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-1718 (((-112) $ $) 66)) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) 92 (|has| |#1| (-363)))) (-1825 (($ $) 131) (($ $ $) 72)) (-1813 (($ $ $) 70)) (** (($ $ (-917)) NIL) (($ $ (-767)) 76) (($ $ (-563)) 145 (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 146 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 74) (($ $ |#1|) NIL) (($ |#1| $) 126) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
(((-1241 |#1| |#2|) (-1240 |#1| |#2|) (-1045) (-1217 |#1|)) (T -1241))
NIL
(-1240 |#1| |#2|)
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2606 (((-640 (-1075)) $) NIL)) (-2518 (((-1169) $) 11)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) NIL (|has| |#1| (-555)))) (-2421 (($ $ (-407 (-563))) NIL) (($ $ (-407 (-563)) (-407 (-563))) NIL)) (-1539 (((-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|))) $) NIL)) (-1771 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $) NIL (|has| |#1| (-363)))) (-3205 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2186 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1919 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1748 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3045 (($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|)))) NIL)) (-1794 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-1221 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1249 |#1| |#2| |#3|) "failed") $) 22)) (-2058 (((-1221 |#1| |#2| |#3|) $) NIL) (((-1249 |#1| |#2| |#3|) $) NIL)) (-3090 (($ $ $) NIL (|has| |#1| (-363)))) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-4031 (((-407 (-563)) $) 57)) (-3050 (($ $ $) NIL (|has| |#1| (-363)))) (-2670 (($ (-407 (-563)) (-1221 |#1| |#2| |#3|)) NIL)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2468 (((-112) $) NIL (|has| |#1| (-363)))) (-2788 (((-112) $) NIL)) (-2180 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3254 (((-407 (-563)) $) NIL) (((-407 (-563)) $ (-407 (-563))) NIL)) (-3827 (((-112) $) NIL)) (-1645 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1351 (($ $ (-917)) NIL) (($ $ (-407 (-563))) NIL)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-407 (-563))) 30) (($ $ (-1075) (-407 (-563))) NIL) (($ $ (-640 (-1075)) (-640 (-407 (-563)))) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-4371 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3513 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-3377 (((-1221 |#1| |#2| |#3|) $) 60)) (-2401 (((-3 (-1221 |#1| |#2| |#3|) "failed") $) NIL)) (-2660 (((-1221 |#1| |#2| |#3|) $) NIL)) (-3573 (((-1151) $) NIL)) (-2688 (($ $) NIL (|has| |#1| (-363)))) (-3698 (($ $) 39 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) NIL (-4032 (-12 (|has| |#1| (-15 -3698 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2606 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193))))) (($ $ (-1253 |#2|)) 40 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (((-1113) $) NIL)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3548 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2174 (((-418 $) $) NIL (|has| |#1| (-363)))) (-3678 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) NIL (|has| |#1| (-363)))) (-3320 (($ $ (-407 (-563))) NIL)) (-3008 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-1465 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3368 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1540 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))))) (-2628 (((-767) $) NIL (|has| |#1| (-363)))) (-2309 ((|#1| $ (-407 (-563))) NIL) (($ $ $) NIL (|has| (-407 (-563)) (-1105)))) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) NIL (|has| |#1| (-363)))) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $ (-1253 |#2|)) 38)) (-4167 (((-407 (-563)) $) NIL)) (-1806 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1741 (($ $) NIL)) (-1693 (((-858) $) 88) (($ (-563)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1221 |#1| |#2| |#3|)) 16) (($ (-1249 |#1| |#2| |#3|)) 17) (($ (-1253 |#2|)) 36) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555)))) (-4319 ((|#1| $ (-407 (-563))) NIL)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) NIL)) (-3408 ((|#1| $) 12)) (-1840 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1817 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1403 ((|#1| $ (-407 (-563))) 62 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-1311 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2241 (($) 32 T CONST)) (-2254 (($) 26 T CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) 34)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
-(((-1242 |#1| |#2| |#3|) (-13 (-1240 |#1| (-1221 |#1| |#2| |#3|)) (-1034 (-1249 |#1| |#2| |#3|)) (-613 (-1253 |#2|)) (-10 -8 (-15 -4202 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1253 |#2|))) |%noBranch|))) (-1045) (-1169) |#1|) (T -1242))
-((-4202 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1242 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-3698 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1242 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
-(-13 (-1240 |#1| (-1221 |#1| |#2| |#3|)) (-1034 (-1249 |#1| |#2| |#3|)) (-613 (-1253 |#2|)) (-10 -8 (-15 -4202 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1253 |#2|))) |%noBranch|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 34)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL)) (-4223 (($ $) NIL)) (-3156 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 (-563) "failed") $) NIL (|has| (-1242 |#2| |#3| |#4|) (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-1242 |#2| |#3| |#4|) (-1034 (-407 (-563))))) (((-3 (-1242 |#2| |#3| |#4|) "failed") $) 20)) (-2058 (((-563) $) NIL (|has| (-1242 |#2| |#3| |#4|) (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| (-1242 |#2| |#3| |#4|) (-1034 (-407 (-563))))) (((-1242 |#2| |#3| |#4|) $) NIL)) (-2751 (($ $) 35)) (-3400 (((-3 $ "failed") $) 25)) (-1300 (($ $) NIL (|has| (-1242 |#2| |#3| |#4|) (-452)))) (-3554 (($ $ (-1242 |#2| |#3| |#4|) (-319 |#2| |#3| |#4|) $) NIL)) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) 11)) (-3920 (((-112) $) NIL)) (-2588 (($ (-1242 |#2| |#3| |#4|) (-319 |#2| |#3| |#4|)) 23)) (-2048 (((-319 |#2| |#3| |#4|) $) NIL)) (-2803 (($ (-1 (-319 |#2| |#3| |#4|) (-319 |#2| |#3| |#4|)) $) NIL)) (-2240 (($ (-1 (-1242 |#2| |#3| |#4|) (-1242 |#2| |#3| |#4|)) $) NIL)) (-4363 (((-3 (-839 |#2|) "failed") $) 74)) (-2716 (($ $) NIL)) (-2726 (((-1242 |#2| |#3| |#4|) $) 18)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2696 (((-112) $) NIL)) (-2706 (((-1242 |#2| |#3| |#4|) $) NIL)) (-3008 (((-3 $ "failed") $ (-1242 |#2| |#3| |#4|)) NIL (|has| (-1242 |#2| |#3| |#4|) (-555))) (((-3 $ "failed") $ $) NIL)) (-4352 (((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1242 |#2| |#3| |#4|)) (|:| |%expon| (-319 |#2| |#3| |#4|)) (|:| |%expTerms| (-640 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#2|)))))) (|:| |%type| (-1151))) "failed") $) 57)) (-4167 (((-319 |#2| |#3| |#4|) $) 14)) (-1836 (((-1242 |#2| |#3| |#4|) $) NIL (|has| (-1242 |#2| |#3| |#4|) (-452)))) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ (-1242 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL (-4032 (|has| (-1242 |#2| |#3| |#4|) (-38 (-407 (-563)))) (|has| (-1242 |#2| |#3| |#4|) (-1034 (-407 (-563))))))) (-1337 (((-640 (-1242 |#2| |#3| |#4|)) $) NIL)) (-4319 (((-1242 |#2| |#3| |#4|) $ (-319 |#2| |#3| |#4|)) NIL)) (-2779 (((-3 $ "failed") $) NIL (|has| (-1242 |#2| |#3| |#4|) (-145)))) (-1675 (((-767)) NIL)) (-2793 (($ $ $ (-767)) NIL (|has| (-1242 |#2| |#3| |#4|) (-172)))) (-2126 (((-112) $ $) NIL)) (-2241 (($) 62 T CONST)) (-2254 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ (-1242 |#2| |#3| |#4|)) NIL (|has| (-1242 |#2| |#3| |#4|) (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-1242 |#2| |#3| |#4|)) NIL) (($ (-1242 |#2| |#3| |#4|) $) NIL) (($ (-407 (-563)) $) NIL (|has| (-1242 |#2| |#3| |#4|) (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| (-1242 |#2| |#3| |#4|) (-38 (-407 (-563)))))))
-(((-1243 |#1| |#2| |#3| |#4|) (-13 (-326 (-1242 |#2| |#3| |#4|) (-319 |#2| |#3| |#4|)) (-555) (-10 -8 (-15 -4363 ((-3 (-839 |#2|) "failed") $)) (-15 -4352 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1242 |#2| |#3| |#4|)) (|:| |%expon| (-319 |#2| |#3| |#4|)) (|:| |%expTerms| (-640 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#2|)))))) (|:| |%type| (-1151))) "failed") $)))) (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452)) (-13 (-27) (-1193) (-430 |#1|)) (-1169) |#2|) (T -1243))
-((-4363 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452))) (-5 *2 (-839 *4)) (-5 *1 (-1243 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1193) (-430 *3))) (-14 *5 (-1169)) (-14 *6 *4))) (-4352 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452))) (-5 *2 (-2 (|:| |%term| (-2 (|:| |%coef| (-1242 *4 *5 *6)) (|:| |%expon| (-319 *4 *5 *6)) (|:| |%expTerms| (-640 (-2 (|:| |k| (-407 (-563))) (|:| |c| *4)))))) (|:| |%type| (-1151)))) (-5 *1 (-1243 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1193) (-430 *3))) (-14 *5 (-1169)) (-14 *6 *4))))
-(-13 (-326 (-1242 |#2| |#3| |#4|) (-319 |#2| |#3| |#4|)) (-555) (-10 -8 (-15 -4363 ((-3 (-839 |#2|) "failed") $)) (-15 -4352 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1242 |#2| |#3| |#4|)) (|:| |%expon| (-319 |#2| |#3| |#4|)) (|:| |%expTerms| (-640 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#2|)))))) (|:| |%type| (-1151))) "failed") $))))
-((-2619 ((|#2| $) 28)) (-3442 ((|#2| $) 18)) (-4302 (($ $) 35)) (-1624 (($ $ (-563)) 63)) (-2759 (((-112) $ (-767)) 32)) (-2936 ((|#2| $ |#2|) 60)) (-3889 ((|#2| $ |#2|) 58)) (-1849 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 51) (($ $ "rest" $) 55) ((|#2| $ "last" |#2|) 53)) (-2811 (($ $ (-640 $)) 59)) (-3431 ((|#2| $) 17)) (-3792 (($ $) NIL) (($ $ (-767)) 41)) (-2071 (((-640 $) $) 25)) (-1469 (((-112) $ $) 49)) (-2581 (((-112) $ (-767)) 31)) (-2382 (((-112) $ (-767)) 30)) (-2194 (((-112) $) 27)) (-1481 ((|#2| $) 23) (($ $ (-767)) 45)) (-2309 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-1434 (((-112) $) 21)) (-2749 (($ $) 38)) (-1322 (($ $) 64)) (-1950 (((-767) $) 40)) (-3752 (($ $) 39)) (-2853 (($ $ $) 57) (($ |#2| $) NIL)) (-4258 (((-640 $) $) 26)) (-1718 (((-112) $ $) 47)) (-3608 (((-767) $) 34)))
-(((-1244 |#1| |#2|) (-10 -8 (-15 -1624 (|#1| |#1| (-563))) (-15 -1849 (|#2| |#1| "last" |#2|)) (-15 -3889 (|#2| |#1| |#2|)) (-15 -1849 (|#1| |#1| "rest" |#1|)) (-15 -1849 (|#2| |#1| "first" |#2|)) (-15 -1322 (|#1| |#1|)) (-15 -2749 (|#1| |#1|)) (-15 -1950 ((-767) |#1|)) (-15 -3752 (|#1| |#1|)) (-15 -3442 (|#2| |#1|)) (-15 -3431 (|#2| |#1|)) (-15 -4302 (|#1| |#1|)) (-15 -1481 (|#1| |#1| (-767))) (-15 -2309 (|#2| |#1| "last")) (-15 -1481 (|#2| |#1|)) (-15 -3792 (|#1| |#1| (-767))) (-15 -2309 (|#1| |#1| "rest")) (-15 -3792 (|#1| |#1|)) (-15 -2309 (|#2| |#1| "first")) (-15 -2853 (|#1| |#2| |#1|)) (-15 -2853 (|#1| |#1| |#1|)) (-15 -2936 (|#2| |#1| |#2|)) (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -2811 (|#1| |#1| (-640 |#1|))) (-15 -1469 ((-112) |#1| |#1|)) (-15 -1434 ((-112) |#1|)) (-15 -2309 (|#2| |#1| "value")) (-15 -2619 (|#2| |#1|)) (-15 -2194 ((-112) |#1|)) (-15 -2071 ((-640 |#1|) |#1|)) (-15 -4258 ((-640 |#1|) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -3608 ((-767) |#1|)) (-15 -2759 ((-112) |#1| (-767))) (-15 -2581 ((-112) |#1| (-767))) (-15 -2382 ((-112) |#1| (-767)))) (-1245 |#2|) (-1208)) (T -1244))
-NIL
-(-10 -8 (-15 -1624 (|#1| |#1| (-563))) (-15 -1849 (|#2| |#1| "last" |#2|)) (-15 -3889 (|#2| |#1| |#2|)) (-15 -1849 (|#1| |#1| "rest" |#1|)) (-15 -1849 (|#2| |#1| "first" |#2|)) (-15 -1322 (|#1| |#1|)) (-15 -2749 (|#1| |#1|)) (-15 -1950 ((-767) |#1|)) (-15 -3752 (|#1| |#1|)) (-15 -3442 (|#2| |#1|)) (-15 -3431 (|#2| |#1|)) (-15 -4302 (|#1| |#1|)) (-15 -1481 (|#1| |#1| (-767))) (-15 -2309 (|#2| |#1| "last")) (-15 -1481 (|#2| |#1|)) (-15 -3792 (|#1| |#1| (-767))) (-15 -2309 (|#1| |#1| "rest")) (-15 -3792 (|#1| |#1|)) (-15 -2309 (|#2| |#1| "first")) (-15 -2853 (|#1| |#2| |#1|)) (-15 -2853 (|#1| |#1| |#1|)) (-15 -2936 (|#2| |#1| |#2|)) (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -2811 (|#1| |#1| (-640 |#1|))) (-15 -1469 ((-112) |#1| |#1|)) (-15 -1434 ((-112) |#1|)) (-15 -2309 (|#2| |#1| "value")) (-15 -2619 (|#2| |#1|)) (-15 -2194 ((-112) |#1|)) (-15 -2071 ((-640 |#1|) |#1|)) (-15 -4258 ((-640 |#1|) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -3608 ((-767) |#1|)) (-15 -2759 ((-112) |#1| (-767))) (-15 -2581 ((-112) |#1| (-767))) (-15 -2382 ((-112) |#1| (-767))))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2619 ((|#1| $) 48)) (-3442 ((|#1| $) 65)) (-4302 (($ $) 67)) (-1624 (($ $ (-563)) 52 (|has| $ (-6 -4408)))) (-2759 (((-112) $ (-767)) 8)) (-2936 ((|#1| $ |#1|) 39 (|has| $ (-6 -4408)))) (-3692 (($ $ $) 56 (|has| $ (-6 -4408)))) (-3889 ((|#1| $ |#1|) 54 (|has| $ (-6 -4408)))) (-1543 ((|#1| $ |#1|) 58 (|has| $ (-6 -4408)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4408))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4408))) (($ $ "rest" $) 55 (|has| $ (-6 -4408))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4408)))) (-2811 (($ $ (-640 $)) 41 (|has| $ (-6 -4408)))) (-3431 ((|#1| $) 66)) (-4239 (($) 7 T CONST)) (-3792 (($ $) 73) (($ $ (-767)) 71)) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-2071 (((-640 $) $) 50)) (-1469 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-2581 (((-112) $ (-767)) 9)) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35)) (-2382 (((-112) $ (-767)) 10)) (-2512 (((-640 |#1|) $) 45)) (-2194 (((-112) $) 49)) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1481 ((|#1| $) 70) (($ $ (-767)) 68)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3781 ((|#1| $) 76) (($ $ (-767)) 74)) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69)) (-4071 (((-563) $ $) 44)) (-1434 (((-112) $) 46)) (-2749 (($ $) 62)) (-1322 (($ $) 59 (|has| $ (-6 -4408)))) (-1950 (((-767) $) 63)) (-3752 (($ $) 64)) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1872 (($ $) 13)) (-3245 (($ $ $) 61 (|has| $ (-6 -4408))) (($ $ |#1|) 60 (|has| $ (-6 -4408)))) (-2853 (($ $ $) 78) (($ |#1| $) 77)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4258 (((-640 $) $) 51)) (-2962 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2605 (((-640 (-1075)) $) NIL)) (-2517 (((-1169) $) 11)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) NIL (|has| |#1| (-555)))) (-1763 (($ $ (-407 (-563))) NIL) (($ $ (-407 (-563)) (-407 (-563))) NIL)) (-1787 (((-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|))) $) NIL)) (-1770 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) NIL)) (-1798 (($ $) NIL (|has| |#1| (-363)))) (-2802 (((-418 $) $) NIL (|has| |#1| (-363)))) (-2185 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2003 (((-112) $ $) NIL (|has| |#1| (-363)))) (-1747 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3049 (($ (-767) (-1149 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#1|)))) NIL)) (-1793 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-1221 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1249 |#1| |#2| |#3|) "failed") $) 22)) (-2057 (((-1221 |#1| |#2| |#3|) $) NIL) (((-1249 |#1| |#2| |#3|) $) NIL)) (-3094 (($ $ $) NIL (|has| |#1| (-363)))) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-1854 (((-407 (-563)) $) 57)) (-3054 (($ $ $) NIL (|has| |#1| (-363)))) (-2669 (($ (-407 (-563)) (-1221 |#1| |#2| |#3|)) NIL)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) NIL (|has| |#1| (-363)))) (-2560 (((-112) $) NIL (|has| |#1| (-363)))) (-3381 (((-112) $) NIL)) (-2179 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1775 (((-407 (-563)) $) NIL) (((-407 (-563)) $ (-407 (-563))) NIL)) (-3401 (((-112) $) NIL)) (-2172 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1821 (($ $ (-917)) NIL) (($ $ (-407 (-563))) NIL)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-407 (-563))) 30) (($ $ (-1075) (-407 (-563))) NIL) (($ $ (-640 (-1075)) (-640 (-407 (-563)))) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-4372 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3517 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-1843 (((-1221 |#1| |#2| |#3|) $) 60)) (-1832 (((-3 (-1221 |#1| |#2| |#3|) "failed") $) NIL)) (-2659 (((-1221 |#1| |#2| |#3|) $) NIL)) (-3854 (((-1151) $) NIL)) (-2687 (($ $) NIL (|has| |#1| (-363)))) (-2062 (($ $) 39 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) NIL (-4034 (-12 (|has| |#1| (-15 -2062 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2605 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193))))) (($ $ (-1253 |#2|)) 40 (|has| |#1| (-38 (-407 (-563)))))) (-1693 (((-1113) $) NIL)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) NIL (|has| |#1| (-363)))) (-3551 (($ (-640 $)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-2173 (((-418 $) $) NIL (|has| |#1| (-363)))) (-1984 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-363))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) NIL (|has| |#1| (-363)))) (-1751 (($ $ (-407 (-563))) NIL)) (-3012 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-2461 (((-3 (-640 $) "failed") (-640 $) $) NIL (|has| |#1| (-363)))) (-3372 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1542 (((-1149 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))))) (-1993 (((-767) $) NIL (|has| |#1| (-363)))) (-2308 ((|#1| $ (-407 (-563))) NIL) (($ $ $) NIL (|has| (-407 (-563)) (-1105)))) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) NIL (|has| |#1| (-363)))) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $ (-1253 |#2|)) 38)) (-3871 (((-407 (-563)) $) NIL)) (-1805 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3369 (($ $) NIL)) (-1692 (((-858) $) 88) (($ (-563)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1221 |#1| |#2| |#3|)) 16) (($ (-1249 |#1| |#2| |#3|)) 17) (($ (-1253 |#2|)) 36) (($ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555)))) (-3244 ((|#1| $ (-407 (-563))) NIL)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) NIL)) (-3412 ((|#1| $) 12)) (-1839 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1816 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1402 ((|#1| $ (-407 (-563))) 62 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-407 (-563))))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-1311 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2239 (($) 32 T CONST)) (-2253 (($) 26 T CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-407 (-563)) |#1|))))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) 34)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ (-563)) NIL (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
+(((-1242 |#1| |#2| |#3|) (-13 (-1240 |#1| (-1221 |#1| |#2| |#3|)) (-1034 (-1249 |#1| |#2| |#3|)) (-613 (-1253 |#2|)) (-10 -8 (-15 -4203 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1253 |#2|))) |%noBranch|))) (-1045) (-1169) |#1|) (T -1242))
+((-4203 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1242 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-2062 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1242 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
+(-13 (-1240 |#1| (-1221 |#1| |#2| |#3|)) (-1034 (-1249 |#1| |#2| |#3|)) (-613 (-1253 |#2|)) (-10 -8 (-15 -4203 ($ $ (-1253 |#2|))) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1253 |#2|))) |%noBranch|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 34)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL)) (-3231 (($ $) NIL)) (-3211 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 (-563) "failed") $) NIL (|has| (-1242 |#2| |#3| |#4|) (-1034 (-563)))) (((-3 (-407 (-563)) "failed") $) NIL (|has| (-1242 |#2| |#3| |#4|) (-1034 (-407 (-563))))) (((-3 (-1242 |#2| |#3| |#4|) "failed") $) 20)) (-2057 (((-563) $) NIL (|has| (-1242 |#2| |#3| |#4|) (-1034 (-563)))) (((-407 (-563)) $) NIL (|has| (-1242 |#2| |#3| |#4|) (-1034 (-407 (-563))))) (((-1242 |#2| |#3| |#4|) $) NIL)) (-2750 (($ $) 35)) (-3951 (((-3 $ "failed") $) 25)) (-4151 (($ $) NIL (|has| (-1242 |#2| |#3| |#4|) (-452)))) (-2159 (($ $ (-1242 |#2| |#3| |#4|) (-319 |#2| |#3| |#4|) $) NIL)) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) 11)) (-3805 (((-112) $) NIL)) (-2587 (($ (-1242 |#2| |#3| |#4|) (-319 |#2| |#3| |#4|)) 23)) (-3908 (((-319 |#2| |#3| |#4|) $) NIL)) (-2170 (($ (-1 (-319 |#2| |#3| |#4|) (-319 |#2| |#3| |#4|)) $) NIL)) (-2238 (($ (-1 (-1242 |#2| |#3| |#4|) (-1242 |#2| |#3| |#4|)) $) NIL)) (-1876 (((-3 (-839 |#2|) "failed") $) 74)) (-2715 (($ $) NIL)) (-2725 (((-1242 |#2| |#3| |#4|) $) 18)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2695 (((-112) $) NIL)) (-2705 (((-1242 |#2| |#3| |#4|) $) NIL)) (-3012 (((-3 $ "failed") $ (-1242 |#2| |#3| |#4|)) NIL (|has| (-1242 |#2| |#3| |#4|) (-555))) (((-3 $ "failed") $ $) NIL)) (-1865 (((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1242 |#2| |#3| |#4|)) (|:| |%expon| (-319 |#2| |#3| |#4|)) (|:| |%expTerms| (-640 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#2|)))))) (|:| |%type| (-1151))) "failed") $) 57)) (-3871 (((-319 |#2| |#3| |#4|) $) 14)) (-3885 (((-1242 |#2| |#3| |#4|) $) NIL (|has| (-1242 |#2| |#3| |#4|) (-452)))) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ (-1242 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-407 (-563))) NIL (-4034 (|has| (-1242 |#2| |#3| |#4|) (-38 (-407 (-563)))) (|has| (-1242 |#2| |#3| |#4|) (-1034 (-407 (-563))))))) (-3955 (((-640 (-1242 |#2| |#3| |#4|)) $) NIL)) (-3244 (((-1242 |#2| |#3| |#4|) $ (-319 |#2| |#3| |#4|)) NIL)) (-2047 (((-3 $ "failed") $) NIL (|has| (-1242 |#2| |#3| |#4|) (-145)))) (-3914 (((-767)) NIL)) (-2148 (($ $ $ (-767)) NIL (|has| (-1242 |#2| |#3| |#4|) (-172)))) (-3223 (((-112) $ $) NIL)) (-2239 (($) 62 T CONST)) (-2253 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ (-1242 |#2| |#3| |#4|)) NIL (|has| (-1242 |#2| |#3| |#4|) (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ (-1242 |#2| |#3| |#4|)) NIL) (($ (-1242 |#2| |#3| |#4|) $) NIL) (($ (-407 (-563)) $) NIL (|has| (-1242 |#2| |#3| |#4|) (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| (-1242 |#2| |#3| |#4|) (-38 (-407 (-563)))))))
+(((-1243 |#1| |#2| |#3| |#4|) (-13 (-326 (-1242 |#2| |#3| |#4|) (-319 |#2| |#3| |#4|)) (-555) (-10 -8 (-15 -1876 ((-3 (-839 |#2|) "failed") $)) (-15 -1865 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1242 |#2| |#3| |#4|)) (|:| |%expon| (-319 |#2| |#3| |#4|)) (|:| |%expTerms| (-640 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#2|)))))) (|:| |%type| (-1151))) "failed") $)))) (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452)) (-13 (-27) (-1193) (-430 |#1|)) (-1169) |#2|) (T -1243))
+((-1876 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452))) (-5 *2 (-839 *4)) (-5 *1 (-1243 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1193) (-430 *3))) (-14 *5 (-1169)) (-14 *6 *4))) (-1865 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452))) (-5 *2 (-2 (|:| |%term| (-2 (|:| |%coef| (-1242 *4 *5 *6)) (|:| |%expon| (-319 *4 *5 *6)) (|:| |%expTerms| (-640 (-2 (|:| |k| (-407 (-563))) (|:| |c| *4)))))) (|:| |%type| (-1151)))) (-5 *1 (-1243 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1193) (-430 *3))) (-14 *5 (-1169)) (-14 *6 *4))))
+(-13 (-326 (-1242 |#2| |#3| |#4|) (-319 |#2| |#3| |#4|)) (-555) (-10 -8 (-15 -1876 ((-3 (-839 |#2|) "failed") $)) (-15 -1865 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1242 |#2| |#3| |#4|)) (|:| |%expon| (-319 |#2| |#3| |#4|)) (|:| |%expTerms| (-640 (-2 (|:| |k| (-407 (-563))) (|:| |c| |#2|)))))) (|:| |%type| (-1151))) "failed") $))))
+((-2618 ((|#2| $) 28)) (-3446 ((|#2| $) 18)) (-4303 (($ $) 35)) (-1887 (($ $ (-563)) 63)) (-3001 (((-112) $ (-767)) 32)) (-2336 ((|#2| $ |#2|) 60)) (-1898 ((|#2| $ |#2|) 58)) (-1849 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 51) (($ $ "rest" $) 55) ((|#2| $ "last" |#2|) 53)) (-2348 (($ $ (-640 $)) 59)) (-3435 ((|#2| $) 17)) (-3793 (($ $) NIL) (($ $ (-767)) 41)) (-2390 (((-640 $) $) 25)) (-2358 (((-112) $ $) 49)) (-2514 (((-112) $ (-767)) 31)) (-2481 (((-112) $ (-767)) 30)) (-1298 (((-112) $) 27)) (-1481 ((|#2| $) 23) (($ $ (-767)) 45)) (-2308 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-2889 (((-112) $) 21)) (-1951 (($ $) 38)) (-1930 (($ $) 64)) (-1961 (((-767) $) 40)) (-1970 (($ $) 39)) (-2857 (($ $ $) 57) (($ |#2| $) NIL)) (-4345 (((-640 $) $) 26)) (-1718 (((-112) $ $) 47)) (-3610 (((-767) $) 34)))
+(((-1244 |#1| |#2|) (-10 -8 (-15 -1887 (|#1| |#1| (-563))) (-15 -1849 (|#2| |#1| "last" |#2|)) (-15 -1898 (|#2| |#1| |#2|)) (-15 -1849 (|#1| |#1| "rest" |#1|)) (-15 -1849 (|#2| |#1| "first" |#2|)) (-15 -1930 (|#1| |#1|)) (-15 -1951 (|#1| |#1|)) (-15 -1961 ((-767) |#1|)) (-15 -1970 (|#1| |#1|)) (-15 -3446 (|#2| |#1|)) (-15 -3435 (|#2| |#1|)) (-15 -4303 (|#1| |#1|)) (-15 -1481 (|#1| |#1| (-767))) (-15 -2308 (|#2| |#1| "last")) (-15 -1481 (|#2| |#1|)) (-15 -3793 (|#1| |#1| (-767))) (-15 -2308 (|#1| |#1| "rest")) (-15 -3793 (|#1| |#1|)) (-15 -2308 (|#2| |#1| "first")) (-15 -2857 (|#1| |#2| |#1|)) (-15 -2857 (|#1| |#1| |#1|)) (-15 -2336 (|#2| |#1| |#2|)) (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -2348 (|#1| |#1| (-640 |#1|))) (-15 -2358 ((-112) |#1| |#1|)) (-15 -2889 ((-112) |#1|)) (-15 -2308 (|#2| |#1| "value")) (-15 -2618 (|#2| |#1|)) (-15 -1298 ((-112) |#1|)) (-15 -2390 ((-640 |#1|) |#1|)) (-15 -4345 ((-640 |#1|) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -3610 ((-767) |#1|)) (-15 -3001 ((-112) |#1| (-767))) (-15 -2514 ((-112) |#1| (-767))) (-15 -2481 ((-112) |#1| (-767)))) (-1245 |#2|) (-1208)) (T -1244))
+NIL
+(-10 -8 (-15 -1887 (|#1| |#1| (-563))) (-15 -1849 (|#2| |#1| "last" |#2|)) (-15 -1898 (|#2| |#1| |#2|)) (-15 -1849 (|#1| |#1| "rest" |#1|)) (-15 -1849 (|#2| |#1| "first" |#2|)) (-15 -1930 (|#1| |#1|)) (-15 -1951 (|#1| |#1|)) (-15 -1961 ((-767) |#1|)) (-15 -1970 (|#1| |#1|)) (-15 -3446 (|#2| |#1|)) (-15 -3435 (|#2| |#1|)) (-15 -4303 (|#1| |#1|)) (-15 -1481 (|#1| |#1| (-767))) (-15 -2308 (|#2| |#1| "last")) (-15 -1481 (|#2| |#1|)) (-15 -3793 (|#1| |#1| (-767))) (-15 -2308 (|#1| |#1| "rest")) (-15 -3793 (|#1| |#1|)) (-15 -2308 (|#2| |#1| "first")) (-15 -2857 (|#1| |#2| |#1|)) (-15 -2857 (|#1| |#1| |#1|)) (-15 -2336 (|#2| |#1| |#2|)) (-15 -1849 (|#2| |#1| "value" |#2|)) (-15 -2348 (|#1| |#1| (-640 |#1|))) (-15 -2358 ((-112) |#1| |#1|)) (-15 -2889 ((-112) |#1|)) (-15 -2308 (|#2| |#1| "value")) (-15 -2618 (|#2| |#1|)) (-15 -1298 ((-112) |#1|)) (-15 -2390 ((-640 |#1|) |#1|)) (-15 -4345 ((-640 |#1|) |#1|)) (-15 -1718 ((-112) |#1| |#1|)) (-15 -3610 ((-767) |#1|)) (-15 -3001 ((-112) |#1| (-767))) (-15 -2514 ((-112) |#1| (-767))) (-15 -2481 ((-112) |#1| (-767))))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-2618 ((|#1| $) 48)) (-3446 ((|#1| $) 65)) (-4303 (($ $) 67)) (-1887 (($ $ (-563)) 52 (|has| $ (-6 -4409)))) (-3001 (((-112) $ (-767)) 8)) (-2336 ((|#1| $ |#1|) 39 (|has| $ (-6 -4409)))) (-1909 (($ $ $) 56 (|has| $ (-6 -4409)))) (-1898 ((|#1| $ |#1|) 54 (|has| $ (-6 -4409)))) (-1919 ((|#1| $ |#1|) 58 (|has| $ (-6 -4409)))) (-1849 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4409))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4409))) (($ $ "rest" $) 55 (|has| $ (-6 -4409))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4409)))) (-2348 (($ $ (-640 $)) 41 (|has| $ (-6 -4409)))) (-3435 ((|#1| $) 66)) (-2569 (($) 7 T CONST)) (-3793 (($ $) 73) (($ $ (-767)) 71)) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-2390 (((-640 $) $) 50)) (-2358 (((-112) $ $) 42 (|has| |#1| (-1093)))) (-2514 (((-112) $ (-767)) 9)) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35)) (-2481 (((-112) $ (-767)) 10)) (-2511 (((-640 |#1|) $) 45)) (-1298 (((-112) $) 49)) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-1481 ((|#1| $) 70) (($ $ (-767)) 68)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3782 ((|#1| $) 76) (($ $ (-767)) 74)) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69)) (-2379 (((-563) $ $) 44)) (-2889 (((-112) $) 46)) (-1951 (($ $) 62)) (-1930 (($ $) 59 (|has| $ (-6 -4409)))) (-1961 (((-767) $) 63)) (-1970 (($ $) 64)) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1870 (($ $) 13)) (-1941 (($ $ $) 61 (|has| $ (-6 -4409))) (($ $ |#1|) 60 (|has| $ (-6 -4409)))) (-2857 (($ $ $) 78) (($ |#1| $) 77)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4345 (((-640 $) $) 51)) (-2367 (((-112) $ $) 43 (|has| |#1| (-1093)))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-1245 |#1|) (-140) (-1208)) (T -1245))
-((-2853 (*1 *1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-2853 (*1 *1 *2 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-3781 (*1 *2 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-2309 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-3781 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1245 *3)) (-4 *3 (-1208)))) (-3792 (*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-2309 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1245 *3)) (-4 *3 (-1208)))) (-3792 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1245 *3)) (-4 *3 (-1208)))) (-1481 (*1 *2 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-2309 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1481 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1245 *3)) (-4 *3 (-1208)))) (-4302 (*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-3431 (*1 *2 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-3442 (*1 *2 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-3752 (*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1950 (*1 *2 *1) (-12 (-4 *1 (-1245 *3)) (-4 *3 (-1208)) (-5 *2 (-767)))) (-2749 (*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-3245 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-3245 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1322 (*1 *1 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1543 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1849 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-3692 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1849 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4408)) (-4 *1 (-1245 *3)) (-4 *3 (-1208)))) (-3889 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1849 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1624 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (|has| *1 (-6 -4408)) (-4 *1 (-1245 *3)) (-4 *3 (-1208)))))
-(-13 (-1006 |t#1|) (-10 -8 (-15 -2853 ($ $ $)) (-15 -2853 ($ |t#1| $)) (-15 -3781 (|t#1| $)) (-15 -2309 (|t#1| $ "first")) (-15 -3781 ($ $ (-767))) (-15 -3792 ($ $)) (-15 -2309 ($ $ "rest")) (-15 -3792 ($ $ (-767))) (-15 -1481 (|t#1| $)) (-15 -2309 (|t#1| $ "last")) (-15 -1481 ($ $ (-767))) (-15 -4302 ($ $)) (-15 -3431 (|t#1| $)) (-15 -3442 (|t#1| $)) (-15 -3752 ($ $)) (-15 -1950 ((-767) $)) (-15 -2749 ($ $)) (IF (|has| $ (-6 -4408)) (PROGN (-15 -3245 ($ $ $)) (-15 -3245 ($ $ |t#1|)) (-15 -1322 ($ $)) (-15 -1543 (|t#1| $ |t#1|)) (-15 -1849 (|t#1| $ "first" |t#1|)) (-15 -3692 ($ $ $)) (-15 -1849 ($ $ "rest" $)) (-15 -3889 (|t#1| $ |t#1|)) (-15 -1849 (|t#1| $ "last" |t#1|)) (-15 -1624 ($ $ (-563)))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1006 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
-((-2240 ((|#4| (-1 |#2| |#1|) |#3|) 17)))
-(((-1246 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2240 (|#4| (-1 |#2| |#1|) |#3|))) (-1045) (-1045) (-1248 |#1|) (-1248 |#2|)) (T -1246))
-((-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-4 *2 (-1248 *6)) (-5 *1 (-1246 *5 *6 *4 *2)) (-4 *4 (-1248 *5)))))
-(-10 -7 (-15 -2240 (|#4| (-1 |#2| |#1|) |#3|)))
-((-3411 (((-112) $) 15)) (-1771 (($ $) 91)) (-1619 (($ $) 67)) (-1748 (($ $) 87)) (-1597 (($ $) 63)) (-1794 (($ $) 95)) (-1643 (($ $) 71)) (-4371 (($ $) 61)) (-3368 (($ $) 59)) (-1806 (($ $) 97)) (-1656 (($ $) 73)) (-1784 (($ $) 93)) (-1630 (($ $) 69)) (-1759 (($ $) 89)) (-1608 (($ $) 65)) (-1693 (((-858) $) 47) (($ (-563)) NIL) (($ (-407 (-563))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-1840 (($ $) 103)) (-1695 (($ $) 79)) (-1817 (($ $) 99)) (-1667 (($ $) 75)) (-1862 (($ $) 107)) (-1722 (($ $) 83)) (-1311 (($ $) 109)) (-1735 (($ $) 85)) (-1851 (($ $) 105)) (-1710 (($ $) 81)) (-1829 (($ $) 101)) (-1680 (($ $) 77)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ |#2|) 51) (($ $ $) 54) (($ $ (-407 (-563))) 57)))
-(((-1247 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-407 (-563)))) (-15 -1619 (|#1| |#1|)) (-15 -1597 (|#1| |#1|)) (-15 -1643 (|#1| |#1|)) (-15 -1656 (|#1| |#1|)) (-15 -1630 (|#1| |#1|)) (-15 -1608 (|#1| |#1|)) (-15 -1680 (|#1| |#1|)) (-15 -1710 (|#1| |#1|)) (-15 -1735 (|#1| |#1|)) (-15 -1722 (|#1| |#1|)) (-15 -1667 (|#1| |#1|)) (-15 -1695 (|#1| |#1|)) (-15 -1759 (|#1| |#1|)) (-15 -1784 (|#1| |#1|)) (-15 -1806 (|#1| |#1|)) (-15 -1794 (|#1| |#1|)) (-15 -1748 (|#1| |#1|)) (-15 -1771 (|#1| |#1|)) (-15 -1829 (|#1| |#1|)) (-15 -1851 (|#1| |#1|)) (-15 -1311 (|#1| |#1|)) (-15 -1862 (|#1| |#1|)) (-15 -1817 (|#1| |#1|)) (-15 -1840 (|#1| |#1|)) (-15 -4371 (|#1| |#1|)) (-15 -3368 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -1693 (|#1| |#2|)) (-15 -1693 (|#1| |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -1693 (|#1| (-563))) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917))) (-15 -3411 ((-112) |#1|)) (-15 -1693 ((-858) |#1|))) (-1248 |#2|) (-1045)) (T -1247))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-407 (-563)))) (-15 -1619 (|#1| |#1|)) (-15 -1597 (|#1| |#1|)) (-15 -1643 (|#1| |#1|)) (-15 -1656 (|#1| |#1|)) (-15 -1630 (|#1| |#1|)) (-15 -1608 (|#1| |#1|)) (-15 -1680 (|#1| |#1|)) (-15 -1710 (|#1| |#1|)) (-15 -1735 (|#1| |#1|)) (-15 -1722 (|#1| |#1|)) (-15 -1667 (|#1| |#1|)) (-15 -1695 (|#1| |#1|)) (-15 -1759 (|#1| |#1|)) (-15 -1784 (|#1| |#1|)) (-15 -1806 (|#1| |#1|)) (-15 -1794 (|#1| |#1|)) (-15 -1748 (|#1| |#1|)) (-15 -1771 (|#1| |#1|)) (-15 -1829 (|#1| |#1|)) (-15 -1851 (|#1| |#1|)) (-15 -1311 (|#1| |#1|)) (-15 -1862 (|#1| |#1|)) (-15 -1817 (|#1| |#1|)) (-15 -1840 (|#1| |#1|)) (-15 -4371 (|#1| |#1|)) (-15 -3368 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -1693 (|#1| |#2|)) (-15 -1693 (|#1| |#1|)) (-15 -1693 (|#1| (-407 (-563)))) (-15 -1693 (|#1| (-563))) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917))) (-15 -3411 ((-112) |#1|)) (-15 -1693 ((-858) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-2606 (((-640 (-1075)) $) 77)) (-2518 (((-1169) $) 106)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-4223 (($ $) 55 (|has| |#1| (-555)))) (-3156 (((-112) $) 57 (|has| |#1| (-555)))) (-2421 (($ $ (-767)) 101) (($ $ (-767) (-767)) 100)) (-1539 (((-1149 (-2 (|:| |k| (-767)) (|:| |c| |#1|))) $) 108)) (-1771 (($ $) 138 (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) 121 (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) 19)) (-2186 (($ $) 120 (|has| |#1| (-38 (-407 (-563)))))) (-1748 (($ $) 137 (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) 122 (|has| |#1| (-38 (-407 (-563)))))) (-3045 (($ (-1149 (-2 (|:| |k| (-767)) (|:| |c| |#1|)))) 158) (($ (-1149 |#1|)) 156)) (-1794 (($ $) 136 (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) 123 (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) 17 T CONST)) (-2751 (($ $) 63)) (-3400 (((-3 $ "failed") $) 33)) (-2655 (($ $) 155)) (-3619 (((-948 |#1|) $ (-767)) 153) (((-948 |#1|) $ (-767) (-767)) 152)) (-2788 (((-112) $) 76)) (-2180 (($) 148 (|has| |#1| (-38 (-407 (-563)))))) (-3254 (((-767) $) 103) (((-767) $ (-767)) 102)) (-3827 (((-112) $) 31)) (-1645 (($ $ (-563)) 119 (|has| |#1| (-38 (-407 (-563)))))) (-1351 (($ $ (-917)) 104)) (-2831 (($ (-1 |#1| (-563)) $) 154)) (-3920 (((-112) $) 65)) (-2588 (($ |#1| (-767)) 64) (($ $ (-1075) (-767)) 79) (($ $ (-640 (-1075)) (-640 (-767))) 78)) (-2240 (($ (-1 |#1| |#1|) $) 66)) (-4371 (($ $) 145 (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) 68)) (-2726 ((|#1| $) 69)) (-3573 (((-1151) $) 9)) (-3698 (($ $) 150 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 149 (-4032 (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-955)) (|has| |#1| (-1193)) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-15 -2606 ((-640 (-1169)) |#1|))) (|has| |#1| (-15 -3698 (|#1| |#1| (-1169)))) (|has| |#1| (-38 (-407 (-563)))))))) (-1694 (((-1113) $) 10)) (-3320 (($ $ (-767)) 98)) (-3008 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-3368 (($ $) 146 (|has| |#1| (-38 (-407 (-563)))))) (-1540 (((-1149 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-767)))))) (-2309 ((|#1| $ (-767)) 107) (($ $ $) 84 (|has| (-767) (-1105)))) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) 92 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-1169) (-767)) 91 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-640 (-1169))) 90 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-1169)) 89 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-767)) 87 (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (-4167 (((-767) $) 67)) (-1806 (($ $) 135 (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) 124 (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) 134 (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) 125 (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) 133 (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) 126 (|has| |#1| (-38 (-407 (-563)))))) (-1741 (($ $) 75)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555))) (($ |#1|) 50 (|has| |#1| (-172)))) (-1337 (((-1149 |#1|) $) 157)) (-4319 ((|#1| $ (-767)) 62)) (-2779 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-1675 (((-767)) 28)) (-3408 ((|#1| $) 105)) (-1840 (($ $) 144 (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) 132 (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) 56 (|has| |#1| (-555)))) (-1817 (($ $) 143 (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) 131 (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) 142 (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) 130 (|has| |#1| (-38 (-407 (-563)))))) (-1403 ((|#1| $ (-767)) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-767)))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-1311 (($ $) 141 (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) 129 (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) 140 (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) 128 (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) 139 (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) 127 (|has| |#1| (-38 (-407 (-563)))))) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) 96 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-1169) (-767)) 95 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-640 (-1169))) 94 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-1169)) 93 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-767)) 88 (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (-1718 (((-112) $ $) 6)) (-1837 (($ $ |#1|) 61 (|has| |#1| (-363)))) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ |#1|) 151 (|has| |#1| (-363))) (($ $ $) 147 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 118 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
+((-2857 (*1 *1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-2857 (*1 *1 *2 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-3782 (*1 *2 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-2308 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-3782 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1245 *3)) (-4 *3 (-1208)))) (-3793 (*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-2308 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1245 *3)) (-4 *3 (-1208)))) (-3793 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1245 *3)) (-4 *3 (-1208)))) (-1481 (*1 *2 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-2308 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1481 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1245 *3)) (-4 *3 (-1208)))) (-4303 (*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-3435 (*1 *2 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-3446 (*1 *2 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1970 (*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1961 (*1 *2 *1) (-12 (-4 *1 (-1245 *3)) (-4 *3 (-1208)) (-5 *2 (-767)))) (-1951 (*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1941 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1941 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1930 (*1 *1 *1) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1919 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1849 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1909 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1849 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4409)) (-4 *1 (-1245 *3)) (-4 *3 (-1208)))) (-1898 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1849 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))) (-1887 (*1 *1 *1 *2) (-12 (-5 *2 (-563)) (|has| *1 (-6 -4409)) (-4 *1 (-1245 *3)) (-4 *3 (-1208)))))
+(-13 (-1006 |t#1|) (-10 -8 (-15 -2857 ($ $ $)) (-15 -2857 ($ |t#1| $)) (-15 -3782 (|t#1| $)) (-15 -2308 (|t#1| $ "first")) (-15 -3782 ($ $ (-767))) (-15 -3793 ($ $)) (-15 -2308 ($ $ "rest")) (-15 -3793 ($ $ (-767))) (-15 -1481 (|t#1| $)) (-15 -2308 (|t#1| $ "last")) (-15 -1481 ($ $ (-767))) (-15 -4303 ($ $)) (-15 -3435 (|t#1| $)) (-15 -3446 (|t#1| $)) (-15 -1970 ($ $)) (-15 -1961 ((-767) $)) (-15 -1951 ($ $)) (IF (|has| $ (-6 -4409)) (PROGN (-15 -1941 ($ $ $)) (-15 -1941 ($ $ |t#1|)) (-15 -1930 ($ $)) (-15 -1919 (|t#1| $ |t#1|)) (-15 -1849 (|t#1| $ "first" |t#1|)) (-15 -1909 ($ $ $)) (-15 -1849 ($ $ "rest" $)) (-15 -1898 (|t#1| $ |t#1|)) (-15 -1849 (|t#1| $ "last" |t#1|)) (-15 -1887 ($ $ (-563)))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1093)) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-610 (-858)))) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-489 |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-1006 |#1|) . T) ((-1093) |has| |#1| (-1093)) ((-1208) . T))
+((-2238 ((|#4| (-1 |#2| |#1|) |#3|) 17)))
+(((-1246 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2238 (|#4| (-1 |#2| |#1|) |#3|))) (-1045) (-1045) (-1248 |#1|) (-1248 |#2|)) (T -1246))
+((-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1045)) (-4 *6 (-1045)) (-4 *2 (-1248 *6)) (-5 *1 (-1246 *5 *6 *4 *2)) (-4 *4 (-1248 *5)))))
+(-10 -7 (-15 -2238 (|#4| (-1 |#2| |#1|) |#3|)))
+((-3439 (((-112) $) 15)) (-1770 (($ $) 91)) (-1618 (($ $) 67)) (-1747 (($ $) 87)) (-1596 (($ $) 63)) (-1793 (($ $) 95)) (-1642 (($ $) 71)) (-4372 (($ $) 61)) (-3372 (($ $) 59)) (-1805 (($ $) 97)) (-1655 (($ $) 73)) (-1783 (($ $) 93)) (-1629 (($ $) 69)) (-1758 (($ $) 89)) (-1607 (($ $) 65)) (-1692 (((-858) $) 47) (($ (-563)) NIL) (($ (-407 (-563))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-1839 (($ $) 103)) (-1694 (($ $) 79)) (-1816 (($ $) 99)) (-1666 (($ $) 75)) (-1861 (($ $) 107)) (-1721 (($ $) 83)) (-1311 (($ $) 109)) (-1734 (($ $) 85)) (-1850 (($ $) 105)) (-1709 (($ $) 81)) (-1828 (($ $) 101)) (-1679 (($ $) 77)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ |#2|) 51) (($ $ $) 54) (($ $ (-407 (-563))) 57)))
+(((-1247 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-407 (-563)))) (-15 -1618 (|#1| |#1|)) (-15 -1596 (|#1| |#1|)) (-15 -1642 (|#1| |#1|)) (-15 -1655 (|#1| |#1|)) (-15 -1629 (|#1| |#1|)) (-15 -1607 (|#1| |#1|)) (-15 -1679 (|#1| |#1|)) (-15 -1709 (|#1| |#1|)) (-15 -1734 (|#1| |#1|)) (-15 -1721 (|#1| |#1|)) (-15 -1666 (|#1| |#1|)) (-15 -1694 (|#1| |#1|)) (-15 -1758 (|#1| |#1|)) (-15 -1783 (|#1| |#1|)) (-15 -1805 (|#1| |#1|)) (-15 -1793 (|#1| |#1|)) (-15 -1747 (|#1| |#1|)) (-15 -1770 (|#1| |#1|)) (-15 -1828 (|#1| |#1|)) (-15 -1850 (|#1| |#1|)) (-15 -1311 (|#1| |#1|)) (-15 -1861 (|#1| |#1|)) (-15 -1816 (|#1| |#1|)) (-15 -1839 (|#1| |#1|)) (-15 -4372 (|#1| |#1|)) (-15 -3372 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -1692 (|#1| |#2|)) (-15 -1692 (|#1| |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -1692 (|#1| (-563))) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917))) (-15 -3439 ((-112) |#1|)) (-15 -1692 ((-858) |#1|))) (-1248 |#2|) (-1045)) (T -1247))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-407 (-563)))) (-15 -1618 (|#1| |#1|)) (-15 -1596 (|#1| |#1|)) (-15 -1642 (|#1| |#1|)) (-15 -1655 (|#1| |#1|)) (-15 -1629 (|#1| |#1|)) (-15 -1607 (|#1| |#1|)) (-15 -1679 (|#1| |#1|)) (-15 -1709 (|#1| |#1|)) (-15 -1734 (|#1| |#1|)) (-15 -1721 (|#1| |#1|)) (-15 -1666 (|#1| |#1|)) (-15 -1694 (|#1| |#1|)) (-15 -1758 (|#1| |#1|)) (-15 -1783 (|#1| |#1|)) (-15 -1805 (|#1| |#1|)) (-15 -1793 (|#1| |#1|)) (-15 -1747 (|#1| |#1|)) (-15 -1770 (|#1| |#1|)) (-15 -1828 (|#1| |#1|)) (-15 -1850 (|#1| |#1|)) (-15 -1311 (|#1| |#1|)) (-15 -1861 (|#1| |#1|)) (-15 -1816 (|#1| |#1|)) (-15 -1839 (|#1| |#1|)) (-15 -4372 (|#1| |#1|)) (-15 -3372 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -1692 (|#1| |#2|)) (-15 -1692 (|#1| |#1|)) (-15 -1692 (|#1| (-407 (-563)))) (-15 -1692 (|#1| (-563))) (-15 ** (|#1| |#1| (-767))) (-15 ** (|#1| |#1| (-917))) (-15 -3439 ((-112) |#1|)) (-15 -1692 ((-858) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-2605 (((-640 (-1075)) $) 77)) (-2517 (((-1169) $) 106)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 54 (|has| |#1| (-555)))) (-3231 (($ $) 55 (|has| |#1| (-555)))) (-3211 (((-112) $) 57 (|has| |#1| (-555)))) (-1763 (($ $ (-767)) 101) (($ $ (-767) (-767)) 100)) (-1787 (((-1149 (-2 (|:| |k| (-767)) (|:| |c| |#1|))) $) 108)) (-1770 (($ $) 138 (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) 121 (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) 19)) (-2185 (($ $) 120 (|has| |#1| (-38 (-407 (-563)))))) (-1747 (($ $) 137 (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) 122 (|has| |#1| (-38 (-407 (-563)))))) (-3049 (($ (-1149 (-2 (|:| |k| (-767)) (|:| |c| |#1|)))) 158) (($ (-1149 |#1|)) 156)) (-1793 (($ $) 136 (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) 123 (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) 17 T CONST)) (-2750 (($ $) 63)) (-3951 (((-3 $ "failed") $) 33)) (-3945 (($ $) 155)) (-3621 (((-948 |#1|) $ (-767)) 153) (((-948 |#1|) $ (-767) (-767)) 152)) (-3381 (((-112) $) 76)) (-2179 (($) 148 (|has| |#1| (-38 (-407 (-563)))))) (-1775 (((-767) $) 103) (((-767) $ (-767)) 102)) (-3401 (((-112) $) 31)) (-2172 (($ $ (-563)) 119 (|has| |#1| (-38 (-407 (-563)))))) (-1821 (($ $ (-917)) 104)) (-2072 (($ (-1 |#1| (-563)) $) 154)) (-3805 (((-112) $) 65)) (-2587 (($ |#1| (-767)) 64) (($ $ (-1075) (-767)) 79) (($ $ (-640 (-1075)) (-640 (-767))) 78)) (-2238 (($ (-1 |#1| |#1|) $) 66)) (-4372 (($ $) 145 (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) 68)) (-2725 ((|#1| $) 69)) (-3854 (((-1151) $) 9)) (-2062 (($ $) 150 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 149 (-4034 (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-955)) (|has| |#1| (-1193)) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-15 -2605 ((-640 (-1169)) |#1|))) (|has| |#1| (-15 -2062 (|#1| |#1| (-1169)))) (|has| |#1| (-38 (-407 (-563)))))))) (-1693 (((-1113) $) 10)) (-1751 (($ $ (-767)) 98)) (-3012 (((-3 $ "failed") $ $) 53 (|has| |#1| (-555)))) (-3372 (($ $) 146 (|has| |#1| (-38 (-407 (-563)))))) (-1542 (((-1149 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-767)))))) (-2308 ((|#1| $ (-767)) 107) (($ $ $) 84 (|has| (-767) (-1105)))) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) 92 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-1169) (-767)) 91 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-640 (-1169))) 90 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-1169)) 89 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-767)) 87 (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (-3871 (((-767) $) 67)) (-1805 (($ $) 135 (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) 124 (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) 134 (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) 125 (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) 133 (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) 126 (|has| |#1| (-38 (-407 (-563)))))) (-3369 (($ $) 75)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ (-407 (-563))) 60 (|has| |#1| (-38 (-407 (-563))))) (($ $) 52 (|has| |#1| (-555))) (($ |#1|) 50 (|has| |#1| (-172)))) (-3955 (((-1149 |#1|) $) 157)) (-3244 ((|#1| $ (-767)) 62)) (-2047 (((-3 $ "failed") $) 51 (|has| |#1| (-145)))) (-3914 (((-767)) 28)) (-3412 ((|#1| $) 105)) (-1839 (($ $) 144 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) 132 (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) 56 (|has| |#1| (-555)))) (-1816 (($ $) 143 (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) 131 (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) 142 (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) 130 (|has| |#1| (-38 (-407 (-563)))))) (-1402 ((|#1| $ (-767)) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-767)))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-1311 (($ $) 141 (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) 129 (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) 140 (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) 128 (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) 139 (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) 127 (|has| |#1| (-38 (-407 (-563)))))) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) 96 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-1169) (-767)) 95 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-640 (-1169))) 94 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-1169)) 93 (-12 (|has| |#1| (-896 (-1169))) (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (($ $ (-767)) 88 (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (-1718 (((-112) $ $) 6)) (-1836 (($ $ |#1|) 61 (|has| |#1| (-363)))) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ |#1|) 151 (|has| |#1| (-363))) (($ $ $) 147 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 118 (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-407 (-563)) $) 59 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) 58 (|has| |#1| (-38 (-407 (-563)))))))
(((-1248 |#1|) (-140) (-1045)) (T -1248))
-((-3045 (*1 *1 *2) (-12 (-5 *2 (-1149 (-2 (|:| |k| (-767)) (|:| |c| *3)))) (-4 *3 (-1045)) (-4 *1 (-1248 *3)))) (-1337 (*1 *2 *1) (-12 (-4 *1 (-1248 *3)) (-4 *3 (-1045)) (-5 *2 (-1149 *3)))) (-3045 (*1 *1 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-4 *1 (-1248 *3)))) (-2655 (*1 *1 *1) (-12 (-4 *1 (-1248 *2)) (-4 *2 (-1045)))) (-2831 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-563))) (-4 *1 (-1248 *3)) (-4 *3 (-1045)))) (-3619 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-1248 *4)) (-4 *4 (-1045)) (-5 *2 (-948 *4)))) (-3619 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-767)) (-4 *1 (-1248 *4)) (-4 *4 (-1045)) (-5 *2 (-948 *4)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1248 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-3698 (*1 *1 *1) (-12 (-4 *1 (-1248 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563)))))) (-3698 (*1 *1 *1 *2) (-4032 (-12 (-5 *2 (-1169)) (-4 *1 (-1248 *3)) (-4 *3 (-1045)) (-12 (-4 *3 (-29 (-563))) (-4 *3 (-955)) (-4 *3 (-1193)) (-4 *3 (-38 (-407 (-563)))))) (-12 (-5 *2 (-1169)) (-4 *1 (-1248 *3)) (-4 *3 (-1045)) (-12 (|has| *3 (-15 -2606 ((-640 *2) *3))) (|has| *3 (-15 -3698 (*3 *3 *2))) (-4 *3 (-38 (-407 (-563)))))))))
-(-13 (-1235 |t#1| (-767)) (-10 -8 (-15 -3045 ($ (-1149 (-2 (|:| |k| (-767)) (|:| |c| |t#1|))))) (-15 -1337 ((-1149 |t#1|) $)) (-15 -3045 ($ (-1149 |t#1|))) (-15 -2655 ($ $)) (-15 -2831 ($ (-1 |t#1| (-563)) $)) (-15 -3619 ((-948 |t#1|) $ (-767))) (-15 -3619 ((-948 |t#1|) $ (-767) (-767))) (IF (|has| |t#1| (-363)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-38 (-407 (-563)))) (PROGN (-15 -3698 ($ $)) (IF (|has| |t#1| (-15 -3698 (|t#1| |t#1| (-1169)))) (IF (|has| |t#1| (-15 -2606 ((-640 (-1169)) |t#1|))) (-15 -3698 ($ $ (-1169))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1193)) (IF (|has| |t#1| (-955)) (IF (|has| |t#1| (-29 (-563))) (-15 -3698 ($ $ (-1169))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-998)) (-6 (-1193))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-767)) . T) ((-25) . T) ((-38 #1=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-555)) ((-35) |has| |#1| (-38 (-407 (-563)))) ((-95) |has| |#1| (-38 (-407 (-563)))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #1#) |has| |#1| (-38 (-407 (-563)))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 $) |has| |#1| (-555)) ((-610 (-858)) . T) ((-172) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-233) |has| |#1| (-15 * (|#1| (-767) |#1|))) ((-284) |has| |#1| (-38 (-407 (-563)))) ((-286 $ $) |has| (-767) (-1105)) ((-290) |has| |#1| (-555)) ((-493) |has| |#1| (-38 (-407 (-563)))) ((-555) |has| |#1| (-555)) ((-643 #1#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #1#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) |has| |#1| (-555)) ((-722) . T) ((-896 (-1169)) -12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169)))) ((-969 |#1| #0# (-1075)) . T) ((-998) |has| |#1| (-38 (-407 (-563)))) ((-1051 #1#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4032 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1193) |has| |#1| (-38 (-407 (-563)))) ((-1196) |has| |#1| (-38 (-407 (-563)))) ((-1235 |#1| #0#) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-2606 (((-640 (-1075)) $) NIL)) (-2518 (((-1169) $) 86)) (-1987 (((-1230 |#2| |#1|) $ (-767)) 73)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-4223 (($ $) NIL (|has| |#1| (-555)))) (-3156 (((-112) $) 136 (|has| |#1| (-555)))) (-2421 (($ $ (-767)) 121) (($ $ (-767) (-767)) 123)) (-1539 (((-1149 (-2 (|:| |k| (-767)) (|:| |c| |#1|))) $) 42)) (-1771 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1619 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1495 (((-3 $ "failed") $ $) NIL)) (-2186 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1748 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1597 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3045 (($ (-1149 (-2 (|:| |k| (-767)) (|:| |c| |#1|)))) 53) (($ (-1149 |#1|)) NIL)) (-1794 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1643 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-4239 (($) NIL T CONST)) (-3337 (($ $) 127)) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-2655 (($ $) 134)) (-3619 (((-948 |#1|) $ (-767)) 63) (((-948 |#1|) $ (-767) (-767)) 65)) (-2788 (((-112) $) NIL)) (-2180 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3254 (((-767) $) NIL) (((-767) $ (-767)) NIL)) (-3827 (((-112) $) NIL)) (-1291 (($ $) 111)) (-1645 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-4205 (($ (-563) (-563) $) 129)) (-1351 (($ $ (-917)) 133)) (-2831 (($ (-1 |#1| (-563)) $) 105)) (-3920 (((-112) $) NIL)) (-2588 (($ |#1| (-767)) 15) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2240 (($ (-1 |#1| |#1|) $) 93)) (-4371 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2716 (($ $) NIL)) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-4386 (($ $) 109)) (-3771 (($ $) 107)) (-4033 (($ (-563) (-563) $) 131)) (-3698 (($ $) 144 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 150 (-4032 (-12 (|has| |#1| (-15 -3698 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2606 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193))))) (($ $ (-1253 |#2|)) 145 (|has| |#1| (-38 (-407 (-563)))))) (-1694 (((-1113) $) NIL)) (-1649 (($ $ (-563) (-563)) 115)) (-3320 (($ $ (-767)) 117)) (-3008 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-3368 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3570 (($ $) 113)) (-1540 (((-1149 |#1|) $ |#1|) 95 (|has| |#1| (-15 ** (|#1| |#1| (-767)))))) (-2309 ((|#1| $ (-767)) 90) (($ $ $) 125 (|has| (-767) (-1105)))) (-4202 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) 102 (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $) 97 (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $ (-1253 |#2|)) 98)) (-4167 (((-767) $) NIL)) (-1806 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1656 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1784 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1630 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1759 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1608 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1741 (($ $) 119)) (-1693 (((-858) $) NIL) (($ (-563)) 24) (($ (-407 (-563))) 142 (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555))) (($ |#1|) 23 (|has| |#1| (-172))) (($ (-1230 |#2| |#1|)) 79) (($ (-1253 |#2|)) 20)) (-1337 (((-1149 |#1|) $) NIL)) (-4319 ((|#1| $ (-767)) 89)) (-2779 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1675 (((-767)) NIL)) (-3408 ((|#1| $) 87)) (-1840 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1695 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2126 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1817 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1667 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1862 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1722 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1403 ((|#1| $ (-767)) 85 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-767)))) (|has| |#1| (-15 -1693 (|#1| (-1169))))))) (-1311 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1735 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1851 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1710 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1829 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1680 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2241 (($) 17 T CONST)) (-2254 (($) 13 T CONST)) (-3209 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (-1718 (((-112) $ $) NIL)) (-1837 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) 101)) (-1814 (($ $ $) 18)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ |#1|) 139 (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 100) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
-(((-1249 |#1| |#2| |#3|) (-13 (-1248 |#1|) (-10 -8 (-15 -1693 ($ (-1230 |#2| |#1|))) (-15 -1987 ((-1230 |#2| |#1|) $ (-767))) (-15 -1693 ($ (-1253 |#2|))) (-15 -4202 ($ $ (-1253 |#2|))) (-15 -3771 ($ $)) (-15 -4386 ($ $)) (-15 -1291 ($ $)) (-15 -3570 ($ $)) (-15 -1649 ($ $ (-563) (-563))) (-15 -3337 ($ $)) (-15 -4205 ($ (-563) (-563) $)) (-15 -4033 ($ (-563) (-563) $)) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1253 |#2|))) |%noBranch|))) (-1045) (-1169) |#1|) (T -1249))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-1230 *4 *3)) (-4 *3 (-1045)) (-14 *4 (-1169)) (-14 *5 *3) (-5 *1 (-1249 *3 *4 *5)))) (-1987 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1230 *5 *4)) (-5 *1 (-1249 *4 *5 *6)) (-4 *4 (-1045)) (-14 *5 (-1169)) (-14 *6 *4))) (-1693 (*1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-4202 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-3771 (*1 *1 *1) (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169)) (-14 *4 *2))) (-4386 (*1 *1 *1) (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169)) (-14 *4 *2))) (-1291 (*1 *1 *1) (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169)) (-14 *4 *2))) (-3570 (*1 *1 *1) (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169)) (-14 *4 *2))) (-1649 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045)) (-14 *4 (-1169)) (-14 *5 *3))) (-3337 (*1 *1 *1) (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169)) (-14 *4 *2))) (-4205 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045)) (-14 *4 (-1169)) (-14 *5 *3))) (-4033 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045)) (-14 *4 (-1169)) (-14 *5 *3))) (-3698 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
-(-13 (-1248 |#1|) (-10 -8 (-15 -1693 ($ (-1230 |#2| |#1|))) (-15 -1987 ((-1230 |#2| |#1|) $ (-767))) (-15 -1693 ($ (-1253 |#2|))) (-15 -4202 ($ $ (-1253 |#2|))) (-15 -3771 ($ $)) (-15 -4386 ($ $)) (-15 -1291 ($ $)) (-15 -3570 ($ $)) (-15 -1649 ($ $ (-563) (-563))) (-15 -3337 ($ $)) (-15 -4205 ($ (-563) (-563) $)) (-15 -4033 ($ (-563) (-563) $)) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -3698 ($ $ (-1253 |#2|))) |%noBranch|)))
-((-2721 (((-1 (-1149 |#1|) (-640 (-1149 |#1|))) (-1 |#2| (-640 |#2|))) 24)) (-3742 (((-1 (-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-3339 (((-1 (-1149 |#1|) (-1149 |#1|)) (-1 |#2| |#2|)) 13)) (-2224 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-2525 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-1803 ((|#2| (-1 |#2| (-640 |#2|)) (-640 |#1|)) 54)) (-3841 (((-640 |#2|) (-640 |#1|) (-640 (-1 |#2| (-640 |#2|)))) 61)) (-2901 ((|#2| |#2| |#2|) 43)))
-(((-1250 |#1| |#2|) (-10 -7 (-15 -3339 ((-1 (-1149 |#1|) (-1149 |#1|)) (-1 |#2| |#2|))) (-15 -3742 ((-1 (-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2721 ((-1 (-1149 |#1|) (-640 (-1149 |#1|))) (-1 |#2| (-640 |#2|)))) (-15 -2901 (|#2| |#2| |#2|)) (-15 -2525 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -2224 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1803 (|#2| (-1 |#2| (-640 |#2|)) (-640 |#1|))) (-15 -3841 ((-640 |#2|) (-640 |#1|) (-640 (-1 |#2| (-640 |#2|)))))) (-38 (-407 (-563))) (-1248 |#1|)) (T -1250))
-((-3841 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *5)) (-5 *4 (-640 (-1 *6 (-640 *6)))) (-4 *5 (-38 (-407 (-563)))) (-4 *6 (-1248 *5)) (-5 *2 (-640 *6)) (-5 *1 (-1250 *5 *6)))) (-1803 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-640 *2))) (-5 *4 (-640 *5)) (-4 *5 (-38 (-407 (-563)))) (-4 *2 (-1248 *5)) (-5 *1 (-1250 *5 *2)))) (-2224 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1248 *4)) (-5 *1 (-1250 *4 *2)) (-4 *4 (-38 (-407 (-563)))))) (-2525 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1248 *4)) (-5 *1 (-1250 *4 *2)) (-4 *4 (-38 (-407 (-563)))))) (-2901 (*1 *2 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1250 *3 *2)) (-4 *2 (-1248 *3)))) (-2721 (*1 *2 *3) (-12 (-5 *3 (-1 *5 (-640 *5))) (-4 *5 (-1248 *4)) (-4 *4 (-38 (-407 (-563)))) (-5 *2 (-1 (-1149 *4) (-640 (-1149 *4)))) (-5 *1 (-1250 *4 *5)))) (-3742 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1248 *4)) (-4 *4 (-38 (-407 (-563)))) (-5 *2 (-1 (-1149 *4) (-1149 *4) (-1149 *4))) (-5 *1 (-1250 *4 *5)))) (-3339 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1248 *4)) (-4 *4 (-38 (-407 (-563)))) (-5 *2 (-1 (-1149 *4) (-1149 *4))) (-5 *1 (-1250 *4 *5)))))
-(-10 -7 (-15 -3339 ((-1 (-1149 |#1|) (-1149 |#1|)) (-1 |#2| |#2|))) (-15 -3742 ((-1 (-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2721 ((-1 (-1149 |#1|) (-640 (-1149 |#1|))) (-1 |#2| (-640 |#2|)))) (-15 -2901 (|#2| |#2| |#2|)) (-15 -2525 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -2224 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1803 (|#2| (-1 |#2| (-640 |#2|)) (-640 |#1|))) (-15 -3841 ((-640 |#2|) (-640 |#1|) (-640 (-1 |#2| (-640 |#2|))))))
-((-2697 ((|#2| |#4| (-767)) 30)) (-3595 ((|#4| |#2|) 25)) (-3465 ((|#4| (-407 |#2|)) 52 (|has| |#1| (-555)))) (-2323 (((-1 |#4| (-640 |#4|)) |#3|) 46)))
-(((-1251 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3595 (|#4| |#2|)) (-15 -2697 (|#2| |#4| (-767))) (-15 -2323 ((-1 |#4| (-640 |#4|)) |#3|)) (IF (|has| |#1| (-555)) (-15 -3465 (|#4| (-407 |#2|))) |%noBranch|)) (-1045) (-1233 |#1|) (-651 |#2|) (-1248 |#1|)) (T -1251))
-((-3465 (*1 *2 *3) (-12 (-5 *3 (-407 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-555)) (-4 *4 (-1045)) (-4 *2 (-1248 *4)) (-5 *1 (-1251 *4 *5 *6 *2)) (-4 *6 (-651 *5)))) (-2323 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-1233 *4)) (-5 *2 (-1 *6 (-640 *6))) (-5 *1 (-1251 *4 *5 *3 *6)) (-4 *3 (-651 *5)) (-4 *6 (-1248 *4)))) (-2697 (*1 *2 *3 *4) (-12 (-5 *4 (-767)) (-4 *5 (-1045)) (-4 *2 (-1233 *5)) (-5 *1 (-1251 *5 *2 *6 *3)) (-4 *6 (-651 *2)) (-4 *3 (-1248 *5)))) (-3595 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *3 (-1233 *4)) (-4 *2 (-1248 *4)) (-5 *1 (-1251 *4 *3 *5 *2)) (-4 *5 (-651 *3)))))
-(-10 -7 (-15 -3595 (|#4| |#2|)) (-15 -2697 (|#2| |#4| (-767))) (-15 -2323 ((-1 |#4| (-640 |#4|)) |#3|)) (IF (|has| |#1| (-555)) (-15 -3465 (|#4| (-407 |#2|))) |%noBranch|))
+((-3049 (*1 *1 *2) (-12 (-5 *2 (-1149 (-2 (|:| |k| (-767)) (|:| |c| *3)))) (-4 *3 (-1045)) (-4 *1 (-1248 *3)))) (-3955 (*1 *2 *1) (-12 (-4 *1 (-1248 *3)) (-4 *3 (-1045)) (-5 *2 (-1149 *3)))) (-3049 (*1 *1 *2) (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-4 *1 (-1248 *3)))) (-3945 (*1 *1 *1) (-12 (-4 *1 (-1248 *2)) (-4 *2 (-1045)))) (-2072 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-563))) (-4 *1 (-1248 *3)) (-4 *3 (-1045)))) (-3621 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-1248 *4)) (-4 *4 (-1045)) (-5 *2 (-948 *4)))) (-3621 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-767)) (-4 *1 (-1248 *4)) (-4 *4 (-1045)) (-5 *2 (-948 *4)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1248 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))) (-2062 (*1 *1 *1) (-12 (-4 *1 (-1248 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563)))))) (-2062 (*1 *1 *1 *2) (-4034 (-12 (-5 *2 (-1169)) (-4 *1 (-1248 *3)) (-4 *3 (-1045)) (-12 (-4 *3 (-29 (-563))) (-4 *3 (-955)) (-4 *3 (-1193)) (-4 *3 (-38 (-407 (-563)))))) (-12 (-5 *2 (-1169)) (-4 *1 (-1248 *3)) (-4 *3 (-1045)) (-12 (|has| *3 (-15 -2605 ((-640 *2) *3))) (|has| *3 (-15 -2062 (*3 *3 *2))) (-4 *3 (-38 (-407 (-563)))))))))
+(-13 (-1235 |t#1| (-767)) (-10 -8 (-15 -3049 ($ (-1149 (-2 (|:| |k| (-767)) (|:| |c| |t#1|))))) (-15 -3955 ((-1149 |t#1|) $)) (-15 -3049 ($ (-1149 |t#1|))) (-15 -3945 ($ $)) (-15 -2072 ($ (-1 |t#1| (-563)) $)) (-15 -3621 ((-948 |t#1|) $ (-767))) (-15 -3621 ((-948 |t#1|) $ (-767) (-767))) (IF (|has| |t#1| (-363)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-38 (-407 (-563)))) (PROGN (-15 -2062 ($ $)) (IF (|has| |t#1| (-15 -2062 (|t#1| |t#1| (-1169)))) (IF (|has| |t#1| (-15 -2605 ((-640 (-1169)) |t#1|))) (-15 -2062 ($ $ (-1169))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1193)) (IF (|has| |t#1| (-955)) (IF (|has| |t#1| (-29 (-563))) (-15 -2062 ($ $ (-1169))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-998)) (-6 (-1193))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-767)) . T) ((-25) . T) ((-38 #1=(-407 (-563))) |has| |#1| (-38 (-407 (-563)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-555)) ((-35) |has| |#1| (-38 (-407 (-563)))) ((-95) |has| |#1| (-38 (-407 (-563)))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-407 (-563)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-613 #1#) |has| |#1| (-38 (-407 (-563)))) ((-613 (-563)) . T) ((-613 |#1|) |has| |#1| (-172)) ((-613 $) |has| |#1| (-555)) ((-610 (-858)) . T) ((-172) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-233) |has| |#1| (-15 * (|#1| (-767) |#1|))) ((-284) |has| |#1| (-38 (-407 (-563)))) ((-286 $ $) |has| (-767) (-1105)) ((-290) |has| |#1| (-555)) ((-493) |has| |#1| (-38 (-407 (-563)))) ((-555) |has| |#1| (-555)) ((-643 #1#) |has| |#1| (-38 (-407 (-563)))) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #1#) |has| |#1| (-38 (-407 (-563)))) ((-713 |#1|) |has| |#1| (-172)) ((-713 $) |has| |#1| (-555)) ((-722) . T) ((-896 (-1169)) -12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169)))) ((-969 |#1| #0# (-1075)) . T) ((-998) |has| |#1| (-38 (-407 (-563)))) ((-1051 #1#) |has| |#1| (-38 (-407 (-563)))) ((-1051 |#1|) . T) ((-1051 $) -4034 (|has| |#1| (-555)) (|has| |#1| (-172))) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1193) |has| |#1| (-38 (-407 (-563)))) ((-1196) |has| |#1| (-38 (-407 (-563)))) ((-1235 |#1| #0#) . T))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-2605 (((-640 (-1075)) $) NIL)) (-2517 (((-1169) $) 86)) (-2051 (((-1230 |#2| |#1|) $ (-767)) 73)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) NIL (|has| |#1| (-555)))) (-3231 (($ $) NIL (|has| |#1| (-555)))) (-3211 (((-112) $) 136 (|has| |#1| (-555)))) (-1763 (($ $ (-767)) 121) (($ $ (-767) (-767)) 123)) (-1787 (((-1149 (-2 (|:| |k| (-767)) (|:| |c| |#1|))) $) 42)) (-1770 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1618 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3905 (((-3 $ "failed") $ $) NIL)) (-2185 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1747 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1596 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3049 (($ (-1149 (-2 (|:| |k| (-767)) (|:| |c| |#1|)))) 53) (($ (-1149 |#1|)) NIL)) (-1793 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1642 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2569 (($) NIL T CONST)) (-1996 (($ $) 127)) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3945 (($ $) 134)) (-3621 (((-948 |#1|) $ (-767)) 63) (((-948 |#1|) $ (-767) (-767)) 65)) (-3381 (((-112) $) NIL)) (-2179 (($) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1775 (((-767) $) NIL) (((-767) $ (-767)) NIL)) (-3401 (((-112) $) NIL)) (-2024 (($ $) 111)) (-2172 (($ $ (-563)) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1987 (($ (-563) (-563) $) 129)) (-1821 (($ $ (-917)) 133)) (-2072 (($ (-1 |#1| (-563)) $) 105)) (-3805 (((-112) $) NIL)) (-2587 (($ |#1| (-767)) 15) (($ $ (-1075) (-767)) NIL) (($ $ (-640 (-1075)) (-640 (-767))) NIL)) (-2238 (($ (-1 |#1| |#1|) $) 93)) (-4372 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2715 (($ $) NIL)) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-2035 (($ $) 109)) (-2044 (($ $) 107)) (-1980 (($ (-563) (-563) $) 131)) (-2062 (($ $) 144 (|has| |#1| (-38 (-407 (-563))))) (($ $ (-1169)) 150 (-4034 (-12 (|has| |#1| (-15 -2062 (|#1| |#1| (-1169)))) (|has| |#1| (-15 -2605 ((-640 (-1169)) |#1|))) (|has| |#1| (-38 (-407 (-563))))) (-12 (|has| |#1| (-29 (-563))) (|has| |#1| (-38 (-407 (-563)))) (|has| |#1| (-955)) (|has| |#1| (-1193))))) (($ $ (-1253 |#2|)) 145 (|has| |#1| (-38 (-407 (-563)))))) (-1693 (((-1113) $) NIL)) (-2006 (($ $ (-563) (-563)) 115)) (-1751 (($ $ (-767)) 117)) (-3012 (((-3 $ "failed") $ $) NIL (|has| |#1| (-555)))) (-3372 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2013 (($ $) 113)) (-1542 (((-1149 |#1|) $ |#1|) 95 (|has| |#1| (-15 ** (|#1| |#1| (-767)))))) (-2308 ((|#1| $ (-767)) 90) (($ $ $) 125 (|has| (-767) (-1105)))) (-4203 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) 102 (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $) 97 (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $ (-1253 |#2|)) 98)) (-3871 (((-767) $) NIL)) (-1805 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1655 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1783 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1629 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1758 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1607 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3369 (($ $) 119)) (-1692 (((-858) $) NIL) (($ (-563)) 24) (($ (-407 (-563))) 142 (|has| |#1| (-38 (-407 (-563))))) (($ $) NIL (|has| |#1| (-555))) (($ |#1|) 23 (|has| |#1| (-172))) (($ (-1230 |#2| |#1|)) 79) (($ (-1253 |#2|)) 20)) (-3955 (((-1149 |#1|) $) NIL)) (-3244 ((|#1| $ (-767)) 89)) (-2047 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3914 (((-767)) NIL)) (-3412 ((|#1| $) 87)) (-1839 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1694 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-3223 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1816 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1666 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1861 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1721 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1402 ((|#1| $ (-767)) 85 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-767)))) (|has| |#1| (-15 -1692 (|#1| (-1169))))))) (-1311 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1734 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1850 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1709 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1828 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-1679 (($ $) NIL (|has| |#1| (-38 (-407 (-563)))))) (-2239 (($) 17 T CONST)) (-2253 (($) 13 T CONST)) (-3213 (($ $ (-640 (-1169)) (-640 (-767))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169) (-767)) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-640 (-1169))) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-1169)) NIL (-12 (|has| |#1| (-15 * (|#1| (-767) |#1|))) (|has| |#1| (-896 (-1169))))) (($ $ (-767)) NIL (|has| |#1| (-15 * (|#1| (-767) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-767) |#1|))))) (-1718 (((-112) $ $) NIL)) (-1836 (($ $ |#1|) NIL (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) 101)) (-1813 (($ $ $) 18)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL) (($ $ |#1|) 139 (|has| |#1| (-363))) (($ $ $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 100) (($ (-407 (-563)) $) NIL (|has| |#1| (-38 (-407 (-563))))) (($ $ (-407 (-563))) NIL (|has| |#1| (-38 (-407 (-563)))))))
+(((-1249 |#1| |#2| |#3|) (-13 (-1248 |#1|) (-10 -8 (-15 -1692 ($ (-1230 |#2| |#1|))) (-15 -2051 ((-1230 |#2| |#1|) $ (-767))) (-15 -1692 ($ (-1253 |#2|))) (-15 -4203 ($ $ (-1253 |#2|))) (-15 -2044 ($ $)) (-15 -2035 ($ $)) (-15 -2024 ($ $)) (-15 -2013 ($ $)) (-15 -2006 ($ $ (-563) (-563))) (-15 -1996 ($ $)) (-15 -1987 ($ (-563) (-563) $)) (-15 -1980 ($ (-563) (-563) $)) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1253 |#2|))) |%noBranch|))) (-1045) (-1169) |#1|) (T -1249))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-1230 *4 *3)) (-4 *3 (-1045)) (-14 *4 (-1169)) (-14 *5 *3) (-5 *1 (-1249 *3 *4 *5)))) (-2051 (*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1230 *5 *4)) (-5 *1 (-1249 *4 *5 *6)) (-4 *4 (-1045)) (-14 *5 (-1169)) (-14 *6 *4))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-4203 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045)) (-14 *5 *3))) (-2044 (*1 *1 *1) (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169)) (-14 *4 *2))) (-2035 (*1 *1 *1) (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169)) (-14 *4 *2))) (-2024 (*1 *1 *1) (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169)) (-14 *4 *2))) (-2013 (*1 *1 *1) (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169)) (-14 *4 *2))) (-2006 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045)) (-14 *4 (-1169)) (-14 *5 *3))) (-1996 (*1 *1 *1) (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169)) (-14 *4 *2))) (-1987 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045)) (-14 *4 (-1169)) (-14 *5 *3))) (-1980 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045)) (-14 *4 (-1169)) (-14 *5 *3))) (-2062 (*1 *1 *1 *2) (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
+(-13 (-1248 |#1|) (-10 -8 (-15 -1692 ($ (-1230 |#2| |#1|))) (-15 -2051 ((-1230 |#2| |#1|) $ (-767))) (-15 -1692 ($ (-1253 |#2|))) (-15 -4203 ($ $ (-1253 |#2|))) (-15 -2044 ($ $)) (-15 -2035 ($ $)) (-15 -2024 ($ $)) (-15 -2013 ($ $)) (-15 -2006 ($ $ (-563) (-563))) (-15 -1996 ($ $)) (-15 -1987 ($ (-563) (-563) $)) (-15 -1980 ($ (-563) (-563) $)) (IF (|has| |#1| (-38 (-407 (-563)))) (-15 -2062 ($ $ (-1253 |#2|))) |%noBranch|)))
+((-3987 (((-1 (-1149 |#1|) (-640 (-1149 |#1|))) (-1 |#2| (-640 |#2|))) 24)) (-3976 (((-1 (-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-3966 (((-1 (-1149 |#1|) (-1149 |#1|)) (-1 |#2| |#2|)) 13)) (-4020 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-4010 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-4031 ((|#2| (-1 |#2| (-640 |#2|)) (-640 |#1|)) 54)) (-4043 (((-640 |#2|) (-640 |#1|) (-640 (-1 |#2| (-640 |#2|)))) 61)) (-3999 ((|#2| |#2| |#2|) 43)))
+(((-1250 |#1| |#2|) (-10 -7 (-15 -3966 ((-1 (-1149 |#1|) (-1149 |#1|)) (-1 |#2| |#2|))) (-15 -3976 ((-1 (-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -3987 ((-1 (-1149 |#1|) (-640 (-1149 |#1|))) (-1 |#2| (-640 |#2|)))) (-15 -3999 (|#2| |#2| |#2|)) (-15 -4010 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -4020 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -4031 (|#2| (-1 |#2| (-640 |#2|)) (-640 |#1|))) (-15 -4043 ((-640 |#2|) (-640 |#1|) (-640 (-1 |#2| (-640 |#2|)))))) (-38 (-407 (-563))) (-1248 |#1|)) (T -1250))
+((-4043 (*1 *2 *3 *4) (-12 (-5 *3 (-640 *5)) (-5 *4 (-640 (-1 *6 (-640 *6)))) (-4 *5 (-38 (-407 (-563)))) (-4 *6 (-1248 *5)) (-5 *2 (-640 *6)) (-5 *1 (-1250 *5 *6)))) (-4031 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-640 *2))) (-5 *4 (-640 *5)) (-4 *5 (-38 (-407 (-563)))) (-4 *2 (-1248 *5)) (-5 *1 (-1250 *5 *2)))) (-4020 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1248 *4)) (-5 *1 (-1250 *4 *2)) (-4 *4 (-38 (-407 (-563)))))) (-4010 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1248 *4)) (-5 *1 (-1250 *4 *2)) (-4 *4 (-38 (-407 (-563)))))) (-3999 (*1 *2 *2 *2) (-12 (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1250 *3 *2)) (-4 *2 (-1248 *3)))) (-3987 (*1 *2 *3) (-12 (-5 *3 (-1 *5 (-640 *5))) (-4 *5 (-1248 *4)) (-4 *4 (-38 (-407 (-563)))) (-5 *2 (-1 (-1149 *4) (-640 (-1149 *4)))) (-5 *1 (-1250 *4 *5)))) (-3976 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1248 *4)) (-4 *4 (-38 (-407 (-563)))) (-5 *2 (-1 (-1149 *4) (-1149 *4) (-1149 *4))) (-5 *1 (-1250 *4 *5)))) (-3966 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1248 *4)) (-4 *4 (-38 (-407 (-563)))) (-5 *2 (-1 (-1149 *4) (-1149 *4))) (-5 *1 (-1250 *4 *5)))))
+(-10 -7 (-15 -3966 ((-1 (-1149 |#1|) (-1149 |#1|)) (-1 |#2| |#2|))) (-15 -3976 ((-1 (-1149 |#1|) (-1149 |#1|) (-1149 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -3987 ((-1 (-1149 |#1|) (-640 (-1149 |#1|))) (-1 |#2| (-640 |#2|)))) (-15 -3999 (|#2| |#2| |#2|)) (-15 -4010 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -4020 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -4031 (|#2| (-1 |#2| (-640 |#2|)) (-640 |#1|))) (-15 -4043 ((-640 |#2|) (-640 |#1|) (-640 (-1 |#2| (-640 |#2|))))))
+((-4066 ((|#2| |#4| (-767)) 30)) (-4055 ((|#4| |#2|) 25)) (-4087 ((|#4| (-407 |#2|)) 52 (|has| |#1| (-555)))) (-4076 (((-1 |#4| (-640 |#4|)) |#3|) 46)))
+(((-1251 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4055 (|#4| |#2|)) (-15 -4066 (|#2| |#4| (-767))) (-15 -4076 ((-1 |#4| (-640 |#4|)) |#3|)) (IF (|has| |#1| (-555)) (-15 -4087 (|#4| (-407 |#2|))) |%noBranch|)) (-1045) (-1233 |#1|) (-651 |#2|) (-1248 |#1|)) (T -1251))
+((-4087 (*1 *2 *3) (-12 (-5 *3 (-407 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-555)) (-4 *4 (-1045)) (-4 *2 (-1248 *4)) (-5 *1 (-1251 *4 *5 *6 *2)) (-4 *6 (-651 *5)))) (-4076 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *5 (-1233 *4)) (-5 *2 (-1 *6 (-640 *6))) (-5 *1 (-1251 *4 *5 *3 *6)) (-4 *3 (-651 *5)) (-4 *6 (-1248 *4)))) (-4066 (*1 *2 *3 *4) (-12 (-5 *4 (-767)) (-4 *5 (-1045)) (-4 *2 (-1233 *5)) (-5 *1 (-1251 *5 *2 *6 *3)) (-4 *6 (-651 *2)) (-4 *3 (-1248 *5)))) (-4055 (*1 *2 *3) (-12 (-4 *4 (-1045)) (-4 *3 (-1233 *4)) (-4 *2 (-1248 *4)) (-5 *1 (-1251 *4 *3 *5 *2)) (-4 *5 (-651 *3)))))
+(-10 -7 (-15 -4055 (|#4| |#2|)) (-15 -4066 (|#2| |#4| (-767))) (-15 -4076 ((-1 |#4| (-640 |#4|)) |#3|)) (IF (|has| |#1| (-555)) (-15 -4087 (|#4| (-407 |#2|))) |%noBranch|))
NIL
(((-1252) (-140)) (T -1252))
NIL
(-13 (-10 -7 (-6 -1370)))
-((-1677 (((-112) $ $) NIL)) (-2518 (((-1169)) 12)) (-3573 (((-1151) $) 17)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 11) (((-1169) $) 8)) (-1718 (((-112) $ $) 14)))
-(((-1253 |#1|) (-13 (-1093) (-610 (-1169)) (-10 -8 (-15 -1693 ((-1169) $)) (-15 -2518 ((-1169))))) (-1169)) (T -1253))
-((-1693 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-1253 *3)) (-14 *3 *2))) (-2518 (*1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1253 *3)) (-14 *3 *2))))
-(-13 (-1093) (-610 (-1169)) (-10 -8 (-15 -1693 ((-1169) $)) (-15 -2518 ((-1169)))))
-((-3212 (($ (-767)) 18)) (-3982 (((-684 |#2|) $ $) 40)) (-1607 ((|#2| $) 48)) (-3415 ((|#2| $) 47)) (-4092 ((|#2| $ $) 35)) (-1627 (($ $ $) 44)) (-1826 (($ $) 22) (($ $ $) 28)) (-1814 (($ $ $) 15)) (* (($ (-563) $) 25) (($ |#2| $) 31) (($ $ |#2|) 30)))
-(((-1254 |#1| |#2|) (-10 -8 (-15 -1607 (|#2| |#1|)) (-15 -3415 (|#2| |#1|)) (-15 -1627 (|#1| |#1| |#1|)) (-15 -3982 ((-684 |#2|) |#1| |#1|)) (-15 -4092 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1826 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 -3212 (|#1| (-767))) (-15 -1814 (|#1| |#1| |#1|))) (-1255 |#2|) (-1208)) (T -1254))
-NIL
-(-10 -8 (-15 -1607 (|#2| |#1|)) (-15 -3415 (|#2| |#1|)) (-15 -1627 (|#1| |#1| |#1|)) (-15 -3982 ((-684 |#2|) |#1| |#1|)) (-15 -4092 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1826 (|#1| |#1| |#1|)) (-15 -1826 (|#1| |#1|)) (-15 -3212 (|#1| (-767))) (-15 -1814 (|#1| |#1| |#1|)))
-((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-3212 (($ (-767)) 112 (|has| |#1| (-23)))) (-4378 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4408)))) (-3523 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-846)))) (-2770 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4408))) (($ $) 88 (-12 (|has| |#1| (-846)) (|has| $ (-6 -4408))))) (-1642 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-846)))) (-2759 (((-112) $ (-767)) 8)) (-1849 ((|#1| $ (-563) |#1|) 52 (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) 58 (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4407)))) (-4239 (($) 7 T CONST)) (-2907 (($ $) 90 (|has| $ (-6 -4408)))) (-4382 (($ $) 100)) (-3813 (($ $) 78 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-1459 (($ |#1| $) 77 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4407)))) (-4355 ((|#1| $ (-563) |#1|) 53 (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) 51)) (-4368 (((-563) (-1 (-112) |#1|) $) 97) (((-563) |#1| $) 96 (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) 95 (|has| |#1| (-1093)))) (-2659 (((-640 |#1|) $) 30 (|has| $ (-6 -4407)))) (-3982 (((-684 |#1|) $ $) 105 (|has| |#1| (-1045)))) (-1566 (($ (-767) |#1|) 69)) (-2581 (((-112) $ (-767)) 9)) (-2411 (((-563) $) 43 (|has| (-563) (-846)))) (-3084 (($ $ $) 87 (|has| |#1| (-846)))) (-3164 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-846)))) (-2259 (((-640 |#1|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-3860 (((-563) $) 44 (|has| (-563) (-846)))) (-1777 (($ $ $) 86 (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-1607 ((|#1| $) 102 (-12 (|has| |#1| (-1045)) (|has| |#1| (-998))))) (-2382 (((-112) $ (-767)) 10)) (-3415 ((|#1| $) 103 (-12 (|has| |#1| (-1045)) (|has| |#1| (-998))))) (-3573 (((-1151) $) 22 (|has| |#1| (-1093)))) (-3396 (($ |#1| $ (-563)) 60) (($ $ $ (-563)) 59)) (-4318 (((-640 (-563)) $) 46)) (-3192 (((-112) (-563) $) 47)) (-1694 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3781 ((|#1| $) 42 (|has| (-563) (-846)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2358 (($ $ |#1|) 41 (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) 14)) (-2105 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) 48)) (-3756 (((-112) $) 11)) (-3135 (($) 12)) (-2309 ((|#1| $ (-563) |#1|) 50) ((|#1| $ (-563)) 49) (($ $ (-1224 (-563))) 63)) (-4092 ((|#1| $ $) 106 (|has| |#1| (-1045)))) (-2963 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-1627 (($ $ $) 104 (|has| |#1| (-1045)))) (-1709 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4407))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4407))))) (-3076 (($ $ $ (-563)) 91 (|has| $ (-6 -4408)))) (-1872 (($ $) 13)) (-2220 (((-536) $) 79 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 70)) (-2853 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1693 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) 84 (|has| |#1| (-846)))) (-1756 (((-112) $ $) 83 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-1768 (((-112) $ $) 85 (|has| |#1| (-846)))) (-1744 (((-112) $ $) 82 (|has| |#1| (-846)))) (-1826 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-1814 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-563) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-722))) (($ $ |#1|) 107 (|has| |#1| (-722)))) (-3608 (((-767) $) 6 (|has| $ (-6 -4407)))))
+((-1677 (((-112) $ $) NIL)) (-2517 (((-1169)) 12)) (-3854 (((-1151) $) 17)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 11) (((-1169) $) 8)) (-1718 (((-112) $ $) 14)))
+(((-1253 |#1|) (-13 (-1093) (-610 (-1169)) (-10 -8 (-15 -1692 ((-1169) $)) (-15 -2517 ((-1169))))) (-1169)) (T -1253))
+((-1692 (*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-1253 *3)) (-14 *3 *2))) (-2517 (*1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1253 *3)) (-14 *3 *2))))
+(-13 (-1093) (-610 (-1169)) (-10 -8 (-15 -1692 ((-1169) $)) (-15 -2517 ((-1169)))))
+((-3216 (($ (-767)) 18)) (-3983 (((-684 |#2|) $ $) 40)) (-4098 ((|#2| $) 48)) (-3419 ((|#2| $) 47)) (-4121 ((|#2| $ $) 35)) (-4111 (($ $ $) 44)) (-1825 (($ $) 22) (($ $ $) 28)) (-1813 (($ $ $) 15)) (* (($ (-563) $) 25) (($ |#2| $) 31) (($ $ |#2|) 30)))
+(((-1254 |#1| |#2|) (-10 -8 (-15 -4098 (|#2| |#1|)) (-15 -3419 (|#2| |#1|)) (-15 -4111 (|#1| |#1| |#1|)) (-15 -3983 ((-684 |#2|) |#1| |#1|)) (-15 -4121 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1825 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 -3216 (|#1| (-767))) (-15 -1813 (|#1| |#1| |#1|))) (-1255 |#2|) (-1208)) (T -1254))
+NIL
+(-10 -8 (-15 -4098 (|#2| |#1|)) (-15 -3419 (|#2| |#1|)) (-15 -4111 (|#1| |#1| |#1|)) (-15 -3983 ((-684 |#2|) |#1| |#1|)) (-15 -4121 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-563) |#1|)) (-15 -1825 (|#1| |#1| |#1|)) (-15 -1825 (|#1| |#1|)) (-15 -3216 (|#1| (-767))) (-15 -1813 (|#1| |#1| |#1|)))
+((-1677 (((-112) $ $) 19 (|has| |#1| (-1093)))) (-3216 (($ (-767)) 112 (|has| |#1| (-23)))) (-2208 (((-1262) $ (-563) (-563)) 40 (|has| $ (-6 -4409)))) (-4073 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-846)))) (-4052 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4409))) (($ $) 88 (-12 (|has| |#1| (-846)) (|has| $ (-6 -4409))))) (-1640 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-846)))) (-3001 (((-112) $ (-767)) 8)) (-1849 ((|#1| $ (-563) |#1|) 52 (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) 58 (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4408)))) (-2569 (($) 7 T CONST)) (-1574 (($ $) 90 (|has| $ (-6 -4409)))) (-4383 (($ $) 100)) (-3814 (($ $) 78 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-1459 (($ |#1| $) 77 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4408)))) (-4356 ((|#1| $ (-563) |#1|) 53 (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) 51)) (-4369 (((-563) (-1 (-112) |#1|) $) 97) (((-563) |#1| $) 96 (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) 95 (|has| |#1| (-1093)))) (-2658 (((-640 |#1|) $) 30 (|has| $ (-6 -4408)))) (-3983 (((-684 |#1|) $ $) 105 (|has| |#1| (-1045)))) (-1565 (($ (-767) |#1|) 69)) (-2514 (((-112) $ (-767)) 9)) (-2236 (((-563) $) 43 (|has| (-563) (-846)))) (-3088 (($ $ $) 87 (|has| |#1| (-846)))) (-4300 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-846)))) (-3523 (((-640 |#1|) $) 29 (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-2251 (((-563) $) 44 (|has| (-563) (-846)))) (-1776 (($ $ $) 86 (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-4098 ((|#1| $) 102 (-12 (|has| |#1| (-1045)) (|has| |#1| (-998))))) (-2481 (((-112) $ (-767)) 10)) (-3419 ((|#1| $) 103 (-12 (|has| |#1| (-1045)) (|has| |#1| (-998))))) (-3854 (((-1151) $) 22 (|has| |#1| (-1093)))) (-3399 (($ |#1| $ (-563)) 60) (($ $ $ (-563)) 59)) (-2272 (((-640 (-563)) $) 46)) (-2282 (((-112) (-563) $) 47)) (-1693 (((-1113) $) 21 (|has| |#1| (-1093)))) (-3782 ((|#1| $) 42 (|has| (-563) (-846)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2221 (($ $ |#1|) 41 (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) 26 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) 25 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) 23 (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) 48)) (-1665 (((-112) $) 11)) (-3445 (($) 12)) (-2308 ((|#1| $ (-563) |#1|) 50) ((|#1| $ (-563)) 49) (($ $ (-1224 (-563))) 63)) (-4121 ((|#1| $ $) 106 (|has| |#1| (-1045)))) (-2967 (($ $ (-563)) 62) (($ $ (-1224 (-563))) 61)) (-4111 (($ $ $) 104 (|has| |#1| (-1045)))) (-1708 (((-767) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4408))) (((-767) |#1| $) 28 (-12 (|has| |#1| (-1093)) (|has| $ (-6 -4408))))) (-4062 (($ $ $ (-563)) 91 (|has| $ (-6 -4409)))) (-1870 (($ $) 13)) (-2219 (((-536) $) 79 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 70)) (-2857 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-640 $)) 65)) (-1692 (((-858) $) 18 (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) 84 (|has| |#1| (-846)))) (-1754 (((-112) $ $) 83 (|has| |#1| (-846)))) (-1718 (((-112) $ $) 20 (|has| |#1| (-1093)))) (-1766 (((-112) $ $) 85 (|has| |#1| (-846)))) (-1743 (((-112) $ $) 82 (|has| |#1| (-846)))) (-1825 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-1813 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-563) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-722))) (($ $ |#1|) 107 (|has| |#1| (-722)))) (-3610 (((-767) $) 6 (|has| $ (-6 -4408)))))
(((-1255 |#1|) (-140) (-1208)) (T -1255))
-((-1814 (*1 *1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-25)))) (-3212 (*1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1255 *3)) (-4 *3 (-23)) (-4 *3 (-1208)))) (-1826 (*1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-21)))) (-1826 (*1 *1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-21)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-4 *1 (-1255 *3)) (-4 *3 (-1208)) (-4 *3 (-21)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-722)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-722)))) (-4092 (*1 *2 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-1045)))) (-3982 (*1 *2 *1 *1) (-12 (-4 *1 (-1255 *3)) (-4 *3 (-1208)) (-4 *3 (-1045)) (-5 *2 (-684 *3)))) (-1627 (*1 *1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-1045)))) (-3415 (*1 *2 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-998)) (-4 *2 (-1045)))) (-1607 (*1 *2 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-998)) (-4 *2 (-1045)))))
-(-13 (-19 |t#1|) (-10 -8 (IF (|has| |t#1| (-25)) (-15 -1814 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -3212 ($ (-767))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -1826 ($ $)) (-15 -1826 ($ $ $)) (-15 * ($ (-563) $))) |%noBranch|) (IF (|has| |t#1| (-722)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-1045)) (PROGN (-15 -4092 (|t#1| $ $)) (-15 -3982 ((-684 |t#1|) $ $)) (-15 -1627 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-998)) (IF (|has| |t#1| (-1045)) (PROGN (-15 -3415 (|t#1| $)) (-15 -1607 (|t#1| $))) |%noBranch|) |%noBranch|)))
-(((-34) . T) ((-102) -4032 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-610 (-858)) -4032 (|has| |#1| (-1093)) (|has| |#1| (-846)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-373 |#1|) . T) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-19 |#1|) . T) ((-846) |has| |#1| (-846)) ((-1093) -4032 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-1208) . T))
-((-1567 (((-1257 |#2|) (-1 |#2| |#1| |#2|) (-1257 |#1|) |#2|) 13)) (-2444 ((|#2| (-1 |#2| |#1| |#2|) (-1257 |#1|) |#2|) 15)) (-2240 (((-3 (-1257 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1257 |#1|)) 28) (((-1257 |#2|) (-1 |#2| |#1|) (-1257 |#1|)) 18)))
-(((-1256 |#1| |#2|) (-10 -7 (-15 -1567 ((-1257 |#2|) (-1 |#2| |#1| |#2|) (-1257 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-1257 |#1|) |#2|)) (-15 -2240 ((-1257 |#2|) (-1 |#2| |#1|) (-1257 |#1|))) (-15 -2240 ((-3 (-1257 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1257 |#1|)))) (-1208) (-1208)) (T -1256))
-((-2240 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1257 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-1257 *6)) (-5 *1 (-1256 *5 *6)))) (-2240 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1257 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-1257 *6)) (-5 *1 (-1256 *5 *6)))) (-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1257 *5)) (-4 *5 (-1208)) (-4 *2 (-1208)) (-5 *1 (-1256 *5 *2)))) (-1567 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1257 *6)) (-4 *6 (-1208)) (-4 *5 (-1208)) (-5 *2 (-1257 *5)) (-5 *1 (-1256 *6 *5)))))
-(-10 -7 (-15 -1567 ((-1257 |#2|) (-1 |#2| |#1| |#2|) (-1257 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-1257 |#1|) |#2|)) (-15 -2240 ((-1257 |#2|) (-1 |#2| |#1|) (-1257 |#1|))) (-15 -2240 ((-3 (-1257 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1257 |#1|))))
-((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3212 (($ (-767)) NIL (|has| |#1| (-23)))) (-4104 (($ (-640 |#1|)) 9)) (-4378 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4408)))) (-3523 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-2770 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4408))) (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-846))))) (-1642 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-2759 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4408)))) (-2256 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-4239 (($) NIL T CONST)) (-2907 (($ $) NIL (|has| $ (-6 -4408)))) (-4382 (($ $) NIL)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4407))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4407)))) (-4355 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4408)))) (-4293 ((|#1| $ (-563)) NIL)) (-4368 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-2659 (((-640 |#1|) $) 13 (|has| $ (-6 -4407)))) (-3982 (((-684 |#1|) $ $) NIL (|has| |#1| (-1045)))) (-1566 (($ (-767) |#1|) NIL)) (-2581 (((-112) $ (-767)) NIL)) (-2411 (((-563) $) NIL (|has| (-563) (-846)))) (-3084 (($ $ $) NIL (|has| |#1| (-846)))) (-3164 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-846)))) (-2259 (((-640 |#1|) $) NIL (|has| $ (-6 -4407)))) (-1729 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3860 (((-563) $) NIL (|has| (-563) (-846)))) (-1777 (($ $ $) NIL (|has| |#1| (-846)))) (-4345 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1607 ((|#1| $) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1045))))) (-2382 (((-112) $ (-767)) NIL)) (-3415 ((|#1| $) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1045))))) (-3573 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3396 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-4318 (((-640 (-563)) $) NIL)) (-3192 (((-112) (-563) $) NIL)) (-1694 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3781 ((|#1| $) NIL (|has| (-563) (-846)))) (-4203 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2358 (($ $ |#1|) NIL (|has| $ (-6 -4408)))) (-3138 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2026 (((-112) $ $) NIL)) (-2105 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-2836 (((-640 |#1|) $) NIL)) (-3756 (((-112) $) NIL)) (-3135 (($) NIL)) (-2309 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-4092 ((|#1| $ $) NIL (|has| |#1| (-1045)))) (-2963 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-1627 (($ $ $) NIL (|has| |#1| (-1045)))) (-1709 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#1| (-1093))))) (-3076 (($ $ $ (-563)) NIL (|has| $ (-6 -4408)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) 17 (|has| |#1| (-611 (-536))))) (-1707 (($ (-640 |#1|)) 8)) (-2853 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1693 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-4383 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4407)))) (-1778 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1756 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1768 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1744 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1826 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1814 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-563) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-722))) (($ $ |#1|) NIL (|has| |#1| (-722)))) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-1257 |#1|) (-13 (-1255 |#1|) (-10 -8 (-15 -4104 ($ (-640 |#1|))))) (-1208)) (T -1257))
-((-4104 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-1257 *3)))))
-(-13 (-1255 |#1|) (-10 -8 (-15 -4104 ($ (-640 |#1|)))))
-((-1677 (((-112) $ $) NIL)) (-3807 (((-1151) $ (-1151)) 92) (((-1151) $ (-1151) (-1151)) 90) (((-1151) $ (-1151) (-640 (-1151))) 89)) (-1850 (($) 59)) (-4316 (((-1262) $ (-468) (-917)) 45)) (-3528 (((-1262) $ (-917) (-1151)) 75) (((-1262) $ (-917) (-870)) 76)) (-1944 (((-1262) $ (-917) (-379) (-379)) 48)) (-3694 (((-1262) $ (-1151)) 71)) (-1708 (((-1262) $ (-917) (-1151)) 80)) (-4346 (((-1262) $ (-917) (-379) (-379)) 49)) (-3772 (((-1262) $ (-917) (-917)) 46)) (-3785 (((-1262) $) 72)) (-4081 (((-1262) $ (-917) (-1151)) 79)) (-1338 (((-1262) $ (-468) (-917)) 31)) (-2630 (((-1262) $ (-917) (-1151)) 78)) (-3699 (((-640 (-263)) $) 23) (($ $ (-640 (-263))) 24)) (-2158 (((-1262) $ (-767) (-767)) 43)) (-2818 (($ $) 60) (($ (-468) (-640 (-263))) 61)) (-3573 (((-1151) $) NIL)) (-2387 (((-563) $) 38)) (-1694 (((-1113) $) NIL)) (-1475 (((-1257 (-3 (-468) "undefined")) $) 37)) (-3410 (((-1257 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -2630 (-563)) (|:| -2865 (-563)) (|:| |spline| (-563)) (|:| -2603 (-563)) (|:| |axesColor| (-870)) (|:| -3528 (-563)) (|:| |unitsColor| (-870)) (|:| |showing| (-563)))) $) 36)) (-2218 (((-1262) $ (-917) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-870) (-563) (-870) (-563)) 70)) (-3345 (((-640 (-939 (-225))) $) NIL)) (-1930 (((-468) $ (-917)) 33)) (-1502 (((-1262) $ (-767) (-767) (-917) (-917)) 40)) (-3766 (((-1262) $ (-1151)) 81)) (-2865 (((-1262) $ (-917) (-1151)) 77)) (-1693 (((-858) $) 87)) (-1442 (((-1262) $) 82)) (-2603 (((-1262) $ (-917) (-1151)) 73) (((-1262) $ (-917) (-870)) 74)) (-1718 (((-112) $ $) NIL)))
-(((-1258) (-13 (-1093) (-10 -8 (-15 -3345 ((-640 (-939 (-225))) $)) (-15 -1850 ($)) (-15 -2818 ($ $)) (-15 -3699 ((-640 (-263)) $)) (-15 -3699 ($ $ (-640 (-263)))) (-15 -2818 ($ (-468) (-640 (-263)))) (-15 -2218 ((-1262) $ (-917) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-870) (-563) (-870) (-563))) (-15 -3410 ((-1257 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -2630 (-563)) (|:| -2865 (-563)) (|:| |spline| (-563)) (|:| -2603 (-563)) (|:| |axesColor| (-870)) (|:| -3528 (-563)) (|:| |unitsColor| (-870)) (|:| |showing| (-563)))) $)) (-15 -1475 ((-1257 (-3 (-468) "undefined")) $)) (-15 -3694 ((-1262) $ (-1151))) (-15 -1338 ((-1262) $ (-468) (-917))) (-15 -1930 ((-468) $ (-917))) (-15 -2603 ((-1262) $ (-917) (-1151))) (-15 -2603 ((-1262) $ (-917) (-870))) (-15 -3528 ((-1262) $ (-917) (-1151))) (-15 -3528 ((-1262) $ (-917) (-870))) (-15 -2630 ((-1262) $ (-917) (-1151))) (-15 -4081 ((-1262) $ (-917) (-1151))) (-15 -2865 ((-1262) $ (-917) (-1151))) (-15 -3766 ((-1262) $ (-1151))) (-15 -1442 ((-1262) $)) (-15 -1502 ((-1262) $ (-767) (-767) (-917) (-917))) (-15 -4346 ((-1262) $ (-917) (-379) (-379))) (-15 -1944 ((-1262) $ (-917) (-379) (-379))) (-15 -1708 ((-1262) $ (-917) (-1151))) (-15 -2158 ((-1262) $ (-767) (-767))) (-15 -4316 ((-1262) $ (-468) (-917))) (-15 -3772 ((-1262) $ (-917) (-917))) (-15 -3807 ((-1151) $ (-1151))) (-15 -3807 ((-1151) $ (-1151) (-1151))) (-15 -3807 ((-1151) $ (-1151) (-640 (-1151)))) (-15 -3785 ((-1262) $)) (-15 -2387 ((-563) $)) (-15 -1693 ((-858) $))))) (T -1258))
-((-1693 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-1258)))) (-3345 (*1 *2 *1) (-12 (-5 *2 (-640 (-939 (-225)))) (-5 *1 (-1258)))) (-1850 (*1 *1) (-5 *1 (-1258))) (-2818 (*1 *1 *1) (-5 *1 (-1258))) (-3699 (*1 *2 *1) (-12 (-5 *2 (-640 (-263))) (-5 *1 (-1258)))) (-3699 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-263))) (-5 *1 (-1258)))) (-2818 (*1 *1 *2 *3) (-12 (-5 *2 (-468)) (-5 *3 (-640 (-263))) (-5 *1 (-1258)))) (-2218 (*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5) (-12 (-5 *3 (-917)) (-5 *4 (-225)) (-5 *5 (-563)) (-5 *6 (-870)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-3410 (*1 *2 *1) (-12 (-5 *2 (-1257 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -2630 (-563)) (|:| -2865 (-563)) (|:| |spline| (-563)) (|:| -2603 (-563)) (|:| |axesColor| (-870)) (|:| -3528 (-563)) (|:| |unitsColor| (-870)) (|:| |showing| (-563))))) (-5 *1 (-1258)))) (-1475 (*1 *2 *1) (-12 (-5 *2 (-1257 (-3 (-468) "undefined"))) (-5 *1 (-1258)))) (-3694 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-1338 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-468)) (-5 *4 (-917)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-1930 (*1 *2 *1 *3) (-12 (-5 *3 (-917)) (-5 *2 (-468)) (-5 *1 (-1258)))) (-2603 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-2603 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-870)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-3528 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-3528 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-870)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-2630 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-4081 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-2865 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-3766 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-1442 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1258)))) (-1502 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-767)) (-5 *4 (-917)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-4346 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-917)) (-5 *4 (-379)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-1944 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-917)) (-5 *4 (-379)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-1708 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-2158 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-4316 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-468)) (-5 *4 (-917)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-3772 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-3807 (*1 *2 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1258)))) (-3807 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1258)))) (-3807 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-1151)) (-5 *1 (-1258)))) (-3785 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1258)))) (-2387 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1258)))))
-(-13 (-1093) (-10 -8 (-15 -3345 ((-640 (-939 (-225))) $)) (-15 -1850 ($)) (-15 -2818 ($ $)) (-15 -3699 ((-640 (-263)) $)) (-15 -3699 ($ $ (-640 (-263)))) (-15 -2818 ($ (-468) (-640 (-263)))) (-15 -2218 ((-1262) $ (-917) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-870) (-563) (-870) (-563))) (-15 -3410 ((-1257 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -2630 (-563)) (|:| -2865 (-563)) (|:| |spline| (-563)) (|:| -2603 (-563)) (|:| |axesColor| (-870)) (|:| -3528 (-563)) (|:| |unitsColor| (-870)) (|:| |showing| (-563)))) $)) (-15 -1475 ((-1257 (-3 (-468) "undefined")) $)) (-15 -3694 ((-1262) $ (-1151))) (-15 -1338 ((-1262) $ (-468) (-917))) (-15 -1930 ((-468) $ (-917))) (-15 -2603 ((-1262) $ (-917) (-1151))) (-15 -2603 ((-1262) $ (-917) (-870))) (-15 -3528 ((-1262) $ (-917) (-1151))) (-15 -3528 ((-1262) $ (-917) (-870))) (-15 -2630 ((-1262) $ (-917) (-1151))) (-15 -4081 ((-1262) $ (-917) (-1151))) (-15 -2865 ((-1262) $ (-917) (-1151))) (-15 -3766 ((-1262) $ (-1151))) (-15 -1442 ((-1262) $)) (-15 -1502 ((-1262) $ (-767) (-767) (-917) (-917))) (-15 -4346 ((-1262) $ (-917) (-379) (-379))) (-15 -1944 ((-1262) $ (-917) (-379) (-379))) (-15 -1708 ((-1262) $ (-917) (-1151))) (-15 -2158 ((-1262) $ (-767) (-767))) (-15 -4316 ((-1262) $ (-468) (-917))) (-15 -3772 ((-1262) $ (-917) (-917))) (-15 -3807 ((-1151) $ (-1151))) (-15 -3807 ((-1151) $ (-1151) (-1151))) (-15 -3807 ((-1151) $ (-1151) (-640 (-1151)))) (-15 -3785 ((-1262) $)) (-15 -2387 ((-563) $)) (-15 -1693 ((-858) $))))
-((-1677 (((-112) $ $) NIL)) (-3236 (((-1262) $ (-379)) 142) (((-1262) $ (-379) (-379) (-379)) 143)) (-3807 (((-1151) $ (-1151)) 150) (((-1151) $ (-1151) (-1151)) 148) (((-1151) $ (-1151) (-640 (-1151))) 147)) (-4373 (($) 50)) (-2135 (((-1262) $ (-379) (-379) (-379) (-379) (-379)) 118) (((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) $) 116) (((-1262) $ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) 117) (((-1262) $ (-563) (-563) (-379) (-379) (-379)) 119) (((-1262) $ (-379) (-379)) 120) (((-1262) $ (-379) (-379) (-379)) 127)) (-2689 (((-379)) 99) (((-379) (-379)) 100)) (-2801 (((-379)) 94) (((-379) (-379)) 96)) (-2730 (((-379)) 97) (((-379) (-379)) 98)) (-3983 (((-379)) 103) (((-379) (-379)) 104)) (-3665 (((-379)) 101) (((-379) (-379)) 102)) (-1944 (((-1262) $ (-379) (-379)) 144)) (-3694 (((-1262) $ (-1151)) 128)) (-2756 (((-1126 (-225)) $) 51) (($ $ (-1126 (-225))) 52)) (-3907 (((-1262) $ (-1151)) 156)) (-3047 (((-1262) $ (-1151)) 157)) (-2419 (((-1262) $ (-379) (-379)) 126) (((-1262) $ (-563) (-563)) 141)) (-3772 (((-1262) $ (-917) (-917)) 134)) (-3785 (((-1262) $) 114)) (-2089 (((-1262) $ (-1151)) 155)) (-2713 (((-1262) $ (-1151)) 111)) (-3699 (((-640 (-263)) $) 53) (($ $ (-640 (-263))) 54)) (-2158 (((-1262) $ (-767) (-767)) 133)) (-3823 (((-1262) $ (-767) (-939 (-225))) 162)) (-3358 (($ $) 56) (($ (-1126 (-225)) (-1151)) 57) (($ (-1126 (-225)) (-640 (-263))) 58)) (-3851 (((-1262) $ (-379) (-379) (-379)) 108)) (-3573 (((-1151) $) NIL)) (-2387 (((-563) $) 105)) (-3340 (((-1262) $ (-379)) 145)) (-1302 (((-1262) $ (-379)) 160)) (-1694 (((-1113) $) NIL)) (-1951 (((-1262) $ (-379)) 159)) (-3383 (((-1262) $ (-1151)) 113)) (-1502 (((-1262) $ (-767) (-767) (-917) (-917)) 132)) (-1730 (((-1262) $ (-1151)) 110)) (-3766 (((-1262) $ (-1151)) 112)) (-3707 (((-1262) $ (-157) (-157)) 131)) (-1693 (((-858) $) 139)) (-1442 (((-1262) $) 115)) (-3824 (((-1262) $ (-1151)) 158)) (-2603 (((-1262) $ (-1151)) 109)) (-1718 (((-112) $ $) NIL)))
-(((-1259) (-13 (-1093) (-10 -8 (-15 -2801 ((-379))) (-15 -2801 ((-379) (-379))) (-15 -2730 ((-379))) (-15 -2730 ((-379) (-379))) (-15 -2689 ((-379))) (-15 -2689 ((-379) (-379))) (-15 -3665 ((-379))) (-15 -3665 ((-379) (-379))) (-15 -3983 ((-379))) (-15 -3983 ((-379) (-379))) (-15 -4373 ($)) (-15 -3358 ($ $)) (-15 -3358 ($ (-1126 (-225)) (-1151))) (-15 -3358 ($ (-1126 (-225)) (-640 (-263)))) (-15 -2756 ((-1126 (-225)) $)) (-15 -2756 ($ $ (-1126 (-225)))) (-15 -3823 ((-1262) $ (-767) (-939 (-225)))) (-15 -3699 ((-640 (-263)) $)) (-15 -3699 ($ $ (-640 (-263)))) (-15 -2158 ((-1262) $ (-767) (-767))) (-15 -3772 ((-1262) $ (-917) (-917))) (-15 -3694 ((-1262) $ (-1151))) (-15 -1502 ((-1262) $ (-767) (-767) (-917) (-917))) (-15 -2135 ((-1262) $ (-379) (-379) (-379) (-379) (-379))) (-15 -2135 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) $)) (-15 -2135 ((-1262) $ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -2135 ((-1262) $ (-563) (-563) (-379) (-379) (-379))) (-15 -2135 ((-1262) $ (-379) (-379))) (-15 -2135 ((-1262) $ (-379) (-379) (-379))) (-15 -3766 ((-1262) $ (-1151))) (-15 -2603 ((-1262) $ (-1151))) (-15 -1730 ((-1262) $ (-1151))) (-15 -2713 ((-1262) $ (-1151))) (-15 -3383 ((-1262) $ (-1151))) (-15 -2419 ((-1262) $ (-379) (-379))) (-15 -2419 ((-1262) $ (-563) (-563))) (-15 -3236 ((-1262) $ (-379))) (-15 -3236 ((-1262) $ (-379) (-379) (-379))) (-15 -1944 ((-1262) $ (-379) (-379))) (-15 -2089 ((-1262) $ (-1151))) (-15 -1951 ((-1262) $ (-379))) (-15 -1302 ((-1262) $ (-379))) (-15 -3907 ((-1262) $ (-1151))) (-15 -3047 ((-1262) $ (-1151))) (-15 -3824 ((-1262) $ (-1151))) (-15 -3851 ((-1262) $ (-379) (-379) (-379))) (-15 -3340 ((-1262) $ (-379))) (-15 -3785 ((-1262) $)) (-15 -3707 ((-1262) $ (-157) (-157))) (-15 -3807 ((-1151) $ (-1151))) (-15 -3807 ((-1151) $ (-1151) (-1151))) (-15 -3807 ((-1151) $ (-1151) (-640 (-1151)))) (-15 -1442 ((-1262) $)) (-15 -2387 ((-563) $))))) (T -1259))
-((-2801 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-2801 (*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-2730 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-2730 (*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-2689 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-2689 (*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-3665 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-3665 (*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-3983 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-3983 (*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-4373 (*1 *1) (-5 *1 (-1259))) (-3358 (*1 *1 *1) (-5 *1 (-1259))) (-3358 (*1 *1 *2 *3) (-12 (-5 *2 (-1126 (-225))) (-5 *3 (-1151)) (-5 *1 (-1259)))) (-3358 (*1 *1 *2 *3) (-12 (-5 *2 (-1126 (-225))) (-5 *3 (-640 (-263))) (-5 *1 (-1259)))) (-2756 (*1 *2 *1) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-1259)))) (-2756 (*1 *1 *1 *2) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-1259)))) (-3823 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-767)) (-5 *4 (-939 (-225))) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3699 (*1 *2 *1) (-12 (-5 *2 (-640 (-263))) (-5 *1 (-1259)))) (-3699 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-263))) (-5 *1 (-1259)))) (-2158 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3772 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3694 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1502 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-767)) (-5 *4 (-917)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-2135 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-2135 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *1 (-1259)))) (-2135 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-2135 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-563)) (-5 *4 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-2135 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-2135 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3766 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-2603 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1730 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-2713 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3383 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-2419 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-2419 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3236 (*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3236 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1944 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-2089 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1951 (*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1302 (*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3907 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3047 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3824 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3851 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3340 (*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3785 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3707 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-157)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3807 (*1 *2 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1259)))) (-3807 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1259)))) (-3807 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-1151)) (-5 *1 (-1259)))) (-1442 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1259)))) (-2387 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1259)))))
-(-13 (-1093) (-10 -8 (-15 -2801 ((-379))) (-15 -2801 ((-379) (-379))) (-15 -2730 ((-379))) (-15 -2730 ((-379) (-379))) (-15 -2689 ((-379))) (-15 -2689 ((-379) (-379))) (-15 -3665 ((-379))) (-15 -3665 ((-379) (-379))) (-15 -3983 ((-379))) (-15 -3983 ((-379) (-379))) (-15 -4373 ($)) (-15 -3358 ($ $)) (-15 -3358 ($ (-1126 (-225)) (-1151))) (-15 -3358 ($ (-1126 (-225)) (-640 (-263)))) (-15 -2756 ((-1126 (-225)) $)) (-15 -2756 ($ $ (-1126 (-225)))) (-15 -3823 ((-1262) $ (-767) (-939 (-225)))) (-15 -3699 ((-640 (-263)) $)) (-15 -3699 ($ $ (-640 (-263)))) (-15 -2158 ((-1262) $ (-767) (-767))) (-15 -3772 ((-1262) $ (-917) (-917))) (-15 -3694 ((-1262) $ (-1151))) (-15 -1502 ((-1262) $ (-767) (-767) (-917) (-917))) (-15 -2135 ((-1262) $ (-379) (-379) (-379) (-379) (-379))) (-15 -2135 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) $)) (-15 -2135 ((-1262) $ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -2135 ((-1262) $ (-563) (-563) (-379) (-379) (-379))) (-15 -2135 ((-1262) $ (-379) (-379))) (-15 -2135 ((-1262) $ (-379) (-379) (-379))) (-15 -3766 ((-1262) $ (-1151))) (-15 -2603 ((-1262) $ (-1151))) (-15 -1730 ((-1262) $ (-1151))) (-15 -2713 ((-1262) $ (-1151))) (-15 -3383 ((-1262) $ (-1151))) (-15 -2419 ((-1262) $ (-379) (-379))) (-15 -2419 ((-1262) $ (-563) (-563))) (-15 -3236 ((-1262) $ (-379))) (-15 -3236 ((-1262) $ (-379) (-379) (-379))) (-15 -1944 ((-1262) $ (-379) (-379))) (-15 -2089 ((-1262) $ (-1151))) (-15 -1951 ((-1262) $ (-379))) (-15 -1302 ((-1262) $ (-379))) (-15 -3907 ((-1262) $ (-1151))) (-15 -3047 ((-1262) $ (-1151))) (-15 -3824 ((-1262) $ (-1151))) (-15 -3851 ((-1262) $ (-379) (-379) (-379))) (-15 -3340 ((-1262) $ (-379))) (-15 -3785 ((-1262) $)) (-15 -3707 ((-1262) $ (-157) (-157))) (-15 -3807 ((-1151) $ (-1151))) (-15 -3807 ((-1151) $ (-1151) (-1151))) (-15 -3807 ((-1151) $ (-1151) (-640 (-1151)))) (-15 -1442 ((-1262) $)) (-15 -2387 ((-563) $))))
-((-1485 (((-640 (-1151)) (-640 (-1151))) 94) (((-640 (-1151))) 90)) (-4049 (((-640 (-1151))) 88)) (-1451 (((-640 (-917)) (-640 (-917))) 63) (((-640 (-917))) 60)) (-3780 (((-640 (-767)) (-640 (-767))) 57) (((-640 (-767))) 53)) (-3354 (((-1262)) 65)) (-2675 (((-917) (-917)) 81) (((-917)) 80)) (-1828 (((-917) (-917)) 79) (((-917)) 78)) (-4237 (((-870) (-870)) 75) (((-870)) 74)) (-3571 (((-225)) 85) (((-225) (-379)) 87)) (-1404 (((-917)) 82) (((-917) (-917)) 83)) (-3921 (((-917) (-917)) 77) (((-917)) 76)) (-4029 (((-870) (-870)) 69) (((-870)) 67)) (-3584 (((-870) (-870)) 71) (((-870)) 70)) (-1647 (((-870) (-870)) 73) (((-870)) 72)))
-(((-1260) (-10 -7 (-15 -4029 ((-870))) (-15 -4029 ((-870) (-870))) (-15 -3584 ((-870))) (-15 -3584 ((-870) (-870))) (-15 -1647 ((-870))) (-15 -1647 ((-870) (-870))) (-15 -4237 ((-870))) (-15 -4237 ((-870) (-870))) (-15 -3921 ((-917))) (-15 -3921 ((-917) (-917))) (-15 -3780 ((-640 (-767)))) (-15 -3780 ((-640 (-767)) (-640 (-767)))) (-15 -1451 ((-640 (-917)))) (-15 -1451 ((-640 (-917)) (-640 (-917)))) (-15 -3354 ((-1262))) (-15 -1485 ((-640 (-1151)))) (-15 -1485 ((-640 (-1151)) (-640 (-1151)))) (-15 -4049 ((-640 (-1151)))) (-15 -1828 ((-917))) (-15 -2675 ((-917))) (-15 -1828 ((-917) (-917))) (-15 -2675 ((-917) (-917))) (-15 -1404 ((-917) (-917))) (-15 -1404 ((-917))) (-15 -3571 ((-225) (-379))) (-15 -3571 ((-225))))) (T -1260))
-((-3571 (*1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-1260)))) (-3571 (*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-225)) (-5 *1 (-1260)))) (-1404 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-1404 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-2675 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-1828 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-2675 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-1828 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-4049 (*1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1260)))) (-1485 (*1 *2 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1260)))) (-1485 (*1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1260)))) (-3354 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1260)))) (-1451 (*1 *2 *2) (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1260)))) (-1451 (*1 *2) (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1260)))) (-3780 (*1 *2 *2) (-12 (-5 *2 (-640 (-767))) (-5 *1 (-1260)))) (-3780 (*1 *2) (-12 (-5 *2 (-640 (-767))) (-5 *1 (-1260)))) (-3921 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-3921 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-4237 (*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))) (-4237 (*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))) (-1647 (*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))) (-1647 (*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))) (-3584 (*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))) (-3584 (*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))) (-4029 (*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))) (-4029 (*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))))
-(-10 -7 (-15 -4029 ((-870))) (-15 -4029 ((-870) (-870))) (-15 -3584 ((-870))) (-15 -3584 ((-870) (-870))) (-15 -1647 ((-870))) (-15 -1647 ((-870) (-870))) (-15 -4237 ((-870))) (-15 -4237 ((-870) (-870))) (-15 -3921 ((-917))) (-15 -3921 ((-917) (-917))) (-15 -3780 ((-640 (-767)))) (-15 -3780 ((-640 (-767)) (-640 (-767)))) (-15 -1451 ((-640 (-917)))) (-15 -1451 ((-640 (-917)) (-640 (-917)))) (-15 -3354 ((-1262))) (-15 -1485 ((-640 (-1151)))) (-15 -1485 ((-640 (-1151)) (-640 (-1151)))) (-15 -4049 ((-640 (-1151)))) (-15 -1828 ((-917))) (-15 -2675 ((-917))) (-15 -1828 ((-917) (-917))) (-15 -2675 ((-917) (-917))) (-15 -1404 ((-917) (-917))) (-15 -1404 ((-917))) (-15 -3571 ((-225) (-379))) (-15 -3571 ((-225))))
-((-1352 (((-468) (-640 (-640 (-939 (-225)))) (-640 (-263))) 21) (((-468) (-640 (-640 (-939 (-225))))) 20) (((-468) (-640 (-640 (-939 (-225)))) (-870) (-870) (-917) (-640 (-263))) 19)) (-2519 (((-1258) (-640 (-640 (-939 (-225)))) (-640 (-263))) 27) (((-1258) (-640 (-640 (-939 (-225)))) (-870) (-870) (-917) (-640 (-263))) 26)) (-1693 (((-1258) (-468)) 38)))
-(((-1261) (-10 -7 (-15 -1352 ((-468) (-640 (-640 (-939 (-225)))) (-870) (-870) (-917) (-640 (-263)))) (-15 -1352 ((-468) (-640 (-640 (-939 (-225)))))) (-15 -1352 ((-468) (-640 (-640 (-939 (-225)))) (-640 (-263)))) (-15 -2519 ((-1258) (-640 (-640 (-939 (-225)))) (-870) (-870) (-917) (-640 (-263)))) (-15 -2519 ((-1258) (-640 (-640 (-939 (-225)))) (-640 (-263)))) (-15 -1693 ((-1258) (-468))))) (T -1261))
-((-1693 (*1 *2 *3) (-12 (-5 *3 (-468)) (-5 *2 (-1258)) (-5 *1 (-1261)))) (-2519 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-640 (-263))) (-5 *2 (-1258)) (-5 *1 (-1261)))) (-2519 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-870)) (-5 *5 (-917)) (-5 *6 (-640 (-263))) (-5 *2 (-1258)) (-5 *1 (-1261)))) (-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-640 (-263))) (-5 *2 (-468)) (-5 *1 (-1261)))) (-1352 (*1 *2 *3) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *2 (-468)) (-5 *1 (-1261)))) (-1352 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-870)) (-5 *5 (-917)) (-5 *6 (-640 (-263))) (-5 *2 (-468)) (-5 *1 (-1261)))))
-(-10 -7 (-15 -1352 ((-468) (-640 (-640 (-939 (-225)))) (-870) (-870) (-917) (-640 (-263)))) (-15 -1352 ((-468) (-640 (-640 (-939 (-225)))))) (-15 -1352 ((-468) (-640 (-640 (-939 (-225)))) (-640 (-263)))) (-15 -2519 ((-1258) (-640 (-640 (-939 (-225)))) (-870) (-870) (-917) (-640 (-263)))) (-15 -2519 ((-1258) (-640 (-640 (-939 (-225)))) (-640 (-263)))) (-15 -1693 ((-1258) (-468))))
-((-3784 (($) 7)) (-1693 (((-858) $) 10)))
-(((-1262) (-13 (-610 (-858)) (-10 -8 (-15 -3784 ($))))) (T -1262))
-((-3784 (*1 *1) (-5 *1 (-1262))))
-(-13 (-610 (-858)) (-10 -8 (-15 -3784 ($))))
-((-1837 (($ $ |#2|) 10)))
-(((-1263 |#1| |#2|) (-10 -8 (-15 -1837 (|#1| |#1| |#2|))) (-1264 |#2|) (-363)) (T -1263))
-NIL
-(-10 -8 (-15 -1837 (|#1| |#1| |#2|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-3533 (((-134)) 28)) (-1693 (((-858) $) 11)) (-2241 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1837 (($ $ |#1|) 29)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
+((-1813 (*1 *1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-25)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1255 *3)) (-4 *3 (-23)) (-4 *3 (-1208)))) (-1825 (*1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-21)))) (-1825 (*1 *1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-21)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-4 *1 (-1255 *3)) (-4 *3 (-1208)) (-4 *3 (-21)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-722)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-722)))) (-4121 (*1 *2 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-1045)))) (-3983 (*1 *2 *1 *1) (-12 (-4 *1 (-1255 *3)) (-4 *3 (-1208)) (-4 *3 (-1045)) (-5 *2 (-684 *3)))) (-4111 (*1 *1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-1045)))) (-3419 (*1 *2 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-998)) (-4 *2 (-1045)))) (-4098 (*1 *2 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-998)) (-4 *2 (-1045)))))
+(-13 (-19 |t#1|) (-10 -8 (IF (|has| |t#1| (-25)) (-15 -1813 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -3216 ($ (-767))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -1825 ($ $)) (-15 -1825 ($ $ $)) (-15 * ($ (-563) $))) |%noBranch|) (IF (|has| |t#1| (-722)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-1045)) (PROGN (-15 -4121 (|t#1| $ $)) (-15 -3983 ((-684 |t#1|) $ $)) (-15 -4111 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-998)) (IF (|has| |t#1| (-1045)) (PROGN (-15 -3419 (|t#1| $)) (-15 -4098 (|t#1| $))) |%noBranch|) |%noBranch|)))
+(((-34) . T) ((-102) -4034 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-610 (-858)) -4034 (|has| |#1| (-1093)) (|has| |#1| (-846)) (|has| |#1| (-610 (-858)))) ((-151 |#1|) . T) ((-611 (-536)) |has| |#1| (-611 (-536))) ((-286 #0=(-563) |#1|) . T) ((-288 #0# |#1|) . T) ((-309 |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-373 |#1|) . T) ((-489 |#1|) . T) ((-601 #0# |#1|) . T) ((-514 |#1| |#1|) -12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))) ((-646 |#1|) . T) ((-19 |#1|) . T) ((-846) |has| |#1| (-846)) ((-1093) -4034 (|has| |#1| (-1093)) (|has| |#1| (-846))) ((-1208) . T))
+((-4132 (((-1257 |#2|) (-1 |#2| |#1| |#2|) (-1257 |#1|) |#2|) 13)) (-2444 ((|#2| (-1 |#2| |#1| |#2|) (-1257 |#1|) |#2|) 15)) (-2238 (((-3 (-1257 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1257 |#1|)) 28) (((-1257 |#2|) (-1 |#2| |#1|) (-1257 |#1|)) 18)))
+(((-1256 |#1| |#2|) (-10 -7 (-15 -4132 ((-1257 |#2|) (-1 |#2| |#1| |#2|) (-1257 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-1257 |#1|) |#2|)) (-15 -2238 ((-1257 |#2|) (-1 |#2| |#1|) (-1257 |#1|))) (-15 -2238 ((-3 (-1257 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1257 |#1|)))) (-1208) (-1208)) (T -1256))
+((-2238 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1257 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-1257 *6)) (-5 *1 (-1256 *5 *6)))) (-2238 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1257 *5)) (-4 *5 (-1208)) (-4 *6 (-1208)) (-5 *2 (-1257 *6)) (-5 *1 (-1256 *5 *6)))) (-2444 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1257 *5)) (-4 *5 (-1208)) (-4 *2 (-1208)) (-5 *1 (-1256 *5 *2)))) (-4132 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1257 *6)) (-4 *6 (-1208)) (-4 *5 (-1208)) (-5 *2 (-1257 *5)) (-5 *1 (-1256 *6 *5)))))
+(-10 -7 (-15 -4132 ((-1257 |#2|) (-1 |#2| |#1| |#2|) (-1257 |#1|) |#2|)) (-15 -2444 (|#2| (-1 |#2| |#1| |#2|) (-1257 |#1|) |#2|)) (-15 -2238 ((-1257 |#2|) (-1 |#2| |#1|) (-1257 |#1|))) (-15 -2238 ((-3 (-1257 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1257 |#1|))))
+((-1677 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-3216 (($ (-767)) NIL (|has| |#1| (-23)))) (-4105 (($ (-640 |#1|)) 9)) (-2208 (((-1262) $ (-563) (-563)) NIL (|has| $ (-6 -4409)))) (-4073 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-846)))) (-4052 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4409))) (($ $) NIL (-12 (|has| $ (-6 -4409)) (|has| |#1| (-846))))) (-1640 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-846)))) (-3001 (((-112) $ (-767)) NIL)) (-1849 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409))) ((|#1| $ (-1224 (-563)) |#1|) NIL (|has| $ (-6 -4409)))) (-2255 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2569 (($) NIL T CONST)) (-1574 (($ $) NIL (|has| $ (-6 -4409)))) (-4383 (($ $) NIL)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-1459 (($ |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-2444 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4408))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4408)))) (-4356 ((|#1| $ (-563) |#1|) NIL (|has| $ (-6 -4409)))) (-4293 ((|#1| $ (-563)) NIL)) (-4369 (((-563) (-1 (-112) |#1|) $) NIL) (((-563) |#1| $) NIL (|has| |#1| (-1093))) (((-563) |#1| $ (-563)) NIL (|has| |#1| (-1093)))) (-2658 (((-640 |#1|) $) 13 (|has| $ (-6 -4408)))) (-3983 (((-684 |#1|) $ $) NIL (|has| |#1| (-1045)))) (-1565 (($ (-767) |#1|) NIL)) (-2514 (((-112) $ (-767)) NIL)) (-2236 (((-563) $) NIL (|has| (-563) (-846)))) (-3088 (($ $ $) NIL (|has| |#1| (-846)))) (-4300 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-846)))) (-3523 (((-640 |#1|) $) NIL (|has| $ (-6 -4408)))) (-2667 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2251 (((-563) $) NIL (|has| (-563) (-846)))) (-1776 (($ $ $) NIL (|has| |#1| (-846)))) (-4347 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4098 ((|#1| $) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1045))))) (-2481 (((-112) $ (-767)) NIL)) (-3419 ((|#1| $) NIL (-12 (|has| |#1| (-998)) (|has| |#1| (-1045))))) (-3854 (((-1151) $) NIL (|has| |#1| (-1093)))) (-3399 (($ |#1| $ (-563)) NIL) (($ $ $ (-563)) NIL)) (-2272 (((-640 (-563)) $) NIL)) (-2282 (((-112) (-563) $) NIL)) (-1693 (((-1113) $) NIL (|has| |#1| (-1093)))) (-3782 ((|#1| $) NIL (|has| (-563) (-846)))) (-1971 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2221 (($ $ |#1|) NIL (|has| $ (-6 -4409)))) (-1458 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 (-294 |#1|))) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-294 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093)))) (($ $ (-640 |#1|) (-640 |#1|)) NIL (-12 (|has| |#1| (-309 |#1|)) (|has| |#1| (-1093))))) (-2941 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-2295 (((-640 |#1|) $) NIL)) (-1665 (((-112) $) NIL)) (-3445 (($) NIL)) (-2308 ((|#1| $ (-563) |#1|) NIL) ((|#1| $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-4121 ((|#1| $ $) NIL (|has| |#1| (-1045)))) (-2967 (($ $ (-563)) NIL) (($ $ (-1224 (-563))) NIL)) (-4111 (($ $ $) NIL (|has| |#1| (-1045)))) (-1708 (((-767) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408))) (((-767) |#1| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#1| (-1093))))) (-4062 (($ $ $ (-563)) NIL (|has| $ (-6 -4409)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) 17 (|has| |#1| (-611 (-536))))) (-1706 (($ (-640 |#1|)) 8)) (-2857 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-640 $)) NIL)) (-1692 (((-858) $) NIL (|has| |#1| (-610 (-858))))) (-1471 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4408)))) (-1779 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1754 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1718 (((-112) $ $) NIL (|has| |#1| (-1093)))) (-1766 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1743 (((-112) $ $) NIL (|has| |#1| (-846)))) (-1825 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1813 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-563) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-722))) (($ $ |#1|) NIL (|has| |#1| (-722)))) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-1257 |#1|) (-13 (-1255 |#1|) (-10 -8 (-15 -4105 ($ (-640 |#1|))))) (-1208)) (T -1257))
+((-4105 (*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-1257 *3)))))
+(-13 (-1255 |#1|) (-10 -8 (-15 -4105 ($ (-640 |#1|)))))
+((-1677 (((-112) $ $) NIL)) (-3808 (((-1151) $ (-1151)) 92) (((-1151) $ (-1151) (-1151)) 90) (((-1151) $ (-1151) (-640 (-1151))) 89)) (-4272 (($) 59)) (-4316 (((-1262) $ (-468) (-917)) 45)) (-3532 (((-1262) $ (-917) (-1151)) 75) (((-1262) $ (-917) (-870)) 76)) (-1943 (((-1262) $ (-917) (-379) (-379)) 48)) (-3695 (((-1262) $ (-1151)) 71)) (-1707 (((-1262) $ (-917) (-1151)) 80)) (-4165 (((-1262) $ (-917) (-379) (-379)) 49)) (-1381 (((-1262) $ (-917) (-917)) 46)) (-3786 (((-1262) $) 72)) (-4186 (((-1262) $ (-917) (-1151)) 79)) (-4217 (((-1262) $ (-468) (-917)) 31)) (-4196 (((-1262) $ (-917) (-1151)) 78)) (-3700 (((-640 (-263)) $) 23) (($ $ (-640 (-263))) 24)) (-1391 (((-1262) $ (-767) (-767)) 43)) (-4261 (($ $) 60) (($ (-468) (-640 (-263))) 61)) (-3854 (((-1151) $) NIL)) (-2387 (((-563) $) 38)) (-1693 (((-1113) $) NIL)) (-4227 (((-1257 (-3 (-468) "undefined")) $) 37)) (-4236 (((-1257 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -4196 (-563)) (|:| -4174 (-563)) (|:| |spline| (-563)) (|:| -1342 (-563)) (|:| |axesColor| (-870)) (|:| -3532 (-563)) (|:| |unitsColor| (-870)) (|:| |showing| (-563)))) $) 36)) (-4248 (((-1262) $ (-917) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-870) (-563) (-870) (-563)) 70)) (-4283 (((-640 (-939 (-225))) $) NIL)) (-4207 (((-468) $ (-917)) 33)) (-1371 (((-1262) $ (-767) (-767) (-917) (-917)) 40)) (-1352 (((-1262) $ (-1151)) 81)) (-4174 (((-1262) $ (-917) (-1151)) 77)) (-1692 (((-858) $) 87)) (-1442 (((-1262) $) 82)) (-1342 (((-1262) $ (-917) (-1151)) 73) (((-1262) $ (-917) (-870)) 74)) (-1718 (((-112) $ $) NIL)))
+(((-1258) (-13 (-1093) (-10 -8 (-15 -4283 ((-640 (-939 (-225))) $)) (-15 -4272 ($)) (-15 -4261 ($ $)) (-15 -3700 ((-640 (-263)) $)) (-15 -3700 ($ $ (-640 (-263)))) (-15 -4261 ($ (-468) (-640 (-263)))) (-15 -4248 ((-1262) $ (-917) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-870) (-563) (-870) (-563))) (-15 -4236 ((-1257 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -4196 (-563)) (|:| -4174 (-563)) (|:| |spline| (-563)) (|:| -1342 (-563)) (|:| |axesColor| (-870)) (|:| -3532 (-563)) (|:| |unitsColor| (-870)) (|:| |showing| (-563)))) $)) (-15 -4227 ((-1257 (-3 (-468) "undefined")) $)) (-15 -3695 ((-1262) $ (-1151))) (-15 -4217 ((-1262) $ (-468) (-917))) (-15 -4207 ((-468) $ (-917))) (-15 -1342 ((-1262) $ (-917) (-1151))) (-15 -1342 ((-1262) $ (-917) (-870))) (-15 -3532 ((-1262) $ (-917) (-1151))) (-15 -3532 ((-1262) $ (-917) (-870))) (-15 -4196 ((-1262) $ (-917) (-1151))) (-15 -4186 ((-1262) $ (-917) (-1151))) (-15 -4174 ((-1262) $ (-917) (-1151))) (-15 -1352 ((-1262) $ (-1151))) (-15 -1442 ((-1262) $)) (-15 -1371 ((-1262) $ (-767) (-767) (-917) (-917))) (-15 -4165 ((-1262) $ (-917) (-379) (-379))) (-15 -1943 ((-1262) $ (-917) (-379) (-379))) (-15 -1707 ((-1262) $ (-917) (-1151))) (-15 -1391 ((-1262) $ (-767) (-767))) (-15 -4316 ((-1262) $ (-468) (-917))) (-15 -1381 ((-1262) $ (-917) (-917))) (-15 -3808 ((-1151) $ (-1151))) (-15 -3808 ((-1151) $ (-1151) (-1151))) (-15 -3808 ((-1151) $ (-1151) (-640 (-1151)))) (-15 -3786 ((-1262) $)) (-15 -2387 ((-563) $)) (-15 -1692 ((-858) $))))) (T -1258))
+((-1692 (*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-1258)))) (-4283 (*1 *2 *1) (-12 (-5 *2 (-640 (-939 (-225)))) (-5 *1 (-1258)))) (-4272 (*1 *1) (-5 *1 (-1258))) (-4261 (*1 *1 *1) (-5 *1 (-1258))) (-3700 (*1 *2 *1) (-12 (-5 *2 (-640 (-263))) (-5 *1 (-1258)))) (-3700 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-263))) (-5 *1 (-1258)))) (-4261 (*1 *1 *2 *3) (-12 (-5 *2 (-468)) (-5 *3 (-640 (-263))) (-5 *1 (-1258)))) (-4248 (*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5) (-12 (-5 *3 (-917)) (-5 *4 (-225)) (-5 *5 (-563)) (-5 *6 (-870)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-4236 (*1 *2 *1) (-12 (-5 *2 (-1257 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -4196 (-563)) (|:| -4174 (-563)) (|:| |spline| (-563)) (|:| -1342 (-563)) (|:| |axesColor| (-870)) (|:| -3532 (-563)) (|:| |unitsColor| (-870)) (|:| |showing| (-563))))) (-5 *1 (-1258)))) (-4227 (*1 *2 *1) (-12 (-5 *2 (-1257 (-3 (-468) "undefined"))) (-5 *1 (-1258)))) (-3695 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-4217 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-468)) (-5 *4 (-917)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-4207 (*1 *2 *1 *3) (-12 (-5 *3 (-917)) (-5 *2 (-468)) (-5 *1 (-1258)))) (-1342 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-1342 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-870)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-3532 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-3532 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-870)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-4196 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-4186 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-4174 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-1352 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-1442 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1258)))) (-1371 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-767)) (-5 *4 (-917)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-4165 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-917)) (-5 *4 (-379)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-1943 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-917)) (-5 *4 (-379)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-1707 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-1391 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-4316 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-468)) (-5 *4 (-917)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-1381 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1262)) (-5 *1 (-1258)))) (-3808 (*1 *2 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1258)))) (-3808 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1258)))) (-3808 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-1151)) (-5 *1 (-1258)))) (-3786 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1258)))) (-2387 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1258)))))
+(-13 (-1093) (-10 -8 (-15 -4283 ((-640 (-939 (-225))) $)) (-15 -4272 ($)) (-15 -4261 ($ $)) (-15 -3700 ((-640 (-263)) $)) (-15 -3700 ($ $ (-640 (-263)))) (-15 -4261 ($ (-468) (-640 (-263)))) (-15 -4248 ((-1262) $ (-917) (-225) (-225) (-225) (-225) (-563) (-563) (-563) (-563) (-870) (-563) (-870) (-563))) (-15 -4236 ((-1257 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -4196 (-563)) (|:| -4174 (-563)) (|:| |spline| (-563)) (|:| -1342 (-563)) (|:| |axesColor| (-870)) (|:| -3532 (-563)) (|:| |unitsColor| (-870)) (|:| |showing| (-563)))) $)) (-15 -4227 ((-1257 (-3 (-468) "undefined")) $)) (-15 -3695 ((-1262) $ (-1151))) (-15 -4217 ((-1262) $ (-468) (-917))) (-15 -4207 ((-468) $ (-917))) (-15 -1342 ((-1262) $ (-917) (-1151))) (-15 -1342 ((-1262) $ (-917) (-870))) (-15 -3532 ((-1262) $ (-917) (-1151))) (-15 -3532 ((-1262) $ (-917) (-870))) (-15 -4196 ((-1262) $ (-917) (-1151))) (-15 -4186 ((-1262) $ (-917) (-1151))) (-15 -4174 ((-1262) $ (-917) (-1151))) (-15 -1352 ((-1262) $ (-1151))) (-15 -1442 ((-1262) $)) (-15 -1371 ((-1262) $ (-767) (-767) (-917) (-917))) (-15 -4165 ((-1262) $ (-917) (-379) (-379))) (-15 -1943 ((-1262) $ (-917) (-379) (-379))) (-15 -1707 ((-1262) $ (-917) (-1151))) (-15 -1391 ((-1262) $ (-767) (-767))) (-15 -4316 ((-1262) $ (-468) (-917))) (-15 -1381 ((-1262) $ (-917) (-917))) (-15 -3808 ((-1151) $ (-1151))) (-15 -3808 ((-1151) $ (-1151) (-1151))) (-15 -3808 ((-1151) $ (-1151) (-640 (-1151)))) (-15 -3786 ((-1262) $)) (-15 -2387 ((-563) $)) (-15 -1692 ((-858) $))))
+((-1677 (((-112) $ $) NIL)) (-1292 (((-1262) $ (-379)) 142) (((-1262) $ (-379) (-379) (-379)) 143)) (-3808 (((-1151) $ (-1151)) 150) (((-1151) $ (-1151) (-1151)) 148) (((-1151) $ (-1151) (-640 (-1151))) 147)) (-1436 (($) 50)) (-1362 (((-1262) $ (-379) (-379) (-379) (-379) (-379)) 118) (((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) $) 116) (((-1262) $ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) 117) (((-1262) $ (-563) (-563) (-379) (-379) (-379)) 119) (((-1262) $ (-379) (-379)) 120) (((-1262) $ (-379) (-379) (-379)) 127)) (-3334 (((-379)) 99) (((-379) (-379)) 100)) (-3355 (((-379)) 94) (((-379) (-379)) 96)) (-3344 (((-379)) 97) (((-379) (-379)) 98)) (-3313 (((-379)) 103) (((-379) (-379)) 104)) (-3324 (((-379)) 101) (((-379) (-379)) 102)) (-1943 (((-1262) $ (-379) (-379)) 144)) (-3695 (((-1262) $ (-1151)) 128)) (-1414 (((-1126 (-225)) $) 51) (($ $ (-1126 (-225))) 52)) (-4350 (((-1262) $ (-1151)) 156)) (-4339 (((-1262) $ (-1151)) 157)) (-1301 (((-1262) $ (-379) (-379)) 126) (((-1262) $ (-563) (-563)) 141)) (-1381 (((-1262) $ (-917) (-917)) 134)) (-3786 (((-1262) $) 114)) (-4380 (((-1262) $ (-1151)) 155)) (-1323 (((-1262) $ (-1151)) 111)) (-3700 (((-640 (-263)) $) 53) (($ $ (-640 (-263))) 54)) (-1391 (((-1262) $ (-767) (-767)) 133)) (-1403 (((-1262) $ (-767) (-939 (-225))) 162)) (-1425 (($ $) 56) (($ (-1126 (-225)) (-1151)) 57) (($ (-1126 (-225)) (-640 (-263))) 58)) (-4317 (((-1262) $ (-379) (-379) (-379)) 108)) (-3854 (((-1151) $) NIL)) (-2387 (((-563) $) 105)) (-4306 (((-1262) $ (-379)) 145)) (-4360 (((-1262) $ (-379)) 160)) (-1693 (((-1113) $) NIL)) (-4370 (((-1262) $ (-379)) 159)) (-1313 (((-1262) $ (-1151)) 113)) (-1371 (((-1262) $ (-767) (-767) (-917) (-917)) 132)) (-1334 (((-1262) $ (-1151)) 110)) (-1352 (((-1262) $ (-1151)) 112)) (-4295 (((-1262) $ (-157) (-157)) 131)) (-1692 (((-858) $) 139)) (-1442 (((-1262) $) 115)) (-4327 (((-1262) $ (-1151)) 158)) (-1342 (((-1262) $ (-1151)) 109)) (-1718 (((-112) $ $) NIL)))
+(((-1259) (-13 (-1093) (-10 -8 (-15 -3355 ((-379))) (-15 -3355 ((-379) (-379))) (-15 -3344 ((-379))) (-15 -3344 ((-379) (-379))) (-15 -3334 ((-379))) (-15 -3334 ((-379) (-379))) (-15 -3324 ((-379))) (-15 -3324 ((-379) (-379))) (-15 -3313 ((-379))) (-15 -3313 ((-379) (-379))) (-15 -1436 ($)) (-15 -1425 ($ $)) (-15 -1425 ($ (-1126 (-225)) (-1151))) (-15 -1425 ($ (-1126 (-225)) (-640 (-263)))) (-15 -1414 ((-1126 (-225)) $)) (-15 -1414 ($ $ (-1126 (-225)))) (-15 -1403 ((-1262) $ (-767) (-939 (-225)))) (-15 -3700 ((-640 (-263)) $)) (-15 -3700 ($ $ (-640 (-263)))) (-15 -1391 ((-1262) $ (-767) (-767))) (-15 -1381 ((-1262) $ (-917) (-917))) (-15 -3695 ((-1262) $ (-1151))) (-15 -1371 ((-1262) $ (-767) (-767) (-917) (-917))) (-15 -1362 ((-1262) $ (-379) (-379) (-379) (-379) (-379))) (-15 -1362 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) $)) (-15 -1362 ((-1262) $ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -1362 ((-1262) $ (-563) (-563) (-379) (-379) (-379))) (-15 -1362 ((-1262) $ (-379) (-379))) (-15 -1362 ((-1262) $ (-379) (-379) (-379))) (-15 -1352 ((-1262) $ (-1151))) (-15 -1342 ((-1262) $ (-1151))) (-15 -1334 ((-1262) $ (-1151))) (-15 -1323 ((-1262) $ (-1151))) (-15 -1313 ((-1262) $ (-1151))) (-15 -1301 ((-1262) $ (-379) (-379))) (-15 -1301 ((-1262) $ (-563) (-563))) (-15 -1292 ((-1262) $ (-379))) (-15 -1292 ((-1262) $ (-379) (-379) (-379))) (-15 -1943 ((-1262) $ (-379) (-379))) (-15 -4380 ((-1262) $ (-1151))) (-15 -4370 ((-1262) $ (-379))) (-15 -4360 ((-1262) $ (-379))) (-15 -4350 ((-1262) $ (-1151))) (-15 -4339 ((-1262) $ (-1151))) (-15 -4327 ((-1262) $ (-1151))) (-15 -4317 ((-1262) $ (-379) (-379) (-379))) (-15 -4306 ((-1262) $ (-379))) (-15 -3786 ((-1262) $)) (-15 -4295 ((-1262) $ (-157) (-157))) (-15 -3808 ((-1151) $ (-1151))) (-15 -3808 ((-1151) $ (-1151) (-1151))) (-15 -3808 ((-1151) $ (-1151) (-640 (-1151)))) (-15 -1442 ((-1262) $)) (-15 -2387 ((-563) $))))) (T -1259))
+((-3355 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-3355 (*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-3344 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-3344 (*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-3334 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-3334 (*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-3324 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-3324 (*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-3313 (*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-3313 (*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))) (-1436 (*1 *1) (-5 *1 (-1259))) (-1425 (*1 *1 *1) (-5 *1 (-1259))) (-1425 (*1 *1 *2 *3) (-12 (-5 *2 (-1126 (-225))) (-5 *3 (-1151)) (-5 *1 (-1259)))) (-1425 (*1 *1 *2 *3) (-12 (-5 *2 (-1126 (-225))) (-5 *3 (-640 (-263))) (-5 *1 (-1259)))) (-1414 (*1 *2 *1) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-1259)))) (-1414 (*1 *1 *1 *2) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-1259)))) (-1403 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-767)) (-5 *4 (-939 (-225))) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3700 (*1 *2 *1) (-12 (-5 *2 (-640 (-263))) (-5 *1 (-1259)))) (-3700 (*1 *1 *1 *2) (-12 (-5 *2 (-640 (-263))) (-5 *1 (-1259)))) (-1391 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1381 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3695 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1371 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-767)) (-5 *4 (-917)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1362 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1362 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *1 (-1259)))) (-1362 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1362 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-563)) (-5 *4 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1362 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1362 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1352 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1342 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1334 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1323 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1313 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1301 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1301 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1292 (*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1292 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-1943 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-4380 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-4370 (*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-4360 (*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-4350 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-4339 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-4327 (*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-4317 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-4306 (*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3786 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1259)))) (-4295 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-157)) (-5 *2 (-1262)) (-5 *1 (-1259)))) (-3808 (*1 *2 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1259)))) (-3808 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1259)))) (-3808 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-1151)) (-5 *1 (-1259)))) (-1442 (*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1259)))) (-2387 (*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1259)))))
+(-13 (-1093) (-10 -8 (-15 -3355 ((-379))) (-15 -3355 ((-379) (-379))) (-15 -3344 ((-379))) (-15 -3344 ((-379) (-379))) (-15 -3334 ((-379))) (-15 -3334 ((-379) (-379))) (-15 -3324 ((-379))) (-15 -3324 ((-379) (-379))) (-15 -3313 ((-379))) (-15 -3313 ((-379) (-379))) (-15 -1436 ($)) (-15 -1425 ($ $)) (-15 -1425 ($ (-1126 (-225)) (-1151))) (-15 -1425 ($ (-1126 (-225)) (-640 (-263)))) (-15 -1414 ((-1126 (-225)) $)) (-15 -1414 ($ $ (-1126 (-225)))) (-15 -1403 ((-1262) $ (-767) (-939 (-225)))) (-15 -3700 ((-640 (-263)) $)) (-15 -3700 ($ $ (-640 (-263)))) (-15 -1391 ((-1262) $ (-767) (-767))) (-15 -1381 ((-1262) $ (-917) (-917))) (-15 -3695 ((-1262) $ (-1151))) (-15 -1371 ((-1262) $ (-767) (-767) (-917) (-917))) (-15 -1362 ((-1262) $ (-379) (-379) (-379) (-379) (-379))) (-15 -1362 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) $)) (-15 -1362 ((-1262) $ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -1362 ((-1262) $ (-563) (-563) (-379) (-379) (-379))) (-15 -1362 ((-1262) $ (-379) (-379))) (-15 -1362 ((-1262) $ (-379) (-379) (-379))) (-15 -1352 ((-1262) $ (-1151))) (-15 -1342 ((-1262) $ (-1151))) (-15 -1334 ((-1262) $ (-1151))) (-15 -1323 ((-1262) $ (-1151))) (-15 -1313 ((-1262) $ (-1151))) (-15 -1301 ((-1262) $ (-379) (-379))) (-15 -1301 ((-1262) $ (-563) (-563))) (-15 -1292 ((-1262) $ (-379))) (-15 -1292 ((-1262) $ (-379) (-379) (-379))) (-15 -1943 ((-1262) $ (-379) (-379))) (-15 -4380 ((-1262) $ (-1151))) (-15 -4370 ((-1262) $ (-379))) (-15 -4360 ((-1262) $ (-379))) (-15 -4350 ((-1262) $ (-1151))) (-15 -4339 ((-1262) $ (-1151))) (-15 -4327 ((-1262) $ (-1151))) (-15 -4317 ((-1262) $ (-379) (-379) (-379))) (-15 -4306 ((-1262) $ (-379))) (-15 -3786 ((-1262) $)) (-15 -4295 ((-1262) $ (-157) (-157))) (-15 -3808 ((-1151) $ (-1151))) (-15 -3808 ((-1151) $ (-1151) (-1151))) (-15 -3808 ((-1151) $ (-1151) (-640 (-1151)))) (-15 -1442 ((-1262) $)) (-15 -2387 ((-563) $))))
+((-3463 (((-640 (-1151)) (-640 (-1151))) 94) (((-640 (-1151))) 90)) (-3473 (((-640 (-1151))) 88)) (-3440 (((-640 (-917)) (-640 (-917))) 63) (((-640 (-917))) 60)) (-3427 (((-640 (-767)) (-640 (-767))) 57) (((-640 (-767))) 53)) (-3451 (((-1262)) 65)) (-3493 (((-917) (-917)) 81) (((-917)) 80)) (-3483 (((-917) (-917)) 79) (((-917)) 78)) (-3403 (((-870) (-870)) 75) (((-870)) 74)) (-3515 (((-225)) 85) (((-225) (-379)) 87)) (-3504 (((-917)) 82) (((-917) (-917)) 83)) (-3415 (((-917) (-917)) 77) (((-917)) 76)) (-3366 (((-870) (-870)) 69) (((-870)) 67)) (-3378 (((-870) (-870)) 71) (((-870)) 70)) (-3390 (((-870) (-870)) 73) (((-870)) 72)))
+(((-1260) (-10 -7 (-15 -3366 ((-870))) (-15 -3366 ((-870) (-870))) (-15 -3378 ((-870))) (-15 -3378 ((-870) (-870))) (-15 -3390 ((-870))) (-15 -3390 ((-870) (-870))) (-15 -3403 ((-870))) (-15 -3403 ((-870) (-870))) (-15 -3415 ((-917))) (-15 -3415 ((-917) (-917))) (-15 -3427 ((-640 (-767)))) (-15 -3427 ((-640 (-767)) (-640 (-767)))) (-15 -3440 ((-640 (-917)))) (-15 -3440 ((-640 (-917)) (-640 (-917)))) (-15 -3451 ((-1262))) (-15 -3463 ((-640 (-1151)))) (-15 -3463 ((-640 (-1151)) (-640 (-1151)))) (-15 -3473 ((-640 (-1151)))) (-15 -3483 ((-917))) (-15 -3493 ((-917))) (-15 -3483 ((-917) (-917))) (-15 -3493 ((-917) (-917))) (-15 -3504 ((-917) (-917))) (-15 -3504 ((-917))) (-15 -3515 ((-225) (-379))) (-15 -3515 ((-225))))) (T -1260))
+((-3515 (*1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-1260)))) (-3515 (*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-225)) (-5 *1 (-1260)))) (-3504 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-3504 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-3493 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-3483 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-3493 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-3483 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-3473 (*1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1260)))) (-3463 (*1 *2 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1260)))) (-3463 (*1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1260)))) (-3451 (*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1260)))) (-3440 (*1 *2 *2) (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1260)))) (-3440 (*1 *2) (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1260)))) (-3427 (*1 *2 *2) (-12 (-5 *2 (-640 (-767))) (-5 *1 (-1260)))) (-3427 (*1 *2) (-12 (-5 *2 (-640 (-767))) (-5 *1 (-1260)))) (-3415 (*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-3415 (*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))) (-3403 (*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))) (-3403 (*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))) (-3390 (*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))) (-3390 (*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))) (-3378 (*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))) (-3378 (*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))) (-3366 (*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))) (-3366 (*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))))
+(-10 -7 (-15 -3366 ((-870))) (-15 -3366 ((-870) (-870))) (-15 -3378 ((-870))) (-15 -3378 ((-870) (-870))) (-15 -3390 ((-870))) (-15 -3390 ((-870) (-870))) (-15 -3403 ((-870))) (-15 -3403 ((-870) (-870))) (-15 -3415 ((-917))) (-15 -3415 ((-917) (-917))) (-15 -3427 ((-640 (-767)))) (-15 -3427 ((-640 (-767)) (-640 (-767)))) (-15 -3440 ((-640 (-917)))) (-15 -3440 ((-640 (-917)) (-640 (-917)))) (-15 -3451 ((-1262))) (-15 -3463 ((-640 (-1151)))) (-15 -3463 ((-640 (-1151)) (-640 (-1151)))) (-15 -3473 ((-640 (-1151)))) (-15 -3483 ((-917))) (-15 -3493 ((-917))) (-15 -3483 ((-917) (-917))) (-15 -3493 ((-917) (-917))) (-15 -3504 ((-917) (-917))) (-15 -3504 ((-917))) (-15 -3515 ((-225) (-379))) (-15 -3515 ((-225))))
+((-4144 (((-468) (-640 (-640 (-939 (-225)))) (-640 (-263))) 21) (((-468) (-640 (-640 (-939 (-225))))) 20) (((-468) (-640 (-640 (-939 (-225)))) (-870) (-870) (-917) (-640 (-263))) 19)) (-4155 (((-1258) (-640 (-640 (-939 (-225)))) (-640 (-263))) 27) (((-1258) (-640 (-640 (-939 (-225)))) (-870) (-870) (-917) (-640 (-263))) 26)) (-1692 (((-1258) (-468)) 38)))
+(((-1261) (-10 -7 (-15 -4144 ((-468) (-640 (-640 (-939 (-225)))) (-870) (-870) (-917) (-640 (-263)))) (-15 -4144 ((-468) (-640 (-640 (-939 (-225)))))) (-15 -4144 ((-468) (-640 (-640 (-939 (-225)))) (-640 (-263)))) (-15 -4155 ((-1258) (-640 (-640 (-939 (-225)))) (-870) (-870) (-917) (-640 (-263)))) (-15 -4155 ((-1258) (-640 (-640 (-939 (-225)))) (-640 (-263)))) (-15 -1692 ((-1258) (-468))))) (T -1261))
+((-1692 (*1 *2 *3) (-12 (-5 *3 (-468)) (-5 *2 (-1258)) (-5 *1 (-1261)))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-640 (-263))) (-5 *2 (-1258)) (-5 *1 (-1261)))) (-4155 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-870)) (-5 *5 (-917)) (-5 *6 (-640 (-263))) (-5 *2 (-1258)) (-5 *1 (-1261)))) (-4144 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-640 (-263))) (-5 *2 (-468)) (-5 *1 (-1261)))) (-4144 (*1 *2 *3) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *2 (-468)) (-5 *1 (-1261)))) (-4144 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-870)) (-5 *5 (-917)) (-5 *6 (-640 (-263))) (-5 *2 (-468)) (-5 *1 (-1261)))))
+(-10 -7 (-15 -4144 ((-468) (-640 (-640 (-939 (-225)))) (-870) (-870) (-917) (-640 (-263)))) (-15 -4144 ((-468) (-640 (-640 (-939 (-225)))))) (-15 -4144 ((-468) (-640 (-640 (-939 (-225)))) (-640 (-263)))) (-15 -4155 ((-1258) (-640 (-640 (-939 (-225)))) (-870) (-870) (-917) (-640 (-263)))) (-15 -4155 ((-1258) (-640 (-640 (-939 (-225)))) (-640 (-263)))) (-15 -1692 ((-1258) (-468))))
+((-3785 (($) 7)) (-1692 (((-858) $) 10)))
+(((-1262) (-13 (-610 (-858)) (-10 -8 (-15 -3785 ($))))) (T -1262))
+((-3785 (*1 *1) (-5 *1 (-1262))))
+(-13 (-610 (-858)) (-10 -8 (-15 -3785 ($))))
+((-1836 (($ $ |#2|) 10)))
+(((-1263 |#1| |#2|) (-10 -8 (-15 -1836 (|#1| |#1| |#2|))) (-1264 |#2|) (-363)) (T -1263))
+NIL
+(-10 -8 (-15 -1836 (|#1| |#1| |#2|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-3526 (((-134)) 28)) (-1692 (((-858) $) 11)) (-2239 (($) 18 T CONST)) (-1718 (((-112) $ $) 6)) (-1836 (($ $ |#1|) 29)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
(((-1264 |#1|) (-140) (-363)) (T -1264))
-((-1837 (*1 *1 *1 *2) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-363)))) (-3533 (*1 *2) (-12 (-4 *1 (-1264 *3)) (-4 *3 (-363)) (-5 *2 (-134)))))
-(-13 (-713 |t#1|) (-10 -8 (-15 -1837 ($ $ |t#1|)) (-15 -3533 ((-134)))))
+((-1836 (*1 *1 *1 *2) (-12 (-4 *1 (-1264 *2)) (-4 *2 (-363)))) (-3526 (*1 *2) (-12 (-4 *1 (-1264 *3)) (-4 *3 (-363)) (-5 *2 (-134)))))
+(-13 (-713 |t#1|) (-10 -8 (-15 -1836 ($ $ |t#1|)) (-15 -3526 ((-134)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-610 (-858)) . T) ((-643 |#1|) . T) ((-713 |#1|) . T) ((-1051 |#1|) . T) ((-1093) . T))
-((-1981 (((-640 (-1202 |#1|)) (-1169) (-1202 |#1|)) 74)) (-3903 (((-1149 (-1149 (-948 |#1|))) (-1169) (-1149 (-948 |#1|))) 53)) (-2531 (((-1 (-1149 (-1202 |#1|)) (-1149 (-1202 |#1|))) (-767) (-1202 |#1|) (-1149 (-1202 |#1|))) 64)) (-2607 (((-1 (-1149 (-948 |#1|)) (-1149 (-948 |#1|))) (-767)) 55)) (-4003 (((-1 (-1165 (-948 |#1|)) (-948 |#1|)) (-1169)) 29)) (-2981 (((-1 (-1149 (-948 |#1|)) (-1149 (-948 |#1|))) (-767)) 54)))
-(((-1265 |#1|) (-10 -7 (-15 -2607 ((-1 (-1149 (-948 |#1|)) (-1149 (-948 |#1|))) (-767))) (-15 -2981 ((-1 (-1149 (-948 |#1|)) (-1149 (-948 |#1|))) (-767))) (-15 -3903 ((-1149 (-1149 (-948 |#1|))) (-1169) (-1149 (-948 |#1|)))) (-15 -4003 ((-1 (-1165 (-948 |#1|)) (-948 |#1|)) (-1169))) (-15 -1981 ((-640 (-1202 |#1|)) (-1169) (-1202 |#1|))) (-15 -2531 ((-1 (-1149 (-1202 |#1|)) (-1149 (-1202 |#1|))) (-767) (-1202 |#1|) (-1149 (-1202 |#1|))))) (-363)) (T -1265))
-((-2531 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-767)) (-4 *6 (-363)) (-5 *4 (-1202 *6)) (-5 *2 (-1 (-1149 *4) (-1149 *4))) (-5 *1 (-1265 *6)) (-5 *5 (-1149 *4)))) (-1981 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-4 *5 (-363)) (-5 *2 (-640 (-1202 *5))) (-5 *1 (-1265 *5)) (-5 *4 (-1202 *5)))) (-4003 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1 (-1165 (-948 *4)) (-948 *4))) (-5 *1 (-1265 *4)) (-4 *4 (-363)))) (-3903 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-4 *5 (-363)) (-5 *2 (-1149 (-1149 (-948 *5)))) (-5 *1 (-1265 *5)) (-5 *4 (-1149 (-948 *5))))) (-2981 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1 (-1149 (-948 *4)) (-1149 (-948 *4)))) (-5 *1 (-1265 *4)) (-4 *4 (-363)))) (-2607 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1 (-1149 (-948 *4)) (-1149 (-948 *4)))) (-5 *1 (-1265 *4)) (-4 *4 (-363)))))
-(-10 -7 (-15 -2607 ((-1 (-1149 (-948 |#1|)) (-1149 (-948 |#1|))) (-767))) (-15 -2981 ((-1 (-1149 (-948 |#1|)) (-1149 (-948 |#1|))) (-767))) (-15 -3903 ((-1149 (-1149 (-948 |#1|))) (-1169) (-1149 (-948 |#1|)))) (-15 -4003 ((-1 (-1165 (-948 |#1|)) (-948 |#1|)) (-1169))) (-15 -1981 ((-640 (-1202 |#1|)) (-1169) (-1202 |#1|))) (-15 -2531 ((-1 (-1149 (-1202 |#1|)) (-1149 (-1202 |#1|))) (-767) (-1202 |#1|) (-1149 (-1202 |#1|)))))
-((-3435 (((-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) |#2|) 75)) (-3815 (((-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) 74)))
-(((-1266 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3815 ((-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))))) (-15 -3435 ((-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) |#2|))) (-349) (-1233 |#1|) (-1233 |#2|) (-409 |#2| |#3|)) (T -1266))
-((-3435 (*1 *2 *3) (-12 (-4 *4 (-349)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 *3)) (-5 *2 (-2 (|:| -4315 (-684 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-684 *3)))) (-5 *1 (-1266 *4 *3 *5 *6)) (-4 *6 (-409 *3 *5)))) (-3815 (*1 *2) (-12 (-4 *3 (-349)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| -4315 (-684 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-684 *4)))) (-5 *1 (-1266 *3 *4 *5 *6)) (-4 *6 (-409 *4 *5)))))
-(-10 -7 (-15 -3815 ((-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))))) (-15 -3435 ((-2 (|:| -4315 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) |#2|)))
-((-1677 (((-112) $ $) NIL)) (-1743 (((-1128) $) 11)) (-2478 (((-1128) $) 9)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 19) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
-(((-1267) (-13 (-1076) (-10 -8 (-15 -2478 ((-1128) $)) (-15 -1743 ((-1128) $))))) (T -1267))
-((-2478 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1267)))) (-1743 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1267)))))
-(-13 (-1076) (-10 -8 (-15 -2478 ((-1128) $)) (-15 -1743 ((-1128) $))))
-((-1677 (((-112) $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1394 (((-1128) $) 9)) (-1693 (((-858) $) 17) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+((-3586 (((-640 (-1202 |#1|)) (-1169) (-1202 |#1|)) 74)) (-3562 (((-1149 (-1149 (-948 |#1|))) (-1169) (-1149 (-948 |#1|))) 53)) (-3597 (((-1 (-1149 (-1202 |#1|)) (-1149 (-1202 |#1|))) (-767) (-1202 |#1|) (-1149 (-1202 |#1|))) 64)) (-3537 (((-1 (-1149 (-948 |#1|)) (-1149 (-948 |#1|))) (-767)) 55)) (-3575 (((-1 (-1165 (-948 |#1|)) (-948 |#1|)) (-1169)) 29)) (-3549 (((-1 (-1149 (-948 |#1|)) (-1149 (-948 |#1|))) (-767)) 54)))
+(((-1265 |#1|) (-10 -7 (-15 -3537 ((-1 (-1149 (-948 |#1|)) (-1149 (-948 |#1|))) (-767))) (-15 -3549 ((-1 (-1149 (-948 |#1|)) (-1149 (-948 |#1|))) (-767))) (-15 -3562 ((-1149 (-1149 (-948 |#1|))) (-1169) (-1149 (-948 |#1|)))) (-15 -3575 ((-1 (-1165 (-948 |#1|)) (-948 |#1|)) (-1169))) (-15 -3586 ((-640 (-1202 |#1|)) (-1169) (-1202 |#1|))) (-15 -3597 ((-1 (-1149 (-1202 |#1|)) (-1149 (-1202 |#1|))) (-767) (-1202 |#1|) (-1149 (-1202 |#1|))))) (-363)) (T -1265))
+((-3597 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-767)) (-4 *6 (-363)) (-5 *4 (-1202 *6)) (-5 *2 (-1 (-1149 *4) (-1149 *4))) (-5 *1 (-1265 *6)) (-5 *5 (-1149 *4)))) (-3586 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-4 *5 (-363)) (-5 *2 (-640 (-1202 *5))) (-5 *1 (-1265 *5)) (-5 *4 (-1202 *5)))) (-3575 (*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1 (-1165 (-948 *4)) (-948 *4))) (-5 *1 (-1265 *4)) (-4 *4 (-363)))) (-3562 (*1 *2 *3 *4) (-12 (-5 *3 (-1169)) (-4 *5 (-363)) (-5 *2 (-1149 (-1149 (-948 *5)))) (-5 *1 (-1265 *5)) (-5 *4 (-1149 (-948 *5))))) (-3549 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1 (-1149 (-948 *4)) (-1149 (-948 *4)))) (-5 *1 (-1265 *4)) (-4 *4 (-363)))) (-3537 (*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1 (-1149 (-948 *4)) (-1149 (-948 *4)))) (-5 *1 (-1265 *4)) (-4 *4 (-363)))))
+(-10 -7 (-15 -3537 ((-1 (-1149 (-948 |#1|)) (-1149 (-948 |#1|))) (-767))) (-15 -3549 ((-1 (-1149 (-948 |#1|)) (-1149 (-948 |#1|))) (-767))) (-15 -3562 ((-1149 (-1149 (-948 |#1|))) (-1169) (-1149 (-948 |#1|)))) (-15 -3575 ((-1 (-1165 (-948 |#1|)) (-948 |#1|)) (-1169))) (-15 -3586 ((-640 (-1202 |#1|)) (-1169) (-1202 |#1|))) (-15 -3597 ((-1 (-1149 (-1202 |#1|)) (-1149 (-1202 |#1|))) (-767) (-1202 |#1|) (-1149 (-1202 |#1|)))))
+((-3619 (((-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) |#2|) 75)) (-3608 (((-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|)))) 74)))
+(((-1266 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3608 ((-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))))) (-15 -3619 ((-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) |#2|))) (-349) (-1233 |#1|) (-1233 |#2|) (-409 |#2| |#3|)) (T -1266))
+((-3619 (*1 *2 *3) (-12 (-4 *4 (-349)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 *3)) (-5 *2 (-2 (|:| -4013 (-684 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-684 *3)))) (-5 *1 (-1266 *4 *3 *5 *6)) (-4 *6 (-409 *3 *5)))) (-3608 (*1 *2) (-12 (-4 *3 (-349)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 *4)) (-5 *2 (-2 (|:| -4013 (-684 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-684 *4)))) (-5 *1 (-1266 *3 *4 *5 *6)) (-4 *6 (-409 *4 *5)))))
+(-10 -7 (-15 -3608 ((-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))))) (-15 -3619 ((-2 (|:| -4013 (-684 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-684 |#2|))) |#2|)))
+((-1677 (((-112) $ $) NIL)) (-3631 (((-1128) $) 11)) (-3643 (((-1128) $) 9)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 19) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
+(((-1267) (-13 (-1076) (-10 -8 (-15 -3643 ((-1128) $)) (-15 -3631 ((-1128) $))))) (T -1267))
+((-3643 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1267)))) (-3631 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1267)))))
+(-13 (-1076) (-10 -8 (-15 -3643 ((-1128) $)) (-15 -3631 ((-1128) $))))
+((-1677 (((-112) $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1394 (((-1128) $) 9)) (-1692 (((-858) $) 17) (($ (-1174)) NIL) (((-1174) $) NIL)) (-1718 (((-112) $ $) NIL)))
(((-1268) (-13 (-1076) (-10 -8 (-15 -1394 ((-1128) $))))) (T -1268))
((-1394 (*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1268)))))
(-13 (-1076) (-10 -8 (-15 -1394 ((-1128) $))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 42)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-3400 (((-3 $ "failed") $) NIL)) (-3827 (((-112) $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-1693 (((-858) $) 63) (($ (-563)) NIL) (($ |#4|) 48) ((|#4| $) 53) (($ |#1|) NIL (|has| |#1| (-172)))) (-1675 (((-767)) NIL)) (-1984 (((-1262) (-767)) 16)) (-2241 (($) 27 T CONST)) (-2254 (($) 66 T CONST)) (-1718 (((-112) $ $) 68)) (-1837 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-1826 (($ $) 70) (($ $ $) NIL)) (-1814 (($ $ $) 46)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 72) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
-(((-1269 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-13 (-1045) (-490 |#4|) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -1837 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1984 ((-1262) (-767))))) (-1045) (-846) (-789) (-945 |#1| |#3| |#2|) (-640 |#2|) (-640 (-767)) (-767)) (T -1269))
-((-1837 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-363)) (-4 *2 (-1045)) (-4 *3 (-846)) (-4 *4 (-789)) (-14 *6 (-640 *3)) (-5 *1 (-1269 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-945 *2 *4 *3)) (-14 *7 (-640 (-767))) (-14 *8 (-767)))) (-1984 (*1 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-1045)) (-4 *5 (-846)) (-4 *6 (-789)) (-14 *8 (-640 *5)) (-5 *2 (-1262)) (-5 *1 (-1269 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-945 *4 *6 *5)) (-14 *9 (-640 *3)) (-14 *10 *3))))
-(-13 (-1045) (-490 |#4|) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -1837 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1984 ((-1262) (-767)))))
-((-1677 (((-112) $ $) NIL)) (-1578 (((-640 (-2 (|:| -1442 $) (|:| -3405 (-640 |#4|)))) (-640 |#4|)) NIL)) (-3319 (((-640 $) (-640 |#4|)) 89)) (-2606 (((-640 |#3|) $) NIL)) (-1706 (((-112) $) NIL)) (-3854 (((-112) $) NIL (|has| |#1| (-555)))) (-2620 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4053 ((|#4| |#4| $) NIL)) (-1642 (((-2 (|:| |under| $) (|:| -1583 $) (|:| |upper| $)) $ |#3|) NIL)) (-2759 (((-112) $ (-767)) NIL)) (-2256 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407))) (((-3 |#4| "failed") $ |#3|) NIL)) (-4239 (($) NIL T CONST)) (-1483 (((-112) $) NIL (|has| |#1| (-555)))) (-1626 (((-112) $ $) NIL (|has| |#1| (-555)))) (-4221 (((-112) $ $) NIL (|has| |#1| (-555)))) (-1763 (((-112) $) NIL (|has| |#1| (-555)))) (-1833 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 28)) (-3746 (((-640 |#4|) (-640 |#4|) $) 25 (|has| |#1| (-555)))) (-1866 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-2131 (((-3 $ "failed") (-640 |#4|)) NIL)) (-2058 (($ (-640 |#4|)) NIL)) (-3792 (((-3 $ "failed") $) 71)) (-1719 ((|#4| |#4| $) 76)) (-3813 (($ $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093))))) (-1459 (($ |#4| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1972 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-3990 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3948 ((|#4| |#4| $) NIL)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4407))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4407))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2144 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3405 (-640 |#4|))) $) NIL)) (-2659 (((-640 |#4|) $) NIL (|has| $ (-6 -4407)))) (-2299 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2957 ((|#3| $) 77)) (-2581 (((-112) $ (-767)) NIL)) (-2259 (((-640 |#4|) $) 29 (|has| $ (-6 -4407)))) (-1729 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093))))) (-2970 (((-3 $ "failed") (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 32) (((-3 $ "failed") (-640 |#4|)) 35)) (-4345 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4408)))) (-2240 (($ (-1 |#4| |#4|) $) NIL)) (-2965 (((-640 |#3|) $) NIL)) (-2780 (((-112) |#3| $) NIL)) (-2382 (((-112) $ (-767)) NIL)) (-3573 (((-1151) $) NIL)) (-1481 (((-3 |#4| "failed") $) NIL)) (-2820 (((-640 |#4|) $) 51)) (-4197 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2715 ((|#4| |#4| $) 75)) (-3009 (((-112) $ $) 86)) (-2152 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-2031 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4056 ((|#4| |#4| $) NIL)) (-1694 (((-1113) $) NIL)) (-3781 (((-3 |#4| "failed") $) 70)) (-4203 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3479 (((-3 $ "failed") $ |#4|) NIL)) (-3320 (($ $ |#4|) NIL)) (-3138 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1540 (($ $ (-640 |#4|) (-640 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2026 (((-112) $ $) NIL)) (-3756 (((-112) $) 68)) (-3135 (($) 43)) (-4167 (((-767) $) NIL)) (-1709 (((-767) |#4| $) NIL (-12 (|has| $ (-6 -4407)) (|has| |#4| (-1093)))) (((-767) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1872 (($ $) NIL)) (-2220 (((-536) $) NIL (|has| |#4| (-611 (-536))))) (-1707 (($ (-640 |#4|)) NIL)) (-3577 (($ $ |#3|) NIL)) (-1593 (($ $ |#3|) NIL)) (-1924 (($ $) NIL)) (-4192 (($ $ |#3|) NIL)) (-1693 (((-858) $) NIL) (((-640 |#4|) $) 58)) (-2437 (((-767) $) NIL (|has| |#3| (-368)))) (-3323 (((-3 $ "failed") (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 41) (((-3 $ "failed") (-640 |#4|)) 42)) (-3233 (((-640 $) (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 66) (((-640 $) (-640 |#4|)) 67)) (-2540 (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) 24) (((-3 (-2 (|:| |bas| $) (|:| -2636 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2691 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) NIL)) (-4383 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4407)))) (-1955 (((-640 |#3|) $) NIL)) (-3152 (((-112) |#3| $) NIL)) (-1718 (((-112) $ $) NIL)) (-3608 (((-767) $) NIL (|has| $ (-6 -4407)))))
-(((-1270 |#1| |#2| |#3| |#4|) (-13 (-1201 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2970 ((-3 $ "failed") (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2970 ((-3 $ "failed") (-640 |#4|))) (-15 -3323 ((-3 $ "failed") (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3323 ((-3 $ "failed") (-640 |#4|))) (-15 -3233 ((-640 $) (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3233 ((-640 $) (-640 |#4|))))) (-555) (-789) (-846) (-1059 |#1| |#2| |#3|)) (T -1270))
-((-2970 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-640 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1270 *5 *6 *7 *8)))) (-2970 (*1 *1 *2) (|partial| -12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-1270 *3 *4 *5 *6)))) (-3323 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-640 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1270 *5 *6 *7 *8)))) (-3323 (*1 *1 *2) (|partial| -12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-1270 *3 *4 *5 *6)))) (-3233 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1059 *6 *7 *8)) (-4 *6 (-555)) (-4 *7 (-789)) (-4 *8 (-846)) (-5 *2 (-640 (-1270 *6 *7 *8 *9))) (-5 *1 (-1270 *6 *7 *8 *9)))) (-3233 (*1 *2 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 (-1270 *4 *5 *6 *7))) (-5 *1 (-1270 *4 *5 *6 *7)))))
-(-13 (-1201 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2970 ((-3 $ "failed") (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2970 ((-3 $ "failed") (-640 |#4|))) (-15 -3323 ((-3 $ "failed") (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3323 ((-3 $ "failed") (-640 |#4|))) (-15 -3233 ((-640 $) (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3233 ((-640 $) (-640 |#4|)))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-1495 (((-3 $ "failed") $ $) 19)) (-4239 (($) 17 T CONST)) (-3400 (((-3 $ "failed") $) 33)) (-3827 (((-112) $) 31)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 39)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 41) (($ |#1| $) 40)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 42)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-3951 (((-3 $ "failed") $) NIL)) (-3401 (((-112) $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-1692 (((-858) $) 63) (($ (-563)) NIL) (($ |#4|) 48) ((|#4| $) 53) (($ |#1|) NIL (|has| |#1| (-172)))) (-3914 (((-767)) NIL)) (-3654 (((-1262) (-767)) 16)) (-2239 (($) 27 T CONST)) (-2253 (($) 66 T CONST)) (-1718 (((-112) $ $) 68)) (-1836 (((-3 $ "failed") $ $) NIL (|has| |#1| (-363)))) (-1825 (($ $) 70) (($ $ $) NIL)) (-1813 (($ $ $) 46)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 72) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
+(((-1269 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-13 (-1045) (-490 |#4|) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -1836 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3654 ((-1262) (-767))))) (-1045) (-846) (-789) (-945 |#1| |#3| |#2|) (-640 |#2|) (-640 (-767)) (-767)) (T -1269))
+((-1836 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-363)) (-4 *2 (-1045)) (-4 *3 (-846)) (-4 *4 (-789)) (-14 *6 (-640 *3)) (-5 *1 (-1269 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-945 *2 *4 *3)) (-14 *7 (-640 (-767))) (-14 *8 (-767)))) (-3654 (*1 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-1045)) (-4 *5 (-846)) (-4 *6 (-789)) (-14 *8 (-640 *5)) (-5 *2 (-1262)) (-5 *1 (-1269 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-945 *4 *6 *5)) (-14 *9 (-640 *3)) (-14 *10 *3))))
+(-13 (-1045) (-490 |#4|) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-363)) (-15 -1836 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3654 ((-1262) (-767)))))
+((-1677 (((-112) $ $) NIL)) (-2110 (((-640 (-2 (|:| -1442 $) (|:| -3409 (-640 |#4|)))) (-640 |#4|)) NIL)) (-2119 (((-640 $) (-640 |#4|)) 88)) (-2605 (((-640 |#3|) $) NIL)) (-3508 (((-112) $) NIL)) (-3406 (((-112) $) NIL (|has| |#1| (-555)))) (-2254 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2189 ((|#4| |#4| $) NIL)) (-1640 (((-2 (|:| |under| $) (|:| -3954 $) (|:| |upper| $)) $ |#3|) NIL)) (-3001 (((-112) $ (-767)) NIL)) (-2255 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408))) (((-3 |#4| "failed") $ |#3|) NIL)) (-2569 (($) NIL T CONST)) (-3466 (((-112) $) NIL (|has| |#1| (-555)))) (-3486 (((-112) $ $) NIL (|has| |#1| (-555)))) (-3476 (((-112) $ $) NIL (|has| |#1| (-555)))) (-3496 (((-112) $) NIL (|has| |#1| (-555)))) (-2201 (((-640 |#4|) (-640 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 27)) (-3418 (((-640 |#4|) (-640 |#4|) $) 25 (|has| |#1| (-555)))) (-3431 (((-640 |#4|) (-640 |#4|) $) NIL (|has| |#1| (-555)))) (-2130 (((-3 $ "failed") (-640 |#4|)) NIL)) (-2057 (($ (-640 |#4|)) NIL)) (-3793 (((-3 $ "failed") $) 70)) (-2151 ((|#4| |#4| $) 75)) (-3814 (($ $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093))))) (-1459 (($ |#4| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-3443 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-2264 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-2131 ((|#4| |#4| $) NIL)) (-2444 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4408))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4408))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2284 (((-2 (|:| -1442 (-640 |#4|)) (|:| -3409 (-640 |#4|))) $) NIL)) (-2658 (((-640 |#4|) $) NIL (|has| $ (-6 -4408)))) (-2274 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3354 ((|#3| $) 76)) (-2514 (((-112) $ (-767)) NIL)) (-3523 (((-640 |#4|) $) 28 (|has| $ (-6 -4408)))) (-2667 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093))))) (-3689 (((-3 $ "failed") (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 31) (((-3 $ "failed") (-640 |#4|)) 34)) (-4347 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4409)))) (-2238 (($ (-1 |#4| |#4|) $) NIL)) (-3568 (((-640 |#3|) $) NIL)) (-3553 (((-112) |#3| $) NIL)) (-2481 (((-112) $ (-767)) NIL)) (-3854 (((-1151) $) NIL)) (-1481 (((-3 |#4| "failed") $) NIL)) (-2297 (((-640 |#4|) $) 50)) (-2225 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2163 ((|#4| |#4| $) 74)) (-2319 (((-112) $ $) 85)) (-3454 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-555)))) (-2241 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2176 ((|#4| |#4| $) NIL)) (-1693 (((-1113) $) NIL)) (-3782 (((-3 |#4| "failed") $) 69)) (-1971 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-2089 (((-3 $ "failed") $ |#4|) NIL)) (-1751 (($ $ |#4|) NIL)) (-1458 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-1542 (($ $ (-640 |#4|) (-640 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-294 |#4|)) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093)))) (($ $ (-640 (-294 |#4|))) NIL (-12 (|has| |#4| (-309 |#4|)) (|has| |#4| (-1093))))) (-2941 (((-112) $ $) NIL)) (-1665 (((-112) $) 67)) (-3445 (($) 42)) (-3871 (((-767) $) NIL)) (-1708 (((-767) |#4| $) NIL (-12 (|has| $ (-6 -4408)) (|has| |#4| (-1093)))) (((-767) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-1870 (($ $) NIL)) (-2219 (((-536) $) NIL (|has| |#4| (-611 (-536))))) (-1706 (($ (-640 |#4|)) NIL)) (-3519 (($ $ |#3|) NIL)) (-3542 (($ $ |#3|) NIL)) (-2141 (($ $) NIL)) (-3529 (($ $ |#3|) NIL)) (-1692 (((-858) $) NIL) (((-640 |#4|) $) 57)) (-3255 (((-767) $) NIL (|has| |#3| (-368)))) (-3677 (((-3 $ "failed") (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 40) (((-3 $ "failed") (-640 |#4|)) 41)) (-3665 (((-640 $) (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 65) (((-640 $) (-640 |#4|)) 66)) (-2307 (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4| |#4|)) 24) (((-3 (-2 (|:| |bas| $) (|:| -2635 (-640 |#4|))) "failed") (-640 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2211 (((-112) $ (-1 (-112) |#4| (-640 |#4|))) NIL)) (-1471 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4408)))) (-2100 (((-640 |#3|) $) NIL)) (-3772 (((-112) |#3| $) NIL)) (-1718 (((-112) $ $) NIL)) (-3610 (((-767) $) NIL (|has| $ (-6 -4408)))))
+(((-1270 |#1| |#2| |#3| |#4|) (-13 (-1201 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3689 ((-3 $ "failed") (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3689 ((-3 $ "failed") (-640 |#4|))) (-15 -3677 ((-3 $ "failed") (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3677 ((-3 $ "failed") (-640 |#4|))) (-15 -3665 ((-640 $) (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3665 ((-640 $) (-640 |#4|))))) (-555) (-789) (-846) (-1059 |#1| |#2| |#3|)) (T -1270))
+((-3689 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-640 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1270 *5 *6 *7 *8)))) (-3689 (*1 *1 *2) (|partial| -12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-1270 *3 *4 *5 *6)))) (-3677 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-640 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1270 *5 *6 *7 *8)))) (-3677 (*1 *1 *2) (|partial| -12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-1270 *3 *4 *5 *6)))) (-3665 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-640 *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1059 *6 *7 *8)) (-4 *6 (-555)) (-4 *7 (-789)) (-4 *8 (-846)) (-5 *2 (-640 (-1270 *6 *7 *8 *9))) (-5 *1 (-1270 *6 *7 *8 *9)))) (-3665 (*1 *2 *3) (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 (-1270 *4 *5 *6 *7))) (-5 *1 (-1270 *4 *5 *6 *7)))))
+(-13 (-1201 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3689 ((-3 $ "failed") (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3689 ((-3 $ "failed") (-640 |#4|))) (-15 -3677 ((-3 $ "failed") (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3677 ((-3 $ "failed") (-640 |#4|))) (-15 -3665 ((-640 $) (-640 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3665 ((-640 $) (-640 |#4|)))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3905 (((-3 $ "failed") $ $) 19)) (-2569 (($) 17 T CONST)) (-3951 (((-3 $ "failed") $) 33)) (-3401 (((-112) $) 31)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#1|) 39)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ |#1|) 41) (($ |#1| $) 40)))
(((-1271 |#1|) (-140) (-1045)) (T -1271))
NIL
(-13 (-1045) (-111 |t#1| |t#1|) (-613 |t#1|) (-10 -7 (IF (|has| |t#1| (-172)) (-6 (-38 |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-172)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-610 (-858)) . T) ((-643 |#1|) . T) ((-643 $) . T) ((-713 |#1|) |has| |#1| (-172)) ((-722) . T) ((-1051 |#1|) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T))
-((-1677 (((-112) $ $) 59)) (-3411 (((-112) $) NIL)) (-3993 (((-640 |#1|) $) 45)) (-2872 (($ $ (-767)) 39)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3917 (($ $ (-767)) 18 (|has| |#2| (-172))) (($ $ $) 19 (|has| |#2| (-172)))) (-4239 (($) NIL T CONST)) (-3181 (($ $ $) 62) (($ $ (-815 |#1|)) 48) (($ $ |#1|) 52)) (-2131 (((-3 (-815 |#1|) "failed") $) NIL)) (-2058 (((-815 |#1|) $) NIL)) (-2751 (($ $) 32)) (-3400 (((-3 $ "failed") $) NIL)) (-3466 (((-112) $) NIL)) (-2396 (($ $) NIL)) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) NIL)) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-4222 (($ (-815 |#1|) |#2|) 31)) (-4337 (($ $) 33)) (-2976 (((-2 (|:| |k| (-815 |#1|)) (|:| |c| |#2|)) $) 12)) (-3761 (((-815 |#1|) $) NIL)) (-4176 (((-815 |#1|) $) 34)) (-2240 (($ (-1 |#2| |#2|) $) NIL)) (-3439 (($ $ $) 61) (($ $ (-815 |#1|)) 50) (($ $ |#1|) 54)) (-3115 (((-2 (|:| |k| (-815 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2716 (((-815 |#1|) $) 28)) (-2726 ((|#2| $) 30)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-4167 (((-767) $) 36)) (-4018 (((-112) $) 40)) (-2669 ((|#2| $) NIL)) (-1693 (((-858) $) NIL) (($ (-815 |#1|)) 24) (($ |#1|) 25) (($ |#2|) NIL) (($ (-563)) NIL)) (-1337 (((-640 |#2|) $) NIL)) (-4319 ((|#2| $ (-815 |#1|)) NIL)) (-2311 ((|#2| $ $) 64) ((|#2| $ (-815 |#1|)) NIL)) (-1675 (((-767)) NIL)) (-2241 (($) 13 T CONST)) (-2254 (($) 15 T CONST)) (-1531 (((-640 (-2 (|:| |k| (-815 |#1|)) (|:| |c| |#2|))) $) NIL)) (-1718 (((-112) $ $) 38)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) 22)) (** (($ $ (-767)) NIL) (($ $ (-917)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ |#2| $) 21) (($ $ |#2|) 60) (($ |#2| (-815 |#1|)) NIL) (($ |#1| $) 27) (($ $ $) NIL)))
+((-1677 (((-112) $ $) 59)) (-3439 (((-112) $) NIL)) (-3994 (((-640 |#1|) $) 45)) (-3862 (($ $ (-767)) 39)) (-3905 (((-3 $ "failed") $ $) NIL)) (-3783 (($ $ (-767)) 18 (|has| |#2| (-172))) (($ $ $) 19 (|has| |#2| (-172)))) (-2569 (($) NIL T CONST)) (-3817 (($ $ $) 62) (($ $ (-815 |#1|)) 48) (($ $ |#1|) 52)) (-2130 (((-3 (-815 |#1|) "failed") $) NIL)) (-2057 (((-815 |#1|) $) NIL)) (-2750 (($ $) 32)) (-3951 (((-3 $ "failed") $) NIL)) (-3894 (((-112) $) NIL)) (-3882 (($ $) NIL)) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) NIL)) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-4223 (($ (-815 |#1|) |#2|) 31)) (-3794 (($ $) 33)) (-3836 (((-2 (|:| |k| (-815 |#1|)) (|:| |c| |#2|)) $) 12)) (-3915 (((-815 |#1|) $) NIL)) (-3926 (((-815 |#1|) $) 34)) (-2238 (($ (-1 |#2| |#2|) $) NIL)) (-3828 (($ $ $) 61) (($ $ (-815 |#1|)) 50) (($ $ |#1|) 54)) (-4243 (((-2 (|:| |k| (-815 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2715 (((-815 |#1|) $) 28)) (-2725 ((|#2| $) 30)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3871 (((-767) $) 36)) (-3904 (((-112) $) 40)) (-2668 ((|#2| $) NIL)) (-1692 (((-858) $) NIL) (($ (-815 |#1|)) 24) (($ |#1|) 25) (($ |#2|) NIL) (($ (-563)) NIL)) (-3955 (((-640 |#2|) $) NIL)) (-3244 ((|#2| $ (-815 |#1|)) NIL)) (-2310 ((|#2| $ $) 64) ((|#2| $ (-815 |#1|)) NIL)) (-3914 (((-767)) NIL)) (-2239 (($) 13 T CONST)) (-2253 (($) 15 T CONST)) (-2891 (((-640 (-2 (|:| |k| (-815 |#1|)) (|:| |c| |#2|))) $) NIL)) (-1718 (((-112) $ $) 38)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) 22)) (** (($ $ (-767)) NIL) (($ $ (-917)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ |#2| $) 21) (($ $ |#2|) 60) (($ |#2| (-815 |#1|)) NIL) (($ |#1| $) 27) (($ $ $) NIL)))
(((-1272 |#1| |#2|) (-13 (-382 |#2| (-815 |#1|)) (-1278 |#1| |#2|)) (-846) (-1045)) (T -1272))
NIL
(-13 (-382 |#2| (-815 |#1|)) (-1278 |#1| |#2|))
-((-4371 ((|#3| |#3| (-767)) 23)) (-3368 ((|#3| |#3| (-767)) 27)) (-2564 ((|#3| |#3| |#3| (-767)) 28)))
-(((-1273 |#1| |#2| |#3|) (-10 -7 (-15 -3368 (|#3| |#3| (-767))) (-15 -4371 (|#3| |#3| (-767))) (-15 -2564 (|#3| |#3| |#3| (-767)))) (-13 (-1045) (-713 (-407 (-563)))) (-846) (-1278 |#2| |#1|)) (T -1273))
-((-2564 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-13 (-1045) (-713 (-407 (-563))))) (-4 *5 (-846)) (-5 *1 (-1273 *4 *5 *2)) (-4 *2 (-1278 *5 *4)))) (-4371 (*1 *2 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-13 (-1045) (-713 (-407 (-563))))) (-4 *5 (-846)) (-5 *1 (-1273 *4 *5 *2)) (-4 *2 (-1278 *5 *4)))) (-3368 (*1 *2 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-13 (-1045) (-713 (-407 (-563))))) (-4 *5 (-846)) (-5 *1 (-1273 *4 *5 *2)) (-4 *2 (-1278 *5 *4)))))
-(-10 -7 (-15 -3368 (|#3| |#3| (-767))) (-15 -4371 (|#3| |#3| (-767))) (-15 -2564 (|#3| |#3| |#3| (-767))))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-3993 (((-640 |#1|) $) 41)) (-1495 (((-3 $ "failed") $ $) 19)) (-3917 (($ $ $) 44 (|has| |#2| (-172))) (($ $ (-767)) 43 (|has| |#2| (-172)))) (-4239 (($) 17 T CONST)) (-3181 (($ $ |#1|) 55) (($ $ (-815 |#1|)) 54) (($ $ $) 53)) (-2131 (((-3 (-815 |#1|) "failed") $) 65)) (-2058 (((-815 |#1|) $) 66)) (-3400 (((-3 $ "failed") $) 33)) (-3466 (((-112) $) 46)) (-2396 (($ $) 45)) (-3827 (((-112) $) 31)) (-3920 (((-112) $) 51)) (-4222 (($ (-815 |#1|) |#2|) 52)) (-4337 (($ $) 50)) (-2976 (((-2 (|:| |k| (-815 |#1|)) (|:| |c| |#2|)) $) 61)) (-3761 (((-815 |#1|) $) 62)) (-2240 (($ (-1 |#2| |#2|) $) 42)) (-3439 (($ $ |#1|) 58) (($ $ (-815 |#1|)) 57) (($ $ $) 56)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-4018 (((-112) $) 48)) (-2669 ((|#2| $) 47)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#2|) 69) (($ (-815 |#1|)) 64) (($ |#1|) 49)) (-2311 ((|#2| $ (-815 |#1|)) 60) ((|#2| $ $) 59)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ |#2| $) 68) (($ $ |#2|) 67) (($ |#1| $) 63)))
+((-4372 ((|#3| |#3| (-767)) 23)) (-3372 ((|#3| |#3| (-767)) 27)) (-3703 ((|#3| |#3| |#3| (-767)) 28)))
+(((-1273 |#1| |#2| |#3|) (-10 -7 (-15 -3372 (|#3| |#3| (-767))) (-15 -4372 (|#3| |#3| (-767))) (-15 -3703 (|#3| |#3| |#3| (-767)))) (-13 (-1045) (-713 (-407 (-563)))) (-846) (-1278 |#2| |#1|)) (T -1273))
+((-3703 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-13 (-1045) (-713 (-407 (-563))))) (-4 *5 (-846)) (-5 *1 (-1273 *4 *5 *2)) (-4 *2 (-1278 *5 *4)))) (-4372 (*1 *2 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-13 (-1045) (-713 (-407 (-563))))) (-4 *5 (-846)) (-5 *1 (-1273 *4 *5 *2)) (-4 *2 (-1278 *5 *4)))) (-3372 (*1 *2 *2 *3) (-12 (-5 *3 (-767)) (-4 *4 (-13 (-1045) (-713 (-407 (-563))))) (-4 *5 (-846)) (-5 *1 (-1273 *4 *5 *2)) (-4 *2 (-1278 *5 *4)))))
+(-10 -7 (-15 -3372 (|#3| |#3| (-767))) (-15 -4372 (|#3| |#3| (-767))) (-15 -3703 (|#3| |#3| |#3| (-767))))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3994 (((-640 |#1|) $) 41)) (-3905 (((-3 $ "failed") $ $) 19)) (-3783 (($ $ $) 44 (|has| |#2| (-172))) (($ $ (-767)) 43 (|has| |#2| (-172)))) (-2569 (($) 17 T CONST)) (-3817 (($ $ |#1|) 55) (($ $ (-815 |#1|)) 54) (($ $ $) 53)) (-2130 (((-3 (-815 |#1|) "failed") $) 65)) (-2057 (((-815 |#1|) $) 66)) (-3951 (((-3 $ "failed") $) 33)) (-3894 (((-112) $) 46)) (-3882 (($ $) 45)) (-3401 (((-112) $) 31)) (-3805 (((-112) $) 51)) (-4223 (($ (-815 |#1|) |#2|) 52)) (-3794 (($ $) 50)) (-3836 (((-2 (|:| |k| (-815 |#1|)) (|:| |c| |#2|)) $) 61)) (-3915 (((-815 |#1|) $) 62)) (-2238 (($ (-1 |#2| |#2|) $) 42)) (-3828 (($ $ |#1|) 58) (($ $ (-815 |#1|)) 57) (($ $ $) 56)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-3904 (((-112) $) 48)) (-2668 ((|#2| $) 47)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#2|) 69) (($ (-815 |#1|)) 64) (($ |#1|) 49)) (-2310 ((|#2| $ (-815 |#1|)) 60) ((|#2| $ $) 59)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ |#2| $) 68) (($ $ |#2|) 67) (($ |#1| $) 63)))
(((-1274 |#1| |#2|) (-140) (-846) (-1045)) (T -1274))
-((* (*1 *1 *1 *2) (-12 (-4 *1 (-1274 *3 *2)) (-4 *3 (-846)) (-4 *2 (-1045)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-3761 (*1 *2 *1) (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-815 *3)))) (-2976 (*1 *2 *1) (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-2 (|:| |k| (-815 *3)) (|:| |c| *4))))) (-2311 (*1 *2 *1 *3) (-12 (-5 *3 (-815 *4)) (-4 *1 (-1274 *4 *2)) (-4 *4 (-846)) (-4 *2 (-1045)))) (-2311 (*1 *2 *1 *1) (-12 (-4 *1 (-1274 *3 *2)) (-4 *3 (-846)) (-4 *2 (-1045)))) (-3439 (*1 *1 *1 *2) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-3439 (*1 *1 *1 *2) (-12 (-5 *2 (-815 *3)) (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)))) (-3439 (*1 *1 *1 *1) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-3181 (*1 *1 *1 *2) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-3181 (*1 *1 *1 *2) (-12 (-5 *2 (-815 *3)) (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)))) (-3181 (*1 *1 *1 *1) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-4222 (*1 *1 *2 *3) (-12 (-5 *2 (-815 *4)) (-4 *4 (-846)) (-4 *1 (-1274 *4 *3)) (-4 *3 (-1045)))) (-3920 (*1 *2 *1) (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-112)))) (-4337 (*1 *1 *1) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-1693 (*1 *1 *2) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-4018 (*1 *2 *1) (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-112)))) (-2669 (*1 *2 *1) (-12 (-4 *1 (-1274 *3 *2)) (-4 *3 (-846)) (-4 *2 (-1045)))) (-3466 (*1 *2 *1) (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-112)))) (-2396 (*1 *1 *1) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-3917 (*1 *1 *1 *1) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)) (-4 *3 (-172)))) (-3917 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-4 *4 (-172)))) (-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)))) (-3993 (*1 *2 *1) (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-640 *3)))))
-(-13 (-1045) (-1271 |t#2|) (-1034 (-815 |t#1|)) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#2|)) (-15 -3761 ((-815 |t#1|) $)) (-15 -2976 ((-2 (|:| |k| (-815 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -2311 (|t#2| $ (-815 |t#1|))) (-15 -2311 (|t#2| $ $)) (-15 -3439 ($ $ |t#1|)) (-15 -3439 ($ $ (-815 |t#1|))) (-15 -3439 ($ $ $)) (-15 -3181 ($ $ |t#1|)) (-15 -3181 ($ $ (-815 |t#1|))) (-15 -3181 ($ $ $)) (-15 -4222 ($ (-815 |t#1|) |t#2|)) (-15 -3920 ((-112) $)) (-15 -4337 ($ $)) (-15 -1693 ($ |t#1|)) (-15 -4018 ((-112) $)) (-15 -2669 (|t#2| $)) (-15 -3466 ((-112) $)) (-15 -2396 ($ $)) (IF (|has| |t#2| (-172)) (PROGN (-15 -3917 ($ $ $)) (-15 -3917 ($ $ (-767)))) |%noBranch|) (-15 -2240 ($ (-1 |t#2| |t#2|) $)) (-15 -3993 ((-640 |t#1|) $)) (IF (|has| |t#2| (-6 -4400)) (-6 -4400) |%noBranch|)))
+((* (*1 *1 *1 *2) (-12 (-4 *1 (-1274 *3 *2)) (-4 *3 (-846)) (-4 *2 (-1045)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-3915 (*1 *2 *1) (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-815 *3)))) (-3836 (*1 *2 *1) (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-2 (|:| |k| (-815 *3)) (|:| |c| *4))))) (-2310 (*1 *2 *1 *3) (-12 (-5 *3 (-815 *4)) (-4 *1 (-1274 *4 *2)) (-4 *4 (-846)) (-4 *2 (-1045)))) (-2310 (*1 *2 *1 *1) (-12 (-4 *1 (-1274 *3 *2)) (-4 *3 (-846)) (-4 *2 (-1045)))) (-3828 (*1 *1 *1 *2) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-3828 (*1 *1 *1 *2) (-12 (-5 *2 (-815 *3)) (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)))) (-3828 (*1 *1 *1 *1) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-3817 (*1 *1 *1 *2) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-3817 (*1 *1 *1 *2) (-12 (-5 *2 (-815 *3)) (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)))) (-3817 (*1 *1 *1 *1) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-4223 (*1 *1 *2 *3) (-12 (-5 *2 (-815 *4)) (-4 *4 (-846)) (-4 *1 (-1274 *4 *3)) (-4 *3 (-1045)))) (-3805 (*1 *2 *1) (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-112)))) (-3794 (*1 *1 *1) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-1692 (*1 *1 *2) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-3904 (*1 *2 *1) (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-112)))) (-2668 (*1 *2 *1) (-12 (-4 *1 (-1274 *3 *2)) (-4 *3 (-846)) (-4 *2 (-1045)))) (-3894 (*1 *2 *1) (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-112)))) (-3882 (*1 *1 *1) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))) (-3783 (*1 *1 *1 *1) (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)) (-4 *3 (-172)))) (-3783 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-4 *4 (-172)))) (-2238 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)))) (-3994 (*1 *2 *1) (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-640 *3)))))
+(-13 (-1045) (-1271 |t#2|) (-1034 (-815 |t#1|)) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#2|)) (-15 -3915 ((-815 |t#1|) $)) (-15 -3836 ((-2 (|:| |k| (-815 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -2310 (|t#2| $ (-815 |t#1|))) (-15 -2310 (|t#2| $ $)) (-15 -3828 ($ $ |t#1|)) (-15 -3828 ($ $ (-815 |t#1|))) (-15 -3828 ($ $ $)) (-15 -3817 ($ $ |t#1|)) (-15 -3817 ($ $ (-815 |t#1|))) (-15 -3817 ($ $ $)) (-15 -4223 ($ (-815 |t#1|) |t#2|)) (-15 -3805 ((-112) $)) (-15 -3794 ($ $)) (-15 -1692 ($ |t#1|)) (-15 -3904 ((-112) $)) (-15 -2668 (|t#2| $)) (-15 -3894 ((-112) $)) (-15 -3882 ($ $)) (IF (|has| |t#2| (-172)) (PROGN (-15 -3783 ($ $ $)) (-15 -3783 ($ $ (-767)))) |%noBranch|) (-15 -2238 ($ (-1 |t#2| |t#2|) $)) (-15 -3994 ((-640 |t#1|) $)) (IF (|has| |t#2| (-6 -4401)) (-6 -4401) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#2|) |has| |#2| (-172)) ((-102) . T) ((-111 |#2| |#2|) . T) ((-131) . T) ((-613 (-563)) . T) ((-613 #0=(-815 |#1|)) . T) ((-613 |#2|) . T) ((-610 (-858)) . T) ((-643 |#2|) . T) ((-643 $) . T) ((-713 |#2|) |has| |#2| (-172)) ((-722) . T) ((-1034 #0#) . T) ((-1051 |#2|) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1271 |#2|) . T))
-((-2388 (((-112) $) 14)) (-3152 (((-112) $) 13)) (-2350 (($ $) 18) (($ $ (-767)) 19)))
-(((-1275 |#1| |#2|) (-10 -8 (-15 -2350 (|#1| |#1| (-767))) (-15 -2350 (|#1| |#1|)) (-15 -2388 ((-112) |#1|)) (-15 -3152 ((-112) |#1|))) (-1276 |#2|) (-363)) (T -1275))
+((-3761 (((-112) $) 14)) (-3772 (((-112) $) 13)) (-3715 (($ $) 18) (($ $ (-767)) 19)))
+(((-1275 |#1| |#2|) (-10 -8 (-15 -3715 (|#1| |#1| (-767))) (-15 -3715 (|#1| |#1|)) (-15 -3761 ((-112) |#1|)) (-15 -3772 ((-112) |#1|))) (-1276 |#2|) (-363)) (T -1275))
NIL
-(-10 -8 (-15 -2350 (|#1| |#1| (-767))) (-15 -2350 (|#1| |#1|)) (-15 -2388 ((-112) |#1|)) (-15 -3152 ((-112) |#1|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-4372 (((-2 (|:| -1414 $) (|:| -4394 $) (|:| |associate| $)) $) 42)) (-4223 (($ $) 41)) (-3156 (((-112) $) 39)) (-2388 (((-112) $) 95)) (-3259 (((-767)) 91)) (-1495 (((-3 $ "failed") $ $) 19)) (-4335 (($ $) 74)) (-3205 (((-418 $) $) 73)) (-1919 (((-112) $ $) 60)) (-4239 (($) 17 T CONST)) (-2131 (((-3 |#1| "failed") $) 102)) (-2058 ((|#1| $) 103)) (-3090 (($ $ $) 56)) (-3400 (((-3 $ "failed") $) 33)) (-3050 (($ $ $) 57)) (-3286 (((-2 (|:| -2311 (-640 $)) (|:| -4333 $)) (-640 $)) 52)) (-1637 (($ $ (-767)) 88 (-4032 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) 87 (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2468 (((-112) $) 72)) (-3254 (((-829 (-917)) $) 85 (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3827 (((-112) $) 31)) (-3643 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3513 (($ $ $) 47) (($ (-640 $)) 46)) (-3573 (((-1151) $) 9)) (-2688 (($ $) 71)) (-3013 (((-112) $) 94)) (-1694 (((-1113) $) 10)) (-3385 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3548 (($ $ $) 49) (($ (-640 $)) 48)) (-2174 (((-418 $) $) 75)) (-1467 (((-829 (-917))) 92)) (-3678 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4333 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3008 (((-3 $ "failed") $ $) 43)) (-1465 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-2628 (((-767) $) 59)) (-2452 (((-2 (|:| -3490 $) (|:| -1972 $)) $ $) 58)) (-1423 (((-3 (-767) "failed") $ $) 86 (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3533 (((-134)) 100)) (-4167 (((-829 (-917)) $) 93)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67) (($ |#1|) 101)) (-2779 (((-3 $ "failed") $) 84 (-4032 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-1675 (((-767)) 28)) (-2126 (((-112) $ $) 40)) (-3152 (((-112) $) 96)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-2350 (($ $) 90 (|has| |#1| (-368))) (($ $ (-767)) 89 (|has| |#1| (-368)))) (-1718 (((-112) $ $) 6)) (-1837 (($ $ $) 66) (($ $ |#1|) 99)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68) (($ $ |#1|) 98) (($ |#1| $) 97)))
+(-10 -8 (-15 -3715 (|#1| |#1| (-767))) (-15 -3715 (|#1| |#1|)) (-15 -3761 ((-112) |#1|)) (-15 -3772 ((-112) |#1|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3241 (((-2 (|:| -3245 $) (|:| -4395 $) (|:| |associate| $)) $) 42)) (-3231 (($ $) 41)) (-3211 (((-112) $) 39)) (-3761 (((-112) $) 95)) (-3728 (((-767)) 91)) (-3905 (((-3 $ "failed") $ $) 19)) (-1798 (($ $) 74)) (-2802 (((-418 $) $) 73)) (-2003 (((-112) $ $) 60)) (-2569 (($) 17 T CONST)) (-2130 (((-3 |#1| "failed") $) 102)) (-2057 ((|#1| $) 103)) (-3094 (($ $ $) 56)) (-3951 (((-3 $ "failed") $) 33)) (-3054 (($ $ $) 57)) (-2474 (((-2 (|:| -2310 (-640 $)) (|:| -4334 $)) (-640 $)) 52)) (-3188 (($ $ (-767)) 88 (-4034 (|has| |#1| (-145)) (|has| |#1| (-368)))) (($ $) 87 (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-2560 (((-112) $) 72)) (-1775 (((-829 (-917)) $) 85 (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3401 (((-112) $) 31)) (-1977 (((-3 (-640 $) "failed") (-640 $) $) 53)) (-3517 (($ $ $) 47) (($ (-640 $)) 46)) (-3854 (((-1151) $) 9)) (-2687 (($ $) 71)) (-3751 (((-112) $) 94)) (-1693 (((-1113) $) 10)) (-2103 (((-1165 $) (-1165 $) (-1165 $)) 45)) (-3551 (($ $ $) 49) (($ (-640 $)) 48)) (-2173 (((-418 $) $) 75)) (-3740 (((-829 (-917))) 92)) (-1984 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4334 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-3012 (((-3 $ "failed") $ $) 43)) (-2461 (((-3 (-640 $) "failed") (-640 $) $) 51)) (-1993 (((-767) $) 59)) (-3263 (((-2 (|:| -1765 $) (|:| -3443 $)) $ $) 58)) (-3196 (((-3 (-767) "failed") $ $) 86 (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3526 (((-134)) 100)) (-3871 (((-829 (-917)) $) 93)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ $) 44) (($ (-407 (-563))) 67) (($ |#1|) 101)) (-2047 (((-3 $ "failed") $) 84 (-4034 (|has| |#1| (-145)) (|has| |#1| (-368))))) (-3914 (((-767)) 28)) (-3223 (((-112) $ $) 40)) (-3772 (((-112) $) 96)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-3715 (($ $) 90 (|has| |#1| (-368))) (($ $ (-767)) 89 (|has| |#1| (-368)))) (-1718 (((-112) $ $) 6)) (-1836 (($ $ $) 66) (($ $ |#1|) 99)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32) (($ $ (-563)) 70)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ $ (-407 (-563))) 69) (($ (-407 (-563)) $) 68) (($ $ |#1|) 98) (($ |#1| $) 97)))
(((-1276 |#1|) (-140) (-363)) (T -1276))
-((-3152 (*1 *2 *1) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-112)))) (-2388 (*1 *2 *1) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-112)))) (-3013 (*1 *2 *1) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-112)))) (-4167 (*1 *2 *1) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-829 (-917))))) (-1467 (*1 *2) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-829 (-917))))) (-3259 (*1 *2) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-767)))) (-2350 (*1 *1 *1) (-12 (-4 *1 (-1276 *2)) (-4 *2 (-363)) (-4 *2 (-368)))) (-2350 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-4 *3 (-368)))))
-(-13 (-363) (-1034 |t#1|) (-1264 |t#1|) (-10 -8 (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-402)) |%noBranch|) (-15 -3152 ((-112) $)) (-15 -2388 ((-112) $)) (-15 -3013 ((-112) $)) (-15 -4167 ((-829 (-917)) $)) (-15 -1467 ((-829 (-917)))) (-15 -3259 ((-767))) (IF (|has| |t#1| (-368)) (PROGN (-6 (-402)) (-15 -2350 ($ $)) (-15 -2350 ($ $ (-767)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-131) . T) ((-145) -4032 (|has| |#1| (-368)) (|has| |#1| (-145))) ((-147) |has| |#1| (-147)) ((-613 #0#) . T) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-243) . T) ((-290) . T) ((-307) . T) ((-363) . T) ((-402) -4032 (|has| |#1| (-368)) (|has| |#1| (-145))) ((-452) . T) ((-555) . T) ((-643 #0#) . T) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #0#) . T) ((-713 |#1|) . T) ((-713 $) . T) ((-722) . T) ((-916) . T) ((-1034 |#1|) . T) ((-1051 #0#) . T) ((-1051 |#1|) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1212) . T) ((-1264 |#1|) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3993 (((-640 |#1|) $) 85)) (-2872 (($ $ (-767)) 88)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3917 (($ $ $) NIL (|has| |#2| (-172))) (($ $ (-767)) NIL (|has| |#2| (-172)))) (-4239 (($) NIL T CONST)) (-3181 (($ $ |#1|) NIL) (($ $ (-815 |#1|)) NIL) (($ $ $) NIL)) (-2131 (((-3 (-815 |#1|) "failed") $) NIL) (((-3 (-889 |#1|) "failed") $) NIL)) (-2058 (((-815 |#1|) $) NIL) (((-889 |#1|) $) NIL)) (-2751 (($ $) 87)) (-3400 (((-3 $ "failed") $) NIL)) (-3466 (((-112) $) 76)) (-2396 (($ $) 80)) (-2041 (($ $ $ (-767)) 89)) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) NIL)) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-4222 (($ (-815 |#1|) |#2|) NIL) (($ (-889 |#1|) |#2|) 25)) (-4337 (($ $) 102)) (-2976 (((-2 (|:| |k| (-815 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3761 (((-815 |#1|) $) NIL)) (-4176 (((-815 |#1|) $) NIL)) (-2240 (($ (-1 |#2| |#2|) $) NIL)) (-3439 (($ $ |#1|) NIL) (($ $ (-815 |#1|)) NIL) (($ $ $) NIL)) (-4371 (($ $ (-767)) 96 (|has| |#2| (-713 (-407 (-563)))))) (-3115 (((-2 (|:| |k| (-889 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2716 (((-889 |#1|) $) 69)) (-2726 ((|#2| $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-3368 (($ $ (-767)) 93 (|has| |#2| (-713 (-407 (-563)))))) (-4167 (((-767) $) 86)) (-4018 (((-112) $) 70)) (-2669 ((|#2| $) 74)) (-1693 (((-858) $) 56) (($ (-563)) NIL) (($ |#2|) 50) (($ (-815 |#1|)) NIL) (($ |#1|) 58) (($ (-889 |#1|)) NIL) (($ (-659 |#1| |#2|)) 42) (((-1272 |#1| |#2|) $) 63) (((-1281 |#1| |#2|) $) 68)) (-1337 (((-640 |#2|) $) NIL)) (-4319 ((|#2| $ (-889 |#1|)) NIL)) (-2311 ((|#2| $ (-815 |#1|)) NIL) ((|#2| $ $) NIL)) (-1675 (((-767)) NIL)) (-2241 (($) 21 T CONST)) (-2254 (($) 24 T CONST)) (-1531 (((-640 (-2 (|:| |k| (-889 |#1|)) (|:| |c| |#2|))) $) NIL)) (-2343 (((-3 (-659 |#1| |#2|) "failed") $) 101)) (-1718 (((-112) $ $) 64)) (-1826 (($ $) 95) (($ $ $) 94)) (-1814 (($ $ $) 20)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 43) (($ |#2| $) 19) (($ $ |#2|) NIL) (($ |#1| $) NIL) (($ |#2| (-889 |#1|)) NIL)))
-(((-1277 |#1| |#2|) (-13 (-1278 |#1| |#2|) (-382 |#2| (-889 |#1|)) (-10 -8 (-15 -1693 ($ (-659 |#1| |#2|))) (-15 -1693 ((-1272 |#1| |#2|) $)) (-15 -1693 ((-1281 |#1| |#2|) $)) (-15 -2343 ((-3 (-659 |#1| |#2|) "failed") $)) (-15 -2041 ($ $ $ (-767))) (IF (|has| |#2| (-713 (-407 (-563)))) (PROGN (-15 -3368 ($ $ (-767))) (-15 -4371 ($ $ (-767)))) |%noBranch|))) (-846) (-172)) (T -1277))
-((-1693 (*1 *1 *2) (-12 (-5 *2 (-659 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)) (-5 *1 (-1277 *3 *4)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-1272 *3 *4)) (-5 *1 (-1277 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-1281 *3 *4)) (-5 *1 (-1277 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)))) (-2343 (*1 *2 *1) (|partial| -12 (-5 *2 (-659 *3 *4)) (-5 *1 (-1277 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)))) (-2041 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1277 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)))) (-3368 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1277 *3 *4)) (-4 *4 (-713 (-407 (-563)))) (-4 *3 (-846)) (-4 *4 (-172)))) (-4371 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1277 *3 *4)) (-4 *4 (-713 (-407 (-563)))) (-4 *3 (-846)) (-4 *4 (-172)))))
-(-13 (-1278 |#1| |#2|) (-382 |#2| (-889 |#1|)) (-10 -8 (-15 -1693 ($ (-659 |#1| |#2|))) (-15 -1693 ((-1272 |#1| |#2|) $)) (-15 -1693 ((-1281 |#1| |#2|) $)) (-15 -2343 ((-3 (-659 |#1| |#2|) "failed") $)) (-15 -2041 ($ $ $ (-767))) (IF (|has| |#2| (-713 (-407 (-563)))) (PROGN (-15 -3368 ($ $ (-767))) (-15 -4371 ($ $ (-767)))) |%noBranch|)))
-((-1677 (((-112) $ $) 7)) (-3411 (((-112) $) 16)) (-3993 (((-640 |#1|) $) 41)) (-2872 (($ $ (-767)) 74)) (-1495 (((-3 $ "failed") $ $) 19)) (-3917 (($ $ $) 44 (|has| |#2| (-172))) (($ $ (-767)) 43 (|has| |#2| (-172)))) (-4239 (($) 17 T CONST)) (-3181 (($ $ |#1|) 55) (($ $ (-815 |#1|)) 54) (($ $ $) 53)) (-2131 (((-3 (-815 |#1|) "failed") $) 65)) (-2058 (((-815 |#1|) $) 66)) (-3400 (((-3 $ "failed") $) 33)) (-3466 (((-112) $) 46)) (-2396 (($ $) 45)) (-3827 (((-112) $) 31)) (-3920 (((-112) $) 51)) (-4222 (($ (-815 |#1|) |#2|) 52)) (-4337 (($ $) 50)) (-2976 (((-2 (|:| |k| (-815 |#1|)) (|:| |c| |#2|)) $) 61)) (-3761 (((-815 |#1|) $) 62)) (-4176 (((-815 |#1|) $) 76)) (-2240 (($ (-1 |#2| |#2|) $) 42)) (-3439 (($ $ |#1|) 58) (($ $ (-815 |#1|)) 57) (($ $ $) 56)) (-3573 (((-1151) $) 9)) (-1694 (((-1113) $) 10)) (-4167 (((-767) $) 75)) (-4018 (((-112) $) 48)) (-2669 ((|#2| $) 47)) (-1693 (((-858) $) 11) (($ (-563)) 29) (($ |#2|) 69) (($ (-815 |#1|)) 64) (($ |#1|) 49)) (-2311 ((|#2| $ (-815 |#1|)) 60) ((|#2| $ $) 59)) (-1675 (((-767)) 28)) (-2241 (($) 18 T CONST)) (-2254 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1826 (($ $) 22) (($ $ $) 21)) (-1814 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ |#2| $) 68) (($ $ |#2|) 67) (($ |#1| $) 63)))
+((-3772 (*1 *2 *1) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-112)))) (-3761 (*1 *2 *1) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-112)))) (-3751 (*1 *2 *1) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-112)))) (-3871 (*1 *2 *1) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-829 (-917))))) (-3740 (*1 *2) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-829 (-917))))) (-3728 (*1 *2) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-767)))) (-3715 (*1 *1 *1) (-12 (-4 *1 (-1276 *2)) (-4 *2 (-363)) (-4 *2 (-368)))) (-3715 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-4 *3 (-368)))))
+(-13 (-363) (-1034 |t#1|) (-1264 |t#1|) (-10 -8 (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-402)) |%noBranch|) (-15 -3772 ((-112) $)) (-15 -3761 ((-112) $)) (-15 -3751 ((-112) $)) (-15 -3871 ((-829 (-917)) $)) (-15 -3740 ((-829 (-917)))) (-15 -3728 ((-767))) (IF (|has| |t#1| (-368)) (PROGN (-6 (-402)) (-15 -3715 ($ $)) (-15 -3715 ($ $ (-767)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-407 (-563))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-131) . T) ((-145) -4034 (|has| |#1| (-368)) (|has| |#1| (-145))) ((-147) |has| |#1| (-147)) ((-613 #0#) . T) ((-613 (-563)) . T) ((-613 |#1|) . T) ((-613 $) . T) ((-610 (-858)) . T) ((-172) . T) ((-243) . T) ((-290) . T) ((-307) . T) ((-363) . T) ((-402) -4034 (|has| |#1| (-368)) (|has| |#1| (-145))) ((-452) . T) ((-555) . T) ((-643 #0#) . T) ((-643 |#1|) . T) ((-643 $) . T) ((-713 #0#) . T) ((-713 |#1|) . T) ((-713 $) . T) ((-722) . T) ((-916) . T) ((-1034 |#1|) . T) ((-1051 #0#) . T) ((-1051 |#1|) . T) ((-1051 $) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1212) . T) ((-1264 |#1|) . T))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3994 (((-640 |#1|) $) 85)) (-3862 (($ $ (-767)) 88)) (-3905 (((-3 $ "failed") $ $) NIL)) (-3783 (($ $ $) NIL (|has| |#2| (-172))) (($ $ (-767)) NIL (|has| |#2| (-172)))) (-2569 (($) NIL T CONST)) (-3817 (($ $ |#1|) NIL) (($ $ (-815 |#1|)) NIL) (($ $ $) NIL)) (-2130 (((-3 (-815 |#1|) "failed") $) NIL) (((-3 (-889 |#1|) "failed") $) NIL)) (-2057 (((-815 |#1|) $) NIL) (((-889 |#1|) $) NIL)) (-2750 (($ $) 87)) (-3951 (((-3 $ "failed") $) NIL)) (-3894 (((-112) $) 76)) (-3882 (($ $) 80)) (-3846 (($ $ $ (-767)) 89)) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) NIL)) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-4223 (($ (-815 |#1|) |#2|) NIL) (($ (-889 |#1|) |#2|) 25)) (-3794 (($ $) 102)) (-3836 (((-2 (|:| |k| (-815 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3915 (((-815 |#1|) $) NIL)) (-3926 (((-815 |#1|) $) NIL)) (-2238 (($ (-1 |#2| |#2|) $) NIL)) (-3828 (($ $ |#1|) NIL) (($ $ (-815 |#1|)) NIL) (($ $ $) NIL)) (-4372 (($ $ (-767)) 96 (|has| |#2| (-713 (-407 (-563)))))) (-4243 (((-2 (|:| |k| (-889 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2715 (((-889 |#1|) $) 69)) (-2725 ((|#2| $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3372 (($ $ (-767)) 93 (|has| |#2| (-713 (-407 (-563)))))) (-3871 (((-767) $) 86)) (-3904 (((-112) $) 70)) (-2668 ((|#2| $) 74)) (-1692 (((-858) $) 56) (($ (-563)) NIL) (($ |#2|) 50) (($ (-815 |#1|)) NIL) (($ |#1|) 58) (($ (-889 |#1|)) NIL) (($ (-659 |#1| |#2|)) 42) (((-1272 |#1| |#2|) $) 63) (((-1281 |#1| |#2|) $) 68)) (-3955 (((-640 |#2|) $) NIL)) (-3244 ((|#2| $ (-889 |#1|)) NIL)) (-2310 ((|#2| $ (-815 |#1|)) NIL) ((|#2| $ $) NIL)) (-3914 (((-767)) NIL)) (-2239 (($) 21 T CONST)) (-2253 (($) 24 T CONST)) (-2891 (((-640 (-2 (|:| |k| (-889 |#1|)) (|:| |c| |#2|))) $) NIL)) (-3855 (((-3 (-659 |#1| |#2|) "failed") $) 101)) (-1718 (((-112) $ $) 64)) (-1825 (($ $) 95) (($ $ $) 94)) (-1813 (($ $ $) 20)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 43) (($ |#2| $) 19) (($ $ |#2|) NIL) (($ |#1| $) NIL) (($ |#2| (-889 |#1|)) NIL)))
+(((-1277 |#1| |#2|) (-13 (-1278 |#1| |#2|) (-382 |#2| (-889 |#1|)) (-10 -8 (-15 -1692 ($ (-659 |#1| |#2|))) (-15 -1692 ((-1272 |#1| |#2|) $)) (-15 -1692 ((-1281 |#1| |#2|) $)) (-15 -3855 ((-3 (-659 |#1| |#2|) "failed") $)) (-15 -3846 ($ $ $ (-767))) (IF (|has| |#2| (-713 (-407 (-563)))) (PROGN (-15 -3372 ($ $ (-767))) (-15 -4372 ($ $ (-767)))) |%noBranch|))) (-846) (-172)) (T -1277))
+((-1692 (*1 *1 *2) (-12 (-5 *2 (-659 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)) (-5 *1 (-1277 *3 *4)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-1272 *3 *4)) (-5 *1 (-1277 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)))) (-1692 (*1 *2 *1) (-12 (-5 *2 (-1281 *3 *4)) (-5 *1 (-1277 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)))) (-3855 (*1 *2 *1) (|partial| -12 (-5 *2 (-659 *3 *4)) (-5 *1 (-1277 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)))) (-3846 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1277 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172)))) (-3372 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1277 *3 *4)) (-4 *4 (-713 (-407 (-563)))) (-4 *3 (-846)) (-4 *4 (-172)))) (-4372 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1277 *3 *4)) (-4 *4 (-713 (-407 (-563)))) (-4 *3 (-846)) (-4 *4 (-172)))))
+(-13 (-1278 |#1| |#2|) (-382 |#2| (-889 |#1|)) (-10 -8 (-15 -1692 ($ (-659 |#1| |#2|))) (-15 -1692 ((-1272 |#1| |#2|) $)) (-15 -1692 ((-1281 |#1| |#2|) $)) (-15 -3855 ((-3 (-659 |#1| |#2|) "failed") $)) (-15 -3846 ($ $ $ (-767))) (IF (|has| |#2| (-713 (-407 (-563)))) (PROGN (-15 -3372 ($ $ (-767))) (-15 -4372 ($ $ (-767)))) |%noBranch|)))
+((-1677 (((-112) $ $) 7)) (-3439 (((-112) $) 16)) (-3994 (((-640 |#1|) $) 41)) (-3862 (($ $ (-767)) 74)) (-3905 (((-3 $ "failed") $ $) 19)) (-3783 (($ $ $) 44 (|has| |#2| (-172))) (($ $ (-767)) 43 (|has| |#2| (-172)))) (-2569 (($) 17 T CONST)) (-3817 (($ $ |#1|) 55) (($ $ (-815 |#1|)) 54) (($ $ $) 53)) (-2130 (((-3 (-815 |#1|) "failed") $) 65)) (-2057 (((-815 |#1|) $) 66)) (-3951 (((-3 $ "failed") $) 33)) (-3894 (((-112) $) 46)) (-3882 (($ $) 45)) (-3401 (((-112) $) 31)) (-3805 (((-112) $) 51)) (-4223 (($ (-815 |#1|) |#2|) 52)) (-3794 (($ $) 50)) (-3836 (((-2 (|:| |k| (-815 |#1|)) (|:| |c| |#2|)) $) 61)) (-3915 (((-815 |#1|) $) 62)) (-3926 (((-815 |#1|) $) 76)) (-2238 (($ (-1 |#2| |#2|) $) 42)) (-3828 (($ $ |#1|) 58) (($ $ (-815 |#1|)) 57) (($ $ $) 56)) (-3854 (((-1151) $) 9)) (-1693 (((-1113) $) 10)) (-3871 (((-767) $) 75)) (-3904 (((-112) $) 48)) (-2668 ((|#2| $) 47)) (-1692 (((-858) $) 11) (($ (-563)) 29) (($ |#2|) 69) (($ (-815 |#1|)) 64) (($ |#1|) 49)) (-2310 ((|#2| $ (-815 |#1|)) 60) ((|#2| $ $) 59)) (-3914 (((-767)) 28)) (-2239 (($) 18 T CONST)) (-2253 (($) 30 T CONST)) (-1718 (((-112) $ $) 6)) (-1825 (($ $) 22) (($ $ $) 21)) (-1813 (($ $ $) 14)) (** (($ $ (-917)) 25) (($ $ (-767)) 32)) (* (($ (-917) $) 13) (($ (-767) $) 15) (($ (-563) $) 20) (($ $ $) 24) (($ |#2| $) 68) (($ $ |#2|) 67) (($ |#1| $) 63)))
(((-1278 |#1| |#2|) (-140) (-846) (-1045)) (T -1278))
-((-4176 (*1 *2 *1) (-12 (-4 *1 (-1278 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-815 *3)))) (-4167 (*1 *2 *1) (-12 (-4 *1 (-1278 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-767)))) (-2872 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1278 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)))))
-(-13 (-1274 |t#1| |t#2|) (-10 -8 (-15 -4176 ((-815 |t#1|) $)) (-15 -4167 ((-767) $)) (-15 -2872 ($ $ (-767)))))
+((-3926 (*1 *2 *1) (-12 (-4 *1 (-1278 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-815 *3)))) (-3871 (*1 *2 *1) (-12 (-4 *1 (-1278 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *2 (-767)))) (-3862 (*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-4 *1 (-1278 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)))))
+(-13 (-1274 |t#1| |t#2|) (-10 -8 (-15 -3926 ((-815 |t#1|) $)) (-15 -3871 ((-767) $)) (-15 -3862 ($ $ (-767)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#2|) |has| |#2| (-172)) ((-102) . T) ((-111 |#2| |#2|) . T) ((-131) . T) ((-613 (-563)) . T) ((-613 #0=(-815 |#1|)) . T) ((-613 |#2|) . T) ((-610 (-858)) . T) ((-643 |#2|) . T) ((-643 $) . T) ((-713 |#2|) |has| |#2| (-172)) ((-722) . T) ((-1034 #0#) . T) ((-1051 |#2|) . T) ((-1045) . T) ((-1052) . T) ((-1105) . T) ((-1093) . T) ((-1271 |#2|) . T) ((-1274 |#1| |#2|) . T))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-3993 (((-640 (-1169)) $) NIL)) (-3249 (($ (-1272 (-1169) |#1|)) NIL)) (-2872 (($ $ (-767)) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3917 (($ $ $) NIL (|has| |#1| (-172))) (($ $ (-767)) NIL (|has| |#1| (-172)))) (-4239 (($) NIL T CONST)) (-3181 (($ $ (-1169)) NIL) (($ $ (-815 (-1169))) NIL) (($ $ $) NIL)) (-2131 (((-3 (-815 (-1169)) "failed") $) NIL)) (-2058 (((-815 (-1169)) $) NIL)) (-3400 (((-3 $ "failed") $) NIL)) (-3466 (((-112) $) NIL)) (-2396 (($ $) NIL)) (-3827 (((-112) $) NIL)) (-3920 (((-112) $) NIL)) (-4222 (($ (-815 (-1169)) |#1|) NIL)) (-4337 (($ $) NIL)) (-2976 (((-2 (|:| |k| (-815 (-1169))) (|:| |c| |#1|)) $) NIL)) (-3761 (((-815 (-1169)) $) NIL)) (-4176 (((-815 (-1169)) $) NIL)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-3439 (($ $ (-1169)) NIL) (($ $ (-815 (-1169))) NIL) (($ $ $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2213 (((-1272 (-1169) |#1|) $) NIL)) (-4167 (((-767) $) NIL)) (-4018 (((-112) $) NIL)) (-2669 ((|#1| $) NIL)) (-1693 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-815 (-1169))) NIL) (($ (-1169)) NIL)) (-2311 ((|#1| $ (-815 (-1169))) NIL) ((|#1| $ $) NIL)) (-1675 (((-767)) NIL)) (-2241 (($) NIL T CONST)) (-3398 (((-640 (-2 (|:| |k| (-1169)) (|:| |c| $))) $) NIL)) (-2254 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-1169) $) NIL)))
-(((-1279 |#1|) (-13 (-1278 (-1169) |#1|) (-10 -8 (-15 -2213 ((-1272 (-1169) |#1|) $)) (-15 -3249 ($ (-1272 (-1169) |#1|))) (-15 -3398 ((-640 (-2 (|:| |k| (-1169)) (|:| |c| $))) $)))) (-1045)) (T -1279))
-((-2213 (*1 *2 *1) (-12 (-5 *2 (-1272 (-1169) *3)) (-5 *1 (-1279 *3)) (-4 *3 (-1045)))) (-3249 (*1 *1 *2) (-12 (-5 *2 (-1272 (-1169) *3)) (-4 *3 (-1045)) (-5 *1 (-1279 *3)))) (-3398 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |k| (-1169)) (|:| |c| (-1279 *3))))) (-5 *1 (-1279 *3)) (-4 *3 (-1045)))))
-(-13 (-1278 (-1169) |#1|) (-10 -8 (-15 -2213 ((-1272 (-1169) |#1|) $)) (-15 -3249 ($ (-1272 (-1169) |#1|))) (-15 -3398 ((-640 (-2 (|:| |k| (-1169)) (|:| |c| $))) $))))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) NIL)) (-1495 (((-3 $ "failed") $ $) NIL)) (-4239 (($) NIL T CONST)) (-2131 (((-3 |#2| "failed") $) NIL)) (-2058 ((|#2| $) NIL)) (-2751 (($ $) NIL)) (-3400 (((-3 $ "failed") $) 35)) (-3466 (((-112) $) 30)) (-2396 (($ $) 31)) (-3827 (((-112) $) NIL)) (-4096 (((-767) $) NIL)) (-1368 (((-640 $) $) NIL)) (-3920 (((-112) $) NIL)) (-4222 (($ |#2| |#1|) NIL)) (-3761 ((|#2| $) 19)) (-4176 ((|#2| $) 16)) (-2240 (($ (-1 |#1| |#1|) $) NIL)) (-3115 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-2716 ((|#2| $) NIL)) (-2726 ((|#1| $) NIL)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-4018 (((-112) $) 27)) (-2669 ((|#1| $) 28)) (-1693 (((-858) $) 54) (($ (-563)) 39) (($ |#1|) 34) (($ |#2|) NIL)) (-1337 (((-640 |#1|) $) NIL)) (-4319 ((|#1| $ |#2|) NIL)) (-2311 ((|#1| $ |#2|) 24)) (-1675 (((-767)) 14)) (-2241 (($) 25 T CONST)) (-2254 (($) 11 T CONST)) (-1531 (((-640 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-1718 (((-112) $ $) 26)) (-1837 (($ $ |#1|) 56 (|has| |#1| (-363)))) (-1826 (($ $) NIL) (($ $ $) NIL)) (-1814 (($ $ $) 43)) (** (($ $ (-917)) NIL) (($ $ (-767)) 45)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 44) (($ |#1| $) 40) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-3608 (((-767) $) 15)))
-(((-1280 |#1| |#2|) (-13 (-1045) (-1271 |#1|) (-382 |#1| |#2|) (-613 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3608 ((-767) $)) (-15 -4176 (|#2| $)) (-15 -3761 (|#2| $)) (-15 -2751 ($ $)) (-15 -2311 (|#1| $ |#2|)) (-15 -4018 ((-112) $)) (-15 -2669 (|#1| $)) (-15 -3466 ((-112) $)) (-15 -2396 ($ $)) (-15 -2240 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-363)) (-15 -1837 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4400)) (-6 -4400) |%noBranch|) (IF (|has| |#1| (-6 -4404)) (-6 -4404) |%noBranch|) (IF (|has| |#1| (-6 -4405)) (-6 -4405) |%noBranch|))) (-1045) (-842)) (T -1280))
-((* (*1 *1 *1 *2) (-12 (-5 *1 (-1280 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-842)))) (-2751 (*1 *1 *1) (-12 (-5 *1 (-1280 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-842)))) (-2240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-1280 *3 *4)) (-4 *4 (-842)))) (-3608 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-1280 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-842)))) (-4176 (*1 *2 *1) (-12 (-4 *2 (-842)) (-5 *1 (-1280 *3 *2)) (-4 *3 (-1045)))) (-3761 (*1 *2 *1) (-12 (-4 *2 (-842)) (-5 *1 (-1280 *3 *2)) (-4 *3 (-1045)))) (-2311 (*1 *2 *1 *3) (-12 (-4 *2 (-1045)) (-5 *1 (-1280 *2 *3)) (-4 *3 (-842)))) (-4018 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1280 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-842)))) (-2669 (*1 *2 *1) (-12 (-4 *2 (-1045)) (-5 *1 (-1280 *2 *3)) (-4 *3 (-842)))) (-3466 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1280 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-842)))) (-2396 (*1 *1 *1) (-12 (-5 *1 (-1280 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-842)))) (-1837 (*1 *1 *1 *2) (-12 (-5 *1 (-1280 *2 *3)) (-4 *2 (-363)) (-4 *2 (-1045)) (-4 *3 (-842)))))
-(-13 (-1045) (-1271 |#1|) (-382 |#1| |#2|) (-613 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3608 ((-767) $)) (-15 -4176 (|#2| $)) (-15 -3761 (|#2| $)) (-15 -2751 ($ $)) (-15 -2311 (|#1| $ |#2|)) (-15 -4018 ((-112) $)) (-15 -2669 (|#1| $)) (-15 -3466 ((-112) $)) (-15 -2396 ($ $)) (-15 -2240 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-363)) (-15 -1837 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4400)) (-6 -4400) |%noBranch|) (IF (|has| |#1| (-6 -4404)) (-6 -4404) |%noBranch|) (IF (|has| |#1| (-6 -4405)) (-6 -4405) |%noBranch|)))
-((-1677 (((-112) $ $) 26)) (-3411 (((-112) $) NIL)) (-3993 (((-640 |#1|) $) 120)) (-3249 (($ (-1272 |#1| |#2|)) 44)) (-2872 (($ $ (-767)) 32)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3917 (($ $ $) 48 (|has| |#2| (-172))) (($ $ (-767)) 46 (|has| |#2| (-172)))) (-4239 (($) NIL T CONST)) (-3181 (($ $ |#1|) 102) (($ $ (-815 |#1|)) 103) (($ $ $) 25)) (-2131 (((-3 (-815 |#1|) "failed") $) NIL)) (-2058 (((-815 |#1|) $) NIL)) (-3400 (((-3 $ "failed") $) 110)) (-3466 (((-112) $) 105)) (-2396 (($ $) 106)) (-3827 (((-112) $) NIL)) (-3920 (((-112) $) NIL)) (-4222 (($ (-815 |#1|) |#2|) 19)) (-4337 (($ $) NIL)) (-2976 (((-2 (|:| |k| (-815 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3761 (((-815 |#1|) $) 111)) (-4176 (((-815 |#1|) $) 114)) (-2240 (($ (-1 |#2| |#2|) $) 119)) (-3439 (($ $ |#1|) 100) (($ $ (-815 |#1|)) 101) (($ $ $) 56)) (-3573 (((-1151) $) NIL)) (-1694 (((-1113) $) NIL)) (-2213 (((-1272 |#1| |#2|) $) 84)) (-4167 (((-767) $) 117)) (-4018 (((-112) $) 70)) (-2669 ((|#2| $) 28)) (-1693 (((-858) $) 63) (($ (-563)) 77) (($ |#2|) 74) (($ (-815 |#1|)) 17) (($ |#1|) 73)) (-2311 ((|#2| $ (-815 |#1|)) 104) ((|#2| $ $) 27)) (-1675 (((-767)) 108)) (-2241 (($) 14 T CONST)) (-3398 (((-640 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 53)) (-2254 (($) 29 T CONST)) (-1718 (((-112) $ $) 13)) (-1826 (($ $) 88) (($ $ $) 91)) (-1814 (($ $ $) 55)) (** (($ $ (-917)) NIL) (($ $ (-767)) 49)) (* (($ (-917) $) NIL) (($ (-767) $) 47) (($ (-563) $) 94) (($ $ $) 21) (($ |#2| $) 18) (($ $ |#2|) 20) (($ |#1| $) 82)))
-(((-1281 |#1| |#2|) (-13 (-1278 |#1| |#2|) (-10 -8 (-15 -2213 ((-1272 |#1| |#2|) $)) (-15 -3249 ($ (-1272 |#1| |#2|))) (-15 -3398 ((-640 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-846) (-1045)) (T -1281))
-((-2213 (*1 *2 *1) (-12 (-5 *2 (-1272 *3 *4)) (-5 *1 (-1281 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)))) (-3249 (*1 *1 *2) (-12 (-5 *2 (-1272 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *1 (-1281 *3 *4)))) (-3398 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |k| *3) (|:| |c| (-1281 *3 *4))))) (-5 *1 (-1281 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)))))
-(-13 (-1278 |#1| |#2|) (-10 -8 (-15 -2213 ((-1272 |#1| |#2|) $)) (-15 -3249 ($ (-1272 |#1| |#2|))) (-15 -3398 ((-640 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
-((-3170 (((-640 (-1149 |#1|)) (-1 (-640 (-1149 |#1|)) (-640 (-1149 |#1|))) (-563)) 15) (((-1149 |#1|) (-1 (-1149 |#1|) (-1149 |#1|))) 11)))
-(((-1282 |#1|) (-10 -7 (-15 -3170 ((-1149 |#1|) (-1 (-1149 |#1|) (-1149 |#1|)))) (-15 -3170 ((-640 (-1149 |#1|)) (-1 (-640 (-1149 |#1|)) (-640 (-1149 |#1|))) (-563)))) (-1208)) (T -1282))
-((-3170 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-640 (-1149 *5)) (-640 (-1149 *5)))) (-5 *4 (-563)) (-5 *2 (-640 (-1149 *5))) (-5 *1 (-1282 *5)) (-4 *5 (-1208)))) (-3170 (*1 *2 *3) (-12 (-5 *3 (-1 (-1149 *4) (-1149 *4))) (-5 *2 (-1149 *4)) (-5 *1 (-1282 *4)) (-4 *4 (-1208)))))
-(-10 -7 (-15 -3170 ((-1149 |#1|) (-1 (-1149 |#1|) (-1149 |#1|)))) (-15 -3170 ((-640 (-1149 |#1|)) (-1 (-640 (-1149 |#1|)) (-640 (-1149 |#1|))) (-563))))
-((-2600 (((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|))) 147) (((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112)) 146) (((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112)) 145) (((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112) (-112)) 144) (((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-1042 |#1| |#2|)) 129)) (-1740 (((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|))) 71) (((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)) (-112)) 70) (((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)) (-112) (-112)) 69)) (-3205 (((-640 (-1139 |#1| (-531 (-860 |#3|)) (-860 |#3|) (-776 |#1| (-860 |#3|)))) (-1042 |#1| |#2|)) 60)) (-2076 (((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|))) 114) (((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112)) 113) (((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112)) 112) (((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112) (-112)) 111) (((-640 (-640 (-1020 (-407 |#1|)))) (-1042 |#1| |#2|)) 106)) (-4323 (((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|))) 119) (((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112)) 118) (((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112)) 117) (((-640 (-640 (-1020 (-407 |#1|)))) (-1042 |#1| |#2|)) 116)) (-2220 (((-640 (-776 |#1| (-860 |#3|))) (-1139 |#1| (-531 (-860 |#3|)) (-860 |#3|) (-776 |#1| (-860 |#3|)))) 97) (((-1165 (-1020 (-407 |#1|))) (-1165 |#1|)) 88) (((-948 (-1020 (-407 |#1|))) (-776 |#1| (-860 |#3|))) 95) (((-948 (-1020 (-407 |#1|))) (-948 |#1|)) 93) (((-776 |#1| (-860 |#3|)) (-776 |#1| (-860 |#2|))) 32)))
-(((-1283 |#1| |#2| |#3|) (-10 -7 (-15 -1740 ((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)) (-112) (-112))) (-15 -1740 ((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)) (-112))) (-15 -1740 ((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)))) (-15 -2600 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-1042 |#1| |#2|))) (-15 -2600 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112) (-112))) (-15 -2600 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112))) (-15 -2600 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112))) (-15 -2600 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)))) (-15 -2076 ((-640 (-640 (-1020 (-407 |#1|)))) (-1042 |#1| |#2|))) (-15 -2076 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112) (-112))) (-15 -2076 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112))) (-15 -2076 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112))) (-15 -2076 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)))) (-15 -4323 ((-640 (-640 (-1020 (-407 |#1|)))) (-1042 |#1| |#2|))) (-15 -4323 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112))) (-15 -4323 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112))) (-15 -4323 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)))) (-15 -3205 ((-640 (-1139 |#1| (-531 (-860 |#3|)) (-860 |#3|) (-776 |#1| (-860 |#3|)))) (-1042 |#1| |#2|))) (-15 -2220 ((-776 |#1| (-860 |#3|)) (-776 |#1| (-860 |#2|)))) (-15 -2220 ((-948 (-1020 (-407 |#1|))) (-948 |#1|))) (-15 -2220 ((-948 (-1020 (-407 |#1|))) (-776 |#1| (-860 |#3|)))) (-15 -2220 ((-1165 (-1020 (-407 |#1|))) (-1165 |#1|))) (-15 -2220 ((-640 (-776 |#1| (-860 |#3|))) (-1139 |#1| (-531 (-860 |#3|)) (-860 |#3|) (-776 |#1| (-860 |#3|)))))) (-13 (-844) (-307) (-147) (-1018)) (-640 (-1169)) (-640 (-1169))) (T -1283))
-((-2220 (*1 *2 *3) (-12 (-5 *3 (-1139 *4 (-531 (-860 *6)) (-860 *6) (-776 *4 (-860 *6)))) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-776 *4 (-860 *6)))) (-5 *1 (-1283 *4 *5 *6)) (-14 *5 (-640 (-1169))))) (-2220 (*1 *2 *3) (-12 (-5 *3 (-1165 *4)) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-1165 (-1020 (-407 *4)))) (-5 *1 (-1283 *4 *5 *6)) (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))) (-2220 (*1 *2 *3) (-12 (-5 *3 (-776 *4 (-860 *6))) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-14 *6 (-640 (-1169))) (-5 *2 (-948 (-1020 (-407 *4)))) (-5 *1 (-1283 *4 *5 *6)) (-14 *5 (-640 (-1169))))) (-2220 (*1 *2 *3) (-12 (-5 *3 (-948 *4)) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-948 (-1020 (-407 *4)))) (-5 *1 (-1283 *4 *5 *6)) (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))) (-2220 (*1 *2 *3) (-12 (-5 *3 (-776 *4 (-860 *5))) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-14 *5 (-640 (-1169))) (-5 *2 (-776 *4 (-860 *6))) (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169))))) (-3205 (*1 *2 *3) (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-14 *5 (-640 (-1169))) (-5 *2 (-640 (-1139 *4 (-531 (-860 *6)) (-860 *6) (-776 *4 (-860 *6))))) (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169))))) (-4323 (*1 *2 *3) (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-640 (-1020 (-407 *4))))) (-5 *1 (-1283 *4 *5 *6)) (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))) (-4323 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7)) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-4323 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7)) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-4323 (*1 *2 *3) (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-14 *5 (-640 (-1169))) (-5 *2 (-640 (-640 (-1020 (-407 *4))))) (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169))))) (-2076 (*1 *2 *3) (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-640 (-1020 (-407 *4))))) (-5 *1 (-1283 *4 *5 *6)) (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))) (-2076 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7)) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-2076 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7)) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-2076 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7)) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-2076 (*1 *2 *3) (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-14 *5 (-640 (-1169))) (-5 *2 (-640 (-640 (-1020 (-407 *4))))) (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169))))) (-2600 (*1 *2 *3) (-12 (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-2 (|:| -1602 (-1165 *4)) (|:| -1880 (-640 (-948 *4)))))) (-5 *1 (-1283 *4 *5 *6)) (-5 *3 (-640 (-948 *4))) (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))) (-2600 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-2 (|:| -1602 (-1165 *5)) (|:| -1880 (-640 (-948 *5)))))) (-5 *1 (-1283 *5 *6 *7)) (-5 *3 (-640 (-948 *5))) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-2600 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-2 (|:| -1602 (-1165 *5)) (|:| -1880 (-640 (-948 *5)))))) (-5 *1 (-1283 *5 *6 *7)) (-5 *3 (-640 (-948 *5))) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-2600 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-2 (|:| -1602 (-1165 *5)) (|:| -1880 (-640 (-948 *5)))))) (-5 *1 (-1283 *5 *6 *7)) (-5 *3 (-640 (-948 *5))) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-2600 (*1 *2 *3) (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-14 *5 (-640 (-1169))) (-5 *2 (-640 (-2 (|:| -1602 (-1165 *4)) (|:| -1880 (-640 (-948 *4)))))) (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169))))) (-1740 (*1 *2 *3) (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-1042 *4 *5))) (-5 *1 (-1283 *4 *5 *6)) (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))) (-1740 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-1042 *5 *6))) (-5 *1 (-1283 *5 *6 *7)) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-1740 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-1042 *5 *6))) (-5 *1 (-1283 *5 *6 *7)) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))))
-(-10 -7 (-15 -1740 ((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)) (-112) (-112))) (-15 -1740 ((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)) (-112))) (-15 -1740 ((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)))) (-15 -2600 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-1042 |#1| |#2|))) (-15 -2600 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112) (-112))) (-15 -2600 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112))) (-15 -2600 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112))) (-15 -2600 ((-640 (-2 (|:| -1602 (-1165 |#1|)) (|:| -1880 (-640 (-948 |#1|))))) (-640 (-948 |#1|)))) (-15 -2076 ((-640 (-640 (-1020 (-407 |#1|)))) (-1042 |#1| |#2|))) (-15 -2076 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112) (-112))) (-15 -2076 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112))) (-15 -2076 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112))) (-15 -2076 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)))) (-15 -4323 ((-640 (-640 (-1020 (-407 |#1|)))) (-1042 |#1| |#2|))) (-15 -4323 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112))) (-15 -4323 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112))) (-15 -4323 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)))) (-15 -3205 ((-640 (-1139 |#1| (-531 (-860 |#3|)) (-860 |#3|) (-776 |#1| (-860 |#3|)))) (-1042 |#1| |#2|))) (-15 -2220 ((-776 |#1| (-860 |#3|)) (-776 |#1| (-860 |#2|)))) (-15 -2220 ((-948 (-1020 (-407 |#1|))) (-948 |#1|))) (-15 -2220 ((-948 (-1020 (-407 |#1|))) (-776 |#1| (-860 |#3|)))) (-15 -2220 ((-1165 (-1020 (-407 |#1|))) (-1165 |#1|))) (-15 -2220 ((-640 (-776 |#1| (-860 |#3|))) (-1139 |#1| (-531 (-860 |#3|)) (-860 |#3|) (-776 |#1| (-860 |#3|))))))
-((-2281 (((-3 (-1257 (-407 (-563))) "failed") (-1257 |#1|) |#1|) 21)) (-4075 (((-112) (-1257 |#1|)) 12)) (-3193 (((-3 (-1257 (-563)) "failed") (-1257 |#1|)) 16)))
-(((-1284 |#1|) (-10 -7 (-15 -4075 ((-112) (-1257 |#1|))) (-15 -3193 ((-3 (-1257 (-563)) "failed") (-1257 |#1|))) (-15 -2281 ((-3 (-1257 (-407 (-563))) "failed") (-1257 |#1|) |#1|))) (-636 (-563))) (T -1284))
-((-2281 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 (-563))) (-5 *2 (-1257 (-407 (-563)))) (-5 *1 (-1284 *4)))) (-3193 (*1 *2 *3) (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 (-563))) (-5 *2 (-1257 (-563))) (-5 *1 (-1284 *4)))) (-4075 (*1 *2 *3) (-12 (-5 *3 (-1257 *4)) (-4 *4 (-636 (-563))) (-5 *2 (-112)) (-5 *1 (-1284 *4)))))
-(-10 -7 (-15 -4075 ((-112) (-1257 |#1|))) (-15 -3193 ((-3 (-1257 (-563)) "failed") (-1257 |#1|))) (-15 -2281 ((-3 (-1257 (-407 (-563))) "failed") (-1257 |#1|) |#1|)))
-((-1677 (((-112) $ $) NIL)) (-3411 (((-112) $) 11)) (-1495 (((-3 $ "failed") $ $) NIL)) (-3749 (((-767)) 8)) (-4239 (($) NIL T CONST)) (-3400 (((-3 $ "failed") $) 43)) (-1691 (($) 36)) (-3827 (((-112) $) NIL)) (-2408 (((-3 $ "failed") $) 29)) (-1476 (((-917) $) 15)) (-3573 (((-1151) $) NIL)) (-2523 (($) 25 T CONST)) (-2555 (($ (-917)) 37)) (-1694 (((-1113) $) NIL)) (-2220 (((-563) $) 13)) (-1693 (((-858) $) 22) (($ (-563)) 19)) (-1675 (((-767)) 9)) (-2241 (($) 23 T CONST)) (-2254 (($) 24 T CONST)) (-1718 (((-112) $ $) 27)) (-1826 (($ $) 38) (($ $ $) 35)) (-1814 (($ $ $) 26)) (** (($ $ (-917)) NIL) (($ $ (-767)) 40)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 32) (($ $ $) 31)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3994 (((-640 (-1169)) $) NIL)) (-2749 (($ (-1272 (-1169) |#1|)) NIL)) (-3862 (($ $ (-767)) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-3783 (($ $ $) NIL (|has| |#1| (-172))) (($ $ (-767)) NIL (|has| |#1| (-172)))) (-2569 (($) NIL T CONST)) (-3817 (($ $ (-1169)) NIL) (($ $ (-815 (-1169))) NIL) (($ $ $) NIL)) (-2130 (((-3 (-815 (-1169)) "failed") $) NIL)) (-2057 (((-815 (-1169)) $) NIL)) (-3951 (((-3 $ "failed") $) NIL)) (-3894 (((-112) $) NIL)) (-3882 (($ $) NIL)) (-3401 (((-112) $) NIL)) (-3805 (((-112) $) NIL)) (-4223 (($ (-815 (-1169)) |#1|) NIL)) (-3794 (($ $) NIL)) (-3836 (((-2 (|:| |k| (-815 (-1169))) (|:| |c| |#1|)) $) NIL)) (-3915 (((-815 (-1169)) $) NIL)) (-3926 (((-815 (-1169)) $) NIL)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-3828 (($ $ (-1169)) NIL) (($ $ (-815 (-1169))) NIL) (($ $ $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2212 (((-1272 (-1169) |#1|) $) NIL)) (-3871 (((-767) $) NIL)) (-3904 (((-112) $) NIL)) (-2668 ((|#1| $) NIL)) (-1692 (((-858) $) NIL) (($ (-563)) NIL) (($ |#1|) NIL) (($ (-815 (-1169))) NIL) (($ (-1169)) NIL)) (-2310 ((|#1| $ (-815 (-1169))) NIL) ((|#1| $ $) NIL)) (-3914 (((-767)) NIL)) (-2239 (($) NIL T CONST)) (-2737 (((-640 (-2 (|:| |k| (-1169)) (|:| |c| $))) $) NIL)) (-2253 (($) NIL T CONST)) (-1718 (((-112) $ $) NIL)) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) NIL)) (** (($ $ (-917)) NIL) (($ $ (-767)) NIL)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-1169) $) NIL)))
+(((-1279 |#1|) (-13 (-1278 (-1169) |#1|) (-10 -8 (-15 -2212 ((-1272 (-1169) |#1|) $)) (-15 -2749 ($ (-1272 (-1169) |#1|))) (-15 -2737 ((-640 (-2 (|:| |k| (-1169)) (|:| |c| $))) $)))) (-1045)) (T -1279))
+((-2212 (*1 *2 *1) (-12 (-5 *2 (-1272 (-1169) *3)) (-5 *1 (-1279 *3)) (-4 *3 (-1045)))) (-2749 (*1 *1 *2) (-12 (-5 *2 (-1272 (-1169) *3)) (-4 *3 (-1045)) (-5 *1 (-1279 *3)))) (-2737 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |k| (-1169)) (|:| |c| (-1279 *3))))) (-5 *1 (-1279 *3)) (-4 *3 (-1045)))))
+(-13 (-1278 (-1169) |#1|) (-10 -8 (-15 -2212 ((-1272 (-1169) |#1|) $)) (-15 -2749 ($ (-1272 (-1169) |#1|))) (-15 -2737 ((-640 (-2 (|:| |k| (-1169)) (|:| |c| $))) $))))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) NIL)) (-3905 (((-3 $ "failed") $ $) NIL)) (-2569 (($) NIL T CONST)) (-2130 (((-3 |#2| "failed") $) NIL)) (-2057 ((|#2| $) NIL)) (-2750 (($ $) NIL)) (-3951 (((-3 $ "failed") $) 35)) (-3894 (((-112) $) 30)) (-3882 (($ $) 31)) (-3401 (((-112) $) NIL)) (-3481 (((-767) $) NIL)) (-3919 (((-640 $) $) NIL)) (-3805 (((-112) $) NIL)) (-4223 (($ |#2| |#1|) NIL)) (-3915 ((|#2| $) 19)) (-3926 ((|#2| $) 16)) (-2238 (($ (-1 |#1| |#1|) $) NIL)) (-4243 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-2715 ((|#2| $) NIL)) (-2725 ((|#1| $) NIL)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-3904 (((-112) $) 27)) (-2668 ((|#1| $) 28)) (-1692 (((-858) $) 54) (($ (-563)) 39) (($ |#1|) 34) (($ |#2|) NIL)) (-3955 (((-640 |#1|) $) NIL)) (-3244 ((|#1| $ |#2|) NIL)) (-2310 ((|#1| $ |#2|) 24)) (-3914 (((-767)) 14)) (-2239 (($) 25 T CONST)) (-2253 (($) 11 T CONST)) (-2891 (((-640 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-1718 (((-112) $ $) 26)) (-1836 (($ $ |#1|) 56 (|has| |#1| (-363)))) (-1825 (($ $) NIL) (($ $ $) NIL)) (-1813 (($ $ $) 43)) (** (($ $ (-917)) NIL) (($ $ (-767)) 45)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) NIL) (($ $ $) 44) (($ |#1| $) 40) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-3610 (((-767) $) 15)))
+(((-1280 |#1| |#2|) (-13 (-1045) (-1271 |#1|) (-382 |#1| |#2|) (-613 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3610 ((-767) $)) (-15 -3926 (|#2| $)) (-15 -3915 (|#2| $)) (-15 -2750 ($ $)) (-15 -2310 (|#1| $ |#2|)) (-15 -3904 ((-112) $)) (-15 -2668 (|#1| $)) (-15 -3894 ((-112) $)) (-15 -3882 ($ $)) (-15 -2238 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-363)) (-15 -1836 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4401)) (-6 -4401) |%noBranch|) (IF (|has| |#1| (-6 -4405)) (-6 -4405) |%noBranch|) (IF (|has| |#1| (-6 -4406)) (-6 -4406) |%noBranch|))) (-1045) (-842)) (T -1280))
+((* (*1 *1 *1 *2) (-12 (-5 *1 (-1280 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-842)))) (-2750 (*1 *1 *1) (-12 (-5 *1 (-1280 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-842)))) (-2238 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-1280 *3 *4)) (-4 *4 (-842)))) (-3610 (*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-1280 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-842)))) (-3926 (*1 *2 *1) (-12 (-4 *2 (-842)) (-5 *1 (-1280 *3 *2)) (-4 *3 (-1045)))) (-3915 (*1 *2 *1) (-12 (-4 *2 (-842)) (-5 *1 (-1280 *3 *2)) (-4 *3 (-1045)))) (-2310 (*1 *2 *1 *3) (-12 (-4 *2 (-1045)) (-5 *1 (-1280 *2 *3)) (-4 *3 (-842)))) (-3904 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1280 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-842)))) (-2668 (*1 *2 *1) (-12 (-4 *2 (-1045)) (-5 *1 (-1280 *2 *3)) (-4 *3 (-842)))) (-3894 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1280 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-842)))) (-3882 (*1 *1 *1) (-12 (-5 *1 (-1280 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-842)))) (-1836 (*1 *1 *1 *2) (-12 (-5 *1 (-1280 *2 *3)) (-4 *2 (-363)) (-4 *2 (-1045)) (-4 *3 (-842)))))
+(-13 (-1045) (-1271 |#1|) (-382 |#1| |#2|) (-613 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3610 ((-767) $)) (-15 -3926 (|#2| $)) (-15 -3915 (|#2| $)) (-15 -2750 ($ $)) (-15 -2310 (|#1| $ |#2|)) (-15 -3904 ((-112) $)) (-15 -2668 (|#1| $)) (-15 -3894 ((-112) $)) (-15 -3882 ($ $)) (-15 -2238 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-363)) (-15 -1836 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4401)) (-6 -4401) |%noBranch|) (IF (|has| |#1| (-6 -4405)) (-6 -4405) |%noBranch|) (IF (|has| |#1| (-6 -4406)) (-6 -4406) |%noBranch|)))
+((-1677 (((-112) $ $) 26)) (-3439 (((-112) $) NIL)) (-3994 (((-640 |#1|) $) 120)) (-2749 (($ (-1272 |#1| |#2|)) 44)) (-3862 (($ $ (-767)) 32)) (-3905 (((-3 $ "failed") $ $) NIL)) (-3783 (($ $ $) 48 (|has| |#2| (-172))) (($ $ (-767)) 46 (|has| |#2| (-172)))) (-2569 (($) NIL T CONST)) (-3817 (($ $ |#1|) 102) (($ $ (-815 |#1|)) 103) (($ $ $) 25)) (-2130 (((-3 (-815 |#1|) "failed") $) NIL)) (-2057 (((-815 |#1|) $) NIL)) (-3951 (((-3 $ "failed") $) 110)) (-3894 (((-112) $) 105)) (-3882 (($ $) 106)) (-3401 (((-112) $) NIL)) (-3805 (((-112) $) NIL)) (-4223 (($ (-815 |#1|) |#2|) 19)) (-3794 (($ $) NIL)) (-3836 (((-2 (|:| |k| (-815 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3915 (((-815 |#1|) $) 111)) (-3926 (((-815 |#1|) $) 114)) (-2238 (($ (-1 |#2| |#2|) $) 119)) (-3828 (($ $ |#1|) 100) (($ $ (-815 |#1|)) 101) (($ $ $) 56)) (-3854 (((-1151) $) NIL)) (-1693 (((-1113) $) NIL)) (-2212 (((-1272 |#1| |#2|) $) 84)) (-3871 (((-767) $) 117)) (-3904 (((-112) $) 70)) (-2668 ((|#2| $) 28)) (-1692 (((-858) $) 63) (($ (-563)) 77) (($ |#2|) 74) (($ (-815 |#1|)) 17) (($ |#1|) 73)) (-2310 ((|#2| $ (-815 |#1|)) 104) ((|#2| $ $) 27)) (-3914 (((-767)) 108)) (-2239 (($) 14 T CONST)) (-2737 (((-640 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 53)) (-2253 (($) 29 T CONST)) (-1718 (((-112) $ $) 13)) (-1825 (($ $) 88) (($ $ $) 91)) (-1813 (($ $ $) 55)) (** (($ $ (-917)) NIL) (($ $ (-767)) 49)) (* (($ (-917) $) NIL) (($ (-767) $) 47) (($ (-563) $) 94) (($ $ $) 21) (($ |#2| $) 18) (($ $ |#2|) 20) (($ |#1| $) 82)))
+(((-1281 |#1| |#2|) (-13 (-1278 |#1| |#2|) (-10 -8 (-15 -2212 ((-1272 |#1| |#2|) $)) (-15 -2749 ($ (-1272 |#1| |#2|))) (-15 -2737 ((-640 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-846) (-1045)) (T -1281))
+((-2212 (*1 *2 *1) (-12 (-5 *2 (-1272 *3 *4)) (-5 *1 (-1281 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)))) (-2749 (*1 *1 *2) (-12 (-5 *2 (-1272 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)) (-5 *1 (-1281 *3 *4)))) (-2737 (*1 *2 *1) (-12 (-5 *2 (-640 (-2 (|:| |k| *3) (|:| |c| (-1281 *3 *4))))) (-5 *1 (-1281 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)))))
+(-13 (-1278 |#1| |#2|) (-10 -8 (-15 -2212 ((-1272 |#1| |#2|) $)) (-15 -2749 ($ (-1272 |#1| |#2|))) (-15 -2737 ((-640 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
+((-3174 (((-640 (-1149 |#1|)) (-1 (-640 (-1149 |#1|)) (-640 (-1149 |#1|))) (-563)) 15) (((-1149 |#1|) (-1 (-1149 |#1|) (-1149 |#1|))) 11)))
+(((-1282 |#1|) (-10 -7 (-15 -3174 ((-1149 |#1|) (-1 (-1149 |#1|) (-1149 |#1|)))) (-15 -3174 ((-640 (-1149 |#1|)) (-1 (-640 (-1149 |#1|)) (-640 (-1149 |#1|))) (-563)))) (-1208)) (T -1282))
+((-3174 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-640 (-1149 *5)) (-640 (-1149 *5)))) (-5 *4 (-563)) (-5 *2 (-640 (-1149 *5))) (-5 *1 (-1282 *5)) (-4 *5 (-1208)))) (-3174 (*1 *2 *3) (-12 (-5 *3 (-1 (-1149 *4) (-1149 *4))) (-5 *2 (-1149 *4)) (-5 *1 (-1282 *4)) (-4 *4 (-1208)))))
+(-10 -7 (-15 -3174 ((-1149 |#1|) (-1 (-1149 |#1|) (-1149 |#1|)))) (-15 -3174 ((-640 (-1149 |#1|)) (-1 (-640 (-1149 |#1|)) (-640 (-1149 |#1|))) (-563))))
+((-2770 (((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|))) 147) (((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112)) 146) (((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112)) 145) (((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112) (-112)) 144) (((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-1042 |#1| |#2|)) 129)) (-2760 (((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|))) 71) (((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)) (-112)) 70) (((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)) (-112) (-112)) 69)) (-2802 (((-640 (-1139 |#1| (-531 (-860 |#3|)) (-860 |#3|) (-776 |#1| (-860 |#3|)))) (-1042 |#1| |#2|)) 60)) (-2782 (((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|))) 114) (((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112)) 113) (((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112)) 112) (((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112) (-112)) 111) (((-640 (-640 (-1020 (-407 |#1|)))) (-1042 |#1| |#2|)) 106)) (-2792 (((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|))) 119) (((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112)) 118) (((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112)) 117) (((-640 (-640 (-1020 (-407 |#1|)))) (-1042 |#1| |#2|)) 116)) (-2219 (((-640 (-776 |#1| (-860 |#3|))) (-1139 |#1| (-531 (-860 |#3|)) (-860 |#3|) (-776 |#1| (-860 |#3|)))) 97) (((-1165 (-1020 (-407 |#1|))) (-1165 |#1|)) 88) (((-948 (-1020 (-407 |#1|))) (-776 |#1| (-860 |#3|))) 95) (((-948 (-1020 (-407 |#1|))) (-948 |#1|)) 93) (((-776 |#1| (-860 |#3|)) (-776 |#1| (-860 |#2|))) 32)))
+(((-1283 |#1| |#2| |#3|) (-10 -7 (-15 -2760 ((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)) (-112) (-112))) (-15 -2760 ((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)) (-112))) (-15 -2760 ((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)))) (-15 -2770 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-1042 |#1| |#2|))) (-15 -2770 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112) (-112))) (-15 -2770 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112))) (-15 -2770 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112))) (-15 -2770 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)))) (-15 -2782 ((-640 (-640 (-1020 (-407 |#1|)))) (-1042 |#1| |#2|))) (-15 -2782 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112) (-112))) (-15 -2782 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112))) (-15 -2782 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112))) (-15 -2782 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)))) (-15 -2792 ((-640 (-640 (-1020 (-407 |#1|)))) (-1042 |#1| |#2|))) (-15 -2792 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112))) (-15 -2792 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112))) (-15 -2792 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)))) (-15 -2802 ((-640 (-1139 |#1| (-531 (-860 |#3|)) (-860 |#3|) (-776 |#1| (-860 |#3|)))) (-1042 |#1| |#2|))) (-15 -2219 ((-776 |#1| (-860 |#3|)) (-776 |#1| (-860 |#2|)))) (-15 -2219 ((-948 (-1020 (-407 |#1|))) (-948 |#1|))) (-15 -2219 ((-948 (-1020 (-407 |#1|))) (-776 |#1| (-860 |#3|)))) (-15 -2219 ((-1165 (-1020 (-407 |#1|))) (-1165 |#1|))) (-15 -2219 ((-640 (-776 |#1| (-860 |#3|))) (-1139 |#1| (-531 (-860 |#3|)) (-860 |#3|) (-776 |#1| (-860 |#3|)))))) (-13 (-844) (-307) (-147) (-1018)) (-640 (-1169)) (-640 (-1169))) (T -1283))
+((-2219 (*1 *2 *3) (-12 (-5 *3 (-1139 *4 (-531 (-860 *6)) (-860 *6) (-776 *4 (-860 *6)))) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-776 *4 (-860 *6)))) (-5 *1 (-1283 *4 *5 *6)) (-14 *5 (-640 (-1169))))) (-2219 (*1 *2 *3) (-12 (-5 *3 (-1165 *4)) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-1165 (-1020 (-407 *4)))) (-5 *1 (-1283 *4 *5 *6)) (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))) (-2219 (*1 *2 *3) (-12 (-5 *3 (-776 *4 (-860 *6))) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-14 *6 (-640 (-1169))) (-5 *2 (-948 (-1020 (-407 *4)))) (-5 *1 (-1283 *4 *5 *6)) (-14 *5 (-640 (-1169))))) (-2219 (*1 *2 *3) (-12 (-5 *3 (-948 *4)) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-948 (-1020 (-407 *4)))) (-5 *1 (-1283 *4 *5 *6)) (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))) (-2219 (*1 *2 *3) (-12 (-5 *3 (-776 *4 (-860 *5))) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-14 *5 (-640 (-1169))) (-5 *2 (-776 *4 (-860 *6))) (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169))))) (-2802 (*1 *2 *3) (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-14 *5 (-640 (-1169))) (-5 *2 (-640 (-1139 *4 (-531 (-860 *6)) (-860 *6) (-776 *4 (-860 *6))))) (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169))))) (-2792 (*1 *2 *3) (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-640 (-1020 (-407 *4))))) (-5 *1 (-1283 *4 *5 *6)) (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))) (-2792 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7)) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-2792 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7)) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-2792 (*1 *2 *3) (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-14 *5 (-640 (-1169))) (-5 *2 (-640 (-640 (-1020 (-407 *4))))) (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169))))) (-2782 (*1 *2 *3) (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-640 (-1020 (-407 *4))))) (-5 *1 (-1283 *4 *5 *6)) (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))) (-2782 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7)) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-2782 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7)) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-2782 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7)) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-2782 (*1 *2 *3) (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-14 *5 (-640 (-1169))) (-5 *2 (-640 (-640 (-1020 (-407 *4))))) (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169))))) (-2770 (*1 *2 *3) (-12 (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-2 (|:| -4224 (-1165 *4)) (|:| -3759 (-640 (-948 *4)))))) (-5 *1 (-1283 *4 *5 *6)) (-5 *3 (-640 (-948 *4))) (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))) (-2770 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-2 (|:| -4224 (-1165 *5)) (|:| -3759 (-640 (-948 *5)))))) (-5 *1 (-1283 *5 *6 *7)) (-5 *3 (-640 (-948 *5))) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-2770 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-2 (|:| -4224 (-1165 *5)) (|:| -3759 (-640 (-948 *5)))))) (-5 *1 (-1283 *5 *6 *7)) (-5 *3 (-640 (-948 *5))) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-2770 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-2 (|:| -4224 (-1165 *5)) (|:| -3759 (-640 (-948 *5)))))) (-5 *1 (-1283 *5 *6 *7)) (-5 *3 (-640 (-948 *5))) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-2770 (*1 *2 *3) (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-14 *5 (-640 (-1169))) (-5 *2 (-640 (-2 (|:| -4224 (-1165 *4)) (|:| -3759 (-640 (-948 *4)))))) (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169))))) (-2760 (*1 *2 *3) (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-1042 *4 *5))) (-5 *1 (-1283 *4 *5 *6)) (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))) (-2760 (*1 *2 *3 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-1042 *5 *6))) (-5 *1 (-1283 *5 *6 *7)) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))) (-2760 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018))) (-5 *2 (-640 (-1042 *5 *6))) (-5 *1 (-1283 *5 *6 *7)) (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169))))))
+(-10 -7 (-15 -2760 ((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)) (-112) (-112))) (-15 -2760 ((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)) (-112))) (-15 -2760 ((-640 (-1042 |#1| |#2|)) (-640 (-948 |#1|)))) (-15 -2770 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-1042 |#1| |#2|))) (-15 -2770 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112) (-112))) (-15 -2770 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112) (-112))) (-15 -2770 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)) (-112))) (-15 -2770 ((-640 (-2 (|:| -4224 (-1165 |#1|)) (|:| -3759 (-640 (-948 |#1|))))) (-640 (-948 |#1|)))) (-15 -2782 ((-640 (-640 (-1020 (-407 |#1|)))) (-1042 |#1| |#2|))) (-15 -2782 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112) (-112))) (-15 -2782 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112))) (-15 -2782 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112))) (-15 -2782 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)))) (-15 -2792 ((-640 (-640 (-1020 (-407 |#1|)))) (-1042 |#1| |#2|))) (-15 -2792 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112) (-112))) (-15 -2792 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)) (-112))) (-15 -2792 ((-640 (-640 (-1020 (-407 |#1|)))) (-640 (-948 |#1|)))) (-15 -2802 ((-640 (-1139 |#1| (-531 (-860 |#3|)) (-860 |#3|) (-776 |#1| (-860 |#3|)))) (-1042 |#1| |#2|))) (-15 -2219 ((-776 |#1| (-860 |#3|)) (-776 |#1| (-860 |#2|)))) (-15 -2219 ((-948 (-1020 (-407 |#1|))) (-948 |#1|))) (-15 -2219 ((-948 (-1020 (-407 |#1|))) (-776 |#1| (-860 |#3|)))) (-15 -2219 ((-1165 (-1020 (-407 |#1|))) (-1165 |#1|))) (-15 -2219 ((-640 (-776 |#1| (-860 |#3|))) (-1139 |#1| (-531 (-860 |#3|)) (-860 |#3|) (-776 |#1| (-860 |#3|))))))
+((-2838 (((-3 (-1257 (-407 (-563))) "failed") (-1257 |#1|) |#1|) 21)) (-2813 (((-112) (-1257 |#1|)) 12)) (-2826 (((-3 (-1257 (-563)) "failed") (-1257 |#1|)) 16)))
+(((-1284 |#1|) (-10 -7 (-15 -2813 ((-112) (-1257 |#1|))) (-15 -2826 ((-3 (-1257 (-563)) "failed") (-1257 |#1|))) (-15 -2838 ((-3 (-1257 (-407 (-563))) "failed") (-1257 |#1|) |#1|))) (-636 (-563))) (T -1284))
+((-2838 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 (-563))) (-5 *2 (-1257 (-407 (-563)))) (-5 *1 (-1284 *4)))) (-2826 (*1 *2 *3) (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 (-563))) (-5 *2 (-1257 (-563))) (-5 *1 (-1284 *4)))) (-2813 (*1 *2 *3) (-12 (-5 *3 (-1257 *4)) (-4 *4 (-636 (-563))) (-5 *2 (-112)) (-5 *1 (-1284 *4)))))
+(-10 -7 (-15 -2813 ((-112) (-1257 |#1|))) (-15 -2826 ((-3 (-1257 (-563)) "failed") (-1257 |#1|))) (-15 -2838 ((-3 (-1257 (-407 (-563))) "failed") (-1257 |#1|) |#1|)))
+((-1677 (((-112) $ $) NIL)) (-3439 (((-112) $) 11)) (-3905 (((-3 $ "failed") $ $) NIL)) (-3750 (((-767)) 8)) (-2569 (($) NIL T CONST)) (-3951 (((-3 $ "failed") $) 44)) (-1690 (($) 36)) (-3401 (((-112) $) 43)) (-1983 (((-3 $ "failed") $) 29)) (-3990 (((-917) $) 15)) (-3854 (((-1151) $) NIL)) (-2522 (($) 25 T CONST)) (-2552 (($ (-917)) 37)) (-1693 (((-1113) $) NIL)) (-2219 (((-563) $) 13)) (-1692 (((-858) $) 22) (($ (-563)) 19)) (-3914 (((-767)) 9)) (-2239 (($) 23 T CONST)) (-2253 (($) 24 T CONST)) (-1718 (((-112) $ $) 27)) (-1825 (($ $) 38) (($ $ $) 35)) (-1813 (($ $ $) 26)) (** (($ $ (-917)) NIL) (($ $ (-767)) 40)) (* (($ (-917) $) NIL) (($ (-767) $) NIL) (($ (-563) $) 32) (($ $ $) 31)))
(((-1285 |#1|) (-13 (-172) (-368) (-611 (-563)) (-1144)) (-917)) (T -1285))
NIL
(-13 (-172) (-368) (-611 (-563)) (-1144))
@@ -5296,4 +5296,4 @@ NIL
NIL
NIL
NIL
-((-3 3195369 3195374 3195379 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-2 3195354 3195359 3195364 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1 3195339 3195344 3195349 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (0 3195324 3195329 3195334 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1285 3194500 3195199 3195276 "ZMOD" 3195281 NIL ZMOD (NIL NIL) -8 NIL NIL NIL) (-1284 3193610 3193774 3193983 "ZLINDEP" 3194332 NIL ZLINDEP (NIL T) -7 NIL NIL NIL) (-1283 3182914 3184678 3186650 "ZDSOLVE" 3191740 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL NIL) (-1282 3182160 3182301 3182490 "YSTREAM" 3182760 NIL YSTREAM (NIL T) -7 NIL NIL NIL) (-1281 3179971 3181461 3181665 "XRPOLY" 3182003 NIL XRPOLY (NIL T T) -8 NIL NIL NIL) (-1280 3176559 3177842 3178417 "XPR" 3179443 NIL XPR (NIL T T) -8 NIL NIL NIL) (-1279 3174315 3175890 3176094 "XPOLY" 3176390 NIL XPOLY (NIL T) -8 NIL NIL NIL) (-1278 3172106 3173440 3173495 "XPOLYC" 3173783 NIL XPOLYC (NIL T T) -9 NIL 3173896 NIL) (-1277 3168524 3170623 3171011 "XPBWPOLY" 3171764 NIL XPBWPOLY (NIL T T) -8 NIL NIL NIL) (-1276 3164435 3166687 3166729 "XF" 3167350 NIL XF (NIL T) -9 NIL 3167750 NIL) (-1275 3164056 3164144 3164313 "XF-" 3164318 NIL XF- (NIL T T) -8 NIL NIL NIL) (-1274 3159390 3160645 3160700 "XFALG" 3162872 NIL XFALG (NIL T T) -9 NIL 3163661 NIL) (-1273 3158523 3158627 3158832 "XEXPPKG" 3159282 NIL XEXPPKG (NIL T T T) -7 NIL NIL NIL) (-1272 3156667 3158373 3158469 "XDPOLY" 3158474 NIL XDPOLY (NIL T T) -8 NIL NIL NIL) (-1271 3155612 3156178 3156221 "XALG" 3156226 NIL XALG (NIL T) -9 NIL 3156337 NIL) (-1270 3149081 3153589 3154083 "WUTSET" 3155204 NIL WUTSET (NIL T T T T) -8 NIL NIL NIL) (-1269 3147372 3148133 3148456 "WP" 3148892 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL NIL) (-1268 3147001 3147194 3147264 "WHILEAST" 3147324 T WHILEAST (NIL) -8 NIL NIL NIL) (-1267 3146500 3146718 3146812 "WHEREAST" 3146929 T WHEREAST (NIL) -8 NIL NIL NIL) (-1266 3145386 3145584 3145879 "WFFINTBS" 3146297 NIL WFFINTBS (NIL T T T T) -7 NIL NIL NIL) (-1265 3143290 3143717 3144179 "WEIER" 3144958 NIL WEIER (NIL T) -7 NIL NIL NIL) (-1264 3142437 3142861 3142903 "VSPACE" 3143039 NIL VSPACE (NIL T) -9 NIL 3143113 NIL) (-1263 3142275 3142302 3142393 "VSPACE-" 3142398 NIL VSPACE- (NIL T T) -8 NIL NIL NIL) (-1262 3142083 3142126 3142194 "VOID" 3142229 T VOID (NIL) -8 NIL NIL NIL) (-1261 3140219 3140578 3140984 "VIEW" 3141699 T VIEW (NIL) -7 NIL NIL NIL) (-1260 3136644 3137282 3138019 "VIEWDEF" 3139504 T VIEWDEF (NIL) -7 NIL NIL NIL) (-1259 3125980 3128192 3130365 "VIEW3D" 3134493 T VIEW3D (NIL) -8 NIL NIL NIL) (-1258 3118262 3119891 3121470 "VIEW2D" 3124423 T VIEW2D (NIL) -8 NIL NIL NIL) (-1257 3113666 3118032 3118124 "VECTOR" 3118205 NIL VECTOR (NIL T) -8 NIL NIL NIL) (-1256 3112243 3112502 3112820 "VECTOR2" 3113396 NIL VECTOR2 (NIL T T) -7 NIL NIL NIL) (-1255 3105770 3110027 3110070 "VECTCAT" 3111063 NIL VECTCAT (NIL T) -9 NIL 3111649 NIL) (-1254 3104784 3105038 3105428 "VECTCAT-" 3105433 NIL VECTCAT- (NIL T T) -8 NIL NIL NIL) (-1253 3104265 3104435 3104555 "VARIABLE" 3104699 NIL VARIABLE (NIL NIL) -8 NIL NIL NIL) (-1252 3104198 3104203 3104233 "UTYPE" 3104238 T UTYPE (NIL) -9 NIL NIL NIL) (-1251 3103028 3103182 3103444 "UTSODETL" 3104024 NIL UTSODETL (NIL T T T T) -7 NIL NIL NIL) (-1250 3100468 3100928 3101452 "UTSODE" 3102569 NIL UTSODE (NIL T T) -7 NIL NIL NIL) (-1249 3092344 3098094 3098583 "UTS" 3100037 NIL UTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1248 3083587 3088911 3088954 "UTSCAT" 3090066 NIL UTSCAT (NIL T) -9 NIL 3090823 NIL) (-1247 3080942 3081657 3082646 "UTSCAT-" 3082651 NIL UTSCAT- (NIL T T) -8 NIL NIL NIL) (-1246 3080569 3080612 3080745 "UTS2" 3080893 NIL UTS2 (NIL T T T T) -7 NIL NIL NIL) (-1245 3074842 3077407 3077450 "URAGG" 3079520 NIL URAGG (NIL T) -9 NIL 3080243 NIL) (-1244 3071781 3072644 3073767 "URAGG-" 3073772 NIL URAGG- (NIL T T) -8 NIL NIL NIL) (-1243 3067505 3070395 3070867 "UPXSSING" 3071445 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL NIL) (-1242 3059607 3066752 3067025 "UPXS" 3067290 NIL UPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1241 3052720 3059511 3059583 "UPXSCONS" 3059588 NIL UPXSCONS (NIL T T) -8 NIL NIL NIL) (-1240 3042965 3049715 3049777 "UPXSCCA" 3050351 NIL UPXSCCA (NIL T T) -9 NIL 3050584 NIL) (-1239 3042603 3042688 3042862 "UPXSCCA-" 3042867 NIL UPXSCCA- (NIL T T T) -8 NIL NIL NIL) (-1238 3032701 3039224 3039267 "UPXSCAT" 3039915 NIL UPXSCAT (NIL T) -9 NIL 3040523 NIL) (-1237 3032131 3032210 3032389 "UPXS2" 3032616 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1236 3030785 3031038 3031389 "UPSQFREE" 3031874 NIL UPSQFREE (NIL T T) -7 NIL NIL NIL) (-1235 3024573 3027587 3027642 "UPSCAT" 3028803 NIL UPSCAT (NIL T T) -9 NIL 3029577 NIL) (-1234 3023777 3023984 3024311 "UPSCAT-" 3024316 NIL UPSCAT- (NIL T T T) -8 NIL NIL NIL) (-1233 3009627 3017625 3017668 "UPOLYC" 3019769 NIL UPOLYC (NIL T) -9 NIL 3020990 NIL) (-1232 3000956 3003381 3006528 "UPOLYC-" 3006533 NIL UPOLYC- (NIL T T) -8 NIL NIL NIL) (-1231 3000583 3000626 3000759 "UPOLYC2" 3000907 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL NIL) (-1230 2992157 3000266 3000395 "UP" 3000502 NIL UP (NIL NIL T) -8 NIL NIL NIL) (-1229 2991496 2991603 2991767 "UPMP" 2992046 NIL UPMP (NIL T T) -7 NIL NIL NIL) (-1228 2991049 2991130 2991269 "UPDIVP" 2991409 NIL UPDIVP (NIL T T) -7 NIL NIL NIL) (-1227 2989617 2989866 2990182 "UPDECOMP" 2990798 NIL UPDECOMP (NIL T T) -7 NIL NIL NIL) (-1226 2988852 2988964 2989149 "UPCDEN" 2989501 NIL UPCDEN (NIL T T T) -7 NIL NIL NIL) (-1225 2988371 2988440 2988589 "UP2" 2988777 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL NIL) (-1224 2986888 2987575 2987852 "UNISEG" 2988129 NIL UNISEG (NIL T) -8 NIL NIL NIL) (-1223 2986103 2986230 2986435 "UNISEG2" 2986731 NIL UNISEG2 (NIL T T) -7 NIL NIL NIL) (-1222 2985163 2985343 2985569 "UNIFACT" 2985919 NIL UNIFACT (NIL T) -7 NIL NIL NIL) (-1221 2969130 2984340 2984591 "ULS" 2984970 NIL ULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1220 2957170 2969034 2969106 "ULSCONS" 2969111 NIL ULSCONS (NIL T T) -8 NIL NIL NIL) (-1219 2939786 2951728 2951790 "ULSCCAT" 2952428 NIL ULSCCAT (NIL T T) -9 NIL 2952716 NIL) (-1218 2938836 2939081 2939469 "ULSCCAT-" 2939474 NIL ULSCCAT- (NIL T T T) -8 NIL NIL NIL) (-1217 2928711 2935148 2935191 "ULSCAT" 2936054 NIL ULSCAT (NIL T) -9 NIL 2936784 NIL) (-1216 2928141 2928220 2928399 "ULS2" 2928626 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1215 2927278 2927753 2927854 "UINT8" 2927965 T UINT8 (NIL) -8 NIL NIL 2928044) (-1214 2926414 2926889 2926990 "UINT32" 2927101 T UINT32 (NIL) -8 NIL NIL 2927180) (-1213 2925550 2926025 2926126 "UINT16" 2926237 T UINT16 (NIL) -8 NIL NIL 2926316) (-1212 2923953 2924876 2924906 "UFD" 2925118 T UFD (NIL) -9 NIL 2925232 NIL) (-1211 2923747 2923793 2923888 "UFD-" 2923893 NIL UFD- (NIL T) -8 NIL NIL NIL) (-1210 2922829 2923012 2923228 "UDVO" 2923553 T UDVO (NIL) -7 NIL NIL NIL) (-1209 2920645 2921054 2921525 "UDPO" 2922393 NIL UDPO (NIL T) -7 NIL NIL NIL) (-1208 2920578 2920583 2920613 "TYPE" 2920618 T TYPE (NIL) -9 NIL NIL NIL) (-1207 2920365 2920533 2920564 "TYPEAST" 2920569 T TYPEAST (NIL) -8 NIL NIL NIL) (-1206 2919336 2919538 2919778 "TWOFACT" 2920159 NIL TWOFACT (NIL T) -7 NIL NIL NIL) (-1205 2918408 2918745 2918980 "TUPLE" 2919136 NIL TUPLE (NIL T) -8 NIL NIL NIL) (-1204 2916099 2916618 2917157 "TUBETOOL" 2917891 T TUBETOOL (NIL) -7 NIL NIL NIL) (-1203 2914948 2915153 2915394 "TUBE" 2915892 NIL TUBE (NIL T) -8 NIL NIL NIL) (-1202 2909712 2913920 2914203 "TS" 2914700 NIL TS (NIL T) -8 NIL NIL NIL) (-1201 2898379 2902471 2902568 "TSETCAT" 2907837 NIL TSETCAT (NIL T T T T) -9 NIL 2909368 NIL) (-1200 2893114 2894711 2896602 "TSETCAT-" 2896607 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1199 2887377 2888223 2889165 "TRMANIP" 2892250 NIL TRMANIP (NIL T T) -7 NIL NIL NIL) (-1198 2886818 2886881 2887044 "TRIMAT" 2887309 NIL TRIMAT (NIL T T T T) -7 NIL NIL NIL) (-1197 2884614 2884851 2885215 "TRIGMNIP" 2886567 NIL TRIGMNIP (NIL T T) -7 NIL NIL NIL) (-1196 2884134 2884247 2884277 "TRIGCAT" 2884490 T TRIGCAT (NIL) -9 NIL NIL NIL) (-1195 2883803 2883882 2884023 "TRIGCAT-" 2884028 NIL TRIGCAT- (NIL T) -8 NIL NIL NIL) (-1194 2880700 2882661 2882942 "TREE" 2883557 NIL TREE (NIL T) -8 NIL NIL NIL) (-1193 2879974 2880502 2880532 "TRANFUN" 2880567 T TRANFUN (NIL) -9 NIL 2880633 NIL) (-1192 2879253 2879444 2879724 "TRANFUN-" 2879729 NIL TRANFUN- (NIL T) -8 NIL NIL NIL) (-1191 2879057 2879089 2879150 "TOPSP" 2879214 T TOPSP (NIL) -7 NIL NIL NIL) (-1190 2878405 2878520 2878674 "TOOLSIGN" 2878938 NIL TOOLSIGN (NIL T) -7 NIL NIL NIL) (-1189 2877066 2877582 2877821 "TEXTFILE" 2878188 T TEXTFILE (NIL) -8 NIL NIL NIL) (-1188 2875005 2875519 2875948 "TEX" 2876659 T TEX (NIL) -8 NIL NIL NIL) (-1187 2874786 2874817 2874889 "TEX1" 2874968 NIL TEX1 (NIL T) -7 NIL NIL NIL) (-1186 2874434 2874497 2874587 "TEMUTL" 2874718 T TEMUTL (NIL) -7 NIL NIL NIL) (-1185 2872588 2872868 2873193 "TBCMPPK" 2874157 NIL TBCMPPK (NIL T T) -7 NIL NIL NIL) (-1184 2864476 2870748 2870804 "TBAGG" 2871204 NIL TBAGG (NIL T T) -9 NIL 2871415 NIL) (-1183 2859546 2861034 2862788 "TBAGG-" 2862793 NIL TBAGG- (NIL T T T) -8 NIL NIL NIL) (-1182 2858930 2859037 2859182 "TANEXP" 2859435 NIL TANEXP (NIL T) -7 NIL NIL NIL) (-1181 2852431 2858787 2858880 "TABLE" 2858885 NIL TABLE (NIL T T) -8 NIL NIL NIL) (-1180 2851843 2851942 2852080 "TABLEAU" 2852328 NIL TABLEAU (NIL T) -8 NIL NIL NIL) (-1179 2846451 2847671 2848919 "TABLBUMP" 2850629 NIL TABLBUMP (NIL T) -7 NIL NIL NIL) (-1178 2845879 2845979 2846107 "SYSTEM" 2846345 T SYSTEM (NIL) -7 NIL NIL NIL) (-1177 2842342 2843037 2843820 "SYSSOLP" 2845130 NIL SYSSOLP (NIL T) -7 NIL NIL NIL) (-1176 2841399 2841866 2841979 "SYSNNI" 2842165 NIL SYSNNI (NIL NIL) -8 NIL NIL 2842244) (-1175 2840852 2841257 2841299 "SYSINT" 2841304 NIL SYSINT (NIL NIL) -8 NIL NIL 2841312) (-1174 2837186 2838113 2838829 "SYNTAX" 2840158 T SYNTAX (NIL) -8 NIL NIL NIL) (-1173 2834344 2834946 2835578 "SYMTAB" 2836576 T SYMTAB (NIL) -8 NIL NIL NIL) (-1172 2829593 2830495 2831478 "SYMS" 2833383 T SYMS (NIL) -8 NIL NIL NIL) (-1171 2826865 2829051 2829281 "SYMPOLY" 2829398 NIL SYMPOLY (NIL T) -8 NIL NIL NIL) (-1170 2826382 2826457 2826580 "SYMFUNC" 2826777 NIL SYMFUNC (NIL T) -7 NIL NIL NIL) (-1169 2822434 2823694 2824507 "SYMBOL" 2825591 T SYMBOL (NIL) -8 NIL NIL NIL) (-1168 2815973 2817662 2819382 "SWITCH" 2820736 T SWITCH (NIL) -8 NIL NIL NIL) (-1167 2809243 2814794 2815097 "SUTS" 2815728 NIL SUTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1166 2801344 2808490 2808763 "SUPXS" 2809028 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1165 2792874 2800962 2801088 "SUP" 2801253 NIL SUP (NIL T) -8 NIL NIL NIL) (-1164 2792033 2792160 2792377 "SUPFRACF" 2792742 NIL SUPFRACF (NIL T T T T) -7 NIL NIL NIL) (-1163 2791654 2791713 2791826 "SUP2" 2791968 NIL SUP2 (NIL T T) -7 NIL NIL NIL) (-1162 2790067 2790341 2790704 "SUMRF" 2791353 NIL SUMRF (NIL T) -7 NIL NIL NIL) (-1161 2789381 2789447 2789646 "SUMFS" 2789988 NIL SUMFS (NIL T T) -7 NIL NIL NIL) (-1160 2773388 2788558 2788809 "SULS" 2789188 NIL SULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1159 2773017 2773210 2773280 "SUCHTAST" 2773340 T SUCHTAST (NIL) -8 NIL NIL NIL) (-1158 2772339 2772542 2772682 "SUCH" 2772925 NIL SUCH (NIL T T) -8 NIL NIL NIL) (-1157 2766233 2767245 2768204 "SUBSPACE" 2771427 NIL SUBSPACE (NIL NIL T) -8 NIL NIL NIL) (-1156 2765663 2765753 2765917 "SUBRESP" 2766121 NIL SUBRESP (NIL T T) -7 NIL NIL NIL) (-1155 2759032 2760328 2761639 "STTF" 2764399 NIL STTF (NIL T) -7 NIL NIL NIL) (-1154 2753205 2754325 2755472 "STTFNC" 2757932 NIL STTFNC (NIL T) -7 NIL NIL NIL) (-1153 2744520 2746387 2748181 "STTAYLOR" 2751446 NIL STTAYLOR (NIL T) -7 NIL NIL NIL) (-1152 2737764 2744384 2744467 "STRTBL" 2744472 NIL STRTBL (NIL T) -8 NIL NIL NIL) (-1151 2733155 2737719 2737750 "STRING" 2737755 T STRING (NIL) -8 NIL NIL NIL) (-1150 2728043 2732528 2732558 "STRICAT" 2732617 T STRICAT (NIL) -9 NIL 2732679 NIL) (-1149 2720853 2725662 2726273 "STREAM" 2727467 NIL STREAM (NIL T) -8 NIL NIL NIL) (-1148 2720363 2720440 2720584 "STREAM3" 2720770 NIL STREAM3 (NIL T T T) -7 NIL NIL NIL) (-1147 2719345 2719528 2719763 "STREAM2" 2720176 NIL STREAM2 (NIL T T) -7 NIL NIL NIL) (-1146 2719033 2719085 2719178 "STREAM1" 2719287 NIL STREAM1 (NIL T) -7 NIL NIL NIL) (-1145 2718049 2718230 2718461 "STINPROD" 2718849 NIL STINPROD (NIL T) -7 NIL NIL NIL) (-1144 2717627 2717811 2717841 "STEP" 2717921 T STEP (NIL) -9 NIL 2717999 NIL) (-1143 2711170 2717526 2717603 "STBL" 2717608 NIL STBL (NIL T T NIL) -8 NIL NIL NIL) (-1142 2706344 2710391 2710434 "STAGG" 2710587 NIL STAGG (NIL T) -9 NIL 2710676 NIL) (-1141 2704046 2704648 2705520 "STAGG-" 2705525 NIL STAGG- (NIL T T) -8 NIL NIL NIL) (-1140 2702241 2703816 2703908 "STACK" 2703989 NIL STACK (NIL T) -8 NIL NIL NIL) (-1139 2694966 2700382 2700838 "SREGSET" 2701871 NIL SREGSET (NIL T T T T) -8 NIL NIL NIL) (-1138 2687392 2688760 2690273 "SRDCMPK" 2693572 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1137 2680359 2684832 2684862 "SRAGG" 2686165 T SRAGG (NIL) -9 NIL 2686773 NIL) (-1136 2679376 2679631 2680010 "SRAGG-" 2680015 NIL SRAGG- (NIL T) -8 NIL NIL NIL) (-1135 2673871 2678323 2678744 "SQMATRIX" 2679002 NIL SQMATRIX (NIL NIL T) -8 NIL NIL NIL) (-1134 2667620 2670589 2671316 "SPLTREE" 2673216 NIL SPLTREE (NIL T T) -8 NIL NIL NIL) (-1133 2663610 2664276 2664922 "SPLNODE" 2667046 NIL SPLNODE (NIL T T) -8 NIL NIL NIL) (-1132 2662657 2662890 2662920 "SPFCAT" 2663364 T SPFCAT (NIL) -9 NIL NIL NIL) (-1131 2661394 2661604 2661868 "SPECOUT" 2662415 T SPECOUT (NIL) -7 NIL NIL NIL) (-1130 2653046 2654790 2654820 "SPADXPT" 2659212 T SPADXPT (NIL) -9 NIL 2661246 NIL) (-1129 2652807 2652847 2652916 "SPADPRSR" 2652999 T SPADPRSR (NIL) -7 NIL NIL NIL) (-1128 2650990 2652762 2652793 "SPADAST" 2652798 T SPADAST (NIL) -8 NIL NIL NIL) (-1127 2642961 2644708 2644751 "SPACEC" 2649124 NIL SPACEC (NIL T) -9 NIL 2650940 NIL) (-1126 2641132 2642893 2642942 "SPACE3" 2642947 NIL SPACE3 (NIL T) -8 NIL NIL NIL) (-1125 2639884 2640055 2640346 "SORTPAK" 2640937 NIL SORTPAK (NIL T T) -7 NIL NIL NIL) (-1124 2637934 2638237 2638656 "SOLVETRA" 2639548 NIL SOLVETRA (NIL T) -7 NIL NIL NIL) (-1123 2636945 2637167 2637441 "SOLVESER" 2637707 NIL SOLVESER (NIL T) -7 NIL NIL NIL) (-1122 2632165 2633046 2634048 "SOLVERAD" 2635997 NIL SOLVERAD (NIL T) -7 NIL NIL NIL) (-1121 2627980 2628589 2629318 "SOLVEFOR" 2631532 NIL SOLVEFOR (NIL T T) -7 NIL NIL NIL) (-1120 2622277 2627329 2627426 "SNTSCAT" 2627431 NIL SNTSCAT (NIL T T T T) -9 NIL 2627501 NIL) (-1119 2616420 2620600 2620991 "SMTS" 2621967 NIL SMTS (NIL T T T) -8 NIL NIL NIL) (-1118 2610871 2616308 2616385 "SMP" 2616390 NIL SMP (NIL T T) -8 NIL NIL NIL) (-1117 2609030 2609331 2609729 "SMITH" 2610568 NIL SMITH (NIL T T T T) -7 NIL NIL NIL) (-1116 2601925 2606081 2606184 "SMATCAT" 2607535 NIL SMATCAT (NIL NIL T T T) -9 NIL 2608085 NIL) (-1115 2598865 2599688 2600866 "SMATCAT-" 2600871 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL NIL) (-1114 2596578 2598101 2598144 "SKAGG" 2598405 NIL SKAGG (NIL T) -9 NIL 2598540 NIL) (-1113 2592920 2595994 2596189 "SINT" 2596376 T SINT (NIL) -8 NIL NIL 2596549) (-1112 2592692 2592730 2592796 "SIMPAN" 2592876 T SIMPAN (NIL) -7 NIL NIL NIL) (-1111 2591999 2592227 2592367 "SIG" 2592574 T SIG (NIL) -8 NIL NIL NIL) (-1110 2590837 2591058 2591333 "SIGNRF" 2591758 NIL SIGNRF (NIL T) -7 NIL NIL NIL) (-1109 2589642 2589793 2590084 "SIGNEF" 2590666 NIL SIGNEF (NIL T T) -7 NIL NIL NIL) (-1108 2588975 2589225 2589349 "SIGAST" 2589540 T SIGAST (NIL) -8 NIL NIL NIL) (-1107 2586665 2587119 2587625 "SHP" 2588516 NIL SHP (NIL T NIL) -7 NIL NIL NIL) (-1106 2580571 2586566 2586642 "SHDP" 2586647 NIL SHDP (NIL NIL NIL T) -8 NIL NIL NIL) (-1105 2580170 2580336 2580366 "SGROUP" 2580459 T SGROUP (NIL) -9 NIL 2580521 NIL) (-1104 2580028 2580054 2580127 "SGROUP-" 2580132 NIL SGROUP- (NIL T) -8 NIL NIL NIL) (-1103 2576864 2577561 2578284 "SGCF" 2579327 T SGCF (NIL) -7 NIL NIL NIL) (-1102 2571259 2576311 2576408 "SFRTCAT" 2576413 NIL SFRTCAT (NIL T T T T) -9 NIL 2576452 NIL) (-1101 2564683 2565698 2566834 "SFRGCD" 2570242 NIL SFRGCD (NIL T T T T T) -7 NIL NIL NIL) (-1100 2557811 2558882 2560068 "SFQCMPK" 2563616 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1099 2557433 2557522 2557632 "SFORT" 2557752 NIL SFORT (NIL T T) -8 NIL NIL NIL) (-1098 2556578 2557273 2557394 "SEXOF" 2557399 NIL SEXOF (NIL T T T T T) -8 NIL NIL NIL) (-1097 2555712 2556459 2556527 "SEX" 2556532 T SEX (NIL) -8 NIL NIL NIL) (-1096 2551251 2551940 2552035 "SEXCAT" 2554972 NIL SEXCAT (NIL T T T T T) -9 NIL 2555550 NIL) (-1095 2548431 2551185 2551233 "SET" 2551238 NIL SET (NIL T) -8 NIL NIL NIL) (-1094 2546682 2547144 2547449 "SETMN" 2548172 NIL SETMN (NIL NIL NIL) -8 NIL NIL NIL) (-1093 2546288 2546414 2546444 "SETCAT" 2546561 T SETCAT (NIL) -9 NIL 2546646 NIL) (-1092 2546068 2546120 2546219 "SETCAT-" 2546224 NIL SETCAT- (NIL T) -8 NIL NIL NIL) (-1091 2542455 2544529 2544572 "SETAGG" 2545442 NIL SETAGG (NIL T) -9 NIL 2545782 NIL) (-1090 2541913 2542029 2542266 "SETAGG-" 2542271 NIL SETAGG- (NIL T T) -8 NIL NIL NIL) (-1089 2541383 2541609 2541710 "SEQAST" 2541834 T SEQAST (NIL) -8 NIL NIL NIL) (-1088 2540582 2540876 2540937 "SEGXCAT" 2541223 NIL SEGXCAT (NIL T T) -9 NIL 2541343 NIL) (-1087 2539638 2540248 2540430 "SEG" 2540435 NIL SEG (NIL T) -8 NIL NIL NIL) (-1086 2538617 2538831 2538874 "SEGCAT" 2539396 NIL SEGCAT (NIL T) -9 NIL 2539617 NIL) (-1085 2537666 2537996 2538196 "SEGBIND" 2538452 NIL SEGBIND (NIL T) -8 NIL NIL NIL) (-1084 2537287 2537346 2537459 "SEGBIND2" 2537601 NIL SEGBIND2 (NIL T T) -7 NIL NIL NIL) (-1083 2536888 2537088 2537165 "SEGAST" 2537232 T SEGAST (NIL) -8 NIL NIL NIL) (-1082 2536107 2536233 2536437 "SEG2" 2536732 NIL SEG2 (NIL T T) -7 NIL NIL NIL) (-1081 2535544 2536042 2536089 "SDVAR" 2536094 NIL SDVAR (NIL T) -8 NIL NIL NIL) (-1080 2527834 2535314 2535444 "SDPOL" 2535449 NIL SDPOL (NIL T) -8 NIL NIL NIL) (-1079 2526427 2526693 2527012 "SCPKG" 2527549 NIL SCPKG (NIL T) -7 NIL NIL NIL) (-1078 2525563 2525743 2525943 "SCOPE" 2526249 T SCOPE (NIL) -8 NIL NIL NIL) (-1077 2524784 2524917 2525096 "SCACHE" 2525418 NIL SCACHE (NIL T) -7 NIL NIL NIL) (-1076 2524456 2524616 2524646 "SASTCAT" 2524651 T SASTCAT (NIL) -9 NIL 2524664 NIL) (-1075 2523970 2524291 2524367 "SAOS" 2524402 T SAOS (NIL) -8 NIL NIL NIL) (-1074 2523535 2523570 2523743 "SAERFFC" 2523929 NIL SAERFFC (NIL T T T) -7 NIL NIL NIL) (-1073 2517509 2523432 2523512 "SAE" 2523517 NIL SAE (NIL T T NIL) -8 NIL NIL NIL) (-1072 2517102 2517137 2517296 "SAEFACT" 2517468 NIL SAEFACT (NIL T T T) -7 NIL NIL NIL) (-1071 2515423 2515737 2516138 "RURPK" 2516768 NIL RURPK (NIL T NIL) -7 NIL NIL NIL) (-1070 2514059 2514338 2514650 "RULESET" 2515257 NIL RULESET (NIL T T T) -8 NIL NIL NIL) (-1069 2511246 2511749 2512214 "RULE" 2513740 NIL RULE (NIL T T T) -8 NIL NIL NIL) (-1068 2510885 2511040 2511123 "RULECOLD" 2511198 NIL RULECOLD (NIL NIL) -8 NIL NIL NIL) (-1067 2510383 2510602 2510696 "RSTRCAST" 2510813 T RSTRCAST (NIL) -8 NIL NIL NIL) (-1066 2505232 2506026 2506946 "RSETGCD" 2509582 NIL RSETGCD (NIL T T T T T) -7 NIL NIL NIL) (-1065 2494489 2499541 2499638 "RSETCAT" 2503757 NIL RSETCAT (NIL T T T T) -9 NIL 2504854 NIL) (-1064 2492416 2492955 2493779 "RSETCAT-" 2493784 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1063 2484803 2486178 2487698 "RSDCMPK" 2491015 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1062 2482808 2483249 2483323 "RRCC" 2484409 NIL RRCC (NIL T T) -9 NIL 2484753 NIL) (-1061 2482159 2482333 2482612 "RRCC-" 2482617 NIL RRCC- (NIL T T T) -8 NIL NIL NIL) (-1060 2481629 2481855 2481956 "RPTAST" 2482080 T RPTAST (NIL) -8 NIL NIL NIL) (-1059 2455635 2465222 2465289 "RPOLCAT" 2475953 NIL RPOLCAT (NIL T T T) -9 NIL 2479112 NIL) (-1058 2447135 2449473 2452595 "RPOLCAT-" 2452600 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL NIL) (-1057 2438182 2445346 2445828 "ROUTINE" 2446675 T ROUTINE (NIL) -8 NIL NIL NIL) (-1056 2435015 2437808 2437948 "ROMAN" 2438064 T ROMAN (NIL) -8 NIL NIL NIL) (-1055 2433290 2433875 2434135 "ROIRC" 2434820 NIL ROIRC (NIL T T) -8 NIL NIL NIL) (-1054 2429683 2431926 2431956 "RNS" 2432260 T RNS (NIL) -9 NIL 2432533 NIL) (-1053 2428192 2428575 2429109 "RNS-" 2429184 NIL RNS- (NIL T) -8 NIL NIL NIL) (-1052 2427641 2428023 2428053 "RNG" 2428058 T RNG (NIL) -9 NIL 2428079 NIL) (-1051 2427033 2427395 2427438 "RMODULE" 2427500 NIL RMODULE (NIL T) -9 NIL 2427542 NIL) (-1050 2425869 2425963 2426299 "RMCAT2" 2426934 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL NIL) (-1049 2422746 2425215 2425512 "RMATRIX" 2425631 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL NIL) (-1048 2415688 2417922 2418037 "RMATCAT" 2421396 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2422378 NIL) (-1047 2415063 2415210 2415517 "RMATCAT-" 2415522 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL NIL) (-1046 2414630 2414705 2414833 "RINTERP" 2414982 NIL RINTERP (NIL NIL T) -7 NIL NIL NIL) (-1045 2413763 2414283 2414313 "RING" 2414369 T RING (NIL) -9 NIL 2414455 NIL) (-1044 2413555 2413599 2413696 "RING-" 2413701 NIL RING- (NIL T) -8 NIL NIL NIL) (-1043 2412396 2412633 2412891 "RIDIST" 2413319 T RIDIST (NIL) -7 NIL NIL NIL) (-1042 2403712 2411864 2412070 "RGCHAIN" 2412244 NIL RGCHAIN (NIL T NIL) -8 NIL NIL NIL) (-1041 2403088 2403468 2403509 "RGBCSPC" 2403567 NIL RGBCSPC (NIL T) -9 NIL 2403619 NIL) (-1040 2402272 2402627 2402668 "RGBCMDL" 2402900 NIL RGBCMDL (NIL T) -9 NIL 2403014 NIL) (-1039 2399266 2399880 2400550 "RF" 2401636 NIL RF (NIL T) -7 NIL NIL NIL) (-1038 2398912 2398975 2399078 "RFFACTOR" 2399197 NIL RFFACTOR (NIL T) -7 NIL NIL NIL) (-1037 2398637 2398672 2398769 "RFFACT" 2398871 NIL RFFACT (NIL T) -7 NIL NIL NIL) (-1036 2396754 2397118 2397500 "RFDIST" 2398277 T RFDIST (NIL) -7 NIL NIL NIL) (-1035 2396207 2396299 2396462 "RETSOL" 2396656 NIL RETSOL (NIL T T) -7 NIL NIL NIL) (-1034 2395843 2395923 2395966 "RETRACT" 2396099 NIL RETRACT (NIL T) -9 NIL 2396186 NIL) (-1033 2395692 2395717 2395804 "RETRACT-" 2395809 NIL RETRACT- (NIL T T) -8 NIL NIL NIL) (-1032 2395321 2395514 2395584 "RETAST" 2395644 T RETAST (NIL) -8 NIL NIL NIL) (-1031 2388175 2394974 2395101 "RESULT" 2395216 T RESULT (NIL) -8 NIL NIL NIL) (-1030 2386801 2387444 2387643 "RESRING" 2388078 NIL RESRING (NIL T T T T NIL) -8 NIL NIL NIL) (-1029 2386437 2386486 2386584 "RESLATC" 2386738 NIL RESLATC (NIL T) -7 NIL NIL NIL) (-1028 2386143 2386177 2386284 "REPSQ" 2386396 NIL REPSQ (NIL T) -7 NIL NIL NIL) (-1027 2383565 2384145 2384747 "REP" 2385563 T REP (NIL) -7 NIL NIL NIL) (-1026 2383263 2383297 2383408 "REPDB" 2383524 NIL REPDB (NIL T) -7 NIL NIL NIL) (-1025 2377173 2378552 2379775 "REP2" 2382075 NIL REP2 (NIL T) -7 NIL NIL NIL) (-1024 2373550 2374231 2375039 "REP1" 2376400 NIL REP1 (NIL T) -7 NIL NIL NIL) (-1023 2366276 2371691 2372147 "REGSET" 2373180 NIL REGSET (NIL T T T T) -8 NIL NIL NIL) (-1022 2365089 2365424 2365674 "REF" 2366061 NIL REF (NIL T) -8 NIL NIL NIL) (-1021 2364466 2364569 2364736 "REDORDER" 2364973 NIL REDORDER (NIL T T) -7 NIL NIL NIL) (-1020 2360471 2363679 2363906 "RECLOS" 2364294 NIL RECLOS (NIL T) -8 NIL NIL NIL) (-1019 2359523 2359704 2359919 "REALSOLV" 2360278 T REALSOLV (NIL) -7 NIL NIL NIL) (-1018 2359369 2359410 2359440 "REAL" 2359445 T REAL (NIL) -9 NIL 2359480 NIL) (-1017 2355852 2356654 2357538 "REAL0Q" 2358534 NIL REAL0Q (NIL T) -7 NIL NIL NIL) (-1016 2351453 2352441 2353502 "REAL0" 2354833 NIL REAL0 (NIL T) -7 NIL NIL NIL) (-1015 2350951 2351170 2351264 "RDUCEAST" 2351381 T RDUCEAST (NIL) -8 NIL NIL NIL) (-1014 2350356 2350428 2350635 "RDIV" 2350873 NIL RDIV (NIL T T T T T) -7 NIL NIL NIL) (-1013 2349424 2349598 2349811 "RDIST" 2350178 NIL RDIST (NIL T) -7 NIL NIL NIL) (-1012 2348021 2348308 2348680 "RDETRS" 2349132 NIL RDETRS (NIL T T) -7 NIL NIL NIL) (-1011 2345833 2346287 2346825 "RDETR" 2347563 NIL RDETR (NIL T T) -7 NIL NIL NIL) (-1010 2344444 2344722 2345126 "RDEEFS" 2345549 NIL RDEEFS (NIL T T) -7 NIL NIL NIL) (-1009 2342939 2343245 2343677 "RDEEF" 2344132 NIL RDEEF (NIL T T) -7 NIL NIL NIL) (-1008 2337200 2340075 2340105 "RCFIELD" 2341400 T RCFIELD (NIL) -9 NIL 2342130 NIL) (-1007 2335264 2335768 2336464 "RCFIELD-" 2336539 NIL RCFIELD- (NIL T) -8 NIL NIL NIL) (-1006 2331580 2333365 2333408 "RCAGG" 2334492 NIL RCAGG (NIL T) -9 NIL 2334957 NIL) (-1005 2331208 2331302 2331465 "RCAGG-" 2331470 NIL RCAGG- (NIL T T) -8 NIL NIL NIL) (-1004 2330543 2330655 2330820 "RATRET" 2331092 NIL RATRET (NIL T) -7 NIL NIL NIL) (-1003 2330096 2330163 2330284 "RATFACT" 2330471 NIL RATFACT (NIL T) -7 NIL NIL NIL) (-1002 2329404 2329524 2329676 "RANDSRC" 2329966 T RANDSRC (NIL) -7 NIL NIL NIL) (-1001 2329138 2329182 2329255 "RADUTIL" 2329353 T RADUTIL (NIL) -7 NIL NIL NIL) (-1000 2322291 2327971 2328281 "RADIX" 2328862 NIL RADIX (NIL NIL) -8 NIL NIL NIL) (-999 2313948 2322135 2322263 "RADFF" 2322268 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL NIL) (-998 2313600 2313675 2313703 "RADCAT" 2313860 T RADCAT (NIL) -9 NIL NIL NIL) (-997 2313385 2313433 2313530 "RADCAT-" 2313535 NIL RADCAT- (NIL T) -8 NIL NIL NIL) (-996 2311536 2313160 2313249 "QUEUE" 2313329 NIL QUEUE (NIL T) -8 NIL NIL NIL) (-995 2308112 2311473 2311518 "QUAT" 2311523 NIL QUAT (NIL T) -8 NIL NIL NIL) (-994 2307750 2307793 2307920 "QUATCT2" 2308063 NIL QUATCT2 (NIL T T T T) -7 NIL NIL NIL) (-993 2301497 2304799 2304839 "QUATCAT" 2305619 NIL QUATCAT (NIL T) -9 NIL 2306385 NIL) (-992 2297641 2298678 2300065 "QUATCAT-" 2300159 NIL QUATCAT- (NIL T T) -8 NIL NIL NIL) (-991 2295161 2296725 2296766 "QUAGG" 2297141 NIL QUAGG (NIL T) -9 NIL 2297316 NIL) (-990 2294793 2294986 2295054 "QQUTAST" 2295113 T QQUTAST (NIL) -8 NIL NIL NIL) (-989 2293718 2294191 2294363 "QFORM" 2294665 NIL QFORM (NIL NIL T) -8 NIL NIL NIL) (-988 2284930 2290135 2290175 "QFCAT" 2290833 NIL QFCAT (NIL T) -9 NIL 2291834 NIL) (-987 2280502 2281703 2283294 "QFCAT-" 2283388 NIL QFCAT- (NIL T T) -8 NIL NIL NIL) (-986 2280140 2280183 2280310 "QFCAT2" 2280453 NIL QFCAT2 (NIL T T T T) -7 NIL NIL NIL) (-985 2279600 2279710 2279840 "QEQUAT" 2280030 T QEQUAT (NIL) -8 NIL NIL NIL) (-984 2272748 2273819 2275003 "QCMPACK" 2278533 NIL QCMPACK (NIL T T T T T) -7 NIL NIL NIL) (-983 2270324 2270745 2271173 "QALGSET" 2272403 NIL QALGSET (NIL T T T T) -8 NIL NIL NIL) (-982 2269569 2269743 2269975 "QALGSET2" 2270144 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL NIL) (-981 2268260 2268483 2268800 "PWFFINTB" 2269342 NIL PWFFINTB (NIL T T T T) -7 NIL NIL NIL) (-980 2266442 2266610 2266964 "PUSHVAR" 2268074 NIL PUSHVAR (NIL T T T T) -7 NIL NIL NIL) (-979 2262360 2263414 2263455 "PTRANFN" 2265339 NIL PTRANFN (NIL T) -9 NIL NIL NIL) (-978 2260762 2261053 2261375 "PTPACK" 2262071 NIL PTPACK (NIL T) -7 NIL NIL NIL) (-977 2260394 2260451 2260560 "PTFUNC2" 2260699 NIL PTFUNC2 (NIL T T) -7 NIL NIL NIL) (-976 2254921 2259266 2259307 "PTCAT" 2259603 NIL PTCAT (NIL T) -9 NIL 2259756 NIL) (-975 2254579 2254614 2254738 "PSQFR" 2254880 NIL PSQFR (NIL T T T T) -7 NIL NIL NIL) (-974 2253174 2253472 2253806 "PSEUDLIN" 2254277 NIL PSEUDLIN (NIL T) -7 NIL NIL NIL) (-973 2239944 2242308 2244632 "PSETPK" 2250934 NIL PSETPK (NIL T T T T) -7 NIL NIL NIL) (-972 2232988 2235702 2235798 "PSETCAT" 2238819 NIL PSETCAT (NIL T T T T) -9 NIL 2239633 NIL) (-971 2230824 2231458 2232279 "PSETCAT-" 2232284 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-970 2230173 2230338 2230366 "PSCURVE" 2230634 T PSCURVE (NIL) -9 NIL 2230801 NIL) (-969 2226529 2228011 2228076 "PSCAT" 2228920 NIL PSCAT (NIL T T T) -9 NIL 2229160 NIL) (-968 2225592 2225808 2226208 "PSCAT-" 2226213 NIL PSCAT- (NIL T T T T) -8 NIL NIL NIL) (-967 2224324 2224957 2225162 "PRTITION" 2225407 T PRTITION (NIL) -8 NIL NIL NIL) (-966 2223826 2224045 2224137 "PRTDAST" 2224252 T PRTDAST (NIL) -8 NIL NIL NIL) (-965 2212924 2215130 2217318 "PRS" 2221688 NIL PRS (NIL T T) -7 NIL NIL NIL) (-964 2210782 2212274 2212314 "PRQAGG" 2212497 NIL PRQAGG (NIL T) -9 NIL 2212599 NIL) (-963 2210168 2210397 2210425 "PROPLOG" 2210610 T PROPLOG (NIL) -9 NIL 2210732 NIL) (-962 2207338 2207982 2208446 "PROPFRML" 2209736 NIL PROPFRML (NIL T) -8 NIL NIL NIL) (-961 2206798 2206908 2207038 "PROPERTY" 2207228 T PROPERTY (NIL) -8 NIL NIL NIL) (-960 2200883 2204964 2205784 "PRODUCT" 2206024 NIL PRODUCT (NIL T T) -8 NIL NIL NIL) (-959 2198196 2200341 2200575 "PR" 2200694 NIL PR (NIL T T) -8 NIL NIL NIL) (-958 2197992 2198024 2198083 "PRINT" 2198157 T PRINT (NIL) -7 NIL NIL NIL) (-957 2197332 2197449 2197601 "PRIMES" 2197872 NIL PRIMES (NIL T) -7 NIL NIL NIL) (-956 2195397 2195798 2196264 "PRIMELT" 2196911 NIL PRIMELT (NIL T) -7 NIL NIL NIL) (-955 2195126 2195175 2195203 "PRIMCAT" 2195327 T PRIMCAT (NIL) -9 NIL NIL NIL) (-954 2191287 2195064 2195109 "PRIMARR" 2195114 NIL PRIMARR (NIL T) -8 NIL NIL NIL) (-953 2190294 2190472 2190700 "PRIMARR2" 2191105 NIL PRIMARR2 (NIL T T) -7 NIL NIL NIL) (-952 2189937 2189993 2190104 "PREASSOC" 2190232 NIL PREASSOC (NIL T T) -7 NIL NIL NIL) (-951 2189412 2189545 2189573 "PPCURVE" 2189778 T PPCURVE (NIL) -9 NIL 2189914 NIL) (-950 2189034 2189207 2189290 "PORTNUM" 2189349 T PORTNUM (NIL) -8 NIL NIL NIL) (-949 2186393 2186792 2187384 "POLYROOT" 2188615 NIL POLYROOT (NIL T T T T T) -7 NIL NIL NIL) (-948 2180338 2185997 2186157 "POLY" 2186266 NIL POLY (NIL T) -8 NIL NIL NIL) (-947 2179721 2179779 2180013 "POLYLIFT" 2180274 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL NIL) (-946 2175996 2176445 2177074 "POLYCATQ" 2179266 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL NIL) (-945 2162813 2168171 2168236 "POLYCAT" 2171750 NIL POLYCAT (NIL T T T) -9 NIL 2173678 NIL) (-944 2156263 2158124 2160508 "POLYCAT-" 2160513 NIL POLYCAT- (NIL T T T T) -8 NIL NIL NIL) (-943 2155850 2155918 2156038 "POLY2UP" 2156189 NIL POLY2UP (NIL NIL T) -7 NIL NIL NIL) (-942 2155482 2155539 2155648 "POLY2" 2155787 NIL POLY2 (NIL T T) -7 NIL NIL NIL) (-941 2154167 2154406 2154682 "POLUTIL" 2155256 NIL POLUTIL (NIL T T) -7 NIL NIL NIL) (-940 2152522 2152799 2153130 "POLTOPOL" 2153889 NIL POLTOPOL (NIL NIL T) -7 NIL NIL NIL) (-939 2148040 2152458 2152504 "POINT" 2152509 NIL POINT (NIL T) -8 NIL NIL NIL) (-938 2146227 2146584 2146959 "PNTHEORY" 2147685 T PNTHEORY (NIL) -7 NIL NIL NIL) (-937 2144646 2144943 2145355 "PMTOOLS" 2145925 NIL PMTOOLS (NIL T T T) -7 NIL NIL NIL) (-936 2144239 2144317 2144434 "PMSYM" 2144562 NIL PMSYM (NIL T) -7 NIL NIL NIL) (-935 2143749 2143818 2143992 "PMQFCAT" 2144164 NIL PMQFCAT (NIL T T T) -7 NIL NIL NIL) (-934 2143104 2143214 2143370 "PMPRED" 2143626 NIL PMPRED (NIL T) -7 NIL NIL NIL) (-933 2142500 2142586 2142747 "PMPREDFS" 2143005 NIL PMPREDFS (NIL T T T) -7 NIL NIL NIL) (-932 2141143 2141351 2141736 "PMPLCAT" 2142262 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL NIL) (-931 2140675 2140754 2140906 "PMLSAGG" 2141058 NIL PMLSAGG (NIL T T T) -7 NIL NIL NIL) (-930 2140150 2140226 2140407 "PMKERNEL" 2140593 NIL PMKERNEL (NIL T T) -7 NIL NIL NIL) (-929 2139767 2139842 2139955 "PMINS" 2140069 NIL PMINS (NIL T) -7 NIL NIL NIL) (-928 2139195 2139264 2139480 "PMFS" 2139692 NIL PMFS (NIL T T T) -7 NIL NIL NIL) (-927 2138423 2138541 2138746 "PMDOWN" 2139072 NIL PMDOWN (NIL T T T) -7 NIL NIL NIL) (-926 2137586 2137745 2137927 "PMASS" 2138261 T PMASS (NIL) -7 NIL NIL NIL) (-925 2136860 2136971 2137134 "PMASSFS" 2137472 NIL PMASSFS (NIL T T) -7 NIL NIL NIL) (-924 2136515 2136583 2136677 "PLOTTOOL" 2136786 T PLOTTOOL (NIL) -7 NIL NIL NIL) (-923 2131137 2132326 2133474 "PLOT" 2135387 T PLOT (NIL) -8 NIL NIL NIL) (-922 2126951 2127985 2128906 "PLOT3D" 2130236 T PLOT3D (NIL) -8 NIL NIL NIL) (-921 2125863 2126040 2126275 "PLOT1" 2126755 NIL PLOT1 (NIL T) -7 NIL NIL NIL) (-920 2101257 2105929 2110780 "PLEQN" 2121129 NIL PLEQN (NIL T T T T) -7 NIL NIL NIL) (-919 2100575 2100697 2100877 "PINTERP" 2101122 NIL PINTERP (NIL NIL T) -7 NIL NIL NIL) (-918 2100268 2100315 2100418 "PINTERPA" 2100522 NIL PINTERPA (NIL T T) -7 NIL NIL NIL) (-917 2099516 2100037 2100124 "PI" 2100164 T PI (NIL) -8 NIL NIL 2100231) (-916 2097913 2098854 2098882 "PID" 2099064 T PID (NIL) -9 NIL 2099198 NIL) (-915 2097638 2097675 2097763 "PICOERCE" 2097870 NIL PICOERCE (NIL T) -7 NIL NIL NIL) (-914 2096958 2097097 2097273 "PGROEB" 2097494 NIL PGROEB (NIL T) -7 NIL NIL NIL) (-913 2092545 2093359 2094264 "PGE" 2096073 T PGE (NIL) -7 NIL NIL NIL) (-912 2090669 2090915 2091281 "PGCD" 2092262 NIL PGCD (NIL T T T T) -7 NIL NIL NIL) (-911 2090007 2090110 2090271 "PFRPAC" 2090553 NIL PFRPAC (NIL T) -7 NIL NIL NIL) (-910 2086687 2088555 2088908 "PFR" 2089686 NIL PFR (NIL T) -8 NIL NIL NIL) (-909 2085076 2085320 2085645 "PFOTOOLS" 2086434 NIL PFOTOOLS (NIL T T) -7 NIL NIL NIL) (-908 2083609 2083848 2084199 "PFOQ" 2084833 NIL PFOQ (NIL T T T) -7 NIL NIL NIL) (-907 2082082 2082294 2082657 "PFO" 2083393 NIL PFO (NIL T T T T T) -7 NIL NIL NIL) (-906 2078670 2081971 2082040 "PF" 2082045 NIL PF (NIL NIL) -8 NIL NIL NIL) (-905 2076104 2077341 2077369 "PFECAT" 2077954 T PFECAT (NIL) -9 NIL 2078338 NIL) (-904 2075549 2075703 2075917 "PFECAT-" 2075922 NIL PFECAT- (NIL T) -8 NIL NIL NIL) (-903 2074153 2074404 2074705 "PFBRU" 2075298 NIL PFBRU (NIL T T) -7 NIL NIL NIL) (-902 2072020 2072371 2072803 "PFBR" 2073804 NIL PFBR (NIL T T T T) -7 NIL NIL NIL) (-901 2067936 2069396 2070072 "PERM" 2071377 NIL PERM (NIL T) -8 NIL NIL NIL) (-900 2063202 2064143 2065013 "PERMGRP" 2067099 NIL PERMGRP (NIL T) -8 NIL NIL NIL) (-899 2061334 2062265 2062306 "PERMCAT" 2062752 NIL PERMCAT (NIL T) -9 NIL 2063057 NIL) (-898 2060987 2061028 2061152 "PERMAN" 2061287 NIL PERMAN (NIL NIL T) -7 NIL NIL NIL) (-897 2058523 2060652 2060774 "PENDTREE" 2060898 NIL PENDTREE (NIL T) -8 NIL NIL NIL) (-896 2056616 2057350 2057391 "PDRING" 2058048 NIL PDRING (NIL T) -9 NIL 2058334 NIL) (-895 2055719 2055937 2056299 "PDRING-" 2056304 NIL PDRING- (NIL T T) -8 NIL NIL NIL) (-894 2052961 2053712 2054380 "PDEPROB" 2055071 T PDEPROB (NIL) -8 NIL NIL NIL) (-893 2050508 2051010 2051565 "PDEPACK" 2052426 T PDEPACK (NIL) -7 NIL NIL NIL) (-892 2049420 2049610 2049861 "PDECOMP" 2050307 NIL PDECOMP (NIL T T) -7 NIL NIL NIL) (-891 2047025 2047842 2047870 "PDECAT" 2048657 T PDECAT (NIL) -9 NIL 2049370 NIL) (-890 2046776 2046809 2046899 "PCOMP" 2046986 NIL PCOMP (NIL T T) -7 NIL NIL NIL) (-889 2044981 2045577 2045874 "PBWLB" 2046505 NIL PBWLB (NIL T) -8 NIL NIL NIL) (-888 2037486 2039054 2040392 "PATTERN" 2043664 NIL PATTERN (NIL T) -8 NIL NIL NIL) (-887 2037118 2037175 2037284 "PATTERN2" 2037423 NIL PATTERN2 (NIL T T) -7 NIL NIL NIL) (-886 2034875 2035263 2035720 "PATTERN1" 2036707 NIL PATTERN1 (NIL T T) -7 NIL NIL NIL) (-885 2032270 2032824 2033305 "PATRES" 2034440 NIL PATRES (NIL T T) -8 NIL NIL NIL) (-884 2031834 2031901 2032033 "PATRES2" 2032197 NIL PATRES2 (NIL T T T) -7 NIL NIL NIL) (-883 2029717 2030122 2030529 "PATMATCH" 2031501 NIL PATMATCH (NIL T T T) -7 NIL NIL NIL) (-882 2029253 2029436 2029477 "PATMAB" 2029584 NIL PATMAB (NIL T) -9 NIL 2029667 NIL) (-881 2027798 2028107 2028365 "PATLRES" 2029058 NIL PATLRES (NIL T T T) -8 NIL NIL NIL) (-880 2027344 2027467 2027508 "PATAB" 2027513 NIL PATAB (NIL T) -9 NIL 2027685 NIL) (-879 2024825 2025357 2025930 "PARTPERM" 2026791 T PARTPERM (NIL) -7 NIL NIL NIL) (-878 2024446 2024509 2024611 "PARSURF" 2024756 NIL PARSURF (NIL T) -8 NIL NIL NIL) (-877 2024078 2024135 2024244 "PARSU2" 2024383 NIL PARSU2 (NIL T T) -7 NIL NIL NIL) (-876 2023842 2023882 2023949 "PARSER" 2024031 T PARSER (NIL) -7 NIL NIL NIL) (-875 2023463 2023526 2023628 "PARSCURV" 2023773 NIL PARSCURV (NIL T) -8 NIL NIL NIL) (-874 2023095 2023152 2023261 "PARSC2" 2023400 NIL PARSC2 (NIL T T) -7 NIL NIL NIL) (-873 2022734 2022792 2022889 "PARPCURV" 2023031 NIL PARPCURV (NIL T) -8 NIL NIL NIL) (-872 2022366 2022423 2022532 "PARPC2" 2022671 NIL PARPC2 (NIL T T) -7 NIL NIL NIL) (-871 2021886 2021972 2022091 "PAN2EXPR" 2022267 T PAN2EXPR (NIL) -7 NIL NIL NIL) (-870 2020692 2021007 2021235 "PALETTE" 2021678 T PALETTE (NIL) -8 NIL NIL NIL) (-869 2019160 2019697 2020057 "PAIR" 2020378 NIL PAIR (NIL T T) -8 NIL NIL NIL) (-868 2013066 2018419 2018613 "PADICRC" 2019015 NIL PADICRC (NIL NIL T) -8 NIL NIL NIL) (-867 2006330 2012412 2012596 "PADICRAT" 2012914 NIL PADICRAT (NIL NIL) -8 NIL NIL NIL) (-866 2004680 2006267 2006312 "PADIC" 2006317 NIL PADIC (NIL NIL) -8 NIL NIL NIL) (-865 2001890 2003420 2003460 "PADICCT" 2004041 NIL PADICCT (NIL NIL) -9 NIL 2004323 NIL) (-864 2000847 2001047 2001315 "PADEPAC" 2001677 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL NIL) (-863 2000059 2000192 2000398 "PADE" 2000709 NIL PADE (NIL T T T) -7 NIL NIL NIL) (-862 1998481 1999267 1999547 "OWP" 1999863 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-861 1998001 1998187 1998284 "OVERSET" 1998404 T OVERSET (NIL) -8 NIL NIL NIL) (-860 1997074 1997606 1997778 "OVAR" 1997869 NIL OVAR (NIL NIL) -8 NIL NIL NIL) (-859 1996338 1996459 1996620 "OUT" 1996933 T OUT (NIL) -7 NIL NIL NIL) (-858 1985245 1987447 1989647 "OUTFORM" 1994158 T OUTFORM (NIL) -8 NIL NIL NIL) (-857 1984581 1984842 1984969 "OUTBFILE" 1985138 T OUTBFILE (NIL) -8 NIL NIL NIL) (-856 1983888 1984053 1984081 "OUTBCON" 1984399 T OUTBCON (NIL) -9 NIL 1984565 NIL) (-855 1983489 1983601 1983758 "OUTBCON-" 1983763 NIL OUTBCON- (NIL T) -8 NIL NIL NIL) (-854 1982897 1983218 1983307 "OSI" 1983420 T OSI (NIL) -8 NIL NIL NIL) (-853 1982453 1982765 1982793 "OSGROUP" 1982798 T OSGROUP (NIL) -9 NIL 1982820 NIL) (-852 1981198 1981425 1981710 "ORTHPOL" 1982200 NIL ORTHPOL (NIL T) -7 NIL NIL NIL) (-851 1978784 1981033 1981154 "OREUP" 1981159 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL NIL) (-850 1976222 1978475 1978602 "ORESUP" 1978726 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL NIL) (-849 1973750 1974250 1974811 "OREPCTO" 1975711 NIL OREPCTO (NIL T T) -7 NIL NIL NIL) (-848 1967574 1969741 1969782 "OREPCAT" 1972130 NIL OREPCAT (NIL T) -9 NIL 1973234 NIL) (-847 1964721 1965503 1966561 "OREPCAT-" 1966566 NIL OREPCAT- (NIL T T) -8 NIL NIL NIL) (-846 1963898 1964170 1964198 "ORDSET" 1964507 T ORDSET (NIL) -9 NIL 1964671 NIL) (-845 1963417 1963539 1963732 "ORDSET-" 1963737 NIL ORDSET- (NIL T) -8 NIL NIL NIL) (-844 1962051 1962808 1962836 "ORDRING" 1963038 T ORDRING (NIL) -9 NIL 1963163 NIL) (-843 1961696 1961790 1961934 "ORDRING-" 1961939 NIL ORDRING- (NIL T) -8 NIL NIL NIL) (-842 1961102 1961539 1961567 "ORDMON" 1961572 T ORDMON (NIL) -9 NIL 1961593 NIL) (-841 1960264 1960411 1960606 "ORDFUNS" 1960951 NIL ORDFUNS (NIL NIL T) -7 NIL NIL NIL) (-840 1959628 1960021 1960049 "ORDFIN" 1960114 T ORDFIN (NIL) -9 NIL 1960188 NIL) (-839 1956220 1958214 1958623 "ORDCOMP" 1959252 NIL ORDCOMP (NIL T) -8 NIL NIL NIL) (-838 1955486 1955613 1955799 "ORDCOMP2" 1956080 NIL ORDCOMP2 (NIL T T) -7 NIL NIL NIL) (-837 1952094 1952977 1953791 "OPTPROB" 1954692 T OPTPROB (NIL) -8 NIL NIL NIL) (-836 1948896 1949535 1950239 "OPTPACK" 1951410 T OPTPACK (NIL) -7 NIL NIL NIL) (-835 1946609 1947349 1947377 "OPTCAT" 1948196 T OPTCAT (NIL) -9 NIL 1948846 NIL) (-834 1946052 1946286 1946391 "OPSIG" 1946524 T OPSIG (NIL) -8 NIL NIL NIL) (-833 1945820 1945859 1945925 "OPQUERY" 1946006 T OPQUERY (NIL) -7 NIL NIL NIL) (-832 1942986 1944131 1944635 "OP" 1945349 NIL OP (NIL T) -8 NIL NIL NIL) (-831 1942521 1942692 1942733 "OPERCAT" 1942868 NIL OPERCAT (NIL T) -9 NIL 1942936 NIL) (-830 1942367 1942394 1942480 "OPERCAT-" 1942485 NIL OPERCAT- (NIL T T) -8 NIL NIL NIL) (-829 1939212 1941164 1941533 "ONECOMP" 1942031 NIL ONECOMP (NIL T) -8 NIL NIL NIL) (-828 1938517 1938632 1938806 "ONECOMP2" 1939084 NIL ONECOMP2 (NIL T T) -7 NIL NIL NIL) (-827 1937936 1938042 1938172 "OMSERVER" 1938407 T OMSERVER (NIL) -7 NIL NIL NIL) (-826 1934824 1937376 1937416 "OMSAGG" 1937477 NIL OMSAGG (NIL T) -9 NIL 1937541 NIL) (-825 1933447 1933710 1933992 "OMPKG" 1934562 T OMPKG (NIL) -7 NIL NIL NIL) (-824 1932877 1932980 1933008 "OM" 1933307 T OM (NIL) -9 NIL NIL NIL) (-823 1931459 1932426 1932595 "OMLO" 1932758 NIL OMLO (NIL T T) -8 NIL NIL NIL) (-822 1930384 1930531 1930758 "OMEXPR" 1931285 NIL OMEXPR (NIL T) -7 NIL NIL NIL) (-821 1929702 1929930 1930066 "OMERR" 1930268 T OMERR (NIL) -8 NIL NIL NIL) (-820 1928880 1929123 1929283 "OMERRK" 1929562 T OMERRK (NIL) -8 NIL NIL NIL) (-819 1928358 1928557 1928665 "OMENC" 1928792 T OMENC (NIL) -8 NIL NIL NIL) (-818 1922253 1923438 1924609 "OMDEV" 1927207 T OMDEV (NIL) -8 NIL NIL NIL) (-817 1921322 1921493 1921687 "OMCONN" 1922079 T OMCONN (NIL) -8 NIL NIL NIL) (-816 1919943 1920885 1920913 "OINTDOM" 1920918 T OINTDOM (NIL) -9 NIL 1920939 NIL) (-815 1915749 1916933 1917649 "OFMONOID" 1919259 NIL OFMONOID (NIL T) -8 NIL NIL NIL) (-814 1915187 1915686 1915731 "ODVAR" 1915736 NIL ODVAR (NIL T) -8 NIL NIL NIL) (-813 1912645 1914932 1915087 "ODR" 1915092 NIL ODR (NIL T T NIL) -8 NIL NIL NIL) (-812 1904989 1912421 1912547 "ODPOL" 1912552 NIL ODPOL (NIL T) -8 NIL NIL NIL) (-811 1898865 1904861 1904966 "ODP" 1904971 NIL ODP (NIL NIL T NIL) -8 NIL NIL NIL) (-810 1897631 1897846 1898121 "ODETOOLS" 1898639 NIL ODETOOLS (NIL T T) -7 NIL NIL NIL) (-809 1894600 1895256 1895972 "ODESYS" 1896964 NIL ODESYS (NIL T T) -7 NIL NIL NIL) (-808 1889482 1890390 1891415 "ODERTRIC" 1893675 NIL ODERTRIC (NIL T T) -7 NIL NIL NIL) (-807 1888908 1888990 1889184 "ODERED" 1889394 NIL ODERED (NIL T T T T T) -7 NIL NIL NIL) (-806 1885796 1886344 1887021 "ODERAT" 1888331 NIL ODERAT (NIL T T) -7 NIL NIL NIL) (-805 1882756 1883220 1883817 "ODEPRRIC" 1885325 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL NIL) (-804 1880726 1881295 1881781 "ODEPROB" 1882290 T ODEPROB (NIL) -8 NIL NIL NIL) (-803 1877248 1877731 1878378 "ODEPRIM" 1880205 NIL ODEPRIM (NIL T T T T) -7 NIL NIL NIL) (-802 1876497 1876599 1876859 "ODEPAL" 1877140 NIL ODEPAL (NIL T T T T) -7 NIL NIL NIL) (-801 1872659 1873450 1874314 "ODEPACK" 1875653 T ODEPACK (NIL) -7 NIL NIL NIL) (-800 1871692 1871799 1872028 "ODEINT" 1872548 NIL ODEINT (NIL T T) -7 NIL NIL NIL) (-799 1865793 1867218 1868665 "ODEIFTBL" 1870265 T ODEIFTBL (NIL) -8 NIL NIL NIL) (-798 1861128 1861914 1862873 "ODEEF" 1864952 NIL ODEEF (NIL T T) -7 NIL NIL NIL) (-797 1860463 1860552 1860782 "ODECONST" 1861033 NIL ODECONST (NIL T T T) -7 NIL NIL NIL) (-796 1858614 1859249 1859277 "ODECAT" 1859882 T ODECAT (NIL) -9 NIL 1860413 NIL) (-795 1855521 1858326 1858445 "OCT" 1858527 NIL OCT (NIL T) -8 NIL NIL NIL) (-794 1855159 1855202 1855329 "OCTCT2" 1855472 NIL OCTCT2 (NIL T T T T) -7 NIL NIL NIL) (-793 1849933 1852333 1852373 "OC" 1853470 NIL OC (NIL T) -9 NIL 1854328 NIL) (-792 1847160 1847908 1848898 "OC-" 1848992 NIL OC- (NIL T T) -8 NIL NIL NIL) (-791 1846538 1846980 1847008 "OCAMON" 1847013 T OCAMON (NIL) -9 NIL 1847034 NIL) (-790 1846095 1846410 1846438 "OASGP" 1846443 T OASGP (NIL) -9 NIL 1846463 NIL) (-789 1845382 1845845 1845873 "OAMONS" 1845913 T OAMONS (NIL) -9 NIL 1845956 NIL) (-788 1844822 1845229 1845257 "OAMON" 1845262 T OAMON (NIL) -9 NIL 1845282 NIL) (-787 1844126 1844618 1844646 "OAGROUP" 1844651 T OAGROUP (NIL) -9 NIL 1844671 NIL) (-786 1843816 1843866 1843954 "NUMTUBE" 1844070 NIL NUMTUBE (NIL T) -7 NIL NIL NIL) (-785 1837389 1838907 1840443 "NUMQUAD" 1842300 T NUMQUAD (NIL) -7 NIL NIL NIL) (-784 1833145 1834133 1835158 "NUMODE" 1836384 T NUMODE (NIL) -7 NIL NIL NIL) (-783 1830526 1831380 1831408 "NUMINT" 1832331 T NUMINT (NIL) -9 NIL 1833095 NIL) (-782 1829474 1829671 1829889 "NUMFMT" 1830328 T NUMFMT (NIL) -7 NIL NIL NIL) (-781 1815833 1818778 1821310 "NUMERIC" 1826981 NIL NUMERIC (NIL T) -7 NIL NIL NIL) (-780 1810230 1815282 1815377 "NTSCAT" 1815382 NIL NTSCAT (NIL T T T T) -9 NIL 1815421 NIL) (-779 1809424 1809589 1809782 "NTPOLFN" 1810069 NIL NTPOLFN (NIL T) -7 NIL NIL NIL) (-778 1797264 1806249 1807061 "NSUP" 1808645 NIL NSUP (NIL T) -8 NIL NIL NIL) (-777 1796896 1796953 1797062 "NSUP2" 1797201 NIL NSUP2 (NIL T T) -7 NIL NIL NIL) (-776 1786893 1796670 1796803 "NSMP" 1796808 NIL NSMP (NIL T T) -8 NIL NIL NIL) (-775 1785325 1785626 1785983 "NREP" 1786581 NIL NREP (NIL T) -7 NIL NIL NIL) (-774 1783916 1784168 1784526 "NPCOEF" 1785068 NIL NPCOEF (NIL T T T T T) -7 NIL NIL NIL) (-773 1782982 1783097 1783313 "NORMRETR" 1783797 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL NIL) (-772 1781023 1781313 1781722 "NORMPK" 1782690 NIL NORMPK (NIL T T T T T) -7 NIL NIL NIL) (-771 1780708 1780736 1780860 "NORMMA" 1780989 NIL NORMMA (NIL T T T T) -7 NIL NIL NIL) (-770 1780535 1780665 1780694 "NONE" 1780699 T NONE (NIL) -8 NIL NIL NIL) (-769 1780324 1780353 1780422 "NONE1" 1780499 NIL NONE1 (NIL T) -7 NIL NIL NIL) (-768 1779807 1779869 1780055 "NODE1" 1780256 NIL NODE1 (NIL T T) -7 NIL NIL NIL) (-767 1778078 1778901 1779156 "NNI" 1779503 T NNI (NIL) -8 NIL NIL 1779738) (-766 1776498 1776811 1777175 "NLINSOL" 1777746 NIL NLINSOL (NIL T) -7 NIL NIL NIL) (-765 1772766 1773734 1774633 "NIPROB" 1775619 T NIPROB (NIL) -8 NIL NIL NIL) (-764 1771523 1771757 1772059 "NFINTBAS" 1772528 NIL NFINTBAS (NIL T T) -7 NIL NIL NIL) (-763 1770697 1771173 1771214 "NETCLT" 1771386 NIL NETCLT (NIL T) -9 NIL 1771468 NIL) (-762 1769405 1769636 1769917 "NCODIV" 1770465 NIL NCODIV (NIL T T) -7 NIL NIL NIL) (-761 1769167 1769204 1769279 "NCNTFRAC" 1769362 NIL NCNTFRAC (NIL T) -7 NIL NIL NIL) (-760 1767347 1767711 1768131 "NCEP" 1768792 NIL NCEP (NIL T) -7 NIL NIL NIL) (-759 1766258 1766997 1767025 "NASRING" 1767135 T NASRING (NIL) -9 NIL 1767209 NIL) (-758 1766053 1766097 1766191 "NASRING-" 1766196 NIL NASRING- (NIL T) -8 NIL NIL NIL) (-757 1765206 1765705 1765733 "NARNG" 1765850 T NARNG (NIL) -9 NIL 1765941 NIL) (-756 1764898 1764965 1765099 "NARNG-" 1765104 NIL NARNG- (NIL T) -8 NIL NIL NIL) (-755 1763777 1763984 1764219 "NAGSP" 1764683 T NAGSP (NIL) -7 NIL NIL NIL) (-754 1755049 1756733 1758406 "NAGS" 1762124 T NAGS (NIL) -7 NIL NIL NIL) (-753 1753597 1753905 1754236 "NAGF07" 1754738 T NAGF07 (NIL) -7 NIL NIL NIL) (-752 1748135 1749426 1750733 "NAGF04" 1752310 T NAGF04 (NIL) -7 NIL NIL NIL) (-751 1741103 1742717 1744350 "NAGF02" 1746522 T NAGF02 (NIL) -7 NIL NIL NIL) (-750 1736327 1737427 1738544 "NAGF01" 1740006 T NAGF01 (NIL) -7 NIL NIL NIL) (-749 1729955 1731521 1733106 "NAGE04" 1734762 T NAGE04 (NIL) -7 NIL NIL NIL) (-748 1721124 1723245 1725375 "NAGE02" 1727845 T NAGE02 (NIL) -7 NIL NIL NIL) (-747 1717077 1718024 1718988 "NAGE01" 1720180 T NAGE01 (NIL) -7 NIL NIL NIL) (-746 1714872 1715406 1715964 "NAGD03" 1716539 T NAGD03 (NIL) -7 NIL NIL NIL) (-745 1706622 1708550 1710504 "NAGD02" 1712938 T NAGD02 (NIL) -7 NIL NIL NIL) (-744 1700433 1701858 1703298 "NAGD01" 1705202 T NAGD01 (NIL) -7 NIL NIL NIL) (-743 1696642 1697464 1698301 "NAGC06" 1699616 T NAGC06 (NIL) -7 NIL NIL NIL) (-742 1695107 1695439 1695795 "NAGC05" 1696306 T NAGC05 (NIL) -7 NIL NIL NIL) (-741 1694483 1694602 1694746 "NAGC02" 1694983 T NAGC02 (NIL) -7 NIL NIL NIL) (-740 1693543 1694100 1694140 "NAALG" 1694219 NIL NAALG (NIL T) -9 NIL 1694280 NIL) (-739 1693378 1693407 1693497 "NAALG-" 1693502 NIL NAALG- (NIL T T) -8 NIL NIL NIL) (-738 1687328 1688436 1689623 "MULTSQFR" 1692274 NIL MULTSQFR (NIL T T T T) -7 NIL NIL NIL) (-737 1686647 1686722 1686906 "MULTFACT" 1687240 NIL MULTFACT (NIL T T T T) -7 NIL NIL NIL) (-736 1679740 1683610 1683663 "MTSCAT" 1684733 NIL MTSCAT (NIL T T) -9 NIL 1685247 NIL) (-735 1679452 1679506 1679598 "MTHING" 1679680 NIL MTHING (NIL T) -7 NIL NIL NIL) (-734 1679244 1679277 1679337 "MSYSCMD" 1679412 T MSYSCMD (NIL) -7 NIL NIL NIL) (-733 1675356 1677999 1678319 "MSET" 1678957 NIL MSET (NIL T) -8 NIL NIL NIL) (-732 1672451 1674917 1674958 "MSETAGG" 1674963 NIL MSETAGG (NIL T) -9 NIL 1674997 NIL) (-731 1668334 1669830 1670575 "MRING" 1671751 NIL MRING (NIL T T) -8 NIL NIL NIL) (-730 1667900 1667967 1668098 "MRF2" 1668261 NIL MRF2 (NIL T T T) -7 NIL NIL NIL) (-729 1667518 1667553 1667697 "MRATFAC" 1667859 NIL MRATFAC (NIL T T T T) -7 NIL NIL NIL) (-728 1665130 1665425 1665856 "MPRFF" 1667223 NIL MPRFF (NIL T T T T) -7 NIL NIL NIL) (-727 1659190 1664984 1665081 "MPOLY" 1665086 NIL MPOLY (NIL NIL T) -8 NIL NIL NIL) (-726 1658680 1658715 1658923 "MPCPF" 1659149 NIL MPCPF (NIL T T T T) -7 NIL NIL NIL) (-725 1658194 1658237 1658421 "MPC3" 1658631 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL NIL) (-724 1657389 1657470 1657691 "MPC2" 1658109 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL NIL) (-723 1655690 1656027 1656417 "MONOTOOL" 1657049 NIL MONOTOOL (NIL T T) -7 NIL NIL NIL) (-722 1654941 1655232 1655260 "MONOID" 1655479 T MONOID (NIL) -9 NIL 1655626 NIL) (-721 1654487 1654606 1654787 "MONOID-" 1654792 NIL MONOID- (NIL T) -8 NIL NIL NIL) (-720 1645346 1651254 1651313 "MONOGEN" 1651987 NIL MONOGEN (NIL T T) -9 NIL 1652443 NIL) (-719 1642564 1643299 1644299 "MONOGEN-" 1644418 NIL MONOGEN- (NIL T T T) -8 NIL NIL NIL) (-718 1641423 1641843 1641871 "MONADWU" 1642263 T MONADWU (NIL) -9 NIL 1642501 NIL) (-717 1640795 1640954 1641202 "MONADWU-" 1641207 NIL MONADWU- (NIL T) -8 NIL NIL NIL) (-716 1640180 1640398 1640426 "MONAD" 1640633 T MONAD (NIL) -9 NIL 1640745 NIL) (-715 1639865 1639943 1640075 "MONAD-" 1640080 NIL MONAD- (NIL T) -8 NIL NIL NIL) (-714 1638181 1638778 1639057 "MOEBIUS" 1639618 NIL MOEBIUS (NIL T) -8 NIL NIL NIL) (-713 1637573 1637951 1637991 "MODULE" 1637996 NIL MODULE (NIL T) -9 NIL 1638022 NIL) (-712 1637141 1637237 1637427 "MODULE-" 1637432 NIL MODULE- (NIL T T) -8 NIL NIL NIL) (-711 1634856 1635505 1635832 "MODRING" 1636965 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-710 1631842 1632961 1633482 "MODOP" 1634385 NIL MODOP (NIL T T) -8 NIL NIL NIL) (-709 1630457 1630909 1631186 "MODMONOM" 1631705 NIL MODMONOM (NIL T T NIL) -8 NIL NIL NIL) (-708 1620264 1628748 1629162 "MODMON" 1630094 NIL MODMON (NIL T T) -8 NIL NIL NIL) (-707 1617455 1619108 1619384 "MODFIELD" 1620139 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-706 1616459 1616736 1616926 "MMLFORM" 1617285 T MMLFORM (NIL) -8 NIL NIL NIL) (-705 1615985 1616028 1616207 "MMAP" 1616410 NIL MMAP (NIL T T T T T T) -7 NIL NIL NIL) (-704 1614202 1614935 1614976 "MLO" 1615399 NIL MLO (NIL T) -9 NIL 1615641 NIL) (-703 1611569 1612084 1612686 "MLIFT" 1613683 NIL MLIFT (NIL T T T T) -7 NIL NIL NIL) (-702 1610960 1611044 1611198 "MKUCFUNC" 1611480 NIL MKUCFUNC (NIL T T T) -7 NIL NIL NIL) (-701 1610559 1610629 1610752 "MKRECORD" 1610883 NIL MKRECORD (NIL T T) -7 NIL NIL NIL) (-700 1609607 1609768 1609996 "MKFUNC" 1610370 NIL MKFUNC (NIL T) -7 NIL NIL NIL) (-699 1608995 1609099 1609255 "MKFLCFN" 1609490 NIL MKFLCFN (NIL T) -7 NIL NIL NIL) (-698 1608538 1608905 1608964 "MKCHSET" 1608969 NIL MKCHSET (NIL T) -8 NIL NIL NIL) (-697 1607815 1607917 1608102 "MKBCFUNC" 1608431 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL NIL) (-696 1604557 1607369 1607505 "MINT" 1607699 T MINT (NIL) -8 NIL NIL NIL) (-695 1603369 1603612 1603889 "MHROWRED" 1604312 NIL MHROWRED (NIL T) -7 NIL NIL NIL) (-694 1598795 1601904 1602309 "MFLOAT" 1602984 T MFLOAT (NIL) -8 NIL NIL NIL) (-693 1598152 1598228 1598399 "MFINFACT" 1598707 NIL MFINFACT (NIL T T T T) -7 NIL NIL NIL) (-692 1594467 1595315 1596199 "MESH" 1597288 T MESH (NIL) -7 NIL NIL NIL) (-691 1592857 1593169 1593522 "MDDFACT" 1594154 NIL MDDFACT (NIL T) -7 NIL NIL NIL) (-690 1589699 1592016 1592057 "MDAGG" 1592312 NIL MDAGG (NIL T) -9 NIL 1592455 NIL) (-689 1579477 1588992 1589199 "MCMPLX" 1589512 T MCMPLX (NIL) -8 NIL NIL NIL) (-688 1578618 1578764 1578964 "MCDEN" 1579326 NIL MCDEN (NIL T T) -7 NIL NIL NIL) (-687 1576508 1576778 1577158 "MCALCFN" 1578348 NIL MCALCFN (NIL T T T T) -7 NIL NIL NIL) (-686 1575433 1575673 1575906 "MAYBE" 1576314 NIL MAYBE (NIL T) -8 NIL NIL NIL) (-685 1573045 1573568 1574130 "MATSTOR" 1574904 NIL MATSTOR (NIL T) -7 NIL NIL NIL) (-684 1569051 1572417 1572665 "MATRIX" 1572830 NIL MATRIX (NIL T) -8 NIL NIL NIL) (-683 1564820 1565524 1566260 "MATLIN" 1568408 NIL MATLIN (NIL T T T T) -7 NIL NIL NIL) (-682 1554974 1558112 1558189 "MATCAT" 1563069 NIL MATCAT (NIL T T T) -9 NIL 1564486 NIL) (-681 1551338 1552351 1553707 "MATCAT-" 1553712 NIL MATCAT- (NIL T T T T) -8 NIL NIL NIL) (-680 1549932 1550085 1550418 "MATCAT2" 1551173 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-679 1548044 1548368 1548752 "MAPPKG3" 1549607 NIL MAPPKG3 (NIL T T T) -7 NIL NIL NIL) (-678 1547025 1547198 1547420 "MAPPKG2" 1547868 NIL MAPPKG2 (NIL T T) -7 NIL NIL NIL) (-677 1545524 1545808 1546135 "MAPPKG1" 1546731 NIL MAPPKG1 (NIL T) -7 NIL NIL NIL) (-676 1544630 1544930 1545107 "MAPPAST" 1545367 T MAPPAST (NIL) -8 NIL NIL NIL) (-675 1544241 1544299 1544422 "MAPHACK3" 1544566 NIL MAPHACK3 (NIL T T T) -7 NIL NIL NIL) (-674 1543833 1543894 1544008 "MAPHACK2" 1544173 NIL MAPHACK2 (NIL T T) -7 NIL NIL NIL) (-673 1543271 1543374 1543516 "MAPHACK1" 1543724 NIL MAPHACK1 (NIL T) -7 NIL NIL NIL) (-672 1541377 1541971 1542275 "MAGMA" 1542999 NIL MAGMA (NIL T) -8 NIL NIL NIL) (-671 1540883 1541101 1541192 "MACROAST" 1541306 T MACROAST (NIL) -8 NIL NIL NIL) (-670 1537350 1539122 1539583 "M3D" 1540455 NIL M3D (NIL T) -8 NIL NIL NIL) (-669 1531504 1535719 1535760 "LZSTAGG" 1536542 NIL LZSTAGG (NIL T) -9 NIL 1536837 NIL) (-668 1527478 1528635 1530092 "LZSTAGG-" 1530097 NIL LZSTAGG- (NIL T T) -8 NIL NIL NIL) (-667 1524592 1525369 1525856 "LWORD" 1527023 NIL LWORD (NIL T) -8 NIL NIL NIL) (-666 1524195 1524396 1524471 "LSTAST" 1524537 T LSTAST (NIL) -8 NIL NIL NIL) (-665 1517396 1523966 1524100 "LSQM" 1524105 NIL LSQM (NIL NIL T) -8 NIL NIL NIL) (-664 1516620 1516759 1516987 "LSPP" 1517251 NIL LSPP (NIL T T T T) -7 NIL NIL NIL) (-663 1514432 1514733 1515189 "LSMP" 1516309 NIL LSMP (NIL T T T T) -7 NIL NIL NIL) (-662 1511211 1511885 1512615 "LSMP1" 1513734 NIL LSMP1 (NIL T) -7 NIL NIL NIL) (-661 1505136 1510378 1510419 "LSAGG" 1510481 NIL LSAGG (NIL T) -9 NIL 1510559 NIL) (-660 1501831 1502755 1503968 "LSAGG-" 1503973 NIL LSAGG- (NIL T T) -8 NIL NIL NIL) (-659 1499457 1500975 1501224 "LPOLY" 1501626 NIL LPOLY (NIL T T) -8 NIL NIL NIL) (-658 1499039 1499124 1499247 "LPEFRAC" 1499366 NIL LPEFRAC (NIL T) -7 NIL NIL NIL) (-657 1497386 1498133 1498386 "LO" 1498871 NIL LO (NIL T T T) -8 NIL NIL NIL) (-656 1497038 1497150 1497178 "LOGIC" 1497289 T LOGIC (NIL) -9 NIL 1497370 NIL) (-655 1496900 1496923 1496994 "LOGIC-" 1496999 NIL LOGIC- (NIL T) -8 NIL NIL NIL) (-654 1496093 1496233 1496426 "LODOOPS" 1496756 NIL LODOOPS (NIL T T) -7 NIL NIL NIL) (-653 1493551 1496009 1496075 "LODO" 1496080 NIL LODO (NIL T NIL) -8 NIL NIL NIL) (-652 1492089 1492324 1492677 "LODOF" 1493298 NIL LODOF (NIL T T) -7 NIL NIL NIL) (-651 1488445 1490842 1490883 "LODOCAT" 1491321 NIL LODOCAT (NIL T) -9 NIL 1491532 NIL) (-650 1488178 1488236 1488363 "LODOCAT-" 1488368 NIL LODOCAT- (NIL T T) -8 NIL NIL NIL) (-649 1485533 1488019 1488137 "LODO2" 1488142 NIL LODO2 (NIL T T) -8 NIL NIL NIL) (-648 1483003 1485470 1485515 "LODO1" 1485520 NIL LODO1 (NIL T) -8 NIL NIL NIL) (-647 1481863 1482028 1482340 "LODEEF" 1482826 NIL LODEEF (NIL T T T) -7 NIL NIL NIL) (-646 1477149 1479993 1480034 "LNAGG" 1480981 NIL LNAGG (NIL T) -9 NIL 1481425 NIL) (-645 1476296 1476510 1476852 "LNAGG-" 1476857 NIL LNAGG- (NIL T T) -8 NIL NIL NIL) (-644 1472459 1473221 1473860 "LMOPS" 1475711 NIL LMOPS (NIL T T NIL) -8 NIL NIL NIL) (-643 1471854 1472216 1472257 "LMODULE" 1472318 NIL LMODULE (NIL T) -9 NIL 1472360 NIL) (-642 1469100 1471499 1471622 "LMDICT" 1471764 NIL LMDICT (NIL T) -8 NIL NIL NIL) (-641 1468826 1469008 1469068 "LITERAL" 1469073 NIL LITERAL (NIL T) -8 NIL NIL NIL) (-640 1462053 1467772 1468070 "LIST" 1468561 NIL LIST (NIL T) -8 NIL NIL NIL) (-639 1461578 1461652 1461791 "LIST3" 1461973 NIL LIST3 (NIL T T T) -7 NIL NIL NIL) (-638 1460585 1460763 1460991 "LIST2" 1461396 NIL LIST2 (NIL T T) -7 NIL NIL NIL) (-637 1458719 1459031 1459430 "LIST2MAP" 1460232 NIL LIST2MAP (NIL T T) -7 NIL NIL NIL) (-636 1457449 1458085 1458126 "LINEXP" 1458381 NIL LINEXP (NIL T) -9 NIL 1458530 NIL) (-635 1456096 1456356 1456653 "LINDEP" 1457201 NIL LINDEP (NIL T T) -7 NIL NIL NIL) (-634 1452863 1453582 1454359 "LIMITRF" 1455351 NIL LIMITRF (NIL T) -7 NIL NIL NIL) (-633 1451139 1451434 1451850 "LIMITPS" 1452558 NIL LIMITPS (NIL T T) -7 NIL NIL NIL) (-632 1445594 1450650 1450878 "LIE" 1450960 NIL LIE (NIL T T) -8 NIL NIL NIL) (-631 1444643 1445086 1445126 "LIECAT" 1445266 NIL LIECAT (NIL T) -9 NIL 1445417 NIL) (-630 1444484 1444511 1444599 "LIECAT-" 1444604 NIL LIECAT- (NIL T T) -8 NIL NIL NIL) (-629 1437096 1443933 1444098 "LIB" 1444339 T LIB (NIL) -8 NIL NIL NIL) (-628 1432733 1433614 1434549 "LGROBP" 1436213 NIL LGROBP (NIL NIL T) -7 NIL NIL NIL) (-627 1430599 1430873 1431235 "LF" 1432454 NIL LF (NIL T T) -7 NIL NIL NIL) (-626 1429439 1430131 1430159 "LFCAT" 1430366 T LFCAT (NIL) -9 NIL 1430505 NIL) (-625 1426343 1426971 1427659 "LEXTRIPK" 1428803 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL NIL) (-624 1423114 1423913 1424416 "LEXP" 1425923 NIL LEXP (NIL T T NIL) -8 NIL NIL NIL) (-623 1422617 1422835 1422927 "LETAST" 1423042 T LETAST (NIL) -8 NIL NIL NIL) (-622 1421015 1421328 1421729 "LEADCDET" 1422299 NIL LEADCDET (NIL T T T T) -7 NIL NIL NIL) (-621 1420205 1420279 1420508 "LAZM3PK" 1420936 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL NIL) (-620 1415160 1418282 1418820 "LAUPOL" 1419717 NIL LAUPOL (NIL T T) -8 NIL NIL NIL) (-619 1414725 1414769 1414937 "LAPLACE" 1415110 NIL LAPLACE (NIL T T) -7 NIL NIL NIL) (-618 1412699 1413826 1414077 "LA" 1414558 NIL LA (NIL T T T) -8 NIL NIL NIL) (-617 1411780 1412330 1412371 "LALG" 1412433 NIL LALG (NIL T) -9 NIL 1412492 NIL) (-616 1411494 1411553 1411689 "LALG-" 1411694 NIL LALG- (NIL T T) -8 NIL NIL NIL) (-615 1411329 1411353 1411394 "KVTFROM" 1411456 NIL KVTFROM (NIL T) -9 NIL NIL NIL) (-614 1410132 1410546 1410775 "KTVLOGIC" 1411120 T KTVLOGIC (NIL) -8 NIL NIL NIL) (-613 1409967 1409991 1410032 "KRCFROM" 1410094 NIL KRCFROM (NIL T) -9 NIL NIL NIL) (-612 1408871 1409058 1409357 "KOVACIC" 1409767 NIL KOVACIC (NIL T T) -7 NIL NIL NIL) (-611 1408706 1408730 1408771 "KONVERT" 1408833 NIL KONVERT (NIL T) -9 NIL NIL NIL) (-610 1408541 1408565 1408606 "KOERCE" 1408668 NIL KOERCE (NIL T) -9 NIL NIL NIL) (-609 1406275 1407035 1407428 "KERNEL" 1408180 NIL KERNEL (NIL T) -8 NIL NIL NIL) (-608 1405777 1405858 1405988 "KERNEL2" 1406189 NIL KERNEL2 (NIL T T) -7 NIL NIL NIL) (-607 1399628 1404316 1404370 "KDAGG" 1404747 NIL KDAGG (NIL T T) -9 NIL 1404953 NIL) (-606 1399157 1399281 1399486 "KDAGG-" 1399491 NIL KDAGG- (NIL T T T) -8 NIL NIL NIL) (-605 1392332 1398818 1398973 "KAFILE" 1399035 NIL KAFILE (NIL T) -8 NIL NIL NIL) (-604 1386787 1391843 1392071 "JORDAN" 1392153 NIL JORDAN (NIL T T) -8 NIL NIL NIL) (-603 1386193 1386436 1386557 "JOINAST" 1386686 T JOINAST (NIL) -8 NIL NIL NIL) (-602 1386039 1386098 1386153 "JAVACODE" 1386158 T JAVACODE (NIL) -8 NIL NIL NIL) (-601 1382338 1384244 1384298 "IXAGG" 1385227 NIL IXAGG (NIL T T) -9 NIL 1385686 NIL) (-600 1381257 1381563 1381982 "IXAGG-" 1381987 NIL IXAGG- (NIL T T T) -8 NIL NIL NIL) (-599 1376837 1381179 1381238 "IVECTOR" 1381243 NIL IVECTOR (NIL T NIL) -8 NIL NIL NIL) (-598 1375603 1375840 1376106 "ITUPLE" 1376604 NIL ITUPLE (NIL T) -8 NIL NIL NIL) (-597 1374039 1374216 1374522 "ITRIGMNP" 1375425 NIL ITRIGMNP (NIL T T T) -7 NIL NIL NIL) (-596 1372784 1372988 1373271 "ITFUN3" 1373815 NIL ITFUN3 (NIL T T T) -7 NIL NIL NIL) (-595 1372416 1372473 1372582 "ITFUN2" 1372721 NIL ITFUN2 (NIL T T) -7 NIL NIL NIL) (-594 1370253 1371278 1371577 "ITAYLOR" 1372150 NIL ITAYLOR (NIL T) -8 NIL NIL NIL) (-593 1359236 1364390 1365553 "ISUPS" 1369123 NIL ISUPS (NIL T) -8 NIL NIL NIL) (-592 1358340 1358480 1358716 "ISUMP" 1359083 NIL ISUMP (NIL T T T T) -7 NIL NIL NIL) (-591 1353604 1358141 1358220 "ISTRING" 1358293 NIL ISTRING (NIL NIL) -8 NIL NIL NIL) (-590 1353107 1353325 1353417 "ISAST" 1353532 T ISAST (NIL) -8 NIL NIL NIL) (-589 1352317 1352398 1352614 "IRURPK" 1353021 NIL IRURPK (NIL T T T T T) -7 NIL NIL NIL) (-588 1351253 1351454 1351694 "IRSN" 1352097 T IRSN (NIL) -7 NIL NIL NIL) (-587 1349282 1349637 1350073 "IRRF2F" 1350891 NIL IRRF2F (NIL T) -7 NIL NIL NIL) (-586 1349029 1349067 1349143 "IRREDFFX" 1349238 NIL IRREDFFX (NIL T) -7 NIL NIL NIL) (-585 1347644 1347903 1348202 "IROOT" 1348762 NIL IROOT (NIL T) -7 NIL NIL NIL) (-584 1344276 1345328 1346020 "IR" 1346984 NIL IR (NIL T) -8 NIL NIL NIL) (-583 1341889 1342384 1342950 "IR2" 1343754 NIL IR2 (NIL T T) -7 NIL NIL NIL) (-582 1340961 1341074 1341295 "IR2F" 1341772 NIL IR2F (NIL T T) -7 NIL NIL NIL) (-581 1340752 1340786 1340846 "IPRNTPK" 1340921 T IPRNTPK (NIL) -7 NIL NIL NIL) (-580 1337371 1340641 1340710 "IPF" 1340715 NIL IPF (NIL NIL) -8 NIL NIL NIL) (-579 1335734 1337296 1337353 "IPADIC" 1337358 NIL IPADIC (NIL NIL NIL) -8 NIL NIL NIL) (-578 1335074 1335294 1335424 "IP4ADDR" 1335624 T IP4ADDR (NIL) -8 NIL NIL NIL) (-577 1334574 1334778 1334888 "IOMODE" 1334984 T IOMODE (NIL) -8 NIL NIL NIL) (-576 1333647 1334171 1334298 "IOBFILE" 1334467 T IOBFILE (NIL) -8 NIL NIL NIL) (-575 1333135 1333551 1333579 "IOBCON" 1333584 T IOBCON (NIL) -9 NIL 1333605 NIL) (-574 1332632 1332690 1332880 "INVLAPLA" 1333071 NIL INVLAPLA (NIL T T) -7 NIL NIL NIL) (-573 1322281 1324634 1327020 "INTTR" 1330296 NIL INTTR (NIL T T) -7 NIL NIL NIL) (-572 1318625 1319367 1320231 "INTTOOLS" 1321466 NIL INTTOOLS (NIL T T) -7 NIL NIL NIL) (-571 1318211 1318302 1318419 "INTSLPE" 1318528 T INTSLPE (NIL) -7 NIL NIL NIL) (-570 1316206 1318134 1318193 "INTRVL" 1318198 NIL INTRVL (NIL T) -8 NIL NIL NIL) (-569 1313808 1314320 1314895 "INTRF" 1315691 NIL INTRF (NIL T) -7 NIL NIL NIL) (-568 1313219 1313316 1313458 "INTRET" 1313706 NIL INTRET (NIL T) -7 NIL NIL NIL) (-567 1311216 1311605 1312075 "INTRAT" 1312827 NIL INTRAT (NIL T T) -7 NIL NIL NIL) (-566 1308444 1309027 1309653 "INTPM" 1310701 NIL INTPM (NIL T T) -7 NIL NIL NIL) (-565 1305147 1305746 1306491 "INTPAF" 1307830 NIL INTPAF (NIL T T T) -7 NIL NIL NIL) (-564 1300326 1301288 1302339 "INTPACK" 1304116 T INTPACK (NIL) -7 NIL NIL NIL) (-563 1297238 1300055 1300182 "INT" 1300219 T INT (NIL) -8 NIL NIL NIL) (-562 1296490 1296642 1296850 "INTHERTR" 1297080 NIL INTHERTR (NIL T T) -7 NIL NIL NIL) (-561 1295929 1296009 1296197 "INTHERAL" 1296404 NIL INTHERAL (NIL T T T T) -7 NIL NIL NIL) (-560 1293775 1294218 1294675 "INTHEORY" 1295492 T INTHEORY (NIL) -7 NIL NIL NIL) (-559 1285083 1286704 1288483 "INTG0" 1292127 NIL INTG0 (NIL T T T) -7 NIL NIL NIL) (-558 1265656 1270446 1275256 "INTFTBL" 1280293 T INTFTBL (NIL) -8 NIL NIL NIL) (-557 1264905 1265043 1265216 "INTFACT" 1265515 NIL INTFACT (NIL T) -7 NIL NIL NIL) (-556 1262290 1262736 1263300 "INTEF" 1264459 NIL INTEF (NIL T T) -7 NIL NIL NIL) (-555 1260757 1261462 1261490 "INTDOM" 1261791 T INTDOM (NIL) -9 NIL 1261998 NIL) (-554 1260126 1260300 1260542 "INTDOM-" 1260547 NIL INTDOM- (NIL T) -8 NIL NIL NIL) (-553 1256621 1258510 1258564 "INTCAT" 1259363 NIL INTCAT (NIL T) -9 NIL 1259683 NIL) (-552 1256094 1256196 1256324 "INTBIT" 1256513 T INTBIT (NIL) -7 NIL NIL NIL) (-551 1254765 1254919 1255233 "INTALG" 1255939 NIL INTALG (NIL T T T T T) -7 NIL NIL NIL) (-550 1254222 1254312 1254482 "INTAF" 1254669 NIL INTAF (NIL T T) -7 NIL NIL NIL) (-549 1247676 1254032 1254172 "INTABL" 1254177 NIL INTABL (NIL T T T) -8 NIL NIL NIL) (-548 1247136 1247549 1247577 "INT8" 1247582 T INT8 (NIL) -8 NIL NIL 1247590) (-547 1246595 1247008 1247036 "INT32" 1247041 T INT32 (NIL) -8 NIL NIL 1247049) (-546 1246054 1246467 1246495 "INT16" 1246500 T INT16 (NIL) -8 NIL NIL 1246508) (-545 1241069 1243743 1243771 "INS" 1244705 T INS (NIL) -9 NIL 1245370 NIL) (-544 1238309 1239080 1240054 "INS-" 1240127 NIL INS- (NIL T) -8 NIL NIL NIL) (-543 1237084 1237311 1237609 "INPSIGN" 1238062 NIL INPSIGN (NIL T T) -7 NIL NIL NIL) (-542 1236202 1236319 1236516 "INPRODPF" 1236964 NIL INPRODPF (NIL T T) -7 NIL NIL NIL) (-541 1235096 1235213 1235450 "INPRODFF" 1236082 NIL INPRODFF (NIL T T T T) -7 NIL NIL NIL) (-540 1234096 1234248 1234508 "INNMFACT" 1234932 NIL INNMFACT (NIL T T T T) -7 NIL NIL NIL) (-539 1233293 1233390 1233578 "INMODGCD" 1233995 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL NIL) (-538 1231802 1232046 1232370 "INFSP" 1233038 NIL INFSP (NIL T T T) -7 NIL NIL NIL) (-537 1230986 1231103 1231286 "INFPROD0" 1231682 NIL INFPROD0 (NIL T T) -7 NIL NIL NIL) (-536 1227868 1229051 1229566 "INFORM" 1230479 T INFORM (NIL) -8 NIL NIL NIL) (-535 1227478 1227538 1227636 "INFORM1" 1227803 NIL INFORM1 (NIL T) -7 NIL NIL NIL) (-534 1227001 1227090 1227204 "INFINITY" 1227384 T INFINITY (NIL) -7 NIL NIL NIL) (-533 1226177 1226721 1226822 "INETCLTS" 1226920 T INETCLTS (NIL) -8 NIL NIL NIL) (-532 1224794 1225043 1225364 "INEP" 1225925 NIL INEP (NIL T T T) -7 NIL NIL NIL) (-531 1224070 1224691 1224756 "INDE" 1224761 NIL INDE (NIL T) -8 NIL NIL NIL) (-530 1223634 1223702 1223819 "INCRMAPS" 1223997 NIL INCRMAPS (NIL T) -7 NIL NIL NIL) (-529 1222452 1222903 1223109 "INBFILE" 1223448 T INBFILE (NIL) -8 NIL NIL NIL) (-528 1217763 1218688 1219632 "INBFF" 1221540 NIL INBFF (NIL T) -7 NIL NIL NIL) (-527 1216671 1216940 1216968 "INBCON" 1217481 T INBCON (NIL) -9 NIL 1217747 NIL) (-526 1215923 1216146 1216422 "INBCON-" 1216427 NIL INBCON- (NIL T) -8 NIL NIL NIL) (-525 1215425 1215644 1215736 "INAST" 1215851 T INAST (NIL) -8 NIL NIL NIL) (-524 1214879 1215104 1215210 "IMPTAST" 1215339 T IMPTAST (NIL) -8 NIL NIL NIL) (-523 1211373 1214723 1214827 "IMATRIX" 1214832 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL NIL) (-522 1210085 1210208 1210523 "IMATQF" 1211229 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL NIL) (-521 1208305 1208532 1208869 "IMATLIN" 1209841 NIL IMATLIN (NIL T T T T) -7 NIL NIL NIL) (-520 1202931 1208229 1208287 "ILIST" 1208292 NIL ILIST (NIL T NIL) -8 NIL NIL NIL) (-519 1200884 1202791 1202904 "IIARRAY2" 1202909 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL NIL) (-518 1196317 1200795 1200859 "IFF" 1200864 NIL IFF (NIL NIL NIL) -8 NIL NIL NIL) (-517 1195691 1195934 1196050 "IFAST" 1196221 T IFAST (NIL) -8 NIL NIL NIL) (-516 1190734 1194983 1195171 "IFARRAY" 1195548 NIL IFARRAY (NIL T NIL) -8 NIL NIL NIL) (-515 1189941 1190638 1190711 "IFAMON" 1190716 NIL IFAMON (NIL T T NIL) -8 NIL NIL NIL) (-514 1189525 1189590 1189644 "IEVALAB" 1189851 NIL IEVALAB (NIL T T) -9 NIL NIL NIL) (-513 1189200 1189268 1189428 "IEVALAB-" 1189433 NIL IEVALAB- (NIL T T T) -8 NIL NIL NIL) (-512 1188858 1189114 1189177 "IDPO" 1189182 NIL IDPO (NIL T T) -8 NIL NIL NIL) (-511 1188135 1188747 1188822 "IDPOAMS" 1188827 NIL IDPOAMS (NIL T T) -8 NIL NIL NIL) (-510 1187469 1188024 1188099 "IDPOAM" 1188104 NIL IDPOAM (NIL T T) -8 NIL NIL NIL) (-509 1186554 1186804 1186857 "IDPC" 1187270 NIL IDPC (NIL T T) -9 NIL 1187419 NIL) (-508 1186050 1186446 1186519 "IDPAM" 1186524 NIL IDPAM (NIL T T) -8 NIL NIL NIL) (-507 1185453 1185942 1186015 "IDPAG" 1186020 NIL IDPAG (NIL T T) -8 NIL NIL NIL) (-506 1185221 1185368 1185418 "IDENT" 1185423 T IDENT (NIL) -8 NIL NIL NIL) (-505 1181476 1182324 1183219 "IDECOMP" 1184378 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL NIL) (-504 1174350 1175399 1176446 "IDEAL" 1180512 NIL IDEAL (NIL T T T T) -8 NIL NIL NIL) (-503 1173514 1173626 1173825 "ICDEN" 1174234 NIL ICDEN (NIL T T T T) -7 NIL NIL NIL) (-502 1172613 1172994 1173141 "ICARD" 1173387 T ICARD (NIL) -8 NIL NIL NIL) (-501 1170673 1170986 1171391 "IBPTOOLS" 1172290 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL NIL) (-500 1166307 1170293 1170406 "IBITS" 1170592 NIL IBITS (NIL NIL) -8 NIL NIL NIL) (-499 1163030 1163606 1164301 "IBATOOL" 1165724 NIL IBATOOL (NIL T T T) -7 NIL NIL NIL) (-498 1160810 1161271 1161804 "IBACHIN" 1162565 NIL IBACHIN (NIL T T T) -7 NIL NIL NIL) (-497 1158687 1160656 1160759 "IARRAY2" 1160764 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL NIL) (-496 1154840 1158613 1158670 "IARRAY1" 1158675 NIL IARRAY1 (NIL T NIL) -8 NIL NIL NIL) (-495 1148834 1153252 1153733 "IAN" 1154379 T IAN (NIL) -8 NIL NIL NIL) (-494 1148345 1148402 1148575 "IALGFACT" 1148771 NIL IALGFACT (NIL T T T T) -7 NIL NIL NIL) (-493 1147873 1147986 1148014 "HYPCAT" 1148221 T HYPCAT (NIL) -9 NIL NIL NIL) (-492 1147411 1147528 1147714 "HYPCAT-" 1147719 NIL HYPCAT- (NIL T) -8 NIL NIL NIL) (-491 1147033 1147206 1147289 "HOSTNAME" 1147348 T HOSTNAME (NIL) -8 NIL NIL NIL) (-490 1146878 1146915 1146956 "HOMOTOP" 1146961 NIL HOMOTOP (NIL T) -9 NIL 1146994 NIL) (-489 1143557 1144888 1144929 "HOAGG" 1145910 NIL HOAGG (NIL T) -9 NIL 1146589 NIL) (-488 1142151 1142550 1143076 "HOAGG-" 1143081 NIL HOAGG- (NIL T T) -8 NIL NIL NIL) (-487 1136190 1141746 1141895 "HEXADEC" 1142022 T HEXADEC (NIL) -8 NIL NIL NIL) (-486 1134938 1135160 1135423 "HEUGCD" 1135967 NIL HEUGCD (NIL T) -7 NIL NIL NIL) (-485 1134041 1134775 1134905 "HELLFDIV" 1134910 NIL HELLFDIV (NIL T T T T) -8 NIL NIL NIL) (-484 1132269 1133818 1133906 "HEAP" 1133985 NIL HEAP (NIL T) -8 NIL NIL NIL) (-483 1131560 1131821 1131955 "HEADAST" 1132155 T HEADAST (NIL) -8 NIL NIL NIL) (-482 1125480 1131475 1131537 "HDP" 1131542 NIL HDP (NIL NIL T) -8 NIL NIL NIL) (-481 1119231 1125115 1125267 "HDMP" 1125381 NIL HDMP (NIL NIL T) -8 NIL NIL NIL) (-480 1118556 1118695 1118859 "HB" 1119087 T HB (NIL) -7 NIL NIL NIL) (-479 1112053 1118402 1118506 "HASHTBL" 1118511 NIL HASHTBL (NIL T T NIL) -8 NIL NIL NIL) (-478 1111556 1111774 1111866 "HASAST" 1111981 T HASAST (NIL) -8 NIL NIL NIL) (-477 1109369 1111178 1111360 "HACKPI" 1111394 T HACKPI (NIL) -8 NIL NIL NIL) (-476 1105064 1109222 1109335 "GTSET" 1109340 NIL GTSET (NIL T T T T) -8 NIL NIL NIL) (-475 1098590 1104942 1105040 "GSTBL" 1105045 NIL GSTBL (NIL T T T NIL) -8 NIL NIL NIL) (-474 1090903 1097621 1097886 "GSERIES" 1098381 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL NIL) (-473 1090070 1090461 1090489 "GROUP" 1090692 T GROUP (NIL) -9 NIL 1090826 NIL) (-472 1089436 1089595 1089846 "GROUP-" 1089851 NIL GROUP- (NIL T) -8 NIL NIL NIL) (-471 1087805 1088124 1088511 "GROEBSOL" 1089113 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL NIL) (-470 1086745 1087007 1087058 "GRMOD" 1087587 NIL GRMOD (NIL T T) -9 NIL 1087755 NIL) (-469 1086513 1086549 1086677 "GRMOD-" 1086682 NIL GRMOD- (NIL T T T) -8 NIL NIL NIL) (-468 1081839 1082867 1083867 "GRIMAGE" 1085533 T GRIMAGE (NIL) -8 NIL NIL NIL) (-467 1080306 1080566 1080890 "GRDEF" 1081535 T GRDEF (NIL) -7 NIL NIL NIL) (-466 1079750 1079866 1080007 "GRAY" 1080185 T GRAY (NIL) -7 NIL NIL NIL) (-465 1078963 1079343 1079394 "GRALG" 1079547 NIL GRALG (NIL T T) -9 NIL 1079640 NIL) (-464 1078624 1078697 1078860 "GRALG-" 1078865 NIL GRALG- (NIL T T T) -8 NIL NIL NIL) (-463 1075428 1078209 1078387 "GPOLSET" 1078531 NIL GPOLSET (NIL T T T T) -8 NIL NIL NIL) (-462 1074782 1074839 1075097 "GOSPER" 1075365 NIL GOSPER (NIL T T T T T) -7 NIL NIL NIL) (-461 1070541 1071220 1071746 "GMODPOL" 1074481 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL NIL) (-460 1069546 1069730 1069968 "GHENSEL" 1070353 NIL GHENSEL (NIL T T) -7 NIL NIL NIL) (-459 1063597 1064440 1065467 "GENUPS" 1068630 NIL GENUPS (NIL T T) -7 NIL NIL NIL) (-458 1063294 1063345 1063434 "GENUFACT" 1063540 NIL GENUFACT (NIL T) -7 NIL NIL NIL) (-457 1062706 1062783 1062948 "GENPGCD" 1063212 NIL GENPGCD (NIL T T T T) -7 NIL NIL NIL) (-456 1062180 1062215 1062428 "GENMFACT" 1062665 NIL GENMFACT (NIL T T T T T) -7 NIL NIL NIL) (-455 1060748 1061003 1061310 "GENEEZ" 1061923 NIL GENEEZ (NIL T T) -7 NIL NIL NIL) (-454 1054661 1060359 1060521 "GDMP" 1060671 NIL GDMP (NIL NIL T T) -8 NIL NIL NIL) (-453 1044038 1048432 1049538 "GCNAALG" 1053644 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-452 1042465 1043293 1043321 "GCDDOM" 1043576 T GCDDOM (NIL) -9 NIL 1043733 NIL) (-451 1041935 1042062 1042277 "GCDDOM-" 1042282 NIL GCDDOM- (NIL T) -8 NIL NIL NIL) (-450 1040607 1040792 1041096 "GB" 1041714 NIL GB (NIL T T T T) -7 NIL NIL NIL) (-449 1029227 1031553 1033945 "GBINTERN" 1038298 NIL GBINTERN (NIL T T T T) -7 NIL NIL NIL) (-448 1027064 1027356 1027777 "GBF" 1028902 NIL GBF (NIL T T T T) -7 NIL NIL NIL) (-447 1025845 1026010 1026277 "GBEUCLID" 1026880 NIL GBEUCLID (NIL T T T T) -7 NIL NIL NIL) (-446 1025194 1025319 1025468 "GAUSSFAC" 1025716 T GAUSSFAC (NIL) -7 NIL NIL NIL) (-445 1023561 1023863 1024177 "GALUTIL" 1024913 NIL GALUTIL (NIL T) -7 NIL NIL NIL) (-444 1021869 1022143 1022467 "GALPOLYU" 1023288 NIL GALPOLYU (NIL T T) -7 NIL NIL NIL) (-443 1019234 1019524 1019931 "GALFACTU" 1021566 NIL GALFACTU (NIL T T T) -7 NIL NIL NIL) (-442 1011040 1012539 1014147 "GALFACT" 1017666 NIL GALFACT (NIL T) -7 NIL NIL NIL) (-441 1008428 1009086 1009114 "FVFUN" 1010270 T FVFUN (NIL) -9 NIL 1010990 NIL) (-440 1007694 1007876 1007904 "FVC" 1008195 T FVC (NIL) -9 NIL 1008378 NIL) (-439 1007364 1007519 1007587 "FUNDESC" 1007646 T FUNDESC (NIL) -8 NIL NIL NIL) (-438 1007006 1007161 1007242 "FUNCTION" 1007316 NIL FUNCTION (NIL NIL) -8 NIL NIL NIL) (-437 1004777 1005328 1005794 "FT" 1006560 T FT (NIL) -8 NIL NIL NIL) (-436 1003595 1004078 1004281 "FTEM" 1004594 T FTEM (NIL) -8 NIL NIL NIL) (-435 1001851 1002140 1002544 "FSUPFACT" 1003286 NIL FSUPFACT (NIL T T T) -7 NIL NIL NIL) (-434 1000248 1000537 1000869 "FST" 1001539 T FST (NIL) -8 NIL NIL NIL) (-433 999419 999525 999720 "FSRED" 1000130 NIL FSRED (NIL T T) -7 NIL NIL NIL) (-432 998098 998353 998707 "FSPRMELT" 999134 NIL FSPRMELT (NIL T T) -7 NIL NIL NIL) (-431 995183 995621 996120 "FSPECF" 997661 NIL FSPECF (NIL T T) -7 NIL NIL NIL) (-430 977243 985686 985726 "FS" 989574 NIL FS (NIL T) -9 NIL 991863 NIL) (-429 965893 968883 972939 "FS-" 973236 NIL FS- (NIL T T) -8 NIL NIL NIL) (-428 965407 965461 965638 "FSINT" 965834 NIL FSINT (NIL T T) -7 NIL NIL NIL) (-427 963734 964400 964703 "FSERIES" 965186 NIL FSERIES (NIL T T) -8 NIL NIL NIL) (-426 962748 962864 963095 "FSCINT" 963614 NIL FSCINT (NIL T T) -7 NIL NIL NIL) (-425 958982 961692 961733 "FSAGG" 962103 NIL FSAGG (NIL T) -9 NIL 962362 NIL) (-424 956744 957345 958141 "FSAGG-" 958236 NIL FSAGG- (NIL T T) -8 NIL NIL NIL) (-423 955786 955929 956156 "FSAGG2" 956597 NIL FSAGG2 (NIL T T T T) -7 NIL NIL NIL) (-422 953441 953720 954274 "FS2UPS" 955504 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL NIL) (-421 953023 953066 953221 "FS2" 953392 NIL FS2 (NIL T T T T) -7 NIL NIL NIL) (-420 951880 952051 952360 "FS2EXPXP" 952848 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL NIL) (-419 951306 951421 951573 "FRUTIL" 951760 NIL FRUTIL (NIL T) -7 NIL NIL NIL) (-418 942761 946801 948159 "FR" 949980 NIL FR (NIL T) -8 NIL NIL NIL) (-417 937836 940479 940519 "FRNAALG" 941915 NIL FRNAALG (NIL T) -9 NIL 942522 NIL) (-416 933514 934585 935860 "FRNAALG-" 936610 NIL FRNAALG- (NIL T T) -8 NIL NIL NIL) (-415 933152 933195 933322 "FRNAAF2" 933465 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL NIL) (-414 931559 932006 932301 "FRMOD" 932964 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL NIL) (-413 929338 929942 930259 "FRIDEAL" 931350 NIL FRIDEAL (NIL T T T T) -8 NIL NIL NIL) (-412 928533 928620 928909 "FRIDEAL2" 929245 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-411 927666 928080 928121 "FRETRCT" 928126 NIL FRETRCT (NIL T) -9 NIL 928302 NIL) (-410 926778 927009 927360 "FRETRCT-" 927365 NIL FRETRCT- (NIL T T) -8 NIL NIL NIL) (-409 923990 925166 925225 "FRAMALG" 926107 NIL FRAMALG (NIL T T) -9 NIL 926399 NIL) (-408 922124 922579 923209 "FRAMALG-" 923432 NIL FRAMALG- (NIL T T T) -8 NIL NIL NIL) (-407 916082 921599 921875 "FRAC" 921880 NIL FRAC (NIL T) -8 NIL NIL NIL) (-406 915718 915775 915882 "FRAC2" 916019 NIL FRAC2 (NIL T T) -7 NIL NIL NIL) (-405 915354 915411 915518 "FR2" 915655 NIL FR2 (NIL T T) -7 NIL NIL NIL) (-404 910027 912879 912907 "FPS" 914026 T FPS (NIL) -9 NIL 914583 NIL) (-403 909476 909585 909749 "FPS-" 909895 NIL FPS- (NIL T) -8 NIL NIL NIL) (-402 906930 908565 908593 "FPC" 908818 T FPC (NIL) -9 NIL 908960 NIL) (-401 906723 906763 906860 "FPC-" 906865 NIL FPC- (NIL T) -8 NIL NIL NIL) (-400 905601 906211 906252 "FPATMAB" 906257 NIL FPATMAB (NIL T) -9 NIL 906409 NIL) (-399 903301 903777 904203 "FPARFRAC" 905238 NIL FPARFRAC (NIL T T) -8 NIL NIL NIL) (-398 898695 899193 899875 "FORTRAN" 902733 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL NIL) (-397 896411 896911 897450 "FORT" 898176 T FORT (NIL) -7 NIL NIL NIL) (-396 894087 894649 894677 "FORTFN" 895737 T FORTFN (NIL) -9 NIL 896361 NIL) (-395 893851 893901 893929 "FORTCAT" 893988 T FORTCAT (NIL) -9 NIL 894050 NIL) (-394 891984 892467 892857 "FORMULA" 893481 T FORMULA (NIL) -8 NIL NIL NIL) (-393 891772 891802 891871 "FORMULA1" 891948 NIL FORMULA1 (NIL T) -7 NIL NIL NIL) (-392 891295 891347 891520 "FORDER" 891714 NIL FORDER (NIL T T T T) -7 NIL NIL NIL) (-391 890391 890555 890748 "FOP" 891122 T FOP (NIL) -7 NIL NIL NIL) (-390 888999 889671 889845 "FNLA" 890273 NIL FNLA (NIL NIL NIL T) -8 NIL NIL NIL) (-389 887754 888143 888171 "FNCAT" 888631 T FNCAT (NIL) -9 NIL 888891 NIL) (-388 887320 887713 887741 "FNAME" 887746 T FNAME (NIL) -8 NIL NIL NIL) (-387 885983 886912 886940 "FMTC" 886945 T FMTC (NIL) -9 NIL 886981 NIL) (-386 882345 883506 884135 "FMONOID" 885387 NIL FMONOID (NIL T) -8 NIL NIL NIL) (-385 881564 882087 882236 "FM" 882241 NIL FM (NIL T T) -8 NIL NIL NIL) (-384 878988 879634 879662 "FMFUN" 880806 T FMFUN (NIL) -9 NIL 881514 NIL) (-383 878257 878438 878466 "FMC" 878756 T FMC (NIL) -9 NIL 878938 NIL) (-382 875451 876285 876339 "FMCAT" 877534 NIL FMCAT (NIL T T) -9 NIL 878029 NIL) (-381 874344 875217 875317 "FM1" 875396 NIL FM1 (NIL T T) -8 NIL NIL NIL) (-380 872118 872534 873028 "FLOATRP" 873895 NIL FLOATRP (NIL T) -7 NIL NIL NIL) (-379 865742 869847 870468 "FLOAT" 871517 T FLOAT (NIL) -8 NIL NIL NIL) (-378 863180 863680 864258 "FLOATCP" 865209 NIL FLOATCP (NIL T) -7 NIL NIL NIL) (-377 861989 862793 862834 "FLINEXP" 862839 NIL FLINEXP (NIL T) -9 NIL 862932 NIL) (-376 861143 861378 861706 "FLINEXP-" 861711 NIL FLINEXP- (NIL T T) -8 NIL NIL NIL) (-375 860219 860363 860587 "FLASORT" 860995 NIL FLASORT (NIL T T) -7 NIL NIL NIL) (-374 857436 858278 858330 "FLALG" 859557 NIL FLALG (NIL T T) -9 NIL 860024 NIL) (-373 851220 854922 854963 "FLAGG" 856225 NIL FLAGG (NIL T) -9 NIL 856877 NIL) (-372 849946 850285 850775 "FLAGG-" 850780 NIL FLAGG- (NIL T T) -8 NIL NIL NIL) (-371 848988 849131 849358 "FLAGG2" 849799 NIL FLAGG2 (NIL T T T T) -7 NIL NIL NIL) (-370 845963 846937 846996 "FINRALG" 848124 NIL FINRALG (NIL T T) -9 NIL 848632 NIL) (-369 845123 845352 845691 "FINRALG-" 845696 NIL FINRALG- (NIL T T T) -8 NIL NIL NIL) (-368 844529 844742 844770 "FINITE" 844966 T FINITE (NIL) -9 NIL 845073 NIL) (-367 836987 839148 839188 "FINAALG" 842855 NIL FINAALG (NIL T) -9 NIL 844308 NIL) (-366 832328 833369 834513 "FINAALG-" 835892 NIL FINAALG- (NIL T T) -8 NIL NIL NIL) (-365 831723 832083 832186 "FILE" 832258 NIL FILE (NIL T) -8 NIL NIL NIL) (-364 830407 830719 830773 "FILECAT" 831457 NIL FILECAT (NIL T T) -9 NIL 831673 NIL) (-363 828275 829769 829797 "FIELD" 829837 T FIELD (NIL) -9 NIL 829917 NIL) (-362 826895 827280 827791 "FIELD-" 827796 NIL FIELD- (NIL T) -8 NIL NIL NIL) (-361 824773 825530 825877 "FGROUP" 826581 NIL FGROUP (NIL T) -8 NIL NIL NIL) (-360 823863 824027 824247 "FGLMICPK" 824605 NIL FGLMICPK (NIL T NIL) -7 NIL NIL NIL) (-359 819730 823788 823845 "FFX" 823850 NIL FFX (NIL T NIL) -8 NIL NIL NIL) (-358 819331 819392 819527 "FFSLPE" 819663 NIL FFSLPE (NIL T T T) -7 NIL NIL NIL) (-357 815324 816103 816899 "FFPOLY" 818567 NIL FFPOLY (NIL T) -7 NIL NIL NIL) (-356 814828 814864 815073 "FFPOLY2" 815282 NIL FFPOLY2 (NIL T T) -7 NIL NIL NIL) (-355 810714 814747 814810 "FFP" 814815 NIL FFP (NIL T NIL) -8 NIL NIL NIL) (-354 806147 810625 810689 "FF" 810694 NIL FF (NIL NIL NIL) -8 NIL NIL NIL) (-353 801308 805490 805680 "FFNBX" 806001 NIL FFNBX (NIL T NIL) -8 NIL NIL NIL) (-352 796282 800443 800701 "FFNBP" 801162 NIL FFNBP (NIL T NIL) -8 NIL NIL NIL) (-351 790950 795566 795777 "FFNB" 796115 NIL FFNB (NIL NIL NIL) -8 NIL NIL NIL) (-350 789782 789980 790295 "FFINTBAS" 790747 NIL FFINTBAS (NIL T T T) -7 NIL NIL NIL) (-349 786010 788189 788217 "FFIELDC" 788837 T FFIELDC (NIL) -9 NIL 789213 NIL) (-348 784673 785043 785540 "FFIELDC-" 785545 NIL FFIELDC- (NIL T) -8 NIL NIL NIL) (-347 784243 784288 784412 "FFHOM" 784615 NIL FFHOM (NIL T T T) -7 NIL NIL NIL) (-346 781941 782425 782942 "FFF" 783758 NIL FFF (NIL T) -7 NIL NIL NIL) (-345 777594 781683 781784 "FFCGX" 781884 NIL FFCGX (NIL T NIL) -8 NIL NIL NIL) (-344 773261 777326 777433 "FFCGP" 777537 NIL FFCGP (NIL T NIL) -8 NIL NIL NIL) (-343 768479 772988 773096 "FFCG" 773197 NIL FFCG (NIL NIL NIL) -8 NIL NIL NIL) (-342 750312 759350 759436 "FFCAT" 764601 NIL FFCAT (NIL T T T) -9 NIL 766052 NIL) (-341 745510 746557 747871 "FFCAT-" 749101 NIL FFCAT- (NIL T T T T) -8 NIL NIL NIL) (-340 744921 744964 745199 "FFCAT2" 745461 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-339 734133 737893 739113 "FEXPR" 743773 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL NIL) (-338 733133 733568 733609 "FEVALAB" 733693 NIL FEVALAB (NIL T) -9 NIL 733954 NIL) (-337 732292 732502 732840 "FEVALAB-" 732845 NIL FEVALAB- (NIL T T) -8 NIL NIL NIL) (-336 730885 731675 731878 "FDIV" 732191 NIL FDIV (NIL T T T T) -8 NIL NIL NIL) (-335 727951 728666 728781 "FDIVCAT" 730349 NIL FDIVCAT (NIL T T T T) -9 NIL 730786 NIL) (-334 727713 727740 727910 "FDIVCAT-" 727915 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL NIL) (-333 726933 727020 727297 "FDIV2" 727620 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-332 725619 725878 726167 "FCPAK1" 726664 T FCPAK1 (NIL) -7 NIL NIL NIL) (-331 724747 725119 725260 "FCOMP" 725510 NIL FCOMP (NIL T) -8 NIL NIL NIL) (-330 708484 711897 715435 "FC" 721229 T FC (NIL) -8 NIL NIL NIL) (-329 701063 705048 705088 "FAXF" 706890 NIL FAXF (NIL T) -9 NIL 707582 NIL) (-328 698342 698997 699822 "FAXF-" 700287 NIL FAXF- (NIL T T) -8 NIL NIL NIL) (-327 693442 697718 697894 "FARRAY" 698199 NIL FARRAY (NIL T) -8 NIL NIL NIL) (-326 688695 690727 690780 "FAMR" 691803 NIL FAMR (NIL T T) -9 NIL 692263 NIL) (-325 687585 687887 688322 "FAMR-" 688327 NIL FAMR- (NIL T T T) -8 NIL NIL NIL) (-324 686781 687507 687560 "FAMONOID" 687565 NIL FAMONOID (NIL T) -8 NIL NIL NIL) (-323 684593 685277 685330 "FAMONC" 686271 NIL FAMONC (NIL T T) -9 NIL 686657 NIL) (-322 683285 684347 684484 "FAGROUP" 684489 NIL FAGROUP (NIL T) -8 NIL NIL NIL) (-321 681080 681399 681802 "FACUTIL" 682966 NIL FACUTIL (NIL T T T T) -7 NIL NIL NIL) (-320 680179 680364 680586 "FACTFUNC" 680890 NIL FACTFUNC (NIL T) -7 NIL NIL NIL) (-319 672584 679430 679642 "EXPUPXS" 680035 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-318 670067 670607 671193 "EXPRTUBE" 672018 T EXPRTUBE (NIL) -7 NIL NIL NIL) (-317 666261 666853 667590 "EXPRODE" 669406 NIL EXPRODE (NIL T T) -7 NIL NIL NIL) (-316 651635 664916 665344 "EXPR" 665865 NIL EXPR (NIL T) -8 NIL NIL NIL) (-315 646042 646629 647442 "EXPR2UPS" 650933 NIL EXPR2UPS (NIL T T) -7 NIL NIL NIL) (-314 645678 645735 645842 "EXPR2" 645979 NIL EXPR2 (NIL T T) -7 NIL NIL NIL) (-313 637083 644810 645107 "EXPEXPAN" 645515 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL NIL) (-312 636910 637040 637069 "EXIT" 637074 T EXIT (NIL) -8 NIL NIL NIL) (-311 636417 636634 636725 "EXITAST" 636839 T EXITAST (NIL) -8 NIL NIL NIL) (-310 636044 636106 636219 "EVALCYC" 636349 NIL EVALCYC (NIL T) -7 NIL NIL NIL) (-309 635585 635703 635744 "EVALAB" 635914 NIL EVALAB (NIL T) -9 NIL 636018 NIL) (-308 635066 635188 635409 "EVALAB-" 635414 NIL EVALAB- (NIL T T) -8 NIL NIL NIL) (-307 632534 633802 633830 "EUCDOM" 634385 T EUCDOM (NIL) -9 NIL 634735 NIL) (-306 630939 631381 631971 "EUCDOM-" 631976 NIL EUCDOM- (NIL T) -8 NIL NIL NIL) (-305 618479 621237 623987 "ESTOOLS" 628209 T ESTOOLS (NIL) -7 NIL NIL NIL) (-304 618111 618168 618277 "ESTOOLS2" 618416 NIL ESTOOLS2 (NIL T T) -7 NIL NIL NIL) (-303 617862 617904 617984 "ESTOOLS1" 618063 NIL ESTOOLS1 (NIL T) -7 NIL NIL NIL) (-302 611767 613495 613523 "ES" 616291 T ES (NIL) -9 NIL 617700 NIL) (-301 606715 608001 609818 "ES-" 609982 NIL ES- (NIL T) -8 NIL NIL NIL) (-300 603090 603850 604630 "ESCONT" 605955 T ESCONT (NIL) -7 NIL NIL NIL) (-299 602835 602867 602949 "ESCONT1" 603052 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL NIL) (-298 602510 602560 602660 "ES2" 602779 NIL ES2 (NIL T T) -7 NIL NIL NIL) (-297 602140 602198 602307 "ES1" 602446 NIL ES1 (NIL T T) -7 NIL NIL NIL) (-296 601356 601485 601661 "ERROR" 601984 T ERROR (NIL) -7 NIL NIL NIL) (-295 594859 601215 601306 "EQTBL" 601311 NIL EQTBL (NIL T T) -8 NIL NIL NIL) (-294 587416 590173 591622 "EQ" 593443 NIL -3299 (NIL T) -8 NIL NIL NIL) (-293 587048 587105 587214 "EQ2" 587353 NIL EQ2 (NIL T T) -7 NIL NIL NIL) (-292 582340 583386 584479 "EP" 585987 NIL EP (NIL T) -7 NIL NIL NIL) (-291 580922 581223 581540 "ENV" 582043 T ENV (NIL) -8 NIL NIL NIL) (-290 580101 580621 580649 "ENTIRER" 580654 T ENTIRER (NIL) -9 NIL 580700 NIL) (-289 576603 578056 578426 "EMR" 579900 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL NIL) (-288 575747 575932 575986 "ELTAGG" 576366 NIL ELTAGG (NIL T T) -9 NIL 576577 NIL) (-287 575466 575528 575669 "ELTAGG-" 575674 NIL ELTAGG- (NIL T T T) -8 NIL NIL NIL) (-286 575255 575284 575338 "ELTAB" 575422 NIL ELTAB (NIL T T) -9 NIL NIL NIL) (-285 574381 574527 574726 "ELFUTS" 575106 NIL ELFUTS (NIL T T) -7 NIL NIL NIL) (-284 574123 574179 574207 "ELEMFUN" 574312 T ELEMFUN (NIL) -9 NIL NIL NIL) (-283 573993 574014 574082 "ELEMFUN-" 574087 NIL ELEMFUN- (NIL T) -8 NIL NIL NIL) (-282 568884 572093 572134 "ELAGG" 573074 NIL ELAGG (NIL T) -9 NIL 573537 NIL) (-281 567169 567603 568266 "ELAGG-" 568271 NIL ELAGG- (NIL T T) -8 NIL NIL NIL) (-280 565826 566106 566401 "ELABEXPR" 566894 T ELABEXPR (NIL) -8 NIL NIL NIL) (-279 558692 560493 561320 "EFUPXS" 565102 NIL EFUPXS (NIL T T T T) -8 NIL NIL NIL) (-278 552142 553943 554753 "EFULS" 557968 NIL EFULS (NIL T T T) -8 NIL NIL NIL) (-277 549564 549922 550401 "EFSTRUC" 551774 NIL EFSTRUC (NIL T T) -7 NIL NIL NIL) (-276 538636 540201 541761 "EF" 548079 NIL EF (NIL T T) -7 NIL NIL NIL) (-275 537737 538121 538270 "EAB" 538507 T EAB (NIL) -8 NIL NIL NIL) (-274 536946 537696 537724 "E04UCFA" 537729 T E04UCFA (NIL) -8 NIL NIL NIL) (-273 536155 536905 536933 "E04NAFA" 536938 T E04NAFA (NIL) -8 NIL NIL NIL) (-272 535364 536114 536142 "E04MBFA" 536147 T E04MBFA (NIL) -8 NIL NIL NIL) (-271 534573 535323 535351 "E04JAFA" 535356 T E04JAFA (NIL) -8 NIL NIL NIL) (-270 533784 534532 534560 "E04GCFA" 534565 T E04GCFA (NIL) -8 NIL NIL NIL) (-269 532995 533743 533771 "E04FDFA" 533776 T E04FDFA (NIL) -8 NIL NIL NIL) (-268 532204 532954 532982 "E04DGFA" 532987 T E04DGFA (NIL) -8 NIL NIL NIL) (-267 526382 527729 529093 "E04AGNT" 530860 T E04AGNT (NIL) -7 NIL NIL NIL) (-266 525088 525568 525608 "DVARCAT" 526083 NIL DVARCAT (NIL T) -9 NIL 526282 NIL) (-265 524292 524504 524818 "DVARCAT-" 524823 NIL DVARCAT- (NIL T T) -8 NIL NIL NIL) (-264 517192 524091 524220 "DSMP" 524225 NIL DSMP (NIL T T T) -8 NIL NIL NIL) (-263 512002 513137 514205 "DROPT" 516144 T DROPT (NIL) -8 NIL NIL NIL) (-262 511667 511726 511824 "DROPT1" 511937 NIL DROPT1 (NIL T) -7 NIL NIL NIL) (-261 506782 507908 509045 "DROPT0" 510550 T DROPT0 (NIL) -7 NIL NIL NIL) (-260 505127 505452 505838 "DRAWPT" 506416 T DRAWPT (NIL) -7 NIL NIL NIL) (-259 499714 500637 501716 "DRAW" 504101 NIL DRAW (NIL T) -7 NIL NIL NIL) (-258 499347 499400 499518 "DRAWHACK" 499655 NIL DRAWHACK (NIL T) -7 NIL NIL NIL) (-257 498078 498347 498638 "DRAWCX" 499076 T DRAWCX (NIL) -7 NIL NIL NIL) (-256 497594 497662 497813 "DRAWCURV" 498004 NIL DRAWCURV (NIL T T) -7 NIL NIL NIL) (-255 488065 490024 492139 "DRAWCFUN" 495499 T DRAWCFUN (NIL) -7 NIL NIL NIL) (-254 484878 486760 486801 "DQAGG" 487430 NIL DQAGG (NIL T) -9 NIL 487703 NIL) (-253 473157 479856 479939 "DPOLCAT" 481791 NIL DPOLCAT (NIL T T T T) -9 NIL 482336 NIL) (-252 467996 469342 471300 "DPOLCAT-" 471305 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL NIL) (-251 461151 467857 467955 "DPMO" 467960 NIL DPMO (NIL NIL T T) -8 NIL NIL NIL) (-250 454209 460931 461098 "DPMM" 461103 NIL DPMM (NIL NIL T T T) -8 NIL NIL NIL) (-249 453841 454128 454176 "DOMCTOR" 454181 T DOMCTOR (NIL) -8 NIL NIL NIL) (-248 453136 453363 453500 "DOMAIN" 453724 T DOMAIN (NIL) -8 NIL NIL NIL) (-247 446887 452771 452923 "DMP" 453037 NIL DMP (NIL NIL T) -8 NIL NIL NIL) (-246 446487 446543 446687 "DLP" 446825 NIL DLP (NIL T) -7 NIL NIL NIL) (-245 440357 445814 446004 "DLIST" 446329 NIL DLIST (NIL T) -8 NIL NIL NIL) (-244 437201 439210 439251 "DLAGG" 439801 NIL DLAGG (NIL T) -9 NIL 440031 NIL) (-243 436014 436644 436672 "DIVRING" 436764 T DIVRING (NIL) -9 NIL 436847 NIL) (-242 435251 435441 435741 "DIVRING-" 435746 NIL DIVRING- (NIL T) -8 NIL NIL NIL) (-241 433353 433710 434116 "DISPLAY" 434865 T DISPLAY (NIL) -7 NIL NIL NIL) (-240 427295 433267 433330 "DIRPROD" 433335 NIL DIRPROD (NIL NIL T) -8 NIL NIL NIL) (-239 426143 426346 426611 "DIRPROD2" 427088 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL NIL) (-238 415406 421358 421411 "DIRPCAT" 421821 NIL DIRPCAT (NIL NIL T) -9 NIL 422661 NIL) (-237 412732 413374 414255 "DIRPCAT-" 414592 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL NIL) (-236 412019 412179 412365 "DIOSP" 412566 T DIOSP (NIL) -7 NIL NIL NIL) (-235 408721 410931 410972 "DIOPS" 411406 NIL DIOPS (NIL T) -9 NIL 411635 NIL) (-234 408270 408384 408575 "DIOPS-" 408580 NIL DIOPS- (NIL T T) -8 NIL NIL NIL) (-233 407162 407756 407784 "DIFRING" 407971 T DIFRING (NIL) -9 NIL 408081 NIL) (-232 406808 406885 407037 "DIFRING-" 407042 NIL DIFRING- (NIL T) -8 NIL NIL NIL) (-231 404613 405851 405892 "DIFEXT" 406255 NIL DIFEXT (NIL T) -9 NIL 406549 NIL) (-230 402898 403326 403992 "DIFEXT-" 403997 NIL DIFEXT- (NIL T T) -8 NIL NIL NIL) (-229 400220 402430 402471 "DIAGG" 402476 NIL DIAGG (NIL T) -9 NIL 402496 NIL) (-228 399604 399761 400013 "DIAGG-" 400018 NIL DIAGG- (NIL T T) -8 NIL NIL NIL) (-227 395069 398563 398840 "DHMATRIX" 399373 NIL DHMATRIX (NIL T) -8 NIL NIL NIL) (-226 390681 391590 392600 "DFSFUN" 394079 T DFSFUN (NIL) -7 NIL NIL NIL) (-225 385797 389612 389924 "DFLOAT" 390389 T DFLOAT (NIL) -8 NIL NIL NIL) (-224 384025 384306 384702 "DFINTTLS" 385505 NIL DFINTTLS (NIL T T) -7 NIL NIL NIL) (-223 381090 382046 382446 "DERHAM" 383691 NIL DERHAM (NIL T NIL) -8 NIL NIL NIL) (-222 378939 380865 380954 "DEQUEUE" 381034 NIL DEQUEUE (NIL T) -8 NIL NIL NIL) (-221 378154 378287 378483 "DEGRED" 378801 NIL DEGRED (NIL T T) -7 NIL NIL NIL) (-220 374549 375294 376147 "DEFINTRF" 377382 NIL DEFINTRF (NIL T) -7 NIL NIL NIL) (-219 372076 372545 373144 "DEFINTEF" 374068 NIL DEFINTEF (NIL T T) -7 NIL NIL NIL) (-218 371453 371696 371811 "DEFAST" 371981 T DEFAST (NIL) -8 NIL NIL NIL) (-217 365492 371048 371197 "DECIMAL" 371324 T DECIMAL (NIL) -8 NIL NIL NIL) (-216 363004 363462 363968 "DDFACT" 365036 NIL DDFACT (NIL T T) -7 NIL NIL NIL) (-215 362600 362643 362794 "DBLRESP" 362955 NIL DBLRESP (NIL T T T T) -7 NIL NIL NIL) (-214 360499 360833 361193 "DBASE" 362367 NIL DBASE (NIL T) -8 NIL NIL NIL) (-213 359768 359979 360125 "DATAARY" 360398 NIL DATAARY (NIL NIL T) -8 NIL NIL NIL) (-212 358901 359727 359755 "D03FAFA" 359760 T D03FAFA (NIL) -8 NIL NIL NIL) (-211 358035 358860 358888 "D03EEFA" 358893 T D03EEFA (NIL) -8 NIL NIL NIL) (-210 355985 356451 356940 "D03AGNT" 357566 T D03AGNT (NIL) -7 NIL NIL NIL) (-209 355301 355944 355972 "D02EJFA" 355977 T D02EJFA (NIL) -8 NIL NIL NIL) (-208 354617 355260 355288 "D02CJFA" 355293 T D02CJFA (NIL) -8 NIL NIL NIL) (-207 353933 354576 354604 "D02BHFA" 354609 T D02BHFA (NIL) -8 NIL NIL NIL) (-206 353249 353892 353920 "D02BBFA" 353925 T D02BBFA (NIL) -8 NIL NIL NIL) (-205 346447 348035 349641 "D02AGNT" 351663 T D02AGNT (NIL) -7 NIL NIL NIL) (-204 344216 344738 345284 "D01WGTS" 345921 T D01WGTS (NIL) -7 NIL NIL NIL) (-203 343311 344175 344203 "D01TRNS" 344208 T D01TRNS (NIL) -8 NIL NIL NIL) (-202 342406 343270 343298 "D01GBFA" 343303 T D01GBFA (NIL) -8 NIL NIL NIL) (-201 341501 342365 342393 "D01FCFA" 342398 T D01FCFA (NIL) -8 NIL NIL NIL) (-200 340596 341460 341488 "D01ASFA" 341493 T D01ASFA (NIL) -8 NIL NIL NIL) (-199 339691 340555 340583 "D01AQFA" 340588 T D01AQFA (NIL) -8 NIL NIL NIL) (-198 338786 339650 339678 "D01APFA" 339683 T D01APFA (NIL) -8 NIL NIL NIL) (-197 337881 338745 338773 "D01ANFA" 338778 T D01ANFA (NIL) -8 NIL NIL NIL) (-196 336976 337840 337868 "D01AMFA" 337873 T D01AMFA (NIL) -8 NIL NIL NIL) (-195 336071 336935 336963 "D01ALFA" 336968 T D01ALFA (NIL) -8 NIL NIL NIL) (-194 335166 336030 336058 "D01AKFA" 336063 T D01AKFA (NIL) -8 NIL NIL NIL) (-193 334261 335125 335153 "D01AJFA" 335158 T D01AJFA (NIL) -8 NIL NIL NIL) (-192 327558 329109 330670 "D01AGNT" 332720 T D01AGNT (NIL) -7 NIL NIL NIL) (-191 326895 327023 327175 "CYCLOTOM" 327426 T CYCLOTOM (NIL) -7 NIL NIL NIL) (-190 323630 324343 325070 "CYCLES" 326188 T CYCLES (NIL) -7 NIL NIL NIL) (-189 322942 323076 323247 "CVMP" 323491 NIL CVMP (NIL T) -7 NIL NIL NIL) (-188 320713 320971 321347 "CTRIGMNP" 322670 NIL CTRIGMNP (NIL T T) -7 NIL NIL NIL) (-187 320204 320504 320578 "CTOR" 320659 T CTOR (NIL) -8 NIL NIL NIL) (-186 319740 319935 320036 "CTORKIND" 320123 T CTORKIND (NIL) -8 NIL NIL NIL) (-185 319088 319347 319375 "CTORCAT" 319557 T CTORCAT (NIL) -9 NIL 319670 NIL) (-184 318686 318797 318956 "CTORCAT-" 318961 NIL CTORCAT- (NIL T) -8 NIL NIL NIL) (-183 318202 318389 318487 "CTORCALL" 318608 T CTORCALL (NIL) -8 NIL NIL NIL) (-182 317576 317675 317828 "CSTTOOLS" 318099 NIL CSTTOOLS (NIL T T) -7 NIL NIL NIL) (-181 313375 314032 314790 "CRFP" 316888 NIL CRFP (NIL T T) -7 NIL NIL NIL) (-180 312877 313096 313188 "CRCEAST" 313303 T CRCEAST (NIL) -8 NIL NIL NIL) (-179 311924 312109 312337 "CRAPACK" 312681 NIL CRAPACK (NIL T) -7 NIL NIL NIL) (-178 311308 311409 311613 "CPMATCH" 311800 NIL CPMATCH (NIL T T T) -7 NIL NIL NIL) (-177 311033 311061 311167 "CPIMA" 311274 NIL CPIMA (NIL T T T) -7 NIL NIL NIL) (-176 307397 308069 308787 "COORDSYS" 310368 NIL COORDSYS (NIL T) -7 NIL NIL NIL) (-175 306781 306910 307060 "CONTOUR" 307267 T CONTOUR (NIL) -8 NIL NIL NIL) (-174 302707 304784 305276 "CONTFRAC" 306321 NIL CONTFRAC (NIL T) -8 NIL NIL NIL) (-173 302587 302608 302636 "CONDUIT" 302673 T CONDUIT (NIL) -9 NIL NIL NIL) (-172 301760 302280 302308 "COMRING" 302313 T COMRING (NIL) -9 NIL 302365 NIL) (-171 300841 301118 301302 "COMPPROP" 301596 T COMPPROP (NIL) -8 NIL NIL NIL) (-170 300502 300537 300665 "COMPLPAT" 300800 NIL COMPLPAT (NIL T T T) -7 NIL NIL NIL) (-169 290559 300311 300420 "COMPLEX" 300425 NIL COMPLEX (NIL T) -8 NIL NIL NIL) (-168 290195 290252 290359 "COMPLEX2" 290496 NIL COMPLEX2 (NIL T T) -7 NIL NIL NIL) (-167 289913 289948 290046 "COMPFACT" 290154 NIL COMPFACT (NIL T T) -7 NIL NIL NIL) (-166 274075 284295 284335 "COMPCAT" 285339 NIL COMPCAT (NIL T) -9 NIL 286735 NIL) (-165 263591 266514 270141 "COMPCAT-" 270497 NIL COMPCAT- (NIL T T) -8 NIL NIL NIL) (-164 263320 263348 263451 "COMMUPC" 263557 NIL COMMUPC (NIL T T T) -7 NIL NIL NIL) (-163 263115 263148 263207 "COMMONOP" 263281 T COMMONOP (NIL) -7 NIL NIL NIL) (-162 262698 262866 262953 "COMM" 263048 T COMM (NIL) -8 NIL NIL NIL) (-161 262302 262502 262577 "COMMAAST" 262643 T COMMAAST (NIL) -8 NIL NIL NIL) (-160 261551 261745 261773 "COMBOPC" 262111 T COMBOPC (NIL) -9 NIL 262286 NIL) (-159 260447 260657 260899 "COMBINAT" 261341 NIL COMBINAT (NIL T) -7 NIL NIL NIL) (-158 256645 257218 257858 "COMBF" 259869 NIL COMBF (NIL T T) -7 NIL NIL NIL) (-157 255431 255761 255996 "COLOR" 256430 T COLOR (NIL) -8 NIL NIL NIL) (-156 254934 255152 255244 "COLONAST" 255359 T COLONAST (NIL) -8 NIL NIL NIL) (-155 254574 254621 254746 "CMPLXRT" 254881 NIL CMPLXRT (NIL T T) -7 NIL NIL NIL) (-154 254049 254274 254373 "CLLCTAST" 254495 T CLLCTAST (NIL) -8 NIL NIL NIL) (-153 249551 250579 251659 "CLIP" 252989 T CLIP (NIL) -7 NIL NIL NIL) (-152 247933 248657 248896 "CLIF" 249378 NIL CLIF (NIL NIL T NIL) -8 NIL NIL NIL) (-151 244155 246079 246120 "CLAGG" 247049 NIL CLAGG (NIL T) -9 NIL 247585 NIL) (-150 242577 243034 243617 "CLAGG-" 243622 NIL CLAGG- (NIL T T) -8 NIL NIL NIL) (-149 242121 242206 242346 "CINTSLPE" 242486 NIL CINTSLPE (NIL T T) -7 NIL NIL NIL) (-148 239622 240093 240641 "CHVAR" 241649 NIL CHVAR (NIL T T T) -7 NIL NIL NIL) (-147 238865 239385 239413 "CHARZ" 239418 T CHARZ (NIL) -9 NIL 239433 NIL) (-146 238619 238659 238737 "CHARPOL" 238819 NIL CHARPOL (NIL T) -7 NIL NIL NIL) (-145 237746 238299 238327 "CHARNZ" 238374 T CHARNZ (NIL) -9 NIL 238430 NIL) (-144 235735 236436 236771 "CHAR" 237431 T CHAR (NIL) -8 NIL NIL NIL) (-143 235461 235522 235550 "CFCAT" 235661 T CFCAT (NIL) -9 NIL NIL NIL) (-142 234706 234817 234999 "CDEN" 235345 NIL CDEN (NIL T T T) -7 NIL NIL NIL) (-141 230698 233859 234139 "CCLASS" 234446 T CCLASS (NIL) -8 NIL NIL NIL) (-140 230005 230148 230311 "CATEGORY" 230555 T -10 (NIL) -8 NIL NIL NIL) (-139 229637 229924 229972 "CATCTOR" 229977 T CATCTOR (NIL) -8 NIL NIL NIL) (-138 229111 229337 229436 "CATAST" 229558 T CATAST (NIL) -8 NIL NIL NIL) (-137 228614 228832 228924 "CASEAST" 229039 T CASEAST (NIL) -8 NIL NIL NIL) (-136 223666 224643 225396 "CARTEN" 227917 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL NIL) (-135 222774 222922 223143 "CARTEN2" 223513 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL NIL) (-134 221116 221924 222181 "CARD" 222537 T CARD (NIL) -8 NIL NIL NIL) (-133 220719 220920 220995 "CAPSLAST" 221061 T CAPSLAST (NIL) -8 NIL NIL NIL) (-132 220091 220419 220447 "CACHSET" 220579 T CACHSET (NIL) -9 NIL 220656 NIL) (-131 219587 219883 219911 "CABMON" 219961 T CABMON (NIL) -9 NIL 220017 NIL) (-130 219087 219291 219401 "BYTEORD" 219497 T BYTEORD (NIL) -8 NIL NIL NIL) (-129 218110 218633 218769 "BYTE" 218932 T BYTE (NIL) -8 NIL NIL 219048) (-128 213519 217578 217741 "BYTEBUF" 217967 T BYTEBUF (NIL) -8 NIL NIL NIL) (-127 211076 213211 213318 "BTREE" 213445 NIL BTREE (NIL T) -8 NIL NIL NIL) (-126 208574 210724 210846 "BTOURN" 210986 NIL BTOURN (NIL T) -8 NIL NIL NIL) (-125 205991 208044 208085 "BTCAT" 208153 NIL BTCAT (NIL T) -9 NIL 208230 NIL) (-124 205658 205738 205887 "BTCAT-" 205892 NIL BTCAT- (NIL T T) -8 NIL NIL NIL) (-123 200950 204801 204829 "BTAGG" 205051 T BTAGG (NIL) -9 NIL 205212 NIL) (-122 200440 200565 200771 "BTAGG-" 200776 NIL BTAGG- (NIL T) -8 NIL NIL NIL) (-121 197484 199718 199933 "BSTREE" 200257 NIL BSTREE (NIL T) -8 NIL NIL NIL) (-120 196622 196748 196932 "BRILL" 197340 NIL BRILL (NIL T) -7 NIL NIL NIL) (-119 193321 195348 195389 "BRAGG" 196038 NIL BRAGG (NIL T) -9 NIL 196296 NIL) (-118 191850 192256 192811 "BRAGG-" 192816 NIL BRAGG- (NIL T T) -8 NIL NIL NIL) (-117 185114 191196 191380 "BPADICRT" 191698 NIL BPADICRT (NIL NIL) -8 NIL NIL NIL) (-116 183464 185051 185096 "BPADIC" 185101 NIL BPADIC (NIL NIL) -8 NIL NIL NIL) (-115 183162 183192 183306 "BOUNDZRO" 183428 NIL BOUNDZRO (NIL T T) -7 NIL NIL NIL) (-114 178677 179768 180635 "BOP" 182315 T BOP (NIL) -8 NIL NIL NIL) (-113 176298 176742 177262 "BOP1" 178190 NIL BOP1 (NIL T) -7 NIL NIL NIL) (-112 175000 175722 175915 "BOOLEAN" 176125 T BOOLEAN (NIL) -8 NIL NIL NIL) (-111 174362 174740 174794 "BMODULE" 174799 NIL BMODULE (NIL T T) -9 NIL 174864 NIL) (-110 170192 174160 174233 "BITS" 174309 T BITS (NIL) -8 NIL NIL NIL) (-109 169604 169726 169868 "BINDING" 170070 T BINDING (NIL) -8 NIL NIL NIL) (-108 163646 169201 169349 "BINARY" 169476 T BINARY (NIL) -8 NIL NIL NIL) (-107 161473 162901 162942 "BGAGG" 163202 NIL BGAGG (NIL T) -9 NIL 163339 NIL) (-106 161304 161336 161427 "BGAGG-" 161432 NIL BGAGG- (NIL T T) -8 NIL NIL NIL) (-105 160402 160688 160893 "BFUNCT" 161119 T BFUNCT (NIL) -8 NIL NIL NIL) (-104 159092 159270 159558 "BEZOUT" 160226 NIL BEZOUT (NIL T T T T T) -7 NIL NIL NIL) (-103 155609 157944 158274 "BBTREE" 158795 NIL BBTREE (NIL T) -8 NIL NIL NIL) (-102 155343 155396 155424 "BASTYPE" 155543 T BASTYPE (NIL) -9 NIL NIL NIL) (-101 155196 155224 155297 "BASTYPE-" 155302 NIL BASTYPE- (NIL T) -8 NIL NIL NIL) (-100 154630 154706 154858 "BALFACT" 155107 NIL BALFACT (NIL T T) -7 NIL NIL NIL) (-99 153513 154045 154231 "AUTOMOR" 154475 NIL AUTOMOR (NIL T) -8 NIL NIL NIL) (-98 153239 153244 153270 "ATTREG" 153275 T ATTREG (NIL) -9 NIL NIL NIL) (-97 151518 151936 152288 "ATTRBUT" 152905 T ATTRBUT (NIL) -8 NIL NIL NIL) (-96 151153 151346 151412 "ATTRAST" 151470 T ATTRAST (NIL) -8 NIL NIL NIL) (-95 150689 150802 150828 "ATRIG" 151029 T ATRIG (NIL) -9 NIL NIL NIL) (-94 150498 150539 150626 "ATRIG-" 150631 NIL ATRIG- (NIL T) -8 NIL NIL NIL) (-93 150169 150329 150355 "ASTCAT" 150360 T ASTCAT (NIL) -9 NIL 150390 NIL) (-92 149896 149955 150074 "ASTCAT-" 150079 NIL ASTCAT- (NIL T) -8 NIL NIL NIL) (-91 148093 149672 149760 "ASTACK" 149839 NIL ASTACK (NIL T) -8 NIL NIL NIL) (-90 146598 146895 147260 "ASSOCEQ" 147775 NIL ASSOCEQ (NIL T T) -7 NIL NIL NIL) (-89 145630 146257 146381 "ASP9" 146505 NIL ASP9 (NIL NIL) -8 NIL NIL NIL) (-88 145394 145578 145617 "ASP8" 145622 NIL ASP8 (NIL NIL) -8 NIL NIL NIL) (-87 144263 144999 145141 "ASP80" 145283 NIL ASP80 (NIL NIL) -8 NIL NIL NIL) (-86 143162 143898 144030 "ASP7" 144162 NIL ASP7 (NIL NIL) -8 NIL NIL NIL) (-85 142116 142839 142957 "ASP78" 143075 NIL ASP78 (NIL NIL) -8 NIL NIL NIL) (-84 141085 141796 141913 "ASP77" 142030 NIL ASP77 (NIL NIL) -8 NIL NIL NIL) (-83 139997 140723 140854 "ASP74" 140985 NIL ASP74 (NIL NIL) -8 NIL NIL NIL) (-82 138897 139632 139764 "ASP73" 139896 NIL ASP73 (NIL NIL) -8 NIL NIL NIL) (-81 138001 138723 138823 "ASP6" 138828 NIL ASP6 (NIL NIL) -8 NIL NIL NIL) (-80 136949 137678 137796 "ASP55" 137914 NIL ASP55 (NIL NIL) -8 NIL NIL NIL) (-79 135899 136623 136742 "ASP50" 136861 NIL ASP50 (NIL NIL) -8 NIL NIL NIL) (-78 134987 135600 135710 "ASP4" 135820 NIL ASP4 (NIL NIL) -8 NIL NIL NIL) (-77 134075 134688 134798 "ASP49" 134908 NIL ASP49 (NIL NIL) -8 NIL NIL NIL) (-76 132860 133614 133782 "ASP42" 133964 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-75 131637 132393 132563 "ASP41" 132747 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-74 130587 131314 131432 "ASP35" 131550 NIL ASP35 (NIL NIL) -8 NIL NIL NIL) (-73 130352 130535 130574 "ASP34" 130579 NIL ASP34 (NIL NIL) -8 NIL NIL NIL) (-72 130089 130156 130232 "ASP33" 130307 NIL ASP33 (NIL NIL) -8 NIL NIL NIL) (-71 128984 129724 129856 "ASP31" 129988 NIL ASP31 (NIL NIL) -8 NIL NIL NIL) (-70 128749 128932 128971 "ASP30" 128976 NIL ASP30 (NIL NIL) -8 NIL NIL NIL) (-69 128484 128553 128629 "ASP29" 128704 NIL ASP29 (NIL NIL) -8 NIL NIL NIL) (-68 128249 128432 128471 "ASP28" 128476 NIL ASP28 (NIL NIL) -8 NIL NIL NIL) (-67 128014 128197 128236 "ASP27" 128241 NIL ASP27 (NIL NIL) -8 NIL NIL NIL) (-66 127098 127712 127823 "ASP24" 127934 NIL ASP24 (NIL NIL) -8 NIL NIL NIL) (-65 126175 126900 127012 "ASP20" 127017 NIL ASP20 (NIL NIL) -8 NIL NIL NIL) (-64 125263 125876 125986 "ASP1" 126096 NIL ASP1 (NIL NIL) -8 NIL NIL NIL) (-63 124207 124937 125056 "ASP19" 125175 NIL ASP19 (NIL NIL) -8 NIL NIL NIL) (-62 123944 124011 124087 "ASP12" 124162 NIL ASP12 (NIL NIL) -8 NIL NIL NIL) (-61 122796 123543 123687 "ASP10" 123831 NIL ASP10 (NIL NIL) -8 NIL NIL NIL) (-60 120695 122640 122731 "ARRAY2" 122736 NIL ARRAY2 (NIL T) -8 NIL NIL NIL) (-59 116511 120343 120457 "ARRAY1" 120612 NIL ARRAY1 (NIL T) -8 NIL NIL NIL) (-58 115543 115716 115937 "ARRAY12" 116334 NIL ARRAY12 (NIL T T) -7 NIL NIL NIL) (-57 109902 111773 111848 "ARR2CAT" 114478 NIL ARR2CAT (NIL T T T) -9 NIL 115236 NIL) (-56 107336 108080 109034 "ARR2CAT-" 109039 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL NIL) (-55 106930 107163 107242 "ARITY" 107275 T ARITY (NIL) -8 NIL NIL NIL) (-54 105678 105830 106136 "APPRULE" 106766 NIL APPRULE (NIL T T T) -7 NIL NIL NIL) (-53 105329 105377 105496 "APPLYORE" 105624 NIL APPLYORE (NIL T T T) -7 NIL NIL NIL) (-52 104303 104594 104789 "ANY" 105152 T ANY (NIL) -8 NIL NIL NIL) (-51 103581 103704 103861 "ANY1" 104177 NIL ANY1 (NIL T) -7 NIL NIL NIL) (-50 101146 102018 102345 "ANTISYM" 103305 NIL ANTISYM (NIL T NIL) -8 NIL NIL NIL) (-49 100661 100850 100947 "ANON" 101067 T ANON (NIL) -8 NIL NIL NIL) (-48 94793 99200 99654 "AN" 100225 T AN (NIL) -8 NIL NIL NIL) (-47 91049 92403 92454 "AMR" 93202 NIL AMR (NIL T T) -9 NIL 93802 NIL) (-46 90161 90382 90745 "AMR-" 90750 NIL AMR- (NIL T T T) -8 NIL NIL NIL) (-45 74711 90078 90139 "ALIST" 90144 NIL ALIST (NIL T T) -8 NIL NIL NIL) (-44 71548 74305 74474 "ALGSC" 74629 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-43 68104 68658 69265 "ALGPKG" 70988 NIL ALGPKG (NIL T T) -7 NIL NIL NIL) (-42 67381 67482 67666 "ALGMFACT" 67990 NIL ALGMFACT (NIL T T T) -7 NIL NIL NIL) (-41 63120 63805 64460 "ALGMANIP" 66904 NIL ALGMANIP (NIL T T) -7 NIL NIL NIL) (-40 54526 62746 62896 "ALGFF" 63053 NIL ALGFF (NIL T T T NIL) -8 NIL NIL NIL) (-39 53722 53853 54032 "ALGFACT" 54384 NIL ALGFACT (NIL T) -7 NIL NIL NIL) (-38 52787 53353 53391 "ALGEBRA" 53396 NIL ALGEBRA (NIL T) -9 NIL 53437 NIL) (-37 52505 52564 52696 "ALGEBRA-" 52701 NIL ALGEBRA- (NIL T T) -8 NIL NIL NIL) (-36 34764 50507 50559 "ALAGG" 50695 NIL ALAGG (NIL T T) -9 NIL 50856 NIL) (-35 34300 34413 34439 "AHYP" 34640 T AHYP (NIL) -9 NIL NIL NIL) (-34 33231 33479 33505 "AGG" 34004 T AGG (NIL) -9 NIL 34283 NIL) (-33 32665 32827 33041 "AGG-" 33046 NIL AGG- (NIL T) -8 NIL NIL NIL) (-32 30342 30764 31182 "AF" 32307 NIL AF (NIL T T) -7 NIL NIL NIL) (-31 29849 30067 30157 "ADDAST" 30270 T ADDAST (NIL) -8 NIL NIL NIL) (-30 29118 29376 29532 "ACPLOT" 29711 T ACPLOT (NIL) -8 NIL NIL NIL) (-29 18410 26331 26382 "ACFS" 27093 NIL ACFS (NIL T) -9 NIL 27332 NIL) (-28 16424 16914 17689 "ACFS-" 17694 NIL ACFS- (NIL T T) -8 NIL NIL NIL) (-27 12697 14591 14617 "ACF" 15496 T ACF (NIL) -9 NIL 15908 NIL) (-26 11401 11735 12228 "ACF-" 12233 NIL ACF- (NIL T) -8 NIL NIL NIL) (-25 10999 11168 11194 "ABELSG" 11286 T ABELSG (NIL) -9 NIL 11351 NIL) (-24 10866 10891 10957 "ABELSG-" 10962 NIL ABELSG- (NIL T) -8 NIL NIL NIL) (-23 10235 10496 10522 "ABELMON" 10692 T ABELMON (NIL) -9 NIL 10804 NIL) (-22 9899 9983 10121 "ABELMON-" 10126 NIL ABELMON- (NIL T) -8 NIL NIL NIL) (-21 9233 9579 9605 "ABELGRP" 9730 T ABELGRP (NIL) -9 NIL 9812 NIL) (-20 8696 8825 9041 "ABELGRP-" 9046 NIL ABELGRP- (NIL T) -8 NIL NIL NIL) (-19 4333 8035 8074 "A1AGG" 8079 NIL A1AGG (NIL T) -9 NIL 8119 NIL) (-18 30 1251 2813 "A1AGG-" 2818 NIL A1AGG- (NIL T T) -8 NIL NIL NIL)) \ No newline at end of file
+((-3 3195589 3195594 3195599 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-2 3195574 3195579 3195584 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1 3195559 3195564 3195569 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (0 3195544 3195549 3195554 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1285 3194721 3195419 3195496 "ZMOD" 3195501 NIL ZMOD (NIL NIL) -8 NIL NIL NIL) (-1284 3193831 3193995 3194204 "ZLINDEP" 3194553 NIL ZLINDEP (NIL T) -7 NIL NIL NIL) (-1283 3183135 3184899 3186871 "ZDSOLVE" 3191961 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL NIL) (-1282 3182381 3182522 3182711 "YSTREAM" 3182981 NIL YSTREAM (NIL T) -7 NIL NIL NIL) (-1281 3180192 3181682 3181886 "XRPOLY" 3182224 NIL XRPOLY (NIL T T) -8 NIL NIL NIL) (-1280 3176780 3178063 3178638 "XPR" 3179664 NIL XPR (NIL T T) -8 NIL NIL NIL) (-1279 3174536 3176111 3176315 "XPOLY" 3176611 NIL XPOLY (NIL T) -8 NIL NIL NIL) (-1278 3172327 3173661 3173716 "XPOLYC" 3174004 NIL XPOLYC (NIL T T) -9 NIL 3174117 NIL) (-1277 3168745 3170844 3171232 "XPBWPOLY" 3171985 NIL XPBWPOLY (NIL T T) -8 NIL NIL NIL) (-1276 3164656 3166908 3166950 "XF" 3167571 NIL XF (NIL T) -9 NIL 3167971 NIL) (-1275 3164277 3164365 3164534 "XF-" 3164539 NIL XF- (NIL T T) -8 NIL NIL NIL) (-1274 3159611 3160866 3160921 "XFALG" 3163093 NIL XFALG (NIL T T) -9 NIL 3163882 NIL) (-1273 3158744 3158848 3159053 "XEXPPKG" 3159503 NIL XEXPPKG (NIL T T T) -7 NIL NIL NIL) (-1272 3156888 3158594 3158690 "XDPOLY" 3158695 NIL XDPOLY (NIL T T) -8 NIL NIL NIL) (-1271 3155833 3156399 3156442 "XALG" 3156447 NIL XALG (NIL T) -9 NIL 3156558 NIL) (-1270 3149302 3153810 3154304 "WUTSET" 3155425 NIL WUTSET (NIL T T T T) -8 NIL NIL NIL) (-1269 3147593 3148354 3148677 "WP" 3149113 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL NIL) (-1268 3147222 3147415 3147485 "WHILEAST" 3147545 T WHILEAST (NIL) -8 NIL NIL NIL) (-1267 3146721 3146939 3147033 "WHEREAST" 3147150 T WHEREAST (NIL) -8 NIL NIL NIL) (-1266 3145607 3145805 3146100 "WFFINTBS" 3146518 NIL WFFINTBS (NIL T T T T) -7 NIL NIL NIL) (-1265 3143511 3143938 3144400 "WEIER" 3145179 NIL WEIER (NIL T) -7 NIL NIL NIL) (-1264 3142658 3143082 3143124 "VSPACE" 3143260 NIL VSPACE (NIL T) -9 NIL 3143334 NIL) (-1263 3142496 3142523 3142614 "VSPACE-" 3142619 NIL VSPACE- (NIL T T) -8 NIL NIL NIL) (-1262 3142304 3142347 3142415 "VOID" 3142450 T VOID (NIL) -8 NIL NIL NIL) (-1261 3140440 3140799 3141205 "VIEW" 3141920 T VIEW (NIL) -7 NIL NIL NIL) (-1260 3136865 3137503 3138240 "VIEWDEF" 3139725 T VIEWDEF (NIL) -7 NIL NIL NIL) (-1259 3126201 3128413 3130586 "VIEW3D" 3134714 T VIEW3D (NIL) -8 NIL NIL NIL) (-1258 3118483 3120112 3121691 "VIEW2D" 3124644 T VIEW2D (NIL) -8 NIL NIL NIL) (-1257 3113887 3118253 3118345 "VECTOR" 3118426 NIL VECTOR (NIL T) -8 NIL NIL NIL) (-1256 3112464 3112723 3113041 "VECTOR2" 3113617 NIL VECTOR2 (NIL T T) -7 NIL NIL NIL) (-1255 3105991 3110248 3110291 "VECTCAT" 3111284 NIL VECTCAT (NIL T) -9 NIL 3111870 NIL) (-1254 3105005 3105259 3105649 "VECTCAT-" 3105654 NIL VECTCAT- (NIL T T) -8 NIL NIL NIL) (-1253 3104486 3104656 3104776 "VARIABLE" 3104920 NIL VARIABLE (NIL NIL) -8 NIL NIL NIL) (-1252 3104419 3104424 3104454 "UTYPE" 3104459 T UTYPE (NIL) -9 NIL NIL NIL) (-1251 3103249 3103403 3103665 "UTSODETL" 3104245 NIL UTSODETL (NIL T T T T) -7 NIL NIL NIL) (-1250 3100689 3101149 3101673 "UTSODE" 3102790 NIL UTSODE (NIL T T) -7 NIL NIL NIL) (-1249 3092565 3098315 3098804 "UTS" 3100258 NIL UTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1248 3083808 3089132 3089175 "UTSCAT" 3090287 NIL UTSCAT (NIL T) -9 NIL 3091044 NIL) (-1247 3081163 3081878 3082867 "UTSCAT-" 3082872 NIL UTSCAT- (NIL T T) -8 NIL NIL NIL) (-1246 3080790 3080833 3080966 "UTS2" 3081114 NIL UTS2 (NIL T T T T) -7 NIL NIL NIL) (-1245 3075063 3077628 3077671 "URAGG" 3079741 NIL URAGG (NIL T) -9 NIL 3080464 NIL) (-1244 3072002 3072865 3073988 "URAGG-" 3073993 NIL URAGG- (NIL T T) -8 NIL NIL NIL) (-1243 3067726 3070616 3071088 "UPXSSING" 3071666 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL NIL) (-1242 3059828 3066973 3067246 "UPXS" 3067511 NIL UPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1241 3052941 3059732 3059804 "UPXSCONS" 3059809 NIL UPXSCONS (NIL T T) -8 NIL NIL NIL) (-1240 3043186 3049936 3049998 "UPXSCCA" 3050572 NIL UPXSCCA (NIL T T) -9 NIL 3050805 NIL) (-1239 3042824 3042909 3043083 "UPXSCCA-" 3043088 NIL UPXSCCA- (NIL T T T) -8 NIL NIL NIL) (-1238 3032922 3039445 3039488 "UPXSCAT" 3040136 NIL UPXSCAT (NIL T) -9 NIL 3040744 NIL) (-1237 3032352 3032431 3032610 "UPXS2" 3032837 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1236 3031006 3031259 3031610 "UPSQFREE" 3032095 NIL UPSQFREE (NIL T T) -7 NIL NIL NIL) (-1235 3024794 3027808 3027863 "UPSCAT" 3029024 NIL UPSCAT (NIL T T) -9 NIL 3029798 NIL) (-1234 3023998 3024205 3024532 "UPSCAT-" 3024537 NIL UPSCAT- (NIL T T T) -8 NIL NIL NIL) (-1233 3009848 3017846 3017889 "UPOLYC" 3019990 NIL UPOLYC (NIL T) -9 NIL 3021211 NIL) (-1232 3001177 3003602 3006749 "UPOLYC-" 3006754 NIL UPOLYC- (NIL T T) -8 NIL NIL NIL) (-1231 3000804 3000847 3000980 "UPOLYC2" 3001128 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL NIL) (-1230 2992378 3000487 3000616 "UP" 3000723 NIL UP (NIL NIL T) -8 NIL NIL NIL) (-1229 2991717 2991824 2991988 "UPMP" 2992267 NIL UPMP (NIL T T) -7 NIL NIL NIL) (-1228 2991270 2991351 2991490 "UPDIVP" 2991630 NIL UPDIVP (NIL T T) -7 NIL NIL NIL) (-1227 2989838 2990087 2990403 "UPDECOMP" 2991019 NIL UPDECOMP (NIL T T) -7 NIL NIL NIL) (-1226 2989073 2989185 2989370 "UPCDEN" 2989722 NIL UPCDEN (NIL T T T) -7 NIL NIL NIL) (-1225 2988592 2988661 2988810 "UP2" 2988998 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL NIL) (-1224 2987109 2987796 2988073 "UNISEG" 2988350 NIL UNISEG (NIL T) -8 NIL NIL NIL) (-1223 2986324 2986451 2986656 "UNISEG2" 2986952 NIL UNISEG2 (NIL T T) -7 NIL NIL NIL) (-1222 2985384 2985564 2985790 "UNIFACT" 2986140 NIL UNIFACT (NIL T) -7 NIL NIL NIL) (-1221 2969351 2984561 2984812 "ULS" 2985191 NIL ULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1220 2957391 2969255 2969327 "ULSCONS" 2969332 NIL ULSCONS (NIL T T) -8 NIL NIL NIL) (-1219 2940007 2951949 2952011 "ULSCCAT" 2952649 NIL ULSCCAT (NIL T T) -9 NIL 2952937 NIL) (-1218 2939057 2939302 2939690 "ULSCCAT-" 2939695 NIL ULSCCAT- (NIL T T T) -8 NIL NIL NIL) (-1217 2928932 2935369 2935412 "ULSCAT" 2936275 NIL ULSCAT (NIL T) -9 NIL 2937005 NIL) (-1216 2928362 2928441 2928620 "ULS2" 2928847 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1215 2927499 2927974 2928075 "UINT8" 2928186 T UINT8 (NIL) -8 NIL NIL 2928265) (-1214 2926635 2927110 2927211 "UINT32" 2927322 T UINT32 (NIL) -8 NIL NIL 2927401) (-1213 2925771 2926246 2926347 "UINT16" 2926458 T UINT16 (NIL) -8 NIL NIL 2926537) (-1212 2924174 2925097 2925127 "UFD" 2925339 T UFD (NIL) -9 NIL 2925453 NIL) (-1211 2923968 2924014 2924109 "UFD-" 2924114 NIL UFD- (NIL T) -8 NIL NIL NIL) (-1210 2923050 2923233 2923449 "UDVO" 2923774 T UDVO (NIL) -7 NIL NIL NIL) (-1209 2920866 2921275 2921746 "UDPO" 2922614 NIL UDPO (NIL T) -7 NIL NIL NIL) (-1208 2920799 2920804 2920834 "TYPE" 2920839 T TYPE (NIL) -9 NIL NIL NIL) (-1207 2920586 2920754 2920785 "TYPEAST" 2920790 T TYPEAST (NIL) -8 NIL NIL NIL) (-1206 2919557 2919759 2919999 "TWOFACT" 2920380 NIL TWOFACT (NIL T) -7 NIL NIL NIL) (-1205 2918629 2918966 2919201 "TUPLE" 2919357 NIL TUPLE (NIL T) -8 NIL NIL NIL) (-1204 2916320 2916839 2917378 "TUBETOOL" 2918112 T TUBETOOL (NIL) -7 NIL NIL NIL) (-1203 2915169 2915374 2915615 "TUBE" 2916113 NIL TUBE (NIL T) -8 NIL NIL NIL) (-1202 2909933 2914141 2914424 "TS" 2914921 NIL TS (NIL T) -8 NIL NIL NIL) (-1201 2898600 2902692 2902789 "TSETCAT" 2908058 NIL TSETCAT (NIL T T T T) -9 NIL 2909589 NIL) (-1200 2893335 2894932 2896823 "TSETCAT-" 2896828 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1199 2887598 2888444 2889386 "TRMANIP" 2892471 NIL TRMANIP (NIL T T) -7 NIL NIL NIL) (-1198 2887039 2887102 2887265 "TRIMAT" 2887530 NIL TRIMAT (NIL T T T T) -7 NIL NIL NIL) (-1197 2884835 2885072 2885436 "TRIGMNIP" 2886788 NIL TRIGMNIP (NIL T T) -7 NIL NIL NIL) (-1196 2884355 2884468 2884498 "TRIGCAT" 2884711 T TRIGCAT (NIL) -9 NIL NIL NIL) (-1195 2884024 2884103 2884244 "TRIGCAT-" 2884249 NIL TRIGCAT- (NIL T) -8 NIL NIL NIL) (-1194 2880921 2882882 2883163 "TREE" 2883778 NIL TREE (NIL T) -8 NIL NIL NIL) (-1193 2880195 2880723 2880753 "TRANFUN" 2880788 T TRANFUN (NIL) -9 NIL 2880854 NIL) (-1192 2879474 2879665 2879945 "TRANFUN-" 2879950 NIL TRANFUN- (NIL T) -8 NIL NIL NIL) (-1191 2879278 2879310 2879371 "TOPSP" 2879435 T TOPSP (NIL) -7 NIL NIL NIL) (-1190 2878626 2878741 2878895 "TOOLSIGN" 2879159 NIL TOOLSIGN (NIL T) -7 NIL NIL NIL) (-1189 2877287 2877803 2878042 "TEXTFILE" 2878409 T TEXTFILE (NIL) -8 NIL NIL NIL) (-1188 2875226 2875740 2876169 "TEX" 2876880 T TEX (NIL) -8 NIL NIL NIL) (-1187 2875007 2875038 2875110 "TEX1" 2875189 NIL TEX1 (NIL T) -7 NIL NIL NIL) (-1186 2874655 2874718 2874808 "TEMUTL" 2874939 T TEMUTL (NIL) -7 NIL NIL NIL) (-1185 2872809 2873089 2873414 "TBCMPPK" 2874378 NIL TBCMPPK (NIL T T) -7 NIL NIL NIL) (-1184 2864697 2870969 2871025 "TBAGG" 2871425 NIL TBAGG (NIL T T) -9 NIL 2871636 NIL) (-1183 2859767 2861255 2863009 "TBAGG-" 2863014 NIL TBAGG- (NIL T T T) -8 NIL NIL NIL) (-1182 2859151 2859258 2859403 "TANEXP" 2859656 NIL TANEXP (NIL T) -7 NIL NIL NIL) (-1181 2852652 2859008 2859101 "TABLE" 2859106 NIL TABLE (NIL T T) -8 NIL NIL NIL) (-1180 2852064 2852163 2852301 "TABLEAU" 2852549 NIL TABLEAU (NIL T) -8 NIL NIL NIL) (-1179 2846672 2847892 2849140 "TABLBUMP" 2850850 NIL TABLBUMP (NIL T) -7 NIL NIL NIL) (-1178 2845894 2846041 2846222 "SYSTEM" 2846513 T SYSTEM (NIL) -8 NIL NIL NIL) (-1177 2842357 2843052 2843835 "SYSSOLP" 2845145 NIL SYSSOLP (NIL T) -7 NIL NIL NIL) (-1176 2841414 2841881 2841994 "SYSNNI" 2842180 NIL SYSNNI (NIL NIL) -8 NIL NIL 2842259) (-1175 2840867 2841272 2841314 "SYSINT" 2841319 NIL SYSINT (NIL NIL) -8 NIL NIL 2841327) (-1174 2837201 2838128 2838844 "SYNTAX" 2840173 T SYNTAX (NIL) -8 NIL NIL NIL) (-1173 2834359 2834961 2835593 "SYMTAB" 2836591 T SYMTAB (NIL) -8 NIL NIL NIL) (-1172 2829608 2830510 2831493 "SYMS" 2833398 T SYMS (NIL) -8 NIL NIL NIL) (-1171 2826879 2829066 2829296 "SYMPOLY" 2829413 NIL SYMPOLY (NIL T) -8 NIL NIL NIL) (-1170 2826396 2826471 2826594 "SYMFUNC" 2826791 NIL SYMFUNC (NIL T) -7 NIL NIL NIL) (-1169 2822448 2823708 2824521 "SYMBOL" 2825605 T SYMBOL (NIL) -8 NIL NIL NIL) (-1168 2815987 2817676 2819396 "SWITCH" 2820750 T SWITCH (NIL) -8 NIL NIL NIL) (-1167 2809257 2814808 2815111 "SUTS" 2815742 NIL SUTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1166 2801358 2808504 2808777 "SUPXS" 2809042 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1165 2792888 2800976 2801102 "SUP" 2801267 NIL SUP (NIL T) -8 NIL NIL NIL) (-1164 2792047 2792174 2792391 "SUPFRACF" 2792756 NIL SUPFRACF (NIL T T T T) -7 NIL NIL NIL) (-1163 2791668 2791727 2791840 "SUP2" 2791982 NIL SUP2 (NIL T T) -7 NIL NIL NIL) (-1162 2790081 2790355 2790718 "SUMRF" 2791367 NIL SUMRF (NIL T) -7 NIL NIL NIL) (-1161 2789395 2789461 2789660 "SUMFS" 2790002 NIL SUMFS (NIL T T) -7 NIL NIL NIL) (-1160 2773402 2788572 2788823 "SULS" 2789202 NIL SULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1159 2773031 2773224 2773294 "SUCHTAST" 2773354 T SUCHTAST (NIL) -8 NIL NIL NIL) (-1158 2772353 2772556 2772696 "SUCH" 2772939 NIL SUCH (NIL T T) -8 NIL NIL NIL) (-1157 2766247 2767259 2768218 "SUBSPACE" 2771441 NIL SUBSPACE (NIL NIL T) -8 NIL NIL NIL) (-1156 2765677 2765767 2765931 "SUBRESP" 2766135 NIL SUBRESP (NIL T T) -7 NIL NIL NIL) (-1155 2759046 2760342 2761653 "STTF" 2764413 NIL STTF (NIL T) -7 NIL NIL NIL) (-1154 2753219 2754339 2755486 "STTFNC" 2757946 NIL STTFNC (NIL T) -7 NIL NIL NIL) (-1153 2744534 2746401 2748195 "STTAYLOR" 2751460 NIL STTAYLOR (NIL T) -7 NIL NIL NIL) (-1152 2737778 2744398 2744481 "STRTBL" 2744486 NIL STRTBL (NIL T) -8 NIL NIL NIL) (-1151 2733169 2737733 2737764 "STRING" 2737769 T STRING (NIL) -8 NIL NIL NIL) (-1150 2728057 2732542 2732572 "STRICAT" 2732631 T STRICAT (NIL) -9 NIL 2732693 NIL) (-1149 2720867 2725676 2726287 "STREAM" 2727481 NIL STREAM (NIL T) -8 NIL NIL NIL) (-1148 2720377 2720454 2720598 "STREAM3" 2720784 NIL STREAM3 (NIL T T T) -7 NIL NIL NIL) (-1147 2719359 2719542 2719777 "STREAM2" 2720190 NIL STREAM2 (NIL T T) -7 NIL NIL NIL) (-1146 2719047 2719099 2719192 "STREAM1" 2719301 NIL STREAM1 (NIL T) -7 NIL NIL NIL) (-1145 2718063 2718244 2718475 "STINPROD" 2718863 NIL STINPROD (NIL T) -7 NIL NIL NIL) (-1144 2717641 2717825 2717855 "STEP" 2717935 T STEP (NIL) -9 NIL 2718013 NIL) (-1143 2711184 2717540 2717617 "STBL" 2717622 NIL STBL (NIL T T NIL) -8 NIL NIL NIL) (-1142 2706358 2710405 2710448 "STAGG" 2710601 NIL STAGG (NIL T) -9 NIL 2710690 NIL) (-1141 2704060 2704662 2705534 "STAGG-" 2705539 NIL STAGG- (NIL T T) -8 NIL NIL NIL) (-1140 2702255 2703830 2703922 "STACK" 2704003 NIL STACK (NIL T) -8 NIL NIL NIL) (-1139 2694980 2700396 2700852 "SREGSET" 2701885 NIL SREGSET (NIL T T T T) -8 NIL NIL NIL) (-1138 2687406 2688774 2690287 "SRDCMPK" 2693586 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1137 2680373 2684846 2684876 "SRAGG" 2686179 T SRAGG (NIL) -9 NIL 2686787 NIL) (-1136 2679390 2679645 2680024 "SRAGG-" 2680029 NIL SRAGG- (NIL T) -8 NIL NIL NIL) (-1135 2673885 2678337 2678758 "SQMATRIX" 2679016 NIL SQMATRIX (NIL NIL T) -8 NIL NIL NIL) (-1134 2667634 2670603 2671330 "SPLTREE" 2673230 NIL SPLTREE (NIL T T) -8 NIL NIL NIL) (-1133 2663624 2664290 2664936 "SPLNODE" 2667060 NIL SPLNODE (NIL T T) -8 NIL NIL NIL) (-1132 2662671 2662904 2662934 "SPFCAT" 2663378 T SPFCAT (NIL) -9 NIL NIL NIL) (-1131 2661408 2661618 2661882 "SPECOUT" 2662429 T SPECOUT (NIL) -7 NIL NIL NIL) (-1130 2653060 2654804 2654834 "SPADXPT" 2659226 T SPADXPT (NIL) -9 NIL 2661260 NIL) (-1129 2652821 2652861 2652930 "SPADPRSR" 2653013 T SPADPRSR (NIL) -7 NIL NIL NIL) (-1128 2651004 2652776 2652807 "SPADAST" 2652812 T SPADAST (NIL) -8 NIL NIL NIL) (-1127 2642975 2644722 2644765 "SPACEC" 2649138 NIL SPACEC (NIL T) -9 NIL 2650954 NIL) (-1126 2641146 2642907 2642956 "SPACE3" 2642961 NIL SPACE3 (NIL T) -8 NIL NIL NIL) (-1125 2639898 2640069 2640360 "SORTPAK" 2640951 NIL SORTPAK (NIL T T) -7 NIL NIL NIL) (-1124 2637948 2638251 2638670 "SOLVETRA" 2639562 NIL SOLVETRA (NIL T) -7 NIL NIL NIL) (-1123 2636959 2637181 2637455 "SOLVESER" 2637721 NIL SOLVESER (NIL T) -7 NIL NIL NIL) (-1122 2632179 2633060 2634062 "SOLVERAD" 2636011 NIL SOLVERAD (NIL T) -7 NIL NIL NIL) (-1121 2627994 2628603 2629332 "SOLVEFOR" 2631546 NIL SOLVEFOR (NIL T T) -7 NIL NIL NIL) (-1120 2622291 2627343 2627440 "SNTSCAT" 2627445 NIL SNTSCAT (NIL T T T T) -9 NIL 2627515 NIL) (-1119 2616434 2620614 2621005 "SMTS" 2621981 NIL SMTS (NIL T T T) -8 NIL NIL NIL) (-1118 2610884 2616322 2616399 "SMP" 2616404 NIL SMP (NIL T T) -8 NIL NIL NIL) (-1117 2609043 2609344 2609742 "SMITH" 2610581 NIL SMITH (NIL T T T T) -7 NIL NIL NIL) (-1116 2601938 2606094 2606197 "SMATCAT" 2607548 NIL SMATCAT (NIL NIL T T T) -9 NIL 2608098 NIL) (-1115 2598878 2599701 2600879 "SMATCAT-" 2600884 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL NIL) (-1114 2596591 2598114 2598157 "SKAGG" 2598418 NIL SKAGG (NIL T) -9 NIL 2598553 NIL) (-1113 2592933 2596007 2596202 "SINT" 2596389 T SINT (NIL) -8 NIL NIL 2596562) (-1112 2592705 2592743 2592809 "SIMPAN" 2592889 T SIMPAN (NIL) -7 NIL NIL NIL) (-1111 2592012 2592240 2592380 "SIG" 2592587 T SIG (NIL) -8 NIL NIL NIL) (-1110 2590850 2591071 2591346 "SIGNRF" 2591771 NIL SIGNRF (NIL T) -7 NIL NIL NIL) (-1109 2589655 2589806 2590097 "SIGNEF" 2590679 NIL SIGNEF (NIL T T) -7 NIL NIL NIL) (-1108 2588988 2589238 2589362 "SIGAST" 2589553 T SIGAST (NIL) -8 NIL NIL NIL) (-1107 2586678 2587132 2587638 "SHP" 2588529 NIL SHP (NIL T NIL) -7 NIL NIL NIL) (-1106 2580584 2586579 2586655 "SHDP" 2586660 NIL SHDP (NIL NIL NIL T) -8 NIL NIL NIL) (-1105 2580183 2580349 2580379 "SGROUP" 2580472 T SGROUP (NIL) -9 NIL 2580534 NIL) (-1104 2580041 2580067 2580140 "SGROUP-" 2580145 NIL SGROUP- (NIL T) -8 NIL NIL NIL) (-1103 2576877 2577574 2578297 "SGCF" 2579340 T SGCF (NIL) -7 NIL NIL NIL) (-1102 2571272 2576324 2576421 "SFRTCAT" 2576426 NIL SFRTCAT (NIL T T T T) -9 NIL 2576465 NIL) (-1101 2564696 2565711 2566847 "SFRGCD" 2570255 NIL SFRGCD (NIL T T T T T) -7 NIL NIL NIL) (-1100 2557824 2558895 2560081 "SFQCMPK" 2563629 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1099 2557446 2557535 2557645 "SFORT" 2557765 NIL SFORT (NIL T T) -8 NIL NIL NIL) (-1098 2556591 2557286 2557407 "SEXOF" 2557412 NIL SEXOF (NIL T T T T T) -8 NIL NIL NIL) (-1097 2555725 2556472 2556540 "SEX" 2556545 T SEX (NIL) -8 NIL NIL NIL) (-1096 2551264 2551953 2552048 "SEXCAT" 2554985 NIL SEXCAT (NIL T T T T T) -9 NIL 2555563 NIL) (-1095 2548444 2551198 2551246 "SET" 2551251 NIL SET (NIL T) -8 NIL NIL NIL) (-1094 2546695 2547157 2547462 "SETMN" 2548185 NIL SETMN (NIL NIL NIL) -8 NIL NIL NIL) (-1093 2546301 2546427 2546457 "SETCAT" 2546574 T SETCAT (NIL) -9 NIL 2546659 NIL) (-1092 2546081 2546133 2546232 "SETCAT-" 2546237 NIL SETCAT- (NIL T) -8 NIL NIL NIL) (-1091 2542468 2544542 2544585 "SETAGG" 2545455 NIL SETAGG (NIL T) -9 NIL 2545795 NIL) (-1090 2541926 2542042 2542279 "SETAGG-" 2542284 NIL SETAGG- (NIL T T) -8 NIL NIL NIL) (-1089 2541396 2541622 2541723 "SEQAST" 2541847 T SEQAST (NIL) -8 NIL NIL NIL) (-1088 2540595 2540889 2540950 "SEGXCAT" 2541236 NIL SEGXCAT (NIL T T) -9 NIL 2541356 NIL) (-1087 2539651 2540261 2540443 "SEG" 2540448 NIL SEG (NIL T) -8 NIL NIL NIL) (-1086 2538630 2538844 2538887 "SEGCAT" 2539409 NIL SEGCAT (NIL T) -9 NIL 2539630 NIL) (-1085 2537679 2538009 2538209 "SEGBIND" 2538465 NIL SEGBIND (NIL T) -8 NIL NIL NIL) (-1084 2537300 2537359 2537472 "SEGBIND2" 2537614 NIL SEGBIND2 (NIL T T) -7 NIL NIL NIL) (-1083 2536901 2537101 2537178 "SEGAST" 2537245 T SEGAST (NIL) -8 NIL NIL NIL) (-1082 2536120 2536246 2536450 "SEG2" 2536745 NIL SEG2 (NIL T T) -7 NIL NIL NIL) (-1081 2535557 2536055 2536102 "SDVAR" 2536107 NIL SDVAR (NIL T) -8 NIL NIL NIL) (-1080 2527847 2535327 2535457 "SDPOL" 2535462 NIL SDPOL (NIL T) -8 NIL NIL NIL) (-1079 2526440 2526706 2527025 "SCPKG" 2527562 NIL SCPKG (NIL T) -7 NIL NIL NIL) (-1078 2525576 2525756 2525956 "SCOPE" 2526262 T SCOPE (NIL) -8 NIL NIL NIL) (-1077 2524797 2524930 2525109 "SCACHE" 2525431 NIL SCACHE (NIL T) -7 NIL NIL NIL) (-1076 2524469 2524629 2524659 "SASTCAT" 2524664 T SASTCAT (NIL) -9 NIL 2524677 NIL) (-1075 2523983 2524304 2524380 "SAOS" 2524415 T SAOS (NIL) -8 NIL NIL NIL) (-1074 2523548 2523583 2523756 "SAERFFC" 2523942 NIL SAERFFC (NIL T T T) -7 NIL NIL NIL) (-1073 2517522 2523445 2523525 "SAE" 2523530 NIL SAE (NIL T T NIL) -8 NIL NIL NIL) (-1072 2517115 2517150 2517309 "SAEFACT" 2517481 NIL SAEFACT (NIL T T T) -7 NIL NIL NIL) (-1071 2515436 2515750 2516151 "RURPK" 2516781 NIL RURPK (NIL T NIL) -7 NIL NIL NIL) (-1070 2514072 2514351 2514663 "RULESET" 2515270 NIL RULESET (NIL T T T) -8 NIL NIL NIL) (-1069 2511259 2511762 2512227 "RULE" 2513753 NIL RULE (NIL T T T) -8 NIL NIL NIL) (-1068 2510898 2511053 2511136 "RULECOLD" 2511211 NIL RULECOLD (NIL NIL) -8 NIL NIL NIL) (-1067 2510396 2510615 2510709 "RSTRCAST" 2510826 T RSTRCAST (NIL) -8 NIL NIL NIL) (-1066 2505245 2506039 2506959 "RSETGCD" 2509595 NIL RSETGCD (NIL T T T T T) -7 NIL NIL NIL) (-1065 2494502 2499554 2499651 "RSETCAT" 2503770 NIL RSETCAT (NIL T T T T) -9 NIL 2504867 NIL) (-1064 2492429 2492968 2493792 "RSETCAT-" 2493797 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1063 2484816 2486191 2487711 "RSDCMPK" 2491028 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1062 2482821 2483262 2483336 "RRCC" 2484422 NIL RRCC (NIL T T) -9 NIL 2484766 NIL) (-1061 2482172 2482346 2482625 "RRCC-" 2482630 NIL RRCC- (NIL T T T) -8 NIL NIL NIL) (-1060 2481642 2481868 2481969 "RPTAST" 2482093 T RPTAST (NIL) -8 NIL NIL NIL) (-1059 2455648 2465235 2465302 "RPOLCAT" 2475966 NIL RPOLCAT (NIL T T T) -9 NIL 2479125 NIL) (-1058 2447149 2449486 2452608 "RPOLCAT-" 2452613 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL NIL) (-1057 2438196 2445360 2445842 "ROUTINE" 2446689 T ROUTINE (NIL) -8 NIL NIL NIL) (-1056 2435029 2437822 2437962 "ROMAN" 2438078 T ROMAN (NIL) -8 NIL NIL NIL) (-1055 2433304 2433889 2434149 "ROIRC" 2434834 NIL ROIRC (NIL T T) -8 NIL NIL NIL) (-1054 2429697 2431940 2431970 "RNS" 2432274 T RNS (NIL) -9 NIL 2432547 NIL) (-1053 2428206 2428589 2429123 "RNS-" 2429198 NIL RNS- (NIL T) -8 NIL NIL NIL) (-1052 2427655 2428037 2428067 "RNG" 2428072 T RNG (NIL) -9 NIL 2428093 NIL) (-1051 2427047 2427409 2427452 "RMODULE" 2427514 NIL RMODULE (NIL T) -9 NIL 2427556 NIL) (-1050 2425883 2425977 2426313 "RMCAT2" 2426948 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL NIL) (-1049 2422760 2425229 2425526 "RMATRIX" 2425645 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL NIL) (-1048 2415702 2417936 2418051 "RMATCAT" 2421410 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2422392 NIL) (-1047 2415077 2415224 2415531 "RMATCAT-" 2415536 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL NIL) (-1046 2414644 2414719 2414847 "RINTERP" 2414996 NIL RINTERP (NIL NIL T) -7 NIL NIL NIL) (-1045 2413777 2414297 2414327 "RING" 2414383 T RING (NIL) -9 NIL 2414469 NIL) (-1044 2413569 2413613 2413710 "RING-" 2413715 NIL RING- (NIL T) -8 NIL NIL NIL) (-1043 2412410 2412647 2412905 "RIDIST" 2413333 T RIDIST (NIL) -7 NIL NIL NIL) (-1042 2403726 2411878 2412084 "RGCHAIN" 2412258 NIL RGCHAIN (NIL T NIL) -8 NIL NIL NIL) (-1041 2403102 2403482 2403523 "RGBCSPC" 2403581 NIL RGBCSPC (NIL T) -9 NIL 2403633 NIL) (-1040 2402286 2402641 2402682 "RGBCMDL" 2402914 NIL RGBCMDL (NIL T) -9 NIL 2403028 NIL) (-1039 2399280 2399894 2400564 "RF" 2401650 NIL RF (NIL T) -7 NIL NIL NIL) (-1038 2398926 2398989 2399092 "RFFACTOR" 2399211 NIL RFFACTOR (NIL T) -7 NIL NIL NIL) (-1037 2398651 2398686 2398783 "RFFACT" 2398885 NIL RFFACT (NIL T) -7 NIL NIL NIL) (-1036 2396768 2397132 2397514 "RFDIST" 2398291 T RFDIST (NIL) -7 NIL NIL NIL) (-1035 2396221 2396313 2396476 "RETSOL" 2396670 NIL RETSOL (NIL T T) -7 NIL NIL NIL) (-1034 2395857 2395937 2395980 "RETRACT" 2396113 NIL RETRACT (NIL T) -9 NIL 2396200 NIL) (-1033 2395706 2395731 2395818 "RETRACT-" 2395823 NIL RETRACT- (NIL T T) -8 NIL NIL NIL) (-1032 2395335 2395528 2395598 "RETAST" 2395658 T RETAST (NIL) -8 NIL NIL NIL) (-1031 2388189 2394988 2395115 "RESULT" 2395230 T RESULT (NIL) -8 NIL NIL NIL) (-1030 2386815 2387458 2387657 "RESRING" 2388092 NIL RESRING (NIL T T T T NIL) -8 NIL NIL NIL) (-1029 2386451 2386500 2386598 "RESLATC" 2386752 NIL RESLATC (NIL T) -7 NIL NIL NIL) (-1028 2386157 2386191 2386298 "REPSQ" 2386410 NIL REPSQ (NIL T) -7 NIL NIL NIL) (-1027 2383579 2384159 2384761 "REP" 2385577 T REP (NIL) -7 NIL NIL NIL) (-1026 2383277 2383311 2383422 "REPDB" 2383538 NIL REPDB (NIL T) -7 NIL NIL NIL) (-1025 2377187 2378566 2379789 "REP2" 2382089 NIL REP2 (NIL T) -7 NIL NIL NIL) (-1024 2373564 2374245 2375053 "REP1" 2376414 NIL REP1 (NIL T) -7 NIL NIL NIL) (-1023 2366290 2371705 2372161 "REGSET" 2373194 NIL REGSET (NIL T T T T) -8 NIL NIL NIL) (-1022 2365103 2365438 2365688 "REF" 2366075 NIL REF (NIL T) -8 NIL NIL NIL) (-1021 2364480 2364583 2364750 "REDORDER" 2364987 NIL REDORDER (NIL T T) -7 NIL NIL NIL) (-1020 2360485 2363693 2363920 "RECLOS" 2364308 NIL RECLOS (NIL T) -8 NIL NIL NIL) (-1019 2359537 2359718 2359933 "REALSOLV" 2360292 T REALSOLV (NIL) -7 NIL NIL NIL) (-1018 2359383 2359424 2359454 "REAL" 2359459 T REAL (NIL) -9 NIL 2359494 NIL) (-1017 2355866 2356668 2357552 "REAL0Q" 2358548 NIL REAL0Q (NIL T) -7 NIL NIL NIL) (-1016 2351467 2352455 2353516 "REAL0" 2354847 NIL REAL0 (NIL T) -7 NIL NIL NIL) (-1015 2350965 2351184 2351278 "RDUCEAST" 2351395 T RDUCEAST (NIL) -8 NIL NIL NIL) (-1014 2350370 2350442 2350649 "RDIV" 2350887 NIL RDIV (NIL T T T T T) -7 NIL NIL NIL) (-1013 2349438 2349612 2349825 "RDIST" 2350192 NIL RDIST (NIL T) -7 NIL NIL NIL) (-1012 2348035 2348322 2348694 "RDETRS" 2349146 NIL RDETRS (NIL T T) -7 NIL NIL NIL) (-1011 2345847 2346301 2346839 "RDETR" 2347577 NIL RDETR (NIL T T) -7 NIL NIL NIL) (-1010 2344458 2344736 2345140 "RDEEFS" 2345563 NIL RDEEFS (NIL T T) -7 NIL NIL NIL) (-1009 2342953 2343259 2343691 "RDEEF" 2344146 NIL RDEEF (NIL T T) -7 NIL NIL NIL) (-1008 2337214 2340089 2340119 "RCFIELD" 2341414 T RCFIELD (NIL) -9 NIL 2342144 NIL) (-1007 2335278 2335782 2336478 "RCFIELD-" 2336553 NIL RCFIELD- (NIL T) -8 NIL NIL NIL) (-1006 2331594 2333379 2333422 "RCAGG" 2334506 NIL RCAGG (NIL T) -9 NIL 2334971 NIL) (-1005 2331222 2331316 2331479 "RCAGG-" 2331484 NIL RCAGG- (NIL T T) -8 NIL NIL NIL) (-1004 2330557 2330669 2330834 "RATRET" 2331106 NIL RATRET (NIL T) -7 NIL NIL NIL) (-1003 2330110 2330177 2330298 "RATFACT" 2330485 NIL RATFACT (NIL T) -7 NIL NIL NIL) (-1002 2329418 2329538 2329690 "RANDSRC" 2329980 T RANDSRC (NIL) -7 NIL NIL NIL) (-1001 2329152 2329196 2329269 "RADUTIL" 2329367 T RADUTIL (NIL) -7 NIL NIL NIL) (-1000 2322305 2327985 2328295 "RADIX" 2328876 NIL RADIX (NIL NIL) -8 NIL NIL NIL) (-999 2313962 2322149 2322277 "RADFF" 2322282 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL NIL) (-998 2313614 2313689 2313717 "RADCAT" 2313874 T RADCAT (NIL) -9 NIL NIL NIL) (-997 2313399 2313447 2313544 "RADCAT-" 2313549 NIL RADCAT- (NIL T) -8 NIL NIL NIL) (-996 2311550 2313174 2313263 "QUEUE" 2313343 NIL QUEUE (NIL T) -8 NIL NIL NIL) (-995 2308126 2311487 2311532 "QUAT" 2311537 NIL QUAT (NIL T) -8 NIL NIL NIL) (-994 2307764 2307807 2307934 "QUATCT2" 2308077 NIL QUATCT2 (NIL T T T T) -7 NIL NIL NIL) (-993 2301511 2304813 2304853 "QUATCAT" 2305633 NIL QUATCAT (NIL T) -9 NIL 2306399 NIL) (-992 2297655 2298692 2300079 "QUATCAT-" 2300173 NIL QUATCAT- (NIL T T) -8 NIL NIL NIL) (-991 2295175 2296739 2296780 "QUAGG" 2297155 NIL QUAGG (NIL T) -9 NIL 2297330 NIL) (-990 2294807 2295000 2295068 "QQUTAST" 2295127 T QQUTAST (NIL) -8 NIL NIL NIL) (-989 2293732 2294205 2294377 "QFORM" 2294679 NIL QFORM (NIL NIL T) -8 NIL NIL NIL) (-988 2284944 2290149 2290189 "QFCAT" 2290847 NIL QFCAT (NIL T) -9 NIL 2291848 NIL) (-987 2280516 2281717 2283308 "QFCAT-" 2283402 NIL QFCAT- (NIL T T) -8 NIL NIL NIL) (-986 2280154 2280197 2280324 "QFCAT2" 2280467 NIL QFCAT2 (NIL T T T T) -7 NIL NIL NIL) (-985 2279614 2279724 2279854 "QEQUAT" 2280044 T QEQUAT (NIL) -8 NIL NIL NIL) (-984 2272762 2273833 2275017 "QCMPACK" 2278547 NIL QCMPACK (NIL T T T T T) -7 NIL NIL NIL) (-983 2270338 2270759 2271187 "QALGSET" 2272417 NIL QALGSET (NIL T T T T) -8 NIL NIL NIL) (-982 2269583 2269757 2269989 "QALGSET2" 2270158 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL NIL) (-981 2268274 2268497 2268814 "PWFFINTB" 2269356 NIL PWFFINTB (NIL T T T T) -7 NIL NIL NIL) (-980 2266456 2266624 2266978 "PUSHVAR" 2268088 NIL PUSHVAR (NIL T T T T) -7 NIL NIL NIL) (-979 2262374 2263428 2263469 "PTRANFN" 2265353 NIL PTRANFN (NIL T) -9 NIL NIL NIL) (-978 2260776 2261067 2261389 "PTPACK" 2262085 NIL PTPACK (NIL T) -7 NIL NIL NIL) (-977 2260408 2260465 2260574 "PTFUNC2" 2260713 NIL PTFUNC2 (NIL T T) -7 NIL NIL NIL) (-976 2254935 2259280 2259321 "PTCAT" 2259617 NIL PTCAT (NIL T) -9 NIL 2259770 NIL) (-975 2254593 2254628 2254752 "PSQFR" 2254894 NIL PSQFR (NIL T T T T) -7 NIL NIL NIL) (-974 2253188 2253486 2253820 "PSEUDLIN" 2254291 NIL PSEUDLIN (NIL T) -7 NIL NIL NIL) (-973 2239958 2242322 2244646 "PSETPK" 2250948 NIL PSETPK (NIL T T T T) -7 NIL NIL NIL) (-972 2233002 2235716 2235812 "PSETCAT" 2238833 NIL PSETCAT (NIL T T T T) -9 NIL 2239647 NIL) (-971 2230838 2231472 2232293 "PSETCAT-" 2232298 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-970 2230187 2230352 2230380 "PSCURVE" 2230648 T PSCURVE (NIL) -9 NIL 2230815 NIL) (-969 2226543 2228025 2228090 "PSCAT" 2228934 NIL PSCAT (NIL T T T) -9 NIL 2229174 NIL) (-968 2225606 2225822 2226222 "PSCAT-" 2226227 NIL PSCAT- (NIL T T T T) -8 NIL NIL NIL) (-967 2224338 2224971 2225176 "PRTITION" 2225421 T PRTITION (NIL) -8 NIL NIL NIL) (-966 2223840 2224059 2224151 "PRTDAST" 2224266 T PRTDAST (NIL) -8 NIL NIL NIL) (-965 2212938 2215144 2217332 "PRS" 2221702 NIL PRS (NIL T T) -7 NIL NIL NIL) (-964 2210796 2212288 2212328 "PRQAGG" 2212511 NIL PRQAGG (NIL T) -9 NIL 2212613 NIL) (-963 2210182 2210411 2210439 "PROPLOG" 2210624 T PROPLOG (NIL) -9 NIL 2210746 NIL) (-962 2207352 2207996 2208460 "PROPFRML" 2209750 NIL PROPFRML (NIL T) -8 NIL NIL NIL) (-961 2206812 2206922 2207052 "PROPERTY" 2207242 T PROPERTY (NIL) -8 NIL NIL NIL) (-960 2200897 2204978 2205798 "PRODUCT" 2206038 NIL PRODUCT (NIL T T) -8 NIL NIL NIL) (-959 2198210 2200355 2200589 "PR" 2200708 NIL PR (NIL T T) -8 NIL NIL NIL) (-958 2198006 2198038 2198097 "PRINT" 2198171 T PRINT (NIL) -7 NIL NIL NIL) (-957 2197346 2197463 2197615 "PRIMES" 2197886 NIL PRIMES (NIL T) -7 NIL NIL NIL) (-956 2195411 2195812 2196278 "PRIMELT" 2196925 NIL PRIMELT (NIL T) -7 NIL NIL NIL) (-955 2195140 2195189 2195217 "PRIMCAT" 2195341 T PRIMCAT (NIL) -9 NIL NIL NIL) (-954 2191301 2195078 2195123 "PRIMARR" 2195128 NIL PRIMARR (NIL T) -8 NIL NIL NIL) (-953 2190308 2190486 2190714 "PRIMARR2" 2191119 NIL PRIMARR2 (NIL T T) -7 NIL NIL NIL) (-952 2189951 2190007 2190118 "PREASSOC" 2190246 NIL PREASSOC (NIL T T) -7 NIL NIL NIL) (-951 2189426 2189559 2189587 "PPCURVE" 2189792 T PPCURVE (NIL) -9 NIL 2189928 NIL) (-950 2189048 2189221 2189304 "PORTNUM" 2189363 T PORTNUM (NIL) -8 NIL NIL NIL) (-949 2186407 2186806 2187398 "POLYROOT" 2188629 NIL POLYROOT (NIL T T T T T) -7 NIL NIL NIL) (-948 2180352 2186011 2186171 "POLY" 2186280 NIL POLY (NIL T) -8 NIL NIL NIL) (-947 2179735 2179793 2180027 "POLYLIFT" 2180288 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL NIL) (-946 2176010 2176459 2177088 "POLYCATQ" 2179280 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL NIL) (-945 2162827 2168185 2168250 "POLYCAT" 2171764 NIL POLYCAT (NIL T T T) -9 NIL 2173692 NIL) (-944 2156277 2158138 2160522 "POLYCAT-" 2160527 NIL POLYCAT- (NIL T T T T) -8 NIL NIL NIL) (-943 2155864 2155932 2156052 "POLY2UP" 2156203 NIL POLY2UP (NIL NIL T) -7 NIL NIL NIL) (-942 2155496 2155553 2155662 "POLY2" 2155801 NIL POLY2 (NIL T T) -7 NIL NIL NIL) (-941 2154181 2154420 2154696 "POLUTIL" 2155270 NIL POLUTIL (NIL T T) -7 NIL NIL NIL) (-940 2152536 2152813 2153144 "POLTOPOL" 2153903 NIL POLTOPOL (NIL NIL T) -7 NIL NIL NIL) (-939 2148054 2152472 2152518 "POINT" 2152523 NIL POINT (NIL T) -8 NIL NIL NIL) (-938 2146241 2146598 2146973 "PNTHEORY" 2147699 T PNTHEORY (NIL) -7 NIL NIL NIL) (-937 2144660 2144957 2145369 "PMTOOLS" 2145939 NIL PMTOOLS (NIL T T T) -7 NIL NIL NIL) (-936 2144253 2144331 2144448 "PMSYM" 2144576 NIL PMSYM (NIL T) -7 NIL NIL NIL) (-935 2143763 2143832 2144006 "PMQFCAT" 2144178 NIL PMQFCAT (NIL T T T) -7 NIL NIL NIL) (-934 2143118 2143228 2143384 "PMPRED" 2143640 NIL PMPRED (NIL T) -7 NIL NIL NIL) (-933 2142514 2142600 2142761 "PMPREDFS" 2143019 NIL PMPREDFS (NIL T T T) -7 NIL NIL NIL) (-932 2141157 2141365 2141750 "PMPLCAT" 2142276 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL NIL) (-931 2140689 2140768 2140920 "PMLSAGG" 2141072 NIL PMLSAGG (NIL T T T) -7 NIL NIL NIL) (-930 2140164 2140240 2140421 "PMKERNEL" 2140607 NIL PMKERNEL (NIL T T) -7 NIL NIL NIL) (-929 2139781 2139856 2139969 "PMINS" 2140083 NIL PMINS (NIL T) -7 NIL NIL NIL) (-928 2139209 2139278 2139494 "PMFS" 2139706 NIL PMFS (NIL T T T) -7 NIL NIL NIL) (-927 2138437 2138555 2138760 "PMDOWN" 2139086 NIL PMDOWN (NIL T T T) -7 NIL NIL NIL) (-926 2137600 2137759 2137941 "PMASS" 2138275 T PMASS (NIL) -7 NIL NIL NIL) (-925 2136874 2136985 2137148 "PMASSFS" 2137486 NIL PMASSFS (NIL T T) -7 NIL NIL NIL) (-924 2136529 2136597 2136691 "PLOTTOOL" 2136800 T PLOTTOOL (NIL) -7 NIL NIL NIL) (-923 2131151 2132340 2133488 "PLOT" 2135401 T PLOT (NIL) -8 NIL NIL NIL) (-922 2126965 2127999 2128920 "PLOT3D" 2130250 T PLOT3D (NIL) -8 NIL NIL NIL) (-921 2125877 2126054 2126289 "PLOT1" 2126769 NIL PLOT1 (NIL T) -7 NIL NIL NIL) (-920 2101271 2105943 2110794 "PLEQN" 2121143 NIL PLEQN (NIL T T T T) -7 NIL NIL NIL) (-919 2100589 2100711 2100891 "PINTERP" 2101136 NIL PINTERP (NIL NIL T) -7 NIL NIL NIL) (-918 2100282 2100329 2100432 "PINTERPA" 2100536 NIL PINTERPA (NIL T T) -7 NIL NIL NIL) (-917 2099530 2100051 2100138 "PI" 2100178 T PI (NIL) -8 NIL NIL 2100245) (-916 2097927 2098868 2098896 "PID" 2099078 T PID (NIL) -9 NIL 2099212 NIL) (-915 2097652 2097689 2097777 "PICOERCE" 2097884 NIL PICOERCE (NIL T) -7 NIL NIL NIL) (-914 2096972 2097111 2097287 "PGROEB" 2097508 NIL PGROEB (NIL T) -7 NIL NIL NIL) (-913 2092559 2093373 2094278 "PGE" 2096087 T PGE (NIL) -7 NIL NIL NIL) (-912 2090683 2090929 2091295 "PGCD" 2092276 NIL PGCD (NIL T T T T) -7 NIL NIL NIL) (-911 2090021 2090124 2090285 "PFRPAC" 2090567 NIL PFRPAC (NIL T) -7 NIL NIL NIL) (-910 2086701 2088569 2088922 "PFR" 2089700 NIL PFR (NIL T) -8 NIL NIL NIL) (-909 2085090 2085334 2085659 "PFOTOOLS" 2086448 NIL PFOTOOLS (NIL T T) -7 NIL NIL NIL) (-908 2083623 2083862 2084213 "PFOQ" 2084847 NIL PFOQ (NIL T T T) -7 NIL NIL NIL) (-907 2082096 2082308 2082671 "PFO" 2083407 NIL PFO (NIL T T T T T) -7 NIL NIL NIL) (-906 2078684 2081985 2082054 "PF" 2082059 NIL PF (NIL NIL) -8 NIL NIL NIL) (-905 2076118 2077355 2077383 "PFECAT" 2077968 T PFECAT (NIL) -9 NIL 2078352 NIL) (-904 2075563 2075717 2075931 "PFECAT-" 2075936 NIL PFECAT- (NIL T) -8 NIL NIL NIL) (-903 2074167 2074418 2074719 "PFBRU" 2075312 NIL PFBRU (NIL T T) -7 NIL NIL NIL) (-902 2072034 2072385 2072817 "PFBR" 2073818 NIL PFBR (NIL T T T T) -7 NIL NIL NIL) (-901 2067950 2069410 2070086 "PERM" 2071391 NIL PERM (NIL T) -8 NIL NIL NIL) (-900 2063216 2064157 2065027 "PERMGRP" 2067113 NIL PERMGRP (NIL T) -8 NIL NIL NIL) (-899 2061348 2062279 2062320 "PERMCAT" 2062766 NIL PERMCAT (NIL T) -9 NIL 2063071 NIL) (-898 2061001 2061042 2061166 "PERMAN" 2061301 NIL PERMAN (NIL NIL T) -7 NIL NIL NIL) (-897 2058537 2060666 2060788 "PENDTREE" 2060912 NIL PENDTREE (NIL T) -8 NIL NIL NIL) (-896 2056630 2057364 2057405 "PDRING" 2058062 NIL PDRING (NIL T) -9 NIL 2058348 NIL) (-895 2055733 2055951 2056313 "PDRING-" 2056318 NIL PDRING- (NIL T T) -8 NIL NIL NIL) (-894 2052975 2053726 2054394 "PDEPROB" 2055085 T PDEPROB (NIL) -8 NIL NIL NIL) (-893 2050522 2051024 2051579 "PDEPACK" 2052440 T PDEPACK (NIL) -7 NIL NIL NIL) (-892 2049434 2049624 2049875 "PDECOMP" 2050321 NIL PDECOMP (NIL T T) -7 NIL NIL NIL) (-891 2047039 2047856 2047884 "PDECAT" 2048671 T PDECAT (NIL) -9 NIL 2049384 NIL) (-890 2046790 2046823 2046913 "PCOMP" 2047000 NIL PCOMP (NIL T T) -7 NIL NIL NIL) (-889 2044995 2045591 2045888 "PBWLB" 2046519 NIL PBWLB (NIL T) -8 NIL NIL NIL) (-888 2037500 2039068 2040406 "PATTERN" 2043678 NIL PATTERN (NIL T) -8 NIL NIL NIL) (-887 2037132 2037189 2037298 "PATTERN2" 2037437 NIL PATTERN2 (NIL T T) -7 NIL NIL NIL) (-886 2034889 2035277 2035734 "PATTERN1" 2036721 NIL PATTERN1 (NIL T T) -7 NIL NIL NIL) (-885 2032284 2032838 2033319 "PATRES" 2034454 NIL PATRES (NIL T T) -8 NIL NIL NIL) (-884 2031848 2031915 2032047 "PATRES2" 2032211 NIL PATRES2 (NIL T T T) -7 NIL NIL NIL) (-883 2029731 2030136 2030543 "PATMATCH" 2031515 NIL PATMATCH (NIL T T T) -7 NIL NIL NIL) (-882 2029267 2029450 2029491 "PATMAB" 2029598 NIL PATMAB (NIL T) -9 NIL 2029681 NIL) (-881 2027812 2028121 2028379 "PATLRES" 2029072 NIL PATLRES (NIL T T T) -8 NIL NIL NIL) (-880 2027358 2027481 2027522 "PATAB" 2027527 NIL PATAB (NIL T) -9 NIL 2027699 NIL) (-879 2024839 2025371 2025944 "PARTPERM" 2026805 T PARTPERM (NIL) -7 NIL NIL NIL) (-878 2024460 2024523 2024625 "PARSURF" 2024770 NIL PARSURF (NIL T) -8 NIL NIL NIL) (-877 2024092 2024149 2024258 "PARSU2" 2024397 NIL PARSU2 (NIL T T) -7 NIL NIL NIL) (-876 2023856 2023896 2023963 "PARSER" 2024045 T PARSER (NIL) -7 NIL NIL NIL) (-875 2023477 2023540 2023642 "PARSCURV" 2023787 NIL PARSCURV (NIL T) -8 NIL NIL NIL) (-874 2023109 2023166 2023275 "PARSC2" 2023414 NIL PARSC2 (NIL T T) -7 NIL NIL NIL) (-873 2022748 2022806 2022903 "PARPCURV" 2023045 NIL PARPCURV (NIL T) -8 NIL NIL NIL) (-872 2022380 2022437 2022546 "PARPC2" 2022685 NIL PARPC2 (NIL T T) -7 NIL NIL NIL) (-871 2021900 2021986 2022105 "PAN2EXPR" 2022281 T PAN2EXPR (NIL) -7 NIL NIL NIL) (-870 2020706 2021021 2021249 "PALETTE" 2021692 T PALETTE (NIL) -8 NIL NIL NIL) (-869 2019174 2019711 2020071 "PAIR" 2020392 NIL PAIR (NIL T T) -8 NIL NIL NIL) (-868 2013080 2018433 2018627 "PADICRC" 2019029 NIL PADICRC (NIL NIL T) -8 NIL NIL NIL) (-867 2006344 2012426 2012610 "PADICRAT" 2012928 NIL PADICRAT (NIL NIL) -8 NIL NIL NIL) (-866 2004694 2006281 2006326 "PADIC" 2006331 NIL PADIC (NIL NIL) -8 NIL NIL NIL) (-865 2001904 2003434 2003474 "PADICCT" 2004055 NIL PADICCT (NIL NIL) -9 NIL 2004337 NIL) (-864 2000861 2001061 2001329 "PADEPAC" 2001691 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL NIL) (-863 2000073 2000206 2000412 "PADE" 2000723 NIL PADE (NIL T T T) -7 NIL NIL NIL) (-862 1998495 1999281 1999561 "OWP" 1999877 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-861 1998015 1998201 1998298 "OVERSET" 1998418 T OVERSET (NIL) -8 NIL NIL NIL) (-860 1997088 1997620 1997792 "OVAR" 1997883 NIL OVAR (NIL NIL) -8 NIL NIL NIL) (-859 1996352 1996473 1996634 "OUT" 1996947 T OUT (NIL) -7 NIL NIL NIL) (-858 1985259 1987461 1989661 "OUTFORM" 1994172 T OUTFORM (NIL) -8 NIL NIL NIL) (-857 1984595 1984856 1984983 "OUTBFILE" 1985152 T OUTBFILE (NIL) -8 NIL NIL NIL) (-856 1983902 1984067 1984095 "OUTBCON" 1984413 T OUTBCON (NIL) -9 NIL 1984579 NIL) (-855 1983503 1983615 1983772 "OUTBCON-" 1983777 NIL OUTBCON- (NIL T) -8 NIL NIL NIL) (-854 1982911 1983232 1983321 "OSI" 1983434 T OSI (NIL) -8 NIL NIL NIL) (-853 1982467 1982779 1982807 "OSGROUP" 1982812 T OSGROUP (NIL) -9 NIL 1982834 NIL) (-852 1981212 1981439 1981724 "ORTHPOL" 1982214 NIL ORTHPOL (NIL T) -7 NIL NIL NIL) (-851 1978798 1981047 1981168 "OREUP" 1981173 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL NIL) (-850 1976236 1978489 1978616 "ORESUP" 1978740 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL NIL) (-849 1973764 1974264 1974825 "OREPCTO" 1975725 NIL OREPCTO (NIL T T) -7 NIL NIL NIL) (-848 1967588 1969755 1969796 "OREPCAT" 1972144 NIL OREPCAT (NIL T) -9 NIL 1973248 NIL) (-847 1964735 1965517 1966575 "OREPCAT-" 1966580 NIL OREPCAT- (NIL T T) -8 NIL NIL NIL) (-846 1963912 1964184 1964212 "ORDSET" 1964521 T ORDSET (NIL) -9 NIL 1964685 NIL) (-845 1963431 1963553 1963746 "ORDSET-" 1963751 NIL ORDSET- (NIL T) -8 NIL NIL NIL) (-844 1962065 1962822 1962850 "ORDRING" 1963052 T ORDRING (NIL) -9 NIL 1963177 NIL) (-843 1961710 1961804 1961948 "ORDRING-" 1961953 NIL ORDRING- (NIL T) -8 NIL NIL NIL) (-842 1961116 1961553 1961581 "ORDMON" 1961586 T ORDMON (NIL) -9 NIL 1961607 NIL) (-841 1960278 1960425 1960620 "ORDFUNS" 1960965 NIL ORDFUNS (NIL NIL T) -7 NIL NIL NIL) (-840 1959642 1960035 1960063 "ORDFIN" 1960128 T ORDFIN (NIL) -9 NIL 1960202 NIL) (-839 1956234 1958228 1958637 "ORDCOMP" 1959266 NIL ORDCOMP (NIL T) -8 NIL NIL NIL) (-838 1955500 1955627 1955813 "ORDCOMP2" 1956094 NIL ORDCOMP2 (NIL T T) -7 NIL NIL NIL) (-837 1952108 1952991 1953805 "OPTPROB" 1954706 T OPTPROB (NIL) -8 NIL NIL NIL) (-836 1948910 1949549 1950253 "OPTPACK" 1951424 T OPTPACK (NIL) -7 NIL NIL NIL) (-835 1946623 1947363 1947391 "OPTCAT" 1948210 T OPTCAT (NIL) -9 NIL 1948860 NIL) (-834 1946066 1946300 1946405 "OPSIG" 1946538 T OPSIG (NIL) -8 NIL NIL NIL) (-833 1945834 1945873 1945939 "OPQUERY" 1946020 T OPQUERY (NIL) -7 NIL NIL NIL) (-832 1943000 1944145 1944649 "OP" 1945363 NIL OP (NIL T) -8 NIL NIL NIL) (-831 1942535 1942706 1942747 "OPERCAT" 1942882 NIL OPERCAT (NIL T) -9 NIL 1942950 NIL) (-830 1942381 1942408 1942494 "OPERCAT-" 1942499 NIL OPERCAT- (NIL T T) -8 NIL NIL NIL) (-829 1939226 1941178 1941547 "ONECOMP" 1942045 NIL ONECOMP (NIL T) -8 NIL NIL NIL) (-828 1938531 1938646 1938820 "ONECOMP2" 1939098 NIL ONECOMP2 (NIL T T) -7 NIL NIL NIL) (-827 1937950 1938056 1938186 "OMSERVER" 1938421 T OMSERVER (NIL) -7 NIL NIL NIL) (-826 1934838 1937390 1937430 "OMSAGG" 1937491 NIL OMSAGG (NIL T) -9 NIL 1937555 NIL) (-825 1933461 1933724 1934006 "OMPKG" 1934576 T OMPKG (NIL) -7 NIL NIL NIL) (-824 1932891 1932994 1933022 "OM" 1933321 T OM (NIL) -9 NIL NIL NIL) (-823 1931473 1932440 1932609 "OMLO" 1932772 NIL OMLO (NIL T T) -8 NIL NIL NIL) (-822 1930398 1930545 1930772 "OMEXPR" 1931299 NIL OMEXPR (NIL T) -7 NIL NIL NIL) (-821 1929716 1929944 1930080 "OMERR" 1930282 T OMERR (NIL) -8 NIL NIL NIL) (-820 1928894 1929137 1929297 "OMERRK" 1929576 T OMERRK (NIL) -8 NIL NIL NIL) (-819 1928372 1928571 1928679 "OMENC" 1928806 T OMENC (NIL) -8 NIL NIL NIL) (-818 1922267 1923452 1924623 "OMDEV" 1927221 T OMDEV (NIL) -8 NIL NIL NIL) (-817 1921336 1921507 1921701 "OMCONN" 1922093 T OMCONN (NIL) -8 NIL NIL NIL) (-816 1919957 1920899 1920927 "OINTDOM" 1920932 T OINTDOM (NIL) -9 NIL 1920953 NIL) (-815 1915763 1916947 1917663 "OFMONOID" 1919273 NIL OFMONOID (NIL T) -8 NIL NIL NIL) (-814 1915201 1915700 1915745 "ODVAR" 1915750 NIL ODVAR (NIL T) -8 NIL NIL NIL) (-813 1912659 1914946 1915101 "ODR" 1915106 NIL ODR (NIL T T NIL) -8 NIL NIL NIL) (-812 1905003 1912435 1912561 "ODPOL" 1912566 NIL ODPOL (NIL T) -8 NIL NIL NIL) (-811 1898879 1904875 1904980 "ODP" 1904985 NIL ODP (NIL NIL T NIL) -8 NIL NIL NIL) (-810 1897645 1897860 1898135 "ODETOOLS" 1898653 NIL ODETOOLS (NIL T T) -7 NIL NIL NIL) (-809 1894614 1895270 1895986 "ODESYS" 1896978 NIL ODESYS (NIL T T) -7 NIL NIL NIL) (-808 1889496 1890404 1891429 "ODERTRIC" 1893689 NIL ODERTRIC (NIL T T) -7 NIL NIL NIL) (-807 1888922 1889004 1889198 "ODERED" 1889408 NIL ODERED (NIL T T T T T) -7 NIL NIL NIL) (-806 1885810 1886358 1887035 "ODERAT" 1888345 NIL ODERAT (NIL T T) -7 NIL NIL NIL) (-805 1882770 1883234 1883831 "ODEPRRIC" 1885339 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL NIL) (-804 1880740 1881309 1881795 "ODEPROB" 1882304 T ODEPROB (NIL) -8 NIL NIL NIL) (-803 1877262 1877745 1878392 "ODEPRIM" 1880219 NIL ODEPRIM (NIL T T T T) -7 NIL NIL NIL) (-802 1876511 1876613 1876873 "ODEPAL" 1877154 NIL ODEPAL (NIL T T T T) -7 NIL NIL NIL) (-801 1872673 1873464 1874328 "ODEPACK" 1875667 T ODEPACK (NIL) -7 NIL NIL NIL) (-800 1871706 1871813 1872042 "ODEINT" 1872562 NIL ODEINT (NIL T T) -7 NIL NIL NIL) (-799 1865807 1867232 1868679 "ODEIFTBL" 1870279 T ODEIFTBL (NIL) -8 NIL NIL NIL) (-798 1861142 1861928 1862887 "ODEEF" 1864966 NIL ODEEF (NIL T T) -7 NIL NIL NIL) (-797 1860477 1860566 1860796 "ODECONST" 1861047 NIL ODECONST (NIL T T T) -7 NIL NIL NIL) (-796 1858628 1859263 1859291 "ODECAT" 1859896 T ODECAT (NIL) -9 NIL 1860427 NIL) (-795 1855535 1858340 1858459 "OCT" 1858541 NIL OCT (NIL T) -8 NIL NIL NIL) (-794 1855173 1855216 1855343 "OCTCT2" 1855486 NIL OCTCT2 (NIL T T T T) -7 NIL NIL NIL) (-793 1849947 1852347 1852387 "OC" 1853484 NIL OC (NIL T) -9 NIL 1854342 NIL) (-792 1847174 1847922 1848912 "OC-" 1849006 NIL OC- (NIL T T) -8 NIL NIL NIL) (-791 1846552 1846994 1847022 "OCAMON" 1847027 T OCAMON (NIL) -9 NIL 1847048 NIL) (-790 1846109 1846424 1846452 "OASGP" 1846457 T OASGP (NIL) -9 NIL 1846477 NIL) (-789 1845396 1845859 1845887 "OAMONS" 1845927 T OAMONS (NIL) -9 NIL 1845970 NIL) (-788 1844836 1845243 1845271 "OAMON" 1845276 T OAMON (NIL) -9 NIL 1845296 NIL) (-787 1844140 1844632 1844660 "OAGROUP" 1844665 T OAGROUP (NIL) -9 NIL 1844685 NIL) (-786 1843830 1843880 1843968 "NUMTUBE" 1844084 NIL NUMTUBE (NIL T) -7 NIL NIL NIL) (-785 1837403 1838921 1840457 "NUMQUAD" 1842314 T NUMQUAD (NIL) -7 NIL NIL NIL) (-784 1833159 1834147 1835172 "NUMODE" 1836398 T NUMODE (NIL) -7 NIL NIL NIL) (-783 1830540 1831394 1831422 "NUMINT" 1832345 T NUMINT (NIL) -9 NIL 1833109 NIL) (-782 1829488 1829685 1829903 "NUMFMT" 1830342 T NUMFMT (NIL) -7 NIL NIL NIL) (-781 1815847 1818792 1821324 "NUMERIC" 1826995 NIL NUMERIC (NIL T) -7 NIL NIL NIL) (-780 1810244 1815296 1815391 "NTSCAT" 1815396 NIL NTSCAT (NIL T T T T) -9 NIL 1815435 NIL) (-779 1809438 1809603 1809796 "NTPOLFN" 1810083 NIL NTPOLFN (NIL T) -7 NIL NIL NIL) (-778 1797278 1806263 1807075 "NSUP" 1808659 NIL NSUP (NIL T) -8 NIL NIL NIL) (-777 1796910 1796967 1797076 "NSUP2" 1797215 NIL NSUP2 (NIL T T) -7 NIL NIL NIL) (-776 1786907 1796684 1796817 "NSMP" 1796822 NIL NSMP (NIL T T) -8 NIL NIL NIL) (-775 1785339 1785640 1785997 "NREP" 1786595 NIL NREP (NIL T) -7 NIL NIL NIL) (-774 1783930 1784182 1784540 "NPCOEF" 1785082 NIL NPCOEF (NIL T T T T T) -7 NIL NIL NIL) (-773 1782996 1783111 1783327 "NORMRETR" 1783811 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL NIL) (-772 1781037 1781327 1781736 "NORMPK" 1782704 NIL NORMPK (NIL T T T T T) -7 NIL NIL NIL) (-771 1780722 1780750 1780874 "NORMMA" 1781003 NIL NORMMA (NIL T T T T) -7 NIL NIL NIL) (-770 1780549 1780679 1780708 "NONE" 1780713 T NONE (NIL) -8 NIL NIL NIL) (-769 1780338 1780367 1780436 "NONE1" 1780513 NIL NONE1 (NIL T) -7 NIL NIL NIL) (-768 1779821 1779883 1780069 "NODE1" 1780270 NIL NODE1 (NIL T T) -7 NIL NIL NIL) (-767 1778092 1778915 1779170 "NNI" 1779517 T NNI (NIL) -8 NIL NIL 1779752) (-766 1776512 1776825 1777189 "NLINSOL" 1777760 NIL NLINSOL (NIL T) -7 NIL NIL NIL) (-765 1772780 1773748 1774647 "NIPROB" 1775633 T NIPROB (NIL) -8 NIL NIL NIL) (-764 1771537 1771771 1772073 "NFINTBAS" 1772542 NIL NFINTBAS (NIL T T) -7 NIL NIL NIL) (-763 1770711 1771187 1771228 "NETCLT" 1771400 NIL NETCLT (NIL T) -9 NIL 1771482 NIL) (-762 1769419 1769650 1769931 "NCODIV" 1770479 NIL NCODIV (NIL T T) -7 NIL NIL NIL) (-761 1769181 1769218 1769293 "NCNTFRAC" 1769376 NIL NCNTFRAC (NIL T) -7 NIL NIL NIL) (-760 1767361 1767725 1768145 "NCEP" 1768806 NIL NCEP (NIL T) -7 NIL NIL NIL) (-759 1766272 1767011 1767039 "NASRING" 1767149 T NASRING (NIL) -9 NIL 1767223 NIL) (-758 1766067 1766111 1766205 "NASRING-" 1766210 NIL NASRING- (NIL T) -8 NIL NIL NIL) (-757 1765220 1765719 1765747 "NARNG" 1765864 T NARNG (NIL) -9 NIL 1765955 NIL) (-756 1764912 1764979 1765113 "NARNG-" 1765118 NIL NARNG- (NIL T) -8 NIL NIL NIL) (-755 1763791 1763998 1764233 "NAGSP" 1764697 T NAGSP (NIL) -7 NIL NIL NIL) (-754 1755063 1756747 1758420 "NAGS" 1762138 T NAGS (NIL) -7 NIL NIL NIL) (-753 1753611 1753919 1754250 "NAGF07" 1754752 T NAGF07 (NIL) -7 NIL NIL NIL) (-752 1748149 1749440 1750747 "NAGF04" 1752324 T NAGF04 (NIL) -7 NIL NIL NIL) (-751 1741117 1742731 1744364 "NAGF02" 1746536 T NAGF02 (NIL) -7 NIL NIL NIL) (-750 1736341 1737441 1738558 "NAGF01" 1740020 T NAGF01 (NIL) -7 NIL NIL NIL) (-749 1729969 1731535 1733120 "NAGE04" 1734776 T NAGE04 (NIL) -7 NIL NIL NIL) (-748 1721138 1723259 1725389 "NAGE02" 1727859 T NAGE02 (NIL) -7 NIL NIL NIL) (-747 1717091 1718038 1719002 "NAGE01" 1720194 T NAGE01 (NIL) -7 NIL NIL NIL) (-746 1714886 1715420 1715978 "NAGD03" 1716553 T NAGD03 (NIL) -7 NIL NIL NIL) (-745 1706636 1708564 1710518 "NAGD02" 1712952 T NAGD02 (NIL) -7 NIL NIL NIL) (-744 1700447 1701872 1703312 "NAGD01" 1705216 T NAGD01 (NIL) -7 NIL NIL NIL) (-743 1696656 1697478 1698315 "NAGC06" 1699630 T NAGC06 (NIL) -7 NIL NIL NIL) (-742 1695121 1695453 1695809 "NAGC05" 1696320 T NAGC05 (NIL) -7 NIL NIL NIL) (-741 1694497 1694616 1694760 "NAGC02" 1694997 T NAGC02 (NIL) -7 NIL NIL NIL) (-740 1693557 1694114 1694154 "NAALG" 1694233 NIL NAALG (NIL T) -9 NIL 1694294 NIL) (-739 1693392 1693421 1693511 "NAALG-" 1693516 NIL NAALG- (NIL T T) -8 NIL NIL NIL) (-738 1687342 1688450 1689637 "MULTSQFR" 1692288 NIL MULTSQFR (NIL T T T T) -7 NIL NIL NIL) (-737 1686661 1686736 1686920 "MULTFACT" 1687254 NIL MULTFACT (NIL T T T T) -7 NIL NIL NIL) (-736 1679754 1683624 1683677 "MTSCAT" 1684747 NIL MTSCAT (NIL T T) -9 NIL 1685261 NIL) (-735 1679466 1679520 1679612 "MTHING" 1679694 NIL MTHING (NIL T) -7 NIL NIL NIL) (-734 1679258 1679291 1679351 "MSYSCMD" 1679426 T MSYSCMD (NIL) -7 NIL NIL NIL) (-733 1675370 1678013 1678333 "MSET" 1678971 NIL MSET (NIL T) -8 NIL NIL NIL) (-732 1672465 1674931 1674972 "MSETAGG" 1674977 NIL MSETAGG (NIL T) -9 NIL 1675011 NIL) (-731 1668348 1669844 1670589 "MRING" 1671765 NIL MRING (NIL T T) -8 NIL NIL NIL) (-730 1667914 1667981 1668112 "MRF2" 1668275 NIL MRF2 (NIL T T T) -7 NIL NIL NIL) (-729 1667532 1667567 1667711 "MRATFAC" 1667873 NIL MRATFAC (NIL T T T T) -7 NIL NIL NIL) (-728 1665144 1665439 1665870 "MPRFF" 1667237 NIL MPRFF (NIL T T T T) -7 NIL NIL NIL) (-727 1659204 1664998 1665095 "MPOLY" 1665100 NIL MPOLY (NIL NIL T) -8 NIL NIL NIL) (-726 1658694 1658729 1658937 "MPCPF" 1659163 NIL MPCPF (NIL T T T T) -7 NIL NIL NIL) (-725 1658208 1658251 1658435 "MPC3" 1658645 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL NIL) (-724 1657403 1657484 1657705 "MPC2" 1658123 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL NIL) (-723 1655704 1656041 1656431 "MONOTOOL" 1657063 NIL MONOTOOL (NIL T T) -7 NIL NIL NIL) (-722 1654955 1655246 1655274 "MONOID" 1655493 T MONOID (NIL) -9 NIL 1655640 NIL) (-721 1654501 1654620 1654801 "MONOID-" 1654806 NIL MONOID- (NIL T) -8 NIL NIL NIL) (-720 1645360 1651268 1651327 "MONOGEN" 1652001 NIL MONOGEN (NIL T T) -9 NIL 1652457 NIL) (-719 1642578 1643313 1644313 "MONOGEN-" 1644432 NIL MONOGEN- (NIL T T T) -8 NIL NIL NIL) (-718 1641437 1641857 1641885 "MONADWU" 1642277 T MONADWU (NIL) -9 NIL 1642515 NIL) (-717 1640809 1640968 1641216 "MONADWU-" 1641221 NIL MONADWU- (NIL T) -8 NIL NIL NIL) (-716 1640194 1640412 1640440 "MONAD" 1640647 T MONAD (NIL) -9 NIL 1640759 NIL) (-715 1639879 1639957 1640089 "MONAD-" 1640094 NIL MONAD- (NIL T) -8 NIL NIL NIL) (-714 1638195 1638792 1639071 "MOEBIUS" 1639632 NIL MOEBIUS (NIL T) -8 NIL NIL NIL) (-713 1637587 1637965 1638005 "MODULE" 1638010 NIL MODULE (NIL T) -9 NIL 1638036 NIL) (-712 1637155 1637251 1637441 "MODULE-" 1637446 NIL MODULE- (NIL T T) -8 NIL NIL NIL) (-711 1634870 1635519 1635846 "MODRING" 1636979 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-710 1631856 1632975 1633496 "MODOP" 1634399 NIL MODOP (NIL T T) -8 NIL NIL NIL) (-709 1630471 1630923 1631200 "MODMONOM" 1631719 NIL MODMONOM (NIL T T NIL) -8 NIL NIL NIL) (-708 1620278 1628762 1629176 "MODMON" 1630108 NIL MODMON (NIL T T) -8 NIL NIL NIL) (-707 1617469 1619122 1619398 "MODFIELD" 1620153 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-706 1616473 1616750 1616940 "MMLFORM" 1617299 T MMLFORM (NIL) -8 NIL NIL NIL) (-705 1615999 1616042 1616221 "MMAP" 1616424 NIL MMAP (NIL T T T T T T) -7 NIL NIL NIL) (-704 1614216 1614949 1614990 "MLO" 1615413 NIL MLO (NIL T) -9 NIL 1615655 NIL) (-703 1611583 1612098 1612700 "MLIFT" 1613697 NIL MLIFT (NIL T T T T) -7 NIL NIL NIL) (-702 1610974 1611058 1611212 "MKUCFUNC" 1611494 NIL MKUCFUNC (NIL T T T) -7 NIL NIL NIL) (-701 1610573 1610643 1610766 "MKRECORD" 1610897 NIL MKRECORD (NIL T T) -7 NIL NIL NIL) (-700 1609621 1609782 1610010 "MKFUNC" 1610384 NIL MKFUNC (NIL T) -7 NIL NIL NIL) (-699 1609009 1609113 1609269 "MKFLCFN" 1609504 NIL MKFLCFN (NIL T) -7 NIL NIL NIL) (-698 1608552 1608919 1608978 "MKCHSET" 1608983 NIL MKCHSET (NIL T) -8 NIL NIL NIL) (-697 1607829 1607931 1608116 "MKBCFUNC" 1608445 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL NIL) (-696 1604571 1607383 1607519 "MINT" 1607713 T MINT (NIL) -8 NIL NIL NIL) (-695 1603383 1603626 1603903 "MHROWRED" 1604326 NIL MHROWRED (NIL T) -7 NIL NIL NIL) (-694 1598809 1601918 1602323 "MFLOAT" 1602998 T MFLOAT (NIL) -8 NIL NIL NIL) (-693 1598166 1598242 1598413 "MFINFACT" 1598721 NIL MFINFACT (NIL T T T T) -7 NIL NIL NIL) (-692 1594481 1595329 1596213 "MESH" 1597302 T MESH (NIL) -7 NIL NIL NIL) (-691 1592871 1593183 1593536 "MDDFACT" 1594168 NIL MDDFACT (NIL T) -7 NIL NIL NIL) (-690 1589713 1592030 1592071 "MDAGG" 1592326 NIL MDAGG (NIL T) -9 NIL 1592469 NIL) (-689 1579491 1589006 1589213 "MCMPLX" 1589526 T MCMPLX (NIL) -8 NIL NIL NIL) (-688 1578632 1578778 1578978 "MCDEN" 1579340 NIL MCDEN (NIL T T) -7 NIL NIL NIL) (-687 1576522 1576792 1577172 "MCALCFN" 1578362 NIL MCALCFN (NIL T T T T) -7 NIL NIL NIL) (-686 1575447 1575687 1575920 "MAYBE" 1576328 NIL MAYBE (NIL T) -8 NIL NIL NIL) (-685 1573059 1573582 1574144 "MATSTOR" 1574918 NIL MATSTOR (NIL T) -7 NIL NIL NIL) (-684 1569065 1572431 1572679 "MATRIX" 1572844 NIL MATRIX (NIL T) -8 NIL NIL NIL) (-683 1564834 1565538 1566274 "MATLIN" 1568422 NIL MATLIN (NIL T T T T) -7 NIL NIL NIL) (-682 1554988 1558126 1558203 "MATCAT" 1563083 NIL MATCAT (NIL T T T) -9 NIL 1564500 NIL) (-681 1551352 1552365 1553721 "MATCAT-" 1553726 NIL MATCAT- (NIL T T T T) -8 NIL NIL NIL) (-680 1549946 1550099 1550432 "MATCAT2" 1551187 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-679 1548058 1548382 1548766 "MAPPKG3" 1549621 NIL MAPPKG3 (NIL T T T) -7 NIL NIL NIL) (-678 1547039 1547212 1547434 "MAPPKG2" 1547882 NIL MAPPKG2 (NIL T T) -7 NIL NIL NIL) (-677 1545538 1545822 1546149 "MAPPKG1" 1546745 NIL MAPPKG1 (NIL T) -7 NIL NIL NIL) (-676 1544644 1544944 1545121 "MAPPAST" 1545381 T MAPPAST (NIL) -8 NIL NIL NIL) (-675 1544255 1544313 1544436 "MAPHACK3" 1544580 NIL MAPHACK3 (NIL T T T) -7 NIL NIL NIL) (-674 1543847 1543908 1544022 "MAPHACK2" 1544187 NIL MAPHACK2 (NIL T T) -7 NIL NIL NIL) (-673 1543285 1543388 1543530 "MAPHACK1" 1543738 NIL MAPHACK1 (NIL T) -7 NIL NIL NIL) (-672 1541391 1541985 1542289 "MAGMA" 1543013 NIL MAGMA (NIL T) -8 NIL NIL NIL) (-671 1540897 1541115 1541206 "MACROAST" 1541320 T MACROAST (NIL) -8 NIL NIL NIL) (-670 1537364 1539136 1539597 "M3D" 1540469 NIL M3D (NIL T) -8 NIL NIL NIL) (-669 1531518 1535733 1535774 "LZSTAGG" 1536556 NIL LZSTAGG (NIL T) -9 NIL 1536851 NIL) (-668 1527492 1528649 1530106 "LZSTAGG-" 1530111 NIL LZSTAGG- (NIL T T) -8 NIL NIL NIL) (-667 1524606 1525383 1525870 "LWORD" 1527037 NIL LWORD (NIL T) -8 NIL NIL NIL) (-666 1524209 1524410 1524485 "LSTAST" 1524551 T LSTAST (NIL) -8 NIL NIL NIL) (-665 1517410 1523980 1524114 "LSQM" 1524119 NIL LSQM (NIL NIL T) -8 NIL NIL NIL) (-664 1516634 1516773 1517001 "LSPP" 1517265 NIL LSPP (NIL T T T T) -7 NIL NIL NIL) (-663 1514446 1514747 1515203 "LSMP" 1516323 NIL LSMP (NIL T T T T) -7 NIL NIL NIL) (-662 1511225 1511899 1512629 "LSMP1" 1513748 NIL LSMP1 (NIL T) -7 NIL NIL NIL) (-661 1505150 1510392 1510433 "LSAGG" 1510495 NIL LSAGG (NIL T) -9 NIL 1510573 NIL) (-660 1501845 1502769 1503982 "LSAGG-" 1503987 NIL LSAGG- (NIL T T) -8 NIL NIL NIL) (-659 1499471 1500989 1501238 "LPOLY" 1501640 NIL LPOLY (NIL T T) -8 NIL NIL NIL) (-658 1499053 1499138 1499261 "LPEFRAC" 1499380 NIL LPEFRAC (NIL T) -7 NIL NIL NIL) (-657 1497400 1498147 1498400 "LO" 1498885 NIL LO (NIL T T T) -8 NIL NIL NIL) (-656 1497052 1497164 1497192 "LOGIC" 1497303 T LOGIC (NIL) -9 NIL 1497384 NIL) (-655 1496914 1496937 1497008 "LOGIC-" 1497013 NIL LOGIC- (NIL T) -8 NIL NIL NIL) (-654 1496107 1496247 1496440 "LODOOPS" 1496770 NIL LODOOPS (NIL T T) -7 NIL NIL NIL) (-653 1493565 1496023 1496089 "LODO" 1496094 NIL LODO (NIL T NIL) -8 NIL NIL NIL) (-652 1492103 1492338 1492691 "LODOF" 1493312 NIL LODOF (NIL T T) -7 NIL NIL NIL) (-651 1488459 1490856 1490897 "LODOCAT" 1491335 NIL LODOCAT (NIL T) -9 NIL 1491546 NIL) (-650 1488192 1488250 1488377 "LODOCAT-" 1488382 NIL LODOCAT- (NIL T T) -8 NIL NIL NIL) (-649 1485547 1488033 1488151 "LODO2" 1488156 NIL LODO2 (NIL T T) -8 NIL NIL NIL) (-648 1483017 1485484 1485529 "LODO1" 1485534 NIL LODO1 (NIL T) -8 NIL NIL NIL) (-647 1481877 1482042 1482354 "LODEEF" 1482840 NIL LODEEF (NIL T T T) -7 NIL NIL NIL) (-646 1477163 1480007 1480048 "LNAGG" 1480995 NIL LNAGG (NIL T) -9 NIL 1481439 NIL) (-645 1476310 1476524 1476866 "LNAGG-" 1476871 NIL LNAGG- (NIL T T) -8 NIL NIL NIL) (-644 1472473 1473235 1473874 "LMOPS" 1475725 NIL LMOPS (NIL T T NIL) -8 NIL NIL NIL) (-643 1471868 1472230 1472271 "LMODULE" 1472332 NIL LMODULE (NIL T) -9 NIL 1472374 NIL) (-642 1469114 1471513 1471636 "LMDICT" 1471778 NIL LMDICT (NIL T) -8 NIL NIL NIL) (-641 1468840 1469022 1469082 "LITERAL" 1469087 NIL LITERAL (NIL T) -8 NIL NIL NIL) (-640 1462067 1467786 1468084 "LIST" 1468575 NIL LIST (NIL T) -8 NIL NIL NIL) (-639 1461592 1461666 1461805 "LIST3" 1461987 NIL LIST3 (NIL T T T) -7 NIL NIL NIL) (-638 1460599 1460777 1461005 "LIST2" 1461410 NIL LIST2 (NIL T T) -7 NIL NIL NIL) (-637 1458733 1459045 1459444 "LIST2MAP" 1460246 NIL LIST2MAP (NIL T T) -7 NIL NIL NIL) (-636 1457463 1458099 1458140 "LINEXP" 1458395 NIL LINEXP (NIL T) -9 NIL 1458544 NIL) (-635 1456110 1456370 1456667 "LINDEP" 1457215 NIL LINDEP (NIL T T) -7 NIL NIL NIL) (-634 1452877 1453596 1454373 "LIMITRF" 1455365 NIL LIMITRF (NIL T) -7 NIL NIL NIL) (-633 1451153 1451448 1451864 "LIMITPS" 1452572 NIL LIMITPS (NIL T T) -7 NIL NIL NIL) (-632 1445608 1450664 1450892 "LIE" 1450974 NIL LIE (NIL T T) -8 NIL NIL NIL) (-631 1444657 1445100 1445140 "LIECAT" 1445280 NIL LIECAT (NIL T) -9 NIL 1445431 NIL) (-630 1444498 1444525 1444613 "LIECAT-" 1444618 NIL LIECAT- (NIL T T) -8 NIL NIL NIL) (-629 1437110 1443947 1444112 "LIB" 1444353 T LIB (NIL) -8 NIL NIL NIL) (-628 1432747 1433628 1434563 "LGROBP" 1436227 NIL LGROBP (NIL NIL T) -7 NIL NIL NIL) (-627 1430613 1430887 1431249 "LF" 1432468 NIL LF (NIL T T) -7 NIL NIL NIL) (-626 1429453 1430145 1430173 "LFCAT" 1430380 T LFCAT (NIL) -9 NIL 1430519 NIL) (-625 1426357 1426985 1427673 "LEXTRIPK" 1428817 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL NIL) (-624 1423128 1423927 1424430 "LEXP" 1425937 NIL LEXP (NIL T T NIL) -8 NIL NIL NIL) (-623 1422631 1422849 1422941 "LETAST" 1423056 T LETAST (NIL) -8 NIL NIL NIL) (-622 1421029 1421342 1421743 "LEADCDET" 1422313 NIL LEADCDET (NIL T T T T) -7 NIL NIL NIL) (-621 1420219 1420293 1420522 "LAZM3PK" 1420950 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL NIL) (-620 1415173 1418296 1418834 "LAUPOL" 1419731 NIL LAUPOL (NIL T T) -8 NIL NIL NIL) (-619 1414738 1414782 1414950 "LAPLACE" 1415123 NIL LAPLACE (NIL T T) -7 NIL NIL NIL) (-618 1412712 1413839 1414090 "LA" 1414571 NIL LA (NIL T T T) -8 NIL NIL NIL) (-617 1411793 1412343 1412384 "LALG" 1412446 NIL LALG (NIL T) -9 NIL 1412505 NIL) (-616 1411507 1411566 1411702 "LALG-" 1411707 NIL LALG- (NIL T T) -8 NIL NIL NIL) (-615 1411342 1411366 1411407 "KVTFROM" 1411469 NIL KVTFROM (NIL T) -9 NIL NIL NIL) (-614 1410145 1410559 1410788 "KTVLOGIC" 1411133 T KTVLOGIC (NIL) -8 NIL NIL NIL) (-613 1409980 1410004 1410045 "KRCFROM" 1410107 NIL KRCFROM (NIL T) -9 NIL NIL NIL) (-612 1408884 1409071 1409370 "KOVACIC" 1409780 NIL KOVACIC (NIL T T) -7 NIL NIL NIL) (-611 1408719 1408743 1408784 "KONVERT" 1408846 NIL KONVERT (NIL T) -9 NIL NIL NIL) (-610 1408554 1408578 1408619 "KOERCE" 1408681 NIL KOERCE (NIL T) -9 NIL NIL NIL) (-609 1406288 1407048 1407441 "KERNEL" 1408193 NIL KERNEL (NIL T) -8 NIL NIL NIL) (-608 1405790 1405871 1406001 "KERNEL2" 1406202 NIL KERNEL2 (NIL T T) -7 NIL NIL NIL) (-607 1399641 1404329 1404383 "KDAGG" 1404760 NIL KDAGG (NIL T T) -9 NIL 1404966 NIL) (-606 1399170 1399294 1399499 "KDAGG-" 1399504 NIL KDAGG- (NIL T T T) -8 NIL NIL NIL) (-605 1392345 1398831 1398986 "KAFILE" 1399048 NIL KAFILE (NIL T) -8 NIL NIL NIL) (-604 1386800 1391856 1392084 "JORDAN" 1392166 NIL JORDAN (NIL T T) -8 NIL NIL NIL) (-603 1386206 1386449 1386570 "JOINAST" 1386699 T JOINAST (NIL) -8 NIL NIL NIL) (-602 1386052 1386111 1386166 "JAVACODE" 1386171 T JAVACODE (NIL) -8 NIL NIL NIL) (-601 1382351 1384257 1384311 "IXAGG" 1385240 NIL IXAGG (NIL T T) -9 NIL 1385699 NIL) (-600 1381270 1381576 1381995 "IXAGG-" 1382000 NIL IXAGG- (NIL T T T) -8 NIL NIL NIL) (-599 1376850 1381192 1381251 "IVECTOR" 1381256 NIL IVECTOR (NIL T NIL) -8 NIL NIL NIL) (-598 1375616 1375853 1376119 "ITUPLE" 1376617 NIL ITUPLE (NIL T) -8 NIL NIL NIL) (-597 1374052 1374229 1374535 "ITRIGMNP" 1375438 NIL ITRIGMNP (NIL T T T) -7 NIL NIL NIL) (-596 1372797 1373001 1373284 "ITFUN3" 1373828 NIL ITFUN3 (NIL T T T) -7 NIL NIL NIL) (-595 1372429 1372486 1372595 "ITFUN2" 1372734 NIL ITFUN2 (NIL T T) -7 NIL NIL NIL) (-594 1370266 1371291 1371590 "ITAYLOR" 1372163 NIL ITAYLOR (NIL T) -8 NIL NIL NIL) (-593 1359249 1364403 1365566 "ISUPS" 1369136 NIL ISUPS (NIL T) -8 NIL NIL NIL) (-592 1358353 1358493 1358729 "ISUMP" 1359096 NIL ISUMP (NIL T T T T) -7 NIL NIL NIL) (-591 1353617 1358154 1358233 "ISTRING" 1358306 NIL ISTRING (NIL NIL) -8 NIL NIL NIL) (-590 1353120 1353338 1353430 "ISAST" 1353545 T ISAST (NIL) -8 NIL NIL NIL) (-589 1352330 1352411 1352627 "IRURPK" 1353034 NIL IRURPK (NIL T T T T T) -7 NIL NIL NIL) (-588 1351266 1351467 1351707 "IRSN" 1352110 T IRSN (NIL) -7 NIL NIL NIL) (-587 1349295 1349650 1350086 "IRRF2F" 1350904 NIL IRRF2F (NIL T) -7 NIL NIL NIL) (-586 1349042 1349080 1349156 "IRREDFFX" 1349251 NIL IRREDFFX (NIL T) -7 NIL NIL NIL) (-585 1347657 1347916 1348215 "IROOT" 1348775 NIL IROOT (NIL T) -7 NIL NIL NIL) (-584 1344289 1345341 1346033 "IR" 1346997 NIL IR (NIL T) -8 NIL NIL NIL) (-583 1341902 1342397 1342963 "IR2" 1343767 NIL IR2 (NIL T T) -7 NIL NIL NIL) (-582 1340974 1341087 1341308 "IR2F" 1341785 NIL IR2F (NIL T T) -7 NIL NIL NIL) (-581 1340765 1340799 1340859 "IPRNTPK" 1340934 T IPRNTPK (NIL) -7 NIL NIL NIL) (-580 1337384 1340654 1340723 "IPF" 1340728 NIL IPF (NIL NIL) -8 NIL NIL NIL) (-579 1335747 1337309 1337366 "IPADIC" 1337371 NIL IPADIC (NIL NIL NIL) -8 NIL NIL NIL) (-578 1335087 1335307 1335437 "IP4ADDR" 1335637 T IP4ADDR (NIL) -8 NIL NIL NIL) (-577 1334587 1334791 1334901 "IOMODE" 1334997 T IOMODE (NIL) -8 NIL NIL NIL) (-576 1333660 1334184 1334311 "IOBFILE" 1334480 T IOBFILE (NIL) -8 NIL NIL NIL) (-575 1333148 1333564 1333592 "IOBCON" 1333597 T IOBCON (NIL) -9 NIL 1333618 NIL) (-574 1332645 1332703 1332893 "INVLAPLA" 1333084 NIL INVLAPLA (NIL T T) -7 NIL NIL NIL) (-573 1322294 1324647 1327033 "INTTR" 1330309 NIL INTTR (NIL T T) -7 NIL NIL NIL) (-572 1318638 1319380 1320244 "INTTOOLS" 1321479 NIL INTTOOLS (NIL T T) -7 NIL NIL NIL) (-571 1318224 1318315 1318432 "INTSLPE" 1318541 T INTSLPE (NIL) -7 NIL NIL NIL) (-570 1316219 1318147 1318206 "INTRVL" 1318211 NIL INTRVL (NIL T) -8 NIL NIL NIL) (-569 1313821 1314333 1314908 "INTRF" 1315704 NIL INTRF (NIL T) -7 NIL NIL NIL) (-568 1313232 1313329 1313471 "INTRET" 1313719 NIL INTRET (NIL T) -7 NIL NIL NIL) (-567 1311229 1311618 1312088 "INTRAT" 1312840 NIL INTRAT (NIL T T) -7 NIL NIL NIL) (-566 1308457 1309040 1309666 "INTPM" 1310714 NIL INTPM (NIL T T) -7 NIL NIL NIL) (-565 1305160 1305759 1306504 "INTPAF" 1307843 NIL INTPAF (NIL T T T) -7 NIL NIL NIL) (-564 1300339 1301301 1302352 "INTPACK" 1304129 T INTPACK (NIL) -7 NIL NIL NIL) (-563 1297250 1300068 1300195 "INT" 1300232 T INT (NIL) -8 NIL NIL NIL) (-562 1296502 1296654 1296862 "INTHERTR" 1297092 NIL INTHERTR (NIL T T) -7 NIL NIL NIL) (-561 1295941 1296021 1296209 "INTHERAL" 1296416 NIL INTHERAL (NIL T T T T) -7 NIL NIL NIL) (-560 1293787 1294230 1294687 "INTHEORY" 1295504 T INTHEORY (NIL) -7 NIL NIL NIL) (-559 1285095 1286716 1288495 "INTG0" 1292139 NIL INTG0 (NIL T T T) -7 NIL NIL NIL) (-558 1265668 1270458 1275268 "INTFTBL" 1280305 T INTFTBL (NIL) -8 NIL NIL NIL) (-557 1264917 1265055 1265228 "INTFACT" 1265527 NIL INTFACT (NIL T) -7 NIL NIL NIL) (-556 1262302 1262748 1263312 "INTEF" 1264471 NIL INTEF (NIL T T) -7 NIL NIL NIL) (-555 1260769 1261474 1261502 "INTDOM" 1261803 T INTDOM (NIL) -9 NIL 1262010 NIL) (-554 1260138 1260312 1260554 "INTDOM-" 1260559 NIL INTDOM- (NIL T) -8 NIL NIL NIL) (-553 1256633 1258522 1258576 "INTCAT" 1259375 NIL INTCAT (NIL T) -9 NIL 1259695 NIL) (-552 1256106 1256208 1256336 "INTBIT" 1256525 T INTBIT (NIL) -7 NIL NIL NIL) (-551 1254777 1254931 1255245 "INTALG" 1255951 NIL INTALG (NIL T T T T T) -7 NIL NIL NIL) (-550 1254234 1254324 1254494 "INTAF" 1254681 NIL INTAF (NIL T T) -7 NIL NIL NIL) (-549 1247688 1254044 1254184 "INTABL" 1254189 NIL INTABL (NIL T T T) -8 NIL NIL NIL) (-548 1247148 1247561 1247589 "INT8" 1247594 T INT8 (NIL) -8 NIL NIL 1247602) (-547 1246607 1247020 1247048 "INT32" 1247053 T INT32 (NIL) -8 NIL NIL 1247061) (-546 1246066 1246479 1246507 "INT16" 1246512 T INT16 (NIL) -8 NIL NIL 1246520) (-545 1241081 1243755 1243783 "INS" 1244717 T INS (NIL) -9 NIL 1245382 NIL) (-544 1238321 1239092 1240066 "INS-" 1240139 NIL INS- (NIL T) -8 NIL NIL NIL) (-543 1237096 1237323 1237621 "INPSIGN" 1238074 NIL INPSIGN (NIL T T) -7 NIL NIL NIL) (-542 1236214 1236331 1236528 "INPRODPF" 1236976 NIL INPRODPF (NIL T T) -7 NIL NIL NIL) (-541 1235108 1235225 1235462 "INPRODFF" 1236094 NIL INPRODFF (NIL T T T T) -7 NIL NIL NIL) (-540 1234108 1234260 1234520 "INNMFACT" 1234944 NIL INNMFACT (NIL T T T T) -7 NIL NIL NIL) (-539 1233305 1233402 1233590 "INMODGCD" 1234007 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL NIL) (-538 1231814 1232058 1232382 "INFSP" 1233050 NIL INFSP (NIL T T T) -7 NIL NIL NIL) (-537 1230998 1231115 1231298 "INFPROD0" 1231694 NIL INFPROD0 (NIL T T) -7 NIL NIL NIL) (-536 1227880 1229063 1229578 "INFORM" 1230491 T INFORM (NIL) -8 NIL NIL NIL) (-535 1227490 1227550 1227648 "INFORM1" 1227815 NIL INFORM1 (NIL T) -7 NIL NIL NIL) (-534 1227013 1227102 1227216 "INFINITY" 1227396 T INFINITY (NIL) -7 NIL NIL NIL) (-533 1226189 1226733 1226834 "INETCLTS" 1226932 T INETCLTS (NIL) -8 NIL NIL NIL) (-532 1224806 1225055 1225376 "INEP" 1225937 NIL INEP (NIL T T T) -7 NIL NIL NIL) (-531 1224082 1224703 1224768 "INDE" 1224773 NIL INDE (NIL T) -8 NIL NIL NIL) (-530 1223646 1223714 1223831 "INCRMAPS" 1224009 NIL INCRMAPS (NIL T) -7 NIL NIL NIL) (-529 1222464 1222915 1223121 "INBFILE" 1223460 T INBFILE (NIL) -8 NIL NIL NIL) (-528 1217775 1218700 1219644 "INBFF" 1221552 NIL INBFF (NIL T) -7 NIL NIL NIL) (-527 1216683 1216952 1216980 "INBCON" 1217493 T INBCON (NIL) -9 NIL 1217759 NIL) (-526 1215935 1216158 1216434 "INBCON-" 1216439 NIL INBCON- (NIL T) -8 NIL NIL NIL) (-525 1215437 1215656 1215748 "INAST" 1215863 T INAST (NIL) -8 NIL NIL NIL) (-524 1214891 1215116 1215222 "IMPTAST" 1215351 T IMPTAST (NIL) -8 NIL NIL NIL) (-523 1211385 1214735 1214839 "IMATRIX" 1214844 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL NIL) (-522 1210097 1210220 1210535 "IMATQF" 1211241 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL NIL) (-521 1208317 1208544 1208881 "IMATLIN" 1209853 NIL IMATLIN (NIL T T T T) -7 NIL NIL NIL) (-520 1202943 1208241 1208299 "ILIST" 1208304 NIL ILIST (NIL T NIL) -8 NIL NIL NIL) (-519 1200896 1202803 1202916 "IIARRAY2" 1202921 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL NIL) (-518 1196329 1200807 1200871 "IFF" 1200876 NIL IFF (NIL NIL NIL) -8 NIL NIL NIL) (-517 1195703 1195946 1196062 "IFAST" 1196233 T IFAST (NIL) -8 NIL NIL NIL) (-516 1190746 1194995 1195183 "IFARRAY" 1195560 NIL IFARRAY (NIL T NIL) -8 NIL NIL NIL) (-515 1189953 1190650 1190723 "IFAMON" 1190728 NIL IFAMON (NIL T T NIL) -8 NIL NIL NIL) (-514 1189537 1189602 1189656 "IEVALAB" 1189863 NIL IEVALAB (NIL T T) -9 NIL NIL NIL) (-513 1189212 1189280 1189440 "IEVALAB-" 1189445 NIL IEVALAB- (NIL T T T) -8 NIL NIL NIL) (-512 1188870 1189126 1189189 "IDPO" 1189194 NIL IDPO (NIL T T) -8 NIL NIL NIL) (-511 1188147 1188759 1188834 "IDPOAMS" 1188839 NIL IDPOAMS (NIL T T) -8 NIL NIL NIL) (-510 1187481 1188036 1188111 "IDPOAM" 1188116 NIL IDPOAM (NIL T T) -8 NIL NIL NIL) (-509 1186566 1186816 1186869 "IDPC" 1187282 NIL IDPC (NIL T T) -9 NIL 1187431 NIL) (-508 1186062 1186458 1186531 "IDPAM" 1186536 NIL IDPAM (NIL T T) -8 NIL NIL NIL) (-507 1185465 1185954 1186027 "IDPAG" 1186032 NIL IDPAG (NIL T T) -8 NIL NIL NIL) (-506 1185233 1185380 1185430 "IDENT" 1185435 T IDENT (NIL) -8 NIL NIL NIL) (-505 1181488 1182336 1183231 "IDECOMP" 1184390 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL NIL) (-504 1174362 1175411 1176458 "IDEAL" 1180524 NIL IDEAL (NIL T T T T) -8 NIL NIL NIL) (-503 1173526 1173638 1173837 "ICDEN" 1174246 NIL ICDEN (NIL T T T T) -7 NIL NIL NIL) (-502 1172625 1173006 1173153 "ICARD" 1173399 T ICARD (NIL) -8 NIL NIL NIL) (-501 1170685 1170998 1171403 "IBPTOOLS" 1172302 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL NIL) (-500 1166319 1170305 1170418 "IBITS" 1170604 NIL IBITS (NIL NIL) -8 NIL NIL NIL) (-499 1163042 1163618 1164313 "IBATOOL" 1165736 NIL IBATOOL (NIL T T T) -7 NIL NIL NIL) (-498 1160822 1161283 1161816 "IBACHIN" 1162577 NIL IBACHIN (NIL T T T) -7 NIL NIL NIL) (-497 1158699 1160668 1160771 "IARRAY2" 1160776 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL NIL) (-496 1154852 1158625 1158682 "IARRAY1" 1158687 NIL IARRAY1 (NIL T NIL) -8 NIL NIL NIL) (-495 1148846 1153264 1153745 "IAN" 1154391 T IAN (NIL) -8 NIL NIL NIL) (-494 1148357 1148414 1148587 "IALGFACT" 1148783 NIL IALGFACT (NIL T T T T) -7 NIL NIL NIL) (-493 1147885 1147998 1148026 "HYPCAT" 1148233 T HYPCAT (NIL) -9 NIL NIL NIL) (-492 1147423 1147540 1147726 "HYPCAT-" 1147731 NIL HYPCAT- (NIL T) -8 NIL NIL NIL) (-491 1147045 1147218 1147301 "HOSTNAME" 1147360 T HOSTNAME (NIL) -8 NIL NIL NIL) (-490 1146890 1146927 1146968 "HOMOTOP" 1146973 NIL HOMOTOP (NIL T) -9 NIL 1147006 NIL) (-489 1143569 1144900 1144941 "HOAGG" 1145922 NIL HOAGG (NIL T) -9 NIL 1146601 NIL) (-488 1142163 1142562 1143088 "HOAGG-" 1143093 NIL HOAGG- (NIL T T) -8 NIL NIL NIL) (-487 1136202 1141758 1141907 "HEXADEC" 1142034 T HEXADEC (NIL) -8 NIL NIL NIL) (-486 1134950 1135172 1135435 "HEUGCD" 1135979 NIL HEUGCD (NIL T) -7 NIL NIL NIL) (-485 1134053 1134787 1134917 "HELLFDIV" 1134922 NIL HELLFDIV (NIL T T T T) -8 NIL NIL NIL) (-484 1132281 1133830 1133918 "HEAP" 1133997 NIL HEAP (NIL T) -8 NIL NIL NIL) (-483 1131572 1131833 1131967 "HEADAST" 1132167 T HEADAST (NIL) -8 NIL NIL NIL) (-482 1125492 1131487 1131549 "HDP" 1131554 NIL HDP (NIL NIL T) -8 NIL NIL NIL) (-481 1119243 1125127 1125279 "HDMP" 1125393 NIL HDMP (NIL NIL T) -8 NIL NIL NIL) (-480 1118568 1118707 1118871 "HB" 1119099 T HB (NIL) -7 NIL NIL NIL) (-479 1112065 1118414 1118518 "HASHTBL" 1118523 NIL HASHTBL (NIL T T NIL) -8 NIL NIL NIL) (-478 1111568 1111786 1111878 "HASAST" 1111993 T HASAST (NIL) -8 NIL NIL NIL) (-477 1109381 1111190 1111372 "HACKPI" 1111406 T HACKPI (NIL) -8 NIL NIL NIL) (-476 1105076 1109234 1109347 "GTSET" 1109352 NIL GTSET (NIL T T T T) -8 NIL NIL NIL) (-475 1098602 1104954 1105052 "GSTBL" 1105057 NIL GSTBL (NIL T T T NIL) -8 NIL NIL NIL) (-474 1090915 1097633 1097898 "GSERIES" 1098393 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL NIL) (-473 1090082 1090473 1090501 "GROUP" 1090704 T GROUP (NIL) -9 NIL 1090838 NIL) (-472 1089448 1089607 1089858 "GROUP-" 1089863 NIL GROUP- (NIL T) -8 NIL NIL NIL) (-471 1087817 1088136 1088523 "GROEBSOL" 1089125 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL NIL) (-470 1086757 1087019 1087070 "GRMOD" 1087599 NIL GRMOD (NIL T T) -9 NIL 1087767 NIL) (-469 1086525 1086561 1086689 "GRMOD-" 1086694 NIL GRMOD- (NIL T T T) -8 NIL NIL NIL) (-468 1081851 1082879 1083879 "GRIMAGE" 1085545 T GRIMAGE (NIL) -8 NIL NIL NIL) (-467 1080318 1080578 1080902 "GRDEF" 1081547 T GRDEF (NIL) -7 NIL NIL NIL) (-466 1079762 1079878 1080019 "GRAY" 1080197 T GRAY (NIL) -7 NIL NIL NIL) (-465 1078975 1079355 1079406 "GRALG" 1079559 NIL GRALG (NIL T T) -9 NIL 1079652 NIL) (-464 1078636 1078709 1078872 "GRALG-" 1078877 NIL GRALG- (NIL T T T) -8 NIL NIL NIL) (-463 1075440 1078221 1078399 "GPOLSET" 1078543 NIL GPOLSET (NIL T T T T) -8 NIL NIL NIL) (-462 1074794 1074851 1075109 "GOSPER" 1075377 NIL GOSPER (NIL T T T T T) -7 NIL NIL NIL) (-461 1070553 1071232 1071758 "GMODPOL" 1074493 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL NIL) (-460 1069558 1069742 1069980 "GHENSEL" 1070365 NIL GHENSEL (NIL T T) -7 NIL NIL NIL) (-459 1063609 1064452 1065479 "GENUPS" 1068642 NIL GENUPS (NIL T T) -7 NIL NIL NIL) (-458 1063306 1063357 1063446 "GENUFACT" 1063552 NIL GENUFACT (NIL T) -7 NIL NIL NIL) (-457 1062718 1062795 1062960 "GENPGCD" 1063224 NIL GENPGCD (NIL T T T T) -7 NIL NIL NIL) (-456 1062192 1062227 1062440 "GENMFACT" 1062677 NIL GENMFACT (NIL T T T T T) -7 NIL NIL NIL) (-455 1060760 1061015 1061322 "GENEEZ" 1061935 NIL GENEEZ (NIL T T) -7 NIL NIL NIL) (-454 1054673 1060371 1060533 "GDMP" 1060683 NIL GDMP (NIL NIL T T) -8 NIL NIL NIL) (-453 1044050 1048444 1049550 "GCNAALG" 1053656 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-452 1042477 1043305 1043333 "GCDDOM" 1043588 T GCDDOM (NIL) -9 NIL 1043745 NIL) (-451 1041947 1042074 1042289 "GCDDOM-" 1042294 NIL GCDDOM- (NIL T) -8 NIL NIL NIL) (-450 1040619 1040804 1041108 "GB" 1041726 NIL GB (NIL T T T T) -7 NIL NIL NIL) (-449 1029239 1031565 1033957 "GBINTERN" 1038310 NIL GBINTERN (NIL T T T T) -7 NIL NIL NIL) (-448 1027076 1027368 1027789 "GBF" 1028914 NIL GBF (NIL T T T T) -7 NIL NIL NIL) (-447 1025857 1026022 1026289 "GBEUCLID" 1026892 NIL GBEUCLID (NIL T T T T) -7 NIL NIL NIL) (-446 1025206 1025331 1025480 "GAUSSFAC" 1025728 T GAUSSFAC (NIL) -7 NIL NIL NIL) (-445 1023573 1023875 1024189 "GALUTIL" 1024925 NIL GALUTIL (NIL T) -7 NIL NIL NIL) (-444 1021881 1022155 1022479 "GALPOLYU" 1023300 NIL GALPOLYU (NIL T T) -7 NIL NIL NIL) (-443 1019246 1019536 1019943 "GALFACTU" 1021578 NIL GALFACTU (NIL T T T) -7 NIL NIL NIL) (-442 1011052 1012551 1014159 "GALFACT" 1017678 NIL GALFACT (NIL T) -7 NIL NIL NIL) (-441 1008440 1009098 1009126 "FVFUN" 1010282 T FVFUN (NIL) -9 NIL 1011002 NIL) (-440 1007706 1007888 1007916 "FVC" 1008207 T FVC (NIL) -9 NIL 1008390 NIL) (-439 1007376 1007531 1007599 "FUNDESC" 1007658 T FUNDESC (NIL) -8 NIL NIL NIL) (-438 1007018 1007173 1007254 "FUNCTION" 1007328 NIL FUNCTION (NIL NIL) -8 NIL NIL NIL) (-437 1004789 1005340 1005806 "FT" 1006572 T FT (NIL) -8 NIL NIL NIL) (-436 1003607 1004090 1004293 "FTEM" 1004606 T FTEM (NIL) -8 NIL NIL NIL) (-435 1001863 1002152 1002556 "FSUPFACT" 1003298 NIL FSUPFACT (NIL T T T) -7 NIL NIL NIL) (-434 1000260 1000549 1000881 "FST" 1001551 T FST (NIL) -8 NIL NIL NIL) (-433 999431 999537 999732 "FSRED" 1000142 NIL FSRED (NIL T T) -7 NIL NIL NIL) (-432 998110 998365 998719 "FSPRMELT" 999146 NIL FSPRMELT (NIL T T) -7 NIL NIL NIL) (-431 995195 995633 996132 "FSPECF" 997673 NIL FSPECF (NIL T T) -7 NIL NIL NIL) (-430 977255 985698 985738 "FS" 989586 NIL FS (NIL T) -9 NIL 991875 NIL) (-429 965905 968895 972951 "FS-" 973248 NIL FS- (NIL T T) -8 NIL NIL NIL) (-428 965419 965473 965650 "FSINT" 965846 NIL FSINT (NIL T T) -7 NIL NIL NIL) (-427 963746 964412 964715 "FSERIES" 965198 NIL FSERIES (NIL T T) -8 NIL NIL NIL) (-426 962760 962876 963107 "FSCINT" 963626 NIL FSCINT (NIL T T) -7 NIL NIL NIL) (-425 958994 961704 961745 "FSAGG" 962115 NIL FSAGG (NIL T) -9 NIL 962374 NIL) (-424 956756 957357 958153 "FSAGG-" 958248 NIL FSAGG- (NIL T T) -8 NIL NIL NIL) (-423 955798 955941 956168 "FSAGG2" 956609 NIL FSAGG2 (NIL T T T T) -7 NIL NIL NIL) (-422 953453 953732 954286 "FS2UPS" 955516 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL NIL) (-421 953035 953078 953233 "FS2" 953404 NIL FS2 (NIL T T T T) -7 NIL NIL NIL) (-420 951892 952063 952372 "FS2EXPXP" 952860 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL NIL) (-419 951318 951433 951585 "FRUTIL" 951772 NIL FRUTIL (NIL T) -7 NIL NIL NIL) (-418 942772 946813 948171 "FR" 949992 NIL FR (NIL T) -8 NIL NIL NIL) (-417 937847 940490 940530 "FRNAALG" 941926 NIL FRNAALG (NIL T) -9 NIL 942533 NIL) (-416 933525 934596 935871 "FRNAALG-" 936621 NIL FRNAALG- (NIL T T) -8 NIL NIL NIL) (-415 933163 933206 933333 "FRNAAF2" 933476 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL NIL) (-414 931570 932017 932312 "FRMOD" 932975 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL NIL) (-413 929349 929953 930270 "FRIDEAL" 931361 NIL FRIDEAL (NIL T T T T) -8 NIL NIL NIL) (-412 928544 928631 928920 "FRIDEAL2" 929256 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-411 927677 928091 928132 "FRETRCT" 928137 NIL FRETRCT (NIL T) -9 NIL 928313 NIL) (-410 926789 927020 927371 "FRETRCT-" 927376 NIL FRETRCT- (NIL T T) -8 NIL NIL NIL) (-409 924001 925177 925236 "FRAMALG" 926118 NIL FRAMALG (NIL T T) -9 NIL 926410 NIL) (-408 922135 922590 923220 "FRAMALG-" 923443 NIL FRAMALG- (NIL T T T) -8 NIL NIL NIL) (-407 916092 921610 921886 "FRAC" 921891 NIL FRAC (NIL T) -8 NIL NIL NIL) (-406 915728 915785 915892 "FRAC2" 916029 NIL FRAC2 (NIL T T) -7 NIL NIL NIL) (-405 915364 915421 915528 "FR2" 915665 NIL FR2 (NIL T T) -7 NIL NIL NIL) (-404 910037 912889 912917 "FPS" 914036 T FPS (NIL) -9 NIL 914593 NIL) (-403 909486 909595 909759 "FPS-" 909905 NIL FPS- (NIL T) -8 NIL NIL NIL) (-402 906940 908575 908603 "FPC" 908828 T FPC (NIL) -9 NIL 908970 NIL) (-401 906733 906773 906870 "FPC-" 906875 NIL FPC- (NIL T) -8 NIL NIL NIL) (-400 905611 906221 906262 "FPATMAB" 906267 NIL FPATMAB (NIL T) -9 NIL 906419 NIL) (-399 903311 903787 904213 "FPARFRAC" 905248 NIL FPARFRAC (NIL T T) -8 NIL NIL NIL) (-398 898705 899203 899885 "FORTRAN" 902743 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL NIL) (-397 896421 896921 897460 "FORT" 898186 T FORT (NIL) -7 NIL NIL NIL) (-396 894097 894659 894687 "FORTFN" 895747 T FORTFN (NIL) -9 NIL 896371 NIL) (-395 893861 893911 893939 "FORTCAT" 893998 T FORTCAT (NIL) -9 NIL 894060 NIL) (-394 891994 892477 892867 "FORMULA" 893491 T FORMULA (NIL) -8 NIL NIL NIL) (-393 891782 891812 891881 "FORMULA1" 891958 NIL FORMULA1 (NIL T) -7 NIL NIL NIL) (-392 891305 891357 891530 "FORDER" 891724 NIL FORDER (NIL T T T T) -7 NIL NIL NIL) (-391 890401 890565 890758 "FOP" 891132 T FOP (NIL) -7 NIL NIL NIL) (-390 889009 889681 889855 "FNLA" 890283 NIL FNLA (NIL NIL NIL T) -8 NIL NIL NIL) (-389 887764 888153 888181 "FNCAT" 888641 T FNCAT (NIL) -9 NIL 888901 NIL) (-388 887330 887723 887751 "FNAME" 887756 T FNAME (NIL) -8 NIL NIL NIL) (-387 885993 886922 886950 "FMTC" 886955 T FMTC (NIL) -9 NIL 886991 NIL) (-386 882354 883516 884145 "FMONOID" 885397 NIL FMONOID (NIL T) -8 NIL NIL NIL) (-385 881573 882096 882245 "FM" 882250 NIL FM (NIL T T) -8 NIL NIL NIL) (-384 878997 879643 879671 "FMFUN" 880815 T FMFUN (NIL) -9 NIL 881523 NIL) (-383 878266 878447 878475 "FMC" 878765 T FMC (NIL) -9 NIL 878947 NIL) (-382 875460 876294 876348 "FMCAT" 877543 NIL FMCAT (NIL T T) -9 NIL 878038 NIL) (-381 874353 875226 875326 "FM1" 875405 NIL FM1 (NIL T T) -8 NIL NIL NIL) (-380 872127 872543 873037 "FLOATRP" 873904 NIL FLOATRP (NIL T) -7 NIL NIL NIL) (-379 865751 869856 870477 "FLOAT" 871526 T FLOAT (NIL) -8 NIL NIL NIL) (-378 863189 863689 864267 "FLOATCP" 865218 NIL FLOATCP (NIL T) -7 NIL NIL NIL) (-377 861998 862802 862843 "FLINEXP" 862848 NIL FLINEXP (NIL T) -9 NIL 862941 NIL) (-376 861152 861387 861715 "FLINEXP-" 861720 NIL FLINEXP- (NIL T T) -8 NIL NIL NIL) (-375 860228 860372 860596 "FLASORT" 861004 NIL FLASORT (NIL T T) -7 NIL NIL NIL) (-374 857445 858287 858339 "FLALG" 859566 NIL FLALG (NIL T T) -9 NIL 860033 NIL) (-373 851229 854931 854972 "FLAGG" 856234 NIL FLAGG (NIL T) -9 NIL 856886 NIL) (-372 849955 850294 850784 "FLAGG-" 850789 NIL FLAGG- (NIL T T) -8 NIL NIL NIL) (-371 848997 849140 849367 "FLAGG2" 849808 NIL FLAGG2 (NIL T T T T) -7 NIL NIL NIL) (-370 845972 846946 847005 "FINRALG" 848133 NIL FINRALG (NIL T T) -9 NIL 848641 NIL) (-369 845132 845361 845700 "FINRALG-" 845705 NIL FINRALG- (NIL T T T) -8 NIL NIL NIL) (-368 844538 844751 844779 "FINITE" 844975 T FINITE (NIL) -9 NIL 845082 NIL) (-367 836996 839157 839197 "FINAALG" 842864 NIL FINAALG (NIL T) -9 NIL 844317 NIL) (-366 832337 833378 834522 "FINAALG-" 835901 NIL FINAALG- (NIL T T) -8 NIL NIL NIL) (-365 831732 832092 832195 "FILE" 832267 NIL FILE (NIL T) -8 NIL NIL NIL) (-364 830416 830728 830782 "FILECAT" 831466 NIL FILECAT (NIL T T) -9 NIL 831682 NIL) (-363 828284 829778 829806 "FIELD" 829846 T FIELD (NIL) -9 NIL 829926 NIL) (-362 826904 827289 827800 "FIELD-" 827805 NIL FIELD- (NIL T) -8 NIL NIL NIL) (-361 824782 825539 825886 "FGROUP" 826590 NIL FGROUP (NIL T) -8 NIL NIL NIL) (-360 823872 824036 824256 "FGLMICPK" 824614 NIL FGLMICPK (NIL T NIL) -7 NIL NIL NIL) (-359 819739 823797 823854 "FFX" 823859 NIL FFX (NIL T NIL) -8 NIL NIL NIL) (-358 819340 819401 819536 "FFSLPE" 819672 NIL FFSLPE (NIL T T T) -7 NIL NIL NIL) (-357 815333 816112 816908 "FFPOLY" 818576 NIL FFPOLY (NIL T) -7 NIL NIL NIL) (-356 814837 814873 815082 "FFPOLY2" 815291 NIL FFPOLY2 (NIL T T) -7 NIL NIL NIL) (-355 810723 814756 814819 "FFP" 814824 NIL FFP (NIL T NIL) -8 NIL NIL NIL) (-354 806156 810634 810698 "FF" 810703 NIL FF (NIL NIL NIL) -8 NIL NIL NIL) (-353 801317 805499 805689 "FFNBX" 806010 NIL FFNBX (NIL T NIL) -8 NIL NIL NIL) (-352 796291 800452 800710 "FFNBP" 801171 NIL FFNBP (NIL T NIL) -8 NIL NIL NIL) (-351 790959 795575 795786 "FFNB" 796124 NIL FFNB (NIL NIL NIL) -8 NIL NIL NIL) (-350 789791 789989 790304 "FFINTBAS" 790756 NIL FFINTBAS (NIL T T T) -7 NIL NIL NIL) (-349 786019 788198 788226 "FFIELDC" 788846 T FFIELDC (NIL) -9 NIL 789222 NIL) (-348 784682 785052 785549 "FFIELDC-" 785554 NIL FFIELDC- (NIL T) -8 NIL NIL NIL) (-347 784252 784297 784421 "FFHOM" 784624 NIL FFHOM (NIL T T T) -7 NIL NIL NIL) (-346 781950 782434 782951 "FFF" 783767 NIL FFF (NIL T) -7 NIL NIL NIL) (-345 777603 781692 781793 "FFCGX" 781893 NIL FFCGX (NIL T NIL) -8 NIL NIL NIL) (-344 773271 777335 777442 "FFCGP" 777546 NIL FFCGP (NIL T NIL) -8 NIL NIL NIL) (-343 768489 772998 773106 "FFCG" 773207 NIL FFCG (NIL NIL NIL) -8 NIL NIL NIL) (-342 750322 759360 759446 "FFCAT" 764611 NIL FFCAT (NIL T T T) -9 NIL 766062 NIL) (-341 745520 746567 747881 "FFCAT-" 749111 NIL FFCAT- (NIL T T T T) -8 NIL NIL NIL) (-340 744931 744974 745209 "FFCAT2" 745471 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-339 734142 737903 739123 "FEXPR" 743783 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL NIL) (-338 733142 733577 733618 "FEVALAB" 733702 NIL FEVALAB (NIL T) -9 NIL 733963 NIL) (-337 732301 732511 732849 "FEVALAB-" 732854 NIL FEVALAB- (NIL T T) -8 NIL NIL NIL) (-336 730894 731684 731887 "FDIV" 732200 NIL FDIV (NIL T T T T) -8 NIL NIL NIL) (-335 727960 728675 728790 "FDIVCAT" 730358 NIL FDIVCAT (NIL T T T T) -9 NIL 730795 NIL) (-334 727722 727749 727919 "FDIVCAT-" 727924 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL NIL) (-333 726942 727029 727306 "FDIV2" 727629 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-332 725628 725887 726176 "FCPAK1" 726673 T FCPAK1 (NIL) -7 NIL NIL NIL) (-331 724756 725128 725269 "FCOMP" 725519 NIL FCOMP (NIL T) -8 NIL NIL NIL) (-330 708493 711906 715444 "FC" 721238 T FC (NIL) -8 NIL NIL NIL) (-329 701072 705057 705097 "FAXF" 706899 NIL FAXF (NIL T) -9 NIL 707591 NIL) (-328 698351 699006 699831 "FAXF-" 700296 NIL FAXF- (NIL T T) -8 NIL NIL NIL) (-327 693451 697727 697903 "FARRAY" 698208 NIL FARRAY (NIL T) -8 NIL NIL NIL) (-326 688704 690736 690789 "FAMR" 691812 NIL FAMR (NIL T T) -9 NIL 692272 NIL) (-325 687594 687896 688331 "FAMR-" 688336 NIL FAMR- (NIL T T T) -8 NIL NIL NIL) (-324 686790 687516 687569 "FAMONOID" 687574 NIL FAMONOID (NIL T) -8 NIL NIL NIL) (-323 684602 685286 685339 "FAMONC" 686280 NIL FAMONC (NIL T T) -9 NIL 686666 NIL) (-322 683294 684356 684493 "FAGROUP" 684498 NIL FAGROUP (NIL T) -8 NIL NIL NIL) (-321 681089 681408 681811 "FACUTIL" 682975 NIL FACUTIL (NIL T T T T) -7 NIL NIL NIL) (-320 680188 680373 680595 "FACTFUNC" 680899 NIL FACTFUNC (NIL T) -7 NIL NIL NIL) (-319 672593 679439 679651 "EXPUPXS" 680044 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-318 670076 670616 671202 "EXPRTUBE" 672027 T EXPRTUBE (NIL) -7 NIL NIL NIL) (-317 666270 666862 667599 "EXPRODE" 669415 NIL EXPRODE (NIL T T) -7 NIL NIL NIL) (-316 651644 664925 665353 "EXPR" 665874 NIL EXPR (NIL T) -8 NIL NIL NIL) (-315 646051 646638 647451 "EXPR2UPS" 650942 NIL EXPR2UPS (NIL T T) -7 NIL NIL NIL) (-314 645687 645744 645851 "EXPR2" 645988 NIL EXPR2 (NIL T T) -7 NIL NIL NIL) (-313 637092 644819 645116 "EXPEXPAN" 645524 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL NIL) (-312 636919 637049 637078 "EXIT" 637083 T EXIT (NIL) -8 NIL NIL NIL) (-311 636426 636643 636734 "EXITAST" 636848 T EXITAST (NIL) -8 NIL NIL NIL) (-310 636053 636115 636228 "EVALCYC" 636358 NIL EVALCYC (NIL T) -7 NIL NIL NIL) (-309 635594 635712 635753 "EVALAB" 635923 NIL EVALAB (NIL T) -9 NIL 636027 NIL) (-308 635075 635197 635418 "EVALAB-" 635423 NIL EVALAB- (NIL T T) -8 NIL NIL NIL) (-307 632543 633811 633839 "EUCDOM" 634394 T EUCDOM (NIL) -9 NIL 634744 NIL) (-306 630948 631390 631980 "EUCDOM-" 631985 NIL EUCDOM- (NIL T) -8 NIL NIL NIL) (-305 618488 621246 623996 "ESTOOLS" 628218 T ESTOOLS (NIL) -7 NIL NIL NIL) (-304 618120 618177 618286 "ESTOOLS2" 618425 NIL ESTOOLS2 (NIL T T) -7 NIL NIL NIL) (-303 617871 617913 617993 "ESTOOLS1" 618072 NIL ESTOOLS1 (NIL T) -7 NIL NIL NIL) (-302 611776 613504 613532 "ES" 616300 T ES (NIL) -9 NIL 617709 NIL) (-301 606724 608010 609827 "ES-" 609991 NIL ES- (NIL T) -8 NIL NIL NIL) (-300 603099 603859 604639 "ESCONT" 605964 T ESCONT (NIL) -7 NIL NIL NIL) (-299 602844 602876 602958 "ESCONT1" 603061 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL NIL) (-298 602519 602569 602669 "ES2" 602788 NIL ES2 (NIL T T) -7 NIL NIL NIL) (-297 602149 602207 602316 "ES1" 602455 NIL ES1 (NIL T T) -7 NIL NIL NIL) (-296 601365 601494 601670 "ERROR" 601993 T ERROR (NIL) -7 NIL NIL NIL) (-295 594868 601224 601315 "EQTBL" 601320 NIL EQTBL (NIL T T) -8 NIL NIL NIL) (-294 587425 590182 591631 "EQ" 593452 NIL -3303 (NIL T) -8 NIL NIL NIL) (-293 587057 587114 587223 "EQ2" 587362 NIL EQ2 (NIL T T) -7 NIL NIL NIL) (-292 582349 583395 584488 "EP" 585996 NIL EP (NIL T) -7 NIL NIL NIL) (-291 580931 581232 581549 "ENV" 582052 T ENV (NIL) -8 NIL NIL NIL) (-290 580110 580630 580658 "ENTIRER" 580663 T ENTIRER (NIL) -9 NIL 580709 NIL) (-289 576612 578065 578435 "EMR" 579909 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL NIL) (-288 575756 575941 575995 "ELTAGG" 576375 NIL ELTAGG (NIL T T) -9 NIL 576586 NIL) (-287 575475 575537 575678 "ELTAGG-" 575683 NIL ELTAGG- (NIL T T T) -8 NIL NIL NIL) (-286 575264 575293 575347 "ELTAB" 575431 NIL ELTAB (NIL T T) -9 NIL NIL NIL) (-285 574390 574536 574735 "ELFUTS" 575115 NIL ELFUTS (NIL T T) -7 NIL NIL NIL) (-284 574132 574188 574216 "ELEMFUN" 574321 T ELEMFUN (NIL) -9 NIL NIL NIL) (-283 574002 574023 574091 "ELEMFUN-" 574096 NIL ELEMFUN- (NIL T) -8 NIL NIL NIL) (-282 568893 572102 572143 "ELAGG" 573083 NIL ELAGG (NIL T) -9 NIL 573546 NIL) (-281 567178 567612 568275 "ELAGG-" 568280 NIL ELAGG- (NIL T T) -8 NIL NIL NIL) (-280 565835 566115 566410 "ELABEXPR" 566903 T ELABEXPR (NIL) -8 NIL NIL NIL) (-279 558701 560502 561329 "EFUPXS" 565111 NIL EFUPXS (NIL T T T T) -8 NIL NIL NIL) (-278 552151 553952 554762 "EFULS" 557977 NIL EFULS (NIL T T T) -8 NIL NIL NIL) (-277 549573 549931 550410 "EFSTRUC" 551783 NIL EFSTRUC (NIL T T) -7 NIL NIL NIL) (-276 538645 540210 541770 "EF" 548088 NIL EF (NIL T T) -7 NIL NIL NIL) (-275 537746 538130 538279 "EAB" 538516 T EAB (NIL) -8 NIL NIL NIL) (-274 536955 537705 537733 "E04UCFA" 537738 T E04UCFA (NIL) -8 NIL NIL NIL) (-273 536164 536914 536942 "E04NAFA" 536947 T E04NAFA (NIL) -8 NIL NIL NIL) (-272 535373 536123 536151 "E04MBFA" 536156 T E04MBFA (NIL) -8 NIL NIL NIL) (-271 534582 535332 535360 "E04JAFA" 535365 T E04JAFA (NIL) -8 NIL NIL NIL) (-270 533793 534541 534569 "E04GCFA" 534574 T E04GCFA (NIL) -8 NIL NIL NIL) (-269 533004 533752 533780 "E04FDFA" 533785 T E04FDFA (NIL) -8 NIL NIL NIL) (-268 532213 532963 532991 "E04DGFA" 532996 T E04DGFA (NIL) -8 NIL NIL NIL) (-267 526391 527738 529102 "E04AGNT" 530869 T E04AGNT (NIL) -7 NIL NIL NIL) (-266 525097 525577 525617 "DVARCAT" 526092 NIL DVARCAT (NIL T) -9 NIL 526291 NIL) (-265 524301 524513 524827 "DVARCAT-" 524832 NIL DVARCAT- (NIL T T) -8 NIL NIL NIL) (-264 517201 524100 524229 "DSMP" 524234 NIL DSMP (NIL T T T) -8 NIL NIL NIL) (-263 512011 513146 514214 "DROPT" 516153 T DROPT (NIL) -8 NIL NIL NIL) (-262 511676 511735 511833 "DROPT1" 511946 NIL DROPT1 (NIL T) -7 NIL NIL NIL) (-261 506791 507917 509054 "DROPT0" 510559 T DROPT0 (NIL) -7 NIL NIL NIL) (-260 505136 505461 505847 "DRAWPT" 506425 T DRAWPT (NIL) -7 NIL NIL NIL) (-259 499723 500646 501725 "DRAW" 504110 NIL DRAW (NIL T) -7 NIL NIL NIL) (-258 499356 499409 499527 "DRAWHACK" 499664 NIL DRAWHACK (NIL T) -7 NIL NIL NIL) (-257 498087 498356 498647 "DRAWCX" 499085 T DRAWCX (NIL) -7 NIL NIL NIL) (-256 497603 497671 497822 "DRAWCURV" 498013 NIL DRAWCURV (NIL T T) -7 NIL NIL NIL) (-255 488074 490033 492148 "DRAWCFUN" 495508 T DRAWCFUN (NIL) -7 NIL NIL NIL) (-254 484887 486769 486810 "DQAGG" 487439 NIL DQAGG (NIL T) -9 NIL 487712 NIL) (-253 473166 479865 479948 "DPOLCAT" 481800 NIL DPOLCAT (NIL T T T T) -9 NIL 482345 NIL) (-252 468005 469351 471309 "DPOLCAT-" 471314 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL NIL) (-251 461160 467866 467964 "DPMO" 467969 NIL DPMO (NIL NIL T T) -8 NIL NIL NIL) (-250 454218 460940 461107 "DPMM" 461112 NIL DPMM (NIL NIL T T T) -8 NIL NIL NIL) (-249 453850 454137 454185 "DOMCTOR" 454190 T DOMCTOR (NIL) -8 NIL NIL NIL) (-248 453145 453372 453509 "DOMAIN" 453733 T DOMAIN (NIL) -8 NIL NIL NIL) (-247 446896 452780 452932 "DMP" 453046 NIL DMP (NIL NIL T) -8 NIL NIL NIL) (-246 446496 446552 446696 "DLP" 446834 NIL DLP (NIL T) -7 NIL NIL NIL) (-245 440366 445823 446013 "DLIST" 446338 NIL DLIST (NIL T) -8 NIL NIL NIL) (-244 437210 439219 439260 "DLAGG" 439810 NIL DLAGG (NIL T) -9 NIL 440040 NIL) (-243 436023 436653 436681 "DIVRING" 436773 T DIVRING (NIL) -9 NIL 436856 NIL) (-242 435260 435450 435750 "DIVRING-" 435755 NIL DIVRING- (NIL T) -8 NIL NIL NIL) (-241 433362 433719 434125 "DISPLAY" 434874 T DISPLAY (NIL) -7 NIL NIL NIL) (-240 427304 433276 433339 "DIRPROD" 433344 NIL DIRPROD (NIL NIL T) -8 NIL NIL NIL) (-239 426152 426355 426620 "DIRPROD2" 427097 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL NIL) (-238 415415 421367 421420 "DIRPCAT" 421830 NIL DIRPCAT (NIL NIL T) -9 NIL 422670 NIL) (-237 412741 413383 414264 "DIRPCAT-" 414601 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL NIL) (-236 412028 412188 412374 "DIOSP" 412575 T DIOSP (NIL) -7 NIL NIL NIL) (-235 408730 410940 410981 "DIOPS" 411415 NIL DIOPS (NIL T) -9 NIL 411644 NIL) (-234 408279 408393 408584 "DIOPS-" 408589 NIL DIOPS- (NIL T T) -8 NIL NIL NIL) (-233 407171 407765 407793 "DIFRING" 407980 T DIFRING (NIL) -9 NIL 408090 NIL) (-232 406817 406894 407046 "DIFRING-" 407051 NIL DIFRING- (NIL T) -8 NIL NIL NIL) (-231 404622 405860 405901 "DIFEXT" 406264 NIL DIFEXT (NIL T) -9 NIL 406558 NIL) (-230 402907 403335 404001 "DIFEXT-" 404006 NIL DIFEXT- (NIL T T) -8 NIL NIL NIL) (-229 400229 402439 402480 "DIAGG" 402485 NIL DIAGG (NIL T) -9 NIL 402505 NIL) (-228 399613 399770 400022 "DIAGG-" 400027 NIL DIAGG- (NIL T T) -8 NIL NIL NIL) (-227 395078 398572 398849 "DHMATRIX" 399382 NIL DHMATRIX (NIL T) -8 NIL NIL NIL) (-226 390690 391599 392609 "DFSFUN" 394088 T DFSFUN (NIL) -7 NIL NIL NIL) (-225 385806 389621 389933 "DFLOAT" 390398 T DFLOAT (NIL) -8 NIL NIL NIL) (-224 384034 384315 384711 "DFINTTLS" 385514 NIL DFINTTLS (NIL T T) -7 NIL NIL NIL) (-223 381098 382055 382455 "DERHAM" 383700 NIL DERHAM (NIL T NIL) -8 NIL NIL NIL) (-222 378947 380873 380962 "DEQUEUE" 381042 NIL DEQUEUE (NIL T) -8 NIL NIL NIL) (-221 378162 378295 378491 "DEGRED" 378809 NIL DEGRED (NIL T T) -7 NIL NIL NIL) (-220 374557 375302 376155 "DEFINTRF" 377390 NIL DEFINTRF (NIL T) -7 NIL NIL NIL) (-219 372084 372553 373152 "DEFINTEF" 374076 NIL DEFINTEF (NIL T T) -7 NIL NIL NIL) (-218 371461 371704 371819 "DEFAST" 371989 T DEFAST (NIL) -8 NIL NIL NIL) (-217 365500 371056 371205 "DECIMAL" 371332 T DECIMAL (NIL) -8 NIL NIL NIL) (-216 363012 363470 363976 "DDFACT" 365044 NIL DDFACT (NIL T T) -7 NIL NIL NIL) (-215 362608 362651 362802 "DBLRESP" 362963 NIL DBLRESP (NIL T T T T) -7 NIL NIL NIL) (-214 360507 360841 361201 "DBASE" 362375 NIL DBASE (NIL T) -8 NIL NIL NIL) (-213 359776 359987 360133 "DATAARY" 360406 NIL DATAARY (NIL NIL T) -8 NIL NIL NIL) (-212 358909 359735 359763 "D03FAFA" 359768 T D03FAFA (NIL) -8 NIL NIL NIL) (-211 358043 358868 358896 "D03EEFA" 358901 T D03EEFA (NIL) -8 NIL NIL NIL) (-210 355993 356459 356948 "D03AGNT" 357574 T D03AGNT (NIL) -7 NIL NIL NIL) (-209 355309 355952 355980 "D02EJFA" 355985 T D02EJFA (NIL) -8 NIL NIL NIL) (-208 354625 355268 355296 "D02CJFA" 355301 T D02CJFA (NIL) -8 NIL NIL NIL) (-207 353941 354584 354612 "D02BHFA" 354617 T D02BHFA (NIL) -8 NIL NIL NIL) (-206 353257 353900 353928 "D02BBFA" 353933 T D02BBFA (NIL) -8 NIL NIL NIL) (-205 346455 348043 349649 "D02AGNT" 351671 T D02AGNT (NIL) -7 NIL NIL NIL) (-204 344224 344746 345292 "D01WGTS" 345929 T D01WGTS (NIL) -7 NIL NIL NIL) (-203 343319 344183 344211 "D01TRNS" 344216 T D01TRNS (NIL) -8 NIL NIL NIL) (-202 342414 343278 343306 "D01GBFA" 343311 T D01GBFA (NIL) -8 NIL NIL NIL) (-201 341509 342373 342401 "D01FCFA" 342406 T D01FCFA (NIL) -8 NIL NIL NIL) (-200 340604 341468 341496 "D01ASFA" 341501 T D01ASFA (NIL) -8 NIL NIL NIL) (-199 339699 340563 340591 "D01AQFA" 340596 T D01AQFA (NIL) -8 NIL NIL NIL) (-198 338794 339658 339686 "D01APFA" 339691 T D01APFA (NIL) -8 NIL NIL NIL) (-197 337889 338753 338781 "D01ANFA" 338786 T D01ANFA (NIL) -8 NIL NIL NIL) (-196 336984 337848 337876 "D01AMFA" 337881 T D01AMFA (NIL) -8 NIL NIL NIL) (-195 336079 336943 336971 "D01ALFA" 336976 T D01ALFA (NIL) -8 NIL NIL NIL) (-194 335174 336038 336066 "D01AKFA" 336071 T D01AKFA (NIL) -8 NIL NIL NIL) (-193 334269 335133 335161 "D01AJFA" 335166 T D01AJFA (NIL) -8 NIL NIL NIL) (-192 327566 329117 330678 "D01AGNT" 332728 T D01AGNT (NIL) -7 NIL NIL NIL) (-191 326903 327031 327183 "CYCLOTOM" 327434 T CYCLOTOM (NIL) -7 NIL NIL NIL) (-190 323638 324351 325078 "CYCLES" 326196 T CYCLES (NIL) -7 NIL NIL NIL) (-189 322950 323084 323255 "CVMP" 323499 NIL CVMP (NIL T) -7 NIL NIL NIL) (-188 320721 320979 321355 "CTRIGMNP" 322678 NIL CTRIGMNP (NIL T T) -7 NIL NIL NIL) (-187 320212 320512 320586 "CTOR" 320667 T CTOR (NIL) -8 NIL NIL NIL) (-186 319748 319943 320044 "CTORKIND" 320131 T CTORKIND (NIL) -8 NIL NIL NIL) (-185 319096 319355 319383 "CTORCAT" 319565 T CTORCAT (NIL) -9 NIL 319678 NIL) (-184 318694 318805 318964 "CTORCAT-" 318969 NIL CTORCAT- (NIL T) -8 NIL NIL NIL) (-183 318210 318397 318495 "CTORCALL" 318616 T CTORCALL (NIL) -8 NIL NIL NIL) (-182 317584 317683 317836 "CSTTOOLS" 318107 NIL CSTTOOLS (NIL T T) -7 NIL NIL NIL) (-181 313383 314040 314798 "CRFP" 316896 NIL CRFP (NIL T T) -7 NIL NIL NIL) (-180 312885 313104 313196 "CRCEAST" 313311 T CRCEAST (NIL) -8 NIL NIL NIL) (-179 311932 312117 312345 "CRAPACK" 312689 NIL CRAPACK (NIL T) -7 NIL NIL NIL) (-178 311316 311417 311621 "CPMATCH" 311808 NIL CPMATCH (NIL T T T) -7 NIL NIL NIL) (-177 311041 311069 311175 "CPIMA" 311282 NIL CPIMA (NIL T T T) -7 NIL NIL NIL) (-176 307405 308077 308795 "COORDSYS" 310376 NIL COORDSYS (NIL T) -7 NIL NIL NIL) (-175 306789 306918 307068 "CONTOUR" 307275 T CONTOUR (NIL) -8 NIL NIL NIL) (-174 302715 304792 305284 "CONTFRAC" 306329 NIL CONTFRAC (NIL T) -8 NIL NIL NIL) (-173 302595 302616 302644 "CONDUIT" 302681 T CONDUIT (NIL) -9 NIL NIL NIL) (-172 301768 302288 302316 "COMRING" 302321 T COMRING (NIL) -9 NIL 302373 NIL) (-171 300849 301126 301310 "COMPPROP" 301604 T COMPPROP (NIL) -8 NIL NIL NIL) (-170 300510 300545 300673 "COMPLPAT" 300808 NIL COMPLPAT (NIL T T T) -7 NIL NIL NIL) (-169 290567 300319 300428 "COMPLEX" 300433 NIL COMPLEX (NIL T) -8 NIL NIL NIL) (-168 290203 290260 290367 "COMPLEX2" 290504 NIL COMPLEX2 (NIL T T) -7 NIL NIL NIL) (-167 289921 289956 290054 "COMPFACT" 290162 NIL COMPFACT (NIL T T) -7 NIL NIL NIL) (-166 274083 284303 284343 "COMPCAT" 285347 NIL COMPCAT (NIL T) -9 NIL 286743 NIL) (-165 263599 266522 270149 "COMPCAT-" 270505 NIL COMPCAT- (NIL T T) -8 NIL NIL NIL) (-164 263328 263356 263459 "COMMUPC" 263565 NIL COMMUPC (NIL T T T) -7 NIL NIL NIL) (-163 263123 263156 263215 "COMMONOP" 263289 T COMMONOP (NIL) -7 NIL NIL NIL) (-162 262706 262874 262961 "COMM" 263056 T COMM (NIL) -8 NIL NIL NIL) (-161 262310 262510 262585 "COMMAAST" 262651 T COMMAAST (NIL) -8 NIL NIL NIL) (-160 261559 261753 261781 "COMBOPC" 262119 T COMBOPC (NIL) -9 NIL 262294 NIL) (-159 260455 260665 260907 "COMBINAT" 261349 NIL COMBINAT (NIL T) -7 NIL NIL NIL) (-158 256653 257226 257866 "COMBF" 259877 NIL COMBF (NIL T T) -7 NIL NIL NIL) (-157 255439 255769 256004 "COLOR" 256438 T COLOR (NIL) -8 NIL NIL NIL) (-156 254942 255160 255252 "COLONAST" 255367 T COLONAST (NIL) -8 NIL NIL NIL) (-155 254582 254629 254754 "CMPLXRT" 254889 NIL CMPLXRT (NIL T T) -7 NIL NIL NIL) (-154 254057 254282 254381 "CLLCTAST" 254503 T CLLCTAST (NIL) -8 NIL NIL NIL) (-153 249559 250587 251667 "CLIP" 252997 T CLIP (NIL) -7 NIL NIL NIL) (-152 247941 248665 248904 "CLIF" 249386 NIL CLIF (NIL NIL T NIL) -8 NIL NIL NIL) (-151 244163 246087 246128 "CLAGG" 247057 NIL CLAGG (NIL T) -9 NIL 247593 NIL) (-150 242585 243042 243625 "CLAGG-" 243630 NIL CLAGG- (NIL T T) -8 NIL NIL NIL) (-149 242129 242214 242354 "CINTSLPE" 242494 NIL CINTSLPE (NIL T T) -7 NIL NIL NIL) (-148 239630 240101 240649 "CHVAR" 241657 NIL CHVAR (NIL T T T) -7 NIL NIL NIL) (-147 238873 239393 239421 "CHARZ" 239426 T CHARZ (NIL) -9 NIL 239441 NIL) (-146 238627 238667 238745 "CHARPOL" 238827 NIL CHARPOL (NIL T) -7 NIL NIL NIL) (-145 237754 238307 238335 "CHARNZ" 238382 T CHARNZ (NIL) -9 NIL 238438 NIL) (-144 235743 236444 236779 "CHAR" 237439 T CHAR (NIL) -8 NIL NIL NIL) (-143 235469 235530 235558 "CFCAT" 235669 T CFCAT (NIL) -9 NIL NIL NIL) (-142 234714 234825 235007 "CDEN" 235353 NIL CDEN (NIL T T T) -7 NIL NIL NIL) (-141 230706 233867 234147 "CCLASS" 234454 T CCLASS (NIL) -8 NIL NIL NIL) (-140 230013 230156 230319 "CATEGORY" 230563 T -10 (NIL) -8 NIL NIL NIL) (-139 229645 229932 229980 "CATCTOR" 229985 T CATCTOR (NIL) -8 NIL NIL NIL) (-138 229119 229345 229444 "CATAST" 229566 T CATAST (NIL) -8 NIL NIL NIL) (-137 228622 228840 228932 "CASEAST" 229047 T CASEAST (NIL) -8 NIL NIL NIL) (-136 223674 224651 225404 "CARTEN" 227925 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL NIL) (-135 222782 222930 223151 "CARTEN2" 223521 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL NIL) (-134 221124 221932 222189 "CARD" 222545 T CARD (NIL) -8 NIL NIL NIL) (-133 220727 220928 221003 "CAPSLAST" 221069 T CAPSLAST (NIL) -8 NIL NIL NIL) (-132 220099 220427 220455 "CACHSET" 220587 T CACHSET (NIL) -9 NIL 220664 NIL) (-131 219595 219891 219919 "CABMON" 219969 T CABMON (NIL) -9 NIL 220025 NIL) (-130 219095 219299 219409 "BYTEORD" 219505 T BYTEORD (NIL) -8 NIL NIL NIL) (-129 218118 218641 218777 "BYTE" 218940 T BYTE (NIL) -8 NIL NIL 219056) (-128 213519 217623 217795 "BYTEBUF" 217966 T BYTEBUF (NIL) -8 NIL NIL NIL) (-127 211076 213211 213318 "BTREE" 213445 NIL BTREE (NIL T) -8 NIL NIL NIL) (-126 208574 210724 210846 "BTOURN" 210986 NIL BTOURN (NIL T) -8 NIL NIL NIL) (-125 205991 208044 208085 "BTCAT" 208153 NIL BTCAT (NIL T) -9 NIL 208230 NIL) (-124 205658 205738 205887 "BTCAT-" 205892 NIL BTCAT- (NIL T T) -8 NIL NIL NIL) (-123 200950 204801 204829 "BTAGG" 205051 T BTAGG (NIL) -9 NIL 205212 NIL) (-122 200440 200565 200771 "BTAGG-" 200776 NIL BTAGG- (NIL T) -8 NIL NIL NIL) (-121 197484 199718 199933 "BSTREE" 200257 NIL BSTREE (NIL T) -8 NIL NIL NIL) (-120 196622 196748 196932 "BRILL" 197340 NIL BRILL (NIL T) -7 NIL NIL NIL) (-119 193321 195348 195389 "BRAGG" 196038 NIL BRAGG (NIL T) -9 NIL 196296 NIL) (-118 191850 192256 192811 "BRAGG-" 192816 NIL BRAGG- (NIL T T) -8 NIL NIL NIL) (-117 185114 191196 191380 "BPADICRT" 191698 NIL BPADICRT (NIL NIL) -8 NIL NIL NIL) (-116 183464 185051 185096 "BPADIC" 185101 NIL BPADIC (NIL NIL) -8 NIL NIL NIL) (-115 183162 183192 183306 "BOUNDZRO" 183428 NIL BOUNDZRO (NIL T T) -7 NIL NIL NIL) (-114 178677 179768 180635 "BOP" 182315 T BOP (NIL) -8 NIL NIL NIL) (-113 176298 176742 177262 "BOP1" 178190 NIL BOP1 (NIL T) -7 NIL NIL NIL) (-112 175000 175722 175915 "BOOLEAN" 176125 T BOOLEAN (NIL) -8 NIL NIL NIL) (-111 174362 174740 174794 "BMODULE" 174799 NIL BMODULE (NIL T T) -9 NIL 174864 NIL) (-110 170192 174160 174233 "BITS" 174309 T BITS (NIL) -8 NIL NIL NIL) (-109 169604 169726 169868 "BINDING" 170070 T BINDING (NIL) -8 NIL NIL NIL) (-108 163646 169201 169349 "BINARY" 169476 T BINARY (NIL) -8 NIL NIL NIL) (-107 161473 162901 162942 "BGAGG" 163202 NIL BGAGG (NIL T) -9 NIL 163339 NIL) (-106 161304 161336 161427 "BGAGG-" 161432 NIL BGAGG- (NIL T T) -8 NIL NIL NIL) (-105 160402 160688 160893 "BFUNCT" 161119 T BFUNCT (NIL) -8 NIL NIL NIL) (-104 159092 159270 159558 "BEZOUT" 160226 NIL BEZOUT (NIL T T T T T) -7 NIL NIL NIL) (-103 155609 157944 158274 "BBTREE" 158795 NIL BBTREE (NIL T) -8 NIL NIL NIL) (-102 155343 155396 155424 "BASTYPE" 155543 T BASTYPE (NIL) -9 NIL NIL NIL) (-101 155196 155224 155297 "BASTYPE-" 155302 NIL BASTYPE- (NIL T) -8 NIL NIL NIL) (-100 154630 154706 154858 "BALFACT" 155107 NIL BALFACT (NIL T T) -7 NIL NIL NIL) (-99 153513 154045 154231 "AUTOMOR" 154475 NIL AUTOMOR (NIL T) -8 NIL NIL NIL) (-98 153239 153244 153270 "ATTREG" 153275 T ATTREG (NIL) -9 NIL NIL NIL) (-97 151518 151936 152288 "ATTRBUT" 152905 T ATTRBUT (NIL) -8 NIL NIL NIL) (-96 151153 151346 151412 "ATTRAST" 151470 T ATTRAST (NIL) -8 NIL NIL NIL) (-95 150689 150802 150828 "ATRIG" 151029 T ATRIG (NIL) -9 NIL NIL NIL) (-94 150498 150539 150626 "ATRIG-" 150631 NIL ATRIG- (NIL T) -8 NIL NIL NIL) (-93 150169 150329 150355 "ASTCAT" 150360 T ASTCAT (NIL) -9 NIL 150390 NIL) (-92 149896 149955 150074 "ASTCAT-" 150079 NIL ASTCAT- (NIL T) -8 NIL NIL NIL) (-91 148093 149672 149760 "ASTACK" 149839 NIL ASTACK (NIL T) -8 NIL NIL NIL) (-90 146598 146895 147260 "ASSOCEQ" 147775 NIL ASSOCEQ (NIL T T) -7 NIL NIL NIL) (-89 145630 146257 146381 "ASP9" 146505 NIL ASP9 (NIL NIL) -8 NIL NIL NIL) (-88 145394 145578 145617 "ASP8" 145622 NIL ASP8 (NIL NIL) -8 NIL NIL NIL) (-87 144263 144999 145141 "ASP80" 145283 NIL ASP80 (NIL NIL) -8 NIL NIL NIL) (-86 143162 143898 144030 "ASP7" 144162 NIL ASP7 (NIL NIL) -8 NIL NIL NIL) (-85 142116 142839 142957 "ASP78" 143075 NIL ASP78 (NIL NIL) -8 NIL NIL NIL) (-84 141085 141796 141913 "ASP77" 142030 NIL ASP77 (NIL NIL) -8 NIL NIL NIL) (-83 139997 140723 140854 "ASP74" 140985 NIL ASP74 (NIL NIL) -8 NIL NIL NIL) (-82 138897 139632 139764 "ASP73" 139896 NIL ASP73 (NIL NIL) -8 NIL NIL NIL) (-81 138001 138723 138823 "ASP6" 138828 NIL ASP6 (NIL NIL) -8 NIL NIL NIL) (-80 136949 137678 137796 "ASP55" 137914 NIL ASP55 (NIL NIL) -8 NIL NIL NIL) (-79 135899 136623 136742 "ASP50" 136861 NIL ASP50 (NIL NIL) -8 NIL NIL NIL) (-78 134987 135600 135710 "ASP4" 135820 NIL ASP4 (NIL NIL) -8 NIL NIL NIL) (-77 134075 134688 134798 "ASP49" 134908 NIL ASP49 (NIL NIL) -8 NIL NIL NIL) (-76 132860 133614 133782 "ASP42" 133964 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-75 131637 132393 132563 "ASP41" 132747 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-74 130587 131314 131432 "ASP35" 131550 NIL ASP35 (NIL NIL) -8 NIL NIL NIL) (-73 130352 130535 130574 "ASP34" 130579 NIL ASP34 (NIL NIL) -8 NIL NIL NIL) (-72 130089 130156 130232 "ASP33" 130307 NIL ASP33 (NIL NIL) -8 NIL NIL NIL) (-71 128984 129724 129856 "ASP31" 129988 NIL ASP31 (NIL NIL) -8 NIL NIL NIL) (-70 128749 128932 128971 "ASP30" 128976 NIL ASP30 (NIL NIL) -8 NIL NIL NIL) (-69 128484 128553 128629 "ASP29" 128704 NIL ASP29 (NIL NIL) -8 NIL NIL NIL) (-68 128249 128432 128471 "ASP28" 128476 NIL ASP28 (NIL NIL) -8 NIL NIL NIL) (-67 128014 128197 128236 "ASP27" 128241 NIL ASP27 (NIL NIL) -8 NIL NIL NIL) (-66 127098 127712 127823 "ASP24" 127934 NIL ASP24 (NIL NIL) -8 NIL NIL NIL) (-65 126175 126900 127012 "ASP20" 127017 NIL ASP20 (NIL NIL) -8 NIL NIL NIL) (-64 125263 125876 125986 "ASP1" 126096 NIL ASP1 (NIL NIL) -8 NIL NIL NIL) (-63 124207 124937 125056 "ASP19" 125175 NIL ASP19 (NIL NIL) -8 NIL NIL NIL) (-62 123944 124011 124087 "ASP12" 124162 NIL ASP12 (NIL NIL) -8 NIL NIL NIL) (-61 122796 123543 123687 "ASP10" 123831 NIL ASP10 (NIL NIL) -8 NIL NIL NIL) (-60 120695 122640 122731 "ARRAY2" 122736 NIL ARRAY2 (NIL T) -8 NIL NIL NIL) (-59 116511 120343 120457 "ARRAY1" 120612 NIL ARRAY1 (NIL T) -8 NIL NIL NIL) (-58 115543 115716 115937 "ARRAY12" 116334 NIL ARRAY12 (NIL T T) -7 NIL NIL NIL) (-57 109902 111773 111848 "ARR2CAT" 114478 NIL ARR2CAT (NIL T T T) -9 NIL 115236 NIL) (-56 107336 108080 109034 "ARR2CAT-" 109039 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL NIL) (-55 106930 107163 107242 "ARITY" 107275 T ARITY (NIL) -8 NIL NIL NIL) (-54 105678 105830 106136 "APPRULE" 106766 NIL APPRULE (NIL T T T) -7 NIL NIL NIL) (-53 105329 105377 105496 "APPLYORE" 105624 NIL APPLYORE (NIL T T T) -7 NIL NIL NIL) (-52 104303 104594 104789 "ANY" 105152 T ANY (NIL) -8 NIL NIL NIL) (-51 103581 103704 103861 "ANY1" 104177 NIL ANY1 (NIL T) -7 NIL NIL NIL) (-50 101146 102018 102345 "ANTISYM" 103305 NIL ANTISYM (NIL T NIL) -8 NIL NIL NIL) (-49 100661 100850 100947 "ANON" 101067 T ANON (NIL) -8 NIL NIL NIL) (-48 94793 99200 99654 "AN" 100225 T AN (NIL) -8 NIL NIL NIL) (-47 91049 92403 92454 "AMR" 93202 NIL AMR (NIL T T) -9 NIL 93802 NIL) (-46 90161 90382 90745 "AMR-" 90750 NIL AMR- (NIL T T T) -8 NIL NIL NIL) (-45 74711 90078 90139 "ALIST" 90144 NIL ALIST (NIL T T) -8 NIL NIL NIL) (-44 71548 74305 74474 "ALGSC" 74629 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-43 68104 68658 69265 "ALGPKG" 70988 NIL ALGPKG (NIL T T) -7 NIL NIL NIL) (-42 67381 67482 67666 "ALGMFACT" 67990 NIL ALGMFACT (NIL T T T) -7 NIL NIL NIL) (-41 63120 63805 64460 "ALGMANIP" 66904 NIL ALGMANIP (NIL T T) -7 NIL NIL NIL) (-40 54526 62746 62896 "ALGFF" 63053 NIL ALGFF (NIL T T T NIL) -8 NIL NIL NIL) (-39 53722 53853 54032 "ALGFACT" 54384 NIL ALGFACT (NIL T) -7 NIL NIL NIL) (-38 52787 53353 53391 "ALGEBRA" 53396 NIL ALGEBRA (NIL T) -9 NIL 53437 NIL) (-37 52505 52564 52696 "ALGEBRA-" 52701 NIL ALGEBRA- (NIL T T) -8 NIL NIL NIL) (-36 34764 50507 50559 "ALAGG" 50695 NIL ALAGG (NIL T T) -9 NIL 50856 NIL) (-35 34300 34413 34439 "AHYP" 34640 T AHYP (NIL) -9 NIL NIL NIL) (-34 33231 33479 33505 "AGG" 34004 T AGG (NIL) -9 NIL 34283 NIL) (-33 32665 32827 33041 "AGG-" 33046 NIL AGG- (NIL T) -8 NIL NIL NIL) (-32 30342 30764 31182 "AF" 32307 NIL AF (NIL T T) -7 NIL NIL NIL) (-31 29849 30067 30157 "ADDAST" 30270 T ADDAST (NIL) -8 NIL NIL NIL) (-30 29118 29376 29532 "ACPLOT" 29711 T ACPLOT (NIL) -8 NIL NIL NIL) (-29 18410 26331 26382 "ACFS" 27093 NIL ACFS (NIL T) -9 NIL 27332 NIL) (-28 16424 16914 17689 "ACFS-" 17694 NIL ACFS- (NIL T T) -8 NIL NIL NIL) (-27 12697 14591 14617 "ACF" 15496 T ACF (NIL) -9 NIL 15908 NIL) (-26 11401 11735 12228 "ACF-" 12233 NIL ACF- (NIL T) -8 NIL NIL NIL) (-25 10999 11168 11194 "ABELSG" 11286 T ABELSG (NIL) -9 NIL 11351 NIL) (-24 10866 10891 10957 "ABELSG-" 10962 NIL ABELSG- (NIL T) -8 NIL NIL NIL) (-23 10235 10496 10522 "ABELMON" 10692 T ABELMON (NIL) -9 NIL 10804 NIL) (-22 9899 9983 10121 "ABELMON-" 10126 NIL ABELMON- (NIL T) -8 NIL NIL NIL) (-21 9233 9579 9605 "ABELGRP" 9730 T ABELGRP (NIL) -9 NIL 9812 NIL) (-20 8696 8825 9041 "ABELGRP-" 9046 NIL ABELGRP- (NIL T) -8 NIL NIL NIL) (-19 4333 8035 8074 "A1AGG" 8079 NIL A1AGG (NIL T) -9 NIL 8119 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 c3fec088..2e62d387 100644
--- a/src/share/algebra/operation.daase
+++ b/src/share/algebra/operation.daase
@@ -1,65 +1,103 @@
-(735720 . 3443021573)
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262))
- (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262))
- (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169))
- (-14 *4 *2))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*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 (-684 (-225))) (-5 *5 (-112)) (-5 *6 (-225))
- (-5 *7 (-684 (-563)))
- (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-80 CONFUN))))
- (-5 *9 (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN))))
- (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-749)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4407)) (-4 *1 (-489 *4))
- (-4 *4 (-1208)) (-5 *2 (-112)))))
+(735720 . 3443721769)
+(((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-363) (-147)))
+ (-5 *2 (-640 (-2 (|:| -3311 (-767)) (|:| -3412 *4) (|:| |num| *4))))
+ (-5 *1 (-399 *3 *4)) (-4 *4 (-1233 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
+ (-4 *4 (-1045)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-648 (-407 *6))) (-5 *4 (-1 (-640 *5) *6))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-4 *6 (-1233 *5)) (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-648 (-407 *7))) (-5 *4 (-1 (-640 *6) *7))
+ (-5 *5 (-1 (-418 *7) *7))
+ (-4 *6 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-4 *7 (-1233 *6)) (-5 *2 (-640 (-407 *7))) (-5 *1 (-808 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-649 *6 (-407 *6))) (-5 *4 (-1 (-640 *5) *6))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-4 *6 (-1233 *5)) (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-649 *7 (-407 *7))) (-5 *4 (-1 (-640 *6) *7))
+ (-5 *5 (-1 (-418 *7) *7))
+ (-4 *6 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-4 *7 (-1233 *6)) (-5 *2 (-640 (-407 *7))) (-5 *1 (-808 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-648 (-407 *5))) (-4 *5 (-1233 *4)) (-4 *4 (-27))
+ (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-5 *2 (-640 (-407 *5))) (-5 *1 (-808 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-648 (-407 *6))) (-5 *4 (-1 (-418 *6) *6))
+ (-4 *6 (-1233 *5)) (-4 *5 (-27))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-649 *5 (-407 *5))) (-4 *5 (-1233 *4)) (-4 *4 (-27))
+ (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-5 *2 (-640 (-407 *5))) (-5 *1 (-808 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-649 *6 (-407 *6))) (-5 *4 (-1 (-418 *6) *6))
+ (-4 *6 (-1233 *5)) (-4 *5 (-27))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-555))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-552)))))
(((*1 *1 *1) (-12 (-4 *1 (-373 *2)) (-4 *2 (-1208))))
((*1 *2 *2)
(-12 (-4 *3 (-1045)) (-5 *1 (-444 *3 *2)) (-4 *2 (-1233 *3))))
((*1 *1 *1)
(-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23))
(-14 *4 *3))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-452)) (-4 *3 (-846)) (-4 *3 (-1034 (-563)))
- (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-430 *3))
- (-4 *2
- (-13 (-363) (-302)
- (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $))
- (-15 -2154 ((-1118 *3 (-609 $)) $))
- (-15 -1693 ($ (-1118 *3 (-609 $))))))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4))
- (-4 *4 (-349)))))
+ (|partial| -12 (-5 *3 (-114)) (-4 *2 (-1093)) (-4 *2 (-846))
+ (-5 *1 (-113 *2)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-363) (-844)))
+ (-5 *2 (-640 (-2 (|:| -1337 (-640 *3)) (|:| -4079 *5))))
+ (-5 *1 (-181 *5 *3)) (-4 *3 (-1233 (-169 *5)))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-363) (-844)))
+ (-5 *2 (-640 (-2 (|:| -1337 (-640 *3)) (|:| -4079 *4))))
+ (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-1045))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1169)) (-5 *2 (-1 (-225) (-225))) (-5 *1 (-699 *3))
+ (-4 *3 (-611 (-536)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1169)) (-5 *2 (-1 (-225) (-225) (-225)))
+ (-5 *1 (-699 *3)) (-4 *3 (-611 (-536))))))
+(((*1 *2 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-397)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-407 (-563))) (-5 *1 (-319 *3 *4 *5))
- (-4 *3 (-13 (-363) (-846))) (-14 *4 (-1169)) (-14 *5 *3))))
-(((*1 *2 *1 *3 *3)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-601 *3 *4)) (-4 *3 (-1093))
- (-4 *4 (-1208)) (-5 *2 (-1262)))))
-(((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-357 *3)) (-4 *3 (-349)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
+ (-4 *4 (-1045)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-640 *5) *6))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5))
+ (-5 *2 (-640 (-2 (|:| |poly| *6) (|:| -1420 *3))))
+ (-5 *1 (-805 *5 *6 *3 *7)) (-4 *3 (-651 *6))
+ (-4 *7 (-651 (-407 *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-640 *5) *6))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-4 *6 (-1233 *5))
+ (-5 *2 (-640 (-2 (|:| |poly| *6) (|:| -1420 (-649 *6 (-407 *6))))))
+ (-5 *1 (-808 *5 *6)) (-5 *3 (-649 *6 (-407 *6))))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-363)) (-5 *2 (-640 *3)) (-5 *1 (-941 *4 *3))
- (-4 *3 (-1233 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2315 *4)))
+ (-12 (-4 *4 (-555))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
(-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *1) (-5 *1 (-1259))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| -1414 *1) (|:| -4394 *1) (|:| |associate| *1)))
- (-4 *1 (-555)))))
+(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-552)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
(-4 *2 (-13 (-430 *3) (-998)))))
@@ -72,7 +110,7 @@
((*1 *1 *1) (-4 *1 (-284)))
((*1 *2 *3)
(-12 (-5 *3 (-418 *4)) (-4 *4 (-555))
- (-5 *2 (-640 (-2 (|:| -2311 (-767)) (|:| |logand| *4))))
+ (-5 *2 (-640 (-2 (|:| -2310 (-767)) (|:| |logand| *4))))
(-5 *1 (-320 *4))))
((*1 *1 *1)
(-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169)))
@@ -92,8 +130,16 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-767)) (-5 *1 (-1277 *3 *4))
(-4 *4 (-713 (-407 (-563)))) (-4 *3 (-846)) (-4 *4 (-172)))))
-(((*1 *1 *2) (-12 (-5 *1 (-686 *2)) (-4 *2 (-610 (-858))))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *2 (-640 (-169 *4))) (-5 *1 (-155 *3 *4))
+ (-4 *3 (-1233 (-169 (-563)))) (-4 *4 (-13 (-363) (-844)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-640 (-169 *4)))
+ (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-640 (-169 *4)))
+ (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
(((*1 *2 *1) (-12 (-4 *1 (-132)) (-5 *2 (-767))))
((*1 *2 *3 *1 *2)
(-12 (-5 *2 (-563)) (-4 *1 (-373 *3)) (-4 *3 (-1208))
@@ -108,190 +154,152 @@
((*1 *2 *3 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-563)) (-5 *3 (-141))))
((*1 *2 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-563)))))
(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1137)) (-5 *3 (-144)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-684 (-563))) (-5 *1 (-1103)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-640 (-767))) (-5 *3 (-171)) (-5 *1 (-1157 *4 *5))
- (-14 *4 (-917)) (-4 *5 (-1045)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212))
- (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))))))
-(((*1 *2 *1)
- (|partial| -12
- (-4 *3 (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452)))
- (-5 *2 (-839 *4)) (-5 *1 (-313 *3 *4 *5 *6))
- (-4 *4 (-13 (-27) (-1193) (-430 *3))) (-14 *5 (-1169))
- (-14 *6 *4)))
- ((*1 *2 *1)
- (|partial| -12
- (-4 *3 (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452)))
- (-5 *2 (-839 *4)) (-5 *1 (-1243 *3 *4 *5 *6))
- (-4 *4 (-13 (-27) (-1193) (-430 *3))) (-14 *5 (-1169))
- (-14 *6 *4))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-545))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-767)) (-5 *6 (-112)) (-4 *7 (-452)) (-4 *8 (-789))
- (-4 *9 (-846)) (-4 *3 (-1059 *7 *8 *9))
- (-5 *2
- (-2 (|:| |done| (-640 *4))
- (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4))))))
- (-5 *1 (-1063 *7 *8 *9 *3 *4)) (-4 *4 (-1065 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
- (-4 *3 (-1059 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-640 *4))
- (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4))))))
- (-5 *1 (-1063 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-640 *4))
- (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4))))))
- (-5 *1 (-1063 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-767)) (-5 *6 (-112)) (-4 *7 (-452)) (-4 *8 (-789))
- (-4 *9 (-846)) (-4 *3 (-1059 *7 *8 *9))
- (-5 *2
- (-2 (|:| |done| (-640 *4))
- (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4))))))
- (-5 *1 (-1138 *7 *8 *9 *3 *4)) (-4 *4 (-1102 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
- (-4 *3 (-1059 *6 *7 *8))
+(((*1 *2 *1 *1)
+ (-12
(-5 *2
- (-2 (|:| |done| (-640 *4))
- (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4))))))
- (-5 *1 (-1138 *6 *7 *8 *3 *4)) (-4 *4 (-1102 *6 *7 *8 *3))))
+ (-2 (|:| |polnum| (-778 *3)) (|:| |polden| *3) (|:| -4104 (-767))))
+ (-5 *1 (-778 *3)) (-4 *3 (-1045))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -4104 (-767))))
+ (-4 *1 (-1059 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1169)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-697 *4 *5 *6 *7))
+ (-4 *4 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208))
+ (-4 *7 (-1208)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-640 (-640 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
+ (-5 *4 (-640 (-3 (|:| |array| (-640 *3)) (|:| |scalar| (-1169)))))
+ (-5 *6 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1097))
+ (-5 *1 (-397))))
+ ((*1 *2 *3 *4 *5 *6 *3)
+ (-12 (-5 *5 (-640 (-640 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
+ (-5 *4 (-640 (-3 (|:| |array| (-640 *3)) (|:| |scalar| (-1169)))))
+ (-5 *6 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1097))
+ (-5 *1 (-397))))
+ ((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *4 (-640 (-1169))) (-5 *5 (-1172)) (-5 *3 (-1169))
+ (-5 *2 (-1097)) (-5 *1 (-397)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 (-640 *7) *7 (-1165 *7))) (-5 *5 (-1 (-418 *7) *7))
+ (-4 *7 (-1233 *6)) (-4 *6 (-13 (-363) (-147) (-1034 (-407 (-563)))))
+ (-5 *2 (-640 (-2 (|:| |frac| (-407 *7)) (|:| -1420 *3))))
+ (-5 *1 (-805 *6 *7 *3 *8)) (-4 *3 (-651 *7))
+ (-4 *8 (-651 (-407 *7)))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
+ (-12 (-5 *4 (-1 (-418 *6) *6)) (-4 *6 (-1233 *5))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
(-5 *2
- (-2 (|:| |done| (-640 *4))
- (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4))))))
- (-5 *1 (-1138 *5 *6 *7 *3 *4)) (-4 *4 (-1102 *5 *6 *7 *3)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-753)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1209 *2))
- (-4 *2 (-1093))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-1093)) (-4 *2 (-846))
- (-5 *1 (-1209 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1165 (-948 *6))) (-4 *6 (-555))
- (-4 *2 (-945 (-407 (-948 *6)) *5 *4)) (-5 *1 (-728 *5 *4 *6 *2))
- (-4 *5 (-789))
- (-4 *4 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $))))))))
+ (-640 (-2 (|:| |frac| (-407 *6)) (|:| -1420 (-649 *6 (-407 *6))))))
+ (-5 *1 (-808 *5 *6)) (-5 *3 (-649 *6 (-407 *6))))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-767)) (-4 *5 (-555))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1233 *5))
+ (-4 *5 (-13 (-27) (-430 *4)))
+ (-4 *4 (-13 (-846) (-555) (-1034 (-563))))
+ (-4 *7 (-1233 (-407 *6))) (-5 *1 (-551 *4 *5 *6 *7 *2))
+ (-4 *2 (-342 *5 *6 *7)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-294 *2)) (-4 *2 (-722)) (-4 *2 (-1208)))))
-(((*1 *1 *1 *2 *2 *1)
- (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045))
- (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))))
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *2 (-555)))))
+(((*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-696))))
+ ((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-696)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))))
(((*1 *2 *1 *3 *3 *2)
(-12 (-5 *3 (-563)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1208))
(-4 *4 (-373 *2)) (-4 *5 (-373 *2))))
((*1 *2 *1 *3 *2)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-288 *3 *2)) (-4 *3 (-1093))
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-288 *3 *2)) (-4 *3 (-1093))
(-4 *2 (-1208)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *2 (-555)) (-4 *2 (-452)) (-5 *1 (-965 *2 *3))
- (-4 *3 (-1233 *2)))))
-(((*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1151)) (-5 *1 (-305)))))
-(((*1 *2 *1)
- (|partial| -12
- (-4 *3 (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452)))
- (-5 *2
- (-2
- (|:| |%term|
- (-2 (|:| |%coef| (-1242 *4 *5 *6))
- (|:| |%expon| (-319 *4 *5 *6))
- (|:| |%expTerms|
- (-640 (-2 (|:| |k| (-407 (-563))) (|:| |c| *4))))))
- (|:| |%type| (-1151))))
- (-5 *1 (-1243 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1193) (-430 *3)))
- (-14 *5 (-1169)) (-14 *6 *4))))
-(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-858)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 (-2 (|:| -2174 (-1165 *6)) (|:| -1654 (-563)))))
- (-4 *6 (-307)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
- (-5 *1 (-738 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5))))
- ((*1 *1 *1) (-12 (-4 *1 (-1127 *2)) (-4 *2 (-1045)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *1 (-1203 *3))
- (-4 *3 (-970)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-767)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
+ (-4 *4 (-1045)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
- (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2059 *4))))
- (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(((*1 *1 *2 *2 *2)
- (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193)))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363))))
- ((*1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363))))
- ((*1 *2 *1 *3 *4 *4)
- (-12 (-5 *3 (-917)) (-5 *4 (-379)) (-5 *2 (-1262)) (-5 *1 (-1258)))))
+ (-12 (-4 *5 (-363)) (-4 *7 (-1233 *5)) (-4 *4 (-720 *5 *7))
+ (-5 *2 (-2 (|:| -1957 (-684 *6)) (|:| |vec| (-1257 *5))))
+ (-5 *1 (-807 *5 *6 *7 *4 *3)) (-4 *6 (-651 *5)) (-4 *3 (-651 *4)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-767)) (-4 *5 (-555))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1233 *6))
+ (-4 *6 (-13 (-27) (-430 *5)))
+ (-4 *5 (-13 (-846) (-555) (-1034 (-563)))) (-4 *8 (-1233 (-407 *7)))
+ (-5 *2 (-584 *3)) (-5 *1 (-551 *5 *6 *7 *8 *3))
+ (-4 *3 (-342 *6 *7 *8)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-839 (-225)))) (-5 *4 (-225)) (-5 *2 (-640 *4))
+ (-5 *1 (-267)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *2 (-555)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *3 (-307)) (-4 *3 (-172)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3)))
+ (-5 *1 (-683 *3 *4 *5 *6)) (-4 *6 (-682 *3 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-695 *3))
+ (-4 *3 (-307)))))
(((*1 *1 *2 *1)
(-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208))
(-4 *4 (-373 *3)) (-4 *5 (-373 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4408)) (-4 *1 (-489 *3))
+ (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4409)) (-4 *1 (-489 *3))
(-4 *3 (-1208)))))
+(((*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-391)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-171)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
- (-4 *4 (-1045)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-280)))))
+ (-12 (-4 *3 (-1208)) (-5 *2 (-640 *1)) (-4 *1 (-1006 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-1157 *3 *4))) (-5 *1 (-1157 *3 *4))
+ (-14 *3 (-917)) (-4 *4 (-1045)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-648 (-407 *2))) (-4 *2 (-1233 *4)) (-5 *1 (-806 *4 *2))
+ (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-649 *2 (-407 *2))) (-4 *2 (-1233 *4))
+ (-5 *1 (-806 *4 *2))
+ (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-767)) (-4 *4 (-555)) (-5 *1 (-965 *4 *2))
+ (-4 *2 (-1233 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1233 *6))
+ (-4 *6 (-13 (-27) (-430 *5)))
+ (-4 *5 (-13 (-846) (-555) (-1034 (-563)))) (-4 *8 (-1233 (-407 *7)))
+ (-5 *2 (-584 *3)) (-5 *1 (-551 *5 *6 *7 *8 *3))
+ (-4 *3 (-342 *6 *7 *8)))))
(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-563)) (-5 *3 (-917)) (-4 *1 (-404))))
((*1 *1 *2 *2) (-12 (-5 *2 (-563)) (-4 *1 (-404))))
((*1 *2 *1)
(-12 (-4 *1 (-1096 *3 *4 *5 *2 *6)) (-4 *3 (-1093)) (-4 *4 (-1093))
(-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)))))
-(((*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172))))
- ((*1 *1 *1 *1) (-4 *1 (-473)))
- ((*1 *1 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172))))
- ((*1 *2 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-879))))
- ((*1 *1 *1) (-5 *1 (-967)))
- ((*1 *1 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-38 (-407 (-563))))
- (-5 *2 (-2 (|:| -1597 (-1149 *4)) (|:| -1608 (-1149 *4))))
- (-5 *1 (-1155 *4)) (-5 *3 (-1149 *4)))))
-(((*1 *1 *1) (-12 (-4 *1 (-374 *2 *3)) (-4 *2 (-846)) (-4 *3 (-172))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-624 *2 *3 *4)) (-4 *2 (-846))
- (-4 *3 (-13 (-172) (-713 (-407 (-563))))) (-14 *4 (-917))))
- ((*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846))))
- ((*1 *1 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-349)) (-5 *2 (-418 (-1165 (-1165 *4))))
- (-5 *1 (-1206 *4)) (-5 *3 (-1165 (-1165 *4))))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-945 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-452))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *3 (-1059 *4 *5 *6))
- (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *1))))
- (-4 *1 (-1065 *4 *5 *6 *3))))
- ((*1 *1 *1) (-4 *1 (-1212)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-555)) (-5 *1 (-1236 *3 *2))
- (-4 *2 (-13 (-1233 *3) (-555) (-10 -8 (-15 -3548 ($ $ $))))))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-233)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-266 *4))
+ (-4 *6 (-789)) (-5 *2 (-1 *1 (-767))) (-4 *1 (-253 *3 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1045)) (-4 *3 (-846)) (-4 *5 (-266 *3)) (-4 *6 (-789))
+ (-5 *2 (-1 *1 (-767))) (-4 *1 (-253 *4 *3 *5 *6))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-266 *2)) (-4 *2 (-846)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *2 (-555))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *2 (-555)))))
(((*1 *2 *1) (-12 (-4 *1 (-970)) (-5 *2 (-1087 (-225))))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1140 (-1151))) (-5 *1 (-391)))))
(((*1 *1 *2)
(-12 (-5 *2 (-767)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045))
(-14 *4 (-640 (-1169)))))
@@ -307,218 +315,171 @@
(-12 (-5 *2 (-767)) (-5 *1 (-390 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
(-4 *5 (-172))))
((*1 *1) (-12 (-4 *2 (-172)) (-4 *1 (-720 *2 *3)) (-4 *3 (-1233 *2)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-923)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-767)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
+ (-4 *4 (-1045)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-648 (-407 *6))) (-5 *4 (-407 *6)) (-4 *6 (-1233 *5))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4))))
+ (-5 *1 (-806 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-648 (-407 *6))) (-4 *6 (-1233 *5))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-5 *2 (-2 (|:| -4013 (-640 (-407 *6))) (|:| -1957 (-684 *5))))
+ (-5 *1 (-806 *5 *6)) (-5 *4 (-640 (-407 *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-649 *6 (-407 *6))) (-5 *4 (-407 *6)) (-4 *6 (-1233 *5))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4))))
+ (-5 *1 (-806 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-649 *6 (-407 *6))) (-4 *6 (-1233 *5))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-5 *2 (-2 (|:| -4013 (-640 (-407 *6))) (|:| -1957 (-684 *5))))
+ (-5 *1 (-806 *5 *6)) (-5 *4 (-640 (-407 *6))))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-767)) (-4 *5 (-555))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *4 (-609 *3)) (-5 *5 (-1 (-1165 *3) (-1165 *3)))
+ (-4 *3 (-13 (-27) (-430 *6))) (-4 *6 (-13 (-846) (-555)))
+ (-5 *2 (-584 *3)) (-5 *1 (-550 *6 *3)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-114))))
+ ((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-114))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846))
+ (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-767))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846))
+ (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-767))))
+ ((*1 *2 *1) (-12 (-4 *1 (-266 *3)) (-4 *3 (-846)) (-5 *2 (-767)))))
(((*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *2 (-640 (-225))) (-5 *1 (-204)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-363) (-1034 (-407 *2)))) (-5 *2 (-563))
- (-5 *1 (-115 *4 *3)) (-4 *3 (-1233 *4)))))
-(((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-563)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1208))
- (-4 *3 (-373 *4)) (-4 *5 (-373 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 *4)) (-4 *4 (-846)) (-5 *2 (-640 (-659 *4 *5)))
- (-5 *1 (-624 *4 *5 *6)) (-4 *5 (-13 (-172) (-713 (-407 (-563)))))
- (-14 *6 (-917)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-1114 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *2 (-555))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *2 (-555)))))
(((*1 *2 *1) (-12 (-4 *1 (-951)) (-5 *2 (-1087 (-225)))))
((*1 *2 *1) (-12 (-4 *1 (-970)) (-5 *2 (-1087 (-225))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
- (-14 *5 (-640 (-1169))) (-5 *2 (-640 (-640 (-1020 (-407 *4)))))
- (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
- (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7))
- (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
- (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7))
- (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-948 *4)))
- (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
- (-5 *2 (-640 (-640 (-1020 (-407 *4))))) (-5 *1 (-1283 *4 *5 *6))
- (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))))
-(((*1 *1 *1 *1)
- (|partial| -12 (-4 *2 (-172)) (-5 *1 (-289 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1233 *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 (-707 *2 *3 *4 *5 *6)) (-4 *2 (-172))
- (-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 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172))
- (-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 *2)
- (-12 (-5 *2 (-640 (-767))) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
- (-4 *4 (-1045)))))
-(((*1 *1)
- (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767))
- (-4 *4 (-172)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045))))
- ((*1 *2 *1 *1)
- (-12 (-4 *2 (-1045)) (-5 *1 (-50 *2 *3)) (-14 *3 (-640 (-1169)))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-640 (-917))) (-4 *2 (-363)) (-5 *1 (-152 *4 *2 *5))
- (-14 *4 (-917)) (-14 *5 (-989 *4 *2))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-316 *3)) (-5 *1 (-223 *3 *4))
- (-4 *3 (-13 (-1045) (-846))) (-14 *4 (-640 (-1169)))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-323 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-131))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-382 *2 *3)) (-4 *3 (-1093)) (-4 *2 (-1045))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-4 *2 (-555)) (-5 *1 (-620 *2 *4))
- (-4 *4 (-1233 *2))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-704 *2)) (-4 *2 (-1045))))
- ((*1 *2 *1 *3)
- (-12 (-4 *2 (-1045)) (-5 *1 (-731 *2 *3)) (-4 *3 (-722))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-640 *5)) (-5 *3 (-640 (-767))) (-4 *1 (-736 *4 *5))
- (-4 *4 (-1045)) (-4 *5 (-846))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-767)) (-4 *1 (-736 *4 *2)) (-4 *4 (-1045))
- (-4 *2 (-846))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-848 *2)) (-4 *2 (-1045))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-640 *6)) (-5 *3 (-640 (-767))) (-4 *1 (-945 *4 *5 *6))
- (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-767)) (-4 *1 (-945 *4 *5 *2)) (-4 *4 (-1045))
- (-4 *5 (-789)) (-4 *2 (-846))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-767)) (-4 *2 (-945 *4 (-531 *5) *5))
- (-5 *1 (-1119 *4 *5 *2)) (-4 *4 (-1045)) (-4 *5 (-846))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-767)) (-5 *2 (-948 *4)) (-5 *1 (-1202 *4))
- (-4 *4 (-1045)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-601 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1208))
- (-5 *2 (-640 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-818)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1140 (-1151))) (-5 *1 (-391)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563)))))
+ (-4 *3 (-1233 *4)) (-5 *1 (-805 *4 *3 *2 *5)) (-4 *2 (-651 *3))
+ (-4 *5 (-651 (-407 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-407 *5))
+ (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4))
+ (-5 *1 (-805 *4 *5 *2 *6)) (-4 *2 (-651 *5)) (-4 *6 (-651 *3)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-767)) (-4 *5 (-555))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-379)) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
+ ((*1 *1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-263)))))
+(((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
(((*1 *2 *1 *3 *4)
(-12 (-5 *3 (-468)) (-5 *4 (-917)) (-5 *2 (-1262)) (-5 *1 (-1258)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1257 *4)) (-4 *4 (-417 *3)) (-4 *3 (-307))
- (-4 *3 (-555)) (-5 *1 (-43 *3 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-917)) (-4 *4 (-363)) (-5 *2 (-1257 *1))
- (-4 *1 (-329 *4))))
- ((*1 *2) (-12 (-4 *3 (-363)) (-5 *2 (-1257 *1)) (-4 *1 (-329 *3))))
- ((*1 *2)
- (-12 (-4 *3 (-172)) (-4 *4 (-1233 *3)) (-5 *2 (-1257 *1))
- (-4 *1 (-409 *3 *4))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-307)) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4))
- (-5 *2 (-1257 *6)) (-5 *1 (-413 *3 *4 *5 *6))
- (-4 *6 (-13 (-409 *4 *5) (-1034 *4)))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-307)) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4))
- (-5 *2 (-1257 *6)) (-5 *1 (-414 *3 *4 *5 *6 *7))
- (-4 *6 (-409 *4 *5)) (-14 *7 *2)))
- ((*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1257 *1)) (-4 *1 (-417 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-917)) (-5 *2 (-1257 (-1257 *4))) (-5 *1 (-528 *4))
- (-4 *4 (-349)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -3551 (-778 *3)) (|:| |coef1| (-778 *3))
+ (|:| |coef2| (-778 *3))))
+ (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *2 (-2 (|:| -3551 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
+ (-4 *1 (-1059 *3 *4 *5)))))
(((*1 *2 *1) (-12 (-4 *1 (-951)) (-5 *2 (-1087 (-225)))))
((*1 *2 *1) (-12 (-4 *1 (-970)) (-5 *2 (-1087 (-225))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *4 (-640 (-1169)))
- (-5 *2 (-684 (-316 (-225)))) (-5 *1 (-205))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1093)) (-4 *6 (-896 *5)) (-5 *2 (-684 *6))
- (-5 *1 (-687 *5 *6 *3 *4)) (-4 *3 (-373 *6))
- (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4407)))))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045))
- (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1093) (-1034 *5)))
- (-4 *5 (-882 *4)) (-4 *4 (-1093)) (-5 *2 (-1 (-112) *5))
- (-5 *1 (-927 *4 *5 *6)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-899 *3)) (-4 *3 (-1093)) (-5 *2 (-1095 *3))))
- ((*1 *2 *1 *3)
- (-12 (-4 *4 (-1093)) (-5 *2 (-1095 (-640 *4))) (-5 *1 (-900 *4))
- (-5 *3 (-640 *4))))
- ((*1 *2 *1 *3)
- (-12 (-4 *4 (-1093)) (-5 *2 (-1095 (-1095 *4))) (-5 *1 (-900 *4))
- (-5 *3 (-1095 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *2 (-1095 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *5 (-609 *4)) (-5 *6 (-1169))
- (-4 *4 (-13 (-430 *7) (-27) (-1193)))
- (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4))))
- (-5 *1 (-565 *7 *4 *3)) (-4 *3 (-651 *4)) (-4 *3 (-1093)))))
-(((*1 *2 *3 *4 *4 *5 *4 *6 *4 *5)
- (-12 (-5 *3 (-1151)) (-5 *5 (-684 (-225))) (-5 *6 (-684 (-563)))
- (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-753)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-316 (-225)))) (-5 *2 (-112)) (-5 *1 (-267))))
- ((*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-112)) (-5 *1 (-267))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))))
+ (-12 (-5 *2 (-858)) (-5 *1 (-390 *3 *4 *5)) (-14 *3 (-767))
+ (-14 *4 (-767)) (-4 *5 (-172)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-640 *5) *6))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5))
+ (-5 *2 (-640 (-2 (|:| -2668 *5) (|:| -1420 *3))))
+ (-5 *1 (-805 *5 *6 *3 *7)) (-4 *3 (-651 *6))
+ (-4 *7 (-651 (-407 *6))))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-767)) (-4 *4 (-555)) (-5 *1 (-965 *4 *2))
+ (-4 *2 (-1233 *4)))))
+(((*1 *1 *1 *1) (-4 *1 (-545))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-917)) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
+ ((*1 *1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-263)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
(((*1 *2 *1 *1)
- (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
- (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
- (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
+ (-12 (-5 *2 (-2 (|:| -3551 (-778 *3)) (|:| |coef1| (-778 *3))))
+ (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *2 (-2 (|:| -3551 *1) (|:| |coef1| *1)))
+ (-4 *1 (-1059 *3 *4 *5)))))
+(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694))))
+ ((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694)))))
(((*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208))))
((*1 *1 *1)
(-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
(-4 *4 (-846))))
((*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1257 *5)) (-4 *5 (-636 *4)) (-4 *4 (-555))
- (-5 *2 (-112)) (-5 *1 (-635 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-858)) (-5 *1 (-390 *3 *4 *5)) (-14 *3 (-767))
+ (-14 *4 (-767)) (-4 *5 (-172)))))
(((*1 *2 *1 *3 *2)
(-12 (-5 *3 (-767)) (-5 *1 (-213 *4 *2)) (-14 *4 (-917))
(-4 *2 (-1093)))))
-(((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-25)) (-4 *3 (-846))
- (-5 *2 (-2 (|:| -2311 (-563)) (|:| |var| (-609 *1))))
- (-4 *1 (-430 *3)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-373 *2)) (-4 *2 (-1208)) (-4 *2 (-846))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-373 *3)) (-4 *3 (-1208))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-964 *2)) (-4 *2 (-846))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1127 *2)) (-4 *2 (-1045))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)) (-4 *3 (-1045))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-640 (-1157 *3 *4))) (-5 *1 (-1157 *3 *4))
+ (-14 *3 (-917)) (-4 *4 (-1045))))
+ ((*1 *1 *1 *1)
+ (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -2835 (-684 (-407 (-948 *4))))
- (|:| |vec| (-640 (-407 (-948 *4)))) (|:| -2522 (-767))
- (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))
- (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
- (-4 *6 (-789))
- (-5 *2
- (-2 (|:| |partsol| (-1257 (-407 (-948 *4))))
- (|:| -4315 (-640 (-1257 (-407 (-948 *4)))))))
- (-5 *1 (-920 *4 *5 *6 *7)) (-4 *7 (-945 *4 *6 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-4 *1 (-899 *3)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
-(((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-357 *3)) (-4 *3 (-349)))))
+ (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563)))))
+ (-4 *5 (-1233 *4))
+ (-5 *2 (-640 (-2 (|:| |deg| (-767)) (|:| -1420 *5))))
+ (-5 *1 (-805 *4 *5 *3 *6)) (-4 *3 (-651 *5))
+ (-4 *6 (-651 (-407 *5))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1612 *4)))
+ (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *1 *1 *1) (-4 *1 (-545))))
+(((*1 *1) (-5 *1 (-144)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-261))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-263)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-157)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -3551 (-778 *3)) (|:| |coef2| (-778 *3))))
+ (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *2 (-2 (|:| -3551 *1) (|:| |coef2| *1)))
+ (-4 *1 (-1059 *3 *4 *5)))))
(((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-563)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-373 *2))
(-4 *5 (-373 *2)) (-4 *2 (-1208))))
@@ -530,147 +491,124 @@
((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-563)) (-4 *1 (-1048 *4 *5 *2 *6 *7))
(-4 *6 (-238 *5 *2)) (-4 *7 (-238 *4 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7)
- (-12 (-5 *3 (-1151)) (-5 *5 (-684 (-225))) (-5 *6 (-225))
- (-5 *7 (-684 (-563))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-748)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1165 *2)) (-4 *2 (-945 (-407 (-948 *6)) *5 *4))
- (-5 *1 (-728 *5 *4 *6 *2)) (-4 *5 (-789))
- (-4 *4 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $)))))
- (-4 *6 (-555)))))
-(((*1 *2)
- (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
-(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-257)))))
+(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694))))
+ ((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694)))))
+(((*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-1151)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-939 *5)) (-4 *5 (-1045)) (-5 *2 (-767))
+ (-5 *1 (-1157 *4 *5)) (-14 *4 (-917))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-640 (-767))) (-5 *3 (-767)) (-5 *1 (-1157 *4 *5))
+ (-14 *4 (-917)) (-4 *5 (-1045))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-640 (-767))) (-5 *3 (-939 *5)) (-4 *5 (-1045))
+ (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-825)) (-5 *3 (-1151)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-640 (-1207))) (-5 *3 (-1207)) (-5 *1 (-676)))))
-(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-558)))))
-(((*1 *1) (-4 *1 (-349))))
+ (-12 (-4 *2 (-1233 *4)) (-5 *1 (-805 *4 *2 *3 *5))
+ (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-651 *2))
+ (-4 *5 (-651 (-407 *2))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1612 *4)))
+ (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-545))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-917)) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
+ ((*1 *1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-263)))))
(((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-144))))
((*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-144)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3))
- (-4 *3 (-963)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-349)) (-5 *2 (-418 (-1165 (-1165 *4))))
- (-5 *1 (-1206 *4)) (-5 *3 (-1165 (-1165 *4))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1149 (-407 *3))) (-5 *1 (-174 *3)) (-4 *3 (-307)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789))
- (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-640 *5)) (-4 *5 (-430 *4)) (-4 *4 (-13 (-846) (-555)))
+ (-5 *2 (-858)) (-5 *1 (-32 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-939 (-225)))) (-5 *1 (-1258)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *2 (-640 *1)) (-4 *1 (-1059 *3 *4 *5)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-1 (-225) (-225) (-225)))
+ (-5 *4 (-1 (-225) (-225) (-225) (-225)))
+ (-5 *2 (-1 (-939 (-225)) (-225) (-225))) (-5 *1 (-692)))))
+(((*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-112)))))
(((*1 *2 *3)
(-12 (-5 *3 (-640 (-536))) (-5 *2 (-1169)) (-5 *1 (-536)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 (-640 *7) *7 (-1165 *7))) (-5 *5 (-1 (-418 *7) *7))
- (-4 *7 (-1233 *6)) (-4 *6 (-13 (-363) (-147) (-1034 (-407 (-563)))))
- (-5 *2 (-640 (-2 (|:| |frac| (-407 *7)) (|:| -1420 *3))))
- (-5 *1 (-805 *6 *7 *3 *8)) (-4 *3 (-651 *7))
- (-4 *8 (-651 (-407 *7)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-939 *4)) (-4 *4 (-1045)) (-5 *1 (-1157 *3 *4))
+ (-14 *3 (-917)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *2 (-1233 *4)) (-5 *1 (-803 *4 *2 *3 *5))
+ (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-651 *2))
+ (-4 *5 (-651 (-407 *2)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-418 *6) *6)) (-4 *6 (-1233 *5))
- (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-5 *2
- (-640 (-2 (|:| |frac| (-407 *6)) (|:| -1420 (-649 *6 (-407 *6))))))
- (-5 *1 (-808 *5 *6)) (-5 *3 (-649 *6 (-407 *6))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-923))
- (-5 *2
- (-2 (|:| |brans| (-640 (-640 (-939 (-225)))))
- (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))))
- (-5 *1 (-153))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-923)) (-5 *4 (-407 (-563)))
- (-5 *2
- (-2 (|:| |brans| (-640 (-640 (-939 (-225)))))
- (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))))
- (-5 *1 (-153)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-517)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-948 (-407 (-563)))) (-5 *4 (-1169))
- (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-640 (-225))) (-5 *1 (-300)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2))
- (-4 *4 (-13 (-846) (-555))))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1132))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045))
- (-5 *2 (-948 *5)) (-5 *1 (-940 *4 *5)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7)
- (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225)))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-75 FCN JACOBF JACEPS))))
- (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-76 G JACOBG JACGEP))))
- (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))))
+ (-12 (-4 *2 (-1233 *4)) (-5 *1 (-803 *4 *2 *5 *3))
+ (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *5 (-651 *2))
+ (-4 *3 (-651 (-407 *2))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-555))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1612 *4)))
+ (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-545))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-917)) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
+ ((*1 *1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-263)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1165 *2)) (-4 *2 (-430 *4)) (-4 *4 (-13 (-846) (-555)))
+ (-5 *1 (-32 *4 *2)))))
+(((*1 *1) (-5 *1 (-1258))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-767)) (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-4 *3 (-555)))))
+(((*1 *2 *3 *3 *3 *4 *5 *6)
+ (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225)))
+ (-5 *5 (-1087 (-225))) (-5 *6 (-640 (-263))) (-5 *2 (-1126 (-225)))
+ (-5 *1 (-692)))))
+(((*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-112)))))
(((*1 *1 *2) (-12 (-5 *1 (-1194 *2)) (-4 *2 (-1093))))
((*1 *1 *2)
(-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-1194 *3))))
((*1 *1 *2 *3)
(-12 (-5 *3 (-640 (-1194 *2))) (-5 *1 (-1194 *2)) (-4 *2 (-1093)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169))
- (-4 *5 (-13 (-846) (-1034 (-563)) (-452) (-636 (-563))))
- (-5 *2 (-2 (|:| -1410 *3) (|:| |nconst| *3))) (-5 *1 (-566 *5 *3))
- (-4 *3 (-13 (-27) (-1193) (-430 *5))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1169)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1257 (-1169))) (-5 *3 (-1257 (-453 *4 *5 *6 *7)))
- (-5 *1 (-453 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-917))
- (-14 *6 (-640 (-1169))) (-14 *7 (-1257 (-684 *4)))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-453 *4 *5 *6 *7)))
- (-5 *1 (-453 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-917))
- (-14 *6 (-640 *2)) (-14 *7 (-1257 (-684 *4)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1257 (-453 *3 *4 *5 *6))) (-5 *1 (-453 *3 *4 *5 *6))
- (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169)))
- (-14 *6 (-1257 (-684 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1257 (-1169))) (-5 *1 (-453 *3 *4 *5 *6))
- (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169)))
- (-14 *6 (-1257 (-684 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1169)) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172))
- (-14 *4 (-917)) (-14 *5 (-640 *2)) (-14 *6 (-1257 (-684 *3)))))
- ((*1 *1)
- (-12 (-5 *1 (-453 *2 *3 *4 *5)) (-4 *2 (-172)) (-14 *3 (-917))
- (-14 *4 (-640 (-1169))) (-14 *5 (-1257 (-684 *2))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-363)) (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3)))
- (-5 *1 (-762 *3 *4)) (-4 *3 (-704 *4))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-363)) (-4 *3 (-1045))
- (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-848 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-363)) (-4 *5 (-1045))
- (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-849 *5 *3))
- (-4 *3 (-848 *5)))))
+(((*1 *1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-939 *5)) (-5 *3 (-767)) (-4 *5 (-1045))
+ (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))))
+ (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563)))))
+ (-4 *5 (-1233 *4)) (-5 *2 (-640 (-2 (|:| -3412 *5) (|:| -2377 *5))))
+ (-5 *1 (-803 *4 *5 *3 *6)) (-4 *3 (-651 *5))
+ (-4 *6 (-651 (-407 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563)))))
+ (-4 *4 (-1233 *5)) (-5 *2 (-640 (-2 (|:| -3412 *4) (|:| -2377 *4))))
+ (-5 *1 (-803 *5 *4 *3 *6)) (-4 *3 (-651 *4))
+ (-4 *6 (-651 (-407 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563)))))
+ (-4 *5 (-1233 *4)) (-5 *2 (-640 (-2 (|:| -3412 *5) (|:| -2377 *5))))
+ (-5 *1 (-803 *4 *5 *6 *3)) (-4 *6 (-651 *5))
+ (-4 *3 (-651 (-407 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563)))))
+ (-4 *4 (-1233 *5)) (-5 *2 (-640 (-2 (|:| -3412 *4) (|:| -2377 *4))))
+ (-5 *1 (-803 *5 *4 *6 *3)) (-4 *6 (-651 *4))
+ (-4 *3 (-651 (-407 *4))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)) (-4 *2 (-846))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-282 *3)) (-4 *3 (-1208))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-964 *2)) (-4 *2 (-846)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-545))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-870)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))))
+(((*1 *1 *2 *3 *3 *4 *4)
+ (-12 (-5 *2 (-948 (-563))) (-5 *3 (-1169))
+ (-5 *4 (-1087 (-407 (-563)))) (-5 *1 (-30)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-468)) (-5 *3 (-640 (-263))) (-5 *1 (-1258))))
+ ((*1 *1 *1) (-5 *1 (-1258))))
(((*1 *2 *1)
(-12 (-5 *2 (-1087 *3)) (-5 *1 (-1085 *3)) (-4 *3 (-1208))))
((*1 *1 *2 *2) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208))))
((*1 *1 *2) (-12 (-5 *1 (-1224 *2)) (-4 *2 (-1208)))))
-(((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1208)) (-5 *2 (-640 *1)) (-4 *1 (-1006 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-640 (-1157 *3 *4))) (-5 *1 (-1157 *3 *4))
- (-14 *3 (-917)) (-4 *4 (-1045)))))
-(((*1 *2 *1 *2 *3)
- (|partial| -12 (-5 *2 (-1151)) (-5 *3 (-563)) (-5 *1 (-1057)))))
+(((*1 *1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-767)) (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-4 *3 (-555)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-640 *8)) (-5 *4 (-136 *5 *6 *7)) (-14 *5 (-563))
(-14 *6 (-767)) (-4 *7 (-172)) (-4 *8 (-172))
@@ -680,67 +618,86 @@
(-4 *8 (-1045)) (-4 *2 (-945 *9 *7 *5))
(-5 *1 (-724 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-789))
(-4 *4 (-945 *8 *6 *5)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330))
- (-5 *1 (-332))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1169)) (-5 *4 (-1085 (-948 (-563)))) (-5 *2 (-330))
- (-5 *1 (-332))))
- ((*1 *1 *2 *2 *2)
- (-12 (-5 *2 (-767)) (-5 *1 (-670 *3)) (-4 *3 (-1045))
- (-4 *3 (-1093)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-1 (-225) (-225) (-225)))
+ (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined"))
+ (-5 *5 (-1087 (-225))) (-5 *6 (-640 (-263))) (-5 *2 (-1126 (-225)))
+ (-5 *1 (-692)))))
+(((*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-112)))))
(((*1 *1 *2 *3)
(-12 (-5 *3 (-640 (-1169))) (-5 *2 (-1169)) (-5 *1 (-330)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-939 *4)) (-4 *4 (-1045)) (-5 *1 (-1157 *3 *4))
- (-14 *3 (-917)))))
-(((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *1 *1) (-4 *1 (-1132))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *4 (-563))) (-5 *5 (-1 (-1149 *4))) (-4 *4 (-363))
- (-4 *4 (-1045)) (-5 *2 (-1149 *4)) (-5 *1 (-1153 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-951)) (-5 *2 (-640 (-640 (-939 (-225)))))))
- ((*1 *2 *1) (-12 (-4 *1 (-970)) (-5 *2 (-640 (-640 (-939 (-225))))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-452)) (-4 *4 (-816))
- (-14 *5 (-1169)) (-5 *2 (-563)) (-5 *1 (-1107 *4 *5)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-782)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
- (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-767)) (-5 *3 (-939 *5)) (-4 *5 (-1045))
+ (-5 *1 (-1157 *4 *5)) (-14 *4 (-917))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-640 (-767))) (-5 *3 (-767)) (-5 *1 (-1157 *4 *5))
+ (-14 *4 (-917)) (-4 *5 (-1045))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-640 (-767))) (-5 *3 (-939 *5)) (-4 *5 (-1045))
+ (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-407 *2)) (-4 *2 (-1233 *5))
+ (-5 *1 (-803 *5 *2 *3 *6))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563)))))
+ (-4 *3 (-651 *2)) (-4 *6 (-651 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 (-407 *2))) (-4 *2 (-1233 *5))
+ (-5 *1 (-803 *5 *2 *3 *6))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-651 *2))
+ (-4 *6 (-651 (-407 *2))))))
+(((*1 *1 *1 *1) (-4 *1 (-963))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-545))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-870)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1165 *1)) (-5 *4 (-1169)) (-4 *1 (-27))
+ (-5 *2 (-640 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1165 *1)) (-4 *1 (-27)) (-5 *2 (-640 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-948 *1)) (-4 *1 (-27)) (-5 *2 (-640 *1))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-640 *1))
+ (-4 *1 (-29 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *2 (-640 *1)) (-4 *1 (-29 *3)))))
+(((*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5)
+ (-12 (-5 *3 (-917)) (-5 *4 (-225)) (-5 *5 (-563)) (-5 *6 (-870))
+ (-5 *2 (-1262)) (-5 *1 (-1258)))))
(((*1 *2 *1)
(-12 (-5 *2 (-640 *5)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563))
(-14 *4 (-767)) (-4 *5 (-172)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
- (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))))
+(((*1 *1 *1 *1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *2 (-555)))))
(((*1 *1)
(-12 (-4 *3 (-1093)) (-5 *1 (-881 *2 *3 *4)) (-4 *2 (-1093))
(-4 *4 (-661 *3))))
((*1 *1) (-12 (-5 *1 (-885 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *2 *3) (-12 (-5 *3 (-818)) (-5 *2 (-52)) (-5 *1 (-825)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *1) (-4 *1 (-23))) ((*1 *1) (-4 *1 (-34)))
- ((*1 *1) (-5 *1 (-129)))
- ((*1 *1)
- (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767))
- (-4 *4 (-172))))
- ((*1 *1) (-4 *1 (-722))) ((*1 *1) (-5 *1 (-1169)))
- ((*1 *1) (-12 (-5 *1 (-1176 *2)) (-14 *2 (-917))))
- ((*1 *1) (-5 *1 (-1213))) ((*1 *1) (-5 *1 (-1214)))
- ((*1 *1) (-5 *1 (-1215))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260))))
- ((*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))))
+(((*1 *2 *3 *3 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-1 (-225) (-225) (-225)))
+ (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined"))
+ (-5 *5 (-1087 (-225))) (-5 *6 (-640 (-263))) (-5 *2 (-1126 (-225)))
+ (-5 *1 (-692))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-939 (-225)) (-225) (-225))) (-5 *4 (-1087 (-225)))
+ (-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-692))))
+ ((*1 *2 *2 *3 *4 *4 *5)
+ (-12 (-5 *2 (-1126 (-225))) (-5 *3 (-1 (-939 (-225)) (-225) (-225)))
+ (-5 *4 (-1087 (-225))) (-5 *5 (-640 (-263))) (-5 *1 (-692)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093))
+ (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-640 (-767))) (-5 *3 (-112)) (-5 *1 (-1157 *4 *5))
+ (-14 *4 (-917)) (-4 *5 (-1045)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-648 *4)) (-4 *4 (-342 *5 *6 *7))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6)))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4))))
+ (-5 *1 (-802 *5 *6 *7 *4)))))
+(((*1 *1 *1 *1) (-4 *1 (-963))))
+(((*1 *1 *1 *1) (-4 *1 (-545))))
(((*1 *2 *1) (-12 (-4 *1 (-254 *3)) (-4 *3 (-1208)) (-5 *2 (-767))))
((*1 *2 *1) (-12 (-4 *1 (-302)) (-5 *2 (-767))))
((*1 *2 *3)
@@ -750,64 +707,77 @@
((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-609 *3)) (-4 *3 (-846))))
((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858))))
((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-858)))))
-(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
+ ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-263)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *2 (-846))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-789)) (-4 *5 (-1045)) (-4 *6 (-945 *5 *4 *2))
- (-4 *2 (-846)) (-5 *1 (-946 *4 *2 *5 *6 *3))
- (-4 *3
- (-13 (-363)
- (-10 -8 (-15 -1693 ($ *6)) (-15 -2143 (*6 $))
- (-15 -2154 (*6 $)))))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555))
- (-5 *2 (-1169)) (-5 *1 (-1039 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-112))
- (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-4 *3 (-13 (-27) (-1193) (-430 *6) (-10 -8 (-15 -1693 ($ *7)))))
- (-4 *7 (-844))
- (-4 *8
- (-13 (-1235 *3 *7) (-363) (-1193)
- (-10 -8 (-15 -4202 ($ $)) (-15 -3698 ($ $)))))
+ (-12
(-5 *2
- (-3 (|:| |%series| *8)
- (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))))
- (-5 *1 (-422 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1151)) (-4 *9 (-979 *8))
- (-14 *10 (-1169)))))
-(((*1 *1) (-5 *1 (-291))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-640 *5)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5))
- (-14 *3 (-563)) (-14 *4 (-767)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *1)
- (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172))
- (-4 *5 (-238 (-3608 *3) (-767)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2555 *2) (|:| -1654 *5))
- (-2 (|:| -2555 *2) (|:| -1654 *5))))
- (-4 *2 (-846)) (-5 *1 (-461 *3 *4 *2 *5 *6 *7))
- (-4 *7 (-945 *4 *5 (-860 *3))))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846))
- (-5 *2 (-2 (|:| -2311 *1) (|:| |gap| (-767)) (|:| -1972 *1)))
- (-4 *1 (-1059 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *2 (-2 (|:| -2311 *1) (|:| |gap| (-767)) (|:| -1972 *1)))
- (-4 *1 (-1059 *3 *4 *5)))))
-(((*1 *1 *1) (-12 (-5 *1 (-1194 *2)) (-4 *2 (-1093)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-4 *1 (-899 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-733 *3))))
- ((*1 *1 *2) (-12 (-5 *1 (-733 *2)) (-4 *2 (-1093))))
- ((*1 *1) (-12 (-5 *1 (-733 *2)) (-4 *2 (-1093)))))
-(((*1 *1 *1) (-4 *1 (-555))))
+ (-1257
+ (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225))
+ (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -4196 (-563))
+ (|:| -4174 (-563)) (|:| |spline| (-563)) (|:| -1342 (-563))
+ (|:| |axesColor| (-870)) (|:| -3532 (-563))
+ (|:| |unitsColor| (-870)) (|:| |showing| (-563)))))
+ (-5 *1 (-1258)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *2 (-452)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-767)) (-4 *4 (-349)) (-5 *1 (-216 *4 *2))
+ (-4 *2 (-1233 *4))))
+ ((*1 *2 *2 *3 *2 *3)
+ (-12 (-5 *3 (-563)) (-5 *1 (-691 *2)) (-4 *2 (-1233 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-640 (-407 (-948 (-563))))) (-5 *4 (-640 (-1169)))
+ (-5 *2 (-640 (-640 *5))) (-5 *1 (-380 *5))
+ (-4 *5 (-13 (-844) (-363)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-407 (-948 (-563)))) (-5 *2 (-640 *4)) (-5 *1 (-380 *4))
+ (-4 *4 (-13 (-844) (-363))))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-640 (-767))) (-5 *3 (-171)) (-5 *1 (-1157 *4 *5))
+ (-14 *4 (-917)) (-4 *5 (-1045)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1169))
+ (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *2 (-1 *5 *5)) (-5 *1 (-800 *4 *5))
+ (-4 *5 (-13 (-29 *4) (-1193) (-955))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))))
+(((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *4 (-1 (-3 (-563) "failed") *5)) (-4 *5 (-1045))
+ (-5 *2 (-563)) (-5 *1 (-543 *5 *3)) (-4 *3 (-1233 *5))))
+ ((*1 *2 *3 *4 *2 *5)
+ (|partial| -12 (-5 *5 (-1 (-3 (-563) "failed") *4)) (-4 *4 (-1045))
+ (-5 *2 (-563)) (-5 *1 (-543 *4 *3)) (-4 *3 (-1233 *4))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1 (-3 (-563) "failed") *4)) (-4 *4 (-1045))
+ (-5 *2 (-563)) (-5 *1 (-543 *4 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1151)) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-263)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1257 (-3 (-468) "undefined"))) (-5 *1 (-1258)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *2 (-452)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-2 (|:| |deg| (-767)) (|:| -3248 *5))))
+ (-4 *5 (-1233 *4)) (-4 *4 (-349)) (-5 *2 (-640 *5))
+ (-5 *1 (-216 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-2 (|:| -2173 *5) (|:| -3871 (-563)))))
+ (-5 *4 (-563)) (-4 *5 (-1233 *4)) (-5 *2 (-640 *5))
+ (-5 *1 (-691 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-407 (-948 (-169 (-563))))) (-5 *2 (-640 (-169 *4)))
+ (-5 *1 (-378 *4)) (-4 *4 (-13 (-363) (-844)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-640 (-407 (-948 (-169 (-563))))))
+ (-5 *4 (-640 (-1169))) (-5 *2 (-640 (-640 (-169 *5))))
+ (-5 *1 (-378 *5)) (-4 *5 (-13 (-363) (-844))))))
(((*1 *1 *2 *3)
(-12 (-4 *1 (-382 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1093))))
((*1 *2 *3 *4)
@@ -816,121 +786,104 @@
((*1 *1 *2 *3)
(-12 (-5 *2 (-815 *4)) (-4 *4 (-846)) (-4 *1 (-1274 *4 *3))
(-4 *3 (-1045)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
- (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
- (-5 *2 (-684 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-684 *4)) (-5 *1 (-416 *3 *4))
- (-4 *3 (-417 *4))))
- ((*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3)
- (-12 (-5 *4 (-640 (-112))) (-5 *5 (-684 (-225)))
- (-5 *6 (-684 (-563))) (-5 *7 (-225)) (-5 *3 (-563)) (-5 *2 (-1031))
- (-5 *1 (-750)))))
-(((*1 *2)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))))
-(((*1 *1 *2 *2)
- (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-640 (-767))) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
+ (-4 *4 (-1045)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1169))
+ (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *1 (-800 *4 *2)) (-4 *2 (-13 (-29 *4) (-1193) (-955))))))
+(((*1 *2 *1) (-12 (-5 *1 (-962 *2)) (-4 *2 (-963)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-307)) (-5 *1 (-455 *3 *2)) (-4 *2 (-1233 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-307)) (-5 *1 (-460 *3 *2)) (-4 *2 (-1233 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-307)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-767)))
+ (-5 *1 (-539 *3 *2 *4 *5)) (-4 *2 (-1233 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-468)) (-5 *4 (-917)) (-5 *2 (-1262)) (-5 *1 (-1258)))))
(((*1 *1 *1)
(-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)))))
-(((*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-108))))
- ((*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-217))))
- ((*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-487))))
- ((*1 *1 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-307))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-407 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563))))
- ((*1 *1 *1) (-4 *1 (-1054))))
-(((*1 *1 *2 *2 *3 *1)
- (-12 (-5 *2 (-1169)) (-5 *3 (-1097)) (-5 *1 (-291)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1087 (-225)))
- (-5 *2 (-1259)) (-5 *1 (-257)))))
-(((*1 *2 *3)
- (-12
- (-5 *2
- (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))))
- (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563)))))
- ((*1 *2 *3 *4)
- (-12
- (-5 *2
- (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))))
- (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563)))
- (-5 *4 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))))
+ (-4 *4 (-846)) (-4 *2 (-452)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-563)) (-5 *2 (-640 (-2 (|:| -2173 *3) (|:| -3871 *4))))
+ (-5 *1 (-691 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-407 (-948 (-169 (-563))))))
+ (-5 *2 (-640 (-640 (-294 (-948 (-169 *4)))))) (-5 *1 (-378 *4))
+ (-4 *4 (-13 (-363) (-844)))))
((*1 *2 *3 *4)
- (-12
- (-5 *2
- (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))))
- (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563))) (-5 *4 (-407 (-563)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-407 (-563)))
- (-5 *2 (-640 (-2 (|:| -1686 *5) (|:| -1701 *5)))) (-5 *1 (-1016 *3))
- (-4 *3 (-1233 (-563))) (-5 *4 (-2 (|:| -1686 *5) (|:| -1701 *5)))))
- ((*1 *2 *3)
- (-12
- (-5 *2
- (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))))
- (-5 *1 (-1017 *3)) (-4 *3 (-1233 (-407 (-563))))))
+ (-12 (-5 *3 (-640 (-294 (-407 (-948 (-169 (-563)))))))
+ (-5 *2 (-640 (-640 (-294 (-948 (-169 *4)))))) (-5 *1 (-378 *4))
+ (-4 *4 (-13 (-363) (-844)))))
((*1 *2 *3 *4)
- (-12
- (-5 *2
- (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))))
- (-5 *1 (-1017 *3)) (-4 *3 (-1233 (-407 (-563))))
- (-5 *4 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))))
+ (-12 (-5 *3 (-407 (-948 (-169 (-563)))))
+ (-5 *2 (-640 (-294 (-948 (-169 *4))))) (-5 *1 (-378 *4))
+ (-4 *4 (-13 (-363) (-844)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-407 (-563)))
- (-5 *2 (-640 (-2 (|:| -1686 *4) (|:| -1701 *4)))) (-5 *1 (-1017 *3))
- (-4 *3 (-1233 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-407 (-563)))
- (-5 *2 (-640 (-2 (|:| -1686 *5) (|:| -1701 *5)))) (-5 *1 (-1017 *3))
- (-4 *3 (-1233 *5)) (-5 *4 (-2 (|:| -1686 *5) (|:| -1701 *5))))))
+ (-12 (-5 *3 (-294 (-407 (-948 (-169 (-563))))))
+ (-5 *2 (-640 (-294 (-948 (-169 *4))))) (-5 *1 (-378 *4))
+ (-4 *4 (-13 (-363) (-844))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-939 *4)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
+ (-4 *4 (-1045)))))
(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-31))))
((*1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-917)))) ((*1 *1) (-4 *1 (-545)))
((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-694))))
((*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-280))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-846)) (-5 *2 (-640 (-640 (-640 *4))))
- (-5 *1 (-1179 *4)) (-5 *3 (-640 (-640 *4))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-1149 *3))) (-5 *2 (-1149 *3)) (-5 *1 (-1153 *3))
- (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-361 *3)) (-4 *3 (-1093))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-5 *2 (-767)) (-5 *1 (-386 *4)) (-4 *4 (-1093))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-4 *2 (-23)) (-5 *1 (-644 *4 *2 *5))
- (-4 *4 (-1093)) (-14 *5 *2)))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-5 *2 (-767)) (-5 *1 (-815 *4)) (-4 *4 (-846)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-620 *4 *5))
+ (|partial| -12
(-5 *3
- (-1 (-2 (|:| |ans| *4) (|:| -1701 *4) (|:| |sol?| (-112)))
- (-563) *4))
- (-4 *4 (-363)) (-4 *5 (-1233 *4)) (-5 *1 (-573 *4 *5)))))
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
+ (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *2
+ (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379))
+ (|:| |expense| (-379)) (|:| |accuracy| (-379))
+ (|:| |intermediateResults| (-379))))
+ (-5 *1 (-799)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7))))
- (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-1045))
- (-5 *1 (-1153 *4))))
- ((*1 *1 *2 *2 *1)
- (-12 (-5 *2 (-563)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045))
- (-14 *4 (-1169)) (-14 *5 *3))))
-(((*1 *2 *3 *4 *4 *4 *5 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
- (-5 *2 (-1031)) (-5 *1 (-747)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-151 *2))
- (-4 *2 (-1208)))))
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-1233 *4)) (-5 *1 (-539 *4 *2 *5 *6))
+ (-4 *4 (-307)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-767))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-923))
+ (-5 *2
+ (-2 (|:| |brans| (-640 (-640 (-939 (-225)))))
+ (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))))
+ (-5 *1 (-153))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-923)) (-5 *4 (-407 (-563)))
+ (-5 *2
+ (-2 (|:| |brans| (-640 (-640 (-939 (-225)))))
+ (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))))
+ (-5 *1 (-153))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *2
+ (-2 (|:| |brans| (-640 (-640 (-939 (-225)))))
+ (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))))
+ (-5 *1 (-153)) (-5 *3 (-640 (-939 (-225))))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *2
+ (-2 (|:| |brans| (-640 (-640 (-939 (-225)))))
+ (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))))
+ (-5 *1 (-153)) (-5 *3 (-640 (-640 (-939 (-225)))))))
+ ((*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-263))))
+ ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-263)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-917)) (-5 *2 (-468)) (-5 *1 (-1258)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *2 (-452)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-563)) (-5 *1 (-691 *2)) (-4 *2 (-1233 *3)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-563)) (-5 *1 (-379)))))
(((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-767)) (-4 *1 (-231 *4))
(-4 *4 (-1045))))
@@ -987,65 +940,66 @@
(-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1249 *3 *4 *5))
(-4 *3 (-1045)) (-14 *5 *3))))
(((*1 *2 *1)
+ (-12 (-5 *2 (-767)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
+ (-4 *4 (-1045)))))
+(((*1 *2 *1)
(-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045))
(-5 *2
- (-2 (|:| -2630 (-767)) (|:| |curves| (-767))
+ (-2 (|:| -4196 (-767)) (|:| |curves| (-767))
(|:| |polygons| (-767)) (|:| |constructs| (-767)))))))
-(((*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3)
- (-12 (-5 *5 (-684 (-225))) (-5 *6 (-684 (-563))) (-5 *3 (-563))
- (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-767)) (-5 *1 (-779 *2)) (-4 *2 (-38 (-407 (-563))))
- (-4 *2 (-172)))))
-(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-112))
- (-5 *2 (-1031)) (-5 *1 (-749)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789))
- (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-640 (-506))) (-5 *2 (-506)) (-5 *1 (-483)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-38 (-407 (-563))))
- (-4 *2 (-172)))))
-(((*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-545))))
- ((*1 *1 *1) (-4 *1 (-1054))))
-(((*1 *2 *2) (-12 (-5 *2 (-640 (-684 (-316 (-563))))) (-5 *1 (-1027)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *2 (-846)) (-4 *5 (-1059 *3 *4 *2)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4))
- (-4 *4 (-349)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-119 *2)) (-4 *2 (-1208)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *2 (-846))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)))))
+(((*1 *1 *1) (-12 (-5 *1 (-962 *2)) (-4 *2 (-963)))))
+(((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-640
+ (-2
+ (|:| -2387
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1257 (-316 (-225))))
+ (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225)))
+ (|:| |g| (-316 (-225))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (|:| -2556
+ (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379))
+ (|:| |expense| (-379)) (|:| |accuracy| (-379))
+ (|:| |intermediateResults| (-379)))))))
+ (-5 *1 (-799)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1165 *7)) (-4 *7 (-945 *6 *4 *5)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1045)) (-5 *2 (-1165 *6))
- (-5 *1 (-321 *4 *5 *6 *7)))))
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-1233 *4)) (-5 *1 (-539 *4 *2 *5 *6))
+ (-4 *4 (-307)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-767))))))
+(((*1 *1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-263))))
+ ((*1 *1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-263)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))))
+(((*1 *1) (-5 *1 (-1057))))
+(((*1 *1 *1) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)) (-4 *2 (-1093))))
+ ((*1 *1 *1) (-12 (-4 *1 (-690 *2)) (-4 *2 (-1093)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-225))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-225))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-379))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-379)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
+ (-4 *4 (-1045)))))
+(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-799)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 *6)) (-5 *4 (-640 (-1169))) (-4 *6 (-363))
+ (-5 *2 (-640 (-294 (-948 *6)))) (-5 *1 (-538 *5 *6 *7))
+ (-4 *5 (-452)) (-4 *7 (-13 (-363) (-844))))))
(((*1 *2 *2) (|partial| -12 (-5 *2 (-316 (-225))) (-5 *1 (-305))))
((*1 *2 *1)
(|partial| -12
(-5 *2 (-2 (|:| |num| (-888 *3)) (|:| |den| (-888 *3))))
(-5 *1 (-888 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *6)) (-5 *4 (-1169)) (-4 *6 (-430 *5))
- (-4 *5 (-846)) (-5 *2 (-640 (-609 *6))) (-5 *1 (-572 *5 *6)))))
+(((*1 *1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-263))))
+ ((*1 *1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-263)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))))
(((*1 *2 *3 *2 *3)
(-12 (-5 *2 (-437)) (-5 *3 (-1169)) (-5 *1 (-1172))))
((*1 *2 *3 *2) (-12 (-5 *2 (-437)) (-5 *3 (-1169)) (-5 *1 (-1172))))
@@ -1058,209 +1012,134 @@
(-12 (-5 *2 (-437)) (-5 *3 (-1169)) (-5 *1 (-1173))))
((*1 *2 *3 *2 *1)
(-12 (-5 *2 (-437)) (-5 *3 (-640 (-1169))) (-5 *1 (-1173)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-1169))) (-5 *2 (-1262)) (-5 *1 (-1172))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1262))
- (-5 *1 (-1172))))
- ((*1 *2 *3 *4 *1)
- (-12 (-5 *4 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1262))
- (-5 *1 (-1172)))))
(((*1 *2 *1) (-12 (-5 *2 (-1207)) (-5 *1 (-180))))
((*1 *2 *1) (-12 (-5 *2 (-1207)) (-5 *1 (-676))))
((*1 *2 *1) (-12 (-5 *2 (-1207)) (-5 *1 (-966))))
((*1 *2 *1) (-12 (-5 *2 (-1207)) (-5 *1 (-1067))))
((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-1111)))))
-(((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-327 *3)) (-4 *3 (-1208))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-767)) (-5 *1 (-516 *3 *4)) (-4 *3 (-1208))
- (-14 *4 (-563)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 *3)) (-4 *3 (-945 *5 *6 *7)) (-4 *5 (-452))
- (-4 *6 (-789)) (-4 *7 (-846))
- (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5)))
- (-5 *1 (-449 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-555))
- (-5 *2 (-2 (|:| -2835 (-684 *5)) (|:| |vec| (-1257 (-640 (-917))))))
- (-5 *1 (-90 *5 *3)) (-5 *4 (-917)) (-4 *3 (-651 *5)))))
+(((*1 *1 *1) (-5 *1 (-1057))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-690 *3)) (-4 *3 (-1093))
+ (-5 *2 (-640 (-2 (|:| -2556 *3) (|:| -1708 (-767))))))))
+(((*1 *1 *1) (-5 *1 (-225))) ((*1 *1 *1) (-5 *1 (-379)))
+ ((*1 *1) (-5 *1 (-379))))
(((*1 *2 *2 *2 *3 *4)
(-12 (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1045))
(-5 *1 (-849 *5 *2)) (-4 *2 (-848 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-257)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045))
- (-14 *4 (-640 (-1169)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846)))
- (-14 *4 (-640 (-1169))))))
+ (-12 (-5 *2 (-171)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
+ (-4 *4 (-1045)))))
+(((*1 *1) (-5 *1 (-799))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1278 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
- (-5 *2 (-815 *3))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-842)) (-5 *1 (-1280 *3 *2)) (-4 *3 (-1045)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-563)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1208))
- (-4 *5 (-373 *4)) (-4 *3 (-373 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-607 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093))
- (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1135 *4 *2)) (-14 *4 (-917))
- (-4 *2 (-13 (-1045) (-10 -7 (-6 (-4409 "*")))))
- (-5 *1 (-898 *4 *2)))))
+ (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3))
+ (-4 *3 (-963)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-640 (-948 *6))) (-5 *4 (-640 (-1169))) (-4 *6 (-452))
+ (-5 *2 (-640 (-640 *7))) (-5 *1 (-538 *6 *7 *5)) (-4 *7 (-363))
+ (-4 *5 (-13 (-363) (-844))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-263))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225) (-225))) (-5 *1 (-263))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-263)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))))
+(((*1 *1 *1) (-5 *1 (-1057))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *5 (-767)) (-4 *6 (-1093)) (-4 *7 (-896 *6))
+ (-5 *2 (-684 *7)) (-5 *1 (-687 *6 *7 *3 *4)) (-4 *3 (-373 *7))
+ (-4 *4 (-13 (-373 *6) (-10 -7 (-6 -4408)))))))
+(((*1 *1) (-5 *1 (-225))) ((*1 *1) (-5 *1 (-379))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-1169))
+ (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-4 *4 (-13 (-29 *6) (-1193) (-955)))
+ (-5 *2 (-2 (|:| |particular| *4) (|:| -4013 (-640 *4))))
+ (-5 *1 (-797 *6 *4 *3)) (-4 *3 (-651 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))))
(((*1 *2 *3 *4)
- (-12 (-4 *6 (-555)) (-4 *2 (-945 *3 *5 *4))
- (-5 *1 (-728 *5 *4 *6 *2)) (-5 *3 (-407 (-948 *6))) (-4 *5 (-789))
- (-4 *4 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $))))))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093))
- (-4 *4 (-1093)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-1172)) (-5 *3 (-1169)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1151)) (-5 *2 (-214 (-502))) (-5 *1 (-833)))))
-(((*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-767)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045))
- (-14 *4 (-640 (-1169)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-563)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846)))
- (-14 *4 (-640 (-1169)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846))
- (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-767))))
- ((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-275))))
+ (-12 (-5 *3 (-1165 *5)) (-4 *5 (-452)) (-5 *2 (-640 *6))
+ (-5 *1 (-538 *5 *6 *4)) (-4 *6 (-363)) (-4 *4 (-13 (-363) (-844)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1165 *8)) (-5 *4 (-640 *6)) (-4 *6 (-846))
- (-4 *8 (-945 *7 *5 *6)) (-4 *5 (-789)) (-4 *7 (-1045))
- (-5 *2 (-640 (-767))) (-5 *1 (-321 *5 *6 *7 *8))))
- ((*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-917))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172))
- (-5 *2 (-767))))
- ((*1 *2 *1) (-12 (-4 *1 (-470 *3 *2)) (-4 *3 (-172)) (-4 *2 (-23))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-555)) (-5 *2 (-563)) (-5 *1 (-620 *3 *4))
- (-4 *4 (-1233 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-704 *3)) (-4 *3 (-1045)) (-5 *2 (-767))))
- ((*1 *2 *1) (-12 (-4 *1 (-848 *3)) (-4 *3 (-1045)) (-5 *2 (-767))))
- ((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-900 *3)) (-4 *3 (-1093))))
- ((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-901 *3)) (-4 *3 (-1093))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-640 *6)) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 (-767)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-945 *4 *5 *3)) (-4 *4 (-1045)) (-4 *5 (-789))
- (-4 *3 (-846)) (-5 *2 (-767))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-969 *3 *2 *4)) (-4 *3 (-1045)) (-4 *4 (-846))
- (-4 *2 (-788))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-767))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1219 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1248 *3))
- (-5 *2 (-563))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1240 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1217 *3))
- (-5 *2 (-407 (-563)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-829 (-917)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1278 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
- (-5 *2 (-767)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1165 *3)) (-4 *3 (-368)) (-4 *1 (-329 *3))
- (-4 *3 (-363)))))
-(((*1 *2) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-105)))))
+ (-12 (-5 *3 (-948 *5)) (-4 *5 (-452)) (-5 *2 (-640 *6))
+ (-5 *1 (-538 *5 *6 *4)) (-4 *6 (-363)) (-4 *4 (-13 (-363) (-844))))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-407 (-563))))) (-5 *1 (-263))))
+ ((*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-263)))))
+(((*1 *1 *2 *2 *2)
+ (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193)))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363))))
+ ((*1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363))))
+ ((*1 *2 *1 *3 *4 *4)
+ (-12 (-5 *3 (-917)) (-5 *4 (-379)) (-5 *2 (-1262)) (-5 *1 (-1258)))))
(((*1 *1 *1) (-5 *1 (-1057))))
-(((*1 *2 *3 *3 *4 *4 *3 *3 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
- (-5 *2 (-1031)) (-5 *1 (-751)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169))
- (-4 *5 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *2
- (-2 (|:| |func| *3) (|:| |kers| (-640 (-609 *3)))
- (|:| |vals| (-640 *3))))
- (-5 *1 (-277 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151))
- (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *2 (-640 (-1165 *7))) (-5 *3 (-1165 *7))
- (-4 *7 (-945 *5 *6 *4)) (-4 *5 (-905)) (-4 *6 (-789))
- (-4 *4 (-846)) (-5 *1 (-902 *5 *6 *4 *7)))))
-(((*1 *2 *3 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *7)
- (|:| |polj| *7)))
- (-4 *5 (-789)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *6 (-846))
- (-5 *2 (-112)) (-5 *1 (-449 *4 *5 *6 *7)))))
+ (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *4 (-640 (-1169)))
+ (-5 *2 (-684 (-316 (-225)))) (-5 *1 (-205))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1093)) (-4 *6 (-896 *5)) (-5 *2 (-684 *6))
+ (-5 *1 (-687 *5 *6 *3 *4)) (-4 *3 (-373 *6))
+ (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4408)))))))
+(((*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379))))
+ ((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-379)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-939 *4))) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
+ (-4 *4 (-1045)))))
(((*1 *2 *3)
- (|partial| -12 (-4 *2 (-1093)) (-5 *1 (-1185 *3 *2)) (-4 *3 (-1093)))))
-(((*1 *1 *2 *3)
- (-12
- (-5 *3
- (-640
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2)
- (|:| |xpnt| (-563)))))
- (-4 *2 (-555)) (-5 *1 (-418 *2))))
- ((*1 *2 *3)
- (-12
+ (-12 (-4 *1 (-796))
(-5 *3
- (-2 (|:| |contp| (-563))
- (|:| -2760 (-640 (-2 (|:| |irr| *4) (|:| -1650 (-563)))))))
- (-4 *4 (-1233 (-563))) (-5 *2 (-418 *4)) (-5 *1 (-442 *4)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-452)) (-4 *3 (-846)) (-4 *4 (-789))
- (-5 *1 (-983 *2 *3 *4 *5)) (-4 *5 (-945 *2 *4 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-349))
- (-5 *2 (-640 (-2 (|:| |deg| (-767)) (|:| -2169 *3))))
- (-5 *1 (-216 *4 *3)) (-4 *3 (-1233 *4)))))
-(((*1 *1 *1)
- (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-172)) (-4 *2 (-555))))
- ((*1 *1 *1) (|partial| -4 *1 (-718))))
-(((*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
- (-5 *2 (-640 (-948 *4)))))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-640 (-948 *4))) (-5 *1 (-416 *3 *4))
- (-4 *3 (-417 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-640 (-948 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-640 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
- (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
- (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1257 (-453 *4 *5 *6 *7))) (-5 *2 (-640 (-948 *4)))
- (-5 *1 (-453 *4 *5 *6 *7)) (-4 *4 (-555)) (-4 *4 (-172))
- (-14 *5 (-917)) (-14 *6 (-640 (-1169))) (-14 *7 (-1257 (-684 *4))))))
-(((*1 *2 *2 *3 *3)
- (|partial| -12 (-5 *3 (-1169))
- (-4 *4 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-574 *4 *2))
- (-4 *2 (-13 (-1193) (-955) (-1132) (-29 *4))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1149 (-1149 *4))) (-5 *2 (-1149 *4)) (-5 *1 (-1153 *4))
- (-4 *4 (-38 (-407 (-563)))) (-4 *4 (-1045)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1091 *3)) (-4 *3 (-1093)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))))
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
+ (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *2 (-1031)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3))
+ (-4 *3 (-963)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-2 (|:| |deg| (-767)) (|:| -2169 *5))))
- (-4 *5 (-1233 *4)) (-4 *4 (-349)) (-5 *2 (-640 *5))
- (-5 *1 (-216 *4 *5))))
+ (-12 (-5 *3 (-1169)) (-5 *2 (-536)) (-5 *1 (-535 *4))
+ (-4 *4 (-1208)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-263))) (-5 *4 (-1169)) (-5 *2 (-112))
+ (-5 *1 (-263)))))
+(((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-144)))))
+(((*1 *2 *3 *4 *4 *5 *6)
+ (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-870))
+ (-5 *5 (-917)) (-5 *6 (-640 (-263))) (-5 *2 (-1258))
+ (-5 *1 (-1261))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-2 (|:| -2174 *5) (|:| -4167 (-563)))))
- (-5 *4 (-563)) (-4 *5 (-1233 *4)) (-5 *2 (-640 *5))
- (-5 *1 (-691 *5)))))
+ (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-640 (-263)))
+ (-5 *2 (-1258)) (-5 *1 (-1261)))))
+(((*1 *1 *1) (-5 *1 (-1057))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-767)) (-4 *6 (-1093)) (-4 *3 (-896 *6))
+ (-5 *2 (-684 *3)) (-5 *1 (-687 *6 *3 *7 *4)) (-4 *7 (-373 *3))
+ (-4 *4 (-13 (-373 *6) (-10 -7 (-6 -4408)))))))
+(((*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379))))
+ ((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-379)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-326 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788))
+ (-4 *2 (-452))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-342 *2 *3 *4)) (-4 *2 (-1212)) (-4 *3 (-1233 *2))
+ (-4 *4 (-1233 (-407 *3)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-452))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *2 (-846)) (-4 *3 (-452))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-945 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *2 (-452))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-307)) (-4 *3 (-555)) (-5 *1 (-1156 *3 *2))
+ (-4 *2 (-1233 *3)))))
+(((*1 *1 *2 *2 *2 *2 *2 *2 *2 *2)
+ (-12 (-4 *1 (-793 *2)) (-4 *2 (-172))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-995 *3)) (-4 *3 (-172)) (-5 *1 (-795 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))))
+(((*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-108))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-536))) (-5 *1 (-536)))))
(((*1 *1 *2 *1) (-12 (-4 *1 (-21)) (-5 *2 (-563))))
((*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-767))))
((*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-917))))
@@ -1292,10 +1171,10 @@
((*1 *1 *2 *1) (-12 (-5 *1 (-386 *2)) (-4 *2 (-1093))))
((*1 *1 *2 *1)
(-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172))
- (-4 *6 (-238 (-3608 *3) (-767)))
+ (-4 *6 (-238 (-3610 *3) (-767)))
(-14 *7
- (-1 (-112) (-2 (|:| -2555 *5) (|:| -1654 *6))
- (-2 (|:| -2555 *5) (|:| -1654 *6))))
+ (-1 (-112) (-2 (|:| -2552 *5) (|:| -3311 *6))
+ (-2 (|:| -2552 *5) (|:| -3311 *6))))
(-5 *1 (-461 *3 *4 *5 *6 *7 *2)) (-4 *5 (-846))
(-4 *2 (-945 *4 *6 (-860 *3)))))
((*1 *1 *1 *2)
@@ -1374,28 +1253,24 @@
(-12 (-4 *1 (-1274 *3 *2)) (-4 *3 (-846)) (-4 *2 (-1045))))
((*1 *1 *1 *2)
(-12 (-5 *1 (-1280 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-842)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-563)) (-5 *1 (-316 *3)) (-4 *3 (-555)) (-4 *3 (-846)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1165 *1)) (-5 *4 (-1169)) (-4 *1 (-27))
- (-5 *2 (-640 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-1165 *1)) (-4 *1 (-27)) (-5 *2 (-640 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-948 *1)) (-4 *1 (-27)) (-5 *2 (-640 *1))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-640 *1))
- (-4 *1 (-29 *4))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *2 (-640 *1)) (-4 *1 (-29 *3)))))
-(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-1151)) (-5 *3 (-819)) (-5 *1 (-818)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225)))
- (-5 *2 (-1031)) (-5 *1 (-743)))))
-(((*1 *1) (-5 *1 (-144)))
+(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-257)))))
+(((*1 *1) (-5 *1 (-144))))
+(((*1 *2 *3 *4 *4 *5 *6)
+ (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-870))
+ (-5 *5 (-917)) (-5 *6 (-640 (-263))) (-5 *2 (-468)) (-5 *1 (-1261))))
((*1 *2 *3)
- (-12 (-5 *3 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-261))))
- ((*1 *1 *2) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-263)))))
+ (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *2 (-468))
+ (-5 *1 (-1261))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-640 (-263)))
+ (-5 *2 (-468)) (-5 *1 (-1261)))))
+(((*1 *1 *1) (-5 *1 (-1057))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1093)) (-4 *3 (-896 *5)) (-5 *2 (-684 *3))
+ (-5 *1 (-687 *5 *3 *6 *4)) (-4 *6 (-373 *3))
+ (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4408)))))))
+(((*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379))))
+ ((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-379)))))
(((*1 *1 *1 *1)
(-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23))
(-14 *4 *3)))
@@ -1404,118 +1279,112 @@
(-14 *4 *3)))
((*1 *1 *1 *1)
(-12 (-5 *1 (-670 *2)) (-4 *2 (-1045)) (-4 *2 (-1093)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-452)) (-4 *4 (-846))
- (-4 *5 (-789)) (-5 *1 (-983 *3 *4 *5 *6)) (-4 *6 (-945 *3 *5 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169)) (-5 *2 (-1 (-225) (-225))) (-5 *1 (-699 *3))
- (-4 *3 (-611 (-536)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1169)) (-5 *2 (-1 (-225) (-225) (-225)))
- (-5 *1 (-699 *3)) (-4 *3 (-611 (-536))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-5 *2 (-640 (-640 *3)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-640 (-640 *5)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-640 (-640 *3))) (-5 *1 (-1180 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-555)) (-5 *2 (-954 *3)) (-5 *1 (-1156 *4 *3))
+ (-4 *3 (-1233 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045))
- (-14 *4 (-640 (-1169)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1208))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846)))
- (-14 *4 (-640 (-1169)))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-667 *3)) (-4 *3 (-846))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-846))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-889 *3)) (-4 *3 (-846)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-452))
- (-5 *2 (-481 *4 *5)) (-5 *1 (-628 *4 *5)))))
+ (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3))
+ (-4 *3 (-963)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-536)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-302)) (-4 *2 (-1208))))
((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-640 (-609 *1))) (-5 *3 (-640 *1)) (-4 *1 (-302))))
((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-294 *1))) (-4 *1 (-302))))
((*1 *1 *1 *2) (-12 (-5 *2 (-294 *1)) (-4 *1 (-302)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-1149 *3)) (-4 *3 (-363)) (-4 *3 (-1045))
- (-5 *1 (-1153 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-257)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1208))
+ (-4 *5 (-1208)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-240 *6 *7)) (-14 *6 (-767))
+ (-4 *7 (-1208)) (-4 *5 (-1208)) (-5 *2 (-240 *6 *5))
+ (-5 *1 (-239 *6 *7 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1208)) (-4 *5 (-1208))
+ (-4 *2 (-373 *5)) (-5 *1 (-371 *6 *4 *5 *2)) (-4 *4 (-373 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1093)) (-4 *5 (-1093))
+ (-4 *2 (-425 *5)) (-5 *1 (-423 *6 *4 *5 *2)) (-4 *4 (-425 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-640 *6)) (-4 *6 (-1208))
+ (-4 *5 (-1208)) (-5 *2 (-640 *5)) (-5 *1 (-638 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-954 *6)) (-4 *6 (-1208))
+ (-4 *5 (-1208)) (-5 *2 (-954 *5)) (-5 *1 (-953 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1149 *6)) (-4 *6 (-1208))
+ (-4 *3 (-1208)) (-5 *2 (-1149 *3)) (-5 *1 (-1147 *6 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1257 *6)) (-4 *6 (-1208))
+ (-4 *5 (-1208)) (-5 *2 (-1257 *5)) (-5 *1 (-1256 *6 *5)))))
(((*1 *2 *1) (-12 (-5 *2 (-640 (-1207))) (-5 *1 (-676))))
((*1 *2 *1) (-12 (-5 *2 (-640 (-1174))) (-5 *1 (-1111)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 (-407 (-563)))) (-5 *2 (-640 *4)) (-5 *1 (-775 *4))
- (-4 *4 (-13 (-363) (-844))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-640 *3)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-417 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
- ((*1 *2 *3) (-12 (-5 *3 (-967)) (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-1233 *4)) (-5 *1 (-539 *4 *2 *5 *6))
- (-4 *4 (-307)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-767))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
- (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4))))
- ((*1 *2 *3 *3 *3 *3 *3)
- (-12 (-4 *3 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
- (-5 *2 (-640 *3)) (-5 *1 (-1121 *4 *3)) (-4 *4 (-1233 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
- (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
- (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
-(((*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))))
-(((*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))))
-(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
- (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225)))
- (-5 *2 (-1031)) (-5 *1 (-750)))))
-(((*1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1172)))))
+(((*1 *1 *1) (-5 *1 (-1057))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-1093)) (-4 *2 (-896 *4)) (-5 *1 (-687 *4 *2 *5 *3))
+ (-4 *5 (-373 *2)) (-4 *3 (-13 (-373 *4) (-10 -7 (-6 -4408)))))))
+(((*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-563)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045)))))
-(((*1 *2 *1) (-12 (-5 *2 (-183)) (-5 *1 (-248)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-403 *3)) (-4 *3 (-404))))
- ((*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-403 *3)) (-4 *3 (-404))))
- ((*1 *2 *2) (-12 (-5 *2 (-917)) (|has| *1 (-6 -4398)) (-4 *1 (-404))))
- ((*1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-917))))
- ((*1 *2 *1) (-12 (-4 *1 (-865 *3)) (-5 *2 (-1149 (-563))))))
-(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *2)) (-4 *2 (-172))))
- ((*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-416 *3 *2)) (-4 *3 (-417 *2))))
- ((*1 *2) (-12 (-4 *1 (-417 *2)) (-4 *2 (-172)))))
+ (-12 (-4 *4 (-38 (-407 (-563))))
+ (-5 *2 (-2 (|:| -1747 (-1149 *4)) (|:| -1758 (-1149 *4))))
+ (-5 *1 (-1155 *4)) (-5 *3 (-1149 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-536)))))
+(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-257)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -3548 (-778 *3)) (|:| |coef2| (-778 *3))))
- (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045))))
+ (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1208)) (-4 *2 (-1045))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-858))))
+ ((*1 *1 *1) (-5 *1 (-858)))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-939 (-225))) (-5 *2 (-225)) (-5 *1 (-1204))))
((*1 *2 *1 *1)
- (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *2 (-2 (|:| -3548 *1) (|:| |coef2| *1)))
- (-4 *1 (-1059 *3 *4 *5)))))
+ (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-1045)))))
+(((*1 *1 *1) (-5 *1 (-1057))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1093)) (-4 *2 (-896 *5)) (-5 *1 (-687 *5 *2 *3 *4))
+ (-4 *3 (-373 *2)) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4408)))))))
(((*1 *2 *3 *2)
- (-12 (-5 *3 (-917)) (-5 *1 (-1026 *2))
- (-4 *2 (-13 (-1093) (-10 -8 (-15 -1814 ($ $ $))))))))
-(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-677 *3)) (-4 *3 (-1093)))))
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-375 *4 *2))
+ (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4409)))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-192))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-300))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-305)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
+ (-12 (-4 *4 (-38 (-407 (-563))))
+ (-5 *2 (-2 (|:| -1596 (-1149 *4)) (|:| -1607 (-1149 *4))))
+ (-5 *1 (-1155 *4)) (-5 *3 (-1149 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3))
+ (-4 *3 (-963)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-684 *6)) (-5 *5 (-1 (-418 (-1165 *6)) (-1165 *6)))
+ (-4 *6 (-363))
+ (-5 *2
+ (-640
+ (-2 (|:| |outval| *7) (|:| |outmult| (-563))
+ (|:| |outvect| (-640 (-684 *7))))))
+ (-5 *1 (-532 *6 *7 *4)) (-4 *7 (-363)) (-4 *4 (-13 (-363) (-844))))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1087 (-225)))
+ (-5 *2 (-1259)) (-5 *1 (-257)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-976 *2)) (-4 *2 (-1045))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-1045)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-917)) (-5 *1 (-1026 *2))
+ (-4 *2 (-13 (-1093) (-10 -8 (-15 -1813 ($ $ $))))))))
+(((*1 *1 *1) (-5 *1 (-1057))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1093)) (-4 *3 (-896 *5)) (-5 *2 (-1257 *3))
+ (-5 *1 (-687 *5 *3 *6 *4)) (-4 *6 (-373 *3))
+ (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4408)))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-375 *4 *2))
+ (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4409)))))))
(((*1 *2 *3)
(-12 (-4 *4 (-846))
(-5 *2
@@ -1524,134 +1393,68 @@
(-5 *1 (-1179 *4)) (-5 *3 (-640 (-640 (-640 *4)))))))
(((*1 *1 *2)
(-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-1257 *3)))))
-(((*1 *2 *3 *4 *4 *5 *3 *6)
- (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-640 *3)) (-5 *6 (-1165 *3))
- (-4 *3 (-13 (-430 *7) (-27) (-1193)))
- (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-559 *7 *3 *8)) (-4 *8 (-1093))))
- ((*1 *2 *3 *4 *4 *5 *4 *3 *6)
- (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-640 *3))
- (-5 *6 (-407 (-1165 *3))) (-4 *3 (-13 (-430 *7) (-27) (-1193)))
- (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-559 *7 *3 *8)) (-4 *8 (-1093)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1087 (-839 (-225)))) (-5 *1 (-305)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1165 *6)) (-5 *3 (-563)) (-4 *6 (-307)) (-4 *4 (-789))
- (-4 *5 (-846)) (-5 *1 (-738 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5)))))
-(((*1 *2 *2)
- (-12
- (-5 *2
- (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225)))
- (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225))))
- (|:| |ub| (-640 (-839 (-225))))))
- (-5 *1 (-267)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-452)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3 (-563))) (-4 *3 (-1045)) (-5 *1 (-99 *3))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-99 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-99 *3)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1149 *3)) (-4 *3 (-363)) (-4 *3 (-1045))
+ (-5 *1 (-1153 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-960 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1165 *5)) (-4 *5 (-363)) (-5 *2 (-640 *6))
+ (-5 *1 (-532 *5 *6 *4)) (-4 *6 (-363)) (-4 *4 (-13 (-363) (-844))))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1087 (-225)))
+ (-5 *5 (-112)) (-5 *2 (-1259)) (-5 *1 (-257)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-326 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788))
- (-5 *2 (-767))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093))
- (-5 *2 (-767))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-767)) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045))
- (-4 *4 (-722)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1242 *3 *4 *5)) (-4 *3 (-13 (-363) (-846)))
- (-14 *4 (-1169)) (-14 *5 *3) (-5 *1 (-319 *3 *4 *5))))
- ((*1 *2 *3) (-12 (-5 *2 (-1 (-379))) (-5 *1 (-1036)) (-5 *3 (-379)))))
+ (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-998))
+ (-4 *2 (-1045)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-379)) (-5 *1 (-1057)))))
+(((*1 *1 *2) (-12 (-5 *1 (-686 *2)) (-4 *2 (-610 (-858))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-375 *4 *2))
+ (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4409)))))))
(((*1 *2 *1) (-12 (-5 *2 (-640 (-1174))) (-5 *1 (-183)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1208)) (-4 *2 (-1045))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-858))))
- ((*1 *1 *1) (-5 *1 (-858)))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-939 (-225))) (-5 *2 (-225)) (-5 *1 (-1204))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-1045)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *4 (-563))) (-5 *5 (-1 (-1149 *4))) (-4 *4 (-363))
+ (-4 *4 (-1045)) (-5 *2 (-1149 *4)) (-5 *1 (-1153 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193)))))
+ ((*1 *1 *1 *1) (-4 *1 (-789))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1093)) (-5 *1 (-960 *2 *3)) (-4 *3 (-1093)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349))
- (-4 *2
- (-13 (-402)
- (-10 -7 (-15 -1693 (*2 *4)) (-15 -1476 ((-917) *2))
- (-15 -4315 ((-1257 *2) (-917))) (-15 -2350 (*2 *2)))))
- (-5 *1 (-356 *2 *4)))))
-(((*1 *2 *3 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-747)))))
-(((*1 *2 *3 *2)
- (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3))
- (-4 *3 (-1233 (-169 *2)))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3))
- (-4 *3 (-1233 (-169 *2))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-640 *3)) (-4 *3 (-307)) (-5 *1 (-179 *3)))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-1169)) (-4 *4 (-1045)) (-4 *4 (-846))
- (-5 *2 (-2 (|:| |var| (-609 *1)) (|:| -1654 (-563))))
- (-4 *1 (-430 *4))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1045)) (-4 *4 (-846))
- (-5 *2 (-2 (|:| |var| (-609 *1)) (|:| -1654 (-563))))
- (-4 *1 (-430 *4))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1105)) (-4 *3 (-846))
- (-5 *2 (-2 (|:| |var| (-609 *1)) (|:| -1654 (-563))))
- (-4 *1 (-430 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |val| (-888 *3)) (|:| -1654 (-767))))
- (-5 *1 (-888 *3)) (-4 *3 (-1093))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-945 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-5 *2 (-2 (|:| |var| *5) (|:| -1654 (-767))))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045))
- (-4 *7 (-945 *6 *4 *5))
- (-5 *2 (-2 (|:| |var| *5) (|:| -1654 (-563))))
- (-5 *1 (-946 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-363)
- (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $))
- (-15 -2154 (*7 $))))))))
+ (-12 (-5 *3 (-684 *4)) (-4 *4 (-363)) (-5 *2 (-1165 *4))
+ (-5 *1 (-532 *4 *5 *6)) (-4 *5 (-363)) (-4 *6 (-13 (-363) (-844))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-939 (-225)) (-225) (-225)))
+ (-5 *3 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-255)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
- ((*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
- (-4 *3 (-367 *4))))
- ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-684 *5))) (-5 *4 (-1257 *5)) (-4 *5 (-307))
- (-4 *5 (-1045)) (-5 *2 (-684 *5)) (-5 *1 (-1025 *5)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-529))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-576))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-857)))))
-(((*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-557 *3)) (-4 *3 (-545)))))
-(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))))
+ (-12 (-5 *3 (-407 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-555))
+ (-4 *4 (-1045)) (-4 *2 (-1248 *4)) (-5 *1 (-1251 *4 *5 *6 *2))
+ (-4 *6 (-651 *5)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-379)) (-5 *1 (-1057)))))
+(((*1 *2 *2 *2 *2 *2 *3)
+ (-12 (-5 *2 (-684 *4)) (-5 *3 (-767)) (-4 *4 (-1045))
+ (-5 *1 (-685 *4)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-667 *3)) (-4 *3 (-846)) (-4 *1 (-374 *3 *4))
+ (-4 *4 (-172)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1149 *3)) (-4 *3 (-363)) (-4 *3 (-1045))
+ (-5 *1 (-1153 *3)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
+ (-5 *2
+ (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563))
+ (|:| |success| (-112))))
+ (-5 *1 (-785)) (-5 *5 (-563)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1093)) (-5 *1 (-960 *3 *2)) (-4 *3 (-1093)))))
(((*1 *2)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
+ (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-530 *3)) (-4 *3 (-13 (-722) (-25))))))
(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-312)) (-5 *1 (-296))))
((*1 *2 *3)
(-12 (-5 *3 (-640 (-1151))) (-5 *2 (-312)) (-5 *1 (-296))))
@@ -1659,177 +1462,104 @@
((*1 *2 *3 *4)
(-12 (-5 *4 (-640 (-1151))) (-5 *3 (-1151)) (-5 *2 (-312))
(-5 *1 (-296)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-222 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-4 *1 (-254 *3))))
+ ((*1 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 (-144))) (-5 *1 (-141))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-141)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1257 *4)) (-4 *4 (-636 (-563))) (-5 *2 (-112))
- (-5 *1 (-1284 *4)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-316 (-225))) (-5 *2 (-407 (-563))) (-5 *1 (-305)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
- (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-5 *2 (-563)))))
-(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7)
- (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225)))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-84 FCNF))))
- (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-225))
- (-5 *2 (-1031)) (-5 *1 (-745)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-363)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3))
- (-5 *1 (-521 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4))
- (-4 *7 (-988 *4)) (-4 *2 (-682 *7 *8 *9))
- (-5 *1 (-522 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-682 *4 *5 *6))
- (-4 *8 (-373 *7)) (-4 *9 (-373 *7))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2))
- (-4 *4 (-373 *2)) (-4 *2 (-307))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-307)) (-4 *3 (-172)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2))
- (-4 *2 (-682 *3 *4 *5))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1048 *2 *3 *4 *5 *6)) (-4 *4 (-1045))
- (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *2 *4)) (-4 *4 (-307)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1031)))))
+ (-12 (-4 *4 (-1045)) (-4 *5 (-1233 *4)) (-5 *2 (-1 *6 (-640 *6)))
+ (-5 *1 (-1251 *4 *5 *3 *6)) (-4 *3 (-651 *5)) (-4 *6 (-1248 *4)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-379)) (-5 *1 (-1057)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4)))
- (-5 *2 (-2 (|:| |num| (-1257 *4)) (|:| |den| *4))))))
-(((*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1093))))
- ((*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1093)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1055 (-1020 *4) (-1165 (-1020 *4)))) (-5 *3 (-858))
- (-5 *1 (-1020 *4)) (-4 *4 (-13 (-844) (-363) (-1018))))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-563)) (-4 *1 (-1217 *4)) (-4 *4 (-1045)) (-4 *4 (-555))
- (-5 *2 (-407 (-948 *4)))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-4 *1 (-1217 *4)) (-4 *4 (-1045)) (-4 *4 (-555))
- (-5 *2 (-407 (-948 *4))))))
+ (-12 (-4 *1 (-373 *3)) (-4 *3 (-1208)) (-4 *3 (-846)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-373 *4)) (-4 *4 (-1208))
+ (-5 *2 (-112)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1149 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1045))
+ (-5 *3 (-407 (-563))) (-5 *1 (-1153 *4)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
+ (-5 *2
+ (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563))
+ (|:| |success| (-112))))
+ (-5 *1 (-785)) (-5 *5 (-563)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-640 *3)) (-5 *1 (-957 *3)) (-4 *3 (-545)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-529))))
+ ((*1 *1 *2) (-12 (-5 *2 (-388)) (-5 *1 (-529)))))
+(((*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
+(((*1 *1) (-5 *1 (-141))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-767)) (-4 *5 (-1045)) (-4 *2 (-1233 *5))
+ (-5 *1 (-1251 *5 *2 *6 *3)) (-4 *6 (-651 *2)) (-4 *3 (-1248 *5)))))
(((*1 *1 *2 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1208))))
((*1 *1 *2 *1) (-12 (-5 *1 (-1149 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-640 (-1169))) (-4 *5 (-555))
- (-5 *2 (-640 (-640 (-294 (-407 (-948 *5)))))) (-5 *1 (-766 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-555))
- (-5 *2 (-640 (-640 (-294 (-407 (-948 *4)))))) (-5 *1 (-766 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-684 *7))
- (-5 *5
- (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -4315 (-640 *6)))
- *7 *6))
- (-4 *6 (-363)) (-4 *7 (-651 *6))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1257 *6) "failed"))
- (|:| -4315 (-640 (-1257 *6)))))
- (-5 *1 (-809 *6 *7)) (-5 *4 (-1257 *6)))))
-(((*1 *1) (-5 *1 (-819))))
-(((*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-640 (-948 *3))) (-4 *3 (-452)) (-5 *1 (-360 *3 *4))
- (-14 *4 (-640 (-1169)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452))
- (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-450 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6))
- (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-5 *1 (-450 *4 *5 *6 *7))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6))
- (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-5 *1 (-450 *4 *5 *6 *7))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846))
- (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-640 (-776 *3 (-860 *4)))) (-4 *3 (-452))
- (-14 *4 (-640 (-1169))) (-5 *1 (-625 *3 *4)))))
-(((*1 *2 *3 *4 *3 *5 *5 *3 *5 *4)
- (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563))
- (-5 *2 (-1031)) (-5 *1 (-752)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1057)) (-5 *3 (-1151)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-563)) (|has| *1 (-6 -4409)) (-4 *1 (-373 *3))
+ (-4 *3 (-1208)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1045))
- (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284)))
- (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))))
+ (-12 (-5 *3 (-1149 (-1149 *4))) (-5 *2 (-1149 *4)) (-5 *1 (-1153 *4))
+ (-4 *4 (-38 (-407 (-563)))) (-4 *4 (-1045)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
+ (-5 *2
+ (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563))
+ (|:| |success| (-112))))
+ (-5 *1 (-785)) (-5 *5 (-563)))))
+(((*1 *2 *2) (-12 (-5 *1 (-957 *2)) (-4 *2 (-545)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-529)))))
+(((*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
+(((*1 *1) (-5 *1 (-141))))
(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1233 (-48))))))
-(((*1 *2 *2 *2)
+ (-12 (-4 *4 (-1045)) (-4 *3 (-1233 *4)) (-4 *2 (-1248 *4))
+ (-5 *1 (-1251 *4 *3 *5 *2)) (-4 *5 (-651 *3)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1057)))))
+(((*1 *2 *2 *3 *2)
(-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1257 *5)) (-4 *5 (-788)) (-5 *2 (-112))
- (-5 *1 (-841 *4 *5)) (-14 *4 (-767)))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-373 *2)) (-4 *2 (-1208))
+ (-4 *2 (-846))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4409))
+ (-4 *1 (-373 *3)) (-4 *3 (-1208)))))
(((*1 *2 *1) (-12 (-4 *1 (-404)) (-5 *2 (-563))))
((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-694)))))
-(((*1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1260)))))
-(((*1 *2)
- (-12 (-5 *2 (-684 (-906 *3))) (-5 *1 (-351 *3 *4)) (-14 *3 (-917))
- (-14 *4 (-917))))
- ((*1 *2)
- (-12 (-5 *2 (-684 *3)) (-5 *1 (-352 *3 *4)) (-4 *3 (-349))
- (-14 *4
- (-3 (-1165 *3)
- (-1257 (-640 (-2 (|:| -2619 *3) (|:| -2555 (-1113)))))))))
- ((*1 *2)
- (-12 (-5 *2 (-684 *3)) (-5 *1 (-353 *3 *4)) (-4 *3 (-349))
- (-14 *4 (-917)))))
-(((*1 *2 *3 *4 *5 *6 *7 *6)
- (|partial| -12
- (-5 *5
- (-2 (|:| |contp| *3)
- (|:| -2760 (-640 (-2 (|:| |irr| *10) (|:| -1650 (-563)))))))
- (-5 *6 (-640 *3)) (-5 *7 (-640 *8)) (-4 *8 (-846)) (-4 *3 (-307))
- (-4 *10 (-945 *3 *9 *8)) (-4 *9 (-789))
- (-5 *2
- (-2 (|:| |polfac| (-640 *10)) (|:| |correct| *3)
- (|:| |corrfact| (-640 (-1165 *3)))))
- (-5 *1 (-622 *8 *9 *3 *10)) (-5 *4 (-640 (-1165 *3))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-349)) (-5 *2 (-954 (-1165 *4))) (-5 *1 (-357 *4))
- (-5 *3 (-1165 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-1149 *3))) (-5 *2 (-1149 *3)) (-5 *1 (-1153 *3))
+ (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
+ (-5 *2
+ (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563))
+ (|:| |success| (-112))))
+ (-5 *1 (-785)) (-5 *5 (-563)))))
+(((*1 *2 *2) (-12 (-5 *1 (-957 *2)) (-4 *2 (-545)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-529)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379)))
+ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379)))
(|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168))))
(-5 *1 (-1168)))))
-(((*1 *2 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-844)) (-5 *1 (-303 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))))
-(((*1 *2)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 *4)) (-4 *4 (-1045)) (-5 *2 (-1257 *4))
- (-5 *1 (-1170 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-917)) (-5 *2 (-1257 *3)) (-5 *1 (-1170 *3))
- (-4 *3 (-1045)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
- ((*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-901 *4)) (-4 *4 (-1093)) (-5 *2 (-640 (-767)))
- (-5 *1 (-900 *4)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
+(((*1 *1) (-5 *1 (-141))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 *5)) (-5 *4 (-640 (-1 *6 (-640 *6))))
+ (-4 *5 (-38 (-407 (-563)))) (-4 *6 (-1248 *5)) (-5 *2 (-640 *6))
+ (-5 *1 (-1250 *5 *6)))))
+(((*1 *1) (-5 *1 (-1057))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3))))
+ ((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))))
(((*1 *1 *2)
(-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5))
(-4 *4 (-373 *3)) (-4 *5 (-373 *3))))
@@ -1841,174 +1571,236 @@
(-12 (-5 *2 (-640 (-640 *5))) (-4 *5 (-1045))
(-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *6 (-238 *4 *5))
(-4 *7 (-238 *3 *5)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
- (-4 *3 (-1059 *6 *7 *8))
+(((*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1257 *1)) (-4 *1 (-367 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1149 (-1149 *4))) (-5 *2 (-1149 *4)) (-5 *1 (-1153 *4))
+ (-4 *4 (-1045)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
(-5 *2
- (-2 (|:| |done| (-640 *4))
- (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4))))))
- (-5 *1 (-1063 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
+ (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563))
+ (|:| |success| (-112))))
+ (-5 *1 (-785)) (-5 *5 (-563)))))
+(((*1 *1) (-4 *1 (-349)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 *5)) (-4 *5 (-430 *4))
+ (-4 *4 (-13 (-555) (-846) (-147)))
(-5 *2
- (-2 (|:| |done| (-640 *4))
- (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4))))))
- (-5 *1 (-1063 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
- (-4 *3 (-1059 *6 *7 *8))
+ (-2 (|:| |primelt| *5) (|:| |poly| (-640 (-1165 *5)))
+ (|:| |prim| (-1165 *5))))
+ (-5 *1 (-432 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-555) (-846) (-147)))
(-5 *2
- (-2 (|:| |done| (-640 *4))
- (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4))))))
- (-5 *1 (-1138 *6 *7 *8 *3 *4)) (-4 *4 (-1102 *6 *7 *8 *3))))
+ (-2 (|:| |primelt| *3) (|:| |pol1| (-1165 *3))
+ (|:| |pol2| (-1165 *3)) (|:| |prim| (-1165 *3))))
+ (-5 *1 (-432 *4 *3)) (-4 *3 (-27)) (-4 *3 (-430 *4))))
+ ((*1 *2 *3 *4 *3 *4)
+ (-12 (-5 *3 (-948 *5)) (-5 *4 (-1169)) (-4 *5 (-13 (-363) (-147)))
+ (-5 *2
+ (-2 (|:| |coef1| (-563)) (|:| |coef2| (-563))
+ (|:| |prim| (-1165 *5))))
+ (-5 *1 (-956 *5))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
+ (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-640 (-1169)))
+ (-4 *5 (-13 (-363) (-147)))
(-5 *2
- (-2 (|:| |done| (-640 *4))
- (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4))))))
- (-5 *1 (-1138 *5 *6 *7 *3 *4)) (-4 *4 (-1102 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-280))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))))
-(((*1 *1 *1) (-5 *1 (-1057))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-1045))
- (-5 *1 (-1153 *4))))
- ((*1 *1 *2 *2 *1)
- (-12 (-5 *2 (-563)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045))
- (-14 *4 (-1169)) (-14 *5 *3))))
+ (-2 (|:| -2310 (-640 (-563))) (|:| |poly| (-640 (-1165 *5)))
+ (|:| |prim| (-1165 *5))))
+ (-5 *1 (-956 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-640 (-948 *6))) (-5 *4 (-640 (-1169))) (-5 *5 (-1169))
+ (-4 *6 (-13 (-363) (-147)))
+ (-5 *2
+ (-2 (|:| -2310 (-640 (-563))) (|:| |poly| (-640 (-1165 *6)))
+ (|:| |prim| (-1165 *6))))
+ (-5 *1 (-956 *6)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-917)) (-4 *4 (-368)) (-4 *4 (-363)) (-5 *2 (-1165 *1))
+ (-4 *1 (-329 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-1165 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-370 *3 *2)) (-4 *3 (-172)) (-4 *3 (-363))
+ (-4 *2 (-1233 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-1165 *4))
+ (-5 *1 (-528 *4)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379)))
+ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379)))
(|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168))))
(-5 *1 (-1168)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1240 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1217 *3))
- (-5 *2 (-407 (-563))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-767)) (-4 *1 (-1233 *4)) (-4 *4 (-1045))
- (-5 *2 (-1257 *4)))))
-(((*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260))))
- ((*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1095 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1093))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1095 *3)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-901 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
- ((*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1151)) (-5 *1 (-1189)))))
-(((*1 *2 *3 *3 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
- (-5 *2 (-1031)) (-5 *1 (-752)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
+(((*1 *1) (-5 *1 (-141))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 (-640 *2))) (-5 *4 (-640 *5))
+ (-4 *5 (-38 (-407 (-563)))) (-4 *2 (-1248 *5))
+ (-5 *1 (-1250 *5 *2)))))
+(((*1 *2 *1 *2 *3)
+ (|partial| -12 (-5 *2 (-1151)) (-5 *3 (-563)) (-5 *1 (-1057)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1045)) (-5 *1 (-890 *2 *3)) (-4 *2 (-1233 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
+ (-5 *2
+ (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563))
+ (|:| |success| (-112))))
+ (-5 *1 (-785)) (-5 *5 (-563)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-1169)) (-5 *1 (-584 *2)) (-4 *2 (-1034 *3))
+ (-4 *2 (-363))))
+ ((*1 *1 *2 *2) (-12 (-5 *1 (-584 *2)) (-4 *2 (-363))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-627 *4 *2))
+ (-4 *2 (-13 (-430 *4) (-998) (-1193)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085 *2)) (-4 *2 (-13 (-430 *4) (-998) (-1193)))
+ (-4 *4 (-13 (-846) (-555))) (-5 *1 (-627 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-955)) (-5 *2 (-1169))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-955)))))
+(((*1 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-368)) (-4 *2 (-363))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-917)) (-5 *2 (-1257 *4)) (-5 *1 (-528 *4))
+ (-4 *4 (-349)))))
(((*1 *1 *1) (-5 *1 (-1168)))
((*1 *1 *2)
(-12
(-5 *2
- (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379)))
+ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379)))
(|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168))))
(-5 *1 (-1168)))))
-(((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-684 *11)) (-5 *4 (-640 (-407 (-948 *8))))
- (-5 *5 (-767)) (-5 *6 (-1151)) (-4 *8 (-13 (-307) (-147)))
- (-4 *11 (-945 *8 *10 *9)) (-4 *9 (-13 (-846) (-611 (-1169))))
- (-4 *10 (-789))
+(((*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-834))) (-5 *1 (-140)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1248 *4)) (-5 *1 (-1250 *4 *2))
+ (-4 *4 (-38 (-407 (-563)))))))
+(((*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1056))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1056)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1149 *4)) (-5 *3 (-1 *4 (-563))) (-4 *4 (-1045))
+ (-5 *1 (-1153 *4)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
(-5 *2
- (-2
- (|:| |rgl|
- (-640
- (-2 (|:| |eqzro| (-640 *11)) (|:| |neqzro| (-640 *11))
- (|:| |wcond| (-640 (-948 *8)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1257 (-407 (-948 *8))))
- (|:| -4315 (-640 (-1257 (-407 (-948 *8))))))))))
- (|:| |rgsz| (-563))))
- (-5 *1 (-920 *8 *9 *10 *11)) (-5 *7 (-563)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
- (-5 *2 (-1031)) (-5 *1 (-749)))))
-(((*1 *2 *3) (-12 (-5 *3 (-817)) (-5 *2 (-52)) (-5 *1 (-827)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-280))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093))))
+ (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563))
+ (|:| |success| (-112))))
+ (-5 *1 (-785)) (-5 *5 (-563)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-917)) (-4 *5 (-555)) (-5 *2 (-684 *5))
+ (-5 *1 (-952 *5 *3)) (-4 *3 (-651 *5)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1257 *4)) (-4 *4 (-417 *3)) (-4 *3 (-307))
+ (-4 *3 (-555)) (-5 *1 (-43 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-917)) (-4 *4 (-363)) (-5 *2 (-1257 *1))
+ (-4 *1 (-329 *4))))
+ ((*1 *2) (-12 (-4 *3 (-363)) (-5 *2 (-1257 *1)) (-4 *1 (-329 *3))))
+ ((*1 *2)
+ (-12 (-4 *3 (-172)) (-4 *4 (-1233 *3)) (-5 *2 (-1257 *1))
+ (-4 *1 (-409 *3 *4))))
((*1 *2 *1)
- (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
- (-5 *2 (-112))))
+ (-12 (-4 *3 (-307)) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4))
+ (-5 *2 (-1257 *6)) (-5 *1 (-413 *3 *4 *5 *6))
+ (-4 *6 (-13 (-409 *4 *5) (-1034 *4)))))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1280 *3 *4)) (-4 *3 (-1045))
- (-4 *4 (-842)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846))
- (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-640 (-640 *4)))) (-5 *2 (-640 (-640 *4)))
- (-5 *1 (-1179 *4)) (-4 *4 (-846)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1233 *5))
- (-4 *5 (-13 (-27) (-430 *4)))
- (-4 *4 (-13 (-846) (-555) (-1034 (-563))))
- (-4 *7 (-1233 (-407 *6))) (-5 *1 (-551 *4 *5 *6 *7 *2))
- (-4 *2 (-342 *5 *6 *7)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-555)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3))
- (-5 *1 (-1198 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
- (-4 *3 (-367 *4))))
- ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467))))
- ((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467))))
- ((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1165 *9)) (-5 *4 (-640 *7)) (-5 *5 (-640 *8))
- (-4 *7 (-846)) (-4 *8 (-1045)) (-4 *9 (-945 *8 *6 *7))
- (-4 *6 (-789)) (-5 *2 (-1165 *8)) (-5 *1 (-321 *6 *7 *8 *9)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1169))
- (-4 *5 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *2 (-2 (|:| -3646 *3) (|:| |coeff| *3))) (-5 *1 (-556 *5 *3))
- (-4 *3 (-13 (-27) (-1193) (-430 *5))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-917)) (-5 *1 (-1028 *2))
- (-4 *2 (-13 (-1093) (-10 -8 (-15 * ($ $ $))))))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-307)) (-4 *3 (-988 *2)) (-4 *4 (-1233 *3))
- (-5 *1 (-413 *2 *3 *4 *5)) (-4 *5 (-13 (-409 *3 *4) (-1034 *3))))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
-(((*1 *1 *1) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)) (-4 *2 (-1093))))
- ((*1 *1 *1) (-12 (-4 *1 (-690 *2)) (-4 *2 (-1093)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045))
- (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1169)) (-5 *2 (-1 (-1165 (-948 *4)) (-948 *4)))
- (-5 *1 (-1265 *4)) (-4 *4 (-363)))))
+ (-12 (-4 *3 (-307)) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4))
+ (-5 *2 (-1257 *6)) (-5 *1 (-414 *3 *4 *5 *6 *7))
+ (-4 *6 (-409 *4 *5)) (-14 *7 *2)))
+ ((*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1257 *1)) (-4 *1 (-417 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-917)) (-5 *2 (-1257 (-1257 *4))) (-5 *1 (-528 *4))
+ (-4 *4 (-349)))))
+(((*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-183))) (-5 *1 (-140)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1248 *4)) (-5 *1 (-1250 *4 *2))
+ (-4 *4 (-38 (-407 (-563)))))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3))
+ (-4 *3 (-1233 *2)))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-555)) (-4 *3 (-172)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2))
+ (-4 *2 (-682 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
+ (-5 *2
+ (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563))
+ (|:| |success| (-112))))
+ (-5 *1 (-785)) (-5 *5 (-563)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-555))
+ (-4 *3 (-945 *7 *5 *6))
+ (-5 *2
+ (-2 (|:| -3311 (-767)) (|:| -2310 *3) (|:| |radicand| (-640 *3))))
+ (-5 *1 (-949 *5 *6 *7 *3 *8)) (-5 *4 (-767))
+ (-4 *8
+ (-13 (-363)
+ (-10 -8 (-15 -1692 ($ *3)) (-15 -2143 (*3 $)) (-15 -2153 (*3 $))))))))
(((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-858)))))
-(((*1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-407 (-563))) (-5 *1 (-305)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368)) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-5 *2 (-112))
+ (-5 *1 (-357 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-112))
+ (-5 *1 (-528 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846))
+ (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-640 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-640 (-563))) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563))
+ (-14 *4 (-767)) (-4 *5 (-172)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1250 *3 *2))
+ (-4 *2 (-1248 *3)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-30))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-418 *4) *4)) (-4 *4 (-555)) (-5 *2 (-418 *4))
+ (-5 *1 (-419 *4))))
+ ((*1 *1 *1) (-5 *1 (-922)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922))))
+ ((*1 *1 *1) (-5 *1 (-923)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))
+ (-5 *4 (-407 (-563))) (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563)))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))
+ (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563)))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))
+ (-5 *4 (-407 (-563))) (-5 *1 (-1017 *3)) (-4 *3 (-1233 *4))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))
+ (-5 *1 (-1017 *3)) (-4 *3 (-1233 (-407 (-563))))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3))
+ (-4 *3 (-1233 *2)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2)
- (-12 (-5 *2 (-1257 (-1094 *3 *4))) (-5 *1 (-1094 *3 *4))
- (-14 *3 (-917)) (-14 *4 (-917)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *3 (-640 (-870)))
- (-5 *1 (-468)))))
+ (-12 (-4 *3 (-555)) (-4 *3 (-172)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2))
+ (-4 *2 (-682 *3 *4 *5)))))
(((*1 *2 *3)
(-12 (-5 *2 (-640 (-1151))) (-5 *1 (-241)) (-5 *3 (-1151))))
((*1 *2 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-241))))
((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))))
-(((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-846)))))
+(((*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-767)) (-5 *2 (-640 (-1169))) (-5 *1 (-210))
(-5 *3 (-1169))))
@@ -2028,741 +1820,868 @@
((*1 *2 *1)
(-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
(-5 *2 (-640 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
+ (-5 *2
+ (-2 (|:| -2618 *4) (|:| -4079 *4) (|:| |totalpts| (-563))
+ (|:| |success| (-112))))
+ (-5 *1 (-785)) (-5 *5 (-563)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452))
- (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1042 *5 *6)))
- (-5 *1 (-625 *5 *6)))))
+ (-12 (-4 *7 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-555))
+ (-4 *8 (-945 *7 *5 *6))
+ (-5 *2 (-2 (|:| -3311 (-767)) (|:| -2310 *3) (|:| |radicand| *3)))
+ (-5 *1 (-949 *5 *6 *7 *8 *3)) (-5 *4 (-767))
+ (-4 *3
+ (-13 (-363)
+ (-10 -8 (-15 -1692 ($ *8)) (-15 -2143 (*8 $)) (-15 -2153 (*8 $))))))))
+(((*1 *2 *1) (-12 (-4 *1 (-368)) (-5 *2 (-917))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-917))
+ (-5 *1 (-528 *4)))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-5 *2 (-112))))
- ((*1 *2 *3 *1 *4)
- (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1201 *5 *6 *7 *3))
- (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-169 (-225)))) (-5 *2 (-1031))
- (-5 *1 (-750)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1132))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-3 (-407 (-948 *6)) (-1158 (-1169) (-948 *6))))
- (-5 *5 (-767)) (-4 *6 (-452)) (-5 *2 (-640 (-684 (-407 (-948 *6)))))
- (-5 *1 (-292 *6)) (-5 *4 (-684 (-407 (-948 *6))))))
- ((*1 *2 *3 *4)
- (-12
- (-5 *3
- (-2 (|:| |eigval| (-3 (-407 (-948 *5)) (-1158 (-1169) (-948 *5))))
- (|:| |eigmult| (-767)) (|:| |eigvec| (-640 *4))))
- (-4 *5 (-452)) (-5 *2 (-640 (-684 (-407 (-948 *5)))))
- (-5 *1 (-292 *5)) (-5 *4 (-684 (-407 (-948 *5)))))))
-(((*1 *2 *2)
- (-12
- (-5 *2
- (-983 (-407 (-563)) (-860 *3) (-240 *4 (-767))
- (-247 *3 (-407 (-563)))))
- (-14 *3 (-640 (-1169))) (-14 *4 (-767)) (-5 *1 (-982 *3 *4)))))
+ (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846))
+ (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-640 (-767)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846))
+ (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-640 (-767))))))
+(((*1 *1)
+ (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767))
+ (-4 *4 (-172)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2))
- (-4 *4 (-13 (-846) (-555))))))
-(((*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259))))
- ((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))))
+ (-12 (-5 *3 (-1 *5 (-640 *5))) (-4 *5 (-1248 *4))
+ (-4 *4 (-38 (-407 (-563))))
+ (-5 *2 (-1 (-1149 *4) (-640 (-1149 *4)))) (-5 *1 (-1250 *4 *5)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-13 (-844) (-363))) (-5 *2 (-112)) (-5 *1 (-1055 *4 *3))
+ (-4 *3 (-1233 *4)))))
+(((*1 *2 *2 *3 *4 *4)
+ (-12 (-5 *4 (-563)) (-4 *3 (-172)) (-4 *5 (-373 *3))
+ (-4 *6 (-373 *3)) (-5 *1 (-683 *3 *5 *6 *2))
+ (-4 *2 (-682 *3 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-1165 *3)))))
(((*1 *2 *1 *1)
(-12 (-4 *1 (-1255 *3)) (-4 *3 (-1208)) (-4 *3 (-1045))
(-5 *2 (-684 *3)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-743)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23))
- (-14 *4 *3))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1169))
+ (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *1 (-800 *4 *2)) (-4 *2 (-13 (-29 *4) (-1193) (-955)))))
+ ((*1 *1 *1 *1 *1) (-5 *1 (-858))) ((*1 *1 *1 *1) (-5 *1 (-858)))
+ ((*1 *1 *1) (-5 *1 (-858)))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1149 *3)) (-5 *1 (-1153 *3)) (-4 *3 (-1045)))))
+(((*1 *2 *3 *4 *5 *5 *4 *6)
+ (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379)))
+ (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262))
+ (-5 *1 (-784)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330))
- (-5 *1 (-332)))))
+ (-12 (-5 *3 (-407 (-563))) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-555)) (-4 *8 (-945 *7 *5 *6))
+ (-5 *2 (-2 (|:| -3311 (-767)) (|:| -2310 *9) (|:| |radicand| *9)))
+ (-5 *1 (-949 *5 *6 *7 *8 *9)) (-5 *4 (-767))
+ (-4 *9
+ (-13 (-363)
+ (-10 -8 (-15 -1692 ($ *8)) (-15 -2143 (*8 $)) (-15 -2153 (*8 $))))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1257 *4)) (-5 *3 (-563)) (-4 *4 (-349))
+ (-5 *1 (-528 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2))
- (|has| *2 (-6 (-4409 "*"))) (-4 *2 (-1045))))
+ (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846))
+ (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-112)))))
+(((*1 *1)
+ (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767))
+ (-4 *4 (-172)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1248 *4))
+ (-4 *4 (-38 (-407 (-563))))
+ (-5 *2 (-1 (-1149 *4) (-1149 *4) (-1149 *4))) (-5 *1 (-1250 *4 *5)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-609 (-48)))) (-5 *1 (-48))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-609 (-48))) (-5 *1 (-48))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1165 (-48))) (-5 *3 (-640 (-609 (-48)))) (-5 *1 (-48))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1165 (-48))) (-5 *3 (-609 (-48))) (-5 *1 (-48))))
+ ((*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172))))
((*1 *2 *3)
- (-12 (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-172))
- (-5 *1 (-683 *2 *4 *5 *3)) (-4 *3 (-682 *2 *4 *5))))
+ (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3))
+ (-4 *3 (-1233 (-169 *2)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-917)) (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368))))
+ ((*1 *2 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-363))))
((*1 *2 *1)
- (-12 (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
- (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4409 "*"))) (-4 *2 (-1045)))))
+ (-12 (-4 *1 (-370 *2 *3)) (-4 *3 (-1233 *2)) (-4 *2 (-172))))
+ ((*1 *2 *1)
+ (-12 (-4 *4 (-1233 *2)) (-4 *2 (-988 *3)) (-5 *1 (-413 *3 *2 *4 *5))
+ (-4 *3 (-307)) (-4 *5 (-13 (-409 *2 *4) (-1034 *2)))))
+ ((*1 *2 *1)
+ (-12 (-4 *4 (-1233 *2)) (-4 *2 (-988 *3))
+ (-5 *1 (-414 *3 *2 *4 *5 *6)) (-4 *3 (-307)) (-4 *5 (-409 *2 *4))
+ (-14 *6 (-1257 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-917)) (-4 *5 (-1045))
+ (-4 *2 (-13 (-404) (-1034 *5) (-363) (-1193) (-284)))
+ (-5 *1 (-443 *5 *3 *2)) (-4 *3 (-1233 *5))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-609 (-495)))) (-5 *1 (-495))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-609 (-495))) (-5 *1 (-495))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1165 (-495))) (-5 *3 (-640 (-609 (-495))))
+ (-5 *1 (-495))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1165 (-495))) (-5 *3 (-609 (-495))) (-5 *1 (-495))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1257 *4)) (-5 *3 (-917)) (-4 *4 (-349))
+ (-5 *1 (-528 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-452)) (-4 *5 (-720 *4 *2)) (-4 *2 (-1233 *4))
+ (-5 *1 (-771 *4 *2 *5 *3)) (-4 *3 (-1233 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172))))
+ ((*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172))))
+ ((*1 *1 *1) (-4 *1 (-1054))))
+(((*1 *2 *2 *3 *4 *4)
+ (-12 (-5 *4 (-563)) (-4 *3 (-172)) (-4 *5 (-373 *3))
+ (-4 *6 (-373 *3)) (-5 *1 (-683 *3 *5 *6 *2))
+ (-4 *2 (-682 *3 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-1165 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2))
- (-4 *4 (-13 (-846) (-555))))))
-(((*1 *2 *1)
- (-12
- (-5 *2
- (-640
- (-640
- (-3 (|:| -3348 (-1169))
- (|:| -2445 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563))))))))))
- (-5 *1 (-1173)))))
+ (-12 (-5 *2 (-1149 (-563))) (-5 *1 (-1153 *4)) (-4 *4 (-1045))
+ (-5 *3 (-563)))))
+(((*1 *2 *3 *4 *5 *6 *5 *3 *7)
+ (-12 (-5 *4 (-563))
+ (-5 *6
+ (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))))
+ (-5 *7 (-1 (-1262) (-1257 *5) (-1257 *5) (-379)))
+ (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262))
+ (-5 *1 (-784))))
+ ((*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3)
+ (-12 (-5 *4 (-563))
+ (-5 *6
+ (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))))
+ (-5 *7 (-1 (-1262) (-1257 *5) (-1257 *5) (-379)))
+ (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262))
+ (-5 *1 (-784)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1257 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-363))
- (-4 *1 (-720 *5 *6)) (-4 *5 (-172)) (-4 *6 (-1233 *5))
- (-5 *2 (-684 *5)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
-(((*1 *1 *1 *1) (-4 *1 (-143)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))))
+ (-12 (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-555))
+ (-4 *7 (-945 *3 *5 *6))
+ (-5 *2 (-2 (|:| -3311 (-767)) (|:| -2310 *8) (|:| |radicand| *8)))
+ (-5 *1 (-949 *5 *6 *3 *7 *8)) (-5 *4 (-767))
+ (-4 *8
+ (-13 (-363)
+ (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $)) (-15 -2153 (*7 $))))))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1257 *4)) (-5 *3 (-1113)) (-4 *4 (-349))
+ (-5 *1 (-528 *4)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-253 *2 *3 *4 *5)) (-4 *2 (-1045)) (-4 *3 (-846))
+ (-4 *4 (-266 *3)) (-4 *5 (-789)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-640 *5)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5))
+ (-14 *3 (-563)) (-14 *4 (-767)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-38 (-407 (-563))))
- (-5 *2 (-2 (|:| -1748 (-1149 *4)) (|:| -1759 (-1149 *4))))
- (-5 *1 (-1155 *4)) (-5 *3 (-1149 *4)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1133 *4 *5)) (-4 *4 (-13 (-1093) (-34)))
- (-4 *5 (-13 (-1093) (-34))) (-5 *2 (-112)) (-5 *1 (-1134 *4 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-302))))
- ((*1 *1 *1) (-4 *1 (-302)))
- ((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858))))
- ((*1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452))
- (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *1 (-973 *3 *4 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 (-860 *5))) (-14 *5 (-640 (-1169))) (-4 *6 (-452))
- (-5 *2
- (-2 (|:| |dpolys| (-640 (-247 *5 *6)))
- (|:| |coords| (-640 (-563)))))
- (-5 *1 (-471 *5 *6 *7)) (-5 *3 (-640 (-247 *5 *6))) (-4 *7 (-452)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452))
- (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))
- (-5 *1 (-984 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452))
- (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))
- (-5 *1 (-1100 *3 *4 *5 *6 *7)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-418 *2)) (-4 *2 (-307)) (-5 *1 (-910 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169))
- (-4 *5 (-13 (-307) (-147))) (-5 *2 (-52)) (-5 *1 (-911 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-418 (-948 *6))) (-5 *5 (-1169)) (-5 *3 (-948 *6))
- (-4 *6 (-13 (-307) (-147))) (-5 *2 (-52)) (-5 *1 (-911 *6)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-1257 *5)) (-5 *3 (-767)) (-5 *4 (-1113)) (-4 *5 (-349))
- (-5 *1 (-528 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 *5)) (-5 *4 (-1257 *5)) (-4 *5 (-363))
- (-5 *2 (-112)) (-5 *1 (-662 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4408))))
- (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4408)))) (-5 *2 (-112))
- (-5 *1 (-663 *5 *6 *4 *3)) (-4 *3 (-682 *5 *6 *4)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-640 (-684 *4))) (-5 *2 (-684 *4)) (-4 *4 (-1045))
- (-5 *1 (-1025 *4)))))
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1248 *4))
+ (-4 *4 (-38 (-407 (-563)))) (-5 *2 (-1 (-1149 *4) (-1149 *4)))
+ (-5 *1 (-1250 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-545))))
+ ((*1 *1 *1) (-4 *1 (-1054))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-563)) (-4 *4 (-172)) (-4 *5 (-373 *4))
+ (-4 *6 (-373 *4)) (-5 *1 (-683 *4 *5 *6 *2))
+ (-4 *2 (-682 *4 *5 *6)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
+ (-4 *3 (-367 *4))))
+ ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 *4)) (-4 *4 (-363)) (-5 *2 (-684 *4))
- (-5 *1 (-810 *4 *5)) (-4 *5 (-651 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *5)) (-5 *4 (-767)) (-4 *5 (-363))
- (-5 *2 (-684 *5)) (-5 *1 (-810 *5 *6)) (-4 *6 (-651 *5)))))
+ (-12 (-5 *2 (-1149 (-563))) (-5 *1 (-1153 *4)) (-4 *4 (-1045))
+ (-5 *3 (-563)))))
+(((*1 *2 *3 *4 *5 *5 *5 *5 *4 *6)
+ (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379)))
+ (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262))
+ (-5 *1 (-784)))))
(((*1 *2 *1)
(-12 (-4 *3 (-1093)) (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 *2)))
(-5 *2 (-888 *3)) (-5 *1 (-1069 *3 *4 *5))
(-4 *5 (-13 (-430 *4) (-882 *3) (-611 *2))))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 (-169 (-407 (-563))))) (-5 *2 (-640 (-169 *4)))
- (-5 *1 (-760 *4)) (-4 *4 (-13 (-363) (-844))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-917))
- (-5 *2
- (-3 (-1165 *4)
- (-1257 (-640 (-2 (|:| -2619 *4) (|:| -2555 (-1113)))))))
- (-5 *1 (-346 *4)) (-4 *4 (-349)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-767)) (-5 *4 (-563)) (-5 *1 (-445 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
- (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-191)) (-5 *3 (-563))))
- ((*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-779 *2)) (-4 *2 (-172))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1045)) (-4 *3 (-846))
+ (-5 *2 (-2 (|:| |val| *1) (|:| -3311 (-563)))) (-4 *1 (-430 *3))))
+ ((*1 *2 *1)
+ (|partial| -12
+ (-5 *2 (-2 (|:| |val| (-888 *3)) (|:| -3311 (-888 *3))))
+ (-5 *1 (-888 *3)) (-4 *3 (-1093))))
((*1 *2 *3)
- (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-846)) (-4 *5 (-789))
- (-4 *6 (-555)) (-4 *7 (-945 *6 *5 *3))
- (-5 *1 (-462 *5 *3 *6 *7 *2))
- (-4 *2
- (-13 (-1034 (-407 (-563))) (-363)
- (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $))
- (-15 -2154 (*7 $))))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-640 (-939 (-225)))))
- (-5 *2 (-640 (-1087 (-225)))) (-5 *1 (-924)))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))))
-(((*1 *2 *1) (|partial| -12 (-4 *1 (-1008)) (-5 *2 (-858)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-294 (-407 (-948 *5)))) (-5 *4 (-1169))
- (-4 *5 (-13 (-307) (-846) (-147)))
- (-5 *2 (-1158 (-640 (-316 *5)) (-640 (-294 (-316 *5)))))
- (-5 *1 (-1122 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169))
- (-4 *5 (-13 (-307) (-846) (-147)))
- (-5 *2 (-1158 (-640 (-316 *5)) (-640 (-294 (-316 *5)))))
- (-5 *1 (-1122 *5)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-327 *3)) (-4 *3 (-1208))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-563)) (-5 *1 (-516 *3 *4)) (-4 *3 (-1208)) (-14 *4 *2))))
-(((*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-755)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1133 *3 *2)) (-4 *3 (-13 (-1093) (-34)))
- (-4 *2 (-13 (-1093) (-34))))))
+ (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045))
+ (-4 *7 (-945 *6 *4 *5))
+ (-5 *2 (-2 (|:| |val| *3) (|:| -3311 (-563))))
+ (-5 *1 (-946 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-363)
+ (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $))
+ (-15 -2153 (*7 $))))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1257 *4)) (-5 *3 (-767)) (-4 *4 (-349))
+ (-5 *1 (-528 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-183)) (-5 *1 (-248)))))
+(((*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-134)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-326 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788))
+ (-5 *2 (-640 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093))
+ (-5 *2 (-640 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1149 *3)) (-5 *1 (-594 *3)) (-4 *3 (-1045))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-640 *3)) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045))
+ (-4 *4 (-722))))
+ ((*1 *2 *1) (-12 (-4 *1 (-848 *3)) (-4 *3 (-1045)) (-5 *2 (-640 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1248 *3)) (-4 *3 (-1045)) (-5 *2 (-1149 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-545))))
+ ((*1 *1 *1) (-4 *1 (-1054))))
(((*1 *1 *1)
- (-12 (-4 *1 (-253 *2 *3 *4 *5)) (-4 *2 (-1045)) (-4 *3 (-846))
- (-4 *4 (-266 *3)) (-4 *5 (-789)))))
+ (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2))
+ (-4 *4 (-373 *2)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
+ (-4 *3 (-367 *4))))
+ ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-152 *2 *3 *4)) (-14 *2 (-917)) (-4 *3 (-363))
+ (-14 *4 (-989 *2 *3))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *2 (-172)) (-5 *1 (-289 *2 *3 *4 *5 *6 *7))
+ (-4 *3 (-1233 *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 (-367 *2)) (-4 *2 (-172)) (-4 *2 (-555))))
+ ((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172))
+ (-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 (-714 *2)) (-4 *2 (-363))))
+ ((*1 *1) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363))))
+ ((*1 *1 *1) (|partial| -4 *1 (-718)))
+ ((*1 *1 *1) (|partial| -4 *1 (-722)))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3)))
+ (-5 *1 (-772 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3))))
+ ((*1 *2 *2 *1)
+ (|partial| -12 (-4 *1 (-1062 *3 *2)) (-4 *3 (-13 (-844) (-363)))
+ (-4 *2 (-1233 *3))))
+ ((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379)))
+ (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262))
+ (-5 *1 (-784))))
+ ((*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3)
+ (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379)))
+ (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262))
+ (-5 *1 (-784)))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (-917)) (-4 *4 (-368)) (-4 *4 (-363)) (-5 *2 (-1165 *1))
- (-4 *1 (-329 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-1165 *3))))
+ (|partial| -12 (-5 *3 (-1169)) (-4 *4 (-1045)) (-4 *4 (-846))
+ (-5 *2 (-2 (|:| |var| (-609 *1)) (|:| -3311 (-563))))
+ (-4 *1 (-430 *4))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1045)) (-4 *4 (-846))
+ (-5 *2 (-2 (|:| |var| (-609 *1)) (|:| -3311 (-563))))
+ (-4 *1 (-430 *4))))
((*1 *2 *1)
- (-12 (-4 *1 (-370 *3 *2)) (-4 *3 (-172)) (-4 *3 (-363))
- (-4 *2 (-1233 *3))))
+ (|partial| -12 (-4 *3 (-1105)) (-4 *3 (-846))
+ (-5 *2 (-2 (|:| |var| (-609 *1)) (|:| -3311 (-563))))
+ (-4 *1 (-430 *3))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |val| (-888 *3)) (|:| -3311 (-767))))
+ (-5 *1 (-888 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-945 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-5 *2 (-2 (|:| |var| *5) (|:| -3311 (-767))))))
((*1 *2 *3)
- (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-1165 *4))
- (-5 *1 (-528 *4)))))
+ (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045))
+ (-4 *7 (-945 *6 *4 *5))
+ (-5 *2 (-2 (|:| |var| *5) (|:| -3311 (-563))))
+ (-5 *1 (-946 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-363)
+ (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $))
+ (-15 -2153 (*7 $))))))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-1257 *5)) (-5 *3 (-767)) (-5 *4 (-1113)) (-4 *5 (-349))
+ (-5 *1 (-528 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-183)) (-5 *1 (-248)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1248 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-307))))
+ ((*1 *2 *1) (-12 (-5 *1 (-910 *2)) (-4 *2 (-307))))
+ ((*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-307))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-563)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2))
+ (-4 *4 (-373 *2)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
+ (-4 *3 (-367 *4))))
+ ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-1157 3 *3)) (-4 *3 (-1045)) (-4 *1 (-1127 *3))))
- ((*1 *1) (-12 (-4 *1 (-1127 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1093)) (-4 *6 (-1093))
- (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-679 *4 *5 *6)) (-4 *4 (-1093)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-363)) (-4 *1 (-329 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1233 *4)) (-4 *4 (-1212))
- (-4 *1 (-342 *4 *3 *5)) (-4 *5 (-1233 (-407 *3)))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1257 *4)) (-5 *3 (-1257 *1)) (-4 *4 (-172))
- (-4 *1 (-367 *4))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1257 *4)) (-5 *3 (-1257 *1)) (-4 *4 (-172))
- (-4 *1 (-370 *4 *5)) (-4 *5 (-1233 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1257 *3)) (-4 *3 (-172)) (-4 *1 (-409 *3 *4))
- (-4 *4 (-1233 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-172)) (-4 *1 (-417 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-1189))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1189)))))
-(((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-640 (-609 *2))) (-5 *4 (-1169))
- (-4 *2 (-13 (-27) (-1193) (-430 *5)))
- (-4 *5 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-277 *5 *2)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-114)) (-5 *4 (-640 *2)) (-5 *1 (-113 *2))
- (-4 *2 (-1093))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-640 *4))) (-4 *4 (-1093))
- (-5 *1 (-113 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1093))
- (-5 *1 (-113 *4))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-640 *4)))
- (-5 *1 (-113 *4)) (-4 *4 (-1093))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-643 *3)) (-4 *3 (-1045))
- (-5 *1 (-710 *3 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-832 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1233 *6))
- (-4 *6 (-13 (-27) (-430 *5)))
- (-4 *5 (-13 (-846) (-555) (-1034 (-563)))) (-4 *8 (-1233 (-407 *7)))
- (-5 *2 (-584 *3)) (-5 *1 (-551 *5 *6 *7 *8 *3))
- (-4 *3 (-342 *6 *7 *8)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172))))
+ (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-1149 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-4 *1 (-783)) (-5 *2 (-1031))
+ (-5 *3
+ (-2 (|:| |fn| (-316 (-225)))
+ (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))))
+ ((*1 *2 *3 *2)
+ (-12 (-4 *1 (-783)) (-5 *2 (-1031))
+ (-5 *3
+ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225)))))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1105)) (-4 *3 (-846)) (-5 *2 (-640 *1))
+ (-4 *1 (-430 *3))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3))
+ (-4 *3 (-1093))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *2 (-640 *1)) (-4 *1 (-945 *3 *4 *5))))
((*1 *2 *3)
- (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-52)) (-5 *1 (-1186)))))
+ (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045))
+ (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-640 *3))
+ (-5 *1 (-946 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-363)
+ (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $))
+ (-15 -2153 (*7 $))))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1151)) (-5 *2 (-640 (-1174))) (-5 *1 (-876)))))
-(((*1 *1 *1 *1) (-5 *1 (-225)))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-767)) (-5 *2 (-1 (-379))) (-5 *1 (-1036))))
- ((*1 *1 *1 *1) (-4 *1 (-1132))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1008)) (-5 *2 (-858)))))
-(((*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-1213))))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *4 (-225))
- (-5 *2
- (-2 (|:| |brans| (-640 (-640 (-939 *4))))
- (|:| |xValues| (-1087 *4)) (|:| |yValues| (-1087 *4))))
- (-5 *1 (-153)) (-5 *3 (-640 (-640 (-939 *4)))))))
+ (-12 (-5 *3 (-767)) (-5 *2 (-1165 *4)) (-5 *1 (-528 *4))
+ (-4 *4 (-349)))))
+(((*1 *2 *3 *3 *2)
+ (|partial| -12 (-5 *2 (-767))
+ (-4 *3 (-13 (-722) (-368) (-10 -7 (-15 ** (*3 *3 (-563))))))
+ (-5 *1 (-246 *3)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
+(((*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-108))))
+ ((*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-217))))
+ ((*1 *2 *1) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-487))))
+ ((*1 *1 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-307))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-407 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563))))
+ ((*1 *1 *1) (-4 *1 (-1054))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2))
+ (-4 *4 (-373 *2)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
+ (-4 *3 (-367 *4))))
+ ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
(((*1 *2 *3 *1)
(-12 (-5 *3 (-640 *4)) (-4 *4 (-1093)) (-4 *4 (-1208)) (-5 *2 (-112))
(-5 *1 (-1149 *4)))))
-(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-14 *5 (-640 (-1169))) (-4 *2 (-172))
- (-4 *4 (-238 (-3608 *5) (-767)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2555 *3) (|:| -1654 *4))
- (-2 (|:| -2555 *3) (|:| -1654 *4))))
- (-5 *1 (-461 *5 *2 *3 *4 *6 *7)) (-4 *3 (-846))
- (-4 *7 (-945 *2 *4 (-860 *5))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1093)) (-4 *5 (-1093))
- (-4 *6 (-1093)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-679 *4 *5 *6)))))
-(((*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260))))
- ((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))))
+ (|partial| -12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-782)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788))
- (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093))
- (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-1045))))
+ (|partial| -12 (-4 *3 (-25)) (-4 *3 (-846)) (-5 *2 (-640 *1))
+ (-4 *1 (-430 *3))))
((*1 *2 *1)
- (-12 (-4 *3 (-555)) (-5 *2 (-112)) (-5 *1 (-620 *3 *4))
- (-4 *4 (-1233 *3))))
+ (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3))
+ (-4 *3 (-1093))))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045))
- (-4 *4 (-722))))
+ (|partial| -12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *2 (-640 *1)) (-4 *1 (-945 *3 *4 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045))
+ (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-640 *3))
+ (-5 *1 (-946 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-363)
+ (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $))
+ (-15 -2153 (*7 $))))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-1165 *4))
+ (-5 *1 (-528 *4)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-244 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1278 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
+ (-5 *2 (-815 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
- (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
+ (-12 (-4 *2 (-842)) (-5 *1 (-1280 *3 *2)) (-4 *3 (-1045)))))
+(((*1 *1 *1) (-4 *1 (-1054))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045))
+ (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
+ (-4 *3 (-367 *4))))
+ ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-128)))))
+(((*1 *2 *3 *1)
+ (-12
(-5 *2
- (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563))
- (|:| |success| (-112))))
- (-5 *1 (-785)) (-5 *5 (-563)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-767)) (-4 *1 (-1274 *3 *4)) (-4 *3 (-846))
- (-4 *4 (-1045)) (-4 *4 (-172))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045))
- (-4 *3 (-172)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-386 *2)) (-4 *2 (-1093))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))))
-(((*1 *2 *2) (-12 (-5 *1 (-585 *2)) (-4 *2 (-545)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172))
- (-4 *5 (-1233 *4)) (-5 *2 (-684 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-409 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3))
- (-5 *2 (-684 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7))
- (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789))
- (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1063 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7))
- (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789))
- (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-584 *2)) (-4 *2 (-13 (-29 *4) (-1193)))
- (-5 *1 (-582 *4 *2))
- (-4 *4 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-584 (-407 (-948 *4))))
- (-4 *4 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563))))
- (-5 *2 (-316 *4)) (-5 *1 (-587 *4)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998)))
- (-5 *1 (-176 *3)))))
+ (-2 (|:| |cycle?| (-112)) (|:| -3250 (-767)) (|:| |period| (-767))))
+ (-5 *1 (-1149 *4)) (-4 *4 (-1208)) (-5 *3 (-767)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-782)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-545))
- (-5 *2 (-407 (-563)))))
+ (-12 (-4 *3 (-1045)) (-4 *4 (-1093)) (-5 *2 (-640 *1))
+ (-4 *1 (-382 *3 *4))))
((*1 *2 *1)
- (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-418 *3)) (-4 *3 (-545))
- (-4 *3 (-555))))
- ((*1 *2 *1) (|partial| -12 (-4 *1 (-545)) (-5 *2 (-407 (-563)))))
+ (-12 (-5 *2 (-640 (-731 *3 *4))) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045))
+ (-4 *4 (-722))))
((*1 *2 *1)
- (|partial| -12 (-4 *1 (-793 *3)) (-4 *3 (-172)) (-4 *3 (-545))
- (-5 *2 (-407 (-563)))))
+ (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1))
+ (-4 *1 (-945 *3 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1257 (-640 (-2 (|:| -2618 *4) (|:| -2552 (-1113))))))
+ (-4 *4 (-349)) (-5 *2 (-1262)) (-5 *1 (-528 *4)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-244 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-132)) (-5 *3 (-767)) (-5 *2 (-1262)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
+ (-5 *2 (-815 *3))))
((*1 *2 *1)
- (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-829 *3)) (-4 *3 (-545))
- (-4 *3 (-1093))))
+ (-12 (-4 *2 (-842)) (-5 *1 (-1280 *3 *2)) (-4 *3 (-1045)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-767)) (-5 *1 (-165 *3 *4))
+ (-4 *3 (-166 *4))))
+ ((*1 *2)
+ (-12 (-14 *4 *2) (-4 *5 (-1208)) (-5 *2 (-767))
+ (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *4 (-846)) (-5 *2 (-767)) (-5 *1 (-429 *3 *4))
+ (-4 *3 (-430 *4))))
+ ((*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-544 *3)) (-4 *3 (-545))))
+ ((*1 *2) (-12 (-4 *1 (-759)) (-5 *2 (-767))))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-767)) (-5 *1 (-792 *3 *4))
+ (-4 *3 (-793 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-987 *3 *4))
+ (-4 *3 (-988 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-767)) (-5 *1 (-992 *3 *4))
+ (-4 *3 (-993 *4))))
+ ((*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1007 *3)) (-4 *3 (-1008))))
+ ((*1 *2) (-12 (-4 *1 (-1045)) (-5 *2 (-767))))
+ ((*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1053 *3)) (-4 *3 (-1054)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045))
+ (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
+ (-4 *3 (-367 *4))))
+ ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-128)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-1149 *3))) (-5 *1 (-1149 *3)) (-4 *3 (-1208)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-917)) (-5 *1 (-782)))))
+(((*1 *2 *1) (-12 (-4 *1 (-326 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788))))
+ ((*1 *2 *1) (-12 (-4 *1 (-704 *3)) (-4 *3 (-1045)) (-5 *2 (-767))))
+ ((*1 *2 *1) (-12 (-4 *1 (-848 *3)) (-4 *3 (-1045)) (-5 *2 (-767))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-640 *6)) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 (-767)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-945 *4 *5 *3)) (-4 *4 (-1045)) (-4 *5 (-789))
+ (-4 *3 (-846)) (-5 *2 (-767)))))
+(((*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-129))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-563)) (-5 *1 (-241))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-563)) (-5 *1 (-241)))))
+(((*1 *1 *1 *1) (|partial| -4 *1 (-131))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-280))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093))))
((*1 *2 *1)
- (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-839 *3)) (-4 *3 (-545))
- (-4 *3 (-1093))))
+ (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
+ (-5 *2 (-112))))
((*1 *2 *1)
- (|partial| -12 (-4 *1 (-993 *3)) (-4 *3 (-172)) (-4 *3 (-545))
- (-5 *2 (-407 (-563)))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-1004 *3))
- (-4 *3 (-1034 *2)))))
-(((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172))))
- ((*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363))
- (-5 *2 (-2 (|:| -3646 (-407 *6)) (|:| |coeff| (-407 *6))))
- (-5 *1 (-573 *5 *6)) (-5 *3 (-407 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-870))))
- ((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *3 *4 *5 *5 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *3 (-948 *6)) (-5 *4 (-1169))
- (-5 *5 (-839 *7))
- (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-4 *7 (-13 (-1193) (-29 *6))) (-5 *1 (-224 *6 *7))))
- ((*1 *2 *3 *4 *4 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1165 *6)) (-5 *4 (-839 *6))
- (-4 *6 (-13 (-1193) (-29 *5)))
- (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-224 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1169)) (-4 *5 (-363)) (-5 *2 (-1149 (-1149 (-948 *5))))
- (-5 *1 (-1265 *5)) (-5 *4 (-1149 (-948 *5))))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1280 *3 *4)) (-4 *3 (-1045))
+ (-4 *4 (-842)))))
(((*1 *2 *2)
(-12 (-4 *3 (-846)) (-5 *1 (-925 *3 *2)) (-4 *2 (-430 *3))))
((*1 *2 *3)
(-12 (-5 *3 (-1169)) (-5 *2 (-316 (-563))) (-5 *1 (-926)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-684 *5)) (-4 *5 (-1045)) (-5 *1 (-1049 *3 *4 *5))
+ (-14 *3 (-767)) (-14 *4 (-767)))))
+(((*1 *1 *1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045))
+ (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))))
(((*1 *2)
(-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
(-4 *3 (-367 *4))))
((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
-(((*1 *1 *2 *3 *3 *3 *4)
- (-12 (-4 *4 (-363)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 (-407 *3)))
- (-4 *1 (-335 *4 *3 *5 *2)) (-4 *2 (-342 *4 *3 *5))))
- ((*1 *1 *2 *2 *3)
- (-12 (-5 *3 (-563)) (-4 *2 (-363)) (-4 *4 (-1233 *2))
- (-4 *5 (-1233 (-407 *4))) (-4 *1 (-335 *2 *4 *5 *6))
- (-4 *6 (-342 *2 *4 *5))))
- ((*1 *1 *2 *2)
- (-12 (-4 *2 (-363)) (-4 *3 (-1233 *2)) (-4 *4 (-1233 (-407 *3)))
- (-4 *1 (-335 *2 *3 *4 *5)) (-4 *5 (-342 *2 *3 *4))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4)))
- (-4 *1 (-335 *3 *4 *5 *2)) (-4 *2 (-342 *3 *4 *5))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-413 *4 (-407 *4) *5 *6)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5)) (-4 *3 (-363))
- (-4 *1 (-335 *3 *4 *5 *6)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-910 *3)) (-4 *3 (-307)))))
-(((*1 *2 *3 *3 *3)
- (|partial| -12 (-4 *4 (-13 (-363) (-147) (-1034 (-563))))
- (-4 *5 (-1233 *4)) (-5 *2 (-640 (-407 *5))) (-5 *1 (-1012 *4 *5))
- (-5 *3 (-407 *5)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-407 (-1165 (-316 *3)))) (-4 *3 (-13 (-555) (-846)))
- (-5 *1 (-1123 *3)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-640 (-407 *7)))
- (-4 *7 (-1233 *6)) (-5 *3 (-407 *7)) (-4 *6 (-363))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-573 *6 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1093)) (-4 *3 (-896 *5)) (-5 *2 (-1257 *3))
- (-5 *1 (-687 *5 *3 *6 *4)) (-4 *6 (-373 *3))
- (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4407)))))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-128)))))
+(((*1 *1) (-5 *1 (-130))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-640 *6)) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-767))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-945 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-5 *2 (-767)))))
+(((*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-548))))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-1151)) (-5 *3 (-563)) (-5 *1 (-241)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-13 (-363) (-147)))
- (-5 *2 (-640 (-2 (|:| -1654 (-767)) (|:| -3408 *4) (|:| |num| *4))))
- (-5 *1 (-399 *3 *4)) (-4 *4 (-1233 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-481 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045))
- (-5 *2 (-247 *4 *5)) (-5 *1 (-940 *4 *5)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)) (-4 *2 (-363))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-363)) (-5 *1 (-654 *4 *2))
- (-4 *2 (-651 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-4 *1 (-235 *3))))
- ((*1 *1) (-12 (-4 *1 (-235 *2)) (-4 *2 (-1093)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2))
- (-4 *4 (-373 *2)))))
+ (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
+ (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1280 *3 *4)) (-4 *3 (-1045))
+ (-4 *4 (-842)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
+(((*1 *1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045))
+ (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
+ (-4 *3 (-367 *4))))
+ ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-129)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1186)))))
+(((*1 *2 *1) (-12 (-5 *2 (-820)) (-5 *1 (-821)))))
(((*1 *1 *1) (-5 *1 (-536))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-452)) (-4 *3 (-846)) (-4 *3 (-1034 (-563)))
- (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-430 *3))
- (-4 *2
- (-13 (-363) (-302)
- (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $))
- (-15 -2154 ((-1118 *3 (-609 $)) $))
- (-15 -1693 ($ (-1118 *3 (-609 $))))))))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-948 (-563)))) (-5 *1 (-437))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1169)) (-5 *4 (-684 (-225))) (-5 *2 (-1097))
- (-5 *1 (-755))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1169)) (-5 *4 (-684 (-563))) (-5 *2 (-1097))
- (-5 *1 (-755)))))
+(((*1 *1) (-5 *1 (-130))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-326 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045))
+ (-4 *2 (-452))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 *4)) (-4 *4 (-1233 (-563))) (-5 *2 (-640 (-563)))
+ (-5 *1 (-486 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-452))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *2 (-846)) (-4 *3 (-452)))))
+(((*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-1215))))))
+(((*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-241)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+ (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1280 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-842)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)) (-5 *2 (-418 *3))
- (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-945 *6 *4 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34)))
- (-4 *3 (-13 (-1093) (-34))))))
-(((*1 *2 *3 *3 *4 *4 *4 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-748)))))
+ (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1093)) (-4 *5 (-1093))
+ (-4 *6 (-1093)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-679 *4 *5 *6)))))
+(((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-52)) (-5 *1 (-1186)))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-821)))))
+(((*1 *1) (-5 *1 (-130))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-640 *5)) (-5 *4 (-563)) (-4 *5 (-844)) (-4 *5 (-363))
+ (-5 *2 (-767)) (-5 *1 (-941 *5 *6)) (-4 *6 (-1233 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-546))))))
+(((*1 *1 *1) (-4 *1 (-545))))
(((*1 *2 *3)
- (-12 (-5 *3 (-563)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-5 *2 (-1262)) (-5 *1 (-449 *4 *5 *6 *7)) (-4 *7 (-945 *4 *5 *6)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-121 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1257 (-1257 (-563)))) (-5 *3 (-917)) (-5 *1 (-466)))))
+ (-12 (-5 *3 (-294 (-948 (-563))))
+ (-5 *2
+ (-2 (|:| |varOrder| (-640 (-1169)))
+ (|:| |inhom| (-3 (-640 (-1257 (-767))) "failed"))
+ (|:| |hom| (-640 (-1257 (-767))))))
+ (-5 *1 (-236)))))
+(((*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-767)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045))
+ (-14 *4 (-640 (-1169)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-563)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846)))
+ (-14 *4 (-640 (-1169)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846))
+ (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-767))))
+ ((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-275))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1165 *8)) (-5 *4 (-640 *6)) (-4 *6 (-846))
+ (-4 *8 (-945 *7 *5 *6)) (-4 *5 (-789)) (-4 *7 (-1045))
+ (-5 *2 (-640 (-767))) (-5 *1 (-321 *5 *6 *7 *8))))
+ ((*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-917))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-374 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172))
+ (-5 *2 (-767))))
+ ((*1 *2 *1) (-12 (-4 *1 (-470 *3 *2)) (-4 *3 (-172)) (-4 *2 (-23))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-555)) (-5 *2 (-563)) (-5 *1 (-620 *3 *4))
+ (-4 *4 (-1233 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-704 *3)) (-4 *3 (-1045)) (-5 *2 (-767))))
+ ((*1 *2 *1) (-12 (-4 *1 (-848 *3)) (-4 *3 (-1045)) (-5 *2 (-767))))
+ ((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-900 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-901 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-640 *6)) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 (-767)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-945 *4 *5 *3)) (-4 *4 (-1045)) (-4 *5 (-789))
+ (-4 *3 (-846)) (-5 *2 (-767))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-969 *3 *2 *4)) (-4 *3 (-1045)) (-4 *4 (-846))
+ (-4 *2 (-788))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-767))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1219 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1248 *3))
+ (-5 *2 (-563))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1240 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1217 *3))
+ (-5 *2 (-407 (-563)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-829 (-917)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1278 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
+ (-5 *2 (-767)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1093)) (-4 *6 (-1093))
+ (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-679 *4 *5 *6)) (-4 *4 (-1093)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
+ (-4 *3 (-367 *4))))
+ ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1208))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-846))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-846))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-563)) (-4 *1 (-282 *3)) (-4 *3 (-1208))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-4 *1 (-282 *2)) (-4 *2 (-1208))))
+ ((*1 *1 *2)
(-12
- (-5 *3
- (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
(-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 (-192)))))
-(((*1 *2 *3 *3 *3)
- (|partial| -12
- (-4 *4 (-13 (-147) (-27) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-4 *5 (-1233 *4)) (-5 *2 (-1165 (-407 *5))) (-5 *1 (-612 *4 *5))
- (-5 *3 (-407 *5))))
- ((*1 *2 *3 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 (-418 *6) *6)) (-4 *6 (-1233 *5))
- (-4 *5 (-13 (-147) (-27) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-5 *2 (-1165 (-407 *6))) (-5 *1 (-612 *5 *6)) (-5 *3 (-407 *6)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *2 *3)
+ (-2
+ (|:| -2387
+ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (|:| -2556
+ (-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| (-1149 (-225)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -4166
+ (-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 (-558))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-767)) (-4 *1 (-690 *2)) (-4 *2 (-1093))))
+ ((*1 *1 *2)
(-12
- (-5 *3
- (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379))
- (|:| |expense| (-379)) (|:| |accuracy| (-379))
- (|:| |intermediateResults| (-379))))
- (-5 *2 (-1031)) (-5 *1 (-305)))))
-(((*1 *1 *1) (-4 *1 (-545))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846))
- (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-112)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-640 (-609 *5))) (-5 *3 (-1169)) (-4 *5 (-430 *4))
- (-4 *4 (-846)) (-5 *1 (-572 *4 *5)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7))
- (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789))
- (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1063 *5 *6 *7 *8 *9))))
+ (-5 *2
+ (-2
+ (|:| -2387
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
+ (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (|:| -2556
+ (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379))
+ (|:| |expense| (-379)) (|:| |accuracy| (-379))
+ (|:| |intermediateResults| (-379))))))
+ (-5 *1 (-799))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7))
- (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789))
- (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))))
-(((*1 *1 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-480)))))
+ (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093))
+ (-4 *4 (-1093)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-820)) (-5 *3 (-640 (-1169))) (-5 *1 (-821)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-418 (-1165 (-563)))) (-5 *1 (-191)) (-5 *3 (-563)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 (-144))) (-5 *1 (-141))))
- ((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-141)))))
+ (-12 (-5 *3 (-640 *4)) (-4 *4 (-844)) (-4 *4 (-363)) (-5 *2 (-767))
+ (-5 *1 (-941 *4 *5)) (-4 *5 (-1233 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-1213))))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-4 *1 (-235 *3))))
+ ((*1 *1) (-12 (-4 *1 (-235 *2)) (-4 *2 (-1093)))))
(((*1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-601 *2 *3)) (-4 *3 (-1208)) (-4 *2 (-1093))
- (-4 *2 (-846)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
- ((*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
-(((*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2742 *3) (|:| |coef1| (-778 *3))))
- (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))))
-(((*1 *1 *1)
- (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-172)) (-4 *2 (-555))))
- ((*1 *1 *1) (|partial| -4 *1 (-718))))
-(((*1 *2 *2) (-12 (-5 *2 (-640 (-316 (-225)))) (-5 *1 (-267)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
- (-5 *2 (-112)))))
-(((*1 *1 *1 *1) (-5 *1 (-858))) ((*1 *1 *1) (-5 *1 (-858)))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1165 (-563))) (-5 *3 (-563)) (-4 *1 (-865 *4)))))
+ (-12 (-5 *2 (-767)) (-4 *1 (-374 *3 *4)) (-4 *3 (-846))
+ (-4 *4 (-172))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-767)) (-4 *1 (-1278 *3 *4)) (-4 *3 (-846))
+ (-4 *4 (-1045)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
+ (-4 *3 (-367 *4))))
+ ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-917))
- (-5 *2 (-1257 (-640 (-2 (|:| -2619 *4) (|:| -2555 (-1113))))))
- (-5 *1 (-346 *4)) (-4 *4 (-349)))))
-(((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045))
- (-5 *2 (-640 (-640 (-640 (-767))))))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)) (-4 *2 (-363))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-363)) (-5 *1 (-654 *4 *2))
- (-4 *2 (-651 *4)))))
+ (|partial| -12 (-4 *2 (-1093)) (-5 *1 (-1185 *3 *2)) (-4 *3 (-1093)))))
+(((*1 *1) (-5 *1 (-819))))
(((*1 *2 *3)
- (-12 (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-363))
- (-5 *1 (-521 *2 *4 *5 *3)) (-4 *3 (-682 *2 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2))
- (|has| *2 (-6 (-4409 "*"))) (-4 *2 (-1045))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-172))
- (-5 *1 (-683 *2 *4 *5 *3)) (-4 *3 (-682 *2 *4 *5))))
+ (-12 (-4 *2 (-363)) (-4 *2 (-844)) (-5 *1 (-941 *2 *3))
+ (-4 *3 (-1233 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-547))))))
+(((*1 *1) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1272 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172))
+ (-5 *1 (-659 *3 *4))))
((*1 *2 *1)
- (-12 (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
- (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4409 "*"))) (-4 *2 (-1045)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-1173)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-767)) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5))
- (-4 *4 (-373 *3)) (-4 *5 (-373 *3))))
- ((*1 *1 *2)
- (-12 (-4 *2 (-1045)) (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
- (-4 *5 (-238 *3 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 (-640 *8))) (-5 *3 (-640 *8))
- (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147)))
- (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-112))
- (-5 *1 (-920 *5 *6 *7 *8)))))
-(((*1 *2 *3 *4 *5 *6 *7 *8 *9)
- (|partial| -12 (-5 *4 (-640 *11)) (-5 *5 (-640 (-1165 *9)))
- (-5 *6 (-640 *9)) (-5 *7 (-640 *12)) (-5 *8 (-640 (-767)))
- (-4 *11 (-846)) (-4 *9 (-307)) (-4 *12 (-945 *9 *10 *11))
- (-4 *10 (-789)) (-5 *2 (-640 (-1165 *12)))
- (-5 *1 (-703 *10 *11 *9 *12)) (-5 *3 (-1165 *12)))))
-(((*1 *2 *1) (-12 (-5 *2 (-818)) (-5 *1 (-817)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *5)) (-5 *4 (-640 (-1 *6 (-640 *6))))
- (-4 *5 (-38 (-407 (-563)))) (-4 *6 (-1248 *5)) (-5 *2 (-640 *6))
- (-5 *1 (-1250 *5 *6)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1257 *4)) (-5 *3 (-767)) (-4 *4 (-349))
- (-5 *1 (-528 *4)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-767)) (-4 *4 (-1045))
- (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-1233 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1093)) (-4 *5 (-1093))
- (-4 *6 (-1093)) (-5 *2 (-1 *6 *5)) (-5 *1 (-679 *4 *5 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1151)) (-5 *1 (-706)))))
+ (|partial| -12 (-5 *2 (-659 *3 *4)) (-5 *1 (-1277 *3 *4))
+ (-4 *3 (-846)) (-4 *4 (-172)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1093)) (-5 *2 (-1151)))))
+(((*1 *2 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563))
+ (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195))))
+ (-5 *2 (-1031)) (-5 *1 (-744)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
+ (-4 *3 (-367 *4))))
+ ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093))
+ (-4 *4 (-1093)))))
+(((*1 *1) (-5 *1 (-819))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-363)) (-5 *2 (-640 *3)) (-5 *1 (-941 *4 *3))
+ (-4 *3 (-1233 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-1214))))))
+(((*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))))
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767))
+ (-4 *4 (-172))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2))
+ (-4 *2 (-430 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085 *2)) (-4 *2 (-430 *4)) (-4 *4 (-13 (-846) (-555)))
+ (-5 *1 (-158 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-160))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1169))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-465 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-767)) (-5 *1 (-1277 *3 *4)) (-4 *3 (-846))
+ (-4 *4 (-172)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1091 *3)) (-4 *3 (-1093)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6)
+ (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195)))) (-5 *3 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-744)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
+ (-4 *3 (-367 *4))))
+ ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093))
+ (-4 *4 (-1093)))))
+(((*1 *1) (-5 *1 (-819))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-363)) (-5 *2 (-640 *3)) (-5 *1 (-941 *4 *3))
+ (-4 *3 (-1233 *4)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-527)) (-5 *3 (-128)) (-5 *2 (-767)))))
(((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-330)))))
+(((*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
+ (-5 *2 (-2 (|:| |k| (-815 *3)) (|:| |c| *4))))))
(((*1 *2 *1) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193)))))
((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858))))
((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-858)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-363) (-1193) (-998))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-1169))) (-4 *4 (-13 (-307) (-147)))
- (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789))
- (-5 *2 (-640 (-407 (-948 *4)))) (-5 *1 (-920 *4 *5 *6 *7))
- (-4 *7 (-945 *4 *6 *5)))))
-(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-436)))))
-(((*1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *4 (-172)) (-4 *5 (-373 *4))
- (-4 *6 (-373 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4)))
- (-5 *1 (-683 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-640 (-504 *3 *4 *5 *6))) (-4 *3 (-363)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5))))
((*1 *1 *1 *1)
- (-12 (-4 *2 (-172)) (-4 *2 (-1045)) (-5 *1 (-710 *2 *3))
- (-4 *3 (-643 *2))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-172)) (-4 *2 (-1045)) (-5 *1 (-710 *2 *3))
- (-4 *3 (-643 *2))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-832 *2)) (-4 *2 (-172)) (-4 *2 (-1045))))
- ((*1 *1 *1) (-12 (-5 *1 (-832 *2)) (-4 *2 (-172)) (-4 *2 (-1045)))))
-(((*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *2)
- (|:| |polj| *2)))
- (-4 *5 (-789)) (-4 *2 (-945 *4 *5 *6)) (-5 *1 (-449 *4 *5 *6 *2))
- (-4 *4 (-452)) (-4 *6 (-846)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
- (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-718)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-722)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9)
- (-12 (-5 *4 (-563)) (-5 *5 (-1151)) (-5 *6 (-684 (-225)))
- (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))))
- (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))))
- (-5 *9 (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))
- (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1257 *5)) (-4 *5 (-636 *4)) (-4 *4 (-555))
- (-5 *2 (-1257 *4)) (-5 *1 (-635 *4 *5)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-767)) (-5 *3 (-939 *4)) (-4 *1 (-1127 *4))
+ (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846))
+ (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-640 *1)) (-5 *3 (-640 *7)) (-4 *1 (-1065 *4 *5 *6 *7))
+ (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1))
+ (-4 *1 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1))
+ (-4 *1 (-1065 *4 *5 *6 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563))
+ (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195))))
+ (-5 *2 (-1031)) (-5 *1 (-744)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
+ (-4 *3 (-367 *4))))
+ ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093))
+ (-4 *4 (-1093)))))
+(((*1 *1) (-5 *1 (-819))))
+(((*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-1281 *3 *4)) (-4 *1 (-374 *3 *4)) (-4 *3 (-846))
+ (-4 *4 (-172))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-386 *2)) (-4 *2 (-1093))))
+ ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-815 *3)) (-4 *1 (-1274 *3 *4)) (-4 *3 (-846))
(-4 *4 (-1045))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-767)) (-5 *4 (-939 (-225))) (-5 *2 (-1262))
- (-5 *1 (-1259)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-363))
- (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3)))
- (-5 *1 (-573 *5 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-858)) (-5 *1 (-1149 *3)) (-4 *3 (-1093))
- (-4 *3 (-1208)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-609 *3)) (-4 *3 (-13 (-430 *5) (-27) (-1193)))
- (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
- (-5 *2 (-584 *3)) (-5 *1 (-565 *5 *3 *6)) (-4 *6 (-1093)))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563))
+ (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195))))
+ (-5 *2 (-1031)) (-5 *1 (-744)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
+ (-4 *3 (-367 *4))))
+ ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093))
+ (-4 *4 (-1093)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-818)))))
+(((*1 *2 *2 *3 *4 *5)
+ (-12 (-5 *2 (-640 *9)) (-5 *3 (-1 (-112) *9))
+ (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9))
+ (-4 *9 (-1059 *6 *7 *8)) (-4 *6 (-555)) (-4 *7 (-789))
+ (-4 *8 (-846)) (-5 *1 (-973 *6 *7 *8 *9)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -1700 *6) (|:| |sol?| (-112))) (-563)
+ *6))
+ (-4 *6 (-363)) (-4 *7 (-1233 *6))
+ (-5 *2 (-2 (|:| |answer| (-584 (-407 *7))) (|:| |a0| *6)))
+ (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))))
(((*1 *2 *2)
(-12
(-5 *2
@@ -2770,64 +2689,49 @@
(-247 *3 (-407 (-563)))))
(-14 *3 (-640 (-1169))) (-14 *4 (-767)) (-5 *1 (-505 *3 *4)))))
(((*1 *1) (-5 *1 (-330))))
-(((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-767)) (-5 *1 (-778 *3)) (-4 *3 (-1045))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *1 (-959 *3 *2)) (-4 *2 (-131)) (-4 *3 (-555))
- (-4 *3 (-1045)) (-4 *2 (-788))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-767)) (-5 *1 (-1165 *3)) (-4 *3 (-1045))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-967)) (-4 *2 (-131)) (-5 *1 (-1171 *3)) (-4 *3 (-555))
- (-4 *3 (-1045))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-767)) (-5 *1 (-1230 *4 *3)) (-14 *4 (-1169))
- (-4 *3 (-1045)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-640 *4)) (-4 *4 (-363)) (-5 *2 (-1257 *4))
- (-5 *1 (-810 *4 *3)) (-4 *3 (-651 *4)))))
-(((*1 *2)
- (-12 (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4)))
- (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5))))
- ((*1 *2)
- (-12 (-4 *3 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $)))))
- (-4 *4 (-1233 *3))
- (-5 *2
- (-2 (|:| -4315 (-684 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-684 *3))))
- (-5 *1 (-350 *3 *4 *5)) (-4 *5 (-409 *3 *4))))
- ((*1 *2)
- (-12 (-4 *3 (-1233 (-563)))
- (-5 *2
- (-2 (|:| -4315 (-684 (-563))) (|:| |basisDen| (-563))
- (|:| |basisInv| (-684 (-563)))))
- (-5 *1 (-764 *3 *4)) (-4 *4 (-409 (-563) *3))))
- ((*1 *2)
- (-12 (-4 *3 (-349)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 *4))
- (-5 *2
- (-2 (|:| -4315 (-684 *4)) (|:| |basisDen| *4)
- (|:| |basisInv| (-684 *4))))
- (-5 *1 (-981 *3 *4 *5 *6)) (-4 *6 (-720 *4 *5))))
- ((*1 *2)
- (-12 (-4 *3 (-349)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 *4))
- (-5 *2
- (-2 (|:| -4315 (-684 *4)) (|:| |basisDen| *4)
- (|:| |basisInv| (-684 *4))))
- (-5 *1 (-1266 *3 *4 *5 *6)) (-4 *6 (-409 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-563)) (|has| *1 (-6 -4398)) (-4 *1 (-404))
- (-5 *2 (-917)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-1281 *3 *4)) (-4 *1 (-374 *3 *4)) (-4 *3 (-846))
+ (-4 *4 (-172))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-386 *2)) (-4 *2 (-1093))))
+ ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-815 *3)) (-4 *1 (-1274 *3 *4)) (-4 *3 (-846))
+ (-4 *4 (-1045))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-743)))))
(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4407)) (-4 *1 (-151 *2)) (-4 *2 (-1208))
+ (-12 (|has| *1 (-6 -4408)) (-4 *1 (-151 *2)) (-4 *2 (-1208))
(-4 *2 (-1093)))))
-(((*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-767)) (-5 *1 (-588)))))
-(((*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1149 (-407 *3))) (-5 *1 (-174 *3)) (-4 *3 (-307)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-640 (-1257 *4))) (-5 *1 (-366 *3 *4))
+ (-4 *3 (-367 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-4 *3 (-555))
+ (-5 *2 (-640 (-1257 *3))))))
+(((*1 *2)
+ (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093))
+ (-4 *4 (-1093)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+ (-12 (-5 *2 (-2 (|:| |cd| (-1151)) (|:| -3352 (-1151))))
+ (-5 *1 (-818)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -2840 *6) (|:| |coeff| *6)) "failed") *6))
+ (-4 *6 (-363)) (-4 *7 (-1233 *6))
+ (-5 *2 (-2 (|:| |answer| (-584 (-407 *7))) (|:| |a0| *6)))
+ (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))))
(((*1 *2 *1 *2 *3)
(-12 (-5 *3 (-640 (-1151))) (-5 *2 (-1151)) (-5 *1 (-1258))))
((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1258))))
@@ -2858,91 +2762,70 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-316 *5)) (-5 *4 (-917)) (-4 *5 (-555)) (-4 *5 (-846))
(-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5)))))
-(((*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3)
- (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563))
- (-5 *2 (-1031)) (-5 *1 (-752)))))
-(((*1 *2 *1) (-12 (-4 *1 (-302)) (-5 *2 (-640 (-114))))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
- (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2059 *4))))
- (-5 *1 (-772 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(((*1 *1 *2 *2 *1) (-12 (-5 *1 (-642 *2)) (-4 *2 (-1093)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-684 (-316 (-225))))
- (-5 *2
- (-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))))
- (-5 *1 (-205)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-112)) (-5 *5 (-563)) (-4 *6 (-363)) (-4 *6 (-368))
- (-4 *6 (-1045)) (-5 *2 (-640 (-640 (-684 *6)))) (-5 *1 (-1025 *6))
- (-5 *3 (-640 (-684 *6)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-363)) (-4 *4 (-368)) (-4 *4 (-1045))
- (-5 *2 (-640 (-640 (-684 *4)))) (-5 *1 (-1025 *4))
- (-5 *3 (-640 (-684 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-363)) (-4 *5 (-368)) (-4 *5 (-1045))
- (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5))
- (-5 *3 (-640 (-684 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-917)) (-4 *5 (-363)) (-4 *5 (-368)) (-4 *5 (-1045))
- (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5))
- (-5 *3 (-640 (-684 *5))))))
-(((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-767)) (-4 *4 (-13 (-555) (-147)))
- (-5 *1 (-1227 *4 *2)) (-4 *2 (-1233 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-183)) (-5 *1 (-248)))))
-(((*1 *1 *1) (-4 *1 (-1054))))
+(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1045)) (-5 *2 (-1257 *3)) (-5 *1 (-708 *3 *4))
- (-4 *4 (-1233 *3)))))
-(((*1 *2 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-743)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-609 (-48)))) (-5 *1 (-48))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-609 (-48))) (-5 *1 (-48))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1165 (-48))) (-5 *3 (-640 (-609 (-48)))) (-5 *1 (-48))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1165 (-48))) (-5 *3 (-609 (-48))) (-5 *1 (-48))))
- ((*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3))
- (-4 *3 (-1233 (-169 *2)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-917)) (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368))))
- ((*1 *2 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-363))))
+ (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788))
+ (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-4 *1 (-370 *2 *3)) (-4 *3 (-1233 *2)) (-4 *2 (-172))))
+ (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093))
+ (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-1045))))
((*1 *2 *1)
- (-12 (-4 *4 (-1233 *2)) (-4 *2 (-988 *3)) (-5 *1 (-413 *3 *2 *4 *5))
- (-4 *3 (-307)) (-4 *5 (-13 (-409 *2 *4) (-1034 *2)))))
+ (-12 (-4 *3 (-555)) (-5 *2 (-112)) (-5 *1 (-620 *3 *4))
+ (-4 *4 (-1233 *3))))
((*1 *2 *1)
- (-12 (-4 *4 (-1233 *2)) (-4 *2 (-988 *3))
- (-5 *1 (-414 *3 *2 *4 *5 *6)) (-4 *3 (-307)) (-4 *5 (-409 *2 *4))
- (-14 *6 (-1257 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-917)) (-4 *5 (-1045))
- (-4 *2 (-13 (-404) (-1034 *5) (-363) (-1193) (-284)))
- (-5 *1 (-443 *5 *3 *2)) (-4 *3 (-1233 *5))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-609 (-495)))) (-5 *1 (-495))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-609 (-495))) (-5 *1 (-495))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1165 (-495))) (-5 *3 (-640 (-609 (-495))))
- (-5 *1 (-495))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1165 (-495))) (-5 *3 (-609 (-495))) (-5 *1 (-495))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1257 *4)) (-5 *3 (-917)) (-4 *4 (-349))
- (-5 *1 (-528 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-452)) (-4 *5 (-720 *4 *2)) (-4 *2 (-1233 *4))
- (-5 *1 (-771 *4 *2 *5 *3)) (-4 *3 (-1233 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172))))
- ((*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172))))
- ((*1 *1 *1) (-4 *1 (-1054))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045))
+ (-4 *4 (-722))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
+ (-5 *2 (-112)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1091 *3)) (-4 *3 (-1093)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-743)))))
+(((*1 *1 *2 *2 *1) (-12 (-5 *1 (-642 *2)) (-4 *2 (-1093)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-4 *3 (-555))
+ (-5 *2 (-1165 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-126 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1185 *4 *5))
+ (-4 *4 (-1093)) (-4 *5 (-1093)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-818)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6))
+ (-5 *2 (-2 (|:| |bas| (-476 *4 *5 *6 *7)) (|:| -2635 (-640 *7))))
+ (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-1 (-584 *3) *3 (-1169)))
+ (-5 *6
+ (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3
+ (-1169)))
+ (-4 *3 (-284)) (-4 *3 (-626)) (-4 *3 (-1034 *4)) (-4 *3 (-430 *7))
+ (-5 *4 (-1169)) (-4 *7 (-611 (-888 (-563)))) (-4 *7 (-452))
+ (-4 *7 (-882 (-563))) (-4 *7 (-846)) (-5 *2 (-584 *3))
+ (-5 *1 (-572 *7 *3)))))
+(((*1 *2 *3 *4 *5 *5 *2)
+ (|partial| -12 (-5 *2 (-112)) (-5 *3 (-948 *6)) (-5 *4 (-1169))
+ (-5 *5 (-839 *7))
+ (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-4 *7 (-13 (-1193) (-29 *6))) (-5 *1 (-224 *6 *7))))
+ ((*1 *2 *3 *4 *4 *2)
+ (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1165 *6)) (-5 *4 (-839 *6))
+ (-4 *6 (-13 (-1193) (-29 *5)))
+ (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-224 *5 *6)))))
+(((*1 *1 *1) (-12 (-4 *1 (-374 *2 *3)) (-4 *2 (-846)) (-4 *3 (-172))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-624 *2 *3 *4)) (-4 *2 (-846))
+ (-4 *3 (-13 (-172) (-713 (-407 (-563))))) (-14 *4 (-917))))
+ ((*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846))))
+ ((*1 *1 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))))
(((*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846))))
((*1 *1 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846))))
((*1 *1 *1) (-12 (-5 *1 (-889 *2)) (-4 *2 (-846))))
@@ -2952,78 +2835,34 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-767)) (-4 *1 (-1245 *3)) (-4 *3 (-1208))))
((*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-1149 *3)))))
-(((*1 *2 *2 *2 *2 *2 *3)
- (-12 (-5 *2 (-684 *4)) (-5 *3 (-767)) (-4 *4 (-1045))
- (-5 *1 (-685 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394))))
- ((*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))))
-(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-157))))
- ((*1 *2 *1) (-12 (-5 *2 (-157)) (-5 *1 (-870))))
- ((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-885 *5 *3)) (-5 *4 (-888 *5)) (-4 *5 (-1093))
- (-4 *3 (-166 *6)) (-4 (-948 *6) (-882 *5))
- (-4 *6 (-13 (-882 *5) (-172))) (-5 *1 (-178 *5 *6 *3))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *2 (-885 *4 *1)) (-5 *3 (-888 *4)) (-4 *1 (-882 *4))
- (-4 *4 (-1093))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-885 *5 *6)) (-5 *4 (-888 *5)) (-4 *5 (-1093))
- (-4 *6 (-13 (-1093) (-1034 *3))) (-4 *3 (-882 *5))
- (-5 *1 (-927 *5 *3 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-885 *5 *3)) (-4 *5 (-1093))
- (-4 *3 (-13 (-430 *6) (-611 *4) (-882 *5) (-1034 (-609 $))))
- (-5 *4 (-888 *5)) (-4 *6 (-13 (-555) (-846) (-882 *5)))
- (-5 *1 (-928 *5 *6 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-885 (-563) *3)) (-5 *4 (-888 (-563))) (-4 *3 (-545))
- (-5 *1 (-929 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-885 *5 *6)) (-5 *3 (-609 *6)) (-4 *5 (-1093))
- (-4 *6 (-13 (-846) (-1034 (-609 $)) (-611 *4) (-882 *5)))
- (-5 *4 (-888 *5)) (-5 *1 (-930 *5 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-881 *5 *6 *3)) (-5 *4 (-888 *5)) (-4 *5 (-1093))
- (-4 *6 (-882 *5)) (-4 *3 (-661 *6)) (-5 *1 (-931 *5 *6 *3))))
- ((*1 *2 *3 *4 *2 *5)
- (-12 (-5 *5 (-1 (-885 *6 *3) *8 (-888 *6) (-885 *6 *3)))
- (-4 *8 (-846)) (-5 *2 (-885 *6 *3)) (-5 *4 (-888 *6))
- (-4 *6 (-1093)) (-4 *3 (-13 (-945 *9 *7 *8) (-611 *4)))
- (-4 *7 (-789)) (-4 *9 (-13 (-1045) (-846) (-882 *6)))
- (-5 *1 (-932 *6 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-885 *5 *3)) (-4 *5 (-1093))
- (-4 *3 (-13 (-945 *8 *6 *7) (-611 *4))) (-5 *4 (-888 *5))
- (-4 *7 (-882 *5)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *8 (-13 (-1045) (-846) (-882 *5)))
- (-5 *1 (-932 *5 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-885 *5 *3)) (-4 *5 (-1093)) (-4 *3 (-988 *6))
- (-4 *6 (-13 (-555) (-882 *5) (-611 *4))) (-5 *4 (-888 *5))
- (-5 *1 (-935 *5 *6 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-885 *5 (-1169))) (-5 *3 (-1169)) (-5 *4 (-888 *5))
- (-4 *5 (-1093)) (-5 *1 (-936 *5))))
- ((*1 *2 *3 *4 *5 *2 *6)
- (-12 (-5 *4 (-640 (-888 *7))) (-5 *5 (-1 *9 (-640 *9)))
- (-5 *6 (-1 (-885 *7 *9) *9 (-888 *7) (-885 *7 *9))) (-4 *7 (-1093))
- (-4 *9 (-13 (-1045) (-611 (-888 *7)) (-1034 *8)))
- (-5 *2 (-885 *7 *9)) (-5 *3 (-640 *9)) (-4 *8 (-13 (-1045) (-846)))
- (-5 *1 (-937 *7 *8 *9)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3)
- (-12 (-5 *4 (-684 (-563))) (-5 *5 (-112)) (-5 *7 (-684 (-225)))
- (-5 *3 (-563)) (-5 *6 (-225)) (-5 *2 (-1031)) (-5 *1 (-750)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-743)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1185 *4 *5))
+ (-4 *4 (-1093)) (-4 *5 (-1093)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-818)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1169)) (-4 *4 (-452)) (-4 *4 (-846))
+ (-5 *1 (-572 *4 *2)) (-4 *2 (-284)) (-4 *2 (-430 *4)))))
(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1258))))
((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1259)))))
(((*1 *1) (-5 *1 (-1262))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1093)) (-4 *5 (-1093))
- (-5 *2 (-1 *5 *4)) (-5 *1 (-678 *4 *5)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *3 *4 *2 *2 *5)
+ (|partial| -12 (-5 *2 (-839 *4)) (-5 *3 (-609 *4)) (-5 *5 (-112))
+ (-4 *4 (-13 (-1193) (-29 *6)))
+ (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-224 *6 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-767)) (-4 *1 (-1274 *3 *4)) (-4 *3 (-846))
+ (-4 *4 (-1045)) (-4 *4 (-172))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045))
+ (-4 *3 (-172)))))
(((*1 *2 *1)
(-12 (-4 *1 (-601 *3 *2)) (-4 *3 (-1093)) (-4 *3 (-846))
(-4 *2 (-1208))))
@@ -3038,112 +2877,114 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-767)) (-4 *1 (-1245 *3)) (-4 *3 (-1208))))
((*1 *2 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
-(((*1 *2) (-12 (-5 *2 (-640 (-767))) (-5 *1 (-1260))))
- ((*1 *2 *2) (-12 (-5 *2 (-640 (-767))) (-5 *1 (-1260)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1057)) (-5 *3 (-1151)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-885 *4 *5)) (-5 *3 (-885 *4 *6)) (-4 *4 (-1093))
+ (-4 *5 (-1093)) (-4 *6 (-661 *5)) (-5 *1 (-881 *4 *5 *6)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-743)))))
+(((*1 *1) (-5 *1 (-437))))
(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
- (-4 *3 (-367 *4))))
- ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
- (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))))
-(((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1095 *3)) (-5 *1 (-901 *3)) (-4 *3 (-368))
- (-4 *3 (-1093)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1233 *3)) (-5 *1 (-399 *3 *2))
- (-4 *3 (-13 (-363) (-147))))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-917)) (-5 *2 (-1262)) (-5 *1 (-1258))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-917)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169))
- (-14 *4 *2))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1103)) (-5 *3 (-563)))))
-(((*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
- (-5 *2 (-1031)) (-5 *1 (-747)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *4 (-363)) (-5 *2 (-640 (-1149 *4))) (-5 *1 (-285 *4 *5))
- (-5 *3 (-1149 *4)) (-4 *5 (-1248 *4)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *2 (-563)) (-5 *1 (-204)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+ (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093))
+ (-4 *4 (-1093)))))
+(((*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-818)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-1059 *4 *5 *6)) (-4 *4 (-555))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *2)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1169)) (-4 *4 (-555)) (-4 *4 (-846))
+ (-5 *1 (-572 *4 *2)) (-4 *2 (-430 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349))
- (-5 *2 (-1257 (-640 (-2 (|:| -2619 *4) (|:| -2555 (-1113))))))
- (-5 *1 (-346 *4)))))
+ (-12 (-5 *3 (-1151))
+ (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *2 (-112)) (-5 *1 (-224 *4 *5)) (-4 *5 (-13 (-1193) (-29 *4))))))
(((*1 *2 *3 *1)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1))
- (-4 *1 (-1065 *4 *5 *6 *3)))))
+ (-12 (-4 *1 (-1201 *4 *5 *3 *6)) (-4 *4 (-555)) (-4 *5 (-789))
+ (-4 *3 (-846)) (-4 *6 (-1059 *4 *5 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-1083)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225)))
+ (-5 *2 (-1031)) (-5 *1 (-743)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-4 *3 (-555))
- (-5 *2 (-1165 *3)))))
+ (-12 (-4 *4 (-1093)) (-5 *2 (-885 *3 *4)) (-5 *1 (-881 *3 *4 *5))
+ (-4 *3 (-1093)) (-4 *5 (-661 *4)))))
+(((*1 *1) (-5 *1 (-437))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-1182 *2)) (-4 *2 (-363)))))
+(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-818)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-640 *7)) (-5 *3 (-112)) (-4 *7 (-1059 *4 *5 *6))
+ (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-5 *1 (-973 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 *6)) (-5 *4 (-1169)) (-4 *6 (-430 *5))
+ (-4 *5 (-846)) (-5 *2 (-640 (-609 *6))) (-5 *1 (-572 *5 *6)))))
(((*1 *2 *1) (-12 (-5 *2 (-139)) (-5 *1 (-140))))
((*1 *2 *1) (-12 (-5 *2 (-187)) (-5 *1 (-183))))
((*1 *2 *1) (-12 (-5 *2 (-249)) (-5 *1 (-248)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
- (-5 *2 (-815 *3))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-842)) (-5 *1 (-1280 *3 *2)) (-4 *3 (-1045)))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-1207))) (-5 *1 (-524)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1045)) (-14 *3 (-640 (-1169)))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1045) (-846)))
+ (-14 *3 (-640 (-1169))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-112)))))
(((*1 *2 *1)
(-12 (-4 *1 (-253 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-846))
(-4 *5 (-789)) (-4 *2 (-266 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2))
- (-4 *4 (-373 *2)))))
-(((*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)) (-5 *2 (-112))
- (-5 *1 (-983 *3 *4 *5 *6)) (-4 *6 (-945 *3 *5 *4))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-939 (-225)) (-939 (-225)))) (-5 *1 (-263))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-329 *4)) (-4 *4 (-363))
+ (-5 *2 (-684 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-1257 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
+ (-5 *2 (-684 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
+ (-5 *2 (-1257 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172))
+ (-4 *5 (-1233 *4)) (-5 *2 (-684 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172))
+ (-4 *5 (-1233 *4)) (-5 *2 (-1257 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-409 *4 *5)) (-4 *4 (-172))
+ (-4 *5 (-1233 *4)) (-5 *2 (-684 *4))))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34)))
- (-4 *4 (-13 (-1093) (-34))))))
-(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1208)))))
+ (-12 (-4 *1 (-409 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3))
+ (-5 *2 (-1257 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-417 *4)) (-4 *4 (-172))
+ (-5 *2 (-684 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-1257 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 (-684 *5))) (-5 *3 (-684 *5)) (-4 *5 (-363))
+ (-5 *2 (-1257 *5)) (-5 *1 (-1079 *5)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225)))
+ (-5 *2 (-1031)) (-5 *1 (-743)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
- (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4))))
- ((*1 *2 *3 *3 *3)
- (-12 (-4 *3 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
- (-5 *2 (-640 *3)) (-5 *1 (-1121 *4 *3)) (-4 *4 (-1233 *3)))))
+ (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563)))))
+(((*1 *1) (-5 *1 (-437))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-112))
- (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
- (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2059 *4))))
- (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
-(((*1 *1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-263))))
- ((*1 *1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-263)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-767)) (-4 *5 (-555))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))))
+ (-12 (-5 *4 (-917)) (-5 *2 (-1165 *3)) (-5 *1 (-1182 *3))
+ (-4 *3 (-363)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7))))
+ (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-609 *6))) (-5 *4 (-1169)) (-5 *2 (-609 *6))
+ (-4 *6 (-430 *5)) (-4 *5 (-846)) (-5 *1 (-572 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-112)))))
(((*1 *2)
(-12 (-14 *4 *2) (-4 *5 (-1208)) (-5 *2 (-767))
(-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5))))
@@ -3170,129 +3011,103 @@
((*1 *2 *1)
(-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3))
(-4 *3 (-1233 *2)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789))
- (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-1257 *5))) (-5 *4 (-563)) (-5 *2 (-1257 *5))
- (-5 *1 (-1025 *5)) (-4 *5 (-363)) (-4 *5 (-368)) (-4 *5 (-1045)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-640 *6)) (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045))
- (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))
- (-4 *3 (-555)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846))
- (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-640 *4)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-386 *2)) (-4 *2 (-1093))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2))
- (-4 *2 (-430 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085 *2)) (-4 *2 (-430 *4)) (-4 *4 (-13 (-846) (-555)))
- (-5 *1 (-158 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-160))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1169)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1248 *4))
- (-4 *4 (-38 (-407 (-563))))
- (-5 *2 (-1 (-1149 *4) (-1149 *4) (-1149 *4))) (-5 *1 (-1250 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-316 *4)) (-4 *4 (-13 (-824) (-846) (-1045)))
- (-5 *2 (-1151)) (-5 *1 (-822 *4))))
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
+ (-5 *2 (-1257 (-684 *4)))))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-1257 (-684 *4))) (-5 *1 (-416 *3 *4))
+ (-4 *3 (-417 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-1257 (-684 *3)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-316 *5)) (-5 *4 (-112))
- (-4 *5 (-13 (-824) (-846) (-1045))) (-5 *2 (-1151))
- (-5 *1 (-822 *5))))
+ (-12 (-5 *3 (-640 (-1169))) (-4 *5 (-363))
+ (-5 *2 (-1257 (-684 (-407 (-948 *5))))) (-5 *1 (-1079 *5))
+ (-5 *4 (-684 (-407 (-948 *5))))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-818)) (-5 *4 (-316 *5))
- (-4 *5 (-13 (-824) (-846) (-1045))) (-5 *2 (-1262))
- (-5 *1 (-822 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-818)) (-5 *4 (-316 *6)) (-5 *5 (-112))
- (-4 *6 (-13 (-824) (-846) (-1045))) (-5 *2 (-1262))
- (-5 *1 (-822 *6))))
- ((*1 *2 *1) (-12 (-4 *1 (-824)) (-5 *2 (-1151))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-824)) (-5 *3 (-112)) (-5 *2 (-1151))))
- ((*1 *2 *3 *1) (-12 (-4 *1 (-824)) (-5 *3 (-818)) (-5 *2 (-1262))))
- ((*1 *2 *3 *1 *4)
- (-12 (-4 *1 (-824)) (-5 *3 (-818)) (-5 *4 (-112)) (-5 *2 (-1262)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *2 *1 *3 *3 *3 *2)
- (-12 (-5 *3 (-767)) (-5 *1 (-670 *2)) (-4 *2 (-1093)))))
-(((*1 *2 *1 *1)
- (|partial| -12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045))
- (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
+ (-12 (-5 *3 (-640 (-1169))) (-4 *5 (-363))
+ (-5 *2 (-1257 (-684 (-948 *5)))) (-5 *1 (-1079 *5))
+ (-5 *4 (-684 (-948 *5)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-684 *4))) (-4 *4 (-363))
+ (-5 *2 (-1257 (-684 *4))) (-5 *1 (-1079 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879))
+ (-5 *3 (-640 (-563)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879))
+ (-5 *3 (-640 (-563))))))
+(((*1 *2 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225)))
+ (-5 *2 (-1031)) (-5 *1 (-743)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *5 (-1034 (-48)))
+ (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-4 *5 (-430 *4))
+ (-5 *2 (-418 (-1165 (-48)))) (-5 *1 (-435 *4 *5 *3))
+ (-4 *3 (-1233 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-5 *1 (-1182 *2)) (-4 *2 (-363)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
+ (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-609 *5))) (-4 *4 (-846)) (-5 *2 (-609 *5))
+ (-5 *1 (-572 *4 *5)) (-4 *5 (-430 *4)))))
+(((*1 *1) (-5 *1 (-291))))
+(((*1 *2)
+ (-12 (-4 *4 (-363)) (-5 *2 (-917)) (-5 *1 (-328 *3 *4))
+ (-4 *3 (-329 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-363)) (-5 *2 (-829 (-917))) (-5 *1 (-328 *3 *4))
+ (-4 *3 (-329 *4))))
+ ((*1 *2) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-917))))
+ ((*1 *2)
+ (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-829 (-917))))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-175))) (-5 *1 (-1078)))))
+(((*1 *2 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225)))
+ (-5 *2 (-1031)) (-5 *1 (-743)))))
(((*1 *1 *1) (-5 *1 (-858)))
((*1 *2 *1)
(-12 (-4 *1 (-1096 *2 *3 *4 *5 *6)) (-4 *3 (-1093)) (-4 *4 (-1093))
(-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093))))
((*1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-1150))))
((*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-1169)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1093)) (-5 *1 (-960 *2 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *3 (-640 (-563)))
+ (-5 *1 (-879)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112))
- (-5 *1 (-32 *4 *5)) (-4 *5 (-430 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112))
- (-5 *1 (-158 *4 *5)) (-4 *5 (-430 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112))
- (-5 *1 (-276 *4 *5)) (-4 *5 (-13 (-430 *4) (-998)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-301 *4)) (-4 *4 (-302))))
- ((*1 *2 *3) (-12 (-4 *1 (-302)) (-5 *3 (-114)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *5 (-846)) (-5 *2 (-112))
- (-5 *1 (-429 *4 *5)) (-4 *4 (-430 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112))
- (-5 *1 (-431 *4 *5)) (-4 *5 (-430 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112))
- (-5 *1 (-627 *4 *5)) (-4 *5 (-13 (-430 *4) (-998) (-1193))))))
+ (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-4 *5 (-430 *4))
+ (-5 *2
+ (-3 (|:| |overq| (-1165 (-407 (-563))))
+ (|:| |overan| (-1165 (-48))) (|:| -4245 (-112))))
+ (-5 *1 (-435 *4 *5 *3)) (-4 *3 (-1233 *5)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1105)) (-4 *3 (-846)) (-5 *2 (-640 *1))
- (-4 *1 (-430 *3))))
+ (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-5 *2 (-640 (-640 *3)))))
((*1 *2 *1)
- (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3))
- (-4 *3 (-1093))))
+ (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-640 (-640 *5)))))
((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *2 (-640 *1)) (-4 *1 (-945 *3 *4 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045))
- (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-640 *3))
- (-5 *1 (-946 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-363)
- (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $))
- (-15 -2154 (*7 $))))))))
+ (-12 (-5 *2 (-640 (-640 *3))) (-5 *1 (-1180 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-555) (-846)))
- (-4 *2 (-13 (-430 (-169 *4)) (-998) (-1193)))
- (-5 *1 (-597 *4 *3 *2)) (-4 *3 (-13 (-430 *4) (-998) (-1193))))))
+ (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7))))
+ (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-640 (-609 *5))) (-5 *3 (-1169)) (-4 *5 (-430 *4))
+ (-4 *4 (-846)) (-5 *1 (-572 *4 *5)))))
(((*1 *2 *3 *4)
- (-12 (-4 *7 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-555))
- (-4 *8 (-945 *7 *5 *6))
- (-5 *2 (-2 (|:| -1654 (-767)) (|:| -2311 *3) (|:| |radicand| *3)))
- (-5 *1 (-949 *5 *6 *7 *8 *3)) (-5 *4 (-767))
- (-4 *3
- (-13 (-363)
- (-10 -8 (-15 -1693 ($ *8)) (-15 -2143 (*8 $)) (-15 -2154 (*8 $))))))))
-(((*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1151)) (-5 *1 (-782)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))))
+ (-12 (-4 *4 (-363)) (-5 *2 (-640 (-1149 *4))) (-5 *1 (-285 *4 *5))
+ (-5 *3 (-1149 *4)) (-4 *5 (-1248 *4)))))
(((*1 *1 *2)
(-12 (-5 *2 (-917)) (-5 *1 (-152 *3 *4 *5)) (-14 *3 *2)
(-4 *4 (-363)) (-14 *5 (-989 *3 *4)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998)))
- (-5 *1 (-176 *3)))))
+(((*1 *2)
+ (-12 (-4 *4 (-363)) (-5 *2 (-767)) (-5 *1 (-328 *3 *4))
+ (-4 *3 (-329 *4))))
+ ((*1 *2) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-767)))))
(((*1 *2 *3 *4 *2)
(-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-643 *5)) (-4 *5 (-1045))
(-5 *1 (-53 *5 *2 *3)) (-4 *3 (-848 *5))))
@@ -3302,63 +3117,54 @@
((*1 *2 *3 *2 *2 *4 *5)
(-12 (-5 *4 (-99 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1045))
(-5 *1 (-849 *2 *3)) (-4 *3 (-848 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-555))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-555)))))
-(((*1 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-368)) (-4 *2 (-363))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-917)) (-5 *2 (-1257 *4)) (-5 *1 (-528 *4))
- (-4 *4 (-349)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-109)) (-5 *1 (-175))))
+ ((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-109)) (-5 *1 (-1078)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879))
+ (-5 *3 (-640 (-563))))))
+(((*1 *2 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-743)))))
(((*1 *2 *3)
(|partial| -12 (-4 *4 (-13 (-555) (-846) (-1034 (-563))))
(-4 *5 (-430 *4)) (-5 *2 (-418 (-1165 (-407 (-563)))))
(-5 *1 (-435 *4 *5 *3)) (-4 *3 (-1233 *5)))))
(((*1 *2 *1) (-12 (-5 *2 (-183)) (-5 *1 (-280)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-5 *1 (-1180 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
- (-5 *2 (-1262)) (-5 *1 (-1172))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1169))
- (-5 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-5 *2 (-1262))
- (-5 *1 (-1172))))
- ((*1 *2 *3 *4 *1)
- (-12 (-5 *3 (-1169))
- (-5 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-5 *2 (-1262))
- (-5 *1 (-1172)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-517)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
- (-5 *2
- (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563))
- (|:| |success| (-112))))
- (-5 *1 (-785)) (-5 *5 (-563)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225)))
- (-5 *2 (-1031)) (-5 *1 (-743)))))
+ (-12 (-5 *3 (-640 (-316 (-225)))) (-5 *2 (-112)) (-5 *1 (-267))))
+ ((*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-112)) (-5 *1 (-267))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
+ (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1169))
+ (-4 *5 (-13 (-555) (-1034 (-563)) (-147)))
+ (-5 *2
+ (-2 (|:| -2840 (-407 (-948 *5))) (|:| |coeff| (-407 (-948 *5)))))
+ (-5 *1 (-569 *5)) (-5 *3 (-407 (-948 *5))))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-363)) (-5 *1 (-285 *3 *2)) (-4 *2 (-1248 *3)))))
(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-241))))
((*1 *2 *3)
(-12 (-5 *3 (-640 (-1151))) (-5 *2 (-1262)) (-5 *1 (-241)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-748)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
+ (-12 (-4 *3 (-349)) (-4 *4 (-329 *3)) (-4 *5 (-1233 *4))
+ (-5 *1 (-773 *3 *4 *5 *2 *6)) (-4 *2 (-1233 *5)) (-14 *6 (-917))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-767)) (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-4 *3 (-368))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1276 *2)) (-4 *2 (-363)) (-4 *2 (-368)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1078)))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-743)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)))))
(((*1 *1 *1 *1)
(-12 (-5 *1 (-640 *2)) (-4 *2 (-1093)) (-4 *2 (-1208)))))
-(((*1 *2)
- (-12 (-4 *1 (-349))
- (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-294 *3))) (-5 *1 (-294 *3)) (-4 *3 (-555))
- (-4 *3 (-1208)))))
(((*1 *1 *2 *2 *3)
(-12 (-5 *3 (-640 (-1169))) (-4 *4 (-1093))
(-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4))))
@@ -3370,476 +3176,336 @@
(-5 *1 (-1069 *3 *4 *2))
(-4 *2 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-417 *4)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-157)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1257 *5)) (-4 *5 (-788)) (-5 *2 (-112))
- (-5 *1 (-841 *4 *5)) (-14 *4 (-767)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
- (-4 *3 (-1059 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-640 *4))
- (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4))))))
- (-5 *1 (-1063 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
+ (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-4 *5 (-430 *4))
+ (-5 *2 (-418 *3)) (-5 *1 (-435 *4 *5 *3)) (-4 *3 (-1233 *5)))))
+(((*1 *2 *3 *4 *5 *4 *4 *4)
+ (-12 (-4 *6 (-846)) (-5 *3 (-640 *6)) (-5 *5 (-640 *3))
(-5 *2
- (-2 (|:| |done| (-640 *4))
- (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4))))))
- (-5 *1 (-1138 *5 *6 *7 *3 *4)) (-4 *4 (-1102 *5 *6 *7 *3)))))
-(((*1 *2 *3 *3 *3 *3)
- (-12 (-5 *3 (-563)) (-5 *2 (-112)) (-5 *1 (-480)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-891))
- (-5 *3
- (-2 (|:| |pde| (-640 (-316 (-225))))
- (|:| |constraints|
- (-640
- (-2 (|:| |start| (-225)) (|:| |finish| (-225))
- (|:| |grid| (-767)) (|:| |boundaryType| (-563))
- (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225))))))
- (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151))
- (|:| |tol| (-225))))
- (-5 *2 (-1031)))))
+ (-2 (|:| |f1| *3) (|:| |f2| (-640 *5)) (|:| |f3| *5)
+ (|:| |f4| (-640 *5))))
+ (-5 *1 (-1179 *6)) (-5 *4 (-640 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4))
- (-4 *4 (-349)))))
+ (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7))))
+ (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-640 (-407 (-948 *6))))
+ (-5 *3 (-407 (-948 *6)))
+ (-4 *6 (-13 (-555) (-1034 (-563)) (-147)))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-569 *6)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-363)) (-5 *1 (-285 *3 *2)) (-4 *2 (-1248 *3)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-767)) (-4 *4 (-13 (-1045) (-713 (-407 (-563)))))
+ (-4 *5 (-846)) (-5 *1 (-1273 *4 *5 *2)) (-4 *2 (-1278 *5 *4)))))
(((*1 *2 *3) (-12 (-5 *2 (-563)) (-5 *1 (-568 *3)) (-4 *3 (-1034 *2))))
((*1 *2 *1)
(-12 (-4 *1 (-1096 *3 *4 *2 *5 *6)) (-4 *3 (-1093)) (-4 *4 (-1093))
(-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)))))
-(((*1 *1 *1) (-4 *1 (-1137))))
+(((*1 *1) (-5 *1 (-1078))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-263))) (-5 *1 (-1258))))
((*1 *2 *1) (-12 (-5 *2 (-640 (-263))) (-5 *1 (-1258))))
((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-263))) (-5 *1 (-1259))))
((*1 *2 *1) (-12 (-5 *2 (-640 (-263))) (-5 *1 (-1259)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085 (-839 *3))) (-4 *3 (-13 (-1193) (-955) (-29 *5)))
- (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *2
- (-3 (|:| |f1| (-839 *3)) (|:| |f2| (-640 (-839 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-219 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1085 (-839 *3))) (-5 *5 (-1151))
- (-4 *3 (-13 (-1193) (-955) (-29 *6)))
- (-4 *6 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *2
- (-3 (|:| |f1| (-839 *3)) (|:| |f2| (-640 (-839 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-219 *6 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1085 (-839 (-316 *5))))
- (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *2
- (-3 (|:| |f1| (-839 (-316 *5))) (|:| |f2| (-640 (-839 (-316 *5))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-220 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-407 (-948 *6))) (-5 *4 (-1085 (-839 (-316 *6))))
- (-5 *5 (-1151))
- (-4 *6 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *2
- (-3 (|:| |f1| (-839 (-316 *6))) (|:| |f2| (-640 (-839 (-316 *6))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-220 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1085 (-839 (-407 (-948 *5))))) (-5 *3 (-407 (-948 *5)))
- (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *2
- (-3 (|:| |f1| (-839 (-316 *5))) (|:| |f2| (-640 (-839 (-316 *5))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-220 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1085 (-839 (-407 (-948 *6))))) (-5 *5 (-1151))
- (-5 *3 (-407 (-948 *6)))
- (-4 *6 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *2
- (-3 (|:| |f1| (-839 (-316 *6))) (|:| |f2| (-640 (-839 (-316 *6))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-220 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169))
- (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *2 (-3 *3 (-640 *3))) (-5 *1 (-428 *5 *3))
- (-4 *3 (-13 (-1193) (-955) (-29 *5)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-474 *3 *4 *5))
- (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3)))
- ((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379))))
- (-5 *5 (-379)) (-5 *6 (-1057)) (-5 *2 (-1031)) (-5 *1 (-564))))
- ((*1 *2 *3) (-12 (-5 *3 (-765)) (-5 *2 (-1031)) (-5 *1 (-564))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379))))
- (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379))))
- (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379))))
- (-5 *2 (-1031)) (-5 *1 (-564))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379)))))
- (-5 *2 (-1031)) (-5 *1 (-564))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379)))))
- (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379)))))
- (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564))))
- ((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379)))))
- (-5 *5 (-379)) (-5 *6 (-1057)) (-5 *2 (-1031)) (-5 *1 (-564))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-316 (-379))) (-5 *4 (-1085 (-839 (-379))))
- (-5 *5 (-1151)) (-5 *2 (-1031)) (-5 *1 (-564))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-316 (-379))) (-5 *4 (-1085 (-839 (-379))))
- (-5 *5 (-1169)) (-5 *2 (-1031)) (-5 *1 (-564))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-563)))) (-4 *5 (-1233 *4))
- (-5 *2 (-584 (-407 *5))) (-5 *1 (-567 *4 *5)) (-5 *3 (-407 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-147))
- (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563))))
- (-5 *2 (-3 (-316 *5) (-640 (-316 *5)))) (-5 *1 (-587 *5))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-736 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-846))
- (-4 *3 (-38 (-407 (-563))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1169)) (-5 *1 (-948 *3)) (-4 *3 (-38 (-407 (-563))))
- (-4 *3 (-1045))))
- ((*1 *1 *1 *2 *3)
- (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-4 *2 (-846))
- (-5 *1 (-1119 *3 *2 *4)) (-4 *4 (-945 *3 (-531 *2) *2))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045))
- (-5 *1 (-1153 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1160 *3 *4 *5))
- (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1166 *3 *4 *5))
- (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1167 *3 *4 *5))
- (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3)))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *1 (-1202 *3)) (-4 *3 (-38 (-407 (-563))))
- (-4 *3 (-1045))))
- ((*1 *1 *1 *2)
- (-4032
- (-12 (-5 *2 (-1169)) (-4 *1 (-1217 *3)) (-4 *3 (-1045))
- (-12 (-4 *3 (-29 (-563))) (-4 *3 (-955)) (-4 *3 (-1193))
- (-4 *3 (-38 (-407 (-563))))))
- (-12 (-5 *2 (-1169)) (-4 *1 (-1217 *3)) (-4 *3 (-1045))
- (-12 (|has| *3 (-15 -2606 ((-640 *2) *3)))
- (|has| *3 (-15 -3698 (*3 *3 *2))) (-4 *3 (-38 (-407 (-563))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1217 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1221 *3 *4 *5))
- (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563))))))
- ((*1 *1 *1 *2)
- (-4032
- (-12 (-5 *2 (-1169)) (-4 *1 (-1238 *3)) (-4 *3 (-1045))
- (-12 (-4 *3 (-29 (-563))) (-4 *3 (-955)) (-4 *3 (-1193))
- (-4 *3 (-38 (-407 (-563))))))
- (-12 (-5 *2 (-1169)) (-4 *1 (-1238 *3)) (-4 *3 (-1045))
- (-12 (|has| *3 (-15 -2606 ((-640 *2) *3)))
- (|has| *3 (-15 -3698 (*3 *3 *2))) (-4 *3 (-38 (-407 (-563))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1238 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1242 *3 *4 *5))
- (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-4032
- (-12 (-5 *2 (-1169)) (-4 *1 (-1248 *3)) (-4 *3 (-1045))
- (-12 (-4 *3 (-29 (-563))) (-4 *3 (-955)) (-4 *3 (-1193))
- (-4 *3 (-38 (-407 (-563))))))
- (-12 (-5 *2 (-1169)) (-4 *1 (-1248 *3)) (-4 *3 (-1045))
- (-12 (|has| *3 (-15 -2606 ((-640 *2) *3)))
- (|has| *3 (-15 -3698 (*3 *3 *2))) (-4 *3 (-38 (-407 (-563))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1248 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1249 *3 *4 *5))
- (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
-(((*1 *1) (-5 *1 (-141))) ((*1 *1 *1) (-5 *1 (-144)))
- ((*1 *1 *1) (-4 *1 (-1137))))
+ (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-743)))))
(((*1 *1 *1 *1)
(-12 (-5 *1 (-640 *2)) (-4 *2 (-1093)) (-4 *2 (-1208)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))))
(((*1 *2 *3 *2)
(-12 (-5 *2 (-1151)) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-263))))
((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258))))
((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-939 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-640 (-939 *3))) (-4 *3 (-1045)) (-4 *1 (-1127 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-640 (-640 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-640 (-939 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))))
-(((*1 *1 *1 *2 *1)
- (-12 (-5 *2 (-563)) (-5 *1 (-1149 *3)) (-4 *3 (-1208))))
- ((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *3 *4 *3 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-169 (-225)))) (-5 *2 (-1031))
- (-5 *1 (-752)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-751)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-327 *3)) (-4 *3 (-1208))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-363)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3))
+ (-5 *1 (-521 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-555)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4))
+ (-4 *7 (-988 *4)) (-4 *2 (-682 *7 *8 *9))
+ (-5 *1 (-522 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-682 *4 *5 *6))
+ (-4 *8 (-373 *7)) (-4 *9 (-373 *7))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045))
+ (-4 *3 (-373 *2)) (-4 *4 (-373 *2)) (-4 *2 (-363))))
((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-516 *3 *4)) (-4 *3 (-1208))
- (-14 *4 (-563)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262))
- (-5 *1 (-1066 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262))
- (-5 *1 (-1101 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *6)) (-5 *4 (-640 (-1149 *7))) (-4 *6 (-846))
- (-4 *7 (-945 *5 (-531 *6) *6)) (-4 *5 (-1045))
- (-5 *2 (-1 (-1149 *7) *7)) (-5 *1 (-1119 *5 *6 *7)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-917)) (-4 *5 (-555)) (-5 *2 (-684 *5))
- (-5 *1 (-952 *5 *3)) (-4 *3 (-651 *5)))))
+ (|partial| -12 (-4 *3 (-363)) (-4 *3 (-172)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2))
+ (-4 *2 (-682 *3 *4 *5))))
+ ((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-684 *2)) (-4 *2 (-363)) (-4 *2 (-1045))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-1116 *2 *3 *4 *5)) (-4 *3 (-1045))
+ (-4 *4 (-238 *2 *3)) (-4 *5 (-238 *2 *3)) (-4 *3 (-363))))
+ ((*1 *2 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-1179 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
+ (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-407 (-948 *4))) (-5 *3 (-1169))
+ (-4 *4 (-13 (-555) (-1034 (-563)) (-147))) (-5 *1 (-569 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1224 (-563))) (-4 *1 (-282 *3)) (-4 *3 (-1208))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-282 *3)) (-4 *3 (-1208)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5))
+ (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *1 (-1270 *3 *4 *5 *6))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-640 *8)) (-5 *3 (-1 (-112) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555))
+ (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1270 *5 *6 *7 *8)))))
+(((*1 *1) (-5 *1 (-1078))))
(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-180))))
((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-311))))
((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-966))))
((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-990))))
((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1032))))
((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1067)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1185 *4 *5))
- (-4 *4 (-1093)) (-4 *5 (-1093)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
- (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *1 (-873 *2)) (-4 *2 (-1208))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *1 (-875 *2)) (-4 *2 (-1208))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *1 (-878 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-743)))))
(((*1 *1 *1 *1)
(-12 (-5 *1 (-640 *2)) (-4 *2 (-1093)) (-4 *2 (-1208)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-767)) (-4 *2 (-555)) (-5 *1 (-965 *2 *4))
- (-4 *4 (-1233 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-330)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-640 (-481 *5 *6))) (-5 *4 (-860 *5))
- (-14 *5 (-640 (-1169))) (-5 *2 (-481 *5 *6)) (-5 *1 (-628 *5 *6))
- (-4 *6 (-452))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-481 *5 *6))) (-5 *4 (-860 *5))
- (-14 *5 (-640 (-1169))) (-5 *2 (-481 *5 *6)) (-5 *1 (-628 *5 *6))
- (-4 *6 (-452)))))
-(((*1 *2 *1 *1 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1)))
- (-4 *1 (-307))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4333 *1)))
- (-4 *1 (-307)))))
-(((*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7)
- (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225)))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))))
- (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) (-5 *3 (-225))
- (-5 *2 (-1031)) (-5 *1 (-745)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-948 *4)) (-4 *4 (-13 (-307) (-147)))
- (-4 *2 (-945 *4 *6 *5)) (-5 *1 (-920 *4 *5 *6 *2))
- (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)))))
+ (-12 (-4 *4 (-846)) (-5 *2 (-640 (-640 *4))) (-5 *1 (-1179 *4))
+ (-5 *3 (-640 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7))))
+ (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1169))
+ (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *2 (-584 *3)) (-5 *1 (-426 *5 *3))
+ (-4 *3 (-13 (-1193) (-29 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-555) (-1034 (-563)) (-147)))
+ (-5 *2 (-584 (-407 (-948 *5)))) (-5 *1 (-569 *5))
+ (-5 *3 (-407 (-948 *5))))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4408)) (-4 *1 (-235 *3))
+ (-4 *3 (-1093))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-282 *3)) (-4 *3 (-1208)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5))
+ (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *1 (-1270 *3 *4 *5 *6))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-640 *8)) (-5 *3 (-1 (-112) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555))
+ (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1270 *5 *6 *7 *8)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-132)) (-5 *1 (-1077 *2))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-563) *2 *2)) (-4 *2 (-132)) (-5 *1 (-1077 *2)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1096 *3 *2 *4 *5 *6)) (-4 *3 (-1093)) (-4 *4 (-1093))
(-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)))))
(((*1 *1 *1)
(-12 (-4 *1 (-1096 *2 *3 *4 *5 *6)) (-4 *2 (-1093)) (-4 *3 (-1093))
(-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)))))
-(((*1 *2 *3)
- (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-563))) (-5 *1 (-1043)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -3548 *3)))
- (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1169)) (-5 *2 (-536)) (-5 *1 (-535 *4))
- (-4 *4 (-1208)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-960 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))))
+(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-878 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *6)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1031))
+ (-5 *1 (-742)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
+ (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-846)) (-5 *1 (-1179 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-1 (-112) *8))) (-4 *8 (-1059 *5 *6 *7))
+ (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-5 *2 (-2 (|:| |goodPols| (-640 *8)) (|:| |badPols| (-640 *8))))
+ (-5 *1 (-973 *5 *6 *7 *8)) (-5 *4 (-640 *8)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7))))
- (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259))))
- ((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -3646 *6) (|:| |coeff| *6)) "failed") *6))
- (-4 *6 (-363)) (-4 *7 (-1233 *6))
- (-5 *2
- (-3 (-2 (|:| |answer| (-407 *7)) (|:| |a0| *6))
- (-2 (|:| -3646 (-407 *7)) (|:| |coeff| (-407 *7))) "failed"))
- (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))))
-(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))))
+ (|partial| -12 (-5 *2 (-563)) (-5 *1 (-568 *3)) (-4 *3 (-1034 *2)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1097)) (-5 *1 (-280)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 (-1270 *4 *5 *6 *7)))
+ (-5 *1 (-1270 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-640 *9)) (-5 *4 (-1 (-112) *9 *9))
+ (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1059 *6 *7 *8)) (-4 *6 (-555))
+ (-4 *7 (-789)) (-4 *8 (-846)) (-5 *2 (-640 (-1270 *6 *7 *8 *9)))
+ (-5 *1 (-1270 *6 *7 *8 *9)))))
+(((*1 *1) (-5 *1 (-1075))))
(((*1 *1 *1)
(-12 (-4 *1 (-1096 *2 *3 *4 *5 *6)) (-4 *2 (-1093)) (-4 *3 (-1093))
(-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-611 (-888 *3))) (-4 *3 (-882 *3))
- (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-611 (-888 *3))) (-4 *2 (-882 *3))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-357 *3)) (-4 *3 (-349)))))
-(((*1 *1 *2) (-12 (-5 *2 (-316 (-169 (-379)))) (-5 *1 (-330))))
- ((*1 *1 *2) (-12 (-5 *2 (-316 (-563))) (-5 *1 (-330))))
- ((*1 *1 *2) (-12 (-5 *2 (-316 (-379))) (-5 *1 (-330))))
- ((*1 *1 *2) (-12 (-5 *2 (-316 (-689))) (-5 *1 (-330))))
- ((*1 *1 *2) (-12 (-5 *2 (-316 (-696))) (-5 *1 (-330))))
- ((*1 *1 *2) (-12 (-5 *2 (-316 (-694))) (-5 *1 (-330))))
- ((*1 *1) (-5 *1 (-330))))
-(((*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-667 *3)) (-4 *3 (-846)) (-4 *1 (-374 *3 *4))
- (-4 *4 (-172)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1151)) (-5 *2 (-640 (-1174))) (-5 *1 (-876)))))
+(((*1 *2 *3 *3 *4 *5 *3 *6)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1031))
+ (-5 *1 (-742)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-846)) (-5 *2 (-1180 (-640 *4))) (-5 *1 (-1179 *4))
+ (-5 *3 (-640 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-407 (-563))) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-555)) (-4 *8 (-945 *7 *5 *6))
- (-5 *2 (-2 (|:| -1654 (-767)) (|:| -2311 *9) (|:| |radicand| *9)))
- (-5 *1 (-949 *5 *6 *7 *8 *9)) (-5 *4 (-767))
- (-4 *9
- (-13 (-363)
- (-10 -8 (-15 -1693 ($ *8)) (-15 -2143 (*8 $)) (-15 -2154 (*8 $))))))))
+ (-12 (-5 *3 (-640 (-1 (-112) *8))) (-4 *8 (-1059 *5 *6 *7))
+ (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-5 *2 (-2 (|:| |goodPols| (-640 *8)) (|:| |badPols| (-640 *8))))
+ (-5 *1 (-973 *5 *6 *7 *8)) (-5 *4 (-640 *8)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 *5)) (-4 *5 (-363))
- (-4 *5 (-555)) (-5 *2 (-1257 *5)) (-5 *1 (-635 *5 *4))))
+ (|partial| -12 (-5 *4 (-640 (-407 *6))) (-5 *3 (-407 *6))
+ (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-567 *5 *6)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-280)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-862 *4 *5 *6 *7))
+ (-4 *4 (-1045)) (-14 *5 (-640 (-1169))) (-14 *6 (-640 *3))
+ (-14 *7 *3)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-767)) (-4 *4 (-1045)) (-4 *5 (-846)) (-4 *6 (-789))
+ (-14 *8 (-640 *5)) (-5 *2 (-1262))
+ (-5 *1 (-1269 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-945 *4 *6 *5))
+ (-14 *9 (-640 *3)) (-14 *10 *3))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789))
+ (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-640 *3))
+ (-5 *1 (-589 *5 *6 *7 *8 *3)) (-4 *3 (-1102 *5 *6 *7 *8))))
((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 *5))
- (-2176 (-4 *5 (-363))) (-4 *5 (-555)) (-5 *2 (-1257 (-407 *5)))
- (-5 *1 (-635 *5 *4)))))
-(((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-917)) (-5 *1 (-1094 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147)))
+ (-5 *2
+ (-640 (-2 (|:| -4224 (-1165 *5)) (|:| -3759 (-640 (-948 *5))))))
+ (-5 *1 (-1071 *5 *6)) (-5 *3 (-640 (-948 *5)))
+ (-14 *6 (-640 (-1169)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-307) (-147)))
+ (-5 *2
+ (-640 (-2 (|:| -4224 (-1165 *4)) (|:| -3759 (-640 (-948 *4))))))
+ (-5 *1 (-1071 *4 *5)) (-5 *3 (-640 (-948 *4)))
+ (-14 *5 (-640 (-1169)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147)))
+ (-5 *2
+ (-640 (-2 (|:| -4224 (-1165 *5)) (|:| -3759 (-640 (-948 *5))))))
+ (-5 *1 (-1071 *5 *6)) (-5 *3 (-640 (-948 *5)))
+ (-14 *6 (-640 (-1169))))))
(((*1 *1 *2) (-12 (-4 *1 (-661 *2)) (-4 *2 (-1208))))
((*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-1169)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-5 *2 (-563))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))))
-(((*1 *2)
- (-12 (-4 *3 (-1045)) (-5 *2 (-954 (-708 *3 *4))) (-5 *1 (-708 *3 *4))
- (-4 *4 (-1233 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))))
+(((*1 *2 *3 *3 *3 *3 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563))
+ (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3195))))
+ (-5 *2 (-1031)) (-5 *1 (-742)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-363) (-1193) (-998))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-640 (-901 *3))) (-4 *3 (-1093)) (-5 *1 (-900 *3)))))
-(((*1 *2 *1) (-12 (-5 *1 (-584 *2)) (-4 *2 (-363)))))
+ (-12 (-4 *4 (-846)) (-5 *2 (-640 (-640 (-640 *4))))
+ (-5 *1 (-1179 *4)) (-5 *3 (-640 (-640 *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112))
- (-5 *2
- (-2 (|:| |contp| (-563))
- (|:| -2760 (-640 (-2 (|:| |irr| *3) (|:| -1650 (-563)))))))
- (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112))
- (-5 *2
- (-2 (|:| |contp| (-563))
- (|:| -2760 (-640 (-2 (|:| |irr| *3) (|:| -1650 (-563)))))))
- (-5 *1 (-1222 *3)) (-4 *3 (-1233 (-563))))))
-(((*1 *1 *2) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-640 *1)) (-4 *1 (-307)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6)
- (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225)))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-70 APROD)))) (-5 *4 (-225))
- (-5 *2 (-1031)) (-5 *1 (-752)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-923)))))
-(((*1 *2 *2 *3)
- (|partial| -12
- (-5 *3 (-640 (-2 (|:| |func| *2) (|:| |pole| (-112)))))
- (-4 *2 (-13 (-430 *4) (-998))) (-4 *4 (-13 (-846) (-555)))
- (-5 *1 (-276 *4 *2)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-640 (-280))) (-5 *1 (-280))))
- ((*1 *2 *1) (-12 (-5 *2 (-640 (-1174))) (-5 *1 (-1174)))))
+ (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555))
+ (-4 *6 (-789)) (-4 *7 (-846))
+ (-5 *2 (-2 (|:| |goodPols| (-640 *8)) (|:| |badPols| (-640 *8))))
+ (-5 *1 (-973 *5 *6 *7 *8)) (-5 *4 (-640 *8)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))))
+ (|partial| -12 (-4 *4 (-13 (-363) (-147) (-1034 (-563))))
+ (-4 *5 (-1233 *4))
+ (-5 *2 (-2 (|:| -2840 (-407 *5)) (|:| |coeff| (-407 *5))))
+ (-5 *1 (-567 *4 *5)) (-5 *3 (-407 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-280)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1267)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1093))
+ (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3))))
+ (-5 *2 (-640 (-1169))) (-5 *1 (-1069 *3 *4 *5))
+ (-4 *5 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))))))
+(((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-112))
+ (-5 *2 (-1031)) (-5 *1 (-741)))))
+(((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))))
+(((*1 *2)
+ (-12 (-4 *3 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-1262))
+ (-5 *1 (-433 *3 *4)) (-4 *4 (-430 *3)))))
(((*1 *2) (-12 (-5 *2 (-839 (-563))) (-5 *1 (-534))))
((*1 *1) (-12 (-5 *1 (-839 *2)) (-4 *2 (-1093)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
- (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-557 *2)) (-4 *2 (-545)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-536)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *3 (-1212)) (-4 *5 (-1233 *3)) (-4 *6 (-1233 (-407 *5)))
- (-5 *2 (-112)) (-5 *1 (-341 *4 *3 *5 *6)) (-4 *4 (-342 *3 *5 *6))))
- ((*1 *2 *3 *3)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1180 (-640 *4))) (-4 *4 (-846))
+ (-5 *2 (-640 (-640 *4))) (-5 *1 (-1179 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
+ (-5 *1 (-973 *4 *5 *6 *7)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-407 *4)) (-4 *4 (-1233 *3))
+ (-4 *3 (-13 (-363) (-147) (-1034 (-563)))) (-5 *1 (-567 *3 *4)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-407 (-563)))
+ (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-277 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))))
(((*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-52)))))
-(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))))
-(((*1 *1 *1) (-12 (-5 *1 (-605 *2)) (-4 *2 (-1093))))
- ((*1 *1 *1) (-5 *1 (-629))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-1045)) (-5 *1 (-444 *3 *2)) (-4 *2 (-1233 *3)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))))
-(((*1 *2 *2 *2)
- (-12
- (-5 *2
- (-2 (|:| -4315 (-684 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-684 *3))))
- (-4 *3 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $)))))
- (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1267)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4))))
+ (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-112))
+ (-5 *2 (-1031)) (-5 *1 (-741)))))
+(((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-407 (-563)))
+ (-5 *1 (-433 *4 *3)) (-4 *3 (-430 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-609 *3)) (-4 *3 (-430 *5))
+ (-4 *5 (-13 (-846) (-555) (-1034 (-563))))
+ (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-433 *5 *3)))))
(((*1 *2) (-12 (-5 *2 (-839 (-563))) (-5 *1 (-534))))
((*1 *1) (-12 (-5 *1 (-839 *2)) (-4 *2 (-1093)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-818)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-2 (|:| |totdeg| (-767)) (|:| -1574 *4))) (-5 *5 (-767))
- (-4 *4 (-945 *6 *7 *8)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
- (-5 *2
- (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-5 *1 (-449 *6 *7 *8 *4)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-684 (-563))) (-5 *1 (-1103)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-363)) (-4 *3 (-1045))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4333 *1)))
- (-4 *1 (-848 *3)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1103)) (-5 *3 (-563)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-640 (-640 *4)))) (-5 *2 (-640 (-640 *4)))
+ (-5 *1 (-1179 *4)) (-4 *4 (-846)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 (-640 *8))) (-5 *3 (-640 *8))
+ (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789))
+ (-4 *7 (-846)) (-5 *2 (-112)) (-5 *1 (-973 *5 *6 *7 *8)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1169)) (-4 *5 (-611 (-888 (-563))))
+ (-4 *5 (-882 (-563)))
+ (-4 *5 (-13 (-846) (-1034 (-563)) (-452) (-636 (-563))))
+ (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
+ (-5 *1 (-566 *5 *3)) (-4 *3 (-626))
+ (-4 *3 (-13 (-27) (-1193) (-430 *5)))))
+ ((*1 *2 *2 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-1169)) (-5 *4 (-839 *2)) (-4 *2 (-1132))
+ (-4 *2 (-13 (-27) (-1193) (-430 *5)))
+ (-4 *5 (-611 (-888 (-563)))) (-4 *5 (-882 (-563)))
+ (-4 *5 (-13 (-846) (-1034 (-563)) (-452) (-636 (-563))))
+ (-5 *1 (-566 *5 *2)))))
(((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-767)) (-4 *1 (-736 *4 *5)) (-4 *4 (-1045))
(-4 *5 (-846)) (-5 *2 (-948 *4))))
@@ -3852,9 +3518,63 @@
((*1 *2 *1 *3)
(-12 (-5 *3 (-767)) (-4 *1 (-1248 *4)) (-4 *4 (-1045))
(-5 *2 (-948 *4)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-609 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4)))
+ (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-277 *4 *2)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))))
+ (-12 (-4 *3 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $)))))
+ (-4 *4 (-1233 *3))
+ (-5 *2
+ (-2 (|:| -4013 (-684 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-684 *3))))
+ (-5 *1 (-350 *3 *4 *5)) (-4 *5 (-409 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-563)) (-4 *4 (-1233 *3))
+ (-5 *2
+ (-2 (|:| -4013 (-684 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-684 *3))))
+ (-5 *1 (-764 *4 *5)) (-4 *5 (-409 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-349)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 *3))
+ (-5 *2
+ (-2 (|:| -4013 (-684 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-684 *3))))
+ (-5 *1 (-981 *4 *3 *5 *6)) (-4 *6 (-720 *3 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-349)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 *3))
+ (-5 *2
+ (-2 (|:| -4013 (-684 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-684 *3))))
+ (-5 *1 (-1266 *4 *3 *5 *6)) (-4 *6 (-409 *3 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4))
+ (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-917)) (-4 *1 (-740 *3)) (-4 *3 (-172)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-174 (-407 (-563)))) (-5 *1 (-117 *3)) (-14 *3 (-563))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *3 (-1149 *2)) (-4 *2 (-307)) (-5 *1 (-174 *2))))
+ ((*1 *1 *2) (-12 (-5 *2 (-407 *3)) (-4 *3 (-307)) (-5 *1 (-174 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-174 (-563))) (-5 *1 (-761 *3)) (-4 *3 (-404))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-174 (-407 (-563)))) (-5 *1 (-867 *3)) (-14 *3 (-563))))
+ ((*1 *2 *1)
+ (-12 (-14 *3 (-563)) (-5 *2 (-174 (-407 (-563))))
+ (-5 *1 (-868 *3 *4)) (-4 *4 (-865 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
+ (-4 *2 (-430 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-640 (-640 (-640 *4)))) (-5 *2 (-640 (-640 *4)))
+ (-4 *4 (-846)) (-5 *1 (-1179 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
+ (-5 *1 (-973 *4 *5 *6 *7)))))
(((*1 *2 *3 *4)
(|partial| -12 (-5 *4 (-1169)) (-4 *5 (-611 (-888 (-563))))
(-4 *5 (-882 (-563)))
@@ -3862,282 +3582,288 @@
(-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
(-5 *1 (-566 *5 *3)) (-4 *3 (-626))
(-4 *3 (-13 (-27) (-1193) (-430 *5))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-767)) (-5 *2 (-1165 *4)) (-5 *1 (-528 *4))
- (-4 *4 (-349)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-767)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
- (-4 *4 (-1045)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-363)) (-4 *6 (-1233 (-407 *2)))
- (-4 *2 (-1233 *5)) (-5 *1 (-215 *5 *2 *6 *3))
- (-4 *3 (-342 *5 *2 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *3 (-307)) (-4 *3 (-172)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3)))
- (-5 *1 (-683 *3 *4 *5 *6)) (-4 *6 (-682 *3 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-695 *3))
- (-4 *3 (-307)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
- (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-767)) (-5 *5 (-640 *3)) (-4 *3 (-307)) (-4 *6 (-846))
- (-4 *7 (-789)) (-5 *2 (-112)) (-5 *1 (-622 *6 *7 *3 *8))
- (-4 *8 (-945 *3 *7 *6)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))))
-(((*1 *2 *1) (-12 (|has| *1 (-6 -4407)) (-4 *1 (-34)) (-5 *2 (-767))))
- ((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-128))))
+(((*1 *2 *1) (-12 (|has| *1 (-6 -4408)) (-4 *1 (-34)) (-5 *2 (-767))))
((*1 *2 *1)
(-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
(-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-563))))
((*1 *2 *1)
(-12 (-5 *2 (-767)) (-5 *1 (-1280 *3 *4)) (-4 *3 (-1045))
(-4 *4 (-842)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 *3)) (-4 *3 (-1065 *5 *6 *7 *8)) (-4 *5 (-452))
- (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7))
- (-5 *2 (-112)) (-5 *1 (-984 *5 *6 *7 *8 *3))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7))))
+(((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-640 (-609 *2))) (-5 *4 (-1169))
+ (-4 *2 (-13 (-27) (-1193) (-430 *5)))
+ (-4 *5 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-277 *5 *2)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4)))
+ (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *3 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $)))))
+ (-4 *4 (-1233 *3))
+ (-5 *2
+ (-2 (|:| -4013 (-684 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-684 *3))))
+ (-5 *1 (-350 *3 *4 *5)) (-4 *5 (-409 *3 *4))))
+ ((*1 *2)
+ (-12 (-4 *3 (-1233 (-563)))
+ (-5 *2
+ (-2 (|:| -4013 (-684 (-563))) (|:| |basisDen| (-563))
+ (|:| |basisInv| (-684 (-563)))))
+ (-5 *1 (-764 *3 *4)) (-4 *4 (-409 (-563) *3))))
+ ((*1 *2)
+ (-12 (-4 *3 (-349)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 *4))
+ (-5 *2
+ (-2 (|:| -4013 (-684 *4)) (|:| |basisDen| *4)
+ (|:| |basisInv| (-684 *4))))
+ (-5 *1 (-981 *3 *4 *5 *6)) (-4 *6 (-720 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *3 (-349)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 *4))
+ (-5 *2
+ (-2 (|:| -4013 (-684 *4)) (|:| |basisDen| *4)
+ (|:| |basisInv| (-684 *4))))
+ (-5 *1 (-1266 *3 *4 *5 *6)) (-4 *6 (-409 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-112))
+ (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 *3)) (-4 *3 (-1065 *5 *6 *7 *8)) (-4 *5 (-452))
- (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7))
- (-5 *2 (-112)) (-5 *1 (-1100 *5 *6 *7 *8 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
-(((*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-217)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *5 (-1034 (-48)))
- (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-4 *5 (-430 *4))
- (-5 *2 (-418 (-1165 (-48)))) (-5 *1 (-435 *4 *5 *3))
- (-4 *3 (-1233 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-363) (-1193) (-998))))))
-(((*1 *2 *1) (-12 (-5 *2 (-818)) (-5 *1 (-817)))))
-(((*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4)
- (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225)))
- (-5 *6 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-640 (-684 *6))) (-5 *4 (-112)) (-5 *5 (-563))
- (-5 *2 (-684 *6)) (-5 *1 (-1025 *6)) (-4 *6 (-363)) (-4 *6 (-1045))))
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2058 *4))))
+ (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1165 *6)) (-5 *3 (-563)) (-4 *6 (-307)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-5 *1 (-738 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5)))))
+(((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-403 *3)) (-4 *3 (-404))))
+ ((*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-403 *3)) (-4 *3 (-404))))
+ ((*1 *2 *2) (-12 (-5 *2 (-917)) (|has| *1 (-6 -4399)) (-4 *1 (-404))))
+ ((*1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-917))))
+ ((*1 *2 *1) (-12 (-4 *1 (-865 *3)) (-5 *2 (-1149 (-563))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
+ (-4 *2 (-430 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-640 (-640 (-640 *4)))) (-5 *3 (-640 *4)) (-4 *4 (-846))
+ (-5 *1 (-1179 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6))))
((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 (-684 *4))) (-5 *2 (-684 *4)) (-5 *1 (-1025 *4))
- (-4 *4 (-363)) (-4 *4 (-1045))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-640 (-684 *5))) (-5 *4 (-563)) (-5 *2 (-684 *5))
- (-5 *1 (-1025 *5)) (-4 *5 (-363)) (-4 *5 (-1045)))))
-(((*1 *2 *2) (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3)))))
+ (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *3))
+ (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-640 *3)) (-4 *3 (-1059 *4 *5 *6)) (-4 *4 (-555))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-640 *7) (-640 *7))) (-5 *2 (-640 *7))
+ (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789))
+ (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1169))
+ (-4 *5 (-13 (-846) (-1034 (-563)) (-452) (-636 (-563))))
+ (-5 *2 (-2 (|:| -1959 *3) (|:| |nconst| *3))) (-5 *1 (-566 *5 *3))
+ (-4 *3 (-13 (-27) (-1193) (-430 *5))))))
(((*1 *2 *3)
(-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
(-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4))))
((*1 *2 *3 *3)
(-12 (-4 *3 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
(-5 *2 (-640 *3)) (-5 *1 (-1121 *4 *3)) (-4 *4 (-1233 *3)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-751)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-1151))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-82 PDEF))))
- (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1031))
- (-5 *1 (-746)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1045)) (-4 *3 (-1233 *4)) (-4 *2 (-1248 *4))
- (-5 *1 (-1251 *4 *3 *5 *2)) (-4 *5 (-651 *3)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-1165 (-948 *4))) (-5 *1 (-416 *3 *4))
- (-4 *3 (-417 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-4 *3 (-363))
- (-5 *2 (-1165 (-948 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6))
- (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
- (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1169))
+ (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-277 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-767)) (-4 *6 (-363)) (-5 *4 (-1202 *6))
+ (-5 *2 (-1 (-1149 *4) (-1149 *4))) (-5 *1 (-1265 *6))
+ (-5 *5 (-1149 *4)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4))))
+ (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1165 *9)) (-5 *4 (-640 *7)) (-4 *7 (-846))
+ (-4 *9 (-945 *8 *6 *7)) (-4 *6 (-789)) (-4 *8 (-307))
+ (-5 *2 (-640 (-767))) (-5 *1 (-738 *6 *7 *8 *9)) (-5 *5 (-767)))))
(((*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-172)) (-4 *2 (-23)) (-5 *1 (-289 *3 *4 *2 *5 *6 *7))
+ (-4 *4 (-1233 *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 (-707 *3 *2 *4 *5 *6)) (-4 *3 (-172))
+ (-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 (-1233 *3)) (-5 *1 (-708 *3 *2)) (-4 *3 (-1045))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-23)) (-5 *1 (-711 *3 *2 *4 *5 *6)) (-4 *3 (-172))
+ (-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 (-865 *3)) (-5 *2 (-563)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-427 *3 *2)) (-4 *3 (-13 (-172) (-38 (-407 (-563)))))
+ (-4 *2 (-13 (-846) (-21))))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-640 (-640 (-640 *5)))) (-5 *3 (-1 (-112) *5 *5))
+ (-5 *4 (-640 *5)) (-4 *5 (-846)) (-5 *1 (-1179 *5)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-818)))))
(((*1 *2 *3 *3)
(-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *3))
(-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-796))
- (-5 *3
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
- (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2 (-1031)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1169)) (-5 *5 (-1087 (-225))) (-5 *2 (-923))
- (-5 *1 (-921 *3)) (-4 *3 (-611 (-536)))))
- ((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *4 (-1169)) (-5 *5 (-1087 (-225))) (-5 *2 (-923))
- (-5 *1 (-921 *3)) (-4 *3 (-611 (-536)))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922))))
- ((*1 *1 *2 *2 *2 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225)))
- (-5 *1 (-922))))
- ((*1 *1 *2 *2 *2 *2 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225)))
- (-5 *1 (-922))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923))))
- ((*1 *1 *2 *2 *3 *3 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225)))
- (-5 *1 (-923))))
- ((*1 *1 *2 *2 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225)))
- (-5 *1 (-923))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-640 (-1 (-225) (-225)))) (-5 *3 (-1087 (-225)))
- (-5 *1 (-923))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-640 (-1 (-225) (-225)))) (-5 *3 (-1087 (-225)))
- (-5 *1 (-923))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225)))
- (-5 *1 (-923))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225)))
- (-5 *1 (-923)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *5 (-609 *4)) (-5 *6 (-1169))
+ (-4 *4 (-13 (-430 *7) (-27) (-1193)))
+ (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
(-5 *2
- (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563))
- (|:| |success| (-112))))
- (-5 *1 (-785)) (-5 *5 (-563)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-1189)))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4))))
+ (-5 *1 (-565 *7 *4 *3)) (-4 *3 (-651 *4)) (-4 *3 (-1093)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-640 (-640 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
- (-5 *4 (-640 (-3 (|:| |array| (-640 *3)) (|:| |scalar| (-1169)))))
- (-5 *6 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1097))
- (-5 *1 (-397))))
- ((*1 *2 *3 *4 *5 *6 *3)
- (-12 (-5 *5 (-640 (-640 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
- (-5 *4 (-640 (-3 (|:| |array| (-640 *3)) (|:| |scalar| (-1169)))))
- (-5 *6 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1097))
- (-5 *1 (-397))))
- ((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *4 (-640 (-1169))) (-5 *5 (-1172)) (-5 *3 (-1169))
- (-5 *2 (-1097)) (-5 *1 (-397)))))
-(((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1036)))))
-(((*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260))))
- ((*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-555))
+ (-12 (-5 *4 (-1169))
+ (-4 *5 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
(-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-52)) (-5 *1 (-825)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *3 (-563)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-418 *2)) (-4 *2 (-555)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))))
-(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-563)) (-5 *3 (-917)) (-5 *1 (-694))))
- ((*1 *2 *2 *2 *3 *4)
- (-12 (-5 *2 (-684 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5))
- (-4 *5 (-363)) (-5 *1 (-974 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *2 (-846)) (-4 *5 (-1059 *3 *4 *2)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379)))
- (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262))
- (-5 *1 (-784))))
- ((*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3)
- (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379)))
- (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262))
- (-5 *1 (-784)))))
+ (-2 (|:| |func| *3) (|:| |kers| (-640 (-609 *3)))
+ (|:| |vals| (-640 *3))))
+ (-5 *1 (-277 *5 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *5))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1169)) (-4 *5 (-363)) (-5 *2 (-640 (-1202 *5)))
+ (-5 *1 (-1265 *5)) (-5 *4 (-1202 *5)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4))))
+ (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-563)) (-5 *4 (-418 *2)) (-4 *2 (-945 *7 *5 *6))
+ (-5 *1 (-738 *5 *6 *7 *2)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-307)))))
+(((*1 *2 *1) (-12 (-4 *1 (-865 *3)) (-5 *2 (-563)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-427 *3 *2)) (-4 *3 (-13 (-172) (-38 (-407 (-563)))))
+ (-4 *2 (-13 (-846) (-21))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-846)) (-5 *4 (-640 *6))
+ (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-640 *4))))
+ (-5 *1 (-1179 *6)) (-5 *5 (-640 *4)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))))
+(((*1 *2 *2 *2 *2 *3 *3 *4)
+ (|partial| -12 (-5 *3 (-609 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1169)))
+ (-4 *2 (-13 (-430 *5) (-27) (-1193)))
+ (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
+ (-5 *1 (-565 *5 *2 *6)) (-4 *6 (-1093)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-452))
+ (-12 (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112)) (-5 *1 (-276 *4 *3))
+ (-4 *3 (-13 (-430 *4) (-998))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1169)) (-5 *2 (-1 (-1165 (-948 *4)) (-948 *4)))
+ (-5 *1 (-1265 *4)) (-4 *4 (-363)))))
+(((*1 *2 *3 *3 *4 *5 *5)
+ (-12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
+ (-4 *3 (-1059 *6 *7 *8))
+ (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4))))
+ (-5 *1 (-1066 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2058 *9))))
+ (-5 *5 (-112)) (-4 *8 (-1059 *6 *7 *4)) (-4 *9 (-1065 *6 *7 *4 *8))
+ (-4 *6 (-452)) (-4 *7 (-789)) (-4 *4 (-846))
+ (-5 *2 (-640 (-2 (|:| |val| *8) (|:| -2058 *9))))
+ (-5 *1 (-1066 *6 *7 *4 *8 *9)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1165 *9)) (-5 *4 (-640 *7)) (-5 *5 (-640 (-640 *8)))
+ (-4 *7 (-846)) (-4 *8 (-307)) (-4 *9 (-945 *8 *6 *7)) (-4 *6 (-789))
(-5 *2
- (-640
- (-2 (|:| |eigval| (-3 (-407 (-948 *4)) (-1158 (-1169) (-948 *4))))
- (|:| |eigmult| (-767))
- (|:| |eigvec| (-640 (-684 (-407 (-948 *4))))))))
- (-5 *1 (-292 *4)) (-5 *3 (-684 (-407 (-948 *4)))))))
-(((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-316 (-379))) (-5 *1 (-305)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1093)) (-5 *2 (-1151)))))
-(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
-(((*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-225)) (-5 *1 (-1260))))
- ((*1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-1260)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169))
- (-14 *4 *2))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-885 *4 *3))
- (-4 *3 (-1093)))))
-(((*1 *1) (-5 *1 (-130))))
-(((*1 *1 *1) (-12 (-5 *1 (-910 *2)) (-4 *2 (-307)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172))))
- ((*1 *2 *3 *3 *2)
- (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-349)) (-4 *2 (-1045)) (-5 *1 (-708 *2 *3))
- (-4 *3 (-1233 *2)))))
+ (-2 (|:| |upol| (-1165 *8)) (|:| |Lval| (-640 *8))
+ (|:| |Lfact|
+ (-640 (-2 (|:| -2173 (-1165 *8)) (|:| -3311 (-563)))))
+ (|:| |ctpol| *8)))
+ (-5 *1 (-738 *6 *7 *8 *9)))))
+(((*1 *1 *1) (-4 *1 (-865 *2))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1169))
+ (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *2 (-584 *3)) (-5 *1 (-426 *5 *3))
+ (-4 *3 (-13 (-1193) (-29 *5))))))
+(((*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1178)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-640 *5)))))
+(((*1 *2 *3 *4 *4 *5)
+ (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-640 *3))
+ (-4 *3 (-13 (-430 *6) (-27) (-1193)))
+ (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-565 *6 *3 *7)) (-4 *7 (-1093)))))
(((*1 *1) (-5 *1 (-112))) ((*1 *1) (-5 *1 (-614))))
+(((*1 *2 *2 *3)
+ (|partial| -12
+ (-5 *3 (-640 (-2 (|:| |func| *2) (|:| |pole| (-112)))))
+ (-4 *2 (-13 (-430 *4) (-998))) (-4 *4 (-13 (-846) (-555)))
+ (-5 *1 (-276 *4 *2)))))
(((*1 *1 *1)
(-12 (-4 *1 (-253 *2 *3 *4 *5)) (-4 *2 (-1045)) (-4 *3 (-846))
(-4 *4 (-266 *3)) (-4 *5 (-789)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172))
- (-4 *5 (-1233 *4)) (-5 *2 (-684 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-684 *4))
- (-5 *1 (-408 *3 *4 *5)) (-4 *3 (-409 *4 *5))))
- ((*1 *2)
- (-12 (-4 *1 (-409 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3))
- (-5 *2 (-684 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-417 *4)))))
-(((*1 *2 *1 *2) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-563)) (-5 *1 (-379)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1169)) (-4 *5 (-363)) (-5 *2 (-1149 (-1149 (-948 *5))))
+ (-5 *1 (-1265 *5)) (-5 *4 (-1149 (-948 *5))))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2 (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4))))
+ (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-640 *7)) (-5 *5 (-640 (-640 *8))) (-4 *7 (-846))
+ (-4 *8 (-307)) (-4 *6 (-789)) (-4 *9 (-945 *8 *6 *7))
+ (-5 *2
+ (-2 (|:| |unitPart| *9)
+ (|:| |suPart|
+ (-640 (-2 (|:| -2173 (-1165 *9)) (|:| -3311 (-563)))))))
+ (-5 *1 (-738 *6 *7 *8 *9)) (-5 *3 (-1165 *9)))))
(((*1 *1 *1 *2)
(-12
(-5 *2
- (-2 (|:| -3799 (-640 (-858))) (|:| -1901 (-640 (-858)))
- (|:| |presup| (-640 (-858))) (|:| -3034 (-640 (-858)))
+ (-2 (|:| -3331 (-640 (-858))) (|:| -4092 (-640 (-858)))
+ (|:| |presup| (-640 (-858))) (|:| -3321 (-640 (-858)))
(|:| |args| (-640 (-858)))))
(-5 *1 (-1169))))
((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-640 (-858)))) (-5 *1 (-1169)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-640 *3)) (-5 *1 (-957 *3)) (-4 *3 (-545)))))
+(((*1 *1 *1 *1) (-5 *1 (-858))) ((*1 *1 *1) (-5 *1 (-858)))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1165 (-563))) (-5 *3 (-563)) (-4 *1 (-865 *4)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1093))
(-4 *6 (-1093)) (-4 *2 (-1093)) (-5 *1 (-675 *5 *6 *2)))))
-(((*1 *1 *1 *2 *3 *1)
- (-12 (-4 *1 (-326 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)))))
-(((*1 *2 *1) (-12 (-4 *1 (-865 *3)) (-5 *2 (-563)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-555)) (-4 *3 (-1045))
- (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-848 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-555)) (-4 *5 (-1045))
- (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-849 *5 *3))
- (-4 *3 (-848 *5)))))
-(((*1 *2 *3 *4 *3 *5 *3)
- (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563))
- (-5 *2 (-1031)) (-5 *1 (-750)))))
-(((*1 *2 *3 *3 *1)
- (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-1097)) (-5 *1 (-291)))))
-(((*1 *2) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))))
+(((*1 *2 *1) (-12 (-4 *1 (-425 *3)) (-4 *3 (-1093)) (-5 *2 (-767)))))
+(((*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1178)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-972 *4 *5 *3 *6)) (-4 *4 (-1045)) (-4 *5 (-789))
+ (-4 *3 (-846)) (-4 *6 (-1059 *4 *5 *3)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *4 *3)
+ (|partial| -12 (-5 *4 (-609 *3))
+ (-4 *3 (-13 (-430 *5) (-27) (-1193)))
+ (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
+ (-5 *2 (-2 (|:| -2840 *3) (|:| |coeff| *3)))
+ (-5 *1 (-565 *5 *3 *6)) (-4 *6 (-1093)))))
(((*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-452))))
((*1 *1 *1 *1) (-4 *1 (-452)))
((*1 *2 *3)
@@ -4166,47 +3892,90 @@
((*1 *2 *2 *1)
(-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
(-4 *4 (-846)) (-4 *2 (-452)))))
-(((*1 *1) (-5 *1 (-130))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-640
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *3)
- (|:| |polj| *3))))
- (-4 *5 (-789)) (-4 *3 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *6 (-846))
- (-5 *1 (-449 *4 *5 *6 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1178)))))
-(((*1 *1 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225)))
- (-5 *1 (-922))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225)))
- (-5 *1 (-922))))
- ((*1 *1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225)))
- (-5 *1 (-923))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225)))
- (-5 *1 (-923)))))
-(((*1 *1 *1) (-5 *1 (-1057))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| -2742 *3) (|:| |coef1| (-778 *3)) (|:| |coef2| (-778 *3))))
- (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *2) (|partial| -12 (-5 *2 (-316 (-225))) (-5 *1 (-267)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-744)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-364 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-1045)) (-5 *1 (-708 *3 *2)) (-4 *2 (-1233 *3)))))
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-767)) (-5 *2 (-1 (-1149 (-948 *4)) (-1149 (-948 *4))))
+ (-5 *1 (-1265 *4)) (-4 *4 (-363)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789))
+ (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-563)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-307))
+ (-4 *9 (-945 *8 *6 *7))
+ (-5 *2 (-2 (|:| -3929 (-1165 *9)) (|:| |polval| (-1165 *8))))
+ (-5 *1 (-738 *6 *7 *8 *9)) (-5 *3 (-1165 *9)) (-5 *4 (-1165 *8)))))
+(((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-767)) (-4 *5 (-363)) (-5 *2 (-407 *6))
+ (-5 *1 (-863 *5 *4 *6)) (-4 *4 (-1248 *5)) (-4 *6 (-1233 *5))))
+ ((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-767)) (-5 *4 (-1249 *5 *6 *7)) (-4 *5 (-363))
+ (-14 *6 (-1169)) (-14 *7 *5) (-5 *2 (-407 (-1230 *6 *5)))
+ (-5 *1 (-864 *5 *6 *7))))
+ ((*1 *2 *3 *3 *4)
+ (|partial| -12 (-5 *3 (-767)) (-5 *4 (-1249 *5 *6 *7)) (-4 *5 (-363))
+ (-14 *6 (-1169)) (-14 *7 *5) (-5 *2 (-407 (-1230 *6 *5)))
+ (-5 *1 (-864 *5 *6 *7)))))
+(((*1 *1 *1) (-12 (-4 *1 (-425 *2)) (-4 *2 (-1093)) (-4 *2 (-368)))))
+(((*1 *2) (-12 (-5 *2 (-130)) (-5 *1 (-1178)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *2 (-846)) (-4 *5 (-1059 *3 *4 *2)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-609 *3)) (-4 *3 (-13 (-430 *5) (-27) (-1193)))
+ (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
+ (-5 *2 (-584 *3)) (-5 *1 (-565 *5 *3 *6)) (-4 *6 (-1093)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
(((*1 *1 *2)
(-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-1140 *3)))))
-(((*1 *1) (-5 *1 (-130))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-767)) (-5 *2 (-1 (-1149 (-948 *4)) (-1149 (-948 *4))))
+ (-5 *1 (-1265 *4)) (-4 *4 (-363)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789))
+ (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-789)) (-4 *4 (-846)) (-4 *6 (-307)) (-5 *2 (-418 *3))
+ (-5 *1 (-738 *5 *4 *6 *3)) (-4 *3 (-945 *6 *5 *4)))))
+(((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-767)) (-4 *5 (-363)) (-5 *2 (-174 *6))
+ (-5 *1 (-863 *5 *4 *6)) (-4 *4 (-1248 *5)) (-4 *6 (-1233 *5)))))
+(((*1 *1) (-12 (-4 *1 (-425 *2)) (-4 *2 (-368)) (-4 *2 (-1093)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-640 (-379))) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-379))) (-5 *1 (-468))))
+ ((*1 *2 *1) (-12 (-5 *2 (-640 (-379))) (-5 *1 (-468))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-917)) (-5 *4 (-870)) (-5 *2 (-1262)) (-5 *1 (-1258))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))))
+(((*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1178)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *2 (-846)) (-4 *5 (-1059 *3 *4 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363))
+ (-4 *7 (-1233 (-407 *6)))
+ (-5 *2 (-2 (|:| |answer| *3) (|:| -2829 *3)))
+ (-5 *1 (-561 *5 *6 *7 *3)) (-4 *3 (-342 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363))
+ (-5 *2
+ (-2 (|:| |answer| (-407 *6)) (|:| -2829 (-407 *6))
+ (|:| |specpart| (-407 *6)) (|:| |polypart| *6)))
+ (-5 *1 (-562 *5 *6)) (-5 *3 (-407 *6)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
(((*1 *2)
(-12 (-14 *4 (-767)) (-4 *5 (-1208)) (-5 *2 (-134))
(-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5))))
@@ -4224,563 +3993,584 @@
(-5 *2 (-563)) (-5 *1 (-504 *4 *5 *6 *7)) (-4 *7 (-945 *4 *5 *6))))
((*1 *2 *1) (-12 (-4 *1 (-976 *3)) (-4 *3 (-1045)) (-5 *2 (-917))))
((*1 *2) (-12 (-4 *1 (-1264 *3)) (-4 *3 (-363)) (-5 *2 (-134)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-568 *3)) (-4 *3 (-1034 (-563)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
- (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-747)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789))
+ (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-2 (|:| -2173 (-1165 *6)) (|:| -3311 (-563)))))
+ (-4 *6 (-307)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-563))
+ (-5 *1 (-738 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1093))
- (-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3))))
- (-5 *2 (-640 (-1169))) (-5 *1 (-1069 *3 *4 *5))
- (-4 *5 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))))))
+ (-12 (|has| *1 (-6 -4408)) (-4 *1 (-489 *3)) (-4 *3 (-1208))
+ (-5 *2 (-640 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-733 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *1) (-12 (-5 *2 (-640 (-439))) (-5 *1 (-861)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-640 (-640 *6))) (-4 *6 (-945 *3 *5 *4))
- (-4 *3 (-13 (-307) (-147))) (-4 *4 (-13 (-846) (-611 (-1169))))
- (-4 *5 (-789)) (-5 *1 (-920 *3 *4 *5 *6)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-640 (-379))) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-379))) (-5 *1 (-468))))
- ((*1 *2 *1) (-12 (-5 *2 (-640 (-379))) (-5 *1 (-468))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-917)) (-5 *4 (-870)) (-5 *2 (-1262)) (-5 *1 (-1258))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-407 (-563))) (-5 *1 (-1020 *3))
- (-4 *3 (-13 (-844) (-363) (-1018)))))
- ((*1 *2 *3 *1 *2)
- (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3))
- (-4 *3 (-1233 *2))))
- ((*1 *2 *3 *1 *2)
- (-12 (-4 *1 (-1062 *2 *3)) (-4 *2 (-13 (-844) (-363)))
- (-4 *3 (-1233 *2)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1045)) (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)))))
-(((*1 *1 *1) (-4 *1 (-626)))
+ (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-420 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1193) (-430 *3)))
+ (-14 *4 (-1169)) (-14 *5 *2)))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998) (-1193))))))
-(((*1 *2 *1)
- (-12
+ (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-4 *2 (-13 (-27) (-1193) (-430 *3) (-10 -8 (-15 -1692 ($ *4)))))
+ (-4 *4 (-844))
+ (-4 *5
+ (-13 (-1235 *2 *4) (-363) (-1193)
+ (-10 -8 (-15 -4203 ($ $)) (-15 -2062 ($ $)))))
+ (-5 *1 (-422 *3 *2 *4 *5 *6 *7)) (-4 *6 (-979 *5)) (-14 *7 (-1169)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169)))
+ (-4 *5 (-555)) (-5 *2 (-640 (-640 (-948 *5)))) (-5 *1 (-1177 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *2 (-846)) (-4 *5 (-1059 *3 *4 *2)))))
+(((*1 *2 *2 *3) (-12 (-5 *2 (-563)) (-5 *3 (-767)) (-5 *1 (-560)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-452))))
+ ((*1 *1 *1 *1) (-4 *1 (-452))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-225)) (-5 *1 (-1260))))
+ ((*1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-1260)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789))
+ (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)) (-5 *2 (-418 *3))
+ (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-945 *6 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-858)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-112))
+ (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-4 *3 (-13 (-27) (-1193) (-430 *6) (-10 -8 (-15 -1692 ($ *7)))))
+ (-4 *7 (-844))
+ (-4 *8
+ (-13 (-1235 *3 *7) (-363) (-1193)
+ (-10 -8 (-15 -4203 ($ $)) (-15 -2062 ($ $)))))
+ (-5 *2
+ (-3 (|:| |%series| *8)
+ (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))))
+ (-5 *1 (-422 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1151)) (-4 *9 (-979 *8))
+ (-14 *10 (-1169)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-407 (-948 (-563)))))
+ (-5 *2 (-640 (-640 (-294 (-948 *4))))) (-5 *1 (-380 *4))
+ (-4 *4 (-13 (-844) (-363)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-294 (-407 (-948 (-563))))))
+ (-5 *2 (-640 (-640 (-294 (-948 *4))))) (-5 *1 (-380 *4))
+ (-4 *4 (-13 (-844) (-363)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-407 (-948 (-563)))) (-5 *2 (-640 (-294 (-948 *4))))
+ (-5 *1 (-380 *4)) (-4 *4 (-13 (-844) (-363)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-294 (-407 (-948 (-563)))))
+ (-5 *2 (-640 (-294 (-948 *4)))) (-5 *1 (-380 *4))
+ (-4 *4 (-13 (-844) (-363)))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1169))
+ (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-4 *4 (-13 (-29 *6) (-1193) (-955)))
+ (-5 *2 (-2 (|:| |particular| *4) (|:| -4013 (-640 *4))))
+ (-5 *1 (-647 *6 *4 *3)) (-4 *3 (-651 *4))))
+ ((*1 *2 *3 *2 *4 *2 *5)
+ (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-640 *2))
+ (-4 *2 (-13 (-29 *6) (-1193) (-955)))
+ (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *1 (-647 *6 *2 *3)) (-4 *3 (-651 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-684 *5)) (-4 *5 (-363))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1257 *5) "failed"))
+ (|:| -4013 (-640 (-1257 *5)))))
+ (-5 *1 (-662 *5)) (-5 *4 (-1257 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-640 *5))) (-4 *5 (-363))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1257 *5) "failed"))
+ (|:| -4013 (-640 (-1257 *5)))))
+ (-5 *1 (-662 *5)) (-5 *4 (-1257 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-684 *5)) (-4 *5 (-363))
(-5 *2
(-640
- (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 *3))
- (|:| |logand| (-1165 *3)))))
- (-5 *1 (-584 *3)) (-4 *3 (-363)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-373 *3)) (-4 *3 (-1208)) (-4 *3 (-846)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-373 *4)) (-4 *4 (-1208))
- (-5 *2 (-112)))))
-(((*1 *2)
- (-12
+ (-2 (|:| |particular| (-3 (-1257 *5) "failed"))
+ (|:| -4013 (-640 (-1257 *5))))))
+ (-5 *1 (-662 *5)) (-5 *4 (-640 (-1257 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-640 *5))) (-4 *5 (-363))
(-5 *2
- (-1257 (-640 (-2 (|:| -2619 (-906 *3)) (|:| -2555 (-1113))))))
- (-5 *1 (-351 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917))))
- ((*1 *2)
- (-12 (-5 *2 (-1257 (-640 (-2 (|:| -2619 *3) (|:| -2555 (-1113))))))
- (-5 *1 (-352 *3 *4)) (-4 *3 (-349)) (-14 *4 (-3 (-1165 *3) *2))))
- ((*1 *2)
- (-12 (-5 *2 (-1257 (-640 (-2 (|:| -2619 *3) (|:| -2555 (-1113))))))
- (-5 *1 (-353 *3 *4)) (-4 *3 (-349)) (-14 *4 (-917)))))
-(((*1 *2 *3 *1 *4)
- (-12 (-5 *3 (-1133 *5 *6)) (-5 *4 (-1 (-112) *6 *6))
- (-4 *5 (-13 (-1093) (-34))) (-4 *6 (-13 (-1093) (-34)))
- (-5 *2 (-112)) (-5 *1 (-1134 *5 *6)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-103 *3)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-743)))))
-(((*1 *2 *3 *3 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-1 (-225) (-225) (-225)))
- (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined"))
- (-5 *5 (-1087 (-225))) (-5 *6 (-640 (-263))) (-5 *2 (-1126 (-225)))
- (-5 *1 (-692))))
+ (-640
+ (-2 (|:| |particular| (-3 (-1257 *5) "failed"))
+ (|:| -4013 (-640 (-1257 *5))))))
+ (-5 *1 (-662 *5)) (-5 *4 (-640 (-1257 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4409))))
+ (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4409))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4))))
+ (-5 *1 (-663 *5 *6 *4 *3)) (-4 *3 (-682 *5 *6 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4409))))
+ (-4 *7 (-13 (-373 *5) (-10 -7 (-6 -4409))))
+ (-5 *2
+ (-640
+ (-2 (|:| |particular| (-3 *7 "failed")) (|:| -4013 (-640 *7)))))
+ (-5 *1 (-663 *5 *6 *7 *3)) (-5 *4 (-640 *7))
+ (-4 *3 (-682 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-640 (-1169))) (-4 *5 (-555))
+ (-5 *2 (-640 (-640 (-294 (-407 (-948 *5)))))) (-5 *1 (-766 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-555))
+ (-5 *2 (-640 (-640 (-294 (-407 (-948 *4)))))) (-5 *1 (-766 *4))))
+ ((*1 *2 *2 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1169))
+ (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *1 (-768 *5 *2)) (-4 *2 (-13 (-29 *5) (-1193) (-955)))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-684 *7)) (-5 *5 (-1169))
+ (-4 *7 (-13 (-29 *6) (-1193) (-955)))
+ (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *2
+ (-2 (|:| |particular| (-1257 *7)) (|:| -4013 (-640 (-1257 *7)))))
+ (-5 *1 (-798 *6 *7)) (-5 *4 (-1257 *7))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-684 *6)) (-5 *4 (-1169))
+ (-4 *6 (-13 (-29 *5) (-1193) (-955)))
+ (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *2 (-640 (-1257 *6))) (-5 *1 (-798 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-640 (-294 *7))) (-5 *4 (-640 (-114)))
+ (-5 *5 (-1169)) (-4 *7 (-13 (-29 *6) (-1193) (-955)))
+ (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *2
+ (-2 (|:| |particular| (-1257 *7)) (|:| -4013 (-640 (-1257 *7)))))
+ (-5 *1 (-798 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-640 *7)) (-5 *4 (-640 (-114)))
+ (-5 *5 (-1169)) (-4 *7 (-13 (-29 *6) (-1193) (-955)))
+ (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *2
+ (-2 (|:| |particular| (-1257 *7)) (|:| -4013 (-640 (-1257 *7)))))
+ (-5 *1 (-798 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-294 *7)) (-5 *4 (-114)) (-5 *5 (-1169))
+ (-4 *7 (-13 (-29 *6) (-1193) (-955)))
+ (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *2
+ (-3 (-2 (|:| |particular| *7) (|:| -4013 (-640 *7))) *7 "failed"))
+ (-5 *1 (-798 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-114)) (-5 *5 (-1169))
+ (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *2
+ (-3 (-2 (|:| |particular| *3) (|:| -4013 (-640 *3))) *3 "failed"))
+ (-5 *1 (-798 *6 *3)) (-4 *3 (-13 (-29 *6) (-1193) (-955)))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *3 (-294 *2)) (-5 *4 (-114)) (-5 *5 (-640 *2))
+ (-4 *2 (-13 (-29 *6) (-1193) (-955))) (-5 *1 (-798 *6 *2))
+ (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))))
+ ((*1 *2 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-114)) (-5 *4 (-294 *2)) (-5 *5 (-640 *2))
+ (-4 *2 (-13 (-29 *6) (-1193) (-955)))
+ (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *1 (-798 *6 *2))))
+ ((*1 *2 *3) (-12 (-5 *3 (-804)) (-5 *2 (-1031)) (-5 *1 (-801))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-804)) (-5 *4 (-1057)) (-5 *2 (-1031)) (-5 *1 (-801))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-939 (-225)) (-225) (-225))) (-5 *4 (-1087 (-225)))
- (-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-692))))
- ((*1 *2 *2 *3 *4 *4 *5)
- (-12 (-5 *2 (-1126 (-225))) (-5 *3 (-1 (-939 (-225)) (-225) (-225)))
- (-5 *4 (-1087 (-225))) (-5 *5 (-640 (-263))) (-5 *1 (-692)))))
-(((*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
+ (-12 (-5 *3 (-1257 (-316 (-379)))) (-5 *4 (-379)) (-5 *5 (-640 *4))
+ (-5 *2 (-1031)) (-5 *1 (-801))))
+ ((*1 *2 *3 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1257 (-316 (-379)))) (-5 *4 (-379)) (-5 *5 (-640 *4))
+ (-5 *2 (-1031)) (-5 *1 (-801))))
+ ((*1 *2 *3 *4 *4 *5 *6 *4)
+ (-12 (-5 *3 (-1257 (-316 *4))) (-5 *5 (-640 (-379)))
+ (-5 *6 (-316 (-379))) (-5 *4 (-379)) (-5 *2 (-1031)) (-5 *1 (-801))))
+ ((*1 *2 *3 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1257 (-316 (-379)))) (-5 *4 (-379)) (-5 *5 (-640 *4))
+ (-5 *2 (-1031)) (-5 *1 (-801))))
+ ((*1 *2 *3 *4 *4 *5 *6 *5 *4)
+ (-12 (-5 *3 (-1257 (-316 *4))) (-5 *5 (-640 (-379)))
+ (-5 *6 (-316 (-379))) (-5 *4 (-379)) (-5 *2 (-1031)) (-5 *1 (-801))))
+ ((*1 *2 *3 *4 *4 *5 *6 *5 *4 *4)
+ (-12 (-5 *3 (-1257 (-316 *4))) (-5 *5 (-640 (-379)))
+ (-5 *6 (-316 (-379))) (-5 *4 (-379)) (-5 *2 (-1031)) (-5 *1 (-801))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12
+ (-5 *5
+ (-1
+ (-3 (-2 (|:| |particular| *6) (|:| -4013 (-640 *6))) "failed")
+ *7 *6))
+ (-4 *6 (-363)) (-4 *7 (-651 *6))
+ (-5 *2 (-2 (|:| |particular| (-1257 *6)) (|:| -4013 (-684 *6))))
+ (-5 *1 (-809 *6 *7)) (-5 *3 (-684 *6)) (-5 *4 (-1257 *6))))
+ ((*1 *2 *3) (-12 (-5 *3 (-894)) (-5 *2 (-1031)) (-5 *1 (-893))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-894)) (-5 *4 (-1057)) (-5 *2 (-1031)) (-5 *1 (-893))))
+ ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8)
+ (-12 (-5 *4 (-767)) (-5 *6 (-640 (-640 (-316 *3)))) (-5 *7 (-1151))
+ (-5 *8 (-225)) (-5 *5 (-640 (-316 (-379)))) (-5 *3 (-379))
+ (-5 *2 (-1031)) (-5 *1 (-893))))
+ ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7)
+ (-12 (-5 *4 (-767)) (-5 *6 (-640 (-640 (-316 *3)))) (-5 *7 (-1151))
+ (-5 *5 (-640 (-316 (-379)))) (-5 *3 (-379)) (-5 *2 (-1031))
+ (-5 *1 (-893))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-948 (-407 (-563)))) (-5 *2 (-640 (-379)))
+ (-5 *1 (-1019)) (-5 *4 (-379))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-948 (-563))) (-5 *2 (-640 (-379))) (-5 *1 (-1019))
+ (-5 *4 (-379))))
((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-640 (-2 (|:| |totdeg| (-767)) (|:| -1574 *3))))
- (-5 *4 (-767)) (-4 *3 (-945 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789))
- (-4 *7 (-846)) (-5 *1 (-449 *5 *6 *7 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-452)) (-5 *2 (-112))
- (-5 *1 (-360 *4 *5)) (-14 *5 (-640 (-1169)))))
+ (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
+ (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4))))
((*1 *2 *3)
- (-12 (-5 *3 (-640 (-776 *4 (-860 *5)))) (-4 *4 (-452))
- (-14 *5 (-640 (-1169))) (-5 *2 (-112)) (-5 *1 (-625 *4 *5)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1257 *4)) (-5 *3 (-1113)) (-4 *4 (-349))
- (-5 *1 (-528 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-452))))
- ((*1 *1 *1 *1) (-4 *1 (-452))))
-(((*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-112)) (-5 *1 (-267)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *1 (-449 *3 *4 *5 *2)) (-4 *2 (-945 *3 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-767)) (-4 *5 (-1045)) (-5 *2 (-563))
- (-5 *1 (-443 *5 *3 *6)) (-4 *3 (-1233 *5))
- (-4 *6 (-13 (-404) (-1034 *5) (-363) (-1193) (-284)))))
+ (-12 (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *2 (-640 (-294 (-316 *4)))) (-5 *1 (-1124 *4))
+ (-5 *3 (-316 *4))))
((*1 *2 *3)
- (-12 (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-443 *4 *3 *5))
- (-4 *3 (-1233 *4))
- (-4 *5 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-452)) (-4 *4 (-816))
- (-14 *5 (-1169)) (-5 *2 (-563)) (-5 *1 (-1107 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
- (-5 *2 (-1257 (-684 *4)))))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-1257 (-684 *4))) (-5 *1 (-416 *3 *4))
- (-4 *3 (-417 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-1257 (-684 *3)))))
+ (-12 (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *2 (-640 (-294 (-316 *4)))) (-5 *1 (-1124 *4))
+ (-5 *3 (-294 (-316 *4)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-1169))) (-4 *5 (-363))
- (-5 *2 (-1257 (-684 (-407 (-948 *5))))) (-5 *1 (-1079 *5))
- (-5 *4 (-684 (-407 (-948 *5))))))
+ (-12 (-5 *4 (-1169))
+ (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *2 (-640 (-294 (-316 *5)))) (-5 *1 (-1124 *5))
+ (-5 *3 (-294 (-316 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-1169))) (-4 *5 (-363))
- (-5 *2 (-1257 (-684 (-948 *5)))) (-5 *1 (-1079 *5))
- (-5 *4 (-684 (-948 *5)))))
+ (-12 (-5 *4 (-1169))
+ (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *2 (-640 (-294 (-316 *5)))) (-5 *1 (-1124 *5))
+ (-5 *3 (-316 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 (-1169)))
+ (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
+ (-5 *2 (-640 (-640 (-294 (-316 *5))))) (-5 *1 (-1124 *5))
+ (-5 *3 (-640 (-294 (-316 *5))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169)))
+ (-4 *5 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *5))))))
+ (-5 *1 (-1177 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 (-1169))) (-4 *5 (-555))
+ (-5 *2 (-640 (-640 (-294 (-407 (-948 *5)))))) (-5 *1 (-1177 *5))
+ (-5 *3 (-640 (-294 (-407 (-948 *5)))))))
((*1 *2 *3)
- (-12 (-5 *3 (-640 (-684 *4))) (-4 *4 (-363))
- (-5 *2 (-1257 (-684 *4))) (-5 *1 (-1079 *4)))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))))
-(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-257)))))
-(((*1 *1) (-5 *1 (-157)))
- ((*1 *2 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-225))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-225))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-379))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-767)) (-5 *2 (-407 (-563))) (-5 *1 (-379)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *6 *5))
- (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
- (-4 *6 (-789)) (-5 *2 (-112)) (-5 *1 (-920 *4 *5 *6 *7))))
+ (-12 (-5 *3 (-640 (-407 (-948 *4)))) (-4 *4 (-555))
+ (-5 *2 (-640 (-640 (-294 (-407 (-948 *4)))))) (-5 *1 (-1177 *4))))
((*1 *2 *3)
- (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-13 (-307) (-147)))
- (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-112))
- (-5 *1 (-920 *4 *5 *6 *7)) (-4 *7 (-945 *4 *6 *5)))))
-(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1077 *3)) (-4 *3 (-132)))))
-(((*1 *2)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1169)) (-5 *2 (-437)) (-5 *1 (-1173)))))
-(((*1 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363))
- (-4 *7 (-1233 (-407 *6)))
- (-5 *2 (-2 (|:| |answer| *3) (|:| -3524 *3)))
- (-5 *1 (-561 *5 *6 *7 *3)) (-4 *3 (-342 *5 *6 *7))))
+ (-12 (-4 *4 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *4))))))
+ (-5 *1 (-1177 *4)) (-5 *3 (-640 (-294 (-407 (-948 *4)))))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363))
- (-5 *2
- (-2 (|:| |answer| (-407 *6)) (|:| -3524 (-407 *6))
- (|:| |specpart| (-407 *6)) (|:| |polypart| *6)))
- (-5 *1 (-562 *5 *6)) (-5 *3 (-407 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-316 (-225))) (-5 *2 (-316 (-407 (-563))))
- (-5 *1 (-305)))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-1151)) (-5 *2 (-770)) (-5 *1 (-114))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1097)) (-5 *1 (-961)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *5)) (-5 *4 (-917)) (-4 *5 (-846))
- (-5 *2 (-59 (-640 (-667 *5)))) (-5 *1 (-667 *5)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-563)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-767)) (-4 *5 (-172))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767))
- (-4 *4 (-172))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2))
- (-4 *4 (-373 *2))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-1045)) (-4 *1 (-682 *3 *2 *4)) (-4 *2 (-373 *3))
- (-4 *4 (-373 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1135 *2 *3)) (-14 *2 (-767)) (-4 *3 (-1045)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452))
- (-14 *6 (-640 (-1169)))
- (-5 *2
- (-640 (-1139 *5 (-531 (-860 *6)) (-860 *6) (-776 *5 (-860 *6)))))
- (-5 *1 (-625 *5 *6)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1045)) (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *1 (-504 *3 *4 *5 *2)) (-4 *2 (-945 *3 *4 *5))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846))
- (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))))
-(((*1 *2)
- (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
- (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
- (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-91 *3)))))
-(((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1036)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-743)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 *3)) (-4 *3 (-1102 *5 *6 *7 *8))
- (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-112))
- (-5 *1 (-589 *5 *6 *7 *8 *3)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-640 (-563))) (-5 *1 (-247 *3 *4))
- (-14 *3 (-640 (-1169))) (-4 *4 (-1045))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-640 (-563))) (-14 *3 (-640 (-1169)))
- (-5 *1 (-454 *3 *4 *5)) (-4 *4 (-1045))
- (-4 *5 (-238 (-3608 *3) (-767)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-640 (-563))) (-5 *1 (-481 *3 *4))
- (-14 *3 (-640 (-1169))) (-4 *4 (-1045)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-767)) (-5 *3 (-939 *5)) (-4 *5 (-1045))
- (-5 *1 (-1157 *4 *5)) (-14 *4 (-917))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-640 (-767))) (-5 *3 (-767)) (-5 *1 (-1157 *4 *5))
- (-14 *4 (-917)) (-4 *5 (-1045))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-640 (-767))) (-5 *3 (-939 *5)) (-4 *5 (-1045))
- (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-767)) (-5 *1 (-585 *2)) (-4 *2 (-545))))
+ (-12 (-5 *4 (-1169)) (-4 *5 (-555))
+ (-5 *2 (-640 (-294 (-407 (-948 *5))))) (-5 *1 (-1177 *5))
+ (-5 *3 (-407 (-948 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1169)) (-4 *5 (-555))
+ (-5 *2 (-640 (-294 (-407 (-948 *5))))) (-5 *1 (-1177 *5))
+ (-5 *3 (-294 (-407 (-948 *5))))))
((*1 *2 *3)
- (-12 (-5 *2 (-2 (|:| -4211 *3) (|:| -1654 (-767)))) (-5 *1 (-585 *3))
- (-4 *3 (-545)))))
-(((*1 *1) (-5 *1 (-225))) ((*1 *1) (-5 *1 (-379))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555))
- (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1135 *3 *4)) (-14 *3 (-917)) (-4 *4 (-363))
- (-5 *1 (-989 *3 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *2 (-363)) (-4 *2 (-844)) (-5 *1 (-941 *2 *3))
- (-4 *3 (-1233 *2)))))
+ (-12 (-4 *4 (-555)) (-5 *2 (-640 (-294 (-407 (-948 *4)))))
+ (-5 *1 (-1177 *4)) (-5 *3 (-407 (-948 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-5 *2 (-640 (-294 (-407 (-948 *4)))))
+ (-5 *1 (-1177 *4)) (-5 *3 (-294 (-407 (-948 *4)))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))))
+(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1077 *3)) (-4 *3 (-132)))))
+(((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260))))
+ ((*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-3 (-112) (-640 *1)))
+ (-4 *1 (-1065 *4 *5 *6 *3)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-735 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-858)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *4 (-112))
(-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-4 *3 (-13 (-27) (-1193) (-430 *6) (-10 -8 (-15 -1693 ($ *7)))))
+ (-4 *3 (-13 (-27) (-1193) (-430 *6) (-10 -8 (-15 -1692 ($ *7)))))
(-4 *7 (-844))
(-4 *8
(-13 (-1235 *3 *7) (-363) (-1193)
- (-10 -8 (-15 -4202 ($ $)) (-15 -3698 ($ $)))))
+ (-10 -8 (-15 -4203 ($ $)) (-15 -2062 ($ $)))))
(-5 *2
(-3 (|:| |%series| *8)
(|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))))
(-5 *1 (-422 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1151)) (-4 *9 (-979 *8))
(-14 *10 (-1169)))))
-(((*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-52)))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-1151)) (-5 *2 (-770)) (-5 *1 (-114))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1097)) (-5 *1 (-961)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-1174))) (-5 *1 (-1174))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-1174))) (-5 *1 (-1174)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
+ (-5 *2 (-112)))))
+(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-1131))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-858))) (-5 *2 (-1262)) (-5 *1 (-1131)))))
-(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *5 (-767)) (-4 *6 (-1093)) (-4 *7 (-896 *6))
- (-5 *2 (-684 *7)) (-5 *1 (-687 *6 *7 *3 *4)) (-4 *3 (-373 *7))
- (-4 *4 (-13 (-373 *6) (-10 -7 (-6 -4407)))))))
-(((*1 *2 *1) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))))
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260))))
+ ((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789))
+ (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *3 (-1059 *4 *5 *6))
+ (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2058 *1))))
+ (-4 *1 (-1065 *4 *5 *6 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-733 *3))))
+ ((*1 *1 *2) (-12 (-5 *1 (-733 *2)) (-4 *2 (-1093))))
+ ((*1 *1) (-12 (-5 *1 (-733 *2)) (-4 *2 (-1093)))))
+(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-858)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112))
+ (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *2
+ (-3 (|:| |%expansion| (-313 *5 *3 *6 *7))
+ (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))))
+ (-5 *1 (-420 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1193) (-430 *5)))
+ (-14 *6 (-1169)) (-14 *7 *3))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
+ (-5 *2 (-112)))))
(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))))
-(((*1 *2 *1) (-12 (-5 *2 (-820)) (-5 *1 (-821)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-640 (-481 *4 *5))) (-5 *3 (-640 (-860 *4)))
- (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *1 (-471 *4 *5 *6))
- (-4 *6 (-452)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260))))
+ ((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1))
+ (-4 *1 (-1065 *4 *5 *6 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
- (-5 *2 (-112))))
+ (-12 (-4 *1 (-326 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788))
+ (-5 *2 (-767))))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1280 *3 *4)) (-4 *3 (-1045))
- (-4 *4 (-842)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-407 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-555))
- (-4 *4 (-1045)) (-4 *2 (-1248 *4)) (-5 *1 (-1251 *4 *5 *6 *2))
- (-4 *6 (-651 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1189)))))
+ (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093))
+ (-5 *2 (-767))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-767)) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045))
+ (-4 *4 (-722)))))
+(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-858)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-25)) (-4 *3 (-846))
+ (-5 *2 (-2 (|:| -2310 (-563)) (|:| |var| (-609 *1))))
+ (-4 *1 (-430 *3)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-280))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-3 (-563) (-225) (-1169) (-1151) (-1174)))
+ (-5 *1 (-1174)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
+ (-5 *2 (-112)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1260)))))
+(((*1 *2 *3 *3 *1)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-3 *3 (-640 *1)))
+ (-4 *1 (-1065 *4 *5 *6 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169))
- (-4 *5 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *2 (-584 *3)) (-5 *1 (-556 *5 *3))
- (-4 *3 (-13 (-27) (-1193) (-430 *5))))))
+ (-12 (-4 *6 (-555)) (-4 *2 (-945 *3 *5 *4))
+ (-5 *1 (-728 *5 *4 *6 *2)) (-5 *3 (-407 (-948 *6))) (-4 *5 (-789))
+ (-4 *4 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $))))))))
+(((*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-418 *3)) (-4 *3 (-555)) (-5 *1 (-419 *3)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-640 (-280))) (-5 *1 (-280))))
+ ((*1 *2 *1) (-12 (-5 *2 (-640 (-1174))) (-5 *1 (-1174)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
+ (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-560)) (-5 *3 (-563)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-555) (-147))) (-5 *1 (-537 *3 *2))
- (-4 *2 (-1248 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-4 *4 (-1233 *3))
- (-4 *5 (-720 *3 *4)) (-5 *1 (-541 *3 *4 *5 *2)) (-4 *2 (-1248 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-5 *1 (-542 *3 *2))
- (-4 *2 (-1248 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1149 *3)) (-4 *3 (-13 (-555) (-147)))
- (-5 *1 (-1145 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-640
- (-2 (|:| -2522 (-767))
- (|:| |eqns|
- (-640
- (-2 (|:| |det| *7) (|:| |rows| (-640 (-563)))
- (|:| |cols| (-640 (-563))))))
- (|:| |fgb| (-640 *7)))))
- (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147)))
- (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-767))
- (-5 *1 (-920 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7))))
- (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))))
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1260))))
+ ((*1 *2 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1260)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-379))))
((*1 *1 *1 *1) (-4 *1 (-545)))
((*1 *1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363))))
((*1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363))))
((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-767)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1165 *1)) (-5 *3 (-1169)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-948 *1)) (-4 *1 (-27))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1169)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-846) (-555)))))
- ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-846) (-555)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1165 *2)) (-5 *4 (-1169)) (-4 *2 (-430 *5))
- (-5 *1 (-32 *5 *2)) (-4 *5 (-13 (-846) (-555)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-555)) (-4 *2 (-1045))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *2 (-555))))
+ ((*1 *2 *3 *3 *1)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *3 (-1059 *4 *5 *6))
+ (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *1))))
+ (-4 *1 (-1065 *4 *5 *6 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1165 (-948 *6))) (-4 *6 (-555))
+ (-4 *2 (-945 (-407 (-948 *6)) *5 *4)) (-5 *1 (-728 *5 *4 *6 *2))
+ (-4 *5 (-789))
+ (-4 *4 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $))))))))
+(((*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-363)) (-4 *1 (-329 *3))))
((*1 *1 *2 *3)
- (|partial| -12 (-5 *2 (-1165 *1)) (-5 *3 (-917)) (-4 *1 (-1008))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-1165 *1)) (-5 *3 (-917)) (-5 *4 (-858))
- (-4 *1 (-1008))))
+ (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1233 *4)) (-4 *4 (-1212))
+ (-4 *1 (-342 *4 *3 *5)) (-4 *5 (-1233 (-407 *3)))))
((*1 *1 *2 *3)
- (|partial| -12 (-5 *3 (-917)) (-4 *4 (-13 (-844) (-363)))
- (-4 *1 (-1062 *4 *2)) (-4 *2 (-1233 *4)))))
-(((*1 *2 *3 *4 *3 *4 *4 *4 *4 *4)
- (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031))
- (-5 *1 (-751)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-743)))))
+ (-12 (-5 *2 (-1257 *4)) (-5 *3 (-1257 *1)) (-4 *4 (-172))
+ (-4 *1 (-367 *4))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1257 *4)) (-5 *3 (-1257 *1)) (-4 *4 (-172))
+ (-4 *1 (-370 *4 *5)) (-4 *5 (-1233 *4))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1257 *3)) (-4 *3 (-172)) (-4 *1 (-409 *3 *4))
+ (-4 *4 (-1233 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-172)) (-4 *1 (-417 *3)))))
(((*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-640 (-861))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-1165 (-948 *4))) (-5 *1 (-416 *3 *4))
- (-4 *3 (-417 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-4 *3 (-363))
- (-5 *2 (-1165 (-948 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6))
- (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
- (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-972 *4 *5 *6 *3)) (-4 *4 (-1045)) (-4 *5 (-789))
+ (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-4 *4 (-555))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))))
+(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1260)))))
(((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
- ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-263))))
- ((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))))
-(((*1 *1 *2 *2) (-12 (-5 *1 (-873 *2)) (-4 *2 (-1208))))
- ((*1 *1 *2 *2 *2) (-12 (-5 *1 (-875 *2)) (-4 *2 (-1208))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-939 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-640 (-939 *3))) (-4 *3 (-1045)) (-4 *1 (-1127 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-640 (-640 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-640 (-939 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4)))
- (-5 *2 (-2 (|:| |num| (-1257 *4)) (|:| |den| *4))))))
-(((*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-379)) (-5 *1 (-1036)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-640 (-609 *2))) (-5 *4 (-640 (-1169)))
- (-4 *2 (-13 (-430 (-169 *5)) (-998) (-1193)))
- (-4 *5 (-13 (-555) (-846))) (-5 *1 (-597 *5 *6 *2))
- (-4 *6 (-13 (-430 *5) (-998) (-1193))))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1031)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-555))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2315 *4)))
- (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
+ (-12 (-5 *2 (-640 *1)) (-5 *3 (-640 *7)) (-4 *1 (-1065 *4 *5 *6 *7))
+ (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1))
+ (-4 *1 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1))
+ (-4 *1 (-1065 *4 *5 *6 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1165 *2)) (-4 *2 (-945 (-407 (-948 *6)) *5 *4))
+ (-5 *1 (-728 *5 *4 *6 *2)) (-4 *5 (-789))
+ (-4 *4 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $)))))
+ (-4 *6 (-555)))))
+(((*1 *1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *2)) (-4 *2 (-172))))
+ ((*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-416 *3 *2)) (-4 *3 (-417 *2))))
+ ((*1 *2) (-12 (-4 *1 (-417 *2)) (-4 *2 (-172)))))
(((*1 *2 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-640 (-640 (-640 *4)))) (-5 *2 (-640 (-640 *4)))
- (-4 *4 (-846)) (-5 *1 (-1179 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-363)) (-5 *1 (-285 *3 *2)) (-4 *2 (-1248 *3)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-1281 *3 *4)) (-4 *1 (-374 *3 *4)) (-4 *3 (-846))
- (-4 *4 (-172))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-386 *2)) (-4 *2 (-1093))))
- ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-815 *3)) (-4 *1 (-1274 *3 *4)) (-4 *3 (-846))
- (-4 *4 (-1045))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-642 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4)
- (-12 (-5 *3 (-1151)) (-5 *5 (-684 (-225))) (-5 *6 (-225))
- (-5 *7 (-684 (-563))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-748)))))
-(((*1 *2 *3 *3 *3 *4 *5)
- (-12 (-5 *5 (-640 (-640 (-225)))) (-5 *4 (-225))
- (-5 *2 (-640 (-939 *4))) (-5 *1 (-1204)) (-5 *3 (-939 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *3 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $)))))
- (-4 *4 (-1233 *3))
- (-5 *2
- (-2 (|:| -4315 (-684 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-684 *3))))
- (-5 *1 (-350 *3 *4 *5)) (-4 *5 (-409 *3 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-563)) (-4 *4 (-1233 *3))
- (-5 *2
- (-2 (|:| -4315 (-684 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-684 *3))))
- (-5 *1 (-764 *4 *5)) (-4 *5 (-409 *3 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-349)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 *3))
- (-5 *2
- (-2 (|:| -4315 (-684 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-684 *3))))
- (-5 *1 (-981 *4 *3 *5 *6)) (-4 *6 (-720 *3 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-349)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 *3))
- (-5 *2
- (-2 (|:| -4315 (-684 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-684 *3))))
- (-5 *1 (-1266 *4 *3 *5 *6)) (-4 *6 (-409 *3 *5)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))))
+(((*1 *1) (-4 *1 (-34))) ((*1 *1) (-5 *1 (-291)))
+ ((*1 *1) (-5 *1 (-858)))
+ ((*1 *1)
+ (-12 (-4 *2 (-452)) (-4 *3 (-846)) (-4 *4 (-789))
+ (-5 *1 (-983 *2 *3 *4 *5)) (-4 *5 (-945 *2 *4 *3))))
+ ((*1 *1) (-5 *1 (-1078)))
+ ((*1 *1)
+ (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34)))
+ (-4 *3 (-13 (-1093) (-34)))))
+ ((*1 *1) (-5 *1 (-1172))) ((*1 *1) (-5 *1 (-1173))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-972 *4 *5 *6 *3)) (-4 *4 (-1045)) (-4 *5 (-789))
+ (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-4 *4 (-555))
+ (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))))
+(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2) (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1260))))
+ ((*1 *2 *2) (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1260)))))
+(((*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
+ (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1062 *4 *3)) (-4 *4 (-13 (-844) (-363)))
+ (-4 *3 (-1233 *4)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1149 (-563))) (-5 *1 (-1153 *4)) (-4 *4 (-1045))
- (-5 *3 (-563)))))
+ (-12 (-4 *4 (-789))
+ (-4 *5 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $))))) (-4 *6 (-555))
+ (-5 *2 (-2 (|:| -4092 (-948 *6)) (|:| -1315 (-948 *6))))
+ (-5 *1 (-728 *4 *5 *6 *3)) (-4 *3 (-945 (-407 (-948 *6)) *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858))))
+ ((*1 *1 *1 *1) (-5 *1 (-858))))
+(((*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *2)) (-4 *2 (-172))))
+ ((*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-416 *3 *2)) (-4 *3 (-417 *2))))
+ ((*1 *2) (-12 (-4 *1 (-417 *2)) (-4 *2 (-172)))))
(((*1 *2 *1)
(-12 (-4 *2 (-1208)) (-5 *1 (-869 *3 *2)) (-4 *3 (-1208))))
((*1 *2 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-743)))))
-(((*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-548))))))
+(((*1 *2 *3 *1) (-12 (-5 *3 (-1169)) (-5 *2 (-437)) (-5 *1 (-1173)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858))))
((*1 *2 *1)
(-12
(-5 *2
- (-2 (|:| -3799 (-640 (-858))) (|:| -1901 (-640 (-858)))
- (|:| |presup| (-640 (-858))) (|:| -3034 (-640 (-858)))
+ (-2 (|:| -3331 (-640 (-858))) (|:| -4092 (-640 (-858)))
+ (|:| |presup| (-640 (-858))) (|:| -3321 (-640 (-858)))
(|:| |args| (-640 (-858)))))
(-5 *1 (-1169)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-640 *6)) (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))
+ (-4 *3 (-555)))))
(((*1 *2 *1) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-817)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1233 (-407 *2))) (-5 *2 (-563)) (-5 *1 (-909 *4 *3))
- (-4 *3 (-1233 (-407 *4))))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-835))
- (-5 *3
- (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225)))
- (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225))))
- (|:| |ub| (-640 (-839 (-225))))))
- (-5 *2 (-1031))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-835))
- (-5 *3
- (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))
- (-5 *2 (-1031)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-684 *2)) (-4 *2 (-172)) (-5 *1 (-146 *2))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-172)) (-4 *2 (-1233 *4)) (-5 *1 (-177 *4 *2 *3))
- (-4 *3 (-720 *4 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 (-407 (-948 *5)))) (-5 *4 (-1169))
- (-5 *2 (-948 *5)) (-5 *1 (-292 *5)) (-4 *5 (-452))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-684 (-407 (-948 *4)))) (-5 *2 (-948 *4))
- (-5 *1 (-292 *4)) (-4 *4 (-452))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-370 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1233 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-684 (-169 (-407 (-563)))))
- (-5 *2 (-948 (-169 (-407 (-563))))) (-5 *1 (-760 *4))
- (-4 *4 (-13 (-363) (-844)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 (-169 (-407 (-563))))) (-5 *4 (-1169))
- (-5 *2 (-948 (-169 (-407 (-563))))) (-5 *1 (-760 *5))
- (-4 *5 (-13 (-363) (-844)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-684 (-407 (-563)))) (-5 *2 (-948 (-407 (-563))))
- (-5 *1 (-775 *4)) (-4 *4 (-13 (-363) (-844)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 (-407 (-563)))) (-5 *4 (-1169))
- (-5 *2 (-948 (-407 (-563)))) (-5 *1 (-775 *5))
- (-4 *5 (-13 (-363) (-844))))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1169)) (-5 *3 (-434)) (-4 *5 (-846))
- (-5 *1 (-1099 *5 *4)) (-4 *4 (-430 *5)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3368 *4))))
- (-4 *3 (-1093)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-644 *3 *4 *5)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-1151)) (-5 *3 (-563)) (-5 *1 (-241)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))))
+(((*1 *2 *3) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-560)) (-5 *3 (-563)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
(-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2) (-12 (-5 *2 (-640 (-767))) (-5 *1 (-1260))))
+ ((*1 *2 *2) (-12 (-5 *2 (-640 (-767))) (-5 *1 (-1260)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-553 *3)) (-4 *3 (-13 (-404) (-1193))) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-844)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1062 *4 *3)) (-4 *4 (-13 (-844) (-363)))
+ (-4 *3 (-1233 *4)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-407 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1233 *5))
+ (-5 *1 (-723 *5 *2)) (-4 *5 (-363)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-434)) (-4 *5 (-846))
+ (-5 *1 (-1099 *5 *4)) (-4 *4 (-430 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858))))
+ ((*1 *1 *1 *1) (-5 *1 (-858))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
+ (-5 *2 (-684 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-684 *4)) (-5 *1 (-416 *3 *4))
+ (-4 *3 (-417 *4))))
+ ((*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-1173)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
(((*1 *2 *3)
(-12 (-4 *4 (-1045))
(-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284)))
@@ -4795,34 +4585,42 @@
((*1 *2 *1)
(-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-998))
(-4 *2 (-1045)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-349)) (-4 *5 (-329 *4)) (-4 *6 (-1233 *5))
- (-5 *2 (-640 *3)) (-5 *1 (-773 *4 *5 *6 *3 *7)) (-4 *3 (-1233 *6))
- (-14 *7 (-917)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-640 *6)) (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))
+ (-4 *3 (-555)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 *2)) (-5 *1 (-179 *2)) (-4 *2 (-307))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *3 (-640 (-640 *4))) (-5 *2 (-640 *4)) (-4 *4 (-307))
+ (-5 *1 (-179 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-640 *8))
+ (-5 *4
+ (-640
+ (-2 (|:| -4013 (-684 *7)) (|:| |basisDen| *7)
+ (|:| |basisInv| (-684 *7)))))
+ (-5 *5 (-767)) (-4 *8 (-1233 *7)) (-4 *7 (-1233 *6)) (-4 *6 (-349))
+ (-5 *2
+ (-2 (|:| -4013 (-684 *7)) (|:| |basisDen| *7)
+ (|:| |basisInv| (-684 *7))))
+ (-5 *1 (-498 *6 *7 *8))))
+ ((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998)))
- (-5 *1 (-176 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
- (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5))))
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260))))
+ ((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-553 *3)) (-4 *3 (-13 (-404) (-1193))) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-844)) (-5 *2 (-112))))
((*1 *2 *3 *1)
(-12 (-4 *1 (-1062 *4 *3)) (-4 *4 (-13 (-844) (-363)))
(-4 *3 (-1233 *4)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12
- (-5 *2
- (-1257
- (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225))
- (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -2630 (-563))
- (|:| -2865 (-563)) (|:| |spline| (-563)) (|:| -2603 (-563))
- (|:| |axesColor| (-870)) (|:| -3528 (-563))
- (|:| |unitsColor| (-870)) (|:| |showing| (-563)))))
- (-5 *1 (-1258)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-363))
+ (-5 *2 (-2 (|:| -2376 (-418 *3)) (|:| |special| (-418 *3))))
+ (-5 *1 (-723 *5 *3)))))
(((*1 *2 *2 *3 *2) (-12 (-5 *2 (-1151)) (-5 *3 (-563)) (-5 *1 (-241))))
((*1 *2 *2 *3 *4)
(-12 (-5 *2 (-640 (-1151))) (-5 *3 (-563)) (-5 *4 (-1151))
@@ -4831,90 +4629,51 @@
((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858))))
((*1 *2 *1)
(-12 (-4 *1 (-1235 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045)))))
-(((*1 *2 *1) (-12 (-5 *1 (-910 *2)) (-4 *2 (-307)))))
-(((*1 *1) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))))
+(((*1 *1 *1 *1 *1) (-5 *1 (-858)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
+ (-5 *2 (-684 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-684 *4)) (-5 *1 (-416 *3 *4))
+ (-4 *3 (-417 *4))))
+ ((*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))))
(((*1 *1 *2 *3)
(-12 (-5 *3 (-1151)) (-4 *1 (-364 *2 *4)) (-4 *2 (-1093))
(-4 *4 (-1093))))
((*1 *1 *2)
(-12 (-4 *1 (-364 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3548 *3)))
- (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-948 *4)) (-4 *4 (-1045)) (-4 *4 (-611 *2))
- (-5 *2 (-379)) (-5 *1 (-781 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-948 *5)) (-5 *4 (-917)) (-4 *5 (-1045))
- (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555))
- (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-917)) (-4 *5 (-555))
- (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-316 *4)) (-4 *4 (-555)) (-4 *4 (-846))
- (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-316 *5)) (-5 *4 (-917)) (-4 *5 (-555))
- (-4 *5 (-846)) (-4 *5 (-611 *2)) (-5 *2 (-379))
- (-5 *1 (-781 *5)))))
-(((*1 *2 *1) (-12 (-5 *1 (-1203 *2)) (-4 *2 (-970)))))
-(((*1 *2 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-307))))
- ((*1 *2 *1) (-12 (-5 *1 (-910 *2)) (-4 *2 (-307))))
- ((*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-307))))
- ((*1 *2 *1) (-12 (-4 *1 (-1054)) (-5 *2 (-563)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-152 *2 *3 *4)) (-14 *2 (-917)) (-4 *3 (-363))
- (-14 *4 (-989 *2 *3))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *2 (-172)) (-5 *1 (-289 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1233 *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 (-367 *2)) (-4 *2 (-172)) (-4 *2 (-555))))
- ((*1 *1 *1)
- (|partial| -12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172))
- (-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 (-714 *2)) (-4 *2 (-363))))
- ((*1 *1) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363))))
- ((*1 *1 *1) (|partial| -4 *1 (-718)))
- ((*1 *1 *1) (|partial| -4 *1 (-722)))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3)))
- (-5 *1 (-772 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3))))
- ((*1 *2 *2 *1)
- (|partial| -12 (-4 *1 (-1062 *3 *2)) (-4 *3 (-13 (-844) (-363)))
- (-4 *2 (-1233 *3))))
- ((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))))
-(((*1 *1 *1 *1) (-4 *1 (-757))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-434))
+ (-5 *2
+ (-640
+ (-3 (|:| -3352 (-1169))
+ (|:| -3771 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563)))))))))
+ (-5 *1 (-1173)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-2 (|:| |k| (-1169)) (|:| |c| (-1279 *3)))))
- (-5 *1 (-1279 *3)) (-4 *3 (-1045))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-640 (-2 (|:| |k| *3) (|:| |c| (-1281 *3 *4)))))
- (-5 *1 (-1281 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1169))
- (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *2 (-1 *5 *5)) (-5 *1 (-800 *4 *5))
- (-4 *5 (-13 (-29 *4) (-1193) (-955))))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-563)) (-4 *1 (-646 *3)) (-4 *3 (-1208))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-4 *1 (-646 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *1) (-12 (-4 *1 (-509 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-846)))))
-(((*1 *1) (-5 *1 (-186))))
-(((*1 *1) (-5 *1 (-141))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-684 (-316 (-225)))) (-5 *2 (-379)) (-5 *1 (-205)))))
+ (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
+ (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *5 *5 *4 *6)
+ (-12 (-5 *5 (-609 *4)) (-5 *6 (-1165 *4))
+ (-4 *4 (-13 (-430 *7) (-27) (-1193)))
+ (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4))))
+ (-5 *1 (-559 *7 *4 *3)) (-4 *3 (-651 *4)) (-4 *3 (-1093))))
+ ((*1 *2 *3 *4 *5 *5 *5 *4 *6)
+ (-12 (-5 *5 (-609 *4)) (-5 *6 (-407 (-1165 *4)))
+ (-4 *4 (-13 (-430 *7) (-27) (-1193)))
+ (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4))))
+ (-5 *1 (-559 *7 *4 *3)) (-4 *3 (-651 *4)) (-4 *3 (-1093)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260))))
+ ((*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))))
(((*1 *2 *2)
(-12 (-4 *3 (-1034 (-563))) (-4 *3 (-13 (-846) (-555)))
(-5 *1 (-32 *3 *2)) (-4 *2 (-430 *3))))
@@ -4927,174 +4686,133 @@
((*1 *2 *1)
(-12 (-4 *1 (-1062 *3 *2)) (-4 *3 (-13 (-844) (-363)))
(-4 *2 (-1233 *3)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-112)) (-5 *5 (-684 (-169 (-225))))
- (-5 *2 (-1031)) (-5 *1 (-751)))))
-(((*1 *2 *1) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
+ (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-718)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-722)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1) (-5 *1 (-858))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-563)) (-4 *1 (-646 *3)) (-4 *3 (-1208))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-4 *1 (-646 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
+ (-5 *2 (-684 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))))
+(((*1 *1) (-5 *1 (-186))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-1173)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *1) (-12 (-4 *1 (-951)) (-5 *2 (-640 (-640 (-939 (-225)))))))
+ ((*1 *2 *1) (-12 (-4 *1 (-970)) (-5 *2 (-640 (-640 (-939 (-225))))))))
+(((*1 *2 *2 *2 *3 *3 *4 *2 *5)
+ (|partial| -12 (-5 *3 (-609 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1169))) (-5 *5 (-1165 *2))
+ (-4 *2 (-13 (-430 *6) (-27) (-1193)))
+ (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
+ (-5 *1 (-559 *6 *2 *7)) (-4 *7 (-1093))))
+ ((*1 *2 *2 *2 *3 *3 *4 *3 *2 *5)
+ (|partial| -12 (-5 *3 (-609 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1169)))
+ (-5 *5 (-407 (-1165 *2))) (-4 *2 (-13 (-430 *6) (-27) (-1193)))
+ (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
+ (-5 *1 (-559 *6 *2 *7)) (-4 *7 (-1093)))))
(((*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-49))))
((*1 *2 *1) (-12 (-5 *2 (-640 (-506))) (-5 *1 (-483)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 *8)) (-4 *8 (-945 *5 *7 *6))
- (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169))))
- (-4 *7 (-789))
- (-5 *2
- (-640
- (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8))
- (|:| |wcond| (-640 (-948 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1257 (-407 (-948 *5))))
- (|:| -4315 (-640 (-1257 (-407 (-948 *5))))))))))
- (-5 *1 (-920 *5 *6 *7 *8)) (-5 *4 (-640 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 *8)) (-5 *4 (-640 (-1169))) (-4 *8 (-945 *5 *7 *6))
- (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169))))
- (-4 *7 (-789))
- (-5 *2
- (-640
- (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8))
- (|:| |wcond| (-640 (-948 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1257 (-407 (-948 *5))))
- (|:| -4315 (-640 (-1257 (-407 (-948 *5))))))))))
- (-5 *1 (-920 *5 *6 *7 *8))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260))))
+ ((*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-948 (-563))) (-5 *2 (-640 *1)) (-4 *1 (-1008))))
((*1 *2 *3)
- (-12 (-5 *3 (-684 *7)) (-4 *7 (-945 *4 *6 *5))
- (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
- (-4 *6 (-789))
- (-5 *2
- (-640
- (-2 (|:| |eqzro| (-640 *7)) (|:| |neqzro| (-640 *7))
- (|:| |wcond| (-640 (-948 *4)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1257 (-407 (-948 *4))))
- (|:| -4315 (-640 (-1257 (-407 (-948 *4))))))))))
- (-5 *1 (-920 *4 *5 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-684 *9)) (-5 *5 (-917)) (-4 *9 (-945 *6 *8 *7))
- (-4 *6 (-13 (-307) (-147))) (-4 *7 (-13 (-846) (-611 (-1169))))
- (-4 *8 (-789))
- (-5 *2
- (-640
- (-2 (|:| |eqzro| (-640 *9)) (|:| |neqzro| (-640 *9))
- (|:| |wcond| (-640 (-948 *6)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1257 (-407 (-948 *6))))
- (|:| -4315 (-640 (-1257 (-407 (-948 *6))))))))))
- (-5 *1 (-920 *6 *7 *8 *9)) (-5 *4 (-640 *9))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-684 *9)) (-5 *4 (-640 (-1169))) (-5 *5 (-917))
- (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147)))
- (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789))
- (-5 *2
- (-640
- (-2 (|:| |eqzro| (-640 *9)) (|:| |neqzro| (-640 *9))
- (|:| |wcond| (-640 (-948 *6)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1257 (-407 (-948 *6))))
- (|:| -4315 (-640 (-1257 (-407 (-948 *6))))))))))
- (-5 *1 (-920 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 *8)) (-5 *4 (-917)) (-4 *8 (-945 *5 *7 *6))
- (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169))))
- (-4 *7 (-789))
- (-5 *2
- (-640
- (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8))
- (|:| |wcond| (-640 (-948 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1257 (-407 (-948 *5))))
- (|:| -4315 (-640 (-1257 (-407 (-948 *5))))))))))
- (-5 *1 (-920 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-684 *9)) (-5 *4 (-640 *9)) (-5 *5 (-1151))
- (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147)))
- (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-563))
- (-5 *1 (-920 *6 *7 *8 *9))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-684 *9)) (-5 *4 (-640 (-1169))) (-5 *5 (-1151))
- (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147)))
- (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-563))
- (-5 *1 (-920 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 *8)) (-5 *4 (-1151)) (-4 *8 (-945 *5 *7 *6))
- (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169))))
- (-4 *7 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-684 *10)) (-5 *4 (-640 *10)) (-5 *5 (-917))
- (-5 *6 (-1151)) (-4 *10 (-945 *7 *9 *8)) (-4 *7 (-13 (-307) (-147)))
- (-4 *8 (-13 (-846) (-611 (-1169)))) (-4 *9 (-789)) (-5 *2 (-563))
- (-5 *1 (-920 *7 *8 *9 *10))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-684 *10)) (-5 *4 (-640 (-1169))) (-5 *5 (-917))
- (-5 *6 (-1151)) (-4 *10 (-945 *7 *9 *8)) (-4 *7 (-13 (-307) (-147)))
- (-4 *8 (-13 (-846) (-611 (-1169)))) (-4 *9 (-789)) (-5 *2 (-563))
- (-5 *1 (-920 *7 *8 *9 *10))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-684 *9)) (-5 *4 (-917)) (-5 *5 (-1151))
- (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147)))
- (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-563))
- (-5 *1 (-920 *6 *7 *8 *9)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-452))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1165 *6)) (-4 *6 (-945 *5 *3 *4)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *5 (-905)) (-5 *1 (-457 *3 *4 *5 *6))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-905)))))
+ (-12 (-5 *3 (-948 (-407 (-563)))) (-5 *2 (-640 *1)) (-4 *1 (-1008))))
+ ((*1 *2 *3) (-12 (-5 *3 (-948 *1)) (-4 *1 (-1008)) (-5 *2 (-640 *1))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1165 (-563))) (-5 *2 (-640 *1)) (-4 *1 (-1008))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1165 (-407 (-563)))) (-5 *2 (-640 *1)) (-4 *1 (-1008))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1165 *1)) (-4 *1 (-1008)) (-5 *2 (-640 *1))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-844) (-363))) (-4 *3 (-1233 *4)) (-5 *2 (-640 *1))
+ (-4 *1 (-1062 *4 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-563)) (-5 *2 (-640 (-2 (|:| -2174 *3) (|:| -4167 *4))))
- (-5 *1 (-691 *3)) (-4 *3 (-1233 *4)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *1 *2 *3 *1 *3)
- (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-885 *4 *3))
- (-4 *3 (-1093)))))
+ (-12 (-5 *3 (-1257 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-363))
+ (-4 *1 (-720 *5 *6)) (-4 *5 (-172)) (-4 *6 (-1233 *5))
+ (-5 *2 (-684 *5)))))
+(((*1 *1 *1 *1) (-5 *1 (-858))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
+ (-5 *2 (-684 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))))
(((*1 *1) (-5 *1 (-186))))
(((*1 *1 *1) (-4 *1 (-656))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1257 (-1257 *4))) (-4 *4 (-1045)) (-5 *2 (-684 *4))
- (-5 *1 (-1025 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-563))) (-5 *4 (-901 (-563)))
- (-5 *2 (-684 (-563))) (-5 *1 (-588))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-640 (-684 (-563))))
- (-5 *1 (-588))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-563))) (-5 *4 (-640 (-901 (-563))))
- (-5 *2 (-640 (-684 (-563)))) (-5 *1 (-588)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1240 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1217 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-233)) (-4 *3 (-1045)) (-4 *4 (-846)) (-4 *5 (-266 *4))
- (-4 *6 (-789)) (-5 *2 (-1 *1 (-767))) (-4 *1 (-253 *3 *4 *5 *6))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-1045)) (-4 *3 (-846)) (-4 *5 (-266 *3)) (-4 *6 (-789))
- (-5 *2 (-1 *1 (-767))) (-4 *1 (-253 *4 *3 *5 *6))))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-767)) (-4 *1 (-266 *2)) (-4 *2 (-846)))))
-(((*1 *2 *1) (-12 (-5 *1 (-962 *2)) (-4 *2 (-963)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-327 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-516 *3 *4))
- (-14 *4 (-563)))))
-(((*1 *2 *3 *3 *3 *4 *5)
- (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1233 *6))
- (-4 *6 (-13 (-363) (-147) (-1034 *4))) (-5 *4 (-563))
+ (-12
(-5 *2
- (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112))))
- (|:| -1420
- (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
- (|:| |beta| *3)))))
- (-5 *1 (-1011 *6 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-4 *5 (-430 *4))
- (-5 *2 (-418 *3)) (-5 *1 (-435 *4 *5 *3)) (-4 *3 (-1233 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1169)) (-4 *5 (-1212)) (-4 *6 (-1233 *5))
- (-4 *7 (-1233 (-407 *6))) (-5 *2 (-640 (-948 *5)))
- (-5 *1 (-341 *4 *5 *6 *7)) (-4 *4 (-342 *5 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1169)) (-4 *1 (-342 *4 *5 *6)) (-4 *4 (-1212))
- (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-4 *4 (-363))
- (-5 *2 (-640 (-948 *4))))))
+ (-640
+ (-640
+ (-3 (|:| -3352 (-1169))
+ (|:| -3771 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563))))))))))
+ (-5 *1 (-1173)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-594 *3)) (-4 *3 (-1045))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-969 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-788))
+ (-4 *5 (-846)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *4 *5 *3 *6)
+ (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-640 *3)) (-5 *6 (-1165 *3))
+ (-4 *3 (-13 (-430 *7) (-27) (-1193)))
+ (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-559 *7 *3 *8)) (-4 *8 (-1093))))
+ ((*1 *2 *3 *4 *4 *5 *4 *3 *6)
+ (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-640 *3))
+ (-5 *6 (-407 (-1165 *3))) (-4 *3 (-13 (-430 *7) (-27) (-1193)))
+ (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-559 *7 *3 *8)) (-4 *8 (-1093)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260))))
+ ((*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1165 *1)) (-5 *3 (-1169)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-948 *1)) (-4 *1 (-27))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1169)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-846) (-555)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-846) (-555)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1165 *2)) (-5 *4 (-1169)) (-4 *2 (-430 *5))
+ (-5 *1 (-32 *5 *2)) (-4 *5 (-13 (-846) (-555)))))
+ ((*1 *1 *2 *3)
+ (|partial| -12 (-5 *2 (-1165 *1)) (-5 *3 (-917)) (-4 *1 (-1008))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-1165 *1)) (-5 *3 (-917)) (-5 *4 (-858))
+ (-4 *1 (-1008))))
+ ((*1 *1 *2 *3)
+ (|partial| -12 (-5 *3 (-917)) (-4 *4 (-13 (-844) (-363)))
+ (-4 *1 (-1062 *4 *2)) (-4 *2 (-1233 *4)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-716)) (-5 *2 (-917))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-718)) (-5 *2 (-767)))))
+(((*1 *1 *1 *1) (-5 *1 (-858))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-413 *3 *4 *5 *6)) (-4 *6 (-1034 *4)) (-4 *3 (-307))
+ (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-4 *6 (-409 *4 *5))
+ (-14 *7 (-1257 *6)) (-5 *1 (-414 *3 *4 *5 *6 *7))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1257 *6)) (-4 *6 (-409 *4 *5)) (-4 *4 (-988 *3))
+ (-4 *5 (-1233 *4)) (-4 *3 (-307)) (-5 *1 (-414 *3 *4 *5 *6 *7))
+ (-14 *7 *2))))
(((*1 *1) (-5 *1 (-186))))
(((*1 *1 *2)
(-12 (-5 *2 (-640 (-563))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045))
@@ -5128,42 +4846,44 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-767)) (-5 *1 (-1277 *3 *4))
(-4 *4 (-713 (-407 (-563)))) (-4 *3 (-846)) (-4 *4 (-172)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-640 (-247 *4 *5))) (-5 *2 (-247 *4 *5))
- (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *1 (-628 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-417 *4)))))
-(((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *6))))
- (-5 *4 (-1022 (-839 (-563)))) (-5 *5 (-1169)) (-5 *7 (-407 (-563)))
- (-4 *6 (-1045)) (-5 *2 (-858)) (-5 *1 (-593 *6)))))
-(((*1 *1 *1 *1) (-4 *1 (-545))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *3 (-640 (-563)))
- (-5 *1 (-879)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-1233 *4)) (-5 *1 (-539 *4 *2 *5 *6))
- (-4 *4 (-307)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-767))))))
-(((*1 *2 *3 *1)
- (-12
- (-5 *2
- (-2 (|:| |cycle?| (-112)) (|:| -3246 (-767)) (|:| |period| (-767))))
- (-5 *1 (-1149 *4)) (-4 *4 (-1208)) (-5 *3 (-767)))))
-(((*1 *2 *3 *4 *5 *6 *5 *3 *7)
- (-12 (-5 *4 (-563))
- (-5 *6
- (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))))
- (-5 *7 (-1 (-1262) (-1257 *5) (-1257 *5) (-379)))
- (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262))
- (-5 *1 (-784))))
- ((*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3)
- (-12 (-5 *4 (-563))
- (-5 *6
- (-2 (|:| |try| (-379)) (|:| |did| (-379)) (|:| -1333 (-379))))
- (-5 *7 (-1 (-1262) (-1257 *5) (-1257 *5) (-379)))
- (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262))
- (-5 *1 (-784)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-1173)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-819)) (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-307))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563))))
+ ((*1 *1 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208))))
+ ((*1 *1 *1) (-4 *1 (-865 *2)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-969 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-788))
+ (-4 *4 (-846)))))
+(((*1 *2 *3 *4 *4 *3 *3 *5)
+ (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-1165 *3))
+ (-4 *3 (-13 (-430 *6) (-27) (-1193)))
+ (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
+ (-5 *2 (-2 (|:| -2840 *3) (|:| |coeff| *3)))
+ (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093))))
+ ((*1 *2 *3 *4 *4 *3 *4 *3 *5)
+ (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-407 (-1165 *3)))
+ (-4 *3 (-13 (-430 *6) (-27) (-1193)))
+ (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
+ (-5 *2 (-2 (|:| -2840 *3) (|:| |coeff| *3)))
+ (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260))))
+ ((*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-407 (-563))) (-5 *1 (-1020 *3))
+ (-4 *3 (-13 (-844) (-363) (-1018)))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3))
+ (-4 *3 (-1233 *2))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-4 *1 (-1062 *2 *3)) (-4 *2 (-13 (-844) (-363)))
+ (-4 *3 (-1233 *2)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-716)) (-5 *2 (-917))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-718)) (-5 *2 (-767)))))
(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-31))))
((*1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-49))))
((*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-133))))
@@ -5175,50 +4895,39 @@
((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1015))))
((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1060))))
((*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-1089)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1126 (-225))) (-5 *3 (-640 (-263))) (-5 *1 (-1259))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1126 (-225))) (-5 *3 (-1151)) (-5 *1 (-1259))))
- ((*1 *1 *1) (-5 *1 (-1259))))
-(((*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-563))
- (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031))
- (-5 *1 (-744)))))
-(((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1043)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1257 (-640 (-2 (|:| -2619 *4) (|:| -2555 (-1113))))))
- (-4 *4 (-349)) (-5 *2 (-767)) (-5 *1 (-346 *4))))
- ((*1 *2)
- (-12 (-5 *2 (-767)) (-5 *1 (-351 *3 *4)) (-14 *3 (-917))
- (-14 *4 (-917))))
- ((*1 *2)
- (-12 (-5 *2 (-767)) (-5 *1 (-352 *3 *4)) (-4 *3 (-349))
- (-14 *4
- (-3 (-1165 *3)
- (-1257 (-640 (-2 (|:| -2619 *3) (|:| -2555 (-1113)))))))))
- ((*1 *2)
- (-12 (-5 *2 (-767)) (-5 *1 (-353 *3 *4)) (-4 *3 (-349))
- (-14 *4 (-917)))))
-(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1260)))))
+(((*1 *1 *1 *1) (-5 *1 (-858))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-307)) (-4 *3 (-988 *2)) (-4 *4 (-1233 *3))
+ (-5 *1 (-413 *2 *3 *4 *5)) (-4 *5 (-13 (-409 *3 *4) (-1034 *3))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1173)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545))))
+ ((*1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-967)))))
+(((*1 *2 *3 *4 *4 *3 *5)
+ (-12 (-5 *4 (-609 *3)) (-5 *5 (-1165 *3))
+ (-4 *3 (-13 (-430 *6) (-27) (-1193)))
+ (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
+ (-5 *2 (-584 *3)) (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093))))
+ ((*1 *2 *3 *4 *4 *4 *3 *5)
+ (-12 (-5 *4 (-609 *3)) (-5 *5 (-407 (-1165 *3)))
+ (-4 *3 (-13 (-430 *6) (-27) (-1193)))
+ (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
+ (-5 *2 (-584 *3)) (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259))))
+ ((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |var| (-640 (-1169))) (|:| |pred| (-52))))
- (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *2 (-1257 (-316 (-379))))
- (-5 *1 (-305)))))
-(((*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-546))))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 (-767) *2)) (-5 *4 (-767)) (-4 *2 (-1093))
- (-5 *1 (-673 *2))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1 *3 (-767) *3)) (-4 *3 (-1093)) (-5 *1 (-677 *3)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4)
- (-247 *4 (-407 (-563)))))
- (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *2 (-112))
- (-5 *1 (-505 *4 *5)))))
+ (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-1059 *3 *4 *2)) (-4 *2 (-846))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *2 (-846)))))
+(((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-172)) (-4 *2 (-555))))
+ ((*1 *1 *1) (|partial| -4 *1 (-718))))
(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-96))))
((*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-109))))
((*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-114))))
@@ -5234,343 +4943,331 @@
((*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-1068 *3)) (-14 *3 *2)))
((*1 *2 *1) (-12 (-5 *2 (-506)) (-5 *1 (-1108))))
((*1 *1 *1) (-5 *1 (-1169))))
-(((*1 *2 *1 *1 *3)
- (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1093) (-34)))
- (-5 *2 (-112)) (-5 *1 (-1133 *4 *5)) (-4 *4 (-13 (-1093) (-34))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-375 *4 *2))
- (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4408)))))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-939 (-225)))) (-5 *1 (-1258)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *2 *2 *3) (-12 (-5 *3 (-767)) (-5 *1 (-585 *2)) (-4 *2 (-545)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-443 *4 *3 *5))
- (-4 *3 (-1233 *4))
- (-4 *5 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1248 *4))
- (-4 *4 (-38 (-407 (-563)))) (-5 *2 (-1 (-1149 *4) (-1149 *4)))
- (-5 *1 (-1250 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
- (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *3))
- (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-640 *3)) (-4 *3 (-1059 *4 *5 *6)) (-4 *4 (-555))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
- (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 (-640 *7) (-640 *7))) (-5 *2 (-640 *7))
- (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555)) (-4 *5 (-789))
- (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169))
- (-14 *4 *2))))
-(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *1 *1) (-4 *1 (-1132))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-819)) (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-751)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *3 (-767)) (-4 *4 (-13 (-555) (-147)))
- (-5 *1 (-1227 *4 *2)) (-4 *2 (-1233 *4)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
- (-5 *1 (-437)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
- (-5 *2 (-1031)) (-5 *1 (-746)))))
-(((*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-108))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-536))) (-5 *1 (-536)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1169)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-697 *4 *5 *6 *7))
- (-4 *4 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208))
- (-4 *7 (-1208)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1165 *7)) (-4 *5 (-1045))
- (-4 *7 (-1045)) (-4 *2 (-1233 *5)) (-5 *1 (-501 *5 *2 *6 *7))
- (-4 *6 (-1233 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1045)) (-4 *7 (-1045))
- (-4 *4 (-1233 *5)) (-5 *2 (-1165 *7)) (-5 *1 (-501 *5 *4 *6 *7))
- (-4 *6 (-1233 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-684 *2)) (-4 *4 (-1233 *2))
- (-4 *2 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $)))))
- (-5 *1 (-499 *2 *4 *5)) (-4 *5 (-409 *2 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
- (-4 *5 (-238 *3 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-782)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563))))
+ (-5 *4 (-316 (-169 (-379)))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563))))
+ (-5 *4 (-316 (-379))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563))))
+ (-5 *4 (-316 (-563))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-169 (-379)))))
+ (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-379)))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-563)))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-169 (-379)))))
+ (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-379)))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-563)))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-169 (-379)))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-379))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-563))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563))))
+ (-5 *4 (-316 (-689))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563))))
+ (-5 *4 (-316 (-694))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563))))
+ (-5 *4 (-316 (-696))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-689)))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-694)))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-696)))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-689)))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-694)))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-696)))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-689))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-694))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-696))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-689))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-694))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-696))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-689))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-694))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-696))) (-5 *1 (-330))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1151)) (-5 *1 (-330))))
+ ((*1 *1 *1 *1) (-5 *1 (-858))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+ (-12 (-5 *3 (-767)) (-5 *4 (-1257 *2)) (-4 *5 (-307))
+ (-4 *6 (-988 *5)) (-4 *2 (-13 (-409 *6 *7) (-1034 *6)))
+ (-5 *1 (-413 *5 *6 *7 *2)) (-4 *7 (-1233 *6)))))
+(((*1 *1) (-5 *1 (-1172))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1151)) (-5 *3 (-819)) (-5 *1 (-818)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-563)) (|has| *1 (-6 -4398)) (-4 *1 (-404))
- (-5 *2 (-917)))))
+ (-12 (-5 *2 (-640 (-640 (-563)))) (-5 *1 (-967))
+ (-5 *3 (-640 (-563))))))
(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5))
- (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *1 (-1270 *3 *4 *5 *6))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-640 *8)) (-5 *3 (-1 (-112) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555))
- (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1270 *5 *6 *7 *8)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-581)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-174 *3)) (-4 *3 (-307))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-669 *3)) (-4 *3 (-1208))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-767)) (-4 *1 (-736 *3 *4)) (-4 *3 (-1045))
- (-4 *4 (-846))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-865 *3)) (-5 *2 (-563))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-640 *3)) (-4 *1 (-976 *3)) (-4 *3 (-1045))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-640 *1)) (-5 *3 (-640 *7)) (-4 *1 (-1065 *4 *5 *6 *7))
- (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1))
- (-4 *1 (-1065 *4 *5 *6 *7))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1))
- (-4 *1 (-1065 *4 *5 *6 *3))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
- (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 *10))
- (-5 *1 (-621 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1065 *5 *6 *7 *8))
- (-4 *10 (-1102 *5 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452))
- (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1042 *5 *6)))
- (-5 *1 (-625 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452))
- (-14 *6 (-640 (-1169)))
- (-5 *2
- (-640 (-1139 *5 (-531 (-860 *6)) (-860 *6) (-776 *5 (-860 *6)))))
- (-5 *1 (-625 *5 *6))))
- ((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
- (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-5 *2 (-640 (-1023 *5 *6 *7 *8))) (-5 *1 (-1023 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
- (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-5 *2 (-640 (-1023 *5 *6 *7 *8))) (-5 *1 (-1023 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452))
- (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1042 *5 *6)))
- (-5 *1 (-1042 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
- (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 *1))
- (-4 *1 (-1065 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
- (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-5 *2 (-640 (-1139 *5 *6 *7 *8))) (-5 *1 (-1139 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
- (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-5 *2 (-640 (-1139 *5 *6 *7 *8))) (-5 *1 (-1139 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1))
- (-4 *1 (-1201 *4 *5 *6 *7)))))
-(((*1 *2 *3) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-560)) (-5 *3 (-563)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-434))
+ (-12
(-5 *2
(-640
- (-3 (|:| -3348 (-1169))
- (|:| -2445 (-640 (-3 (|:| S (-1169)) (|:| P (-948 (-563)))))))))
- (-5 *1 (-1173)))))
-(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694))))
- ((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1103)))))
-(((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-585 *3)) (-4 *3 (-545)))))
+ (-2
+ (|:| -2387
+ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (|:| -2556
+ (-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| (-1149 (-225)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -4166
+ (-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 (-558)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259))))
+ ((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-5 *2 (-767)))))
+(((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-172)) (-4 *2 (-555))))
+ ((*1 *1 *1) (|partial| -4 *1 (-718))))
+(((*1 *1 *1 *1) (-5 *1 (-858))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172))
+ (-4 *5 (-1233 *4)) (-5 *2 (-684 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-4 *5 (-1233 *4)) (-5 *2 (-684 *4))
+ (-5 *1 (-408 *3 *4 *5)) (-4 *3 (-409 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *1 (-409 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3))
+ (-5 *2 (-684 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172))))
+ ((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1172)))))
+(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-1151)) (-5 *3 (-819)) (-5 *1 (-818)))))
+(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-967)))))
+(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-558)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259))))
+ ((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))))
+(((*1 *2 *1) (-12 (-5 *2 (-483)) (-5 *1 (-218))))
+ ((*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208))))
+ ((*1 *2 *1) (-12 (-5 *2 (-483)) (-5 *1 (-671))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))))
+(((*1 *1 *1 *1) (-5 *1 (-858))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172))
+ (-4 *5 (-1233 *4)) (-5 *2 (-684 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-409 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3))
+ (-5 *2 (-684 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1113)) (-5 *2 (-112)) (-5 *1 (-817)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1185 *4 *5))
- (-4 *4 (-1093)) (-4 *5 (-1093)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3))))
- ((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))))
+ (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1612 *4)))
+ (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *1) (-5 *1 (-558))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259))))
+ ((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)))))
+(((*1 *1 *1 *1)
+ (|partial| -12 (-4 *2 (-172)) (-5 *1 (-289 *2 *3 *4 *5 *6 *7))
+ (-4 *3 (-1233 *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 (-707 *2 *3 *4 *5 *6)) (-4 *2 (-172))
+ (-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 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172))
+ (-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) (-5 *1 (-858))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))))
+(((*1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1172)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-1151)) (-5 *4 (-1113)) (-5 *2 (-112)) (-5 *1 (-817)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-555))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1612 *4)))
+ (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
(((*1 *2 *3) (-12 (-5 *3 (-491)) (-5 *2 (-686 (-578))) (-5 *1 (-578)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-413 *3 *4 *5 *6)) (-4 *6 (-1034 *4)) (-4 *3 (-307))
- (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-4 *6 (-409 *4 *5))
- (-14 *7 (-1257 *6)) (-5 *1 (-414 *3 *4 *5 *6 *7))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1257 *6)) (-4 *6 (-409 *4 *5)) (-4 *4 (-988 *3))
- (-4 *5 (-1233 *4)) (-4 *3 (-307)) (-5 *1 (-414 *3 *4 *5 *6 *7))
- (-14 *7 *2))))
-(((*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1178)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
- (-4 *3 (-367 *4))))
- ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-205))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-640 (-379))) (-5 *2 (-379)) (-5 *1 (-205)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-917)) (-5 *1 (-782)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-557 *2)) (-4 *2 (-545)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259))))
+ ((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1))
+ (-4 *1 (-1059 *3 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1242 *3 *4 *5)) (-5 *1 (-319 *3 *4 *5))
+ (-4 *3 (-13 (-363) (-846))) (-14 *4 (-1169)) (-14 *5 *3)))
+ ((*1 *2 *1) (-12 (-4 *1 (-404)) (-5 *2 (-563))))
+ ((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-418 *3)) (-4 *3 (-555))))
+ ((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-694))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-1093)) (-5 *1 (-709 *3 *2 *4)) (-4 *3 (-846))
+ (-14 *4
+ (-1 (-112) (-2 (|:| -2552 *3) (|:| -3311 *2))
+ (-2 (|:| -2552 *3) (|:| -3311 *2)))))))
+(((*1 *1 *1 *1) (-5 *1 (-858))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))))
(((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))))
(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-858))))
((*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-958)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
- (-4 *4 (-1045)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-5 *2 (-1 (-112) *5))
- (-5 *1 (-886 *4 *5)) (-4 *5 (-1208))))
- ((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1159)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-449 *4 *5 *6 *2)))))
+(((*1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1172)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *2 (-555)) (-5 *1 (-965 *2 *3)) (-4 *3 (-1233 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-818)) (-5 *1 (-817)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379)))
+ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379)))
(|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168))))
(-5 *1 (-1168)))))
(((*1 *2 *1) (-12 (-4 *1 (-1086 *3)) (-4 *3 (-1208)) (-5 *2 (-563)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-363)) (-4 *7 (-1233 *5)) (-4 *4 (-720 *5 *7))
- (-5 *2 (-2 (|:| -2835 (-684 *6)) (|:| |vec| (-1257 *5))))
- (-5 *1 (-807 *5 *6 *7 *4 *3)) (-4 *6 (-651 *5)) (-4 *3 (-651 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-5 *2 (-1 (-112) *5))
+ (-5 *1 (-886 *4 *5)) (-4 *5 (-1208))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1159)))))
+(((*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-557 *3)) (-4 *3 (-545)))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))))
-(((*1 *2)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))))
-(((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-144)))))
-(((*1 *2 *3 *4 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-752)))))
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-1 (-640 *2) *2 *2 *2)) (-4 *2 (-1093))
+ (-5 *1 (-103 *2))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1093)) (-5 *1 (-103 *2)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1045)) (-5 *1 (-708 *3 *2)) (-4 *2 (-1233 *3)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-418 *3)) (-4 *3 (-555)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-114)) (-4 *2 (-1093)) (-4 *2 (-846))
- (-5 *1 (-113 *2)))))
-(((*1 *2 *3 *1 *4 *4 *4 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-5 *2 (-640 (-1023 *5 *6 *7 *3))) (-5 *1 (-1023 *5 *6 *7 *3))
- (-4 *3 (-1059 *5 *6 *7))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-640 *6)) (-4 *1 (-1065 *3 *4 *5 *6)) (-4 *3 (-452))
- (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))))
- ((*1 *1 *2 *1)
- (-12 (-4 *1 (-1065 *3 *4 *5 *2)) (-4 *3 (-452)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5))))
- ((*1 *2 *3 *1 *4 *4 *4 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-5 *2 (-640 (-1139 *5 *6 *7 *3))) (-5 *1 (-1139 *5 *6 *7 *3))
- (-4 *3 (-1059 *5 *6 *7)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3)
- (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *6 (-225))
- (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-748)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-407 *2)) (-4 *2 (-1233 *5))
- (-5 *1 (-803 *5 *2 *3 *6))
- (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563)))))
- (-4 *3 (-651 *2)) (-4 *6 (-651 *4))))
+ (-12 (-5 *3 (-640 (-1169))) (-5 *2 (-1262)) (-5 *1 (-1172))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 (-407 *2))) (-4 *2 (-1233 *5))
- (-5 *1 (-803 *5 *2 *3 *6))
- (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-651 *2))
- (-4 *6 (-651 (-407 *2))))))
+ (-12 (-5 *4 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1262))
+ (-5 *1 (-1172))))
+ ((*1 *2 *3 *4 *1)
+ (-12 (-5 *4 (-640 (-1169))) (-5 *3 (-1169)) (-5 *2 (-1262))
+ (-5 *1 (-1172)))))
+(((*1 *2 *1) (-12 (-5 *2 (-818)) (-5 *1 (-817)))))
+(((*1 *2 *2 *2 *2 *3)
+ (-12 (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1169)) (-5 *6 (-640 (-609 *3)))
+ (-5 *5 (-609 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *7)))
+ (-4 *7 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *2 (-2 (|:| -2840 *3) (|:| |coeff| *3)))
+ (-5 *1 (-556 *7 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-147))
- (-4 *3 (-307)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *1 (-973 *3 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-916)) (-5 *2 (-2 (|:| -2311 (-640 *1)) (|:| -4333 *1)))
- (-5 *3 (-640 *1)))))
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-452) (-147))) (-5 *2 (-418 *3))
+ (-5 *1 (-100 *4 *3)) (-4 *3 (-1233 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-13 (-452) (-147)))
+ (-5 *2 (-418 *3)) (-5 *1 (-100 *5 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-307)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4))
- (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3)))
- (-5 *1 (-1117 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-996 *3)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-563)) (-4 *4 (-13 (-555) (-147))) (-5 *1 (-537 *4 *2))
- (-4 *2 (-1248 *4))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-563)) (-4 *4 (-13 (-363) (-368) (-611 *3)))
- (-4 *5 (-1233 *4)) (-4 *6 (-720 *4 *5)) (-5 *1 (-541 *4 *5 *6 *2))
- (-4 *2 (-1248 *6))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-563)) (-4 *4 (-13 (-363) (-368) (-611 *3)))
- (-5 *1 (-542 *4 *2)) (-4 *2 (-1248 *4))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-13 (-555) (-147)))
- (-5 *1 (-1145 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-536)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-5 *2 (-112))))
+ (-12 (-4 *4 (-1045)) (-5 *2 (-112)) (-5 *1 (-444 *4 *3))
+ (-4 *3 (-1233 *4))))
((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-747)))))
-(((*1 *1) (-5 *1 (-157)))
- ((*1 *2 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1165 *7))
- (-4 *5 (-1045)) (-4 *7 (-1045)) (-4 *2 (-1233 *5))
- (-5 *1 (-501 *5 *2 *6 *7)) (-4 *6 (-1233 *2)))))
-(((*1 *2 *3 *4 *4 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
- (-5 *2 (-1031)) (-5 *1 (-748)))))
+ (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1045)) (-5 *2 (-1257 *3)) (-5 *1 (-708 *3 *4))
+ (-4 *4 (-1233 *3)))))
+(((*1 *1) (-5 *1 (-144))) ((*1 *1 *1) (-5 *1 (-858))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-418 *4)) (-4 *4 (-555)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-363) (-1193) (-998))))))
-(((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1151)) (-5 *1 (-192))))
- ((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1151)) (-5 *1 (-300))))
- ((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1151)) (-5 *1 (-305)))))
-(((*1 *2)
- (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5)))
- (-5 *2 (-767)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *3 (-342 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-767))))
- ((*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))))
-(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694))))
- ((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-694)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151))
- (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *1)
- (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23))
- (-14 *4 *3))))
+ (-12 (-5 *3 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
+ (-5 *2 (-1262)) (-5 *1 (-1172))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1169))
+ (-5 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-5 *2 (-1262))
+ (-5 *1 (-1172))))
+ ((*1 *2 *3 *4 *1)
+ (-12 (-5 *3 (-1169))
+ (-5 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-5 *2 (-1262))
+ (-5 *1 (-1172)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-817)))))
+(((*1 *2 *2 *3 *3 *4)
+ (-12 (-5 *4 (-767)) (-4 *3 (-555)) (-5 *1 (-965 *3 *2))
+ (-4 *2 (-1233 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1169))
+ (-4 *5 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *2 (-584 *3)) (-5 *1 (-556 *5 *3))
+ (-4 *3 (-13 (-27) (-1193) (-430 *5))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-5 *2 (-112)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1045)) (-5 *1 (-708 *3 *4))
+ (-4 *4 (-1233 *3)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-858))))
+ ((*1 *1 *1) (-5 *1 (-858))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))))
(((*1 *2 *2 *3)
(-12 (-5 *3 (-407 (-563))) (-4 *4 (-1034 (-563)))
(-4 *4 (-13 (-846) (-555))) (-5 *1 (-32 *4 *2)) (-4 *2 (-430 *4))))
@@ -5643,274 +5340,223 @@
(-5 *1 (-1155 *3))))
((*1 *1 *1 *2)
(-12 (-4 *1 (-1248 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4))
- (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-169 *4)) (-5 *1 (-181 *4 *3))
- (-4 *4 (-13 (-363) (-844))) (-4 *3 (-1233 *2)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *5 (-988 *4))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-142 *4 *5 *3))
- (-4 *3 (-373 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *5 (-988 *4))
- (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4)))
- (-5 *1 (-503 *4 *5 *6 *3)) (-4 *6 (-373 *4)) (-4 *3 (-373 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-684 *5)) (-4 *5 (-988 *4)) (-4 *4 (-555))
- (-5 *2 (-2 (|:| |num| (-684 *4)) (|:| |den| *4)))
- (-5 *1 (-688 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563)))))
- (-4 *6 (-1233 *5))
- (-5 *2 (-2 (|:| -1420 *7) (|:| |rh| (-640 (-407 *6)))))
- (-5 *1 (-803 *5 *6 *7 *3)) (-5 *4 (-640 (-407 *6)))
- (-4 *7 (-651 *6)) (-4 *3 (-651 (-407 *6)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *5 (-988 *4))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1226 *4 *5 *3))
- (-4 *3 (-1233 *5)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
- (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1230 *4 *5)) (-5 *3 (-640 *5)) (-14 *4 (-1169))
- (-4 *5 (-363)) (-5 *1 (-919 *4 *5))))
+(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1172))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172))))
+ ((*1 *2 *3 *1) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-817)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-767)) (-4 *2 (-555)) (-5 *1 (-965 *2 *4))
+ (-4 *4 (-1233 *2)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-1169))
+ (-4 *4 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-556 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998))))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1045)) (-5 *2 (-1257 *3)) (-5 *1 (-708 *3 *4))
+ (-4 *4 (-1233 *3)))))
+(((*1 *1 *1) (-5 *1 (-858))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-307))))
+ ((*1 *2 *1 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |lm| (-386 *3)) (|:| |rm| (-386 *3))))
+ (-5 *1 (-386 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -1765 (-767)) (|:| -3443 (-767))))
+ (-5 *1 (-767))))
((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 *5)) (-4 *5 (-363)) (-5 *2 (-1165 *5))
- (-5 *1 (-919 *4 *5)) (-14 *4 (-1169))))
- ((*1 *2 *3 *3 *4 *4)
- (-12 (-5 *3 (-640 *6)) (-5 *4 (-767)) (-4 *6 (-363))
- (-5 *2 (-407 (-948 *6))) (-5 *1 (-1046 *5 *6)) (-14 *5 (-1169)))))
-(((*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-1214))))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1045)) (-5 *1 (-1229 *3 *2)) (-4 *2 (-1233 *3)))))
+ (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3)))
+ (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5
- (-1 (-2 (|:| |ans| *6) (|:| -1701 *6) (|:| |sol?| (-112))) (-563)
- *6))
- (-4 *6 (-363)) (-4 *7 (-1233 *6))
- (-5 *2 (-2 (|:| |answer| (-584 (-407 *7))) (|:| |a0| *6)))
- (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))))
+ (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-640 *3))
+ (-4 *3 (-13 (-27) (-1193) (-430 *6)))
+ (-4 *6 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-556 *6 *3)))))
(((*1 *2)
- (-12 (-4 *4 (-363)) (-5 *2 (-767)) (-5 *1 (-328 *3 *4))
- (-4 *3 (-329 *4))))
- ((*1 *2) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-767)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1219 *3 *2)) (-4 *3 (-1045))
- (-4 *2 (-1248 *3)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-112)) (-5 *1 (-825)))))
-(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1210)))))
+ (-12 (-4 *2 (-13 (-430 *3) (-998))) (-5 *1 (-276 *3 *2))
+ (-4 *3 (-13 (-846) (-555))))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)))))
(((*1 *2)
- (-12
- (-5 *2 (-2 (|:| -3289 (-640 (-1169))) (|:| -3244 (-640 (-1169)))))
- (-5 *1 (-1210)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846))
- (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-767))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846))
- (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-767))))
- ((*1 *2 *1) (-12 (-4 *1 (-266 *3)) (-4 *3 (-846)) (-5 *2 (-767))))
- ((*1 *2 *1) (-12 (-4 *1 (-349)) (-5 *2 (-917))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-336 *4 *5 *6 *7)) (-4 *4 (-13 (-368) (-363)))
- (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-4 *7 (-342 *4 *5 *6))
- (-5 *2 (-767)) (-5 *1 (-392 *4 *5 *6 *7))))
- ((*1 *2 *1) (-12 (-4 *1 (-402)) (-5 *2 (-829 (-917)))))
- ((*1 *2 *1) (-12 (-4 *1 (-404)) (-5 *2 (-563))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-594 *3)) (-4 *3 (-1045))))
- ((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-594 *3)) (-4 *3 (-1045))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-555)) (-5 *2 (-563)) (-5 *1 (-620 *3 *4))
- (-4 *4 (-1233 *3))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *2 (-767)) (-4 *1 (-736 *4 *3)) (-4 *4 (-1045))
- (-4 *3 (-846))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-736 *4 *3)) (-4 *4 (-1045)) (-4 *3 (-846))
- (-5 *2 (-767))))
- ((*1 *2 *1) (-12 (-4 *1 (-865 *3)) (-5 *2 (-767))))
- ((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-900 *3)) (-4 *3 (-1093))))
- ((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-901 *3)) (-4 *3 (-1093))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-336 *5 *6 *7 *8)) (-4 *5 (-430 *4))
- (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6)))
- (-4 *8 (-342 *5 *6 *7))
- (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-767))
- (-5 *1 (-907 *4 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-336 (-407 (-563)) *4 *5 *6))
- (-4 *4 (-1233 (-407 (-563)))) (-4 *5 (-1233 (-407 *4)))
- (-4 *6 (-342 (-407 (-563)) *4 *5)) (-5 *2 (-767))
- (-5 *1 (-908 *4 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-336 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-363))
- (-4 *7 (-1233 *6)) (-4 *4 (-1233 (-407 *7))) (-4 *8 (-342 *6 *7 *4))
- (-4 *9 (-13 (-368) (-363))) (-5 *2 (-767))
- (-5 *1 (-1014 *6 *7 *4 *8 *9))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1233 *3)) (-4 *3 (-1045)) (-4 *3 (-555))
- (-5 *2 (-767))))
- ((*1 *2 *1 *2)
- (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))))
-(((*1 *2 *3) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-446)) (-5 *3 (-563)))))
+ (-12 (-4 *3 (-1045)) (-5 *2 (-954 (-708 *3 *4))) (-5 *1 (-708 *3 *4))
+ (-4 *4 (-1233 *3)))))
+(((*1 *1 *1 *1) (-5 *1 (-858))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *3 (-563)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-418 *2)) (-4 *2 (-555)))))
(((*1 *1 *1) (-12 (-5 *1 (-500 *2)) (-14 *2 (-563))))
((*1 *1 *1) (-5 *1 (-1113))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-363) (-844)))
- (-5 *2 (-640 (-2 (|:| -2760 (-640 *3)) (|:| -4076 *5))))
- (-5 *1 (-181 *5 *3)) (-4 *3 (-1233 (-169 *5)))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-363) (-844)))
- (-5 *2 (-640 (-2 (|:| -2760 (-640 *3)) (|:| -4076 *4))))
- (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1272 (-1169) *3)) (-4 *3 (-1045)) (-5 *1 (-1279 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1272 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
- (-5 *1 (-1281 *3 *4)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1045)) (-5 *2 (-1257 *3)) (-5 *1 (-708 *3 *4))
- (-4 *4 (-1233 *3)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-563))
- (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031))
- (-5 *1 (-744)))))
+ (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *5 (-368))
+ (-5 *2 (-767)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-856)) (-5 *2 (-686 (-129))) (-5 *3 (-129)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-452)) (-4 *4 (-555))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| -3232 *4))) (-5 *1 (-965 *4 *3))
+ (-4 *3 (-1233 *4)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1169))
+ (-4 *5 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *2 (-2 (|:| -2840 *3) (|:| |coeff| *3))) (-5 *1 (-556 *5 *3))
+ (-4 *3 (-13 (-27) (-1193) (-430 *5))))))
+(((*1 *2)
+ (-12 (-4 *2 (-13 (-430 *3) (-998))) (-5 *1 (-276 *3 *2))
+ (-4 *3 (-13 (-846) (-555))))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-244 *2)) (-4 *2 (-1208))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208))))
- ((*1 *1 *1 *2)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2)) (-4 *2 (-1208))))
- ((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
- (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
+ (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1))
+ (-4 *1 (-1059 *3 *4 *5)))))
+(((*1 *1 *1 *1 *1) (-5 *1 (-858))) ((*1 *1 *1 *1) (-5 *1 (-858)))
+ ((*1 *1 *1) (-5 *1 (-858))))
+(((*1 *2)
+ (-12 (-4 *3 (-1045)) (-5 *2 (-954 (-708 *3 *4))) (-5 *1 (-708 *3 *4))
+ (-4 *4 (-1233 *3)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-500 *2)) (-14 *2 (-563))))
((*1 *1 *1 *1) (-5 *1 (-1113))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-684 (-407 (-948 *4)))) (-4 *4 (-452))
- (-5 *2 (-640 (-3 (-407 (-948 *4)) (-1158 (-1169) (-948 *4)))))
- (-5 *1 (-292 *4)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
- ((*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
-(((*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-1193))))
- ((*1 *2 *1) (-12 (-5 *1 (-331 *2)) (-4 *2 (-846))))
- ((*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-609 *3)) (-4 *3 (-846)))))
-(((*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922))))
- ((*1 *1 *1 *2 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923))))
- ((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *1 *1 *1) (-4 *1 (-963))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 (-1270 *4 *5 *6 *7)))
- (-5 *1 (-1270 *4 *5 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-640 *9)) (-5 *4 (-1 (-112) *9 *9))
- (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1059 *6 *7 *8)) (-4 *6 (-555))
- (-4 *7 (-789)) (-4 *8 (-846)) (-5 *2 (-640 (-1270 *6 *7 *8 *9)))
- (-5 *1 (-1270 *6 *7 *8 *9)))))
-(((*1 *1) (-5 *1 (-819))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 (-379))) (-5 *1 (-263))))
+ ((*1 *1)
+ (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-555)) (-4 *2 (-172))))
+ ((*1 *2 *1) (-12 (-5 *1 (-418 *2)) (-4 *2 (-555)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *2 (-1045)) (-5 *1 (-50 *2 *3)) (-14 *3 (-640 (-1169)))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-640 (-917))) (-4 *2 (-363)) (-5 *1 (-152 *4 *2 *5))
+ (-14 *4 (-917)) (-14 *5 (-989 *4 *2))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-316 *3)) (-5 *1 (-223 *3 *4))
+ (-4 *3 (-13 (-1045) (-846))) (-14 *4 (-640 (-1169)))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-323 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-131))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-382 *2 *3)) (-4 *3 (-1093)) (-4 *2 (-1045))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-4 *2 (-555)) (-5 *1 (-620 *2 *4))
+ (-4 *4 (-1233 *2))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-704 *2)) (-4 *2 (-1045))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *2 (-1045)) (-5 *1 (-731 *2 *3)) (-4 *3 (-722))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-640 *5)) (-5 *3 (-640 (-767))) (-4 *1 (-736 *4 *5))
+ (-4 *4 (-1045)) (-4 *5 (-846))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-767)) (-4 *1 (-736 *4 *2)) (-4 *4 (-1045))
+ (-4 *2 (-846))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-4 *1 (-848 *2)) (-4 *2 (-1045))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-640 *6)) (-5 *3 (-640 (-767))) (-4 *1 (-945 *4 *5 *6))
+ (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *6 (-846))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-767)) (-4 *1 (-945 *4 *5 *2)) (-4 *4 (-1045))
+ (-4 *5 (-789)) (-4 *2 (-846))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-767)) (-4 *2 (-945 *4 (-531 *5) *5))
+ (-5 *1 (-1119 *4 *5 *2)) (-4 *4 (-1045)) (-4 *5 (-846))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-767)) (-5 *2 (-948 *4)) (-5 *1 (-1202 *4))
+ (-4 *4 (-1045)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-856)) (-5 *2 (-686 (-548))) (-5 *3 (-548)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-452)) (-4 *4 (-555))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3232 *4)))
+ (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| -3245 *1) (|:| -4395 *1) (|:| |associate| *1)))
+ (-4 *1 (-555)))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-275)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1))
+ (-4 *1 (-1059 *3 *4 *5)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-349)) (-4 *2 (-1045)) (-5 *1 (-708 *2 *3))
+ (-4 *3 (-1233 *2)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858))))
+ ((*1 *1 *1) (-5 *1 (-858))))
+(((*1 *1 *1) (-12 (-5 *1 (-418 *2)) (-4 *2 (-555)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-500 *2)) (-14 *2 (-563))))
((*1 *1 *1 *1) (-5 *1 (-1113))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-839 (-379))) (-5 *2 (-839 (-225))) (-5 *1 (-305)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-870)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225)))
- (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-63 LSFUN2))))
- (-5 *2 (-1031)) (-5 *1 (-749)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-640 (-294 *4))) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846))
- (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1 (-1119 *4 *3 *5))) (-4 *4 (-38 (-407 (-563))))
+ (-4 *4 (-1045)) (-4 *3 (-846)) (-5 *1 (-1119 *4 *3 *5))
+ (-4 *5 (-945 *4 (-531 *3) *3))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1 (-1202 *4))) (-5 *3 (-1169)) (-5 *1 (-1202 *4))
+ (-4 *4 (-38 (-407 (-563)))) (-4 *4 (-1045)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-856)) (-5 *2 (-686 (-1215))) (-5 *3 (-1215)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *2 (-555)) (-4 *2 (-452)) (-5 *1 (-965 *2 *3))
+ (-4 *3 (-1233 *2)))))
+(((*1 *1 *1) (-4 *1 (-555))))
+(((*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-275)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1097)) (-5 *3 (-770)) (-5 *1 (-52)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-302))))
+ ((*1 *1 *1) (-4 *1 (-302)))
+ ((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858))))
+ ((*1 *1 *1) (-5 *1 (-858))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *3 (-112)) (-5 *1 (-110))))
+ ((*1 *2 *2) (-12 (-5 *2 (-917)) (|has| *1 (-6 -4399)) (-4 *1 (-404))))
+ ((*1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-917)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-611 (-888 *3))) (-4 *3 (-882 *3))
+ (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-611 (-888 *3))) (-4 *2 (-882 *3))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-856)) (-5 *3 (-128)) (-5 *2 (-767)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-555)) (-5 *2 (-640 (-767))) (-5 *1 (-965 *4 *3))
+ (-4 *3 (-1233 *4)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-555)) (-5 *2 (-112)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))))
- (-5 *2 (-640 (-225))) (-5 *1 (-305)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1097)) (-5 *3 (-770)) (-5 *1 (-52)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-294 (-829 *3)))
- (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *2 (-829 *3)) (-5 *1 (-633 *5 *3))
- (-4 *3 (-13 (-27) (-1193) (-430 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-294 (-829 (-948 *5)))) (-4 *5 (-452))
- (-5 *2 (-829 (-407 (-948 *5)))) (-5 *1 (-634 *5))
- (-5 *3 (-407 (-948 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-294 (-407 (-948 *5)))) (-5 *3 (-407 (-948 *5)))
- (-4 *5 (-452)) (-5 *2 (-829 *3)) (-5 *1 (-634 *5)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *2)
- (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093))
- (-4 *4 (-1093)))))
-(((*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-307)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-917)) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
- ((*1 *1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-263)))))
-(((*1 *1 *1) (-4 *1 (-143)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+ (-3
+ (|:| |noa|
+ (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225)))
+ (|:| |lb| (-640 (-839 (-225))))
+ (|:| |cf| (-640 (-316 (-225))))
+ (|:| |ub| (-640 (-839 (-225))))))
+ (|:| |lsa|
+ (-2 (|:| |lfn| (-640 (-316 (-225))))
+ (|:| -2522 (-640 (-225)))))))
+ (-5 *2 (-640 (-1151))) (-5 *1 (-267)))))
(((*1 *1 *1) (-5 *1 (-112))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169))
- (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *2 (-584 *3)) (-5 *1 (-426 *5 *3))
- (-4 *3 (-13 (-1193) (-29 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169)) (-4 *5 (-13 (-555) (-1034 (-563)) (-147)))
- (-5 *2 (-584 (-407 (-948 *5)))) (-5 *1 (-569 *5))
- (-5 *3 (-407 (-948 *5))))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-294 *2)) (-4 *2 (-722)) (-4 *2 (-1208)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-363)) (-4 *3 (-1045))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4333 *1)))
- (-4 *1 (-848 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-241)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1103)) (-5 *3 (-563)))))
+(((*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3)
+ (-12 (-5 *6 (-640 (-112))) (-5 *7 (-684 (-225)))
+ (-5 *8 (-684 (-563))) (-5 *3 (-563)) (-5 *4 (-225)) (-5 *5 (-112))
+ (-5 *2 (-1031)) (-5 *1 (-750)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-563)) (|has| *1 (-6 -4399)) (-4 *1 (-404))
+ (-5 *2 (-917)))))
(((*1 *1 *2 *2)
(-12 (-5 *2 (-767)) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5))
(-4 *4 (-373 *3)) (-4 *5 (-373 *3))))
((*1 *1 *2)
(-12 (-5 *2 (-767)) (-4 *1 (-1255 *3)) (-4 *3 (-23)) (-4 *3 (-1208)))))
-(((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
- (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-5 *2 (-640 (-1023 *5 *6 *7 *8))) (-5 *1 (-1023 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
- (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-5 *2 (-640 (-1139 *5 *6 *7 *8))) (-5 *1 (-1139 *5 *6 *7 *8)))))
-(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-38 (-407 (-563))))
+ (-4 *2 (-172)))))
(((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-767)) (-4 *1 (-231 *4))
(-4 *4 (-1045))))
@@ -5933,684 +5579,588 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-640 *3)) (-4 *1 (-896 *3)) (-4 *3 (-1093))))
((*1 *1 *1 *2) (-12 (-4 *1 (-896 *2)) (-4 *2 (-1093)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-452)))))
-(((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| |polnum| (-778 *3)) (|:| |polden| *3) (|:| -2269 (-767))))
- (-5 *1 (-778 *3)) (-4 *3 (-1045))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -2269 (-767))))
- (-4 *1 (-1059 *3 *4 *5)))))
-(((*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-557 *3)) (-4 *3 (-545))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)) (-5 *2 (-418 *3))
- (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-945 *6 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307))
- (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-418 (-1165 *7)))
- (-5 *1 (-738 *4 *5 *6 *7)) (-5 *3 (-1165 *7))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-452)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *2 (-418 *1)) (-4 *1 (-945 *3 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-846)) (-4 *5 (-789)) (-4 *6 (-452)) (-5 *2 (-418 *3))
- (-5 *1 (-975 *4 *5 *6 *3)) (-4 *3 (-945 *6 *5 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-452))
- (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-418 (-1165 (-407 *7))))
- (-5 *1 (-1164 *4 *5 *6 *7)) (-5 *3 (-1165 (-407 *7)))))
- ((*1 *2 *1) (-12 (-5 *2 (-418 *1)) (-4 *1 (-1212))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-418 *3)) (-5 *1 (-1236 *4 *3))
- (-4 *3 (-13 (-1233 *4) (-555) (-10 -8 (-15 -3548 ($ $ $)))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
- (-14 *5 (-640 (-1169)))
- (-5 *2
- (-640 (-1139 *4 (-531 (-860 *6)) (-860 *6) (-776 *4 (-860 *6)))))
- (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1149 *2)) (-4 *2 (-307)) (-5 *1 (-174 *2)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *3))))
- (-5 *1 (-593 *3)) (-4 *3 (-1045)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-452) (-147))) (-5 *2 (-418 *3))
- (-5 *1 (-100 *4 *3)) (-4 *3 (-1233 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-13 (-452) (-147)))
- (-5 *2 (-418 *3)) (-5 *1 (-100 *5 *3)))))
+ (-12 (-4 *4 (-555)) (-5 *2 (-640 *3)) (-5 *1 (-965 *4 *3))
+ (-4 *3 (-1233 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-555)) (-5 *2 (-112)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-1031)) (-5 *3 (-1169)) (-5 *1 (-267)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1103)) (-5 *3 (-563)))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-749)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1257 *4)) (-4 *4 (-1045)) (-4 *2 (-1233 *4))
- (-5 *1 (-444 *4 *2))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-407 (-1165 (-316 *5)))) (-5 *3 (-1257 (-316 *5)))
- (-5 *4 (-563)) (-4 *5 (-13 (-555) (-846))) (-5 *1 (-1123 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-923)))))
+ (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-1151)) (-5 *1 (-192))))
+ ((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-299 *4 *5)) (-14 *4 *3)
- (-14 *5 *3)))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1087 (-839 (-225)))) (-5 *3 (-225)) (-5 *2 (-112))
- (-5 *1 (-305))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
- (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-1171 (-407 (-563))))
- (-5 *1 (-190)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -3646 *6) (|:| |coeff| *6)) "failed") *6))
- (-4 *6 (-363)) (-4 *7 (-1233 *6))
- (-5 *2 (-2 (|:| |answer| (-584 (-407 *7))) (|:| |a0| *6)))
- (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4)))
- (-5 *2 (-1257 *6)) (-5 *1 (-336 *3 *4 *5 *6))
- (-4 *6 (-342 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-331 *3)) (-4 *3 (-846)))))
+ (-12 (-5 *3 (-563)) (|has| *1 (-6 -4399)) (-4 *1 (-404))
+ (-5 *2 (-917)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172))))
+ ((*1 *2 *3 *3 *2)
+ (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-923)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 (-563)))
- (-5 *2 (-1257 (-563))) (-5 *1 (-1284 *4)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-601 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1208))
- (-5 *2 (-112)))))
+ (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1623 *4)))
+ (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-407 (-563))) (-4 *1 (-553 *3))
+ (-4 *3 (-13 (-404) (-1193)))))
+ ((*1 *1 *2) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193)))))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))))
+(((*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-112)) (-5 *1 (-267)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1103)) (-5 *3 (-563)))))
+(((*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 (-684 (-225))) (-5 *5 (-112)) (-5 *6 (-225))
+ (-5 *7 (-684 (-563)))
+ (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-80 CONFUN))))
+ (-5 *9 (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN))))
+ (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-749)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))))
+(((*1 *2 *1) (-12 (-4 *1 (-349)) (-5 *2 (-767))))
+ ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-402)) (-5 *2 (-767)))))
(((*1 *2 *3 *3)
(-12 (-5 *3 (-767)) (-5 *2 (-1 (-379))) (-5 *1 (-1036)))))
-(((*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1151)) (-5 *1 (-706)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-363))
- (-5 *2
- (-2 (|:| A (-684 *5))
- (|:| |eqs|
- (-640
- (-2 (|:| C (-684 *5)) (|:| |g| (-1257 *5)) (|:| -1420 *6)
- (|:| |rh| *5))))))
- (-5 *1 (-809 *5 *6)) (-5 *3 (-684 *5)) (-5 *4 (-1257 *5))
- (-4 *6 (-651 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-363)) (-4 *6 (-651 *5))
- (-5 *2 (-2 (|:| -2835 (-684 *6)) (|:| |vec| (-1257 *5))))
- (-5 *1 (-809 *5 *6)) (-5 *3 (-684 *6)) (-5 *4 (-1257 *5)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1055 (-1020 *3) (-1165 (-1020 *3))))
- (-5 *1 (-1020 *3)) (-4 *3 (-13 (-844) (-363) (-1018))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-648 (-407 *2))) (-4 *2 (-1233 *4)) (-5 *1 (-806 *4 *2))
- (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-649 *2 (-407 *2))) (-4 *2 (-1233 *4))
- (-5 *1 (-806 *4 *2))
- (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563))))))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-640 *7)) (-5 *3 (-563)) (-4 *7 (-945 *4 *5 *6))
- (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-5 *1 (-449 *4 *5 *6 *7)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -3548 (-778 *3)) (|:| |coef1| (-778 *3))))
- (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *2 (-2 (|:| -3548 *1) (|:| |coef1| *1)))
- (-4 *1 (-1059 *3 *4 *5)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12
- (-5 *3
- (-1 (-3 (-2 (|:| -3646 *4) (|:| |coeff| *4)) "failed") *4))
- (-4 *4 (-363)) (-5 *1 (-573 *4 *2)) (-4 *2 (-1233 *4)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-1281 *3 *4)) (-4 *1 (-374 *3 *4)) (-4 *3 (-846))
- (-4 *4 (-172))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-386 *2)) (-4 *2 (-1093))))
- ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-815 *2)) (-4 *2 (-846))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-815 *3)) (-4 *1 (-1274 *3 *4)) (-4 *3 (-846))
- (-4 *4 (-1045))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-609 *5)) (-4 *5 (-430 *4)) (-4 *4 (-1034 (-563)))
- (-4 *4 (-13 (-846) (-555))) (-5 *2 (-1165 *5)) (-5 *1 (-32 *4 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-609 *1)) (-4 *1 (-1045)) (-4 *1 (-302))
- (-5 *2 (-1165 *1)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
- (-5 *2
- (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563))
- (|:| |success| (-112))))
- (-5 *1 (-785)) (-5 *5 (-563)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1165 *7)) (-5 *3 (-563)) (-4 *7 (-945 *6 *4 *5))
- (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045))
- (-5 *1 (-321 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-112)) (-4 *4 (-13 (-363) (-844))) (-5 *2 (-418 *3))
- (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-418 *3))
- (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-4 *6 (-1233 *9)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *9 (-307))
- (-4 *10 (-945 *9 *7 *8))
- (-5 *2
- (-2 (|:| |deter| (-640 (-1165 *10)))
- (|:| |dterm|
- (-640 (-640 (-2 (|:| -4008 (-767)) (|:| |pcoef| *10)))))
- (|:| |nfacts| (-640 *6)) (|:| |nlead| (-640 *10))))
- (-5 *1 (-774 *6 *7 *8 *9 *10)) (-5 *3 (-1165 *10)) (-5 *4 (-640 *6))
- (-5 *5 (-640 *10)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-751)))))
-(((*1 *1 *2 *2 *2 *2 *2 *2 *2 *2)
- (-12 (-4 *1 (-793 *2)) (-4 *2 (-172))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-995 *3)) (-4 *3 (-172)) (-5 *1 (-795 *3)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172)))))
+(((*1 *2 *2) (-12 (-5 *2 (-640 (-316 (-225)))) (-5 *1 (-267)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1103)))))
+(((*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 (-684 (-225))) (-5 *6 (-112)) (-5 *7 (-684 (-563)))
+ (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-65 QPHESS))))
+ (-5 *3 (-563)) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-749)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-402)) (-5 *2 (-767))))
+ ((*1 *1 *1) (-4 *1 (-402))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *3 *2))
- (-4 *2 (-13 (-27) (-1193) (-430 (-169 *3))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-846) (-1034 (-563))))
- (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 (-169 *4))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1169))
- (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-1197 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-917)) (-5 *2 (-1165 *3)) (-5 *1 (-1182 *3))
- (-4 *3 (-363)))))
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-363)) (-4 *3 (-1045))
+ (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-848 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-363)) (-4 *5 (-1045))
+ (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-849 *5 *3))
+ (-4 *3 (-848 *5)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-640 *3)) (-4 *3 (-945 *4 *6 *5)) (-4 *4 (-452))
+ (-4 *5 (-846)) (-4 *6 (-789)) (-5 *1 (-983 *4 *5 *6 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *2) (-12 (-5 *2 (-640 (-316 (-225)))) (-5 *1 (-267)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-1257 (-563))) (-5 *3 (-563)) (-5 *1 (-1103))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-1257 (-563))) (-5 *3 (-640 (-563))) (-5 *4 (-563))
+ (-5 *1 (-1103)))))
+(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-112))
+ (-5 *2 (-1031)) (-5 *1 (-749)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-857))))
+ ((*1 *1 *2) (-12 (-5 *2 (-388)) (-5 *1 (-857)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-407 *4)) (-4 *4 (-1233 *3)) (-4 *3 (-13 (-363) (-147)))
+ (-5 *1 (-399 *3 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-363)) (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3)))
+ (-5 *1 (-762 *3 *4)) (-4 *3 (-704 *4))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-363)) (-4 *3 (-1045))
+ (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-848 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-363)) (-4 *5 (-1045))
+ (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-849 *5 *3))
+ (-4 *3 (-848 *5)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-452)) (-4 *4 (-846))
+ (-4 *5 (-789)) (-5 *1 (-983 *3 *4 *5 *6)) (-4 *6 (-945 *3 *5 *4)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1 (-1149 *4) (-1149 *4))) (-5 *2 (-1149 *4))
(-5 *1 (-1282 *4)) (-4 *4 (-1208))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 (-640 (-1149 *5)) (-640 (-1149 *5)))) (-5 *4 (-563))
(-5 *2 (-640 (-1149 *5))) (-5 *1 (-1282 *5)) (-4 *5 (-1208)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-751)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
- ((*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
-(((*1 *2) (-12 (-5 *2 (-1140 (-1151))) (-5 *1 (-391)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *2 (-1059 *4 *5 *6)) (-5 *1 (-772 *4 *5 *6 *2 *3))
- (-4 *3 (-1065 *4 *5 *6 *2)))))
-(((*1 *1) (-5 *1 (-437))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-373 *2)) (-4 *2 (-1208)) (-4 *2 (-846))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-373 *3)) (-4 *3 (-1208))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-964 *2)) (-4 *2 (-846))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1127 *2)) (-4 *2 (-1045))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)) (-4 *3 (-1045))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-640 (-1157 *3 *4))) (-5 *1 (-1157 *3 *4))
- (-14 *3 (-917)) (-4 *4 (-1045))))
- ((*1 *1 *1 *1)
- (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1169)) (-5 *5 (-1087 (-225))) (-5 *2 (-923))
- (-5 *1 (-921 *3)) (-4 *3 (-611 (-536)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169)) (-5 *2 (-923)) (-5 *1 (-921 *3))
- (-4 *3 (-611 (-536)))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-923))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225)))
- (-5 *1 (-923)))))
-(((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-563)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-767)) (-4 *5 (-172))))
- ((*1 *1 *1 *2 *1 *2)
- (-12 (-5 *2 (-563)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-767)) (-4 *5 (-172))))
- ((*1 *2 *2 *3)
- (-12
- (-5 *2
- (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4)
- (-247 *4 (-407 (-563)))))
- (-5 *3 (-640 (-860 *4))) (-14 *4 (-640 (-1169))) (-14 *5 (-767))
- (-5 *1 (-505 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-316 (-225)))) (-5 *4 (-767))
+ (-5 *2 (-684 (-225))) (-5 *1 (-267)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-640 (-563))) (-5 *3 (-112)) (-5 *1 (-1103)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225)))
+ (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-66 FUNCT1))))
+ (-5 *2 (-1031)) (-5 *1 (-749)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-529))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-576))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-857)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1233 *3)) (-5 *1 (-399 *3 *2))
+ (-4 *3 (-13 (-363) (-147))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-555)) (-4 *3 (-1045))
+ (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-848 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-555)) (-4 *5 (-1045))
+ (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-849 *5 *3))
+ (-4 *3 (-848 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)) (-5 *2 (-640 *6))
+ (-5 *1 (-983 *3 *4 *5 *6)) (-4 *6 (-945 *3 *5 *4)))))
(((*1 *1 *1)
(-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1149 (-1149 *4))) (-5 *2 (-1149 *4)) (-5 *1 (-1153 *4))
- (-4 *4 (-1045)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1008)) (-5 *2 (-858)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-818)))))
-(((*1 *2 *1) (-12 (-4 *1 (-555)) (-5 *2 (-112)))))
-(((*1 *2)
- (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093))
- (-4 *4 (-1093)))))
+ (-12 (-5 *3 (-640 (-316 (-225)))) (-5 *2 (-112)) (-5 *1 (-267)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-684 (-563))) (-5 *3 (-640 (-563))) (-5 *1 (-1103)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225)))
+ (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-63 LSFUN2))))
+ (-5 *2 (-1031)) (-5 *1 (-749)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-555)) (-4 *3 (-1045))
+ (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-848 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-555)) (-4 *5 (-1045))
+ (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-849 *5 *3))
+ (-4 *3 (-848 *5)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1116 *3 *4 *2 *5)) (-4 *4 (-1045)) (-4 *5 (-238 *3 *4))
- (-4 *2 (-238 *3 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1201 *4 *5 *3 *6)) (-4 *4 (-555)) (-4 *5 (-789))
- (-4 *3 (-846)) (-4 *6 (-1059 *4 *5 *3)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2059 *8)))
- (-4 *7 (-1059 *4 *5 *6)) (-4 *8 (-1065 *4 *5 *6 *7)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-984 *4 *5 *6 *7 *8))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2059 *8)))
- (-4 *7 (-1059 *4 *5 *6)) (-4 *8 (-1065 *4 *5 *6 *7)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-1100 *4 *5 *6 *7 *8)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-1045)))))
+ (-12 (-4 *2 (-945 *3 *5 *4)) (-5 *1 (-983 *3 *4 *5 *2))
+ (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)))))
(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-1134 *2 *3)) (-4 *2 (-13 (-1093) (-34)))
- (-4 *3 (-13 (-1093) (-34))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-555)) (-4 *3 (-172)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2))
- (-4 *2 (-682 *3 *4 *5)))))
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *2) (-12 (-5 *2 (-316 (-225))) (-5 *1 (-267)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-684 (-563))) (-5 *1 (-1103)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225)))
+ (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-79 LSFUN1))))
+ (-5 *2 (-1031)) (-5 *1 (-749)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-640 (-767)))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-330)))))
-(((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172))))
- ((*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))))
+ (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *6))
+ (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-901 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4))
- (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1045)) (-5 *1 (-708 *3 *4))
- (-4 *4 (-1233 *3)))))
+ (-12 (-5 *4 (-640 *3)) (-4 *3 (-945 *5 *6 *7)) (-4 *5 (-452))
+ (-4 *6 (-789)) (-4 *7 (-846))
+ (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5)))
+ (-5 *1 (-449 *5 *6 *7 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-452)) (-4 *3 (-846)) (-4 *4 (-789))
+ (-5 *1 (-983 *2 *3 *4 *5)) (-4 *5 (-945 *2 *4 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *2) (|partial| -12 (-5 *2 (-316 (-225))) (-5 *1 (-267)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-452)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
- (-5 *2 (-640 *3)) (-5 *1 (-973 *4 *5 *6 *3))
- (-4 *3 (-1059 *4 *5 *6)))))
-(((*1 *2)
- (|partial| -12 (-4 *4 (-1212)) (-4 *5 (-1233 (-407 *2)))
- (-4 *2 (-1233 *4)) (-5 *1 (-341 *3 *4 *2 *5))
- (-4 *3 (-342 *4 *2 *5))))
- ((*1 *2)
- (|partial| -12 (-4 *1 (-342 *3 *2 *4)) (-4 *3 (-1212))
- (-4 *4 (-1233 (-407 *2))) (-4 *2 (-1233 *3)))))
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-640 (-684 (-563))))
+ (-5 *1 (-1103)))))
+(((*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7)
+ (-12 (-5 *3 (-563)) (-5 *5 (-112)) (-5 *6 (-684 (-225)))
+ (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN))))
+ (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-749)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
- (-5 *1 (-584 *3)) (-4 *3 (-363)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4407)) (-4 *1 (-489 *4))
- (-4 *4 (-1208)) (-5 *2 (-112)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-336 *5 *6 *7 *8)) (-4 *5 (-430 *4))
- (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6)))
- (-4 *8 (-342 *5 *6 *7))
- (-4 *4 (-13 (-846) (-555) (-1034 (-563))))
- (-5 *2 (-2 (|:| -3254 (-767)) (|:| -1516 *8)))
- (-5 *1 (-907 *4 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-336 (-407 (-563)) *4 *5 *6))
- (-4 *4 (-1233 (-407 (-563)))) (-4 *5 (-1233 (-407 *4)))
- (-4 *6 (-342 (-407 (-563)) *4 *5))
- (-5 *2 (-2 (|:| -3254 (-767)) (|:| -1516 *6)))
- (-5 *1 (-908 *4 *5 *6)))))
-(((*1 *1) (-4 *1 (-34))) ((*1 *1) (-5 *1 (-291)))
- ((*1 *1) (-5 *1 (-858)))
- ((*1 *1)
- (-12 (-4 *2 (-452)) (-4 *3 (-846)) (-4 *4 (-789))
- (-5 *1 (-983 *2 *3 *4 *5)) (-4 *5 (-945 *2 *4 *3))))
- ((*1 *1) (-5 *1 (-1078)))
- ((*1 *1)
- (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34)))
- (-4 *3 (-13 (-1093) (-34)))))
- ((*1 *1) (-5 *1 (-1172))) ((*1 *1) (-5 *1 (-1173))))
-(((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-767)) (-4 *5 (-363)) (-5 *2 (-407 *6))
- (-5 *1 (-863 *5 *4 *6)) (-4 *4 (-1248 *5)) (-4 *6 (-1233 *5))))
- ((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-767)) (-5 *4 (-1249 *5 *6 *7)) (-4 *5 (-363))
- (-14 *6 (-1169)) (-14 *7 *5) (-5 *2 (-407 (-1230 *6 *5)))
- (-5 *1 (-864 *5 *6 *7))))
- ((*1 *2 *3 *3 *4)
- (|partial| -12 (-5 *3 (-767)) (-5 *4 (-1249 *5 *6 *7)) (-4 *5 (-363))
- (-14 *6 (-1169)) (-14 *7 *5) (-5 *2 (-407 (-1230 *6 *5)))
- (-5 *1 (-864 *5 *6 *7)))))
-(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-755)))))
+ (-12 (-5 *2 (-640 (-901 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *3 *2)
+ (-12
+ (-5 *2
+ (-640
+ (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-767)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *3 (-789)) (-4 *6 (-945 *4 *3 *5)) (-4 *4 (-452)) (-4 *5 (-846))
+ (-5 *1 (-449 *4 *3 *5 *6)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212))
- (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1034 (-563))) (-4 *1 (-302)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))))
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-1233 *2)) (-4 *2 (-1233 *4)) (-5 *1 (-981 *4 *2 *3 *5))
+ (-4 *4 (-349)) (-4 *5 (-720 *2 *3)))))
(((*1 *1 *1)
(-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225)))
+ (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225))))
+ (|:| |ub| (-640 (-839 (-225))))))
+ (-5 *1 (-267)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1045)) (-4 *2 (-682 *4 *5 *6))
+ (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1233 *4)) (-4 *5 (-373 *4))
+ (-4 *6 (-373 *4)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-640 (-563))) (-5 *3 (-684 (-563))) (-5 *1 (-1103)))))
+(((*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-748)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-767)) (-4 *4 (-307)) (-4 *6 (-1233 *4))
- (-5 *2 (-1257 (-640 *6))) (-5 *1 (-455 *4 *6)) (-5 *5 (-640 *6)))))
-(((*1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
-(((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-530 *3)) (-4 *3 (-13 (-722) (-25))))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-1024 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-640 (-684 *3))) (-4 *3 (-1045)) (-5 *1 (-1024 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-1024 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-640 (-684 *3))) (-4 *3 (-1045)) (-5 *1 (-1024 *3)))))
+ (-12 (-5 *2 (-640 (-640 (-767)))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-640 (-948 *3))) (-4 *3 (-452))
- (-5 *1 (-360 *3 *4)) (-14 *4 (-640 (-1169)))))
- ((*1 *2 *2)
- (|partial| -12 (-5 *2 (-640 (-776 *3 (-860 *4)))) (-4 *3 (-452))
- (-14 *4 (-640 (-1169))) (-5 *1 (-625 *3 *4)))))
+ (-12
+ (-5 *2
+ (-640
+ (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-767)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *4 (-789)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452)) (-4 *5 (-846))
+ (-5 *1 (-449 *3 *4 *5 *6)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
(((*1 *2 *2 *2)
(|partial| -12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3))))
((*1 *1 *1 *1)
(|partial| -12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4))
- (-4 *4 (-349)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-789))
+ (-4 *3 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $))))) (-4 *5 (-555))
+ (-5 *1 (-728 *4 *3 *5 *2)) (-4 *2 (-945 (-407 (-948 *5)) *4 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *4 (-1045)) (-4 *5 (-789))
+ (-4 *3
+ (-13 (-846)
+ (-10 -8 (-15 -2219 ((-1169) $))
+ (-15 -2517 ((-3 $ "failed") (-1169))))))
+ (-5 *1 (-980 *4 *5 *3 *2)) (-4 *2 (-945 (-948 *4) *5 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-640 *6))
+ (-4 *6
+ (-13 (-846)
+ (-10 -8 (-15 -2219 ((-1169) $))
+ (-15 -2517 ((-3 $ "failed") (-1169))))))
+ (-4 *4 (-1045)) (-4 *5 (-789)) (-5 *1 (-980 *4 *5 *6 *2))
+ (-4 *2 (-945 (-948 *4) *5 *6)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *1 *1 *1) (-5 *1 (-858))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *1 (-103 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-684 (-563))) (-5 *1 (-1103)))))
+(((*1 *2 *3 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-748)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-640 (-901 *3))) (-4 *3 (-1093)) (-5 *1 (-900 *3)))))
+(((*1 *2 *3 *2)
+ (-12
+ (-5 *2
+ (-640
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *3)
+ (|:| |polj| *3))))
+ (-4 *5 (-789)) (-4 *3 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *6 (-846))
+ (-5 *1 (-449 *4 *5 *6 *3)))))
(((*1 *1 *1 *1) (-5 *1 (-129)))
((*1 *1 *1 *1) (-12 (-5 *1 (-1176 *2)) (-14 *2 (-917))))
((*1 *1 *1 *1) (-5 *1 (-1213))) ((*1 *1 *1 *1) (-5 *1 (-1214)))
((*1 *1 *1 *1) (-5 *1 (-1215))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1 (-1119 *4 *3 *5))) (-4 *4 (-38 (-407 (-563))))
- (-4 *4 (-1045)) (-4 *3 (-846)) (-5 *1 (-1119 *4 *3 *5))
- (-4 *5 (-945 *4 (-531 *3) *3))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1 (-1202 *4))) (-5 *3 (-1169)) (-5 *1 (-1202 *4))
- (-4 *4 (-38 (-407 (-563)))) (-4 *4 (-1045)))))
-(((*1 *2)
- (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
- (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262))
- (-5 *1 (-1066 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
- (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262))
- (-5 *1 (-1101 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-418 (-1165 *1))) (-5 *1 (-316 *4)) (-5 *3 (-1165 *1))
- (-4 *4 (-452)) (-4 *4 (-555)) (-4 *4 (-846))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-905)) (-5 *2 (-418 (-1165 *1))) (-5 *3 (-1165 *1)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093))
- (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4))
- (-5 *2
- (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-407 *5))
- (|:| |c2| (-407 *5)) (|:| |deg| (-767))))
- (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1233 (-407 *5))))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-1165 *3)) (-5 *1 (-41 *4 *3))
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-789))
+ (-4 *3 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $))))) (-4 *5 (-555))
+ (-5 *1 (-728 *4 *3 *5 *2)) (-4 *2 (-945 (-407 (-948 *5)) *4 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *4 (-1045)) (-4 *5 (-789))
(-4 *3
- (-13 (-363) (-302)
- (-10 -8 (-15 -2143 ((-1118 *4 (-609 $)) $))
- (-15 -2154 ((-1118 *4 (-609 $)) $))
- (-15 -1693 ($ (-1118 *4 (-609 $))))))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-816)) (-14 *5 (-1169))
- (-5 *2 (-640 *4)) (-5 *1 (-1107 *4 *5)))))
+ (-13 (-846)
+ (-10 -8 (-15 -2219 ((-1169) $))
+ (-15 -2517 ((-3 $ "failed") (-1169))))))
+ (-5 *1 (-980 *4 *5 *3 *2)) (-4 *2 (-945 (-948 *4) *5 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-640 *6))
+ (-4 *6
+ (-13 (-846)
+ (-10 -8 (-15 -2219 ((-1169) $))
+ (-15 -2517 ((-3 $ "failed") (-1169))))))
+ (-4 *4 (-1045)) (-4 *5 (-789)) (-5 *1 (-980 *4 *5 *6 *2))
+ (-4 *2 (-945 (-948 *4) *5 *6)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *3) (-12 (-5 *3 (-407 (-563))) (-5 *2 (-225)) (-5 *1 (-305)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *1 *1 *1) (-5 *1 (-129)))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-1176 *2)) (-14 *2 (-917))))
- ((*1 *1 *1 *1) (-5 *1 (-1213))) ((*1 *1 *1 *1) (-5 *1 (-1214)))
- ((*1 *1 *1 *1) (-5 *1 (-1215))))
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4))))
+ (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-748)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-899 *3)) (-4 *3 (-1093)) (-5 *2 (-1095 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *4 (-1093)) (-5 *2 (-1095 (-640 *4))) (-5 *1 (-900 *4))
+ (-5 *3 (-640 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *4 (-1093)) (-5 *2 (-1095 (-1095 *4))) (-5 *1 (-900 *4))
+ (-5 *3 (-1095 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *2 (-1095 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))))
(((*1 *1 *1) (-4 *1 (-626)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2))
(-4 *2 (-13 (-430 *3) (-998) (-1193))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-684 *5)) (-4 *5 (-1045)) (-5 *1 (-1049 *3 *4 *5))
- (-14 *3 (-767)) (-14 *4 (-767)))))
-(((*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545))))
- ((*1 *1 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-967)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-484 *3)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
- (-4 *3 (-367 *4))))
- ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-407 (-563))) (-5 *4 (-563)) (-5 *2 (-52))
- (-5 *1 (-1001)))))
-(((*1 *2 *2) (-12 (-5 *2 (-917)) (|has| *1 (-6 -4398)) (-4 *1 (-404))))
+(((*1 *1 *1 *1) (-5 *1 (-129)))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-1176 *2)) (-14 *2 (-917))))
+ ((*1 *1 *1 *1) (-5 *1 (-1213))) ((*1 *1 *1 *1) (-5 *1 (-1214)))
+ ((*1 *1 *1 *1) (-5 *1 (-1215))))
+(((*1 *2 *3 *3 *3 *3)
+ (-12 (-4 *4 (-452)) (-4 *3 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
+ (-5 *1 (-449 *4 *3 *5 *6)) (-4 *6 (-945 *4 *3 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-363)) (-4 *3 (-1045))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4334 *1)))
+ (-4 *1 (-848 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *2) (-12 (-5 *2 (-917)) (|has| *1 (-6 -4399)) (-4 *1 (-404))))
((*1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-917))))
((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-694))))
((*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-694)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-553 *3)) (-4 *3 (-13 (-404) (-1193))) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-844)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1062 *4 *3)) (-4 *4 (-13 (-844) (-363)))
- (-4 *3 (-1233 *4)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *4 *5)
- (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-640 *3))
- (-4 *3 (-13 (-430 *6) (-27) (-1193)))
- (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-565 *6 *3 *7)) (-4 *7 (-1093)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112))
- (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *2
- (-3 (|:| |%expansion| (-313 *5 *3 *6 *7))
- (|:| |%problem| (-2 (|:| |func| (-1151)) (|:| |prob| (-1151))))))
- (-5 *1 (-420 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1193) (-430 *5)))
- (-14 *6 (-1169)) (-14 *7 *3))))
+(((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-316 (-379))) (-5 *1 (-305)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-263))) (-5 *4 (-1169)) (-5 *2 (-112))
- (-5 *1 (-263)))))
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4))
+ (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-748)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1095 (-1095 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-452)) (-4 *3 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
+ (-5 *1 (-449 *4 *3 *5 *6)) (-4 *6 (-945 *4 *3 *5)))))
(((*1 *1 *1) (-5 *1 (-225)))
((*1 *1 *1)
(-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169)))
(-14 *3 (-640 (-1169))) (-4 *4 (-387))))
((*1 *1 *1) (-5 *1 (-379))) ((*1 *1) (-5 *1 (-379))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-545)) (-5 *1 (-159 *2)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1103)) (-5 *3 (-563)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-169 (-225))) (-5 *4 (-563)) (-5 *2 (-1031))
- (-5 *1 (-754)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-846)) (-5 *2 (-1180 (-640 *4))) (-5 *1 (-1179 *4))
- (-5 *3 (-640 *4)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-684 (-407 (-948 (-563)))))
- (-5 *2 (-684 (-316 (-563)))) (-5 *1 (-1027)))))
+(((*1 *2)
+ (-12 (-5 *2 (-767)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-767)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
(((*1 *1 *1)
(-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *3) (-12 (-5 *3 (-948 (-225))) (-5 *2 (-225)) (-5 *1 (-305)))))
(((*1 *1 *1 *1) (-4 *1 (-307))) ((*1 *1 *1 *1) (-5 *1 (-767)))
((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *2 *3 *4 *5 *3 *6 *3)
- (-12 (-5 *3 (-563)) (-5 *5 (-169 (-225))) (-5 *6 (-1151))
- (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-112))
+ (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2058 *4))))
+ (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225)))
+ (-5 *6 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-901 *4)) (-4 *4 (-1093)) (-5 *2 (-640 (-767)))
+ (-5 *1 (-900 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-112))
- (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 (-169 *4))))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *2 (-112)) (-5 *1 (-1197 *4 *3))
- (-4 *3 (-13 (-27) (-1193) (-430 *4))))))
-(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-910 *3)) (-4 *3 (-307)))))
-(((*1 *1 *1) (-12 (-4 *1 (-425 *2)) (-4 *2 (-1093)) (-4 *2 (-368)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *7)
+ (|:| |polj| *7)))
+ (-4 *5 (-789)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *6 (-846))
+ (-5 *2 (-112)) (-5 *1 (-449 *4 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563)))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))))
(((*1 *1)
- (-12 (-4 *1 (-404)) (-2176 (|has| *1 (-6 -4398)))
- (-2176 (|has| *1 (-6 -4390)))))
+ (-12 (-4 *1 (-404)) (-2174 (|has| *1 (-6 -4399)))
+ (-2174 (|has| *1 (-6 -4391)))))
((*1 *2 *1) (-12 (-4 *1 (-425 *2)) (-4 *2 (-1093)) (-4 *2 (-846))))
((*1 *2 *1) (-12 (-4 *1 (-826 *2)) (-4 *2 (-846))))
((*1 *1) (-4 *1 (-840))) ((*1 *1 *1 *1) (-4 *1 (-846))))
-(((*1 *2 *3 *3 *1)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-3 *3 (-640 *1)))
- (-4 *1 (-1065 *4 *5 *6 *3)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-452)) (-4 *3 (-846)) (-4 *3 (-1034 (-563)))
- (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-430 *3))
- (-4 *2
- (-13 (-363) (-302)
- (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $))
- (-15 -2154 ((-1118 *3 (-609 $)) $))
- (-15 -1693 ($ (-1118 *3 (-609 $))))))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-973 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-640 *5)) (-5 *4 (-563)) (-4 *5 (-844)) (-4 *5 (-363))
- (-5 *2 (-767)) (-5 *1 (-941 *5 *6)) (-4 *6 (-1233 *5)))))
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
(((*1 *1 *2) (-12 (-5 *2 (-640 *1)) (-4 *1 (-302))))
((*1 *1 *1) (-4 *1 (-302))) ((*1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998)))
- (-5 *1 (-176 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-948 (-225))) (-5 *2 (-316 (-379))) (-5 *1 (-305)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4))
+ (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4)
+ (-12 (-5 *3 (-1151)) (-5 *5 (-684 (-225))) (-5 *6 (-225))
+ (-5 *7 (-684 (-563))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-748)))))
(((*1 *2 *3 *1)
(-12 (-5 *3 (-901 *4)) (-4 *4 (-1093)) (-5 *2 (-640 (-767)))
(-5 *1 (-900 *4)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-563)) (|has| *1 (-6 -4408)) (-4 *1 (-373 *3))
- (-4 *3 (-1208)))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-5 *2 (-112))
- (-5 *1 (-885 *4 *5)) (-4 *5 (-1093))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-5 *2 (-112))
- (-5 *1 (-886 *5 *3)) (-4 *3 (-1208))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *6)) (-5 *4 (-888 *5)) (-4 *5 (-1093))
- (-4 *6 (-1208)) (-5 *2 (-112)) (-5 *1 (-886 *5 *6)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
- (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
- (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-767)) (-5 *1 (-670 *3)) (-4 *3 (-1045))
- (-4 *3 (-1093)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-418 *3)) (-4 *3 (-555)) (-5 *1 (-419 *3)))))
-(((*1 *1 *1 *1) (-4 *1 (-302))) ((*1 *1 *1) (-4 *1 (-302))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1165 *1)) (-5 *3 (-1169)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-948 *1)) (-4 *1 (-27))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1169)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-846) (-555)))))
- ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-846) (-555))))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-640 *7)) (-5 *3 (-563)) (-4 *7 (-945 *4 *5 *6))
+ (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-5 *1 (-449 *4 *5 *6 *7)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3))
- (-4 *3 (-963)))))
-(((*1 *2 *2) (-12 (-5 *1 (-957 *2)) (-4 *2 (-545)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1257 *4)) (-5 *3 (-563)) (-4 *4 (-349))
- (-5 *1 (-528 *4)))))
-(((*1 *1 *2)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *3)
(-12
- (-5 *2
- (-2 (|:| |mval| (-684 *3)) (|:| |invmval| (-684 *3))
- (|:| |genIdeal| (-504 *3 *4 *5 *6))))
- (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-5 *2 (-767)))))
-(((*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3))
- (-4 *3 (-963)))))
+ (-5 *3
+ (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379))
+ (|:| |expense| (-379)) (|:| |accuracy| (-379))
+ (|:| |intermediateResults| (-379))))
+ (-5 *2 (-1031)) (-5 *1 (-305)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2058 *4))))
+ (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3)
+ (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *6 (-225))
+ (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-748)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6))
- (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
- (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-839 *3)) (-4 *3 (-1093)))))
+ (-12 (-5 *2 (-1095 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1095 *3)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-684 *7)) (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *6 *5))
- (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
- (-4 *6 (-789)) (-5 *1 (-920 *4 *5 *6 *7)))))
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-449 *4 *5 *6 *2)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2))
- (-4 *4 (-13 (-846) (-555))))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-640 (-767))) (-5 *3 (-112)) (-5 *1 (-1157 *4 *5))
- (-14 *4 (-917)) (-4 *5 (-1045)))))
+ (-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| (-1149 (-225)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -4166
+ (-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 (-1031)) (-5 *1 (-305)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-363))
- (-5 *2 (-640 (-2 (|:| C (-684 *5)) (|:| |g| (-1257 *5)))))
- (-5 *1 (-974 *5)) (-5 *3 (-684 *5)) (-5 *4 (-1257 *5)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560))))
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4))
+ (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7)
+ (-12 (-5 *3 (-1151)) (-5 *5 (-684 (-225))) (-5 *6 (-225))
+ (-5 *7 (-684 (-563))) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-748)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-900 *4))
+ (-4 *4 (-1093))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-449 *4 *5 *6 *2)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| -2929 (-379)) (|:| -3352 (-1151))
+ (|:| |explanations| (-640 (-1151)))))
+ (-5 *2 (-1031)) (-5 *1 (-305))))
((*1 *2 *3)
- (-12 (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-938)) (-5 *3 (-563)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-132)) (-5 *3 (-767)) (-5 *2 (-1262)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+ (-12
+ (-5 *3
+ (-2 (|:| -2929 (-379)) (|:| -3352 (-1151))
+ (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))))
+ (-5 *2 (-1031)) (-5 *1 (-305)))))
(((*1 *1 *1 *1) (-4 *1 (-307))) ((*1 *1 *1 *1) (-5 *1 (-767)))
((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-52)) (-5 *1 (-888 *4))
- (-4 *4 (-1093)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2058 *4))))
+ (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-748)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-4 *1 (-899 *3)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 *2)) (-5 *1 (-179 *2)) (-4 *2 (-307))))
- ((*1 *2 *3 *2)
- (-12 (-5 *3 (-640 (-640 *4))) (-5 *2 (-640 *4)) (-4 *4 (-307))
- (-5 *1 (-179 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-640 *8))
- (-5 *4
- (-640
- (-2 (|:| -4315 (-684 *7)) (|:| |basisDen| *7)
- (|:| |basisInv| (-684 *7)))))
- (-5 *5 (-767)) (-4 *8 (-1233 *7)) (-4 *7 (-1233 *6)) (-4 *6 (-349))
- (-5 *2
- (-2 (|:| -4315 (-684 *7)) (|:| |basisDen| *7)
- (|:| |basisInv| (-684 *7))))
- (-5 *1 (-498 *6 *7 *8))))
- ((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))))
+ (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-640 (-640 *7)))
+ (-5 *1 (-448 *4 *5 *6 *7)) (-5 *3 (-640 *7))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789))
+ (-4 *7 (-846)) (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-640 (-640 *8)))
+ (-5 *1 (-448 *5 *6 *7 *8)) (-5 *3 (-640 *8))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-640 (-640 *7)))
+ (-5 *1 (-448 *4 *5 *6 *7)) (-5 *3 (-640 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789))
+ (-4 *7 (-846)) (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-640 (-640 *8)))
+ (-5 *1 (-448 *5 *6 *7 *8)) (-5 *3 (-640 *8)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1169))
(-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
@@ -6682,136 +6232,115 @@
((*1 *1 *2)
(-12 (-5 *2 (-1149 (-2 (|:| |k| (-767)) (|:| |c| *3))))
(-4 *3 (-1045)) (-4 *1 (-1248 *3)))))
-(((*1 *2)
- (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
- (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262))
- (-5 *1 (-984 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
- (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262))
- (-5 *1 (-1100 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
- (-5 *2 (-684 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))))
-(((*1 *2 *2 *2 *2 *3 *3 *4)
- (|partial| -12 (-5 *3 (-609 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1169)))
- (-4 *2 (-13 (-430 *5) (-27) (-1193)))
- (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
- (-5 *1 (-565 *5 *2 *6)) (-4 *6 (-1093)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1257 (-640 (-2 (|:| -2619 *4) (|:| -2555 (-1113))))))
- (-4 *4 (-349)) (-5 *2 (-684 *4)) (-5 *1 (-346 *4)))))
-(((*1 *2 *3 *4 *4 *3 *3 *5)
- (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-1165 *3))
- (-4 *3 (-13 (-430 *6) (-27) (-1193)))
- (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
- (-5 *2 (-2 (|:| -3646 *3) (|:| |coeff| *3)))
- (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093))))
- ((*1 *2 *3 *4 *4 *3 *4 *3 *5)
- (|partial| -12 (-5 *4 (-609 *3)) (-5 *5 (-407 (-1165 *3)))
- (-4 *3 (-13 (-430 *6) (-27) (-1193)))
- (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
- (-5 *2 (-2 (|:| -3646 *3) (|:| |coeff| *3)))
- (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-363)) (-4 *3 (-1045))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4334 *1)))
+ (-4 *1 (-848 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1151)) (-5 *1 (-305)))))
(((*1 *1 *2 *1 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-330))))
((*1 *1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-330)))))
(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-245 *3)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-751)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4))))
+ (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-748)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-4 *1 (-899 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-555) (-846)))
- (-4 *2 (-13 (-430 *4) (-998) (-1193))) (-5 *1 (-597 *4 *2 *3))
- (-4 *3 (-13 (-430 (-169 *4)) (-998) (-1193))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-816)) (-14 *5 (-1169))
- (-5 *2 (-563)) (-5 *1 (-1107 *4 *5)))))
-(((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *4 (-609 *3)) (-5 *5 (-1 (-1165 *3) (-1165 *3)))
- (-4 *3 (-13 (-27) (-430 *6))) (-4 *6 (-13 (-846) (-555)))
- (-5 *2 (-584 *3)) (-5 *1 (-550 *6 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-1054)) (-4 *3 (-1193))
- (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1169)) (-4 *4 (-555)) (-4 *4 (-846))
- (-5 *1 (-572 *4 *2)) (-4 *2 (-430 *4)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *4 (-1169)) (-5 *6 (-112))
- (-4 *7 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-4 *3 (-13 (-1193) (-955) (-29 *7)))
- (-5 *2
- (-3 (|:| |f1| (-839 *3)) (|:| |f2| (-640 (-839 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-219 *7 *3)) (-5 *5 (-839 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-363))
- (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-5 *1 (-450 *4 *5 *6 *2))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-363))
- (-5 *2
- (-2 (|:| R (-684 *6)) (|:| A (-684 *6)) (|:| |Ainv| (-684 *6))))
- (-5 *1 (-974 *6)) (-5 *3 (-684 *6)))))
+ (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-640 (-640 *7)))
+ (-5 *1 (-448 *4 *5 *6 *7)) (-5 *3 (-640 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789))
+ (-4 *7 (-846)) (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-640 (-640 *8)))
+ (-5 *1 (-448 *5 *6 *7 *8)) (-5 *3 (-640 *8)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-192))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-300))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-305)))))
(((*1 *2 *1 *1)
(|partial| -12 (-5 *2 (-2 (|:| |lm| (-815 *3)) (|:| |rm| (-815 *3))))
(-5 *1 (-815 *3)) (-4 *3 (-846))))
((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *1) (-5 *1 (-1172))))
-(((*1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-825)))))
-(((*1 *2 *3 *4 *5 *5 *4 *6)
- (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379)))
- (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262))
- (-5 *1 (-784)))))
-(((*1 *1) (-5 *1 (-437))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-973 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
- (-5 *2
- (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563))
- (|:| |success| (-112))))
- (-5 *1 (-785)) (-5 *5 (-563)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *3 *2))
- (-4 *2 (-13 (-27) (-1193) (-430 (-169 *3))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-885 *4 *3))
- (-4 *3 (-1093)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
- (-5 *2
- (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563))
- (|:| |success| (-112))))
- (-5 *1 (-785)) (-5 *5 (-563)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-363)) (-4 *4 (-555)) (-4 *5 (-1233 *4))
- (-5 *2 (-2 (|:| -3773 (-620 *4 *5)) (|:| -3893 (-407 *5))))
- (-5 *1 (-620 *4 *5)) (-5 *3 (-407 *5))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-640 (-1157 *3 *4))) (-5 *1 (-1157 *3 *4))
- (-14 *3 (-917)) (-4 *4 (-1045))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-452)) (-4 *3 (-1045))
- (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1)))
- (-4 *1 (-1233 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1114 *2)) (-4 *2 (-1208)))))
(((*1 *2 *3 *3 *4)
(-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
(-4 *3 (-1059 *5 *6 *7))
- (-5 *2 (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4))))
+ (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4))))
(-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *4 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-748)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4))
- (-4 *4 (-349)))))
+ (-12 (-5 *3 (-1135 *4 *2)) (-14 *4 (-917))
+ (-4 *2 (-13 (-1045) (-10 -7 (-6 (-4410 "*")))))
+ (-5 *1 (-898 *4 *2)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-307))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-447 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6))
+ (-4 *4 (-307)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-5 *1 (-447 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6))
+ (-4 *4 (-307)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-5 *1 (-447 *4 *5 *6 *7)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1257 *5)) (-4 *5 (-788)) (-5 *2 (-112))
+ (-5 *1 (-841 *4 *5)) (-14 *4 (-767)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-192))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-300))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-305)))))
+(((*1 *2 *3 *3 *4 *5 *5)
+ (-12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
+ (-4 *3 (-1059 *6 *7 *8))
+ (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4))))
+ (-5 *1 (-1101 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2058 *9))))
+ (-5 *5 (-112)) (-4 *8 (-1059 *6 *7 *4)) (-4 *9 (-1065 *6 *7 *4 *8))
+ (-4 *6 (-452)) (-4 *7 (-789)) (-4 *4 (-846))
+ (-5 *2 (-640 (-2 (|:| |val| *8) (|:| -2058 *9))))
+ (-5 *1 (-1101 *6 *7 *4 *8 *9)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-748)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| |preimage| (-640 *3)) (|:| |image| (-640 *3))))
+ (-5 *1 (-901 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-307))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-447 *4 *5 *6 *2)))))
(((*1 *2 *1 *3 *4)
(-12 (-5 *3 (-939 (-225))) (-5 *4 (-870)) (-5 *2 (-1262))
(-5 *1 (-468))))
@@ -6828,26 +6357,21 @@
(-12 (-5 *2 (-939 *3)) (-4 *1 (-1127 *3)) (-4 *3 (-1045))))
((*1 *2 *3 *3 *3 *3)
(-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204)) (-5 *3 (-225)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *2) (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1151)) (-4 *1 (-364 *3 *4)) (-4 *3 (-1093))
- (-4 *4 (-1093)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-5 *2 (-112))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-1257 *5)) (-4 *5 (-788)) (-5 *2 (-112))
+ (-5 *1 (-841 *4 *5)) (-14 *4 (-767)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1149 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-192))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1149 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-300))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1149 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-305)))))
(((*1 *1 *1 *2)
(|partial| -12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-555))))
((*1 *1 *1 *2)
@@ -6869,439 +6393,493 @@
(-4 *5 (-238 *4 *2)) (-4 *6 (-238 *3 *2)) (-4 *2 (-555))))
((*1 *2 *2 *2)
(|partial| -12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3)) (-4 *3 (-1093))
- (-4 *3 (-1208)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-917))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))))
-(((*1 *1 *1) (-4 *1 (-173)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-364 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1208)) (-5 *2 (-767)) (-5 *1 (-182 *4 *3))
- (-4 *3 (-669 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2 (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4))))
+ (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-748)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-5 *1 (-901 *3)))))
+(((*1 *2 *3) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-446)) (-5 *3 (-563)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-119 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1257 *5)) (-4 *5 (-788)) (-5 *2 (-112))
+ (-5 *1 (-841 *4 *5)) (-14 *4 (-767)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
(((*1 *2 *3)
- (-12 (-4 *2 (-1233 *4)) (-5 *1 (-805 *4 *2 *3 *5))
- (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-651 *2))
- (-4 *5 (-651 (-407 *2))))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-407 (-948 *4))) (-5 *3 (-1169))
- (-4 *4 (-13 (-555) (-1034 (-563)) (-147))) (-5 *1 (-569 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1169))
- (-4 *4 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-426 *4 *2)) (-4 *2 (-13 (-1193) (-29 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-147))
- (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563))))
- (-5 *2 (-316 *5)) (-5 *1 (-587 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-640 (-171)))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-172)) (-4 *2 (-23)) (-5 *1 (-289 *3 *4 *2 *5 *6 *7))
- (-4 *4 (-1233 *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 (-707 *3 *2 *4 *5 *6)) (-4 *3 (-172))
- (-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 (-1233 *3)) (-5 *1 (-708 *3 *2)) (-4 *3 (-1045))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-23)) (-5 *1 (-711 *3 *2 *4 *5 *6)) (-4 *3 (-172))
- (-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 (-865 *3)) (-5 *2 (-563)))))
-(((*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7)
- (-12 (-5 *3 (-563)) (-5 *5 (-112)) (-5 *6 (-684 (-225)))
- (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-77 OBJFUN))))
- (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-749)))))
+ (-12 (-5 *3 (-640 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-192))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-300))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-305)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-767)) (-5 *2 (-112)))))
(((*1 *2)
- (-12 (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4)))
- (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-280)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-481 *4 *5))) (-14 *4 (-640 (-1169)))
- (-4 *5 (-452)) (-5 *2 (-640 (-247 *4 *5))) (-5 *1 (-628 *4 *5)))))
+ (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262))
+ (-5 *1 (-1066 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262))
+ (-5 *1 (-1101 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3)
+ (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-748)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-5 *1 (-901 *3)))))
(((*1 *2 *2)
- (-12 (-4 *2 (-172)) (-4 *2 (-1045)) (-5 *1 (-710 *2 *3))
- (-4 *3 (-643 *2))))
- ((*1 *2 *2) (-12 (-5 *1 (-832 *2)) (-4 *2 (-172)) (-4 *2 (-1045)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1257 (-767))) (-5 *1 (-670 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+ (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045))))
+ ((*1 *2)
+ (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-119 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-829 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1151)) (-5 *1 (-305)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-563)) (-4 *2 (-430 *3)) (-5 *1 (-32 *3 *2))
+ (-4 *3 (-1034 *4)) (-4 *3 (-13 (-846) (-555))))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262))
+ (-5 *1 (-1066 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262))
+ (-5 *1 (-1101 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3)
+ (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-748)))))
+(((*1 *2 *1) (-12 (-5 *2 (-967)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *2 (-379)) (-5 *1 (-192)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-954 *3)) (-5 *1 (-1156 *4 *3))
- (-4 *3 (-1233 *4)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *8 (-1059 *5 *6 *7))
- (-5 *2
- (-2 (|:| |val| (-640 *8))
- (|:| |towers| (-640 (-1023 *5 *6 *7 *8)))))
- (-5 *1 (-1023 *5 *6 *7 *8)) (-5 *3 (-640 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *8 (-1059 *5 *6 *7))
- (-5 *2
- (-2 (|:| |val| (-640 *8))
- (|:| |towers| (-640 (-1139 *5 *6 *7 *8)))))
- (-5 *1 (-1139 *5 *6 *7 *8)) (-5 *3 (-640 *8)))))
+ (-12 (-5 *2 (-563)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
(-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1171 (-407 (-563)))) (-5 *2 (-407 (-563)))
- (-5 *1 (-190)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-829 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1151)) (-5 *1 (-192))))
+ ((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1151)) (-5 *1 (-300))))
+ ((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1151)) (-5 *1 (-305)))))
+(((*1 *2)
+ (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262))
+ (-5 *1 (-1066 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262))
+ (-5 *1 (-1101 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))))
+(((*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3)
+ (-12 (-5 *5 (-684 (-225))) (-5 *6 (-684 (-563))) (-5 *3 (-563))
+ (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-748)))))
+(((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-767)) (-5 *2 (-1 (-1149 (-948 *4)) (-1149 (-948 *4))))
- (-5 *1 (-1265 *4)) (-4 *4 (-363)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-495)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-767)) (-4 *5 (-349)) (-4 *6 (-1233 *5))
- (-5 *2
- (-640
- (-2 (|:| -4315 (-684 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-684 *6)))))
- (-5 *1 (-498 *5 *6 *7))
- (-5 *3
- (-2 (|:| -4315 (-684 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-684 *6))))
- (-4 *7 (-1233 *6)))))
+ (-12 (-5 *2 (-563)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1169))
- (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-277 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))))
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-839 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-169 *5)) (-4 *5 (-13 (-430 *4) (-998) (-1193)))
- (-4 *4 (-13 (-555) (-846)))
- (-4 *2 (-13 (-430 (-169 *4)) (-998) (-1193)))
- (-5 *1 (-597 *4 *5 *2)))))
+ (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *2 (-1257 (-316 (-379))))
+ (-5 *1 (-305)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262))
+ (-5 *1 (-1066 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262))
+ (-5 *1 (-1101 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-748)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1274 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
- (-5 *2 (-2 (|:| |k| (-815 *3)) (|:| |c| *4))))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-640 (-609 *6))) (-5 *4 (-1169)) (-5 *2 (-609 *6))
- (-4 *6 (-430 *5)) (-4 *5 (-846)) (-5 *1 (-572 *5 *6)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225)))
- (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-66 FUNCT1))))
- (-5 *2 (-1031)) (-5 *1 (-749)))))
+ (-12 (-4 *1 (-1034 (-563))) (-4 *1 (-302)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))))
+(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-445 *3)) (-4 *3 (-1045)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1224 (-563))) (-4 *1 (-646 *3)) (-4 *3 (-1208))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-646 *3)) (-4 *3 (-1208)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-147)) (-4 *2 (-307)) (-4 *2 (-452)) (-4 *3 (-846))
+ (-4 *4 (-789)) (-5 *1 (-983 *2 *3 *4 *5)) (-4 *5 (-945 *2 *4 *3))))
+ ((*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-316 (-563))) (-5 *1 (-1112))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *3) (-12 (-5 *3 (-837)) (-5 *2 (-1031)) (-5 *1 (-836))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-316 (-379)))) (-5 *4 (-640 (-379)))
+ (-5 *2 (-1031)) (-5 *1 (-836)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 *3)) (-4 *3 (-1102 *5 *6 *7 *8))
+ (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-112))
+ (-5 *1 (-589 *5 *6 *7 *8 *3)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *2 (-112)) (-5 *1 (-300)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172))))
- ((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1172)))))
-(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-967)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5))
- (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *1 (-1270 *3 *4 *5 *6))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-640 *8)) (-5 *3 (-1 (-112) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555))
- (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1270 *5 *6 *7 *8)))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-363)))))
+ (-12 (-5 *3 (-316 (-225))) (-5 *2 (-316 (-379))) (-5 *1 (-305)))))
+(((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
+ (|partial| -12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789))
+ (-4 *8 (-846)) (-4 *9 (-1059 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| -1420 (-640 *9)) (|:| -2058 *4) (|:| |ineq| (-640 *9))))
+ (-5 *1 (-984 *6 *7 *8 *9 *4)) (-5 *3 (-640 *9))
+ (-4 *4 (-1065 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
+ (|partial| -12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789))
+ (-4 *8 (-846)) (-4 *9 (-1059 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| -1420 (-640 *9)) (|:| -2058 *4) (|:| |ineq| (-640 *9))))
+ (-5 *1 (-1100 *6 *7 *8 *9 *4)) (-5 *3 (-640 *9))
+ (-4 *4 (-1065 *6 *7 *8 *9)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-748)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1034 (-563))) (-4 *1 (-302)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))))
+(((*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-1045)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-555)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3))
+ (-5 *1 (-1198 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4))
- (-5 *2 (-2 (|:| -2311 (-407 *5)) (|:| |poly| *3)))
- (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1233 (-407 *5))))))
+ (-12 (-4 *1 (-835))
+ (-5 *3
+ (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225)))
+ (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225))))
+ (|:| |ub| (-640 (-839 (-225))))))
+ (-5 *2 (-1031))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-835))
+ (-5 *3
+ (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))
+ (-5 *2 (-1031)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1165 *5)) (-4 *5 (-452)) (-5 *2 (-640 *6))
- (-5 *1 (-538 *5 *6 *4)) (-4 *6 (-363)) (-4 *4 (-13 (-363) (-844)))))
+ (-12 (-5 *3 (-640 (-563))) (-5 *4 (-901 (-563)))
+ (-5 *2 (-684 (-563))) (-5 *1 (-588))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-640 (-684 (-563))))
+ (-5 *1 (-588))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-948 *5)) (-4 *5 (-452)) (-5 *2 (-640 *6))
- (-5 *1 (-538 *5 *6 *4)) (-4 *6 (-363)) (-4 *4 (-13 (-363) (-844))))))
+ (-12 (-5 *3 (-640 (-563))) (-5 *4 (-640 (-901 (-563))))
+ (-5 *2 (-640 (-684 (-563)))) (-5 *1 (-588)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2))
- (-4 *4 (-13 (-846) (-555))))))
+ (-12 (-5 *3 (-640 (-225))) (-5 *2 (-1257 (-694))) (-5 *1 (-305)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1233 (-48))))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-640 *10)) (-5 *5 (-112)) (-4 *10 (-1065 *6 *7 *8 *9))
+ (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
+ (-4 *9 (-1059 *6 *7 *8))
+ (-5 *2
+ (-640
+ (-2 (|:| -1420 (-640 *9)) (|:| -2058 *10) (|:| |ineq| (-640 *9)))))
+ (-5 *1 (-984 *6 *7 *8 *9 *10)) (-5 *3 (-640 *9))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-640 *10)) (-5 *5 (-112)) (-4 *10 (-1065 *6 *7 *8 *9))
+ (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
+ (-4 *9 (-1059 *6 *7 *8))
+ (-5 *2
+ (-640
+ (-2 (|:| -1420 (-640 *9)) (|:| -2058 *10) (|:| |ineq| (-640 *9)))))
+ (-5 *1 (-1100 *6 *7 *8 *9 *10)) (-5 *3 (-640 *9)))))
+(((*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-747)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-640 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1208)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1224 (-563))) (-4 *1 (-646 *3)) (-4 *3 (-1208))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-646 *3)) (-4 *3 (-1208)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-4 *3 (-1093))
- (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-169 (-225))))
- (-5 *2 (-1031)) (-5 *1 (-750)))))
+ (-12 (-5 *2 (-1095 *3)) (-5 *1 (-901 *3)) (-4 *3 (-368))
+ (-4 *3 (-1093)))))
+(((*1 *2 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-1045))))
+ ((*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-1045)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-1125 *4 *2))
- (-4 *2 (-13 (-601 (-563) *4) (-10 -7 (-6 -4407) (-6 -4408))))))
+ (-12 (-4 *3 (-555)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3))
+ (-5 *1 (-1198 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1151)) (-5 *2 (-214 (-502))) (-5 *1 (-833)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *2 *3) (-12 (-5 *3 (-640 (-563))) (-5 *2 (-767)) (-5 *1 (-588)))))
+(((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-694)) (-5 *1 (-305)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-640 (-2 (|:| |val| (-640 *6)) (|:| -2058 *7))))
+ (-4 *6 (-1059 *3 *4 *5)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-984 *3 *4 *5 *6 *7))))
((*1 *2 *2)
- (-12 (-4 *3 (-846)) (-4 *3 (-1208)) (-5 *1 (-1125 *3 *2))
- (-4 *2 (-13 (-601 (-563) *3) (-10 -7 (-6 -4407) (-6 -4408)))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1 (-939 (-225)) (-225) (-225)))
- (-5 *3 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-255)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-818)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-1059 *3 *4 *2)) (-4 *2 (-846))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *2 (-846)))))
+ (-12 (-5 *2 (-640 (-2 (|:| |val| (-640 *6)) (|:| -2058 *7))))
+ (-4 *6 (-1059 *3 *4 *5)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-1100 *3 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-747)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-901 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *7)) (-4 *7 (-846))
- (-4 *8 (-945 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1257 (-407 *8)) "failed"))
- (|:| -4315 (-640 (-1257 (-407 *8))))))
- (-5 *1 (-664 *5 *6 *7 *8)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1165 *1)) (-4 *1 (-1008)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
+ (-12 (-5 *3 (-767)) (-5 *4 (-563)) (-5 *1 (-445 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563))))
+ (-5 *2 (-169 (-316 *4))) (-5 *1 (-188 *4 *3))
+ (-4 *3 (-13 (-27) (-1193) (-430 (-169 *4))))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *2 (-169 *3)) (-5 *1 (-1197 *4 *3))
+ (-4 *3 (-13 (-27) (-1193) (-430 *4))))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-767)) (-5 *1 (-114))))
+ ((*1 *2 *1) (-12 (-4 *1 (-831 *3)) (-4 *3 (-1093)) (-5 *2 (-55)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1169))
+ (-4 *4 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-426 *4 *2)) (-4 *2 (-13 (-1193) (-29 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-147))
+ (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563))))
+ (-5 *2 (-316 *5)) (-5 *1 (-587 *5)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))))
+ (-5 *2 (-640 (-225))) (-5 *1 (-305)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
+ (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2058 *8)))
+ (-4 *7 (-1059 *4 *5 *6)) (-4 *8 (-1065 *4 *5 *6 *7)) (-4 *4 (-452))
(-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
+ (-5 *1 (-984 *4 *5 *6 *7 *8))))
((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
+ (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2058 *8)))
+ (-4 *7 (-1059 *4 *5 *6)) (-4 *8 (-1065 *4 *5 *6 *7)) (-4 *4 (-452))
(-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 *1)) (-5 *4 (-1257 *1)) (-4 *1 (-636 *5))
- (-4 *5 (-1045))
- (-5 *2 (-2 (|:| -2835 (-684 *5)) (|:| |vec| (-1257 *5))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-684 *1)) (-4 *1 (-636 *4)) (-4 *4 (-1045))
- (-5 *2 (-684 *4)))))
+ (-5 *1 (-1100 *4 *5 *6 *7 *8)))))
+(((*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3)
+ (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *6 (-225))
+ (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-747)))))
(((*1 *2 *3)
- (-12
- (-5 *3
+ (-12 (-5 *3 (-765))
+ (-5 *2
+ (-2 (|:| -2929 (-379)) (|:| -3352 (-1151))
+ (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))))
+ (-5 *1 (-564))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-765)) (-5 *4 (-1057))
+ (-5 *2
+ (-2 (|:| -2929 (-379)) (|:| -3352 (-1151))
+ (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))))
+ (-5 *1 (-564))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-783)) (-5 *3 (-1057))
+ (-5 *4
+ (-2 (|:| |fn| (-316 (-225)))
+ (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2
+ (-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))
+ (|:| |extra| (-1031))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-783)) (-5 *3 (-1057))
+ (-5 *4
+ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2
+ (-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))
+ (|:| |extra| (-1031))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-796)) (-5 *3 (-1057))
+ (-5 *4
(-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
(|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
(|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
(|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2 (-379)) (-5 *1 (-205)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-129)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-318)) (-5 *3 (-225)))))
-(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-818)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307))
- (-5 *2 (-640 (-767))) (-5 *1 (-774 *3 *4 *5 *6 *7))
- (-4 *3 (-1233 *6)) (-4 *7 (-945 *6 *4 *5)))))
-(((*1 *2 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-752)))))
-(((*1 *1) (-12 (-4 *1 (-425 *2)) (-4 *2 (-368)) (-4 *2 (-1093)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-563))
- (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191))))
- (-5 *2 (-1031)) (-5 *1 (-744)))))
-(((*1 *1 *2 *3 *3 *4 *5)
- (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *3 (-640 (-870)))
- (-5 *4 (-640 (-917))) (-5 *5 (-640 (-263))) (-5 *1 (-468))))
- ((*1 *1 *2 *3 *3 *4)
- (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *3 (-640 (-870)))
- (-5 *4 (-640 (-917))) (-5 *1 (-468))))
- ((*1 *1 *2) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *1 (-468))))
- ((*1 *1 *1) (-5 *1 (-468))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1151)) (-4 *4 (-13 (-307) (-147)))
- (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789))
+ (-5 *2 (-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-804))
(-5 *2
- (-640
- (-2 (|:| |eqzro| (-640 *7)) (|:| |neqzro| (-640 *7))
- (|:| |wcond| (-640 (-948 *4)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1257 (-407 (-948 *4))))
- (|:| -4315 (-640 (-1257 (-407 (-948 *4))))))))))
- (-5 *1 (-920 *4 *5 *6 *7)) (-4 *7 (-945 *4 *6 *5)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-1006 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-13 (-363) (-147) (-1034 (-563))))
- (-4 *5 (-1233 *4))
- (-5 *2 (-2 (|:| -3646 (-407 *5)) (|:| |coeff| (-407 *5))))
- (-5 *1 (-567 *4 *5)) (-5 *3 (-407 *5)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225)))
- (-5 *2 (-1031)) (-5 *1 (-750)))))
-(((*1 *2 *3 *3 *3 *4 *5 *6)
- (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225)))
- (-5 *5 (-1087 (-225))) (-5 *6 (-640 (-263))) (-5 *2 (-1126 (-225)))
- (-5 *1 (-692)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-109))) (-5 *1 (-175)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-1169)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-939 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-640 (-939 *3))) (-4 *3 (-1045)) (-4 *1 (-1127 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-640 (-640 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-640 (-939 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))))
-(((*1 *2 *3 *4 *4 *5 *4 *4 *5)
- (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225)))
- (-5 *2 (-1031)) (-5 *1 (-753)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-335 *3 *4 *5 *6)) (-4 *3 (-363)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5))
+ (-2 (|:| -2929 (-379)) (|:| -3352 (-1151))
+ (|:| |explanations| (-640 (-1151)))))
+ (-5 *1 (-801))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-804)) (-5 *4 (-1057))
(-5 *2
- (-2 (|:| -1524 (-413 *4 (-407 *4) *5 *6)) (|:| |principalPart| *6)))))
+ (-2 (|:| -2929 (-379)) (|:| -3352 (-1151))
+ (|:| |explanations| (-640 (-1151)))))
+ (-5 *1 (-801))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363))
+ (-12 (-4 *1 (-835)) (-5 *3 (-1057))
+ (-5 *4
+ (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))
+ (-5 *2 (-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-835)) (-5 *3 (-1057))
+ (-5 *4
+ (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225)))
+ (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225))))
+ (|:| |ub| (-640 (-839 (-225))))))
+ (-5 *2 (-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-837))
(-5 *2
- (-2 (|:| |poly| *6) (|:| -2377 (-407 *6))
- (|:| |special| (-407 *6))))
- (-5 *1 (-723 *5 *6)) (-5 *3 (-407 *6))))
+ (-2 (|:| -2929 (-379)) (|:| -3352 (-1151))
+ (|:| |explanations| (-640 (-1151)))))
+ (-5 *1 (-836))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-837)) (-5 *4 (-1057))
+ (-5 *2
+ (-2 (|:| -2929 (-379)) (|:| -3352 (-1151))
+ (|:| |explanations| (-640 (-1151)))))
+ (-5 *1 (-836))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-891)) (-5 *3 (-1057))
+ (-5 *4
+ (-2 (|:| |pde| (-640 (-316 (-225))))
+ (|:| |constraints|
+ (-640
+ (-2 (|:| |start| (-225)) (|:| |finish| (-225))
+ (|:| |grid| (-767)) (|:| |boundaryType| (-563))
+ (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225))))))
+ (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151))
+ (|:| |tol| (-225))))
+ (-5 *2 (-2 (|:| -2929 (-379)) (|:| |explanations| (-1151))))))
((*1 *2 *3)
- (-12 (-4 *4 (-363)) (-5 *2 (-640 *3)) (-5 *1 (-892 *3 *4))
- (-4 *3 (-1233 *4))))
- ((*1 *2 *3 *4 *4)
- (|partial| -12 (-5 *4 (-767)) (-4 *5 (-363))
- (-5 *2 (-2 (|:| -1686 *3) (|:| -1701 *3))) (-5 *1 (-892 *3 *5))
- (-4 *3 (-1233 *5))))
- ((*1 *2 *3 *2 *4 *4)
- (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112))
- (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452))
- (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1063 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
- (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112))
- (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452))
- (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1063 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4)
- (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112))
- (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452))
- (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1138 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
- (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112))
- (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452))
- (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-132)) (-5 *1 (-1077 *2))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-563) *2 *2)) (-4 *2 (-132)) (-5 *1 (-1077 *2)))))
-(((*1 *2 *3 *3 *4 *5 *5)
- (-12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
- (-4 *3 (-1059 *6 *7 *8))
- (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4))))
- (-5 *1 (-1101 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2059 *9))))
- (-5 *5 (-112)) (-4 *8 (-1059 *6 *7 *4)) (-4 *9 (-1065 *6 *7 *4 *8))
- (-4 *6 (-452)) (-4 *7 (-789)) (-4 *4 (-846))
- (-5 *2 (-640 (-2 (|:| |val| *8) (|:| -2059 *9))))
- (-5 *1 (-1101 *6 *7 *4 *8 *9)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-407 *4)) (-4 *4 (-1233 *3))
- (-4 *3 (-13 (-363) (-147) (-1034 (-563)))) (-5 *1 (-567 *3 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-552)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-563)) (-5 *1 (-241))))
+ (-12 (-5 *3 (-894))
+ (-5 *2
+ (-2 (|:| -2929 (-379)) (|:| -3352 (-1151))
+ (|:| |explanations| (-640 (-1151)))))
+ (-5 *1 (-893))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-894)) (-5 *4 (-1057))
+ (-5 *2
+ (-2 (|:| -2929 (-379)) (|:| -3352 (-1151))
+ (|:| |explanations| (-640 (-1151)))))
+ (-5 *1 (-893)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-917)) (-5 *4 (-418 *6)) (-4 *6 (-1233 *5))
+ (-4 *5 (-1045)) (-5 *2 (-640 *6)) (-5 *1 (-444 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-112))
+ (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1193) (-430 (-169 *4))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434))))
((*1 *2 *3)
- (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-563)) (-5 *1 (-241)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3 *2)
- (|partial| -12 (-5 *2 (-767))
- (-4 *3 (-13 (-722) (-368) (-10 -7 (-15 ** (*3 *3 (-563))))))
- (-5 *1 (-246 *3)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-25)) (-4 *3 (-846)) (-5 *2 (-640 *1))
- (-4 *1 (-430 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3))
- (-4 *3 (-1093))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *2 (-640 *1)) (-4 *1 (-945 *3 *4 *5))))
+ (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *2 (-112)) (-5 *1 (-1197 *4 *3))
+ (-4 *3 (-13 (-27) (-1193) (-430 *4))))))
+(((*1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045))))
((*1 *2 *3)
- (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045))
- (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-640 *3))
- (-5 *1 (-946 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-363)
- (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $))
- (-15 -2154 (*7 $))))))))
+ (-12 (-4 *4 (-555)) (-4 *4 (-172)) (-4 *5 (-373 *4))
+ (-4 *6 (-373 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4)))
+ (-5 *1 (-683 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-172)) (-4 *2 (-1045)) (-5 *1 (-710 *2 *3))
+ (-4 *3 (-643 *2))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-172)) (-4 *2 (-1045)) (-5 *1 (-710 *2 *3))
+ (-4 *3 (-643 *2))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-832 *2)) (-4 *2 (-172)) (-4 *2 (-1045))))
+ ((*1 *1 *1) (-12 (-5 *1 (-832 *2)) (-4 *2 (-172)) (-4 *2 (-1045)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-584 *2)) (-4 *2 (-13 (-29 *4) (-1193)))
+ (-5 *1 (-582 *4 *2))
+ (-4 *4 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-584 (-407 (-948 *4))))
+ (-4 *4 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563))))
+ (-5 *2 (-316 *4)) (-5 *1 (-587 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1087 (-839 (-225)))) (-5 *1 (-305)))))
(((*1 *2 *1) (-12 (-5 *2 (-1111)) (-5 *1 (-218))))
((*1 *2 *1) (-12 (-5 *2 (-1111)) (-5 *1 (-439))))
((*1 *2 *1) (-12 (-5 *2 (-1111)) (-5 *1 (-834))))
((*1 *2 *1) (-12 (-5 *2 (-1111)) (-5 *1 (-1108))))
((*1 *1 *2 *3)
(-12 (-5 *2 (-640 (-1174))) (-5 *3 (-1174)) (-5 *1 (-1111)))))
-(((*1 *2 *1) (-12 (-5 *2 (-483)) (-5 *1 (-218))))
- ((*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208))))
- ((*1 *2 *1) (-12 (-5 *2 (-483)) (-5 *1 (-671))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1095 *4)) (-4 *4 (-1093)) (-5 *2 (-1 *4))
- (-5 *1 (-1013 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-379))) (-5 *1 (-1036)) (-5 *3 (-379))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1087 (-563))) (-5 *2 (-1 (-563))) (-5 *1 (-1043)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))
+ (-5 *1 (-984 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))
+ (-5 *1 (-1100 *3 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-747)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-767)) (-4 *4 (-363)) (-5 *1 (-892 *2 *4))
+ (-4 *2 (-1233 *4)))))
+(((*1 *2 *3 *2)
+ (|partial| -12 (-5 *3 (-917)) (-5 *1 (-442 *2))
+ (-4 *2 (-1233 (-563)))))
+ ((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-917)) (-5 *4 (-767)) (-5 *1 (-442 *2))
+ (-4 *2 (-1233 (-563)))))
+ ((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-917)) (-5 *4 (-640 (-767))) (-5 *1 (-442 *2))
+ (-4 *2 (-1233 (-563)))))
+ ((*1 *2 *3 *2 *4 *5)
+ (|partial| -12 (-5 *3 (-917)) (-5 *4 (-640 (-767))) (-5 *5 (-767))
+ (-5 *1 (-442 *2)) (-4 *2 (-1233 (-563)))))
+ ((*1 *2 *3 *2 *4 *5 *6)
+ (|partial| -12 (-5 *3 (-917)) (-5 *4 (-640 (-767))) (-5 *5 (-767))
+ (-5 *6 (-112)) (-5 *1 (-442 *2)) (-4 *2 (-1233 (-563)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-917)) (-5 *4 (-418 *2)) (-4 *2 (-1233 *5))
+ (-5 *1 (-444 *5 *2)) (-4 *5 (-1045)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *3 *2))
+ (-4 *2 (-13 (-27) (-1193) (-430 (-169 *3))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))))
+(((*1 *2 *2)
+ (-12 (-4 *2 (-172)) (-4 *2 (-1045)) (-5 *1 (-710 *2 *3))
+ (-4 *3 (-643 *2))))
+ ((*1 *2 *2) (-12 (-5 *1 (-832 *2)) (-4 *2 (-172)) (-4 *2 (-1045)))))
(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-342 *4 *5 *6)) (-4 *4 (-1212))
- (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5)))
- (-5 *2 (-2 (|:| |num| (-684 *5)) (|:| |den| *5))))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-684 *3))
- (-4 *3 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $)))))
- (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-684 *3))
- (-4 *3 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $)))))
- (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))))
-(((*1 *2 *1)
- (-12
- (-5 *2
- (-640
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3)
- (|:| |xpnt| (-563)))))
- (-5 *1 (-418 *3)) (-4 *3 (-555))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *4 (-767)) (-4 *3 (-349)) (-4 *5 (-1233 *3))
- (-5 *2 (-640 (-1165 *3))) (-5 *1 (-498 *3 *5 *6))
- (-4 *6 (-1233 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-856)) (-5 *3 (-128)) (-5 *2 (-767)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-244 *2)) (-4 *2 (-1208)))))
+ (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-586 *4))
+ (-4 *4 (-349)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-316 (-225))) (-5 *2 (-316 (-407 (-563))))
+ (-5 *1 (-305)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 *3)) (-4 *3 (-1065 *5 *6 *7 *8)) (-4 *5 (-452))
+ (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7))
+ (-5 *2 (-112)) (-5 *1 (-984 *5 *6 *7 *8 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 *3)) (-4 *3 (-1065 *5 *6 *7 *8)) (-4 *5 (-452))
+ (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7))
+ (-5 *2 (-112)) (-5 *1 (-1100 *5 *6 *7 *8 *3)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-837)) (-5 *4 (-1057)) (-5 *2 (-1031)) (-5 *1 (-836))))
((*1 *2 *3) (-12 (-5 *3 (-837)) (-5 *2 (-1031)) (-5 *1 (-836))))
@@ -7318,194 +6896,69 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-640 (-316 (-379)))) (-5 *4 (-640 (-379)))
(-5 *2 (-1031)) (-5 *1 (-836)))))
-(((*1 *1 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208))))
- ((*1 *1 *1)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-373 *2)) (-4 *2 (-1208))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-555)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-609 *3)) (-4 *3 (-846)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-858)) (-5 *1 (-390 *3 *4 *5)) (-14 *3 (-767))
- (-14 *4 (-767)) (-4 *5 (-172)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-640 *3)) (-4 *3 (-1233 (-563))) (-5 *1 (-486 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-363) (-1193) (-998))))))
(((*1 *2 *2 *2)
- (-12 (-4 *3 (-38 (-407 (-563)))) (-5 *1 (-1250 *3 *2))
- (-4 *2 (-1248 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-789))
- (-4 *3 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $))))) (-4 *5 (-555))
- (-5 *1 (-728 *4 *3 *5 *2)) (-4 *2 (-945 (-407 (-948 *5)) *4 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *4 (-1045)) (-4 *5 (-789))
- (-4 *3
- (-13 (-846)
- (-10 -8 (-15 -2220 ((-1169) $))
- (-15 -2518 ((-3 $ "failed") (-1169))))))
- (-5 *1 (-980 *4 *5 *3 *2)) (-4 *2 (-945 (-948 *4) *5 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-640 *6))
- (-4 *6
- (-13 (-846)
- (-10 -8 (-15 -2220 ((-1169) $))
- (-15 -2518 ((-3 $ "failed") (-1169))))))
- (-4 *4 (-1045)) (-4 *5 (-789)) (-5 *1 (-980 *4 *5 *6 *2))
- (-4 *2 (-945 (-948 *4) *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-789)) (-4 *6 (-846)) (-4 *7 (-555))
- (-4 *3 (-945 *7 *5 *6))
- (-5 *2
- (-2 (|:| -1654 (-767)) (|:| -2311 *3) (|:| |radicand| (-640 *3))))
- (-5 *1 (-949 *5 *6 *7 *3 *8)) (-5 *4 (-767))
- (-4 *8
- (-13 (-363)
- (-10 -8 (-15 -1693 ($ *3)) (-15 -2143 (*3 $)) (-15 -2154 (*3 $))))))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-555)) (-4 *2 (-1045))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-555))))
- ((*1 *2 *3 *3 *1)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *3 (-1059 *4 *5 *6))
- (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *1))))
- (-4 *1 (-1065 *4 *5 *6 *3)))))
+ (|partial| -12 (-4 *3 (-363)) (-5 *1 (-892 *2 *3))
+ (-4 *2 (-1233 *3)))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-747)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-563))
- (-5 *1 (-449 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-767)) (-5 *1 (-779 *2)) (-4 *2 (-38 (-407 (-563))))
- (-4 *2 (-172)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-363) (-844))) (-5 *1 (-181 *3 *2))
- (-4 *2 (-1233 (-169 *3))))))
-(((*1 *2 *3 *3 *4 *5 *3 *6)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1031))
- (-5 *1 (-742)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-939 (-225))) (-5 *2 (-1262)) (-5 *1 (-468)))))
-(((*1 *2 *3) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-560)) (-5 *3 (-563))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-938)) (-5 *3 (-563)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
- (-5 *2
- (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563))
- (|:| |success| (-112))))
- (-5 *1 (-785)) (-5 *5 (-563)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-5 *2 (-112))
- (-5 *1 (-357 *4))))
+ (-12 (-5 *3 (-640 (-2 (|:| -2173 *4) (|:| -3871 (-563)))))
+ (-4 *4 (-1233 (-563))) (-5 *2 (-733 (-767))) (-5 *1 (-442 *4))))
((*1 *2 *3)
- (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-112))
- (-5 *1 (-528 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1186)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-640 (-1165 *7))) (-5 *3 (-1165 *7))
- (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-905)) (-4 *5 (-789))
- (-4 *6 (-846)) (-5 *1 (-902 *4 *5 *6 *7))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-640 (-1165 *5))) (-5 *3 (-1165 *5))
- (-4 *5 (-1233 *4)) (-4 *4 (-905)) (-5 *1 (-903 *4 *5)))))
+ (-12 (-5 *3 (-418 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-1045))
+ (-5 *2 (-733 (-767))) (-5 *1 (-444 *4 *5)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-555))
- (-4 *7 (-945 *3 *5 *6))
- (-5 *2 (-2 (|:| -1654 (-767)) (|:| -2311 *8) (|:| |radicand| *8)))
- (-5 *1 (-949 *5 *6 *3 *7 *8)) (-5 *4 (-767))
- (-4 *8
- (-13 (-363)
- (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $)) (-15 -2154 (*7 $))))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-1151))) (-5 *2 (-1151)) (-5 *1 (-192))))
- ((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| |lm| (-386 *3)) (|:| |mm| (-386 *3)) (|:| |rm| (-386 *3))))
- (-5 *1 (-386 *3)) (-4 *3 (-1093))))
- ((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| |lm| (-815 *3)) (|:| |mm| (-815 *3)) (|:| |rm| (-815 *3))))
- (-5 *1 (-815 *3)) (-4 *3 (-846)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1134 *2 *3)) (-4 *2 (-13 (-1093) (-34)))
- (-4 *3 (-13 (-1093) (-34))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-312)) (-5 *1 (-825)))))
+ (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *3 *2))
+ (-4 *2 (-13 (-27) (-1193) (-430 (-169 *3))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-846) (-1034 (-563))))
+ (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 (-169 *4))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1169))
+ (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-1197 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 (-860 *5))) (-14 *5 (-640 (-1169))) (-4 *6 (-452))
- (-5 *2 (-640 (-640 (-247 *5 *6)))) (-5 *1 (-471 *5 *6 *7))
- (-5 *3 (-640 (-247 *5 *6))) (-4 *7 (-452)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-1257 (-684 *4))) (-5 *1 (-90 *4 *5))
- (-5 *3 (-684 *4)) (-4 *5 (-651 *4)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)) (-4 *2 (-846))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-282 *3)) (-4 *3 (-1208))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-964 *2)) (-4 *2 (-846)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-525)))))
-(((*1 *2 *1) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-1165 *3)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-609 *1)) (-4 *1 (-302)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1078)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-767)) (-4 *1 (-374 *3 *4)) (-4 *3 (-846))
- (-4 *4 (-172))))
+ (|partial| -12 (-5 *3 (-114)) (-5 *4 (-640 *2)) (-5 *1 (-113 *2))
+ (-4 *2 (-1093))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-640 *4))) (-4 *4 (-1093))
+ (-5 *1 (-113 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1093))
+ (-5 *1 (-113 *4))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-640 *4)))
+ (-5 *1 (-113 *4)) (-4 *4 (-1093))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-767)) (-4 *1 (-1278 *3 *4)) (-4 *3 (-846))
- (-4 *4 (-1045)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-856)) (-5 *2 (-686 (-548))) (-5 *3 (-548)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-363) (-1193) (-998))))))
-(((*1 *1 *1 *1) (-4 *1 (-143)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545))))
- ((*1 *1 *1 *1) (-5 *1 (-858)))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-563))) (-5 *1 (-1043))
- (-5 *3 (-563)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-225))) (-5 *2 (-1257 (-694))) (-5 *1 (-305)))))
-(((*1 *2 *3) (-12 (-5 *3 (-640 *2)) (-5 *1 (-1182 *2)) (-4 *2 (-363)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN))))
- (-5 *2 (-1031)) (-5 *1 (-744)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))))
-(((*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-748)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1208)) (-5 *1 (-182 *3 *2)) (-4 *2 (-669 *3)))))
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-643 *3)) (-4 *3 (-1045))
+ (-5 *1 (-710 *3 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-832 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *2 *2) (-12 (-5 *1 (-585 *2)) (-4 *2 (-545)))))
(((*1 *2 *3)
- (-12 (-14 *4 (-640 (-1169))) (-4 *5 (-452))
+ (-12 (-5 *3 (-1257 (-316 (-225))))
(-5 *2
- (-2 (|:| |glbase| (-640 (-247 *4 *5))) (|:| |glval| (-640 (-563)))))
- (-5 *1 (-628 *4 *5)) (-5 *3 (-640 (-247 *4 *5))))))
+ (-2 (|:| |additions| (-563)) (|:| |multiplications| (-563))
+ (|:| |exponentiations| (-563)) (|:| |functionCalls| (-563))))
+ (-5 *1 (-305)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *4 *4 *5 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-747)))))
(((*1 *2 *3)
- (-12
+ (-12 (-4 *1 (-891))
(-5 *3
(-2 (|:| |pde| (-640 (-316 (-225))))
(|:| |constraints|
@@ -7515,27 +6968,164 @@
(|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225))))))
(|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151))
(|:| |tol| (-225))))
- (-5 *2 (-112)) (-5 *1 (-210)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151))
- (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *3 *4 *3 *4 *3)
+ (-5 *2 (-1031)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-1045)) (-5 *1 (-444 *3 *2)) (-4 *2 (-1233 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *3 *2))
+ (-4 *2 (-13 (-27) (-1193) (-430 (-169 *3))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-846) (-1034 (-563))))
+ (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 (-169 *4))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1169))
+ (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-1197 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-643 *3)) (-4 *3 (-1045))
+ (-5 *1 (-710 *3 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-832 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-585 *2)) (-4 *2 (-545)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))
+ (-5 *2 (-379)) (-5 *1 (-267))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *2 (-379)) (-5 *1 (-305)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
+ (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
+ (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
(-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-752)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-858))))
- ((*1 *1 *1) (-5 *1 (-858))))
+ (-5 *1 (-747)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093))
+ (-5 *2 (-640 (-2 (|:| |k| *4) (|:| |c| *3))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-2 (|:| |k| (-889 *3)) (|:| |c| *4))))
+ (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846))
+ (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-667 *3))) (-5 *1 (-889 *3)) (-4 *3 (-846)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-1045)) (-5 *1 (-444 *3 *2)) (-4 *2 (-1233 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-114)) (-4 *4 (-1045)) (-5 *1 (-710 *4 *2))
+ (-4 *2 (-643 *4))))
+ ((*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-832 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-585 *3)) (-4 *3 (-545)))))
+(((*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-225)) (-5 *1 (-305)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
+ (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
+ (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-747)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045))
+ (-14 *4 (-640 (-1169)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1208))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846)))
+ (-14 *4 (-640 (-1169)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-667 *3)) (-4 *3 (-846))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-846))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-889 *3)) (-4 *3 (-846)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1045))
+ (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284)))
+ (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4)))))
+(((*1 *1 *1) (-12 (-5 *1 (-1194 *2)) (-4 *2 (-1093)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-361 (-114))) (-4 *2 (-1045)) (-5 *1 (-710 *2 *4))
+ (-4 *4 (-643 *2))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-361 (-114))) (-5 *1 (-832 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-767)) (-5 *1 (-585 *2)) (-4 *2 (-545)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-316 (-225))) (-5 *2 (-407 (-563))) (-5 *1 (-305)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
+ (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
+ (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-747)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-5 *2 (-640 *5))
+ (-5 *1 (-886 *4 *5)) (-4 *5 (-1208)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1045))
+ (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284)))
+ (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-1194 *3))) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1113)) (-5 *2 (-1262)) (-5 *1 (-827)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-767)) (-5 *1 (-585 *2)) (-4 *2 (-545))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-2 (|:| -4212 *3) (|:| -3311 (-767)))) (-5 *1 (-585 *3))
+ (-4 *3 (-545)))))
+(((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-407 (-563))) (-5 *1 (-305)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-747)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-886 *4 *3))
+ (-4 *3 (-1208))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330))
- (-5 *1 (-332)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-563))
- (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191))))
- (-5 *2 (-1031)) (-5 *1 (-742)))))
-(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-379)) (-5 *3 (-1151)) (-5 *1 (-97))))
- ((*1 *2 *3 *2) (-12 (-5 *2 (-379)) (-5 *3 (-1151)) (-5 *1 (-97)))))
-(((*1 *2)
- (-12 (-4 *3 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-1262))
- (-5 *1 (-433 *3 *4)) (-4 *4 (-430 *3)))))
+ (-12 (-5 *4 (-767)) (-4 *5 (-1045)) (-5 *2 (-563))
+ (-5 *1 (-443 *5 *3 *6)) (-4 *3 (-1233 *5))
+ (-4 *6 (-13 (-404) (-1034 *5) (-363) (-1193) (-284)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-443 *4 *3 *5))
+ (-4 *3 (-1233 *4))
+ (-4 *5 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-817)) (-5 *4 (-52)) (-5 *2 (-1262)) (-5 *1 (-827)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-767)) (-5 *2 (-112)) (-5 *1 (-585 *3)) (-4 *3 (-545)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1087 (-839 (-379)))) (-5 *2 (-1087 (-839 (-225))))
+ (-5 *1 (-305)))))
(((*1 *2 *2 *2) (-12 (-5 *2 (-1031)) (-5 *1 (-305))))
((*1 *2 *3)
(-12 (-5 *3 (-640 (-1031))) (-5 *2 (-1031)) (-5 *1 (-305))))
@@ -7549,211 +7139,279 @@
(-4 *4 (-1208))))
((*1 *1 *2 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208))))
((*1 *1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
-(((*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1056))))
- ((*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1056)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-640 (-640 *7)))
- (-5 *1 (-448 *4 *5 *6 *7)) (-5 *3 (-640 *7))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-5 *2 (-112))
+ (-5 *1 (-885 *4 *5)) (-4 *5 (-1093))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789))
- (-4 *7 (-846)) (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-640 (-640 *8)))
- (-5 *1 (-448 *5 *6 *7 *8)) (-5 *3 (-640 *8)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-1045)) (-5 *1 (-444 *3 *2)) (-4 *2 (-1233 *3)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-171)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-767)) (-4 *4 (-555)) (-5 *1 (-965 *4 *2))
- (-4 *2 (-1233 *4)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+ (-12 (-5 *4 (-888 *5)) (-4 *5 (-1093)) (-5 *2 (-112))
+ (-5 *1 (-886 *5 *3)) (-4 *3 (-1208))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 *6)) (-5 *4 (-888 *5)) (-4 *5 (-1093))
+ (-4 *6 (-1208)) (-5 *2 (-112)) (-5 *1 (-886 *5 *6)))))
+(((*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 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-670 (-225)))
+ (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-746)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-443 *4 *3 *5))
+ (-4 *3 (-1233 *4))
+ (-4 *5 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-1194 *3))) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *3) (-12 (-5 *3 (-817)) (-5 *2 (-52)) (-5 *1 (-827)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-767)) (-4 *4 (-363)) (-5 *1 (-892 *2 *4))
- (-4 *2 (-1233 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-316 (-225))) (-5 *1 (-210)))))
-(((*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-1215))))))
-(((*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))))
-(((*1 *1 *1) (-5 *1 (-1057))))
-(((*1 *1 *1) (-4 *1 (-865 *2))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))))
-(((*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789))
- (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)) (-5 *2 (-640 *3))
- (-5 *1 (-589 *5 *6 *7 *8 *3)) (-4 *3 (-1102 *5 *6 *7 *8))))
+ (|partial| -12 (-5 *3 (-767)) (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *1 *2 *3 *4)
+ (-12
+ (-5 *3
+ (-640
+ (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 *2))
+ (|:| |logand| (-1165 *2)))))
+ (-5 *4 (-640 (-2 (|:| |integrand| *2) (|:| |intvar| *2))))
+ (-4 *2 (-363)) (-5 *1 (-584 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-839 (-379))) (-5 *2 (-839 (-225))) (-5 *1 (-305)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))
+ (-5 *1 (-984 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))
+ (-5 *1 (-1100 *3 *4 *5 *6 *7)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *5 (-1151))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-82 PDEF))))
+ (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1031))
+ (-5 *1 (-746)))))
+(((*1 *2 *1)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -2516 (-114)) (|:| |arg| (-640 (-888 *3)))))
+ (-5 *1 (-888 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-114)) (-5 *2 (-640 (-888 *4)))
+ (-5 *1 (-888 *4)) (-4 *4 (-1093)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1045))
+ (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284)))
+ (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147)))
- (-5 *2
- (-640 (-2 (|:| -1602 (-1165 *5)) (|:| -1880 (-640 (-948 *5))))))
- (-5 *1 (-1071 *5 *6)) (-5 *3 (-640 (-948 *5)))
- (-14 *6 (-640 (-1169)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-307) (-147)))
- (-5 *2
- (-640 (-2 (|:| -1602 (-1165 *4)) (|:| -1880 (-640 (-948 *4))))))
- (-5 *1 (-1071 *4 *5)) (-5 *3 (-640 (-948 *4)))
- (-14 *5 (-640 (-1169)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147)))
- (-5 *2
- (-640 (-2 (|:| -1602 (-1165 *5)) (|:| -1880 (-640 (-948 *5))))))
- (-5 *1 (-1071 *5 *6)) (-5 *3 (-640 (-948 *5)))
- (-14 *6 (-640 (-1169))))))
+ (-12 (-5 *4 (-917)) (-4 *5 (-1045))
+ (-4 *2 (-13 (-404) (-1034 *5) (-363) (-1193) (-284)))
+ (-5 *1 (-443 *5 *3 *2)) (-4 *3 (-1233 *5)))))
+(((*1 *2) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-1191)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-312)) (-5 *1 (-825)))))
+(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-870))))
+ ((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *1) (-12 (-5 *1 (-584 *2)) (-4 *2 (-363)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-316 (-379))) (-5 *2 (-316 (-225))) (-5 *1 (-305)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 (-563)))
+ (-5 *2 (-1257 (-407 (-563)))) (-5 *1 (-1284 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-417 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-746)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3))
+ (-4 *3 (-1093)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-443 *4 *3 *5))
+ (-4 *3 (-1233 *4))
+ (-4 *5 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1151)) (-5 *2 (-563)) (-5 *1 (-1190 *4))
+ (-4 *4 (-1045)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-112)) (-5 *1 (-825)))))
+(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-157))))
+ ((*1 *2 *1) (-12 (-5 *2 (-157)) (-5 *1 (-870))))
+ ((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
(((*1 *2 *1)
(-12
(-5 *2
(-640
- (-2
- (|:| -2387
- (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (|:| -2557
- (-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| (-1149 (-225)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -2516
- (-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 (-558))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-601 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1208))
- (-5 *2 (-640 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-225))) (-5 *4 (-767)) (-5 *2 (-684 (-225)))
- (-5 *1 (-305)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1142 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))))
-(((*1 *2 *2 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
- (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-563))) (-4 *3 (-1045)) (-5 *1 (-593 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-563))) (-4 *1 (-1217 *3)) (-4 *3 (-1045))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-563))) (-4 *1 (-1248 *3)) (-4 *3 (-1045)))))
-(((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-694)) (-5 *1 (-305)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-640 *8)) (-5 *3 (-1 (-112) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555))
- (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-973 *5 *6 *7 *8)))))
-(((*1 *2 *1) (-12 (-5 *2 (-967)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))))
-(((*1 *1) (-5 *1 (-144))) ((*1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *3 *3 *3 *4 *5 *4 *6)
- (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225)))
- (-5 *5 (-1087 (-225))) (-5 *6 (-563)) (-5 *2 (-1203 (-922)))
- (-5 *1 (-318))))
- ((*1 *2 *3 *3 *3 *4 *5 *4 *6 *7)
- (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225)))
- (-5 *5 (-1087 (-225))) (-5 *6 (-563)) (-5 *7 (-1151))
- (-5 *2 (-1203 (-922))) (-5 *1 (-318))))
- ((*1 *2 *3 *3 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225)))
- (-5 *5 (-1087 (-225))) (-5 *6 (-225)) (-5 *7 (-563))
- (-5 *2 (-1203 (-922))) (-5 *1 (-318))))
- ((*1 *2 *3 *3 *3 *4 *5 *6 *7 *8)
- (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225)))
- (-5 *5 (-1087 (-225))) (-5 *6 (-225)) (-5 *7 (-563)) (-5 *8 (-1151))
- (-5 *2 (-1203 (-922))) (-5 *1 (-318)))))
-(((*1 *2 *2 *3 *4 *5)
- (-12 (-5 *2 (-640 *9)) (-5 *3 (-1 (-112) *9))
- (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9))
- (-4 *9 (-1059 *6 *7 *8)) (-4 *6 (-555)) (-4 *7 (-789))
- (-4 *8 (-846)) (-5 *1 (-973 *6 *7 *8 *9)))))
+ (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 *3))
+ (|:| |logand| (-1165 *3)))))
+ (-5 *1 (-584 *3)) (-4 *3 (-363)))))
+(((*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-225)) (-5 *1 (-305)))))
(((*1 *1 *1) (-4 *1 (-545))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))))
-(((*1 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))))
+ (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 (-563)))
+ (-5 *2 (-1257 (-563))) (-5 *1 (-1284 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *2 (-640 (-225)))
- (-5 *1 (-468)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-640 *6)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-468)) (-5 *3 (-640 (-263))) (-5 *1 (-1258))))
- ((*1 *1 *1) (-5 *1 (-1258))))
+ (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-417 *4)))))
+(((*1 *2)
+ (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262))
+ (-5 *1 (-984 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262))
+ (-5 *1 (-1100 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7)
+ (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-75 FCN JACOBF JACEPS))))
+ (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-76 G JACOBG JACGEP))))
+ (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-112)) (-5 *5 (-1095 (-767))) (-5 *6 (-767))
+ (-5 *2
+ (-2 (|:| |contp| (-563))
+ (|:| -1337 (-640 (-2 (|:| |irr| *3) (|:| -3259 (-563)))))))
+ (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-4 *1 (-107 *3)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-897 *2)) (-4 *2 (-1093))))
((*1 *1 *2) (-12 (-5 *1 (-897 *2)) (-4 *2 (-1093)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-563)) (-5 *1 (-1190 *3)) (-4 *3 (-1045)))))
+(((*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-157))))
+ ((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-112)) (-5 *1 (-825)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
+ (-5 *1 (-584 *3)) (-4 *3 (-363)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1165 *9)) (-5 *4 (-640 *7)) (-5 *5 (-640 (-640 *8)))
- (-4 *7 (-846)) (-4 *8 (-307)) (-4 *9 (-945 *8 *6 *7)) (-4 *6 (-789))
- (-5 *2
- (-2 (|:| |upol| (-1165 *8)) (|:| |Lval| (-640 *8))
- (|:| |Lfact|
- (-640 (-2 (|:| -2174 (-1165 *8)) (|:| -1654 (-563)))))
- (|:| |ctpol| *8)))
- (-5 *1 (-738 *6 *7 *8 *9)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 *4)) (-4 *4 (-363)) (-4 *2 (-1233 *4))
- (-5 *1 (-918 *4 *2)))))
+ (-12 (-5 *3 (-948 (-407 (-563)))) (-5 *4 (-1169))
+ (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-640 (-225))) (-5 *1 (-300)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-563)) (-4 *4 (-1233 (-407 *3))) (-5 *2 (-917))
- (-5 *1 (-909 *4 *5)) (-4 *5 (-1233 (-407 *4))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1149 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1045))
- (-5 *3 (-407 (-563))) (-5 *1 (-1153 *4)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4407)) (-4 *1 (-235 *3))
- (-4 *3 (-1093))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-282 *3)) (-4 *3 (-1208)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-640 *1)) (|has| *1 (-6 -4408)) (-4 *1 (-1006 *3))
- (-4 *3 (-1208)))))
-(((*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-129))))))
-(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-563))
- (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031))
- (-5 *1 (-744)))))
-(((*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-767)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-917)) (-5 *2 (-1262)) (-5 *1 (-214 *4))
- (-4 *4
- (-13 (-846)
- (-10 -8 (-15 -2309 ((-1151) $ (-1169))) (-15 -1463 (*2 $))
- (-15 -2807 (*2 $)))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1262)) (-5 *1 (-214 *3))
- (-4 *3
- (-13 (-846)
- (-10 -8 (-15 -2309 ((-1151) $ (-1169))) (-15 -1463 (*2 $))
- (-15 -2807 (*2 $)))))))
- ((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-502)))))
+ (-12 (-5 *3 (-1257 *4)) (-4 *4 (-636 (-563))) (-5 *2 (-112))
+ (-5 *1 (-1284 *4)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262))
+ (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262))
+ (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7)
+ (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-225))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))))
+ (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL))))
+ (-5 *2 (-1031)) (-5 *1 (-745))))
+ ((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8)
+ (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-225))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))))
+ (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL))))
+ (-5 *8 (-388)) (-5 *2 (-1031)) (-5 *1 (-745)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
+(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *1) (-12 (-4 *1 (-844)) (-5 *2 (-563))))
+ ((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-901 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1062 *4 *3)) (-4 *4 (-13 (-844) (-363)))
+ (-4 *3 (-1233 *4)) (-5 *2 (-563))))
+ ((*1 *2 *3)
+ (|partial| -12
+ (-4 *4 (-13 (-555) (-846) (-1034 *2) (-636 *2) (-452)))
+ (-5 *2 (-563)) (-5 *1 (-1109 *4 *3))
+ (-4 *3 (-13 (-27) (-1193) (-430 *4)))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-839 *3))
+ (-4 *3 (-13 (-27) (-1193) (-430 *6)))
+ (-4 *6 (-13 (-555) (-846) (-1034 *2) (-636 *2) (-452)))
+ (-5 *2 (-563)) (-5 *1 (-1109 *6 *3))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-1151))
+ (-4 *6 (-13 (-555) (-846) (-1034 *2) (-636 *2) (-452)))
+ (-5 *2 (-563)) (-5 *1 (-1109 *6 *3))
+ (-4 *3 (-13 (-27) (-1193) (-430 *6)))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-452)) (-5 *2 (-563))
+ (-5 *1 (-1110 *4))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-839 (-407 (-948 *6))))
+ (-5 *3 (-407 (-948 *6))) (-4 *6 (-452)) (-5 *2 (-563))
+ (-5 *1 (-1110 *6))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *3 (-407 (-948 *6))) (-5 *4 (-1169))
+ (-5 *5 (-1151)) (-4 *6 (-452)) (-5 *2 (-563)) (-5 *1 (-1110 *6))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-563)) (-5 *1 (-1190 *3)) (-4 *3 (-1045)))))
(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6))
- (-5 *2 (-2 (|:| |bas| (-476 *4 *5 *6 *7)) (|:| -2636 (-640 *7))))
- (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858))))
- ((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-326 *3 *4)) (-4 *3 (-1045))
- (-4 *4 (-788)))))
+ (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-825)) (-5 *3 (-1151)))))
+(((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-584 *3)) (-4 *3 (-363)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2 (-1149 (-225))) (-5 *1 (-192))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-316 (-225))) (-5 *4 (-640 (-1169)))
+ (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-1149 (-225))) (-5 *1 (-300))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *4 (-640 (-1169)))
+ (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-1149 (-225))) (-5 *1 (-300)))))
+(((*1 *2 *3) (-12 (-5 *2 (-418 *3)) (-5 *1 (-557 *3)) (-4 *3 (-545))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307)) (-5 *2 (-418 *3))
+ (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-945 *6 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307))
+ (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-418 (-1165 *7)))
+ (-5 *1 (-738 *4 *5 *6 *7)) (-5 *3 (-1165 *7))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-452)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *2 (-418 *1)) (-4 *1 (-945 *3 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-846)) (-4 *5 (-789)) (-4 *6 (-452)) (-5 *2 (-418 *3))
+ (-5 *1 (-975 *4 *5 *6 *3)) (-4 *3 (-945 *6 *5 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-452))
+ (-4 *7 (-945 *6 *4 *5)) (-5 *2 (-418 (-1165 (-407 *7))))
+ (-5 *1 (-1164 *4 *5 *6 *7)) (-5 *3 (-1165 (-407 *7)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-418 *1)) (-4 *1 (-1212))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-5 *2 (-418 *3)) (-5 *1 (-1236 *4 *3))
+ (-4 *3 (-13 (-1233 *4) (-555) (-10 -8 (-15 -3551 ($ $ $)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
+ (-14 *5 (-640 (-1169)))
+ (-5 *2
+ (-640 (-1139 *4 (-531 (-860 *6)) (-860 *6) (-776 *4 (-860 *6)))))
+ (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
+ (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7)
+ (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-84 FCNF))))
+ (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-745)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-1189))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1189)))))
+(((*1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-825)))))
+(((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-581)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-1165 *1)) (-5 *4 (-1169)) (-4 *1 (-27))
(-5 *2 (-640 *1))))
@@ -7767,244 +7425,185 @@
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-316 (-225))) (-5 *4 (-640 (-1169)))
(-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-1149 (-225))) (-5 *1 (-300)))))
-(((*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259))))
- ((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))))
-(((*1 *2 *2) (-12 (-5 *2 (-640 (-316 (-225)))) (-5 *1 (-267)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-112)) (-5 *1 (-114))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-302)) (-5 *3 (-1169)) (-5 *2 (-112))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-302)) (-5 *3 (-114)) (-5 *2 (-112))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1169)) (-5 *2 (-112)) (-5 *1 (-609 *4)) (-4 *4 (-846))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-609 *4)) (-4 *4 (-846))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1093)) (-5 *2 (-112)) (-5 *1 (-883 *5 *3 *4))
- (-4 *3 (-882 *5)) (-4 *4 (-611 (-888 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *6)) (-4 *6 (-882 *5)) (-4 *5 (-1093))
- (-5 *2 (-112)) (-5 *1 (-883 *5 *6 *4)) (-4 *4 (-611 (-888 *5))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-767)) (-4 *1 (-651 *3)) (-4 *3 (-1045)) (-4 *3 (-363))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-767)) (-5 *4 (-1 *5 *5)) (-4 *5 (-363))
- (-5 *1 (-654 *5 *2)) (-4 *2 (-651 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *2 (-1233 *4)) (-5 *1 (-803 *4 *2 *3 *5))
- (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *3 (-651 *2))
- (-4 *5 (-651 (-407 *2)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *2 (-1233 *4)) (-5 *1 (-803 *4 *2 *5 *3))
- (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *5 (-651 *2))
- (-4 *3 (-651 (-407 *2))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1093)) (-4 *5 (-1093))
- (-5 *2 (-1 *5)) (-5 *1 (-678 *4 *5)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-420 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1193) (-430 *3)))
- (-14 *4 (-1169)) (-14 *5 *2)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-4 *2 (-13 (-27) (-1193) (-430 *3) (-10 -8 (-15 -1693 ($ *4)))))
- (-4 *4 (-844))
- (-4 *5
- (-13 (-1235 *2 *4) (-363) (-1193)
- (-10 -8 (-15 -4202 ($ $)) (-15 -3698 ($ $)))))
- (-5 *1 (-422 *3 *2 *4 *5 *6 *7)) (-4 *6 (-979 *5)) (-14 *7 (-1169)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-767)) (-4 *1 (-326 *3 *4)) (-4 *3 (-1045))
- (-4 *4 (-788)) (-4 *3 (-172)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1045)) (-5 *2 (-112)) (-5 *1 (-444 *4 *3))
- (-4 *3 (-1233 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-4 *1 (-763 *3)) (-4 *3 (-1093)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-555))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
+ (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
+ (-14 *5 (-640 (-1169))) (-5 *2 (-640 (-640 (-1020 (-407 *4)))))
+ (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
+ (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7))
+ (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
+ (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7))
+ (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-948 *4)))
+ (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
+ (-5 *2 (-640 (-640 (-1020 (-407 *4))))) (-5 *1 (-1283 *4 *5 *6))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))))
(((*1 *2 *1)
- (-12 (-4 *2 (-555)) (-5 *1 (-620 *2 *3)) (-4 *3 (-1233 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-594 *3)) (-4 *3 (-1045))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-969 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-788))
- (-4 *5 (-846)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-917)) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
- ((*1 *1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-263)))))
-(((*1 *2)
- (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-417 *3)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846))
- (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-640 (-767)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846))
- (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-640 (-767))))))
+ (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
+ (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6)
+ (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-225))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1031))
+ (-5 *1 (-745)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-948 (-563))) (-5 *2 (-640 *1)) (-4 *1 (-1008))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-948 (-407 (-563)))) (-5 *2 (-640 *1)) (-4 *1 (-1008))))
- ((*1 *2 *3) (-12 (-5 *3 (-948 *1)) (-4 *1 (-1008)) (-5 *2 (-640 *1))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1165 (-563))) (-5 *2 (-640 *1)) (-4 *1 (-1008))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1165 (-407 (-563)))) (-5 *2 (-640 *1)) (-4 *1 (-1008))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-1189)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-52)) (-5 *1 (-825)))))
+(((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-578)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-316 (-225))) (-5 *4 (-1169))
+ (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-640 (-225))) (-5 *1 (-192))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-316 (-225))) (-5 *4 (-1169))
+ (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-640 (-225))) (-5 *1 (-300)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-640 (-1169)))
+ (-5 *2 (-640 (-640 (-379)))) (-5 *1 (-1019)) (-5 *5 (-379))))
((*1 *2 *3)
- (-12 (-5 *3 (-1165 *1)) (-4 *1 (-1008)) (-5 *2 (-640 *1))))
+ (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
+ (-14 *5 (-640 (-1169))) (-5 *2 (-640 (-640 (-1020 (-407 *4)))))
+ (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169)))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
+ (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7))
+ (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
+ (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7))
+ (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
+ (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7))
+ (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-844) (-363))) (-4 *3 (-1233 *4)) (-5 *2 (-640 *1))
- (-4 *1 (-1062 *4 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-815 *3)) (-4 *3 (-846)) (-5 *1 (-667 *3)))))
+ (-12 (-5 *3 (-640 (-948 *4)))
+ (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
+ (-5 *2 (-640 (-640 (-1020 (-407 *4))))) (-5 *1 (-1283 *4 *5 *6))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-858)) (-5 *1 (-390 *3 *4 *5)) (-14 *3 (-767))
- (-14 *4 (-767)) (-4 *5 (-172)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-972 *4 *5 *3 *6)) (-4 *4 (-1045)) (-4 *5 (-789))
- (-4 *3 (-846)) (-4 *6 (-1059 *4 *5 *3)) (-5 *2 (-112)))))
-(((*1 *1 *1) (|partial| -4 *1 (-145))) ((*1 *1 *1) (-4 *1 (-349)))
- ((*1 *1 *1) (|partial| -12 (-4 *1 (-145)) (-4 *1 (-905)))))
+ (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
+ (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10)
+ (-12 (-5 *4 (-563)) (-5 *5 (-1151)) (-5 *6 (-684 (-225)))
+ (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))))
+ (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))))
+ (-5 *9 (-3 (|:| |fn| (-388)) (|:| |fp| (-71 PEDERV))))
+ (-5 *10 (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))
+ (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 (-437)))))
+ (-12 (-5 *2 (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 (-437)))))
(-5 *1 (-1173)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-846)) (-5 *2 (-640 (-640 *4))) (-5 *1 (-1179 *4))
- (-5 *3 (-640 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-948 *6))) (-5 *4 (-640 (-1169)))
- (-4 *6 (-13 (-555) (-1034 *5))) (-4 *5 (-555))
- (-5 *2 (-640 (-640 (-294 (-407 (-948 *6)))))) (-5 *1 (-1035 *5 *6)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
- (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-169 (-225))))
- (-5 *2 (-1031)) (-5 *1 (-750)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1151)) (-5 *1 (-1189)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-52)) (-5 *1 (-825)))))
+(((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *1) (-12 (-5 *2 (-213 4 (-129))) (-5 *1 (-578)))))
(((*1 *1 *1) (-4 *1 (-626)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2))
(-4 *2 (-13 (-430 *3) (-998) (-1193))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1045)) (-4 *2 (-682 *4 *5 *6))
- (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1233 *4)) (-4 *5 (-373 *4))
- (-4 *6 (-373 *4)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-767)) (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045))
- (-4 *4 (-789)) (-4 *5 (-846)) (-4 *3 (-555)))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-373 *2)) (-4 *2 (-1208))
- (-4 *2 (-846))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4408))
- (-4 *1 (-373 *3)) (-4 *3 (-1208)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-923))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2 (-112)) (-5 *1 (-300)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
+ (-14 *5 (-640 (-1169)))
(-5 *2
- (-2 (|:| |brans| (-640 (-640 (-939 (-225)))))
- (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))))
- (-5 *1 (-153))))
+ (-640 (-2 (|:| -4224 (-1165 *4)) (|:| -3759 (-640 (-948 *4))))))
+ (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169)))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
+ (-5 *2
+ (-640 (-2 (|:| -4224 (-1165 *5)) (|:| -3759 (-640 (-948 *5))))))
+ (-5 *1 (-1283 *5 *6 *7)) (-5 *3 (-640 (-948 *5)))
+ (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-923)) (-5 *4 (-407 (-563)))
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
(-5 *2
- (-2 (|:| |brans| (-640 (-640 (-939 (-225)))))
- (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))))
- (-5 *1 (-153))))
- ((*1 *2 *3)
- (-12
+ (-640 (-2 (|:| -4224 (-1165 *5)) (|:| -3759 (-640 (-948 *5))))))
+ (-5 *1 (-1283 *5 *6 *7)) (-5 *3 (-640 (-948 *5)))
+ (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
(-5 *2
- (-2 (|:| |brans| (-640 (-640 (-939 (-225)))))
- (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))))
- (-5 *1 (-153)) (-5 *3 (-640 (-939 (-225))))))
+ (-640 (-2 (|:| -4224 (-1165 *5)) (|:| -3759 (-640 (-948 *5))))))
+ (-5 *1 (-1283 *5 *6 *7)) (-5 *3 (-640 (-948 *5)))
+ (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
((*1 *2 *3)
- (-12
+ (-12 (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
(-5 *2
- (-2 (|:| |brans| (-640 (-640 (-939 (-225)))))
- (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))))
- (-5 *1 (-153)) (-5 *3 (-640 (-640 (-939 (-225)))))))
- ((*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-263))))
- ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-263)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-4 *1 (-323 *2 *4)) (-4 *4 (-131))
- (-4 *2 (-1093))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-361 *2)) (-4 *2 (-1093))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-386 *2)) (-4 *2 (-1093))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-4 *2 (-1093)) (-5 *1 (-644 *2 *4 *5))
- (-4 *4 (-23)) (-14 *5 *4)))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-815 *2)) (-4 *2 (-846)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2))
- (-4 *4 (-373 *2)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
- (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4))))
- (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-820)) (-5 *3 (-640 (-1169))) (-5 *1 (-821)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-640 (-1165 *4))) (-5 *3 (-1165 *4))
- (-4 *4 (-905)) (-5 *1 (-658 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-2 (|:| -2858 (-563)) (|:| -2760 (-640 *3))))
- (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
-(((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-491)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2742 *4)))
- (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
+ (-640 (-2 (|:| -4224 (-1165 *4)) (|:| -3759 (-640 (-948 *4))))))
+ (-5 *1 (-1283 *4 *5 *6)) (-5 *3 (-640 (-948 *4)))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3368 (-563)))))
- (-5 *1 (-361 *3)) (-4 *3 (-1093))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3368 (-767)))))
- (-5 *1 (-386 *3)) (-4 *3 (-1093))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-640 (-2 (|:| -2174 *3) (|:| -1654 (-563)))))
- (-5 *1 (-418 *3)) (-4 *3 (-555))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3368 (-767)))))
- (-5 *1 (-815 *3)) (-4 *3 (-846)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-767)) (-5 *2 (-112)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| -3548 (-778 *3)) (|:| |coef1| (-778 *3))
- (|:| |coef2| (-778 *3))))
- (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *2 (-2 (|:| -3548 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
- (-4 *1 (-1059 *3 *4 *5)))))
+ (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
+ (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9)
+ (-12 (-5 *4 (-563)) (-5 *5 (-1151)) (-5 *6 (-684 (-225)))
+ (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))))
+ (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))))
+ (-5 *9 (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))
+ (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
+(((*1 *2 *1) (|partial| -12 (-5 *1 (-365 *2)) (-4 *2 (-1093))))
+ ((*1 *2 *1) (|partial| -12 (-5 *2 (-1151)) (-5 *1 (-1189)))))
+(((*1 *2 *3) (-12 (-5 *3 (-818)) (-5 *2 (-52)) (-5 *1 (-825)))))
+(((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
+(((*1 *1) (-5 *1 (-577))))
+(((*1 *1 *1 *1) (-4 *1 (-302))) ((*1 *1 *1) (-4 *1 (-302))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
+ (-5 *2 (-640 (-1042 *5 *6))) (-5 *1 (-1283 *5 *6 *7))
+ (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
+ (-5 *2 (-640 (-1042 *5 *6))) (-5 *1 (-1283 *5 *6 *7))
+ (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-948 *4)))
+ (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
+ (-5 *2 (-640 (-1042 *4 *5))) (-5 *1 (-1283 *4 *5 *6))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-690 *3)) (-4 *3 (-1093))
- (-5 *2 (-640 (-2 (|:| -2557 *3) (|:| -1709 (-767))))))))
+ (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
+ (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7)
+ (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))))
+ (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) (-5 *3 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-745)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-1157 3 *3))))
- ((*1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-1259))))
- ((*1 *2 *1) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-1259)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-491)) (-5 *4 (-950)) (-5 *2 (-686 (-533)))
- (-5 *1 (-533))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-950)) (-4 *3 (-1093)) (-5 *2 (-686 *1))
- (-4 *1 (-763 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-609 *4)) (-5 *1 (-608 *3 *4)) (-4 *3 (-846))
- (-4 *4 (-846)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-407 *6)) (-4 *5 (-1212)) (-4 *6 (-1233 *5))
- (-5 *2 (-2 (|:| -1654 (-767)) (|:| -2311 *3) (|:| |radicand| *6)))
- (-5 *1 (-148 *5 *6 *7)) (-5 *4 (-767)) (-4 *7 (-1233 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-349)) (-5 *3 (-563)) (-5 *2 (-1181 (-917) (-767))))))
+ (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1189)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-704 *3)) (-5 *1 (-823 *2 *3)) (-4 *3 (-1045)))))
+(((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-576))))
+ ((*1 *1 *2) (-12 (-5 *2 (-388)) (-5 *1 (-576)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-609 *1)) (-4 *1 (-302)))))
(((*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788))))
((*1 *1 *1)
(-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1045)) (-14 *3 (-640 (-1169)))))
@@ -8015,10 +7614,10 @@
(-12 (-4 *1 (-382 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-1093))))
((*1 *1 *1)
(-12 (-14 *2 (-640 (-1169))) (-4 *3 (-172))
- (-4 *5 (-238 (-3608 *2) (-767)))
+ (-4 *5 (-238 (-3610 *2) (-767)))
(-14 *6
- (-1 (-112) (-2 (|:| -2555 *4) (|:| -1654 *5))
- (-2 (|:| -2555 *4) (|:| -1654 *5))))
+ (-1 (-112) (-2 (|:| -2552 *4) (|:| -3311 *5))
+ (-2 (|:| -2552 *4) (|:| -3311 *5))))
(-5 *1 (-461 *2 *3 *4 *5 *6 *7)) (-4 *4 (-846))
(-4 *7 (-945 *3 *5 (-860 *2)))))
((*1 *1 *1) (-12 (-4 *1 (-509 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-846))))
@@ -8034,54 +7633,24 @@
(-4 *2 (-846))))
((*1 *1 *1)
(-12 (-5 *1 (-1280 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-842)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-917)) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
- ((*1 *1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-263)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-640 (-1165 *5))) (-5 *3 (-1165 *5))
- (-4 *5 (-166 *4)) (-4 *4 (-545)) (-5 *1 (-149 *4 *5))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-640 *3)) (-4 *3 (-1233 *5))
- (-4 *5 (-1233 *4)) (-4 *4 (-349)) (-5 *1 (-358 *4 *5 *3))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-640 (-1165 (-563)))) (-5 *3 (-1165 (-563)))
- (-5 *1 (-571))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-640 (-1165 *1))) (-5 *3 (-1165 *1))
- (-4 *1 (-905)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169))
- (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-294 (-316 *5))))
- (-5 *1 (-1122 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-13 (-307) (-846) (-147)))
- (-5 *2 (-640 (-294 (-316 *4)))) (-5 *1 (-1122 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-294 (-407 (-948 *5)))) (-5 *4 (-1169))
- (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-294 (-316 *5))))
- (-5 *1 (-1122 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-294 (-407 (-948 *4))))
- (-4 *4 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-294 (-316 *4))))
- (-5 *1 (-1122 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169)))
- (-4 *5 (-13 (-307) (-846) (-147)))
- (-5 *2 (-640 (-640 (-294 (-316 *5))))) (-5 *1 (-1122 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-407 (-948 *4))))
- (-4 *4 (-13 (-307) (-846) (-147)))
- (-5 *2 (-640 (-640 (-294 (-316 *4))))) (-5 *1 (-1122 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-294 (-407 (-948 *5))))) (-5 *4 (-640 (-1169)))
- (-4 *5 (-13 (-307) (-846) (-147)))
- (-5 *2 (-640 (-640 (-294 (-316 *5))))) (-5 *1 (-1122 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-294 (-407 (-948 *4)))))
- (-4 *4 (-13 (-307) (-846) (-147)))
- (-5 *2 (-640 (-640 (-294 (-316 *4))))) (-5 *1 (-1122 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-397)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1272 (-1169) *3)) (-4 *3 (-1045)) (-5 *1 (-1279 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1272 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045))
+ (-5 *1 (-1281 *3 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
+ (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7)
+ (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))))
+ (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))
+ (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
(((*1 *2 *1)
(-12
(-5 *2
@@ -8094,69 +7663,59 @@
(|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save")
(|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")))
(-5 *1 (-330)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *6 (-917)) (-4 *5 (-307)) (-4 *3 (-1233 *5))
- (-5 *2 (-2 (|:| |plist| (-640 *3)) (|:| |modulo| *5)))
- (-5 *1 (-460 *5 *3)) (-5 *4 (-640 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *2 (-846)) (-4 *3 (-172))))
- ((*1 *2 *3 *3)
- (-12 (-4 *2 (-555)) (-5 *1 (-965 *2 *3)) (-4 *3 (-1233 *2))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-555))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-172)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555))
- (-4 *6 (-789)) (-4 *7 (-846))
- (-5 *2 (-2 (|:| |goodPols| (-640 *8)) (|:| |badPols| (-640 *8))))
- (-5 *1 (-973 *5 *6 *7 *8)) (-5 *4 (-640 *8)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563)))))
- (-4 *5 (-1233 *4))
- (-5 *2 (-640 (-2 (|:| |deg| (-767)) (|:| -1420 *5))))
- (-5 *1 (-805 *4 *5 *3 *6)) (-4 *3 (-651 *5))
- (-4 *6 (-651 (-407 *5))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1))
- (-4 *1 (-945 *3 *4 *5)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-5 *1 (-1180 *3)))))
(((*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394))))
((*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1132))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-379)) (-5 *1 (-1057)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563)))))
- (-4 *5 (-1233 *4)) (-5 *2 (-640 (-2 (|:| -3408 *5) (|:| -2378 *5))))
- (-5 *1 (-803 *4 *5 *3 *6)) (-4 *3 (-651 *5))
- (-4 *6 (-651 (-407 *5)))))
+ (-12 (-5 *3 (-316 *4)) (-4 *4 (-13 (-824) (-846) (-1045)))
+ (-5 *2 (-1151)) (-5 *1 (-822 *4))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563)))))
- (-4 *4 (-1233 *5)) (-5 *2 (-640 (-2 (|:| -3408 *4) (|:| -2378 *4))))
- (-5 *1 (-803 *5 *4 *3 *6)) (-4 *3 (-651 *4))
- (-4 *6 (-651 (-407 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563)))))
- (-4 *5 (-1233 *4)) (-5 *2 (-640 (-2 (|:| -3408 *5) (|:| -2378 *5))))
- (-5 *1 (-803 *4 *5 *6 *3)) (-4 *6 (-651 *5))
- (-4 *3 (-651 (-407 *5)))))
+ (-12 (-5 *3 (-316 *5)) (-5 *4 (-112))
+ (-4 *5 (-13 (-824) (-846) (-1045))) (-5 *2 (-1151))
+ (-5 *1 (-822 *5))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563)))))
- (-4 *4 (-1233 *5)) (-5 *2 (-640 (-2 (|:| -3408 *4) (|:| -2378 *4))))
- (-5 *1 (-803 *5 *4 *6 *3)) (-4 *6 (-651 *4))
- (-4 *3 (-651 (-407 *4))))))
+ (-12 (-5 *3 (-818)) (-5 *4 (-316 *5))
+ (-4 *5 (-13 (-824) (-846) (-1045))) (-5 *2 (-1262))
+ (-5 *1 (-822 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-818)) (-5 *4 (-316 *6)) (-5 *5 (-112))
+ (-4 *6 (-13 (-824) (-846) (-1045))) (-5 *2 (-1262))
+ (-5 *1 (-822 *6))))
+ ((*1 *2 *1) (-12 (-4 *1 (-824)) (-5 *2 (-1151))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-824)) (-5 *3 (-112)) (-5 *2 (-1151))))
+ ((*1 *2 *3 *1) (-12 (-4 *1 (-824)) (-5 *3 (-818)) (-5 *2 (-1262))))
+ ((*1 *2 *3 *1 *4)
+ (-12 (-4 *1 (-824)) (-5 *3 (-818)) (-5 *4 (-112)) (-5 *2 (-1262)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-363))
+ (-5 *2 (-640 (-2 (|:| C (-684 *5)) (|:| |g| (-1257 *5)))))
+ (-5 *1 (-974 *5)) (-5 *3 (-684 *5)) (-5 *4 (-1257 *5)))))
+(((*1 *2 *2 *3 *3)
+ (|partial| -12 (-5 *3 (-1169))
+ (-4 *4 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-574 *4 *2))
+ (-4 *2 (-13 (-1193) (-955) (-1132) (-29 *4))))))
+(((*1 *2 *1) (-12 (-4 *1 (-302)) (-5 *2 (-640 (-114))))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1))
+ (-4 *1 (-945 *3 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-2 (|:| |k| (-1169)) (|:| |c| (-1279 *3)))))
+ (-5 *1 (-1279 *3)) (-4 *3 (-1045))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-2 (|:| |k| *3) (|:| |c| (-1281 *3 *4)))))
+ (-5 *1 (-1281 *3 *4)) (-4 *3 (-846)) (-4 *4 (-1045)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-568 *3)) (-4 *3 (-1034 (-563)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
+ (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN))))
+ (-5 *2 (-1031)) (-5 *1 (-744)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
(((*1 *2 *1)
(|partial| -12 (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789))
(-5 *2 (-112)) (-5 *1 (-983 *3 *4 *5 *6))
@@ -8164,26 +7723,27 @@
((*1 *2 *1)
(-12 (-5 *2 (-112)) (-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34)))
(-4 *4 (-13 (-1093) (-34))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-1212))
- (-4 *6 (-1233 (-407 *5)))
- (-5 *2
- (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5)
- (|:| |gd| *5)))
- (-4 *1 (-342 *4 *5 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-316 (-225)))) (-5 *2 (-112)) (-5 *1 (-267)))))
-(((*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259))))
- ((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174)))))
+ (-12 (-5 *2 (-2 (|:| -3275 (-563)) (|:| -1337 (-640 *3))))
+ (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394))))
+ ((*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))))
+(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-563)) (-5 *3 (-917)) (-5 *1 (-694))))
+ ((*1 *2 *2 *2 *3 *4)
+ (-12 (-5 *2 (-684 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5))
+ (-4 *5 (-363)) (-5 *1 (-974 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-363))
+ (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3)))
+ (-5 *1 (-573 *5 *3)))))
(((*1 *2 *1)
(-12 (-4 *3 (-1093))
(-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3))))
(-5 *2 (-640 (-1069 *3 *4 *5))) (-5 *1 (-1070 *3 *4 *5))
(-4 *5 (-13 (-430 *4) (-882 *3) (-611 (-888 *3)))))))
-(((*1 *2)
- (-12 (-4 *1 (-349))
- (-5 *2 (-640 (-2 (|:| -2174 (-563)) (|:| -1654 (-563))))))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-302)) (-5 *3 (-1169)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1) (-12 (-4 *1 (-302)) (-5 *2 (-112)))))
(((*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045))))
((*1 *2 *1)
(-12 (-4 *2 (-1045)) (-5 *1 (-50 *2 *3)) (-14 *3 (-640 (-1169)))))
@@ -8193,10 +7753,10 @@
((*1 *2 *1)
(-12 (-4 *1 (-382 *2 *3)) (-4 *3 (-1093)) (-4 *2 (-1045))))
((*1 *2 *1)
- (-12 (-14 *3 (-640 (-1169))) (-4 *5 (-238 (-3608 *3) (-767)))
+ (-12 (-14 *3 (-640 (-1169))) (-4 *5 (-238 (-3610 *3) (-767)))
(-14 *6
- (-1 (-112) (-2 (|:| -2555 *4) (|:| -1654 *5))
- (-2 (|:| -2555 *4) (|:| -1654 *5))))
+ (-1 (-112) (-2 (|:| -2552 *4) (|:| -3311 *5))
+ (-2 (|:| -2552 *4) (|:| -3311 *5))))
(-4 *2 (-172)) (-5 *1 (-461 *3 *2 *4 *5 *6 *7)) (-4 *4 (-846))
(-4 *7 (-945 *2 *5 (-860 *3)))))
((*1 *2 *1) (-12 (-4 *1 (-509 *2 *3)) (-4 *3 (-846)) (-4 *2 (-1093))))
@@ -8214,46 +7774,51 @@
(-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
(-4 *2 (-846)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-939 *4)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
- (-4 *4 (-1045)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-640 (-407 (-948 (-563))))) (-5 *4 (-640 (-1169)))
- (-5 *2 (-640 (-640 *5))) (-5 *1 (-380 *5))
- (-4 *5 (-13 (-844) (-363)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-407 (-948 (-563)))) (-5 *2 (-640 *4)) (-5 *1 (-380 *4))
- (-4 *4 (-13 (-844) (-363))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))
- (-5 *2 (-407 (-563))) (-5 *1 (-1016 *4)) (-4 *4 (-1233 (-563))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 (-640 *5))) (-4 *5 (-1248 *4))
- (-4 *4 (-38 (-407 (-563))))
- (-5 *2 (-1 (-1149 *4) (-640 (-1149 *4)))) (-5 *1 (-1250 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-586 *4))
- (-4 *4 (-349)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-1169)))))
+ (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
+ (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4 *4)
+ (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031))
+ (-5 *1 (-744)))))
+(((*1 *1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-112)) (-5 *1 (-888 *4))
+ (-4 *4 (-1093)))))
(((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-418 *3)) (-4 *3 (-555))))
((*1 *2 *3)
- (-12 (-5 *3 (-640 (-2 (|:| -2174 *4) (|:| -4167 (-563)))))
+ (-12 (-5 *3 (-640 (-2 (|:| -2173 *4) (|:| -3871 (-563)))))
(-4 *4 (-1233 (-563))) (-5 *2 (-767)) (-5 *1 (-442 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-363))
+ (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-5 *1 (-450 *4 *5 *6 *2))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-363))
+ (-5 *2
+ (-2 (|:| R (-684 *6)) (|:| A (-684 *6)) (|:| |Ainv| (-684 *6))))
+ (-5 *1 (-974 *6)) (-5 *3 (-684 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363))
+ (-5 *2
+ (-2 (|:| |ir| (-584 (-407 *6))) (|:| |specpart| (-407 *6))
+ (|:| |polypart| *6)))
+ (-5 *1 (-573 *5 *6)) (-5 *3 (-407 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-609 *5)) (-4 *5 (-430 *4)) (-4 *4 (-1034 (-563)))
+ (-4 *4 (-13 (-846) (-555))) (-5 *2 (-1165 *5)) (-5 *1 (-32 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-609 *1)) (-4 *1 (-1045)) (-4 *1 (-302))
+ (-5 *2 (-1165 *1)))))
(((*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788))))
((*1 *2 *1)
(-12 (-4 *1 (-382 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1093))))
((*1 *2 *1)
(-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172))
- (-4 *6 (-238 (-3608 *3) (-767)))
+ (-4 *6 (-238 (-3610 *3) (-767)))
(-14 *7
- (-1 (-112) (-2 (|:| -2555 *5) (|:| -1654 *6))
- (-2 (|:| -2555 *5) (|:| -1654 *6))))
+ (-1 (-112) (-2 (|:| -2552 *5) (|:| -3311 *6))
+ (-2 (|:| -2552 *5) (|:| -3311 *6))))
(-5 *2 (-709 *5 *6 *7)) (-5 *1 (-461 *3 *4 *5 *6 *7 *8))
(-4 *5 (-846)) (-4 *8 (-945 *4 *6 (-860 *3)))))
((*1 *2 *1)
@@ -8262,110 +7827,102 @@
((*1 *1 *1)
(-12 (-4 *1 (-969 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-788))
(-4 *4 (-846)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1165 *2)) (-4 *2 (-430 *4)) (-4 *4 (-13 (-846) (-555)))
- (-5 *1 (-32 *4 *2)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))))
-(((*1 *1 *1) (-12 (-4 *1 (-430 *2)) (-4 *2 (-846)) (-4 *2 (-1045))))
- ((*1 *1 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))))
-(((*1 *2 *3 *4 *4 *2 *2 *2 *2)
- (-12 (-5 *2 (-563))
- (-5 *3
- (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-767)) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-4 *6 (-789)) (-4 *4 (-945 *5 *6 *7)) (-4 *5 (-452)) (-4 *7 (-846))
- (-5 *1 (-449 *5 *6 *7 *4)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-407 *4)) (-4 *4 (-1233 *3)) (-4 *3 (-13 (-363) (-147)))
- (-5 *1 (-399 *3 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-640 (-684 (-563))))
- (-5 *1 (-1103)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-917)) (-5 *1 (-1094 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN))))
+ (-5 *2 (-1031)) (-5 *1 (-744)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-640 (-1169))) (-5 *3 (-52)) (-5 *1 (-888 *4))
+ (-4 *4 (-1093)))))
+(((*1 *2)
+ (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-147))
+ (-4 *3 (-307)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *1 (-973 *3 *4 *5 *6)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-620 *4 *5))
+ (-5 *3
+ (-1 (-2 (|:| |ans| *4) (|:| -1700 *4) (|:| |sol?| (-112)))
+ (-563) *4))
+ (-4 *4 (-363)) (-4 *5 (-1233 *4)) (-5 *1 (-573 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1045)) (-4 *4 (-1233 *3)) (-5 *1 (-164 *3 *4 *2))
+ (-4 *2 (-1233 *4))))
+ ((*1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208)))))
(((*1 *2 *1) (-12 (-4 *1 (-326 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045))))
((*1 *2 *1) (-12 (-4 *1 (-430 *2)) (-4 *2 (-846)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4407)) (-4 *1 (-235 *3))
- (-4 *3 (-1093))))
- ((*1 *1 *2 *1)
- (-12 (|has| *1 (-6 -4407)) (-4 *1 (-235 *2)) (-4 *2 (-1093))))
- ((*1 *1 *2 *1)
- (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)) (-4 *2 (-1093))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-282 *3)) (-4 *3 (-1208))))
- ((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-607 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-563)) (-4 *4 (-1093))
- (-5 *1 (-733 *4))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-5 *1 (-733 *2)) (-4 *2 (-1093))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34)))
- (-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1134 *3 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-576))))
- ((*1 *1 *2) (-12 (-5 *2 (-388)) (-5 *1 (-576)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-407 (-563))) (-5 *1 (-593 *3)) (-4 *3 (-38 *2))
- (-4 *3 (-1045)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-1212)) (-4 *5 (-1233 *4))
- (-5 *2 (-2 (|:| |radicand| (-407 *5)) (|:| |deg| (-767))))
- (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1233 (-407 *5))))))
-(((*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-1045)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-323 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-131))
- (-4 *3 (-788)))))
-(((*1 *2 *3)
- (-12 (-14 *4 (-640 (-1169))) (-14 *5 (-767))
- (-5 *2
- (-640
- (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4)
- (-247 *4 (-407 (-563))))))
- (-5 *1 (-505 *4 *5))
- (-5 *3
- (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4)
- (-247 *4 (-407 (-563))))))))
-(((*1 *2 *3) (-12 (-5 *3 (-948 (-225))) (-5 *2 (-225)) (-5 *1 (-305)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-767)) (-4 *5 (-1045)) (-4 *2 (-1233 *5))
- (-5 *1 (-1251 *5 *2 *6 *3)) (-4 *6 (-651 *2)) (-4 *3 (-1248 *5)))))
+(((*1 *1 *1 *2 *2)
+ (|partial| -12 (-5 *2 (-917)) (-5 *1 (-1094 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
+(((*1 *2 *3 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-744)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| |var| (-640 (-1169))) (|:| |pred| (-52))))
+ (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+(((*1 *2)
+ (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-147))
+ (-4 *3 (-307)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *1 (-973 *3 *4 *5 *6)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12
+ (-5 *3
+ (-1 (-3 (-2 (|:| -2840 *4) (|:| |coeff| *4)) "failed") *4))
+ (-4 *4 (-363)) (-5 *1 (-573 *4 *2)) (-4 *2 (-1233 *4)))))
+(((*1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-21)) (-4 *2 (-1208)))))
(((*1 *2 *1)
(-12 (-4 *1 (-326 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788))
(-5 *2 (-112))))
((*1 *2 *1) (-12 (-4 *1 (-430 *3)) (-4 *3 (-846)) (-5 *2 (-112)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-545))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 (-112) *7 (-640 *7))) (-4 *1 (-1201 *4 *5 *6 *7))
- (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *3)
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-666))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1094 *3 *4)) (-14 *3 (-917))
+ (-14 *4 (-917)))))
+(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563))
+ (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031))
+ (-5 *1 (-744)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+(((*1 *1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-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 (-192)))))
-(((*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259))))
- ((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1259)))))
+ (-640
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2)
+ (|:| |xpnt| (-563)))))
+ (-4 *2 (-555)) (-5 *1 (-418 *2))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |contp| (-563))
+ (|:| -1337 (-640 (-2 (|:| |irr| *4) (|:| -3259 (-563)))))))
+ (-4 *4 (-1233 (-563))) (-5 *2 (-418 *4)) (-5 *1 (-442 *4)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-147))
+ (-4 *3 (-307)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *1 (-973 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-640 (-407 *7)))
+ (-4 *7 (-1233 *6)) (-5 *3 (-407 *7)) (-4 *6 (-363))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-573 *6 *7)))))
+(((*1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-21)) (-4 *2 (-1208)))))
(((*1 *1 *1) (-4 *1 (-243)))
((*1 *1 *1)
(-12 (-4 *2 (-172)) (-5 *1 (-289 *2 *3 *4 *5 *6 *7))
@@ -8373,7 +7930,7 @@
(-14 *6 (-1 (-3 *4 "failed") *4 *4))
(-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
((*1 *1 *1)
- (-4032 (-12 (-5 *1 (-294 *2)) (-4 *2 (-363)) (-4 *2 (-1208)))
+ (-4034 (-12 (-5 *1 (-294 *2)) (-4 *2 (-363)) (-4 *2 (-1208)))
(-12 (-5 *1 (-294 *2)) (-4 *2 (-473)) (-4 *2 (-1208)))))
((*1 *1 *1) (-4 *1 (-473)))
((*1 *2 *2) (-12 (-5 *2 (-1257 *3)) (-4 *3 (-349)) (-5 *1 (-528 *3))))
@@ -8382,102 +7939,92 @@
(-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
(-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
((*1 *1 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)) (-4 *2 (-363)))))
-(((*1 *1 *1 *1 *2 *3)
- (-12 (-5 *2 (-939 *5)) (-5 *3 (-767)) (-4 *5 (-1045))
- (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563))))
- (-5 *2 (-169 (-316 *4))) (-5 *1 (-188 *4 *3))
- (-4 *3 (-13 (-27) (-1193) (-430 (-169 *4))))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *2 (-169 *3)) (-5 *1 (-1197 *4 *3))
- (-4 *3 (-13 (-27) (-1193) (-430 *4))))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
-(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *2 (-2 (|:| -2517 (-114)) (|:| |w| (-225)))) (-5 *1 (-204)))))
-(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1002)))))
-(((*1 *2 *2 *2 *3 *3 *4 *2 *5)
- (|partial| -12 (-5 *3 (-609 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1169))) (-5 *5 (-1165 *2))
- (-4 *2 (-13 (-430 *6) (-27) (-1193)))
- (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
- (-5 *1 (-559 *6 *2 *7)) (-4 *7 (-1093))))
- ((*1 *2 *2 *2 *3 *3 *4 *3 *2 *5)
- (|partial| -12 (-5 *3 (-609 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1169)))
- (-5 *5 (-407 (-1165 *2))) (-4 *2 (-13 (-430 *6) (-27) (-1193)))
- (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
- (-5 *1 (-559 *6 *2 *7)) (-4 *7 (-1093)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363))
- (-5 *2
- (-2 (|:| |ir| (-584 (-407 *6))) (|:| |specpart| (-407 *6))
- (|:| |polypart| *6)))
- (-5 *1 (-573 *5 *6)) (-5 *3 (-407 *6)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *2 (-846))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-418 *4)) (-4 *4 (-555)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1094 *3 *4)) (-14 *3 (-917))
+ (-14 *4 (-917)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563))
+ (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031))
+ (-5 *1 (-744)))))
+(((*1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))))
+(((*1 *2 *2) (-12 (-5 *2 (-388)) (-5 *1 (-436))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-388)) (-5 *1 (-436)))))
(((*1 *2 *2 *3)
- (-12 (-4 *3 (-363)) (-5 *1 (-285 *3 *2)) (-4 *2 (-1248 *3)))))
-(((*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260))))
- ((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))))
+ (|partial| -12 (-5 *3 (-767)) (-4 *4 (-13 (-555) (-147)))
+ (-5 *1 (-1227 *4 *2)) (-4 *2 (-1233 *4)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452))
+ (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *1 (-973 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363))
+ (-5 *2 (-2 (|:| -2840 (-407 *6)) (|:| |coeff| (-407 *6))))
+ (-5 *1 (-573 *5 *6)) (-5 *3 (-407 *6)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-294 *2)) (-4 *2 (-722)) (-4 *2 (-1208)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1257 (-1094 *3 *4))) (-5 *1 (-1094 *3 *4))
+ (-14 *3 (-917)) (-14 *4 (-917)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563))
+ (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031))
+ (-5 *1 (-744)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-436)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-917)) (-5 *2 (-1257 (-1257 (-563)))) (-5 *1 (-466)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-555)) (-5 *1 (-41 *3 *2))
- (-4 *2
- (-13 (-363) (-302)
- (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $))
- (-15 -2154 ((-1118 *3 (-609 $)) $))
- (-15 -1693 ($ (-1118 *3 (-609 $)))))))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-555)) (-5 *1 (-41 *3 *2))
- (-4 *2
- (-13 (-363) (-302)
- (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $))
- (-15 -2154 ((-1118 *3 (-609 $)) $))
- (-15 -1693 ($ (-1118 *3 (-609 $)))))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-640 *2))
- (-4 *2
- (-13 (-363) (-302)
- (-10 -8 (-15 -2143 ((-1118 *4 (-609 $)) $))
- (-15 -2154 ((-1118 *4 (-609 $)) $))
- (-15 -1693 ($ (-1118 *4 (-609 $)))))))
- (-4 *4 (-555)) (-5 *1 (-41 *4 *2))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-640 (-609 *2)))
- (-4 *2
- (-13 (-363) (-302)
- (-10 -8 (-15 -2143 ((-1118 *4 (-609 $)) $))
- (-15 -2154 ((-1118 *4 (-609 $)) $))
- (-15 -1693 ($ (-1118 *4 (-609 $)))))))
- (-4 *4 (-555)) (-5 *1 (-41 *4 *2)))))
+ (-12 (-4 *4 (-555)) (-4 *5 (-988 *4))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-142 *4 *5 *3))
+ (-4 *3 (-373 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-4 *5 (-988 *4))
+ (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4)))
+ (-5 *1 (-503 *4 *5 *6 *3)) (-4 *6 (-373 *4)) (-4 *3 (-373 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-684 *5)) (-4 *5 (-988 *4)) (-4 *4 (-555))
+ (-5 *2 (-2 (|:| |num| (-684 *4)) (|:| |den| *4)))
+ (-5 *1 (-688 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563)))))
+ (-4 *6 (-1233 *5))
+ (-5 *2 (-2 (|:| -1420 *7) (|:| |rh| (-640 (-407 *6)))))
+ (-5 *1 (-803 *5 *6 *7 *3)) (-5 *4 (-640 (-407 *6)))
+ (-4 *7 (-651 *6)) (-4 *3 (-651 (-407 *6)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-4 *5 (-988 *4))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1226 *4 *5 *3))
+ (-4 *3 (-1233 *5)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452))
+ (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *1 (-973 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *7) (|:| -1700 *7) (|:| |sol?| (-112)))
+ (-563) *7))
+ (-5 *6 (-640 (-407 *8))) (-4 *7 (-363)) (-4 *8 (-1233 *7))
+ (-5 *3 (-407 *8))
+ (-5 *2
+ (-2
+ (|:| |answer|
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (|:| |a0| *7)))
+ (-5 *1 (-573 *7 *8)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2059 *9))))
+ (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2058 *9))))
(-5 *4 (-767)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1065 *5 *6 *7 *8))
(-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-1262))
(-5 *1 (-1063 *5 *6 *7 *8 *9))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2059 *9))))
+ (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2058 *9))))
(-5 *4 (-767)) (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1102 *5 *6 *7 *8))
(-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-1262))
(-5 *1 (-1138 *5 *6 *7 *8 *9)))))
-(((*1 *2 *3) (-12 (-5 *3 (-407 (-563))) (-5 *2 (-225)) (-5 *1 (-305)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-294 *2)) (-4 *2 (-722)) (-4 *2 (-1208)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1169))
(-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
@@ -8526,24 +8073,56 @@
(-12 (-4 *1 (-1274 *3 *2)) (-4 *3 (-846)) (-4 *2 (-1045))))
((*1 *2 *1)
(-12 (-4 *2 (-1045)) (-5 *1 (-1280 *2 *3)) (-4 *3 (-842)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1087 (-225)))
- (-5 *5 (-112)) (-5 *2 (-1259)) (-5 *1 (-257)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-640 *3)) (-4 *3 (-307)) (-5 *1 (-179 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-666))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1094 *3 *4)) (-14 *3 (-917))
- (-14 *4 (-917)))))
-(((*1 *2 *1) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-1165 *3)))))
-(((*1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-900 *4))
- (-4 *4 (-1093))))
- ((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))))
-(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1151)) (-5 *3 (-770)) (-5 *1 (-114)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *1 (-59 *3)) (-4 *3 (-1208))))
- ((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-59 *3)))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4408)) (-4 *1 (-489 *3)) (-4 *3 (-1208))
+ (-4 *3 (-1093)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-901 *4)) (-4 *4 (-1093)) (-5 *2 (-112))
+ (-5 *1 (-900 *4))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-917)) (-5 *2 (-112)) (-5 *1 (-1094 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3))))
+(((*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563))
+ (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031))
+ (-5 *1 (-744)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3))
+ (-4 *3 (-1093)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-436)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-555)) (-4 *4 (-988 *3)) (-5 *1 (-142 *3 *4 *2))
+ (-4 *2 (-373 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-4 *5 (-988 *4)) (-4 *2 (-373 *4))
+ (-5 *1 (-503 *4 *5 *2 *3)) (-4 *3 (-373 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-684 *5)) (-4 *5 (-988 *4)) (-4 *4 (-555))
+ (-5 *2 (-684 *4)) (-5 *1 (-688 *4 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-555)) (-4 *4 (-988 *3)) (-5 *1 (-1226 *3 *4 *2))
+ (-4 *2 (-1233 *4)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452))
+ (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *1 (-973 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-3 (-2 (|:| -2840 *7) (|:| |coeff| *7)) "failed") *7))
+ (-5 *6 (-640 (-407 *8))) (-4 *7 (-363)) (-4 *8 (-1233 *7))
+ (-5 *3 (-407 *8))
+ (-5 *2
+ (-2
+ (|:| |answer|
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (|:| |a0| *7)))
+ (-5 *1 (-573 *7 *8)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-294 *3))) (-5 *1 (-294 *3)) (-4 *3 (-555))
+ (-4 *3 (-1208)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1169))
(-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
@@ -8584,42 +8163,53 @@
(-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3))
(-4 *5 (-373 *3)) (-5 *2 (-640 *3))))
((*1 *2 *1)
- (-12 (|has| *1 (-6 -4407)) (-4 *1 (-489 *3)) (-4 *3 (-1208))
+ (-12 (|has| *1 (-6 -4408)) (-4 *1 (-489 *3)) (-4 *3 (-1208))
(-5 *2 (-640 *3)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-280))))
+(((*1 *2 *1)
+ (-12 (-4 *4 (-1093)) (-5 *2 (-112)) (-5 *1 (-881 *3 *4 *5))
+ (-4 *3 (-1093)) (-4 *5 (-661 *4))))
((*1 *2 *1)
- (-12 (-5 *2 (-3 (-563) (-225) (-1169) (-1151) (-1174)))
- (-5 *1 (-1174)))))
-(((*1 *2 *2)
- (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3))
- (-4 *3 (-1233 (-169 *2))))))
-(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-97)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1248 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-640 *3)) (-5 *1 (-965 *4 *3))
+ (-12 (-5 *2 (-112)) (-5 *1 (-885 *3 *4)) (-4 *3 (-1093))
+ (-4 *4 (-1093)))))
+(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-436)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-988 *2)) (-4 *2 (-555)) (-5 *1 (-142 *2 *4 *3))
+ (-4 *3 (-373 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-988 *2)) (-4 *2 (-555)) (-5 *1 (-503 *2 *4 *5 *3))
+ (-4 *5 (-373 *2)) (-4 *3 (-373 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-684 *4)) (-4 *4 (-988 *2)) (-4 *2 (-555))
+ (-5 *1 (-688 *2 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-988 *2)) (-4 *2 (-555)) (-5 *1 (-1226 *2 *4 *3))
(-4 *3 (-1233 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-648 (-407 *6))) (-5 *4 (-407 *6)) (-4 *6 (-1233 *5))
- (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452))
+ (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *1 (-973 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-640 *7)) (-5 *3 (-112)) (-4 *7 (-1059 *4 *5 *6))
+ (-4 *4 (-452)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-5 *1 (-973 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -1700 *6) (|:| |sol?| (-112))) (-563)
+ *6))
+ (-4 *6 (-363)) (-4 *7 (-1233 *6))
(-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4))))
- (-5 *1 (-806 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-648 (-407 *6))) (-4 *6 (-1233 *5))
- (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-5 *2 (-2 (|:| -4315 (-640 (-407 *6))) (|:| -2835 (-684 *5))))
- (-5 *1 (-806 *5 *6)) (-5 *4 (-640 (-407 *6)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-649 *6 (-407 *6))) (-5 *4 (-407 *6)) (-4 *6 (-1233 *5))
- (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-3 (-2 (|:| |answer| (-407 *7)) (|:| |a0| *6))
+ (-2 (|:| -2840 (-407 *7)) (|:| |coeff| (-407 *7))) "failed"))
+ (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-452))
(-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4))))
- (-5 *1 (-806 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-649 *6 (-407 *6))) (-4 *6 (-1233 *5))
- (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-5 *2 (-2 (|:| -4315 (-640 (-407 *6))) (|:| -2835 (-684 *5))))
- (-5 *1 (-806 *5 *6)) (-5 *4 (-640 (-407 *6))))))
+ (-640
+ (-2 (|:| |eigval| (-3 (-407 (-948 *4)) (-1158 (-1169) (-948 *4))))
+ (|:| |eigmult| (-767))
+ (|:| |eigvec| (-640 (-684 (-407 (-948 *4))))))))
+ (-5 *1 (-292 *4)) (-5 *3 (-684 (-407 (-948 *4)))))))
(((*1 *2 *3)
(-12 (-5 *3 (-1169))
(-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
@@ -8665,166 +8255,137 @@
(-5 *2 (-52)) (-5 *1 (-459 *7 *3))))
((*1 *2 *1)
(-12 (-4 *1 (-1219 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1248 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-545))
- (-5 *2 (-407 (-563)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-407 (-563))) (-5 *1 (-418 *3)) (-4 *3 (-545))
- (-4 *3 (-555))))
- ((*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-407 (-563)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-793 *3)) (-4 *3 (-172)) (-4 *3 (-545))
- (-5 *2 (-407 (-563)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-407 (-563))) (-5 *1 (-829 *3)) (-4 *3 (-545))
- (-4 *3 (-1093))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-407 (-563))) (-5 *1 (-839 *3)) (-4 *3 (-545))
- (-4 *3 (-1093))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-993 *3)) (-4 *3 (-172)) (-4 *3 (-545))
- (-5 *2 (-407 (-563)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-407 (-563))) (-5 *1 (-1004 *3)) (-4 *3 (-1034 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330))
- (-5 *1 (-332)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-1093)) (-4 *2 (-896 *4)) (-5 *1 (-687 *4 *2 *5 *3))
- (-4 *5 (-373 *2)) (-4 *3 (-13 (-373 *4) (-10 -7 (-6 -4407)))))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-640 (-948 *6))) (-5 *4 (-640 (-1169))) (-4 *6 (-452))
- (-5 *2 (-640 (-640 *7))) (-5 *1 (-538 *6 *7 *5)) (-4 *7 (-363))
- (-4 *5 (-13 (-363) (-844))))))
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-4 *2 (-1093))
+ (-5 *1 (-885 *4 *2)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
+ (-5 *1 (-437)))))
+(((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-767)) (-5 *1 (-778 *3)) (-4 *3 (-1045))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *1 (-959 *3 *2)) (-4 *2 (-131)) (-4 *3 (-555))
+ (-4 *3 (-1045)) (-4 *2 (-788))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-767)) (-5 *1 (-1165 *3)) (-4 *3 (-1045))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-967)) (-4 *2 (-131)) (-5 *1 (-1171 *3)) (-4 *3 (-555))
+ (-4 *3 (-1045))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-767)) (-5 *1 (-1230 *4 *3)) (-14 *4 (-1169))
+ (-4 *3 (-1045)))))
(((*1 *1 *1) (-4 *1 (-545))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-244 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-648 *4)) (-4 *4 (-342 *5 *6 *7))
- (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6)))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-452)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-5 *2 (-640 *3)) (-5 *1 (-973 *4 *5 *6 *3))
+ (-4 *3 (-1059 *4 *5 *6)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -2840 *6) (|:| |coeff| *6)) "failed") *6))
+ (-4 *6 (-363)) (-4 *7 (-1233 *6))
(-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4))))
- (-5 *1 (-802 *5 *6 *7 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-225)) (-5 *1 (-305)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-119 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-858)))))
+ (-3 (-2 (|:| |answer| (-407 *7)) (|:| |a0| *6))
+ (-2 (|:| -2840 (-407 *7)) (|:| |coeff| (-407 *7))) "failed"))
+ (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-452))
+ (-5 *2
+ (-640
+ (-2 (|:| |eigval| (-3 (-407 (-948 *4)) (-1158 (-1169) (-948 *4))))
+ (|:| |geneigvec| (-640 (-684 (-407 (-948 *4))))))))
+ (-5 *1 (-292 *4)) (-5 *3 (-684 (-407 (-948 *4)))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1022 (-839 (-563)))) (-5 *1 (-593 *3)) (-4 *3 (-1045)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
+ (-12 (-4 *3 (-1045)) (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-885 *4 *3))
+ (-4 *3 (-1093)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-437)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1224 *3)) (-4 *3 (-1208)))))
(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-858)))))
(((*1 *2 *1) (-12 (-4 *1 (-1114 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *3 *2)
- (|partial| -12 (-5 *2 (-1257 *4)) (-5 *3 (-684 *4)) (-4 *4 (-363))
- (-5 *1 (-662 *4))))
- ((*1 *2 *3 *2)
- (|partial| -12 (-4 *4 (-363))
- (-4 *5 (-13 (-373 *4) (-10 -7 (-6 -4408))))
- (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4408))))
- (-5 *1 (-663 *4 *5 *2 *3)) (-4 *3 (-682 *4 *5 *2))))
- ((*1 *2 *3 *2 *4 *5)
- (|partial| -12 (-5 *4 (-640 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-363))
- (-5 *1 (-810 *2 *3)) (-4 *3 (-651 *2))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
- (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-640 *8)) (-5 *3 (-1 (-112) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555))
+ (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-973 *5 *6 *7 *8)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-640 *6) "failed") (-563) *6 *6)) (-4 *6 (-363))
+ (-4 *7 (-1233 *6))
+ (-5 *2 (-2 (|:| |answer| (-584 (-407 *7))) (|:| |a0| *6)))
+ (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-3 (-407 (-948 *6)) (-1158 (-1169) (-948 *6))))
+ (-5 *5 (-767)) (-4 *6 (-452)) (-5 *2 (-640 (-684 (-407 (-948 *6)))))
+ (-5 *1 (-292 *6)) (-5 *4 (-684 (-407 (-948 *6))))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *3
+ (-2 (|:| |eigval| (-3 (-407 (-948 *5)) (-1158 (-1169) (-948 *5))))
+ (|:| |eigmult| (-767)) (|:| |eigvec| (-640 *4))))
+ (-4 *5 (-452)) (-5 *2 (-640 (-684 (-407 (-948 *5)))))
+ (-5 *1 (-292 *5)) (-5 *4 (-684 (-407 (-948 *5)))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-939 *4))) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
- (-4 *4 (-1045)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-948 (-225))) (-5 *2 (-316 (-379))) (-5 *1 (-305)))))
-(((*1 *2)
- (-12 (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-905))
- (-5 *1 (-457 *3 *4 *2 *5)) (-4 *5 (-945 *2 *3 *4))))
- ((*1 *2)
- (-12 (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-905))
- (-5 *1 (-902 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4))))
- ((*1 *2) (-12 (-4 *2 (-905)) (-5 *1 (-903 *2 *3)) (-4 *3 (-1233 *2)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2))
- (-4 *4 (-13 (-846) (-555))))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *1) (-12 (-4 *1 (-307)) (-5 *2 (-767)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-563)) (-5 *1 (-568 *3)) (-4 *3 (-1034 *2)))))
+ (-12 (-4 *3 (-1045)) (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-294 (-839 *3))) (-4 *3 (-13 (-27) (-1193) (-430 *5)))
- (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-885 *4 *3))
+ (-4 *3 (-1093)))))
+(((*1 *1) (-5 *1 (-437))))
+(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112))
(-5 *2
- (-3 (-839 *3)
- (-2 (|:| |leftHandLimit| (-3 (-839 *3) "failed"))
- (|:| |rightHandLimit| (-3 (-839 *3) "failed")))
- "failed"))
- (-5 *1 (-633 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-294 *3)) (-5 *5 (-1151))
- (-4 *3 (-13 (-27) (-1193) (-430 *6)))
- (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *2 (-839 *3)) (-5 *1 (-633 *6 *3))))
+ (-2 (|:| |contp| (-563))
+ (|:| -1337 (-640 (-2 (|:| |irr| *3) (|:| -3259 (-563)))))))
+ (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-294 (-839 (-948 *5)))) (-4 *5 (-452))
+ (-12 (-5 *4 (-112))
(-5 *2
- (-3 (-839 (-407 (-948 *5)))
- (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 *5))) "failed"))
- (|:| |rightHandLimit| (-3 (-839 (-407 (-948 *5))) "failed")))
- "failed"))
- (-5 *1 (-634 *5)) (-5 *3 (-407 (-948 *5)))))
+ (-2 (|:| |contp| (-563))
+ (|:| -1337 (-640 (-2 (|:| |irr| *3) (|:| -3259 (-563)))))))
+ (-5 *1 (-1222 *3)) (-4 *3 (-1233 (-563))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-3 (-407 (-948 *5)) (-1158 (-1169) (-948 *5))))
+ (-4 *5 (-452)) (-5 *2 (-640 (-684 (-407 (-948 *5)))))
+ (-5 *1 (-292 *5)) (-5 *4 (-684 (-407 (-948 *5)))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-640 (-939 *4))) (-4 *1 (-1127 *4)) (-4 *4 (-1045))
+ (-5 *2 (-767)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *1 *2 *3 *1 *3)
+ (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-885 *4 *3))
+ (-4 *3 (-1093)))))
+(((*1 *1) (-5 *1 (-437))))
+(((*1 *2) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-105)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-349)) (-5 *2 (-418 *3)) (-5 *1 (-216 *4 *3))
+ (-4 *3 (-1233 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-294 (-407 (-948 *5)))) (-5 *3 (-407 (-948 *5)))
- (-4 *5 (-452))
- (-5 *2
- (-3 (-839 *3)
- (-2 (|:| |leftHandLimit| (-3 (-839 *3) "failed"))
- (|:| |rightHandLimit| (-3 (-839 *3) "failed")))
- "failed"))
- (-5 *1 (-634 *5))))
+ (-12 (-5 *4 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3))
+ (-4 *3 (-1233 (-563)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 (-767))) (-5 *2 (-418 *3)) (-5 *1 (-442 *3))
+ (-4 *3 (-1233 (-563)))))
((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-294 (-407 (-948 *6)))) (-5 *5 (-1151))
- (-5 *3 (-407 (-948 *6))) (-4 *6 (-452)) (-5 *2 (-839 *3))
- (-5 *1 (-634 *6)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846))
- (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-945 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1045)) (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1)))
- (-4 *1 (-1233 *3)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-1131))))
+ (-12 (-5 *4 (-640 (-767))) (-5 *5 (-767)) (-5 *2 (-418 *3))
+ (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3))
+ (-4 *3 (-1233 (-563)))))
((*1 *2 *3)
- (-12 (-5 *3 (-640 (-858))) (-5 *2 (-1262)) (-5 *1 (-1131)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-1169))
- (-4 *4 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-619 *4 *2)) (-4 *2 (-13 (-1193) (-955) (-29 *4))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-363) (-1193) (-998)))))
- ((*1 *2)
- (|partial| -12 (-4 *4 (-1212)) (-4 *5 (-1233 (-407 *2)))
- (-4 *2 (-1233 *4)) (-5 *1 (-341 *3 *4 *2 *5))
- (-4 *3 (-342 *4 *2 *5))))
- ((*1 *2)
- (|partial| -12 (-4 *1 (-342 *3 *2 *4)) (-4 *3 (-1212))
- (-4 *4 (-1233 (-407 *2))) (-4 *2 (-1233 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789))
- (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
+ (-12 (-5 *2 (-418 *3)) (-5 *1 (-1003 *3))
+ (-4 *3 (-1233 (-407 (-563))))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-418 *3)) (-5 *1 (-1222 *3)) (-4 *3 (-1233 (-563))))))
(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-854))))
((*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-961))))
((*1 *2 *1) (-12 (-5 *2 (-1151)) (-5 *1 (-985))))
@@ -8832,10 +8393,14 @@
((*1 *2 *1)
(-12 (-4 *2 (-13 (-1093) (-34))) (-5 *1 (-1133 *2 *3))
(-4 *3 (-13 (-1093) (-34))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-363)) (-5 *1 (-1021 *3 *2)) (-4 *2 (-651 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-363)) (-5 *2 (-2 (|:| -1420 *3) (|:| -2516 (-640 *5))))
+ (-5 *1 (-1021 *5 *3)) (-5 *4 (-640 *5)) (-4 *3 (-651 *5)))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-640 *6)) (-5 *4 (-640 (-247 *5 *6))) (-4 *6 (-452))
+ (-5 *2 (-247 *5 *6)) (-14 *5 (-640 (-1169))) (-5 *1 (-628 *5 *6)))))
(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-62 *3)) (-14 *3 (-1169))))
((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-69 *3)) (-14 *3 (-1169))))
((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-72 *3)) (-14 *3 (-1169))))
@@ -8846,34 +8411,48 @@
((*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-1131))))
((*1 *2 *3)
(-12 (-5 *3 (-640 (-858))) (-5 *2 (-1262)) (-5 *1 (-1131)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-363)) (-5 *1 (-892 *2 *3))
- (-4 *2 (-1233 *3)))))
-(((*1 *1) (-5 *1 (-141))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379))))
- ((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-379)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1094 *3 *4)) (-14 *3 (-917))
- (-14 *4 (-917)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-147)) (-4 *2 (-307)) (-4 *2 (-452)) (-4 *3 (-846))
- (-4 *4 (-789)) (-5 *1 (-983 *2 *3 *4 *5)) (-4 *5 (-945 *2 *4 *3))))
- ((*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-316 (-563))) (-5 *1 (-1112))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998)))
- (-5 *1 (-176 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-767)) (-5 *2 (-1 (-1149 (-948 *4)) (-1149 (-948 *4))))
- (-5 *1 (-1265 *4)) (-4 *4 (-363)))))
+ (-12 (-5 *3 (-684 (-407 (-948 *4)))) (-4 *4 (-452))
+ (-5 *2 (-640 (-3 (-407 (-948 *4)) (-1158 (-1169) (-948 *4)))))
+ (-5 *1 (-292 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1093)) (-4 *6 (-882 *5)) (-5 *2 (-881 *5 *6 (-640 *6)))
+ (-5 *1 (-883 *5 *6 *4)) (-5 *3 (-640 *6)) (-4 *4 (-611 (-888 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1093)) (-5 *2 (-640 (-294 *3))) (-5 *1 (-883 *5 *3 *4))
+ (-4 *3 (-1034 (-1169))) (-4 *3 (-882 *5)) (-4 *4 (-611 (-888 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1093)) (-5 *2 (-640 (-294 (-948 *3))))
+ (-5 *1 (-883 *5 *3 *4)) (-4 *3 (-1045))
+ (-2174 (-4 *3 (-1034 (-1169)))) (-4 *3 (-882 *5))
+ (-4 *4 (-611 (-888 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1093)) (-5 *2 (-885 *5 *3)) (-5 *1 (-883 *5 *3 *4))
+ (-2174 (-4 *3 (-1034 (-1169)))) (-2174 (-4 *3 (-1045)))
+ (-4 *3 (-882 *5)) (-4 *4 (-611 (-888 *5))))))
+(((*1 *1) (-5 *1 (-437))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1219 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1248 *3)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1055 (-1020 *4) (-1165 (-1020 *4)))) (-5 *3 (-858))
+ (-5 *1 (-1020 *4)) (-4 *4 (-13 (-844) (-363) (-1018))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1 (-939 (-225)) (-939 (-225)))) (-5 *3 (-640 (-263)))
+ (-5 *1 (-261))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-939 (-225)) (-939 (-225)))) (-5 *1 (-263))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 (-481 *5 *6))) (-5 *3 (-481 *5 *6))
+ (-14 *5 (-640 (-1169))) (-4 *6 (-452)) (-5 *2 (-1257 *6))
+ (-5 *1 (-628 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-1078))) (-5 *1 (-291)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))
+ (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))
(-5 *2 (-640 (-1169))) (-5 *1 (-267))))
((*1 *2 *3)
(-12 (-5 *3 (-1165 *7)) (-4 *7 (-945 *6 *4 *5)) (-4 *4 (-789))
@@ -8895,7 +8474,7 @@
(-5 *1 (-946 *4 *5 *6 *7 *3))
(-4 *3
(-13 (-363)
- (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $)) (-15 -2154 (*7 $)))))))
+ (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $)) (-15 -2153 (*7 $)))))))
((*1 *2 *1)
(-12 (-5 *2 (-1095 (-1169))) (-5 *1 (-962 *3)) (-4 *3 (-963))))
((*1 *2 *1)
@@ -8907,62 +8486,55 @@
((*1 *2 *3)
(-12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555)) (-5 *2 (-640 (-1169)))
(-5 *1 (-1039 *4)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
- (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
- (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-4 *3 (-555))
- (-5 *2 (-1165 *3)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-917)) (-5 *4 (-870)) (-5 *2 (-1262)) (-5 *1 (-1258))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *1 *2 *2) (-12 (-5 *1 (-873 *2)) (-4 *2 (-1208))))
+ ((*1 *1 *2 *2 *2) (-12 (-5 *1 (-875 *2)) (-4 *2 (-1208))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-939 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-640 (-939 *3))) (-4 *3 (-1045)) (-4 *1 (-1127 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-640 (-640 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-640 (-939 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1233 *6))
- (-4 *6 (-13 (-27) (-430 *5)))
- (-4 *5 (-13 (-846) (-555) (-1034 (-563)))) (-4 *8 (-1233 (-407 *7)))
- (-5 *2 (-584 *3)) (-5 *1 (-551 *5 *6 *7 *8 *3))
- (-4 *3 (-342 *6 *7 *8)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-2 (|:| -2619 *4) (|:| -1326 (-563)))))
- (-4 *4 (-1093)) (-5 *2 (-1 *4)) (-5 *1 (-1013 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
- (-14 *5 (-640 (-1169)))
- (-5 *2
- (-640 (-2 (|:| -1602 (-1165 *4)) (|:| -1880 (-640 (-948 *4))))))
- (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169)))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
- (-5 *2
- (-640 (-2 (|:| -1602 (-1165 *5)) (|:| -1880 (-640 (-948 *5))))))
- (-5 *1 (-1283 *5 *6 *7)) (-5 *3 (-640 (-948 *5)))
- (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
- (-5 *2
- (-640 (-2 (|:| -1602 (-1165 *5)) (|:| -1880 (-640 (-948 *5))))))
- (-5 *1 (-1283 *5 *6 *7)) (-5 *3 (-640 (-948 *5)))
- (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-112)) (-5 *1 (-114))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-302)) (-5 *3 (-1169)) (-5 *2 (-112))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-302)) (-5 *3 (-114)) (-5 *2 (-112))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1169)) (-5 *2 (-112)) (-5 *1 (-609 *4)) (-4 *4 (-846))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-609 *4)) (-4 *4 (-846))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
- (-5 *2
- (-640 (-2 (|:| -1602 (-1165 *5)) (|:| -1880 (-640 (-948 *5))))))
- (-5 *1 (-1283 *5 *6 *7)) (-5 *3 (-640 (-948 *5)))
- (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
- (-5 *2
- (-640 (-2 (|:| -1602 (-1165 *4)) (|:| -1880 (-640 (-948 *4))))))
- (-5 *1 (-1283 *4 *5 *6)) (-5 *3 (-640 (-948 *4)))
- (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+ (-12 (-4 *5 (-1093)) (-5 *2 (-112)) (-5 *1 (-883 *5 *3 *4))
+ (-4 *3 (-882 *5)) (-4 *4 (-611 (-888 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 *6)) (-4 *6 (-882 *5)) (-4 *5 (-1093))
+ (-5 *2 (-112)) (-5 *1 (-883 *5 *6 *4)) (-4 *4 (-611 (-888 *5))))))
+(((*1 *1) (-5 *1 (-437))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-117 *3)) (-14 *3 *2)))
+ ((*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-563))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-867 *3)) (-14 *3 *2)))
+ ((*1 *1 *1) (-12 (-5 *1 (-867 *2)) (-14 *2 (-563))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-563)) (-14 *3 *2) (-5 *1 (-868 *3 *4))
+ (-4 *4 (-865 *3))))
+ ((*1 *1 *1)
+ (-12 (-14 *2 (-563)) (-5 *1 (-868 *2 *3)) (-4 *3 (-865 *2))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-563)) (-4 *1 (-1219 *3 *4)) (-4 *3 (-1045))
+ (-4 *4 (-1248 *3))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1219 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-1248 *2)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-1055 (-1020 *3) (-1165 (-1020 *3))))
+ (-5 *1 (-1020 *3)) (-4 *3 (-13 (-844) (-363) (-1018))))))
(((*1 *1) (-12 (-5 *1 (-686 *2)) (-4 *2 (-610 (-858))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-767)) (-5 *2 (-684 (-948 *4))) (-5 *1 (-1024 *4))
- (-4 *4 (-1045)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-640 (-481 *3 *4))) (-14 *3 (-640 (-1169)))
+ (-4 *4 (-452)) (-5 *1 (-628 *3 *4)))))
+(((*1 *2 *3 *3 *1)
+ (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-1097)) (-5 *1 (-291)))))
(((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1165 (-407 (-1165 *2)))) (-5 *4 (-609 *2))
(-4 *2 (-13 (-430 *5) (-27) (-1193)))
@@ -8979,7 +8551,7 @@
(-4 *6 (-1045))
(-4 *2
(-13 (-363)
- (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $)) (-15 -2154 (*7 $)))))
+ (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $)) (-15 -2153 (*7 $)))))
(-5 *1 (-946 *5 *4 *6 *7 *2)) (-4 *7 (-945 *6 *5 *4))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-407 (-1165 (-407 (-948 *5))))) (-5 *4 (-1169))
@@ -8987,41 +8559,61 @@
(((*1 *2 *1)
(-12 (-4 *4 (-1093)) (-5 *2 (-885 *3 *5)) (-5 *1 (-881 *3 *4 *5))
(-4 *3 (-1093)) (-4 *5 (-661 *4)))))
-(((*1 *2 *1) (|partial| -12 (-5 *1 (-365 *2)) (-4 *2 (-1093))))
- ((*1 *2 *1) (|partial| -12 (-5 *2 (-1151)) (-5 *1 (-1189)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171)))))
-(((*1 *2 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5))
- (-4 *5 (-13 (-363) (-147) (-1034 (-563))))
- (-5 *2
- (-2 (|:| |a| *6) (|:| |b| (-407 *6)) (|:| |c| (-407 *6))
- (|:| -2288 *6)))
- (-5 *1 (-1011 *5 *6)) (-5 *3 (-407 *6)))))
-(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-363)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3))
- (-5 *1 (-521 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-555)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4))
- (-4 *7 (-988 *4)) (-4 *2 (-682 *7 *8 *9))
- (-5 *1 (-522 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-682 *4 *5 *6))
- (-4 *8 (-373 *7)) (-4 *9 (-373 *7))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045))
- (-4 *3 (-373 *2)) (-4 *4 (-373 *2)) (-4 *2 (-363))))
- ((*1 *2 *2)
- (|partial| -12 (-4 *3 (-363)) (-4 *3 (-172)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2))
- (-4 *2 (-682 *3 *4 *5))))
- ((*1 *1 *1)
- (|partial| -12 (-5 *1 (-684 *2)) (-4 *2 (-363)) (-4 *2 (-1045))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-1116 *2 *3 *4 *5)) (-4 *3 (-1045))
- (-4 *4 (-238 *2 *3)) (-4 *5 (-238 *2 *3)) (-4 *3 (-363))))
- ((*1 *2 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-1179 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |cd| (-1151)) (|:| -3348 (-1151))))
- (-5 *1 (-818)))))
+ (|partial| -12 (-4 *1 (-1219 *3 *2)) (-4 *3 (-1045))
+ (-4 *2 (-1248 *3)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *2
+ (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))))
+ (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563)))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *2
+ (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))))
+ (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563)))
+ (-5 *4 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *2
+ (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))))
+ (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563))) (-5 *4 (-407 (-563)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-407 (-563)))
+ (-5 *2 (-640 (-2 (|:| -1685 *5) (|:| -1700 *5)))) (-5 *1 (-1016 *3))
+ (-4 *3 (-1233 (-563))) (-5 *4 (-2 (|:| -1685 *5) (|:| -1700 *5)))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *2
+ (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))))
+ (-5 *1 (-1017 *3)) (-4 *3 (-1233 (-407 (-563))))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *2
+ (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))))
+ (-5 *1 (-1017 *3)) (-4 *3 (-1233 (-407 (-563))))
+ (-5 *4 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-407 (-563)))
+ (-5 *2 (-640 (-2 (|:| -1685 *4) (|:| -1700 *4)))) (-5 *1 (-1017 *3))
+ (-4 *3 (-1233 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-407 (-563)))
+ (-5 *2 (-640 (-2 (|:| -1685 *5) (|:| -1700 *5)))) (-5 *1 (-1017 *3))
+ (-4 *3 (-1233 *5)) (-5 *4 (-2 (|:| -1685 *5) (|:| -1700 *5))))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-640 (-481 *5 *6))) (-5 *4 (-860 *5))
+ (-14 *5 (-640 (-1169))) (-5 *2 (-481 *5 *6)) (-5 *1 (-628 *5 *6))
+ (-4 *6 (-452))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-481 *5 *6))) (-5 *4 (-860 *5))
+ (-14 *5 (-640 (-1169))) (-5 *2 (-481 *5 *6)) (-5 *1 (-628 *5 *6))
+ (-4 *6 (-452)))))
+(((*1 *1 *2 *2 *3 *1)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-1097)) (-5 *1 (-291)))))
(((*1 *1 *2 *3)
(-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788))))
((*1 *1 *2 *3)
@@ -9029,10 +8621,10 @@
(-4 *2 (-363)) (-14 *5 (-989 *4 *2))))
((*1 *1 *2 *3)
(-12 (-5 *3 (-709 *5 *6 *7)) (-4 *5 (-846))
- (-4 *6 (-238 (-3608 *4) (-767)))
+ (-4 *6 (-238 (-3610 *4) (-767)))
(-14 *7
- (-1 (-112) (-2 (|:| -2555 *5) (|:| -1654 *6))
- (-2 (|:| -2555 *5) (|:| -1654 *6))))
+ (-1 (-112) (-2 (|:| -2552 *5) (|:| -3311 *6))
+ (-2 (|:| -2552 *5) (|:| -3311 *6))))
(-14 *4 (-640 (-1169))) (-4 *2 (-172))
(-5 *1 (-461 *4 *2 *5 *6 *7 *8)) (-4 *8 (-945 *2 *6 (-860 *4)))))
((*1 *1 *2 *3)
@@ -9062,24 +8654,31 @@
((*1 *1 *1 *2 *3)
(-12 (-4 *1 (-969 *4 *3 *2)) (-4 *4 (-1045)) (-4 *3 (-788))
(-4 *2 (-846)))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-1173)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-939 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-640 (-939 *3))) (-4 *3 (-1045)) (-4 *1 (-1127 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-640 (-640 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-640 (-939 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))))
(((*1 *1 *2 *3)
(-12 (-5 *1 (-869 *2 *3)) (-4 *2 (-1208)) (-4 *3 (-1208)))))
-(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
- (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2
- (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379))
- (|:| |expense| (-379)) (|:| |accuracy| (-379))
- (|:| |intermediateResults| (-379))))
- (-5 *1 (-799)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-427 *3 *2)) (-4 *3 (-13 (-172) (-38 (-407 (-563)))))
- (-4 *2 (-13 (-846) (-21))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-684 *8)) (-4 *8 (-945 *5 *7 *6))
+ (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169))))
+ (-4 *7 (-789))
+ (-5 *2
+ (-640
+ (-2 (|:| -2521 (-767))
+ (|:| |eqns|
+ (-640
+ (-2 (|:| |det| *8) (|:| |rows| (-640 (-563)))
+ (|:| |cols| (-640 (-563))))))
+ (|:| |fgb| (-640 *8)))))
+ (-5 *1 (-920 *5 *6 *7 *8)) (-5 *4 (-767)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
(((*1 *2 *2 *2)
(-12 (-5 *2 (-640 (-609 *4))) (-4 *4 (-430 *3)) (-4 *3 (-846))
(-5 *1 (-572 *3 *4))))
@@ -9088,151 +8687,130 @@
((*1 *1 *2 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093))))
((*1 *1 *1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-640 (-481 *4 *5))) (-5 *3 (-640 (-860 *4)))
+ (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *1 (-471 *4 *5 *6))
+ (-4 *6 (-452)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-563)) (-4 *1 (-1217 *4)) (-4 *4 (-1045)) (-4 *4 (-555))
+ (-5 *2 (-407 (-948 *4)))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-4 *1 (-1217 *4)) (-4 *4 (-1045)) (-4 *4 (-555))
+ (-5 *2 (-407 (-948 *4))))))
(((*1 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-846)) (-4 *3 (-1093)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-767)) (-5 *2 (-112))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-846))
- (-4 *3 (-1093)))))
+ (-12
+ (-5 *3
+ (-640 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563))))))
+ (-5 *2 (-640 (-407 (-563)))) (-5 *1 (-1016 *4))
+ (-4 *4 (-1233 (-563))))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-1137)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
- (-5 *2 (-1031)) (-5 *1 (-748)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-175)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-856)) (-5 *2 (-686 (-1215))) (-5 *3 (-1215)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-481 *4 *5))) (-14 *4 (-640 (-1169)))
+ (-4 *5 (-452)) (-5 *2 (-640 (-247 *4 *5))) (-5 *1 (-628 *4 *5)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-640 (-961))) (-5 *1 (-291)))))
(((*1 *1) (-5 *1 (-291))))
(((*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262))
- (-5 *1 (-1066 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1151)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-1262))
- (-5 *1 (-1101 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
- (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4))))
- (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1151)) (-5 *1 (-782)))))
-(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
- (-4 *2 (-430 *3)))))
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
+ (-4 *6 (-789)) (-4 *7 (-945 *4 *6 *5))
+ (-5 *2
+ (-2 (|:| |sysok| (-112)) (|:| |z0| (-640 *7)) (|:| |n0| (-640 *7))))
+ (-5 *1 (-920 *4 *5 *6 *7)) (-5 *3 (-640 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 (-860 *5))) (-14 *5 (-640 (-1169))) (-4 *6 (-452))
+ (-5 *2 (-640 (-640 (-247 *5 *6)))) (-5 *1 (-471 *5 *6 *7))
+ (-5 *3 (-640 (-247 *5 *6))) (-4 *7 (-452)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 *5)) (-4 *5 (-430 *4)) (-4 *4 (-13 (-846) (-555)))
- (-5 *2 (-858)) (-5 *1 (-32 *4 *5)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *3 (-640 (-263)))
- (-5 *1 (-261))))
- ((*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-263))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-468))))
- ((*1 *2 *1) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-468)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+ (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-417 *4)))))
+(((*1 *1) (-4 *1 (-23))) ((*1 *1) (-4 *1 (-34)))
+ ((*1 *1) (-5 *1 (-129)))
+ ((*1 *1)
+ (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767))
+ (-4 *4 (-172))))
+ ((*1 *1) (-4 *1 (-722))) ((*1 *1) (-5 *1 (-1169)))
+ ((*1 *1) (-12 (-5 *1 (-1176 *2)) (-14 *2 (-917))))
+ ((*1 *1) (-5 *1 (-1213))) ((*1 *1) (-5 *1 (-1214)))
+ ((*1 *1) (-5 *1 (-1215))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-948 (-169 *4))) (-4 *4 (-172))
- (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-948 (-169 *5))) (-5 *4 (-917)) (-4 *5 (-172))
- (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-948 *4)) (-4 *4 (-1045))
- (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-948 *5)) (-5 *4 (-917)) (-4 *5 (-1045))
- (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555))
- (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-917)) (-4 *5 (-555))
- (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-407 (-948 (-169 *4)))) (-4 *4 (-555))
- (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-407 (-948 (-169 *5)))) (-5 *4 (-917))
- (-4 *5 (-555)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379)))
- (-5 *1 (-781 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-316 *4)) (-4 *4 (-555)) (-4 *4 (-846))
- (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-316 *5)) (-5 *4 (-917)) (-4 *5 (-555))
- (-4 *5 (-846)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379)))
- (-5 *1 (-781 *5))))
+ (-12 (-5 *3 (-2 (|:| -1685 (-407 (-563))) (|:| -1700 (-407 (-563)))))
+ (-5 *2 (-407 (-563))) (-5 *1 (-1016 *4)) (-4 *4 (-1233 (-563))))))
+(((*1 *2 *3)
+ (-12 (-14 *4 (-640 (-1169))) (-4 *5 (-452))
+ (-5 *2
+ (-2 (|:| |glbase| (-640 (-247 *4 *5))) (|:| |glval| (-640 (-563)))))
+ (-5 *1 (-628 *4 *5)) (-5 *3 (-640 (-247 *4 *5))))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-961))) (-5 *1 (-291)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-939 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-640 (-939 *3))) (-4 *3 (-1045)) (-4 *1 (-1127 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-640 (-640 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-640 (-939 *3))) (-4 *1 (-1127 *3)) (-4 *3 (-1045)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-948 *4)) (-4 *4 (-13 (-307) (-147)))
+ (-4 *2 (-945 *4 *6 *5)) (-5 *1 (-920 *4 *5 *6 *2))
+ (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)))))
+(((*1 *1) (-5 *1 (-468))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-417 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-169 (-563))) (-5 *2 (-112)) (-5 *1 (-446))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-316 (-169 *4))) (-4 *4 (-555)) (-4 *4 (-846))
- (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-316 (-169 *5))) (-5 *4 (-917)) (-4 *5 (-555))
- (-4 *5 (-846)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379)))
- (-5 *1 (-781 *5)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-767)) (-4 *4 (-13 (-1045) (-713 (-407 (-563)))))
- (-4 *5 (-846)) (-5 *1 (-1273 *4 *5 *2)) (-4 *2 (-1278 *5 *4)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-640 (-778 *3))) (-5 *1 (-778 *3)) (-4 *3 (-555))
- (-4 *3 (-1045)))))
-(((*1 *1) (-5 *1 (-144))))
-(((*1 *2 *3 *4 *3 *3)
- (-12 (-5 *3 (-294 *6)) (-5 *4 (-114)) (-4 *6 (-430 *5))
- (-4 *5 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52))
- (-5 *1 (-317 *5 *6))))
- ((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-294 *7)) (-5 *4 (-114)) (-5 *5 (-640 *7))
- (-4 *7 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536))))
- (-5 *2 (-52)) (-5 *1 (-317 *6 *7))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-640 (-294 *7))) (-5 *4 (-640 (-114))) (-5 *5 (-294 *7))
- (-4 *7 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536))))
- (-5 *2 (-52)) (-5 *1 (-317 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-640 (-294 *8))) (-5 *4 (-640 (-114))) (-5 *5 (-294 *8))
- (-5 *6 (-640 *8)) (-4 *8 (-430 *7))
- (-4 *7 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52))
- (-5 *1 (-317 *7 *8))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-640 *7)) (-5 *4 (-640 (-114))) (-5 *5 (-294 *7))
- (-4 *7 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536))))
- (-5 *2 (-52)) (-5 *1 (-317 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 (-114))) (-5 *6 (-640 (-294 *8)))
- (-4 *8 (-430 *7)) (-5 *5 (-294 *8))
- (-4 *7 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52))
- (-5 *1 (-317 *7 *8))))
- ((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-294 *5)) (-5 *4 (-114)) (-4 *5 (-430 *6))
- (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52))
- (-5 *1 (-317 *6 *5))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-114)) (-5 *5 (-294 *3)) (-4 *3 (-430 *6))
- (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52))
- (-5 *1 (-317 *6 *3))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-114)) (-5 *5 (-294 *3)) (-4 *3 (-430 *6))
- (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52))
- (-5 *1 (-317 *6 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-114)) (-5 *5 (-294 *3)) (-5 *6 (-640 *3))
- (-4 *3 (-430 *7)) (-4 *7 (-13 (-846) (-555) (-611 (-536))))
- (-5 *2 (-52)) (-5 *1 (-317 *7 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093))
- (-4 *4 (-1093)))))
+ (-12
+ (-5 *3
+ (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4)
+ (-247 *4 (-407 (-563)))))
+ (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *2 (-112))
+ (-5 *1 (-505 *4 *5))))
+ ((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-957 *3)) (-4 *3 (-545))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1212)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-32 *3 *4))
+ (-4 *4 (-430 *3))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-767)) (-5 *1 (-114))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-114))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *4))
+ (-4 *4 (-430 *3))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-114)) (-5 *1 (-163))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *4))
+ (-4 *4 (-13 (-430 *3) (-998)))))
+ ((*1 *2 *2) (-12 (-5 *2 (-114)) (-5 *1 (-301 *3)) (-4 *3 (-302))))
+ ((*1 *2 *2) (-12 (-4 *1 (-302)) (-5 *2 (-114))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *4 (-846)) (-5 *1 (-429 *3 *4))
+ (-4 *3 (-430 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *4))
+ (-4 *4 (-430 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-114)) (-5 *1 (-609 *3)) (-4 *3 (-846))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *4))
+ (-4 *4 (-13 (-430 *3) (-998) (-1193)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1015)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-1137)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-1151)) (-5 *4 (-169 (-225))) (-5 *5 (-563))
- (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-481 *4 *5))) (-14 *4 (-640 (-1169)))
+ (-4 *5 (-452))
+ (-5 *2
+ (-2 (|:| |gblist| (-640 (-247 *4 *5)))
+ (|:| |gvlist| (-640 (-563)))))
+ (-5 *1 (-628 *4 *5)))))
(((*1 *2 *3)
(-12
(-5 *3
(-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
(|:| |relerr| (-225))))
(-5 *2
(-2
@@ -9250,7 +8828,7 @@
(-3 (|:| |str| (-1149 (-225)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -2516
+ (|:| -4166
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite| "The bottom of range is infinite")
(|:| |upperInfinite| "The top of range is infinite")
@@ -9258,8 +8836,14 @@
"Both top and bottom points are infinite")
(|:| |notEvaluated| "Range not yet evaluated")))))
(-5 *1 (-558)))))
-(((*1 *2 *3 *4)
+(((*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *3 *4)
(-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-1169))) (-4 *4 (-13 (-307) (-147)))
+ (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789))
+ (-5 *2 (-640 (-407 (-948 *4)))) (-5 *1 (-920 *4 *5 *6 *7))
+ (-4 *7 (-945 *4 *6 *5)))))
(((*1 *1 *2) (-12 (-5 *2 (-917)) (-4 *1 (-368))))
((*1 *2 *3 *3)
(-12 (-5 *3 (-917)) (-5 *2 (-1257 *4)) (-5 *1 (-528 *4))
@@ -9267,115 +8851,147 @@
((*1 *2 *1)
(-12 (-4 *2 (-846)) (-5 *1 (-709 *2 *3 *4)) (-4 *3 (-1093))
(-14 *4
- (-1 (-112) (-2 (|:| -2555 *2) (|:| -1654 *3))
- (-2 (|:| -2555 *2) (|:| -1654 *3)))))))
-(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-640 (-504 *3 *4 *5 *6))) (-4 *3 (-363)) (-4 *4 (-789))
- (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846))
- (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-640 *1)) (-5 *3 (-640 *7)) (-4 *1 (-1065 *4 *5 *6 *7))
- (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1))
- (-4 *1 (-1065 *4 *5 *6 *7))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1))
- (-4 *1 (-1065 *4 *5 *6 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-363)) (-5 *1 (-1021 *3 *2)) (-4 *2 (-651 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-363)) (-5 *2 (-2 (|:| -1420 *3) (|:| -2517 (-640 *5))))
- (-5 *1 (-1021 *5 *3)) (-5 *4 (-640 *5)) (-4 *3 (-651 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-112))
- (-5 *6 (-225)) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-68 APROD))))
- (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-73 MSOLVE))))
- (-5 *2 (-1031)) (-5 *1 (-752)))))
+ (-1 (-112) (-2 (|:| -2552 *2) (|:| -3311 *3))
+ (-2 (|:| -2552 *2) (|:| -3311 *3)))))))
+(((*1 *1 *2 *3 *3 *4 *5)
+ (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *3 (-640 (-870)))
+ (-5 *4 (-640 (-917))) (-5 *5 (-640 (-263))) (-5 *1 (-468))))
+ ((*1 *1 *2 *3 *3 *4)
+ (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *3 (-640 (-870)))
+ (-5 *4 (-640 (-917))) (-5 *1 (-468))))
+ ((*1 *1 *2) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *1 (-468))))
+ ((*1 *1 *1) (-5 *1 (-468))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-114)))))
+(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1210)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1257 *6)) (-5 *4 (-1257 (-563))) (-5 *5 (-563))
+ (-4 *6 (-1093)) (-5 *2 (-1 *6)) (-5 *1 (-1013 *6)))))
+(((*1 *1 *1) (-4 *1 (-626)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998) (-1193))))))
+(((*1 *2)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 *4))))
+ (-12 (-5 *2 (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 *4))))
(-5 *1 (-885 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093))))
((*1 *2 *1)
(-12 (-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *5 (-1093)) (-4 *6 (-1093))
(-4 *7 (-1093)) (-5 *2 (-640 *1)) (-4 *1 (-1096 *3 *4 *5 *6 *7)))))
-(((*1 *2)
- (-12 (-5 *2 (-2 (|:| -3244 (-640 *3)) (|:| -3289 (-640 *3))))
- (-5 *1 (-1209 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-640 (-112))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045))
+ (-5 *2 (-640 (-640 (-939 *3))))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-640 (-640 (-939 *4)))) (-5 *3 (-112)) (-4 *4 (-1045))
+ (-4 *1 (-1127 *4))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-640 (-640 (-939 *3)))) (-4 *3 (-1045))
+ (-4 *1 (-1127 *3))))
+ ((*1 *1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-640 (-640 (-640 *4)))) (-5 *3 (-112))
+ (-4 *1 (-1127 *4)) (-4 *4 (-1045))))
+ ((*1 *1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-640 (-640 (-939 *4)))) (-5 *3 (-112))
+ (-4 *1 (-1127 *4)) (-4 *4 (-1045))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-640 (-640 (-640 *5)))) (-5 *3 (-640 (-171)))
+ (-5 *4 (-171)) (-4 *1 (-1127 *5)) (-4 *5 (-1045))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-640 (-640 (-939 *5)))) (-5 *3 (-640 (-171)))
+ (-5 *4 (-171)) (-4 *1 (-1127 *5)) (-4 *5 (-1045)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-407 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1233 *5))
- (-5 *1 (-723 *5 *2)) (-4 *5 (-363)))))
-(((*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-275)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9))
- (-4 *9 (-1059 *6 *7 *8)) (-4 *6 (-555)) (-4 *7 (-789))
- (-4 *8 (-846)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2636 (-640 *9))))
- (-5 *3 (-640 *9)) (-4 *1 (-1201 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1059 *5 *6 *7))
- (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846))
- (-5 *2 (-2 (|:| |bas| *1) (|:| -2636 (-640 *8))))
- (-5 *3 (-640 *8)) (-4 *1 (-1201 *5 *6 *7 *8)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1091 *3)) (-4 *3 (-1093)) (-5 *2 (-112)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452))
- (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *1 (-973 *3 *4 *5 *6)))))
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
+ (-4 *6 (-789)) (-5 *2 (-407 (-948 *4))) (-5 *1 (-920 *4 *5 *6 *3))
+ (-4 *3 (-945 *4 *6 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-684 *7)) (-4 *7 (-945 *4 *6 *5))
+ (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
+ (-4 *6 (-789)) (-5 *2 (-684 (-407 (-948 *4))))
+ (-5 *1 (-920 *4 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *6 *5))
+ (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
+ (-4 *6 (-789)) (-5 *2 (-640 (-407 (-948 *4))))
+ (-5 *1 (-920 *4 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *1 (-468)))))
+(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1151)) (-5 *3 (-770)) (-5 *1 (-114)))))
+(((*1 *2)
+ (-12
+ (-5 *2 (-2 (|:| -3781 (-640 (-1169))) (|:| -3792 (-640 (-1169)))))
+ (-5 *1 (-1210)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-2 (|:| -2618 *4) (|:| -4329 (-563)))))
+ (-4 *4 (-1093)) (-5 *2 (-1 *4)) (-5 *1 (-1013 *4)))))
(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1137)) (-5 *3 (-563)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-748)))))
-(((*1 *2 *3) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-560)) (-5 *3 (-563)))))
+(((*1 *1 *1) (-4 *1 (-626)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998) (-1193))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4)))
+ (-5 *2 (-2 (|:| |num| (-1257 *4)) (|:| |den| *4))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1169))
+ (-5 *2
+ (-2 (|:| |zeros| (-1149 (-225))) (|:| |ones| (-1149 (-225)))
+ (|:| |singularities| (-1149 (-225)))))
+ (-5 *1 (-105)))))
(((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858))))
((*1 *1 *1) (-5 *1 (-858)))
((*1 *1 *2)
(-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-4 *1 (-1091 *3))))
((*1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))))
-(((*1 *1) (-5 *1 (-437))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-767)) (-4 *6 (-363)) (-5 *4 (-1202 *6))
- (-5 *2 (-1 (-1149 *4) (-1149 *4))) (-5 *1 (-1265 *6))
- (-5 *5 (-1149 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-684 *11)) (-5 *4 (-640 (-407 (-948 *8))))
+ (-5 *5 (-767)) (-5 *6 (-1151)) (-4 *8 (-13 (-307) (-147)))
+ (-4 *11 (-945 *8 *10 *9)) (-4 *9 (-13 (-846) (-611 (-1169))))
+ (-4 *10 (-789))
+ (-5 *2
+ (-2
+ (|:| |rgl|
+ (-640
+ (-2 (|:| |eqzro| (-640 *11)) (|:| |neqzro| (-640 *11))
+ (|:| |wcond| (-640 (-948 *8)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1257 (-407 (-948 *8))))
+ (|:| -4013 (-640 (-1257 (-407 (-948 *8))))))))))
+ (|:| |rgsz| (-563))))
+ (-5 *1 (-920 *8 *9 *10 *11)) (-5 *7 (-563)))))
(((*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-154))))
((*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-1060)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *3 (-640 (-263)))
+ (-5 *1 (-261))))
+ ((*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-263))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-468))))
+ ((*1 *2 *1) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-468)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-640 *3)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-417 *4)))))
+ (-12 (-5 *3 (-640 (-1169))) (-5 *2 (-1262)) (-5 *1 (-1210))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 (-1169))) (-5 *2 (-1262)) (-5 *1 (-1210)))))
+(((*1 *2 *3 *3 *3)
+ (|partial| -12 (-4 *4 (-13 (-363) (-147) (-1034 (-563))))
+ (-4 *5 (-1233 *4)) (-5 *2 (-640 (-407 *5))) (-5 *1 (-1012 *4 *5))
+ (-5 *3 (-407 *5)))))
+(((*1 *1 *1) (-4 *1 (-626)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2))
+ (-4 *2 (-13 (-430 *3) (-998) (-1193))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4)))
+ (-5 *2 (-2 (|:| |num| (-1257 *4)) (|:| |den| *4))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-316 (-379))) (-5 *2 (-316 (-225))) (-5 *1 (-305)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-751)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-563)) (-5 *1 (-691 *2)) (-4 *2 (-1233 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1248 *4)) (-5 *1 (-1250 *4 *2))
- (-4 *4 (-38 (-407 (-563)))))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-563)) (-5 *2 (-112)) (-5 *1 (-552)))))
+ (-12 (|has| *2 (-6 (-4410 "*"))) (-4 *5 (-373 *2)) (-4 *6 (-373 *2))
+ (-4 *2 (-1045)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1233 *2))
+ (-4 *4 (-682 *2 *5 *6)))))
(((*1 *1 *1)
(-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
(-4 *4 (-846))))
@@ -9397,8 +9013,8 @@
(-12 (-5 *3 (-684 *5)) (-5 *4 (-1257 *5)) (-4 *5 (-363))
(-5 *2 (-767)) (-5 *1 (-662 *5))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4408))))
- (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4408)))) (-5 *2 (-767))
+ (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4409))))
+ (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4409)))) (-5 *2 (-767))
(-5 *1 (-663 *5 *6 *4 *3)) (-4 *3 (-682 *5 *6 *4))))
((*1 *2 *1)
(-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3))
@@ -9411,38 +9027,22 @@
(-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
(-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-555))
(-5 *2 (-767)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-555))
- (-5 *2 (-2 (|:| -2311 *4) (|:| -3490 *3) (|:| -1972 *3)))
- (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-1059 *3 *4 *5))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-555)) (-4 *3 (-1045))
- (-5 *2 (-2 (|:| -2311 *3) (|:| -3490 *1) (|:| -1972 *1)))
- (-4 *1 (-1233 *3)))))
-(((*1 *2 *3 *4 *5 *5 *4 *6)
- (-12 (-5 *5 (-609 *4)) (-5 *6 (-1165 *4))
- (-4 *4 (-13 (-430 *7) (-27) (-1193)))
- (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4))))
- (-5 *1 (-559 *7 *4 *3)) (-4 *3 (-651 *4)) (-4 *3 (-1093))))
- ((*1 *2 *3 *4 *5 *5 *5 *4 *6)
- (-12 (-5 *5 (-609 *4)) (-5 *6 (-407 (-1165 *4)))
- (-4 *4 (-13 (-430 *7) (-27) (-1193)))
- (-4 *7 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045))
+ (-5 *2 (-640 (-640 (-640 (-767))))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1151)) (-4 *4 (-13 (-307) (-147)))
+ (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789))
(-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4))))
- (-5 *1 (-559 *7 *4 *3)) (-4 *3 (-651 *4)) (-4 *3 (-1093)))))
-(((*1 *2 *3 *4 *4 *5 *6)
- (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-870))
- (-5 *5 (-917)) (-5 *6 (-640 (-263))) (-5 *2 (-1258))
- (-5 *1 (-1261))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-640 (-263)))
- (-5 *2 (-1258)) (-5 *1 (-1261)))))
+ (-640
+ (-2 (|:| |eqzro| (-640 *7)) (|:| |neqzro| (-640 *7))
+ (|:| |wcond| (-640 (-948 *4)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1257 (-407 (-948 *4))))
+ (|:| -4013 (-640 (-1257 (-407 (-948 *4))))))))))
+ (-5 *1 (-920 *4 *5 *6 *7)) (-4 *7 (-945 *4 *6 *5)))))
(((*1 *2 *1) (-12 (-4 *1 (-266 *2)) (-4 *2 (-846))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-1169)) (-5 *1 (-860 *3)) (-14 *3 (-640 *2))))
@@ -9455,60 +9055,101 @@
((*1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1253 *3)) (-14 *3 *2))))
(((*1 *1 *2)
(-12 (-4 *3 (-1045)) (-5 *1 (-823 *2 *3)) (-4 *2 (-704 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-407 (-563))))) (-5 *1 (-263))))
- ((*1 *1 *2) (-12 (-5 *2 (-640 (-1087 (-379)))) (-5 *1 (-263)))))
-(((*1 *1 *1 *1) (-4 *1 (-963))))
+(((*1 *2 *1 *3 *4 *4 *5)
+ (-12 (-5 *3 (-939 (-225))) (-5 *4 (-870)) (-5 *5 (-917))
+ (-5 *2 (-1262)) (-5 *1 (-468))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-939 (-225))) (-5 *2 (-1262)) (-5 *1 (-468))))
+ ((*1 *2 *1 *3 *4 *4 *5)
+ (-12 (-5 *3 (-640 (-939 (-225)))) (-5 *4 (-870)) (-5 *5 (-917))
+ (-5 *2 (-1262)) (-5 *1 (-468)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-767)) (-5 *2 (-112))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-846))
+ (-4 *3 (-1093)))))
+(((*1 *2 *3 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-563))))
+ (-5 *2
+ (-2 (|:| |a| *6) (|:| |b| (-407 *6)) (|:| |h| *6)
+ (|:| |c1| (-407 *6)) (|:| |c2| (-407 *6)) (|:| -2287 *6)))
+ (-5 *1 (-1012 *5 *6)) (-5 *3 (-407 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-684 (-407 (-948 (-563)))))
- (-5 *2
- (-640
- (-2 (|:| |radval| (-316 (-563))) (|:| |radmult| (-563))
- (|:| |radvect| (-640 (-684 (-316 (-563))))))))
- (-5 *1 (-1027)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-527)) (-5 *3 (-128)) (-5 *2 (-767)))))
+ (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112))
+ (-5 *1 (-32 *4 *5)) (-4 *5 (-430 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112))
+ (-5 *1 (-158 *4 *5)) (-4 *5 (-430 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112))
+ (-5 *1 (-276 *4 *5)) (-4 *5 (-13 (-430 *4) (-998)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-301 *4)) (-4 *4 (-302))))
+ ((*1 *2 *3) (-12 (-4 *1 (-302)) (-5 *3 (-114)) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *5 (-846)) (-5 *2 (-112))
+ (-5 *1 (-429 *4 *5)) (-4 *4 (-430 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112))
+ (-5 *1 (-431 *4 *5)) (-4 *5 (-430 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112))
+ (-5 *1 (-627 *4 *5)) (-4 *5 (-13 (-430 *4) (-998) (-1193))))))
(((*1 *2 *1)
(-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-5 *2 (-640 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-307) (-147))) (-4 *4 (-13 (-846) (-611 (-1169))))
- (-4 *5 (-789)) (-5 *1 (-920 *3 *4 *5 *2)) (-4 *2 (-945 *3 *5 *4)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1233 *4)) (-4 *4 (-1212))
+ (-4 *1 (-342 *4 *3 *5)) (-4 *5 (-1233 (-407 *3))))))
(((*1 *1 *2)
(-12 (-5 *2 (-1257 *4)) (-4 *4 (-1208)) (-4 *1 (-238 *3 *4)))))
-(((*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-1054))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169)))
- (-14 *3 (-640 (-1169))) (-4 *4 (-387))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)) (-4 *2 (-1054))))
- ((*1 *1 *1) (-4 *1 (-844)))
- ((*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)) (-4 *2 (-1054))))
- ((*1 *1 *1) (-4 *1 (-1054))) ((*1 *1 *1) (-4 *1 (-1132))))
-(((*1 *1)
- (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-555)) (-4 *2 (-172)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-225)) (-5 *3 (-767)) (-5 *1 (-226))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-169 (-225))) (-5 *3 (-767)) (-5 *1 (-226))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1132))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-767)) (-4 *4 (-349)) (-5 *1 (-216 *4 *2))
- (-4 *2 (-1233 *4)))))
-(((*1 *1 *1) (-12 (-5 *1 (-962 *2)) (-4 *2 (-963)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045))
+ (-5 *2 (-640 (-640 (-640 (-939 *3))))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3 *4)
+ (-12
+ (-5 *3
+ (-640
+ (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8))
+ (|:| |wcond| (-640 (-948 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1257 (-407 (-948 *5))))
+ (|:| -4013 (-640 (-1257 (-407 (-948 *5))))))))))
+ (-5 *4 (-1151)) (-4 *5 (-13 (-307) (-147))) (-4 *8 (-945 *5 *7 *6))
+ (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-563))
+ (-5 *1 (-920 *5 *6 *7 *8)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-939 (-225))) (-5 *2 (-1262)) (-5 *1 (-468)))))
(((*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-138))))
((*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-186)))))
-(((*1 *1) (-5 *1 (-819))))
-(((*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-640 *3)) (-4 *3 (-307)) (-5 *1 (-179 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-3 (-407 (-948 *5)) (-1158 (-1169) (-948 *5))))
- (-4 *5 (-452)) (-5 *2 (-640 (-684 (-407 (-948 *5)))))
- (-5 *1 (-292 *5)) (-5 *4 (-684 (-407 (-948 *5)))))))
-(((*1 *2 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *4 *4
- *4 *6 *4)
- (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225))) (-5 *6 (-670 (-225)))
- (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-746)))))
+ (-12 (-5 *3 (-640 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1209 *2))
+ (-4 *2 (-1093))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-1093)) (-4 *2 (-846))
+ (-5 *1 (-1209 *2)))))
+(((*1 *2 *3 *3 *3 *4 *5)
+ (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1233 *6))
+ (-4 *6 (-13 (-363) (-147) (-1034 *4))) (-5 *4 (-563))
+ (-5 *2
+ (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112))))
+ (|:| -1420
+ (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
+ (|:| |beta| *3)))))
+ (-5 *1 (-1011 *6 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452))
+ (-14 *6 (-640 (-1169)))
+ (-5 *2
+ (-640 (-1139 *5 (-531 (-860 *6)) (-860 *6) (-776 *5 (-860 *6)))))
+ (-5 *1 (-625 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-342 *4 *5 *6)) (-4 *4 (-1212))
+ (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5)))
+ (-5 *2 (-2 (|:| |num| (-684 *5)) (|:| |den| *5))))))
(((*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-316 *4))
@@ -9516,30 +9157,135 @@
((*1 *2 *2)
(-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
(-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))))
-(((*1 *1 *1) (-5 *1 (-1057))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-316 (-225))) (-5 *4 (-1169))
- (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-640 (-225))) (-5 *1 (-192))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-316 (-225))) (-5 *4 (-1169))
- (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-640 (-225))) (-5 *1 (-300)))))
-(((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1169)) (-5 *2 (-686 (-187))) (-5 *1 (-187)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-1178)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-640 (-171)))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 (-407 (-563))))
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-684 *8)) (-4 *8 (-945 *5 *7 *6))
+ (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169))))
+ (-4 *7 (-789))
(-5 *2
(-640
- (-2 (|:| |outval| *4) (|:| |outmult| (-563))
- (|:| |outvect| (-640 (-684 *4))))))
- (-5 *1 (-775 *4)) (-4 *4 (-13 (-363) (-844))))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-767))
- (-4 *3 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $)))))
- (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))))
+ (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8))
+ (|:| |wcond| (-640 (-948 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1257 (-407 (-948 *5))))
+ (|:| -4013 (-640 (-1257 (-407 (-948 *5))))))))))
+ (-5 *1 (-920 *5 *6 *7 *8)) (-5 *4 (-640 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-684 *8)) (-5 *4 (-640 (-1169))) (-4 *8 (-945 *5 *7 *6))
+ (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169))))
+ (-4 *7 (-789))
+ (-5 *2
+ (-640
+ (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8))
+ (|:| |wcond| (-640 (-948 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1257 (-407 (-948 *5))))
+ (|:| -4013 (-640 (-1257 (-407 (-948 *5))))))))))
+ (-5 *1 (-920 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-684 *7)) (-4 *7 (-945 *4 *6 *5))
+ (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
+ (-4 *6 (-789))
+ (-5 *2
+ (-640
+ (-2 (|:| |eqzro| (-640 *7)) (|:| |neqzro| (-640 *7))
+ (|:| |wcond| (-640 (-948 *4)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1257 (-407 (-948 *4))))
+ (|:| -4013 (-640 (-1257 (-407 (-948 *4))))))))))
+ (-5 *1 (-920 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-684 *9)) (-5 *5 (-917)) (-4 *9 (-945 *6 *8 *7))
+ (-4 *6 (-13 (-307) (-147))) (-4 *7 (-13 (-846) (-611 (-1169))))
+ (-4 *8 (-789))
+ (-5 *2
+ (-640
+ (-2 (|:| |eqzro| (-640 *9)) (|:| |neqzro| (-640 *9))
+ (|:| |wcond| (-640 (-948 *6)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1257 (-407 (-948 *6))))
+ (|:| -4013 (-640 (-1257 (-407 (-948 *6))))))))))
+ (-5 *1 (-920 *6 *7 *8 *9)) (-5 *4 (-640 *9))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-684 *9)) (-5 *4 (-640 (-1169))) (-5 *5 (-917))
+ (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147)))
+ (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789))
+ (-5 *2
+ (-640
+ (-2 (|:| |eqzro| (-640 *9)) (|:| |neqzro| (-640 *9))
+ (|:| |wcond| (-640 (-948 *6)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1257 (-407 (-948 *6))))
+ (|:| -4013 (-640 (-1257 (-407 (-948 *6))))))))))
+ (-5 *1 (-920 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-684 *8)) (-5 *4 (-917)) (-4 *8 (-945 *5 *7 *6))
+ (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169))))
+ (-4 *7 (-789))
+ (-5 *2
+ (-640
+ (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8))
+ (|:| |wcond| (-640 (-948 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1257 (-407 (-948 *5))))
+ (|:| -4013 (-640 (-1257 (-407 (-948 *5))))))))))
+ (-5 *1 (-920 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-684 *9)) (-5 *4 (-640 *9)) (-5 *5 (-1151))
+ (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147)))
+ (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-563))
+ (-5 *1 (-920 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-684 *9)) (-5 *4 (-640 (-1169))) (-5 *5 (-1151))
+ (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147)))
+ (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-563))
+ (-5 *1 (-920 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-684 *8)) (-5 *4 (-1151)) (-4 *8 (-945 *5 *7 *6))
+ (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169))))
+ (-4 *7 (-789)) (-5 *2 (-563)) (-5 *1 (-920 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-684 *10)) (-5 *4 (-640 *10)) (-5 *5 (-917))
+ (-5 *6 (-1151)) (-4 *10 (-945 *7 *9 *8)) (-4 *7 (-13 (-307) (-147)))
+ (-4 *8 (-13 (-846) (-611 (-1169)))) (-4 *9 (-789)) (-5 *2 (-563))
+ (-5 *1 (-920 *7 *8 *9 *10))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-684 *10)) (-5 *4 (-640 (-1169))) (-5 *5 (-917))
+ (-5 *6 (-1151)) (-4 *10 (-945 *7 *9 *8)) (-4 *7 (-13 (-307) (-147)))
+ (-4 *8 (-13 (-846) (-611 (-1169)))) (-4 *9 (-789)) (-5 *2 (-563))
+ (-5 *1 (-920 *7 *8 *9 *10))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-684 *9)) (-5 *4 (-917)) (-5 *5 (-1151))
+ (-4 *9 (-945 *6 *8 *7)) (-4 *6 (-13 (-307) (-147)))
+ (-4 *7 (-13 (-846) (-611 (-1169)))) (-4 *8 (-789)) (-5 *2 (-563))
+ (-5 *1 (-920 *6 *7 *8 *9)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *3 (-640 (-870)))
+ (-5 *1 (-468)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-640 *3)) (-4 *3 (-307)) (-5 *1 (-179 *3)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-563)))) (-4 *5 (-1233 *4))
+ (-5 *2 (-2 (|:| |ans| (-407 *5)) (|:| |nosol| (-112))))
+ (-5 *1 (-1011 *4 *5)) (-5 *3 (-407 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452))
+ (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1042 *5 *6)))
+ (-5 *1 (-625 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-363) (-1193) (-998)))))
+ ((*1 *2)
+ (|partial| -12 (-4 *4 (-1212)) (-4 *5 (-1233 (-407 *2)))
+ (-4 *2 (-1233 *4)) (-5 *1 (-341 *3 *4 *2 *5))
+ (-4 *3 (-342 *4 *2 *5))))
+ ((*1 *2)
+ (|partial| -12 (-4 *1 (-342 *3 *2 *4)) (-4 *3 (-1212))
+ (-4 *4 (-1233 (-407 *2))) (-4 *2 (-1233 *3)))))
(((*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-316 *4))
@@ -9549,202 +9295,239 @@
((*1 *2 *2)
(-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
(-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-361 (-114))) (-4 *2 (-1045)) (-5 *1 (-710 *2 *4))
- (-4 *4 (-643 *2))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-361 (-114))) (-5 *1 (-832 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2))
- (-4 *2 (-430 *4))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1169))))
- ((*1 *1 *1) (-4 *1 (-160))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-114)) (-4 *4 (-1045)) (-5 *1 (-710 *4 *2))
- (-4 *2 (-643 *4))))
- ((*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-832 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-555)) (-4 *3 (-172)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2))
- (-4 *2 (-682 *3 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-171))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-169 (-225))) (-5 *4 (-563)) (-5 *2 (-1031))
+ (-5 *1 (-754)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 *4)) (-4 *4 (-363)) (-4 *2 (-1233 *4))
+ (-5 *1 (-918 *4 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *2 (-640 (-225)))
+ (-5 *1 (-468)))))
(((*1 *1) (-5 *1 (-614))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
- (-4 *3 (-367 *4))))
- ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2742 *4)))
- (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-97)))))
-(((*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))))
+ (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-363) (-1193) (-998))))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-767)) (-5 *2 (-112))))
+ ((*1 *2 *3 *3)
+ (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1093)) (-5 *2 (-112))
+ (-5 *1 (-1209 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-846)) (-4 *3 (-1093)))))
+(((*1 *2 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5))
+ (-4 *5 (-13 (-363) (-147) (-1034 (-563))))
+ (-5 *2
+ (-2 (|:| |a| *6) (|:| |b| (-407 *6)) (|:| |c| (-407 *6))
+ (|:| -2287 *6)))
+ (-5 *1 (-1011 *5 *6)) (-5 *3 (-407 *6)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2))
- (-4 *2 (-430 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1267)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1257 *5)) (-4 *5 (-788)) (-5 *2 (-112))
- (-5 *1 (-841 *4 *5)) (-14 *4 (-767)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-939 *5)) (-4 *5 (-1045)) (-5 *2 (-767))
- (-5 *1 (-1157 *4 *5)) (-14 *4 (-917))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-640 (-767))) (-5 *3 (-767)) (-5 *1 (-1157 *4 *5))
- (-14 *4 (-917)) (-4 *5 (-1045))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-640 (-767))) (-5 *3 (-939 *5)) (-4 *5 (-1045))
- (-5 *1 (-1157 *4 *5)) (-14 *4 (-917)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-684 *4)) (-5 *3 (-917)) (|has| *4 (-6 (-4409 "*")))
- (-4 *4 (-1045)) (-5 *1 (-1024 *4))))
+ (-12 (-5 *2 (-640 (-948 *3))) (-4 *3 (-452)) (-5 *1 (-360 *3 *4))
+ (-14 *4 (-640 (-1169)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-450 *3 *4 *5 *6))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-640 (-684 *4))) (-5 *3 (-917))
- (|has| *4 (-6 (-4409 "*"))) (-4 *4 (-1045)) (-5 *1 (-1024 *4)))))
+ (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6))
+ (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-5 *1 (-450 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6))
+ (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-5 *1 (-450 *4 *5 *6 *7))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846))
+ (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-640 (-776 *3 (-860 *4)))) (-4 *3 (-452))
+ (-14 *4 (-640 (-1169))) (-5 *1 (-625 *3 *4)))))
+(((*1 *2)
+ (|partial| -12 (-4 *4 (-1212)) (-4 *5 (-1233 (-407 *2)))
+ (-4 *2 (-1233 *4)) (-5 *1 (-341 *3 *4 *2 *5))
+ (-4 *3 (-342 *4 *2 *5))))
+ ((*1 *2)
+ (|partial| -12 (-4 *1 (-342 *3 *2 *4)) (-4 *3 (-1212))
+ (-4 *4 (-1233 (-407 *2))) (-4 *2 (-1233 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 (-2 (|:| -2173 (-1165 *6)) (|:| -3311 (-563)))))
+ (-4 *6 (-307)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
+ (-5 *1 (-738 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1127 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *3 *4 *4 *5 *4 *4 *5)
+ (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225)))
+ (-5 *2 (-1031)) (-5 *1 (-753)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-916)) (-5 *2 (-2 (|:| -2310 (-640 *1)) (|:| -4334 *1)))
+ (-5 *3 (-640 *1)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1096 *3 *4 *5 *6 *2)) (-4 *3 (-1093)) (-4 *4 (-1093))
(-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *2 (-1093)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-307)) (-5 *1 (-455 *3 *2)) (-4 *2 (-1233 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-307)) (-5 *1 (-460 *3 *2)) (-4 *2 (-1233 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-307)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-767)))
- (-5 *1 (-539 *3 *2 *4 *5)) (-4 *2 (-1233 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
+ ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-263))))
+ ((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-192))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-300))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1087 (-839 (-225)))) (-5 *2 (-225)) (-5 *1 (-305)))))
-(((*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))))
+ (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-363) (-1193) (-998))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1257 (-316 (-225))))
- (-5 *2
- (-2 (|:| |additions| (-563)) (|:| |multiplications| (-563))
- (|:| |exponentiations| (-563)) (|:| |functionCalls| (-563))))
- (-5 *1 (-305)))))
-(((*1 *2 *3) (-12 (-5 *3 (-169 (-563))) (-5 *2 (-112)) (-5 *1 (-446))))
+ (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-417 *4)))))
+(((*1 *2)
+ (-12 (-5 *2 (-2 (|:| -3792 (-640 *3)) (|:| -3781 (-640 *3))))
+ (-5 *1 (-1209 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *3 (-640 (-1 *4 (-640 *4)))) (-4 *4 (-1093))
+ (-5 *1 (-113 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1093))
+ (-5 *1 (-113 *4))))
((*1 *2 *3)
- (-12
- (-5 *3
- (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4)
- (-247 *4 (-407 (-563)))))
- (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *2 (-112))
- (-5 *1 (-505 *4 *5))))
- ((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-957 *3)) (-4 *3 (-545))))
- ((*1 *2 *1) (-12 (-4 *1 (-1212)) (-5 *2 (-112)))))
+ (|partial| -12 (-5 *3 (-114)) (-5 *2 (-640 (-1 *4 (-640 *4))))
+ (-5 *1 (-113 *4)) (-4 *4 (-1093)))))
+(((*1 *2 *3 *4 *4 *4 *5 *6 *7)
+ (|partial| -12 (-5 *5 (-1169))
+ (-5 *6
+ (-1
+ (-3
+ (-2 (|:| |mainpart| *4)
+ (|:| |limitedlogs|
+ (-640 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
+ "failed")
+ *4 (-640 *4)))
+ (-5 *7
+ (-1 (-3 (-2 (|:| -2840 *4) (|:| |coeff| *4)) "failed") *4 *4))
+ (-4 *4 (-13 (-1193) (-27) (-430 *8)))
+ (-4 *8 (-13 (-452) (-846) (-147) (-1034 *3) (-636 *3)))
+ (-5 *3 (-563)) (-5 *2 (-640 *4)) (-5 *1 (-1010 *8 *4)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998)))
- (-5 *1 (-176 *3)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))
- (-5 *2 (-379)) (-5 *1 (-267))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *2 (-379)) (-5 *1 (-305)))))
+ (|partial| -12 (-5 *2 (-640 (-948 *3))) (-4 *3 (-452))
+ (-5 *1 (-360 *3 *4)) (-14 *4 (-640 (-1169)))))
+ ((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-640 (-776 *3 (-860 *4)))) (-4 *3 (-452))
+ (-14 *4 (-640 (-1169))) (-5 *1 (-625 *3 *4)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-1212))
+ (-4 *6 (-1233 (-407 *5)))
+ (-5 *2
+ (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5)
+ (|:| |gd| *5)))
+ (-4 *1 (-342 *4 *5 *6)))))
(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1178)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-1125 *4 *2))
+ (-4 *2 (-13 (-601 (-563) *4) (-10 -7 (-6 -4408) (-6 -4409))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-846)) (-4 *3 (-1208)) (-5 *1 (-1125 *3 *2))
+ (-4 *2 (-13 (-601 (-563) *3) (-10 -7 (-6 -4408) (-6 -4409)))))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225)))
+ (-5 *2 (-1031)) (-5 *1 (-753)))))
+(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-640 *1)) (-4 *1 (-916)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
- (-4 *6 (-789)) (-5 *2 (-407 (-948 *4))) (-5 *1 (-920 *4 *5 *6 *3))
- (-4 *3 (-945 *4 *6 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-684 *7)) (-4 *7 (-945 *4 *6 *5))
- (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
- (-4 *6 (-789)) (-5 *2 (-684 (-407 (-948 *4))))
- (-5 *1 (-920 *4 *5 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *6 *5))
- (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
- (-4 *6 (-789)) (-5 *2 (-640 (-407 (-948 *4))))
- (-5 *1 (-920 *4 *5 *6 *7)))))
-(((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-767)) (-4 *5 (-363)) (-5 *2 (-174 *6))
- (-5 *1 (-863 *5 *4 *6)) (-4 *4 (-1248 *5)) (-4 *6 (-1233 *5)))))
+ (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-363) (-1193) (-998))))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-114)) (-5 *4 (-767)) (-4 *5 (-452)) (-4 *5 (-846))
+ (-4 *5 (-1034 (-563))) (-4 *5 (-555)) (-5 *1 (-41 *5 *2))
+ (-4 *2 (-430 *5))
+ (-4 *2
+ (-13 (-363) (-302)
+ (-10 -8 (-15 -2143 ((-1118 *5 (-609 $)) $))
+ (-15 -2153 ((-1118 *5 (-609 $)) $))
+ (-15 -1692 ($ (-1118 *5 (-609 $))))))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 *4)) (-4 *4 (-844)) (-4 *4 (-363)) (-5 *2 (-767))
- (-5 *1 (-941 *4 *5)) (-4 *5 (-1233 *4)))))
-(((*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6)
- (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225)))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191)))) (-5 *3 (-225))
- (-5 *2 (-1031)) (-5 *1 (-744)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-640 (-563))) (-5 *3 (-684 (-563))) (-5 *1 (-1103)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-330)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-1045)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-117 *3)) (-14 *3 *2)))
- ((*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-563))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-867 *3)) (-14 *3 *2)))
- ((*1 *1 *1) (-12 (-5 *1 (-867 *2)) (-14 *2 (-563))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-563)) (-14 *3 *2) (-5 *1 (-868 *3 *4))
- (-4 *4 (-865 *3))))
- ((*1 *1 *1)
- (-12 (-14 *2 (-563)) (-5 *1 (-868 *2 *3)) (-4 *3 (-865 *2))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-563)) (-4 *1 (-1219 *3 *4)) (-4 *3 (-1045))
- (-4 *4 (-1248 *3))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1219 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-1248 *2)))))
+ (-12 (-5 *3 (-640 *4)) (-4 *4 (-1093)) (-5 *2 (-1262))
+ (-5 *1 (-1209 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 *4)) (-4 *4 (-1093)) (-5 *2 (-1262))
+ (-5 *1 (-1209 *4)))))
+(((*1 *2 *3 *4 *4 *5 *6 *7)
+ (-12 (-5 *5 (-1169))
+ (-5 *6
+ (-1
+ (-3
+ (-2 (|:| |mainpart| *4)
+ (|:| |limitedlogs|
+ (-640 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
+ "failed")
+ *4 (-640 *4)))
+ (-5 *7
+ (-1 (-3 (-2 (|:| -2840 *4) (|:| |coeff| *4)) "failed") *4 *4))
+ (-4 *4 (-13 (-1193) (-27) (-430 *8)))
+ (-4 *8 (-13 (-452) (-846) (-147) (-1034 *3) (-636 *3)))
+ (-5 *3 (-563))
+ (-5 *2 (-2 (|:| |ans| *4) (|:| -1700 *4) (|:| |sol?| (-112))))
+ (-5 *1 (-1009 *8 *4)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4))
- (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112))))
+ (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-452)) (-5 *2 (-112))
+ (-5 *1 (-360 *4 *5)) (-14 *5 (-640 (-1169)))))
((*1 *2 *3)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-640 (-776 *4 (-860 *5)))) (-4 *4 (-452))
+ (-14 *5 (-640 (-1169))) (-5 *2 (-112)) (-5 *1 (-625 *4 *5)))))
(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-555) (-147)))
- (-5 *2 (-2 (|:| -1686 *3) (|:| -1701 *3))) (-5 *1 (-1227 *4 *3))
- (-4 *3 (-1233 *4)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+ (-12 (-5 *3 (-1169)) (-4 *5 (-1212)) (-4 *6 (-1233 *5))
+ (-4 *7 (-1233 (-407 *6))) (-5 *2 (-640 (-948 *5)))
+ (-5 *1 (-341 *4 *5 *6 *7)) (-4 *4 (-342 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1169)) (-4 *1 (-342 *4 *5 *6)) (-4 *4 (-1212))
+ (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-4 *4 (-363))
+ (-5 *2 (-640 (-948 *4))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-1125 *4 *2))
+ (-4 *2 (-13 (-601 (-563) *4) (-10 -7 (-6 -4408) (-6 -4409))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-846)) (-4 *3 (-1208)) (-5 *1 (-1125 *3 *2))
+ (-4 *2 (-13 (-601 (-563) *3) (-10 -7 (-6 -4408) (-6 -4409)))))))
+(((*1 *2 *3 *4 *4 *5 *4 *6 *4 *5)
+ (-12 (-5 *3 (-1151)) (-5 *5 (-684 (-225))) (-5 *6 (-684 (-563)))
+ (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-753)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-640 (-948 *4))) (-5 *3 (-640 (-1169))) (-4 *4 (-452))
+ (-5 *1 (-914 *4)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-363) (-1193) (-998))))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-307))))
- ((*1 *2 *1 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |lm| (-386 *3)) (|:| |rm| (-386 *3))))
- (-5 *1 (-386 *3)) (-4 *3 (-1093))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -3490 (-767)) (|:| -1972 (-767))))
- (-5 *1 (-767))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3)))
- (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-5 *1 (-901 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-684 *2)) (-5 *4 (-767))
- (-4 *2 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $)))))
- (-4 *5 (-1233 *2)) (-5 *1 (-499 *2 *5 *6)) (-4 *6 (-409 *2 *5)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-545))))
+ (-12 (-4 *3 (-452)) (-4 *3 (-846)) (-4 *3 (-1034 (-563)))
+ (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-430 *3))
+ (-4 *2
+ (-13 (-363) (-302)
+ (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $))
+ (-15 -2153 ((-1118 *3 (-609 $)) $))
+ (-15 -1692 ($ (-1118 *3 (-609 $))))))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169)))
- (-4 *5 (-555)) (-5 *2 (-640 (-640 (-948 *5)))) (-5 *1 (-1177 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1151)) (-5 *1 (-305)))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-1128))) (-5 *1 (-1083)))))
+ (-12 (-5 *4 (-563)) (-4 *5 (-349)) (-5 *2 (-418 (-1165 (-1165 *5))))
+ (-5 *1 (-1206 *5)) (-5 *3 (-1165 (-1165 *5))))))
+(((*1 *2 *1) (|partial| -12 (-4 *1 (-1008)) (-5 *2 (-858)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 *4)) (-4 *4 (-846)) (-5 *2 (-640 (-659 *4 *5)))
+ (-5 *1 (-624 *4 *5 *6)) (-4 *5 (-13 (-172) (-713 (-407 (-563)))))
+ (-14 *6 (-917)))))
(((*1 *1 *1) (-5 *1 (-48)))
((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-59 *5)) (-4 *5 (-1208))
(-4 *2 (-1208)) (-5 *1 (-58 *5 *2))))
((*1 *2 *3 *1 *2 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1093)) (|has| *1 (-6 -4407))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1093)) (|has| *1 (-6 -4408))
(-4 *1 (-151 *2)) (-4 *2 (-1208))))
((*1 *2 *3 *1 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4407)) (-4 *1 (-151 *2))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4408)) (-4 *1 (-151 *2))
(-4 *2 (-1208))))
((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4407)) (-4 *1 (-151 *2))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4408)) (-4 *1 (-151 *2))
(-4 *2 (-1208))))
((*1 *2 *3)
(-12 (-4 *4 (-1045))
- (-5 *2 (-2 (|:| -1574 (-1165 *4)) (|:| |deg| (-917))))
+ (-5 *2 (-2 (|:| -3929 (-1165 *4)) (|:| |deg| (-917))))
(-5 *1 (-221 *4 *5)) (-5 *3 (-1165 *4)) (-4 *5 (-13 (-555) (-846)))))
((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-240 *5 *6)) (-14 *5 (-767))
@@ -9811,56 +9594,46 @@
((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1257 *5)) (-4 *5 (-1208))
(-4 *2 (-1208)) (-5 *1 (-1256 *5 *2)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1165 *9)) (-5 *4 (-640 *7)) (-4 *7 (-846))
- (-4 *9 (-945 *8 *6 *7)) (-4 *6 (-789)) (-4 *8 (-307))
- (-5 *2 (-640 (-767))) (-5 *1 (-738 *6 *7 *8 *9)) (-5 *5 (-767)))))
-(((*1 *2 *2) (-12 (-5 *2 (-316 (-225))) (-5 *1 (-267)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1169))
- (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-277 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4)))))
- ((*1 *1 *1) (-5 *1 (-379)))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
- (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4))))
- (-5 *1 (-772 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-407 (-563))) (-4 *1 (-553 *3))
- (-4 *3 (-13 (-404) (-1193)))))
- ((*1 *1 *2) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193)))))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))))
-(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
+(((*1 *2)
+ (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5)))
+ (-5 *2 (-640 (-640 *4))) (-5 *1 (-341 *3 *4 *5 *6))
+ (-4 *3 (-342 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-4 *3 (-368)) (-5 *2 (-640 (-640 *3))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1257 *4)) (-4 *4 (-1045)) (-4 *2 (-1233 *4))
+ (-5 *1 (-444 *4 *2))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-407 (-1165 (-316 *5)))) (-5 *3 (-1257 (-316 *5)))
+ (-5 *4 (-563)) (-4 *5 (-13 (-555) (-846))) (-5 *1 (-1123 *5)))))
+(((*1 *2 *3 *3 *3 *4)
(-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-747)))))
+ (-5 *1 (-753)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-640 (-948 *4))) (-5 *3 (-640 (-1169))) (-4 *4 (-452))
+ (-5 *1 (-914 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-294 (-948 (-563))))
- (-5 *2
- (-2 (|:| |varOrder| (-640 (-1169)))
- (|:| |inhom| (-3 (-640 (-1257 (-767))) "failed"))
- (|:| |hom| (-640 (-1257 (-767))))))
- (-5 *1 (-236)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *5 (-368))
- (-5 *2 (-767)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6))
- (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
- (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
-(((*1 *1)
- (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-555)) (-4 *2 (-172)))))
+ (-12 (-5 *3 (-917)) (-5 *2 (-1257 (-1257 (-563)))) (-5 *1 (-466)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-363) (-1193) (-998))))))
(((*1 *2 *2)
- (-12
- (-5 *2
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4)
- (|:| |xpnt| (-563))))
- (-4 *4 (-13 (-1233 *3) (-555) (-10 -8 (-15 -3548 ($ $ $)))))
- (-4 *3 (-555)) (-5 *1 (-1236 *3 *4)))))
+ (-12 (-4 *3 (-452)) (-4 *3 (-846)) (-4 *3 (-1034 (-563)))
+ (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-430 *3))
+ (-4 *2
+ (-13 (-363) (-302)
+ (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $))
+ (-15 -2153 ((-1118 *3 (-609 $)) $))
+ (-15 -1692 ($ (-1118 *3 (-609 $))))))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-349)) (-5 *2 (-418 (-1165 (-1165 *4))))
+ (-5 *1 (-1206 *4)) (-5 *3 (-1165 (-1165 *4))))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1165 *1)) (-4 *1 (-1008)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-2 (|:| |k| (-667 *3)) (|:| |c| *4))))
+ (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846))
+ (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-609 *6)) (-4 *6 (-13 (-430 *5) (-27) (-1193)))
(-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
@@ -9879,80 +9652,112 @@
((*1 *2 *1)
(-12 (-4 *2 (-945 *3 *4 *5)) (-5 *1 (-1030 *3 *4 *5 *2 *6))
(-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-14 *6 (-640 *2)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 (-1169)))
+ (-14 *4 (-640 (-1169))) (-4 *5 (-387))))
+ ((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 (-1169)))
+ (-14 *4 (-640 (-1169))) (-4 *5 (-387)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1151)) (-5 *2 (-640 (-1174))) (-5 *1 (-1129)))))
-(((*1 *2 *2 *2 *2 *3)
- (-12 (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1 (-939 (-225)) (-939 (-225)))) (-5 *3 (-640 (-263)))
- (-5 *1 (-261))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1 (-939 (-225)) (-939 (-225)))) (-5 *1 (-263))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 (-481 *5 *6))) (-5 *3 (-481 *5 *6))
- (-14 *5 (-640 (-1169))) (-4 *6 (-452)) (-5 *2 (-1257 *6))
- (-5 *1 (-628 *5 *6)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-114)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))))
-(((*1 *1) (-5 *1 (-55))))
-(((*1 *2)
- (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-417 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-789)) (-4 *4 (-846)) (-4 *6 (-307)) (-5 *2 (-418 *3))
- (-5 *1 (-738 *5 *4 *6 *3)) (-4 *3 (-945 *6 *5 *4)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-407 (-1165 (-316 *3)))) (-4 *3 (-13 (-555) (-846)))
+ (-5 *1 (-1123 *3)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-418 (-1165 *1))) (-5 *1 (-316 *4)) (-5 *3 (-1165 *1))
- (-4 *4 (-452)) (-4 *4 (-555)) (-4 *4 (-846))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-905)) (-5 *2 (-418 (-1165 *1))) (-5 *3 (-1165 *1)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-640 (-1169))) (-4 *4 (-1093))
- (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4))))
- (-5 *1 (-54 *4 *5 *2))
- (-4 *2 (-13 (-430 *5) (-882 *4) (-611 (-888 *4)))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-640 *3)) (-4 *3 (-945 *4 *6 *5)) (-4 *4 (-452))
- (-4 *5 (-846)) (-4 *6 (-789)) (-5 *1 (-983 *4 *5 *6 *3)))))
-(((*1 *1 *1) (-4 *1 (-1054)))
- ((*1 *1 *1 *2 *2)
- (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))))
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
+ ((*1 *2 *3) (-12 (-5 *3 (-967)) (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6)
+ (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-70 APROD)))) (-5 *4 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-752)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-1125 *4 *2))
- (-4 *2 (-13 (-601 (-563) *4) (-10 -7 (-6 -4407) (-6 -4408))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-846)) (-4 *3 (-1208)) (-5 *1 (-1125 *3 *2))
- (-4 *2 (-13 (-601 (-563) *3) (-10 -7 (-6 -4407) (-6 -4408)))))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-1259))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+ (-12 (-5 *2 (-1257 (-1257 (-563)))) (-5 *3 (-917)) (-5 *1 (-466)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-563)) (-5 *1 (-1190 *3)) (-4 *3 (-1045)))))
+ (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-363) (-1193) (-998))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-452)) (-4 *3 (-846)) (-4 *3 (-1034 (-563)))
+ (-4 *3 (-555)) (-5 *1 (-41 *3 *2)) (-4 *2 (-430 *3))
+ (-4 *2
+ (-13 (-363) (-302)
+ (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $))
+ (-15 -2153 ((-1118 *3 (-609 $)) $))
+ (-15 -1692 ($ (-1118 *3 (-609 $))))))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-349)) (-5 *2 (-418 (-1165 (-1165 *4))))
+ (-5 *1 (-1206 *4)) (-5 *3 (-1165 (-1165 *4))))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1165 *1)) (-4 *1 (-1008)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-640 (-294 *4))) (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846))
+ (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))))
+(((*1 *1 *2 *3 *3 *3 *4)
+ (-12 (-4 *4 (-363)) (-4 *3 (-1233 *4)) (-4 *5 (-1233 (-407 *3)))
+ (-4 *1 (-335 *4 *3 *5 *2)) (-4 *2 (-342 *4 *3 *5))))
+ ((*1 *1 *2 *2 *3)
+ (-12 (-5 *3 (-563)) (-4 *2 (-363)) (-4 *4 (-1233 *2))
+ (-4 *5 (-1233 (-407 *4))) (-4 *1 (-335 *2 *4 *5 *6))
+ (-4 *6 (-342 *2 *4 *5))))
+ ((*1 *1 *2 *2)
+ (-12 (-4 *2 (-363)) (-4 *3 (-1233 *2)) (-4 *4 (-1233 (-407 *3)))
+ (-4 *1 (-335 *2 *3 *4 *5)) (-4 *5 (-342 *2 *3 *4))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4)))
+ (-4 *1 (-335 *3 *4 *5 *2)) (-4 *2 (-342 *3 *4 *5))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-413 *4 (-407 *4) *5 *6)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5)) (-4 *3 (-363))
+ (-4 *1 (-335 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-294 (-407 (-948 *5)))) (-5 *4 (-1169))
+ (-4 *5 (-13 (-307) (-846) (-147)))
+ (-5 *2 (-1158 (-640 (-316 *5)) (-640 (-294 (-316 *5)))))
+ (-5 *1 (-1122 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169))
+ (-4 *5 (-13 (-307) (-846) (-147)))
+ (-5 *2 (-1158 (-640 (-316 *5)) (-640 (-294 (-316 *5)))))
+ (-5 *1 (-1122 *5)))))
(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-885 *4 *5)) (-5 *3 (-885 *4 *6)) (-4 *4 (-1093))
- (-4 *5 (-1093)) (-4 *6 (-661 *5)) (-5 *1 (-881 *4 *5 *6)))))
+(((*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
+(((*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3)
+ (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563))
+ (-5 *2 (-1031)) (-5 *1 (-752)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-846)) (-4 *5 (-789))
+ (-4 *6 (-555)) (-4 *7 (-945 *6 *5 *3))
+ (-5 *1 (-462 *5 *3 *6 *7 *2))
+ (-4 *2
+ (-13 (-1034 (-407 (-563))) (-363)
+ (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $))
+ (-15 -2153 (*7 $))))))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *2 (-1149 (-225))) (-5 *1 (-192))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-316 (-225))) (-5 *4 (-640 (-1169)))
- (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-1149 (-225))) (-5 *1 (-300))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1257 (-316 (-225)))) (-5 *4 (-640 (-1169)))
- (-5 *5 (-1087 (-839 (-225)))) (-5 *2 (-1149 (-225))) (-5 *1 (-300)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-316 *3)) (-4 *3 (-555)) (-4 *3 (-846)))))
+ (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-363) (-1193) (-998))))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-609 *4)) (-4 *4 (-846)) (-4 *2 (-846))
- (-5 *1 (-608 *2 *4)))))
+ (-12 (-4 *4 (-555)) (-5 *2 (-1165 *3)) (-5 *1 (-41 *4 *3))
+ (-4 *3
+ (-13 (-363) (-302)
+ (-10 -8 (-15 -2143 ((-1118 *4 (-609 $)) $))
+ (-15 -2153 ((-1118 *4 (-609 $)) $))
+ (-15 -1692 ($ (-1118 *4 (-609 $))))))))))
+(((*1 *2 *3 *3 *3 *4 *5)
+ (-12 (-5 *5 (-640 (-640 (-225)))) (-5 *4 (-225))
+ (-5 *2 (-640 (-939 *4))) (-5 *1 (-1204)) (-5 *3 (-939 *4)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1008)) (-5 *2 (-858)))))
+(((*1 *2 *3 *4 *5 *6 *7 *6)
+ (|partial| -12
+ (-5 *5
+ (-2 (|:| |contp| *3)
+ (|:| -1337 (-640 (-2 (|:| |irr| *10) (|:| -3259 (-563)))))))
+ (-5 *6 (-640 *3)) (-5 *7 (-640 *8)) (-4 *8 (-846)) (-4 *3 (-307))
+ (-4 *10 (-945 *3 *9 *8)) (-4 *9 (-789))
+ (-5 *2
+ (-2 (|:| |polfac| (-640 *10)) (|:| |correct| *3)
+ (|:| |corrfact| (-640 (-1165 *3)))))
+ (-5 *1 (-622 *8 *9 *3 *10)) (-5 *4 (-640 (-1165 *3))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-335 *3 *4 *5 *6)) (-4 *3 (-363)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5)) (-5 *2 (-112)))))
(((*1 *2 *1)
(-12
(-5 *2
@@ -9961,7 +9766,7 @@
(-2 (|:| |var| (-1169))
(|:| |arrayIndex| (-640 (-948 (-563))))
(|:| |rand|
- (-2 (|:| |ints2Floats?| (-112)) (|:| -2474 (-858))))))
+ (-2 (|:| |ints2Floats?| (-112)) (|:| -2473 (-858))))))
(|:| |arrayAssignmentBranch|
(-2 (|:| |var| (-1169)) (|:| |rand| (-858))
(|:| |ints2Floats?| (-112))))
@@ -9969,142 +9774,203 @@
(-2 (|:| |switch| (-1168)) (|:| |thenClause| (-330))
(|:| |elseClause| (-330))))
(|:| |returnBranch|
- (-2 (|:| -3756 (-112))
- (|:| -2619
- (-2 (|:| |ints2Floats?| (-112)) (|:| -2474 (-858))))))
+ (-2 (|:| -1665 (-112))
+ (|:| -2618
+ (-2 (|:| |ints2Floats?| (-112)) (|:| -2473 (-858))))))
(|:| |blockBranch| (-640 (-330)))
(|:| |commentBranch| (-640 (-1151))) (|:| |callBranch| (-1151))
(|:| |forBranch|
- (-2 (|:| -2516 (-1085 (-948 (-563))))
- (|:| |span| (-948 (-563))) (|:| -3359 (-330))))
+ (-2 (|:| -4166 (-1085 (-948 (-563))))
+ (|:| |span| (-948 (-563))) (|:| -3363 (-330))))
(|:| |labelBranch| (-1113))
- (|:| |loopBranch| (-2 (|:| |switch| (-1168)) (|:| -3359 (-330))))
+ (|:| |loopBranch| (-2 (|:| |switch| (-1168)) (|:| -3363 (-330))))
(|:| |commonBranch|
- (-2 (|:| -3348 (-1169)) (|:| |contents| (-640 (-1169)))))
+ (-2 (|:| -3352 (-1169)) (|:| |contents| (-640 (-1169)))))
(|:| |printBranch| (-640 (-858)))))
(-5 *1 (-330)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169))
+ (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-316 *5)))
+ (-5 *1 (-1122 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169)))
+ (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-640 (-316 *5))))
+ (-5 *1 (-1122 *5)))))
+(((*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-112))
+ (-5 *6 (-225)) (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-68 APROD))))
+ (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-73 MSOLVE))))
+ (-5 *2 (-1031)) (-5 *1 (-752)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
+ ((*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-601 *2 *3)) (-4 *3 (-1208)) (-4 *2 (-1093))
- (-4 *2 (-846)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1097)) (-5 *1 (-280)))))
-(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1172))))
- ((*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172))))
- ((*1 *2 *3 *1) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172)))))
-(((*1 *1 *1) (|partial| -4 *1 (-1144))))
-(((*1 *1 *1) (-5 *1 (-1057))))
-(((*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3)
- (-12 (-5 *6 (-640 (-112))) (-5 *7 (-684 (-225)))
- (-5 *8 (-684 (-563))) (-5 *3 (-563)) (-5 *4 (-225)) (-5 *5 (-112))
- (-5 *2 (-1031)) (-5 *1 (-750)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-704 *3)) (-5 *1 (-823 *2 *3)) (-4 *3 (-1045)))))
+ (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2552 *5) (|:| -3311 *2))
+ (-2 (|:| -2552 *5) (|:| -3311 *2))))
+ (-4 *2 (-238 (-3610 *3) (-767))) (-5 *1 (-461 *3 *4 *5 *2 *6 *7))
+ (-4 *5 (-846)) (-4 *7 (-945 *4 *2 (-860 *3))))))
(((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1151)) (-4 *1 (-389)))))
-(((*1 *2)
- (-12 (-4 *2 (-13 (-430 *3) (-998))) (-5 *1 (-276 *3 *2))
- (-4 *3 (-13 (-846) (-555))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-684 *4)) (-5 *3 (-917)) (-4 *4 (-1045))
- (-5 *1 (-1024 *4))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998)))
+ (-5 *1 (-176 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-555)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-363) (-302)
+ (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $))
+ (-15 -2153 ((-1118 *3 (-609 $)) $))
+ (-15 -1692 ($ (-1118 *3 (-609 $)))))))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-555)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-363) (-302)
+ (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $))
+ (-15 -2153 ((-1118 *3 (-609 $)) $))
+ (-15 -1692 ($ (-1118 *3 (-609 $)))))))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-640 (-684 *4))) (-5 *3 (-917)) (-4 *4 (-1045))
- (-5 *1 (-1024 *4)))))
+ (-12 (-5 *3 (-640 *2))
+ (-4 *2
+ (-13 (-363) (-302)
+ (-10 -8 (-15 -2143 ((-1118 *4 (-609 $)) $))
+ (-15 -2153 ((-1118 *4 (-609 $)) $))
+ (-15 -1692 ($ (-1118 *4 (-609 $)))))))
+ (-4 *4 (-555)) (-5 *1 (-41 *4 *2))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-640 (-609 *2)))
+ (-4 *2
+ (-13 (-363) (-302)
+ (-10 -8 (-15 -2143 ((-1118 *4 (-609 $)) $))
+ (-15 -2153 ((-1118 *4 (-609 $)) $))
+ (-15 -1692 ($ (-1118 *4 (-609 $)))))))
+ (-4 *4 (-555)) (-5 *1 (-41 *4 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-563)) (-5 *2 (-640 (-640 (-225)))) (-5 *1 (-1204)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1008)) (-5 *2 (-858)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-767)) (-5 *5 (-640 *3)) (-4 *3 (-307)) (-4 *6 (-846))
+ (-4 *7 (-789)) (-5 *2 (-112)) (-5 *1 (-622 *6 *7 *3 *8))
+ (-4 *8 (-945 *3 *7 *6)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1240 *3 *2)) (-4 *3 (-1045))
- (-4 *2 (-1217 *3)))))
-(((*1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-21)) (-4 *2 (-1208)))))
-(((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))))
-(((*1 *1 *1 *1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-555)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *6)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1031))
- (-5 *1 (-742)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1274 *2 *3)) (-4 *2 (-846)) (-4 *3 (-1045))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1280 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-842)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452))
- (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-449 *3 *4 *5 *6)))))
+ (-12 (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4)))
+ (-5 *2 (-1257 *6)) (-5 *1 (-336 *3 *4 *5 *6))
+ (-4 *6 (-342 *3 *4 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-640 *5) *6))
- (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5))
- (-5 *2 (-640 (-2 (|:| |poly| *6) (|:| -1420 *3))))
- (-5 *1 (-805 *5 *6 *3 *7)) (-4 *3 (-651 *6))
- (-4 *7 (-651 (-407 *6)))))
+ (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169))
+ (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-294 (-316 *5))))
+ (-5 *1 (-1122 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-13 (-307) (-846) (-147)))
+ (-5 *2 (-640 (-294 (-316 *4)))) (-5 *1 (-1122 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-640 *5) *6))
- (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-4 *6 (-1233 *5))
- (-5 *2 (-640 (-2 (|:| |poly| *6) (|:| -1420 (-649 *6 (-407 *6))))))
- (-5 *1 (-808 *5 *6)) (-5 *3 (-649 *6 (-407 *6))))))
+ (-12 (-5 *3 (-294 (-407 (-948 *5)))) (-5 *4 (-1169))
+ (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-294 (-316 *5))))
+ (-5 *1 (-1122 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-294 (-407 (-948 *4))))
+ (-4 *4 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-294 (-316 *4))))
+ (-5 *1 (-1122 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169)))
+ (-4 *5 (-13 (-307) (-846) (-147)))
+ (-5 *2 (-640 (-640 (-294 (-316 *5))))) (-5 *1 (-1122 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-407 (-948 *4))))
+ (-4 *4 (-13 (-307) (-846) (-147)))
+ (-5 *2 (-640 (-640 (-294 (-316 *4))))) (-5 *1 (-1122 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-294 (-407 (-948 *5))))) (-5 *4 (-640 (-1169)))
+ (-4 *5 (-13 (-307) (-846) (-147)))
+ (-5 *2 (-640 (-640 (-294 (-316 *5))))) (-5 *1 (-1122 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-294 (-407 (-948 *4)))))
+ (-4 *4 (-13 (-307) (-846) (-147)))
+ (-5 *2 (-640 (-640 (-294 (-316 *4))))) (-5 *1 (-1122 *4)))))
+(((*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3)
+ (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563))
+ (-5 *2 (-1031)) (-5 *1 (-752)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
+ ((*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
+(((*1 *2 *1)
+ (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172))
+ (-4 *5 (-238 (-3610 *3) (-767)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2552 *2) (|:| -3311 *5))
+ (-2 (|:| -2552 *2) (|:| -3311 *5))))
+ (-4 *2 (-846)) (-5 *1 (-461 *3 *4 *2 *5 *6 *7))
+ (-4 *7 (-945 *4 *5 (-860 *3))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998)))
+ (-5 *1 (-176 *3)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-917)) (-4 *1 (-238 *3 *4)) (-4 *4 (-1045))
+ (-4 *4 (-1208))))
+ ((*1 *1 *2)
+ (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172))
+ (-4 *5 (-238 (-3610 *3) (-767)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2552 *2) (|:| -3311 *5))
+ (-2 (|:| -2552 *2) (|:| -3311 *5))))
+ (-5 *1 (-461 *3 *4 *2 *5 *6 *7)) (-4 *2 (-846))
+ (-4 *7 (-945 *4 *5 (-860 *3)))))
+ ((*1 *2 *2) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204)))))
(((*1 *2 *1)
(-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3))
(-4 *5 (-373 *3)) (-5 *2 (-767))))
((*1 *2 *1)
(-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
(-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-767)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1169)) (-5 *2 (-1 *6 *5)) (-5 *1 (-702 *4 *5 *6))
- (-4 *4 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1188)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-171))))))
-(((*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-817)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-112)))))
+ (-12 (-4 *3 (-1208)) (-5 *2 (-640 *1)) (-4 *1 (-1006 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-4 *6 (-1059 *3 *4 *5)) (-5 *1 (-621 *3 *4 *5 *6 *7 *2))
+ (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *2 (-1102 *3 *4 *5 *6)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4)))
+ (-5 *2 (-1257 *6)) (-5 *1 (-336 *3 *4 *5 *6))
+ (-4 *6 (-342 *3 *4 *5)))))
(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-468))))
((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1258))))
((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1259)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-789))
- (-4 *3 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $))))) (-4 *5 (-555))
- (-5 *1 (-728 *4 *3 *5 *2)) (-4 *2 (-945 (-407 (-948 *5)) *4 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *4 (-1045)) (-4 *5 (-789))
- (-4 *3
- (-13 (-846)
- (-10 -8 (-15 -2220 ((-1169) $))
- (-15 -2518 ((-3 $ "failed") (-1169))))))
- (-5 *1 (-980 *4 *5 *3 *2)) (-4 *2 (-945 (-948 *4) *5 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-640 *6))
- (-4 *6
- (-13 (-846)
- (-10 -8 (-15 -2220 ((-1169) $))
- (-15 -2518 ((-3 $ "failed") (-1169))))))
- (-4 *4 (-1045)) (-4 *5 (-789)) (-5 *1 (-980 *4 *5 *6 *2))
- (-4 *2 (-945 (-948 *4) *5 *6)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-452)) (-4 *4 (-555))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| -4354 *4))) (-5 *1 (-965 *4 *3))
- (-4 *3 (-1233 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-917)) (-5 *1 (-782)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1151)) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
- ((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-263)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-767)) (-5 *2 (-112))))
- ((*1 *2 *3 *3)
- (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-1093))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1093)) (-5 *2 (-112))
- (-5 *1 (-1209 *3)))))
+(((*1 *2 *2 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
+ (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
+ ((*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
+(((*1 *2 *3 *3 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-752)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-14 *5 (-640 (-1169))) (-4 *2 (-172))
+ (-4 *4 (-238 (-3610 *5) (-767)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2552 *3) (|:| -3311 *4))
+ (-2 (|:| -2552 *3) (|:| -3311 *4))))
+ (-5 *1 (-461 *5 *2 *3 *4 *6 *7)) (-4 *3 (-846))
+ (-4 *7 (-945 *2 *4 (-860 *5))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998)))
+ (-5 *1 (-176 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-225)) (-5 *5 (-563)) (-5 *2 (-1203 *3))
+ (-5 *1 (-786 *3)) (-4 *3 (-970))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-112))
+ (-5 *1 (-1203 *2)) (-4 *2 (-970)))))
(((*1 *2 *1)
(-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3))
(-4 *5 (-373 *3)) (-5 *2 (-767))))
((*1 *2 *1)
(-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
(-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-767)))))
-(((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-14 *4 (-640 (-1169))) (-4 *2 (-172))
- (-4 *3 (-238 (-3608 *4) (-767)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2555 *5) (|:| -1654 *3))
- (-2 (|:| -2555 *5) (|:| -1654 *3))))
- (-5 *1 (-461 *4 *2 *5 *3 *6 *7)) (-4 *5 (-846))
- (-4 *7 (-945 *2 *3 (-860 *4))))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-5 *2 (-563)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-555)) (-5 *1 (-620 *2 *3)) (-4 *3 (-1233 *2)))))
(((*1 *1 *2 *2) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208))))
((*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1151)) (-5 *1 (-985))))
((*1 *1 *2 *3)
@@ -10112,139 +9978,89 @@
(-5 *1 (-1085 *4)))))
(((*1 *2 *3 *3)
(-12 (-5 *2 (-1 (-379))) (-5 *1 (-1036)) (-5 *3 (-379)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1169)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-697 *3 *5 *6 *7))
- (-4 *3 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208))
- (-4 *7 (-1208))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169)) (-5 *2 (-1 *6 *5)) (-5 *1 (-702 *3 *5 *6))
- (-4 *3 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-2 (|:| |k| (-667 *3)) (|:| |c| *4))))
- (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846))
- (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-555) (-846) (-1034 (-563)))) (-4 *5 (-430 *4))
- (-5 *2
- (-3 (|:| |overq| (-1165 (-407 (-563))))
- (|:| |overan| (-1165 (-48))) (|:| -4244 (-112))))
- (-5 *1 (-435 *4 *5 *3)) (-4 *3 (-1233 *5)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-640 (-407 *6))) (-5 *3 (-407 *6))
- (-4 *6 (-1233 *5)) (-4 *5 (-13 (-363) (-147) (-1034 (-563))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-567 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-128)))))
+ (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330))
+ (-5 *1 (-332)))))
+(((*1 *2 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
+ (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-752)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
+ ((*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-14 *4 (-640 (-1169))) (-4 *2 (-172))
+ (-4 *3 (-238 (-3610 *4) (-767)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2552 *5) (|:| -3311 *3))
+ (-2 (|:| -2552 *5) (|:| -3311 *3))))
+ (-5 *1 (-461 *4 *2 *5 *3 *6 *7)) (-4 *5 (-846))
+ (-4 *7 (-945 *2 *3 (-860 *4))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998)))
+ (-5 *1 (-176 *3)))))
(((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-888 *3)) (-4 *3 (-1093))))
((*1 *2 *1) (-12 (-4 *1 (-1114 *3)) (-4 *3 (-1208)) (-5 *2 (-767)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-4 *1 (-57 *4 *2 *5)) (-4 *4 (-1208))
- (-4 *5 (-373 *4)) (-4 *2 (-373 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-4 *1 (-1048 *4 *5 *6 *2 *7)) (-4 *6 (-1045))
- (-4 *7 (-238 *4 *6)) (-4 *2 (-238 *5 *6)))))
-(((*1 *1) (-5 *1 (-819))))
-(((*1 *2 *1) (-12 (-4 *1 (-349)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-5 *2 (-112))
- (-5 *1 (-357 *4)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3)) (-4 *3 (-970)))))
(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| -2311 *3) (|:| |gap| (-767)) (|:| -3490 (-778 *3))
- (|:| -1972 (-778 *3))))
- (-5 *1 (-778 *3)) (-4 *3 (-1045))))
- ((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846))
- (-5 *2
- (-2 (|:| -2311 *1) (|:| |gap| (-767)) (|:| -3490 *1)
- (|:| -1972 *1)))
- (-4 *1 (-1059 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *2
- (-2 (|:| -2311 *1) (|:| |gap| (-767)) (|:| -3490 *1)
- (|:| -1972 *1)))
- (-4 *1 (-1059 *3 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-316 (-225)))) (-5 *4 (-767))
- (-5 *2 (-684 (-225))) (-5 *1 (-267)))))
+ (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-4 *3 (-1093))
+ (-5 *2 (-112)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-1169))
+ (-4 *4 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-619 *4 *2)) (-4 *2 (-13 (-1193) (-955) (-29 *4))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169))
- (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-316 *5)))
- (-5 *1 (-1122 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169)))
- (-4 *5 (-13 (-307) (-846) (-147))) (-5 *2 (-640 (-640 (-316 *5))))
- (-5 *1 (-1122 *5)))))
-(((*1 *2 *3 *4 *4 *3)
- (|partial| -12 (-5 *4 (-609 *3))
- (-4 *3 (-13 (-430 *5) (-27) (-1193)))
- (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
- (-5 *2 (-2 (|:| -3646 *3) (|:| |coeff| *3)))
- (-5 *1 (-565 *5 *3 *6)) (-4 *6 (-1093)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-32 *3 *4))
- (-4 *4 (-430 *3))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-767)) (-5 *1 (-114))))
- ((*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-114))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *4))
- (-4 *4 (-430 *3))))
- ((*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-114)) (-5 *1 (-163))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *4))
- (-4 *4 (-13 (-430 *3) (-998)))))
- ((*1 *2 *2) (-12 (-5 *2 (-114)) (-5 *1 (-301 *3)) (-4 *3 (-302))))
- ((*1 *2 *2) (-12 (-4 *1 (-302)) (-5 *2 (-114))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *4 (-846)) (-5 *1 (-429 *3 *4))
- (-4 *3 (-430 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *4))
- (-4 *4 (-430 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-114)) (-5 *1 (-609 *3)) (-4 *3 (-846))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *4))
- (-4 *4 (-13 (-430 *3) (-998) (-1193)))))
- ((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1015)))))
-(((*1 *1 *1) (-4 *1 (-1137))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1034 (-563))) (-4 *1 (-302)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1208)) (-4 *3 (-373 *2))
- (-4 *4 (-373 *2))))
- ((*1 *1 *1 *2)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-601 *3 *2)) (-4 *3 (-1093))
- (-4 *2 (-1208)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-225)) (-5 *5 (-563)) (-5 *2 (-1203 *3))
- (-5 *1 (-786 *3)) (-4 *3 (-970))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-112))
- (-5 *1 (-1203 *2)) (-4 *2 (-970)))))
+ (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330))
+ (-5 *1 (-332)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
+ (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))))
+(((*1 *2 *3 *4 *3 *5 *5 *3 *5 *4)
+ (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563))
+ (-5 *2 (-1031)) (-5 *1 (-752)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
+ ((*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
+(((*1 *2 *3 *2 *4 *5)
+ (-12 (-5 *2 (-640 *3)) (-5 *5 (-917)) (-4 *3 (-1233 *4))
+ (-4 *4 (-307)) (-5 *1 (-460 *4 *3)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-846)) (-5 *1 (-1179 *3)))))
-(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467))))
- ((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467))))
- ((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *2 (-555)) (-5 *1 (-965 *2 *3)) (-4 *3 (-1233 *2)))))
+ (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998)))
+ (-5 *1 (-176 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3)) (-4 *3 (-970)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-4 *3 (-1093))
+ (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *3)
+ (|partial| -12
+ (-4 *4 (-13 (-147) (-27) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-4 *5 (-1233 *4)) (-5 *2 (-1165 (-407 *5))) (-5 *1 (-612 *4 *5))
+ (-5 *3 (-407 *5))))
+ ((*1 *2 *3 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 (-418 *6) *6)) (-4 *6 (-1233 *5))
+ (-4 *5 (-13 (-147) (-27) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-5 *2 (-1165 (-407 *6))) (-5 *1 (-612 *5 *6)) (-5 *3 (-407 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330))
+ (-5 *1 (-332)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
+ (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))))
+(((*1 *2 *3 *4 *3 *4 *4 *4)
+ (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031))
+ (-5 *1 (-752)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-5 *2 (-954 (-1113)))
- (-5 *1 (-346 *4)))))
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
+ ((*1 *2) (-12 (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *6 (-917)) (-4 *5 (-307)) (-4 *3 (-1233 *5))
+ (-5 *2 (-2 (|:| |plist| (-640 *3)) (|:| |modulo| *5)))
+ (-5 *1 (-460 *5 *3)) (-5 *4 (-640 *3)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-307)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3))
- (-5 *1 (-1117 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
+ (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998)))
+ (-5 *1 (-176 *3)))))
(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-137))))
((*1 *2 *1) (-12 (-5 *2 (-1207)) (-5 *1 (-156))))
((*1 *2 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208))))
@@ -10258,63 +10074,34 @@
(-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3))))))
((*1 *2 *1)
(-12 (-4 *2 (-1093)) (-5 *1 (-1158 *3 *2)) (-4 *3 (-1093)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-349)) (-4 *4 (-329 *3)) (-4 *5 (-1233 *4))
- (-5 *1 (-773 *3 *4 *5 *2 *6)) (-4 *2 (-1233 *5)) (-14 *6 (-917))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-767)) (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-4 *3 (-368))))
- ((*1 *1 *1) (-12 (-4 *1 (-1276 *2)) (-4 *2 (-363)) (-4 *2 (-368)))))
-(((*1 *2 *1 *3 *3 *4)
- (-12 (-5 *3 (-1 (-858) (-858) (-858))) (-5 *4 (-563)) (-5 *2 (-858))
- (-5 *1 (-644 *5 *6 *7)) (-4 *5 (-1093)) (-4 *6 (-23)) (-14 *7 *6)))
- ((*1 *2 *1 *2)
- (-12 (-5 *2 (-858)) (-5 *1 (-850 *3 *4 *5)) (-4 *3 (-1045))
- (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-858))))
- ((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-858))))
- ((*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-858))))
- ((*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858))))
- ((*1 *2 *1 *2)
- (-12 (-5 *2 (-858)) (-5 *1 (-1165 *3)) (-4 *3 (-1045)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1165 *1)) (-4 *1 (-1008)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3)) (-4 *3 (-970)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-767)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
- (-4 *4 (-1045)))))
+ (-12 (-5 *2 (-640 *1)) (|has| *1 (-6 -4409)) (-4 *1 (-1006 *3))
+ (-4 *3 (-1208)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-609 *4)) (-4 *4 (-846)) (-4 *2 (-846))
+ (-5 *1 (-608 *2 *4)))))
(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-734)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-331 *3)) (-4 *3 (-846)))))
(((*1 *2 *3)
- (-12 (|has| *6 (-6 -4408)) (-4 *4 (-363)) (-4 *5 (-373 *4))
- (-4 *6 (-373 *4)) (-5 *2 (-640 *6)) (-5 *1 (-521 *4 *5 *6 *3))
- (-4 *3 (-682 *4 *5 *6))))
- ((*1 *2 *3)
- (-12 (|has| *9 (-6 -4408)) (-4 *4 (-555)) (-4 *5 (-373 *4))
- (-4 *6 (-373 *4)) (-4 *7 (-988 *4)) (-4 *8 (-373 *7))
- (-4 *9 (-373 *7)) (-5 *2 (-640 *6))
- (-5 *1 (-522 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-682 *4 *5 *6))
- (-4 *10 (-682 *7 *8 *9))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-4 *3 (-555)) (-5 *2 (-640 *5))))
+ (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
+ (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4))))
+ ((*1 *2 *3 *3 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
+ (-5 *2 (-640 *3)) (-5 *1 (-1121 *4 *3)) (-4 *4 (-1233 *3)))))
+(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-752)))))
+(((*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *4 (-172)) (-4 *5 (-373 *4))
- (-4 *6 (-373 *4)) (-5 *2 (-640 *6)) (-5 *1 (-683 *4 *5 *6 *3))
- (-4 *3 (-682 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-555))
- (-5 *2 (-640 *7)))))
-(((*1 *2 *1)
- (-12 (-4 *4 (-1093)) (-5 *2 (-885 *3 *4)) (-5 *1 (-881 *3 *4 *5))
- (-4 *3 (-1093)) (-4 *5 (-661 *4)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1272 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172))
- (-5 *1 (-659 *3 *4))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-659 *3 *4)) (-5 *1 (-1277 *3 *4))
- (-4 *3 (-846)) (-4 *4 (-172)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
- (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 *5)) (-4 *5 (-1233 *3)) (-4 *3 (-307))
+ (-5 *2 (-112)) (-5 *1 (-455 *3 *5)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998)))
+ (-5 *1 (-176 *3)))))
(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-137))))
((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-156))))
((*1 *2 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208))))
@@ -10328,140 +10115,128 @@
(-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3))))))
((*1 *2 *1)
(-12 (-4 *2 (-1093)) (-5 *1 (-1158 *2 *3)) (-4 *3 (-1093)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-901 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1045)) (-5 *1 (-890 *2 *3)) (-4 *2 (-1233 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))))
(((*1 *2 *1)
- (-12 (-4 *4 (-1093)) (-5 *2 (-112)) (-5 *1 (-881 *3 *4 *5))
- (-4 *3 (-1093)) (-4 *5 (-661 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-885 *3 *4)) (-4 *3 (-1093))
- (-4 *4 (-1093)))))
+ (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *1 (-1203 *3))
+ (-4 *3 (-970)))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-394)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-1006 *2)) (-4 *2 (-1208)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-418 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1233 (-48)))))
- ((*1 *2 *3 *1)
- (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3))))
- (-5 *1 (-121 *3)) (-4 *3 (-846))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-584 *4)) (-4 *4 (-13 (-29 *3) (-1193)))
- (-4 *3 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563))))
- (-5 *1 (-582 *3 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-584 (-407 (-948 *3))))
- (-4 *3 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563))))
- (-5 *1 (-587 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-363))
- (-5 *2 (-2 (|:| -2377 *3) (|:| |special| *3))) (-5 *1 (-723 *5 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1257 *5)) (-4 *5 (-363)) (-4 *5 (-1045))
- (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5))
- (-5 *3 (-640 (-684 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1257 (-1257 *5))) (-4 *5 (-363)) (-4 *5 (-1045))
- (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5))
- (-5 *3 (-640 (-684 *5)))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-141)) (-5 *2 (-640 *1)) (-4 *1 (-1137))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-144)) (-5 *2 (-640 *1)) (-4 *1 (-1137)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-684 (-563))) (-5 *3 (-640 (-563))) (-5 *1 (-1103)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-147))
- (-4 *3 (-307)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *1 (-973 *3 *4 *5 *6)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-684 *4)) (-4 *4 (-1045)) (-5 *1 (-1135 *3 *4))
- (-14 *3 (-767)))))
-(((*1 *2 *1 *3 *4 *4 *5)
- (-12 (-5 *3 (-939 (-225))) (-5 *4 (-870)) (-5 *5 (-917))
- (-5 *2 (-1262)) (-5 *1 (-468))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-939 (-225))) (-5 *2 (-1262)) (-5 *1 (-468))))
- ((*1 *2 *1 *3 *4 *4 *5)
- (-12 (-5 *3 (-640 (-939 (-225)))) (-5 *4 (-870)) (-5 *5 (-917))
- (-5 *2 (-1262)) (-5 *1 (-468)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-330)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
- (-5 *2
- (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563))
- (|:| |success| (-112))))
- (-5 *1 (-785)) (-5 *5 (-563)))))
+ (-12 (-5 *2 (-609 *4)) (-5 *1 (-608 *3 *4)) (-4 *3 (-846))
+ (-4 *4 (-846)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-1085 (-948 (-563)))) (-5 *3 (-948 (-563)))
+ (-5 *1 (-330))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-1085 (-948 (-563)))) (-5 *1 (-330)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
- (-5 *2 (-684 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-684 *4)) (-5 *1 (-416 *3 *4))
- (-4 *3 (-417 *4))))
- ((*1 *2) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))))
-(((*1 *2)
- (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5)))
- (-5 *2 (-767)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *3 (-342 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-767)))))
-(((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *3 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5))
- (-4 *5 (-13 (-363) (-147) (-1034 (-563))))
- (-5 *2
- (-2 (|:| |a| *6) (|:| |b| (-407 *6)) (|:| |h| *6)
- (|:| |c1| (-407 *6)) (|:| |c2| (-407 *6)) (|:| -2288 *6)))
- (-5 *1 (-1012 *5 *6)) (-5 *3 (-407 *6)))))
+ (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
+ (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4))))
+ ((*1 *2 *3 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
+ (-5 *2 (-640 *3)) (-5 *1 (-1121 *4 *3)) (-4 *4 (-1233 *3)))))
+(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-752)))))
+(((*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1257 (-640 *3))) (-4 *4 (-307))
+ (-5 *2 (-640 *3)) (-5 *1 (-455 *4 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-109))) (-5 *1 (-175)))))
+(((*1 *2 *1) (-12 (-5 *1 (-1203 *2)) (-4 *2 (-970)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-545))
+ (-5 *2 (-407 (-563)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-418 *3)) (-4 *3 (-545))
+ (-4 *3 (-555))))
+ ((*1 *2 *1) (|partial| -12 (-4 *1 (-545)) (-5 *2 (-407 (-563)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-793 *3)) (-4 *3 (-172)) (-4 *3 (-545))
+ (-5 *2 (-407 (-563)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-829 *3)) (-4 *3 (-545))
+ (-4 *3 (-1093))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-839 *3)) (-4 *3 (-545))
+ (-4 *3 (-1093))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-993 *3)) (-4 *3 (-172)) (-4 *3 (-545))
+ (-5 *2 (-407 (-563)))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-407 (-563))) (-5 *1 (-1004 *3))
+ (-4 *3 (-1034 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-1193))))
+ ((*1 *2 *1) (-12 (-5 *1 (-331 *2)) (-4 *2 (-846))))
+ ((*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-609 *3)) (-4 *3 (-846)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-330)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563)))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))))
+ (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
+ (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
+ (-5 *2 (-640 *3)) (-5 *1 (-1121 *4 *3)) (-4 *4 (-1233 *3)))))
+(((*1 *2 *3 *4 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-169 (-225)))) (-5 *2 (-1031))
+ (-5 *1 (-752)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1045)) (-4 *5 (-1233 *4)) (-5 *2 (-1 *6 (-640 *6)))
- (-5 *1 (-1251 *4 *5 *3 *6)) (-4 *3 (-651 *5)) (-4 *6 (-1248 *4)))))
-(((*1 *1)
- (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767))
- (-4 *4 (-172)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-407 (-563)))
- (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-277 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))))
+ (-12 (-5 *3 (-640 (-917))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-767)) (-4 *4 (-307)) (-4 *6 (-1233 *4))
+ (-5 *2 (-1257 (-640 *6))) (-5 *1 (-455 *4 *6)) (-5 *5 (-640 *6)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-175)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
+ (-5 *1 (-984 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-5 *2 (-112))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
+ (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))))
(((*1 *2 *3 *4)
(-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4)))
(-5 *1 (-701 *3 *4)) (-4 *3 (-1208)) (-4 *4 (-1208)))))
-(((*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-363))
- (-5 *2 (-2 (|:| -2377 (-418 *3)) (|:| |special| (-418 *3))))
- (-5 *1 (-723 *5 *3)))))
-(((*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-165 *3 *2)) (-4 *3 (-166 *2))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-418 *3)) (-4 *3 (-545)) (-4 *3 (-555))))
+ ((*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-793 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-829 *3)) (-4 *3 (-545)) (-4 *3 (-1093))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-545)) (-4 *3 (-1093))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-993 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-112))))
((*1 *2 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *2 *4)) (-4 *4 (-1233 *2))
- (-4 *2 (-172))))
- ((*1 *2)
- (-12 (-4 *4 (-1233 *2)) (-4 *2 (-172)) (-5 *1 (-408 *3 *2 *4))
- (-4 *3 (-409 *2 *4))))
- ((*1 *2) (-12 (-4 *1 (-409 *2 *3)) (-4 *3 (-1233 *2)) (-4 *2 (-172))))
- ((*1 *2)
- (-12 (-4 *3 (-1233 *2)) (-5 *2 (-563)) (-5 *1 (-764 *3 *4))
- (-4 *4 (-409 *2 *3))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *2 (-846)) (-4 *3 (-172))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1004 *3)) (-4 *3 (-1034 (-407 (-563)))))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-1169)) (-5 *1 (-609 *3)) (-4 *3 (-846)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-330)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *5 *5))
+ (-4 *5 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
+ (-5 *2
+ (-2 (|:| |solns| (-640 *5))
+ (|:| |maps| (-640 (-2 (|:| |arg| *5) (|:| |res| *5))))))
+ (-5 *1 (-1121 *3 *5)) (-4 *3 (-1233 *5)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-112)) (-5 *5 (-684 (-169 (-225))))
+ (-5 *2 (-1031)) (-5 *1 (-751)))))
+(((*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
((*1 *2 *3)
- (-12 (-4 *2 (-555)) (-5 *1 (-965 *2 *3)) (-4 *3 (-1233 *2))))
- ((*1 *2 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-172)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-481 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045))
- (-5 *2 (-948 *5)) (-5 *1 (-940 *4 *5)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789))
- (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879)) (-5 *3 (-563)))))
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-307))
+ (-5 *2 (-767)) (-5 *1 (-455 *5 *3)))))
(((*1 *2 *3 *1)
(-12 (-5 *3 (-1281 *4 *2)) (-4 *1 (-374 *4 *2)) (-4 *4 (-846))
(-4 *2 (-172))))
@@ -10472,7 +10247,8 @@
(-4 *2 (-1045))))
((*1 *2 *1 *3)
(-12 (-4 *2 (-1045)) (-5 *1 (-1280 *2 *3)) (-4 *3 (-842)))))
-(((*1 *1 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-1149 *2)) (-4 *2 (-307)) (-5 *1 (-174 *2)))))
(((*1 *2 *1 *3 *3 *2)
(-12 (-5 *3 (-563)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1208))
(-4 *4 (-373 *2)) (-4 *5 (-373 *2))))
@@ -10504,14 +10280,14 @@
(-12 (-5 *3 (-1169)) (-5 *2 (-245 (-1151))) (-5 *1 (-214 *4))
(-4 *4
(-13 (-846)
- (-10 -8 (-15 -2309 ((-1151) $ *3)) (-15 -1463 ((-1262) $))
- (-15 -2807 ((-1262) $)))))))
+ (-10 -8 (-15 -2308 ((-1151) $ *3)) (-15 -1463 ((-1262) $))
+ (-15 -1651 ((-1262) $)))))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-985)) (-5 *1 (-214 *3))
(-4 *3
(-13 (-846)
- (-10 -8 (-15 -2309 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $))
- (-15 -2807 ((-1262) $)))))))
+ (-10 -8 (-15 -2308 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $))
+ (-15 -1651 ((-1262) $)))))))
((*1 *2 *1 *3)
(-12 (-5 *3 "count") (-5 *2 (-767)) (-5 *1 (-245 *4)) (-4 *4 (-846))))
((*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-245 *3)) (-4 *3 (-846))))
@@ -10597,98 +10373,115 @@
(-12 (-5 *2 "rest") (-4 *1 (-1245 *3)) (-4 *3 (-1208))))
((*1 *2 *1 *3)
(-12 (-5 *3 "first") (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858))))
- ((*1 *1 *1) (-5 *1 (-858))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-555))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-555)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-640 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563))))))
- (-5 *2 (-640 (-407 (-563)))) (-5 *1 (-1016 *4))
- (-4 *4 (-1233 (-563))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1))
- (-4 *1 (-1059 *3 *4 *5)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1113)) (-5 *2 (-112)) (-5 *1 (-817)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045))
- (-5 *2 (-640 (-640 (-640 (-939 *3))))))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9))
+ (-4 *9 (-1059 *6 *7 *8)) (-4 *6 (-555)) (-4 *7 (-789))
+ (-4 *8 (-846)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2635 (-640 *9))))
+ (-5 *3 (-640 *9)) (-4 *1 (-1201 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1059 *5 *6 *7))
+ (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-5 *2 (-2 (|:| |bas| *1) (|:| -2635 (-640 *8))))
+ (-5 *3 (-640 *8)) (-4 *1 (-1201 *5 *6 *7 *8)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-364 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093))
- (-5 *2 (-1151)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-640 (-640 (-640 *4)))) (-5 *3 (-640 *4)) (-4 *4 (-846))
- (-5 *1 (-1179 *4)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-716)) (-5 *2 (-917))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-718)) (-5 *2 (-767)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-5 *2 (-112))))
+ (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-545))
+ (-5 *2 (-407 (-563)))))
((*1 *2 *1)
- (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789))
- (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-316 *3)) (-4 *3 (-13 (-1045) (-846)))
- (-5 *1 (-223 *3 *4)) (-14 *4 (-640 (-1169))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-648 (-407 *6))) (-5 *4 (-1 (-640 *5) *6))
- (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-4 *6 (-1233 *5)) (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-648 (-407 *7))) (-5 *4 (-1 (-640 *6) *7))
- (-5 *5 (-1 (-418 *7) *7))
- (-4 *6 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-4 *7 (-1233 *6)) (-5 *2 (-640 (-407 *7))) (-5 *1 (-808 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-649 *6 (-407 *6))) (-5 *4 (-1 (-640 *5) *6))
- (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-4 *6 (-1233 *5)) (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-649 *7 (-407 *7))) (-5 *4 (-1 (-640 *6) *7))
- (-5 *5 (-1 (-418 *7) *7))
- (-4 *6 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-4 *7 (-1233 *6)) (-5 *2 (-640 (-407 *7))) (-5 *1 (-808 *6 *7))))
+ (-12 (-5 *2 (-407 (-563))) (-5 *1 (-418 *3)) (-4 *3 (-545))
+ (-4 *3 (-555))))
+ ((*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-407 (-563)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-793 *3)) (-4 *3 (-172)) (-4 *3 (-545))
+ (-5 *2 (-407 (-563)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-407 (-563))) (-5 *1 (-829 *3)) (-4 *3 (-545))
+ (-4 *3 (-1093))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-407 (-563))) (-5 *1 (-839 *3)) (-4 *3 (-545))
+ (-4 *3 (-1093))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-993 *3)) (-4 *3 (-172)) (-4 *3 (-545))
+ (-5 *2 (-407 (-563)))))
((*1 *2 *3)
- (-12 (-5 *3 (-648 (-407 *5))) (-4 *5 (-1233 *4)) (-4 *4 (-27))
- (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-5 *2 (-640 (-407 *5))) (-5 *1 (-808 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-648 (-407 *6))) (-5 *4 (-1 (-418 *6) *6))
- (-4 *6 (-1233 *5)) (-4 *5 (-27))
- (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6))))
+ (-12 (-5 *2 (-407 (-563))) (-5 *1 (-1004 *3)) (-4 *3 (-1034 *2)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-607 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093))
+ (-5 *2 (-112)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-330)))))
+(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
+(((*1 *2 *3 *2)
+ (|partial| -12 (-5 *2 (-1257 *4)) (-5 *3 (-684 *4)) (-4 *4 (-363))
+ (-5 *1 (-662 *4))))
+ ((*1 *2 *3 *2)
+ (|partial| -12 (-4 *4 (-363))
+ (-4 *5 (-13 (-373 *4) (-10 -7 (-6 -4409))))
+ (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4409))))
+ (-5 *1 (-663 *4 *5 *2 *3)) (-4 *3 (-682 *4 *5 *2))))
+ ((*1 *2 *3 *2 *4 *5)
+ (|partial| -12 (-5 *4 (-640 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-363))
+ (-5 *1 (-810 *2 *3)) (-4 *3 (-651 *2))))
((*1 *2 *3)
- (-12 (-5 *3 (-649 *5 (-407 *5))) (-4 *5 (-1233 *4)) (-4 *4 (-27))
- (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-5 *2 (-640 (-407 *5))) (-5 *1 (-808 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-649 *6 (-407 *6))) (-5 *4 (-1 (-418 *6) *6))
- (-4 *6 (-1233 *5)) (-4 *5 (-27))
- (-4 *5 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-5 *2 (-640 (-407 *6))) (-5 *1 (-808 *5 *6)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -1994 (-379)) (|:| -3348 (-1151))
- (|:| |explanations| (-640 (-1151)))))
- (-5 *2 (-1031)) (-5 *1 (-305))))
+ (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
+ (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-112)) (-5 *5 (-684 (-225)))
+ (-5 *2 (-1031)) (-5 *1 (-751)))))
+(((*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
+(((*1 *2)
+ (|partial| -12 (-4 *3 (-555)) (-4 *3 (-172))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -4013 (-640 *1))))
+ (-4 *1 (-367 *3))))
+ ((*1 *2)
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-453 *3 *4 *5 *6))
+ (|:| -4013 (-640 (-453 *3 *4 *5 *6)))))
+ (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-917))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-640 *6)))))
+(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1002)))))
+(((*1 *2 *1)
(-12
- (-5 *3
- (-2 (|:| -1994 (-379)) (|:| -3348 (-1151))
- (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))))
- (-5 *2 (-1031)) (-5 *1 (-305)))))
+ (-5 *2
+ (-640
+ (-2
+ (|:| -2387
+ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (|:| -2556
+ (-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| (-1149 (-225)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -4166
+ (-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 (-558))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-601 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1208))
+ (-5 *2 (-640 *4)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-114))))
((*1 *2 *2 *3)
(-12 (-5 *3 (-1151)) (-4 *4 (-846)) (-5 *1 (-925 *4 *2))
@@ -10696,29 +10489,50 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-1169)) (-5 *4 (-1151)) (-5 *2 (-316 (-563)))
(-5 *1 (-926)))))
+(((*1 *1 *2) (-12 (-5 *2 (-316 (-169 (-379)))) (-5 *1 (-330))))
+ ((*1 *1 *2) (-12 (-5 *2 (-316 (-563))) (-5 *1 (-330))))
+ ((*1 *1 *2) (-12 (-5 *2 (-316 (-379))) (-5 *1 (-330))))
+ ((*1 *1 *2) (-12 (-5 *2 (-316 (-689))) (-5 *1 (-330))))
+ ((*1 *1 *2) (-12 (-5 *2 (-316 (-696))) (-5 *1 (-330))))
+ ((*1 *1 *2) (-12 (-5 *2 (-316 (-694))) (-5 *1 (-330))))
+ ((*1 *1) (-5 *1 (-330))))
+(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1257 (-640 (-2 (|:| -2619 *4) (|:| -2555 (-1113))))))
- (-4 *4 (-349)) (-5 *2 (-1262)) (-5 *1 (-528 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-449 *4 *5 *6 *2)))))
-(((*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-696))))
- ((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-696)))))
-(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-445 *3)) (-4 *3 (-1045)))))
-(((*1 *1 *2 *3 *4)
- (-12
- (-5 *3
- (-640
- (-2 (|:| |scalar| (-407 (-563))) (|:| |coeff| (-1165 *2))
- (|:| |logand| (-1165 *2)))))
- (-5 *4 (-640 (-2 (|:| |integrand| *2) (|:| |intvar| *2))))
- (-4 *2 (-363)) (-5 *1 (-584 *2)))))
+ (-12 (-5 *3 (-640 *6)) (-5 *4 (-640 (-1149 *7))) (-4 *6 (-846))
+ (-4 *7 (-945 *5 (-531 *6) *6)) (-4 *5 (-1045))
+ (-5 *2 (-1 (-1149 *7) *7)) (-5 *1 (-1119 *5 *6 *7)))))
+(((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7)
+ (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))))
+ (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-751))))
+ ((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8)
+ (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))))
+ (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-388))
+ (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-751)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-307))
+ (-5 *1 (-912 *3 *4 *5 *2)) (-4 *2 (-945 *5 *3 *4))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1165 *6)) (-4 *6 (-945 *5 *3 *4)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *5 (-307)) (-5 *1 (-912 *3 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *6 *4 *5))
+ (-5 *1 (-912 *4 *5 *6 *2)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-4 *6 (-307)))))
(((*1 *2)
- (-12 (-5 *2 (-767)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-767)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))))
+ (|partial| -12 (-4 *3 (-555)) (-4 *3 (-172))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -4013 (-640 *1))))
+ (-4 *1 (-367 *3))))
+ ((*1 *2)
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-453 *3 *4 *5 *6))
+ (|:| -4013 (-640 (-453 *3 *4 *5 *6)))))
+ (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-917))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
(((*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1 (-379))) (-5 *1 (-1036)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-917)) (-4 *1 (-740 *3)) (-4 *3 (-172)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-875 (-1 (-225) (-225)))) (-5 *4 (-1087 (-379)))
(-5 *5 (-640 (-263))) (-5 *2 (-1126 (-225))) (-5 *1 (-255))))
@@ -10772,117 +10586,128 @@
(-12 (-5 *3 (-878 *5)) (-5 *4 (-1085 (-379)))
(-4 *5 (-13 (-611 (-536)) (-1093))) (-5 *2 (-1126 (-225)))
(-5 *1 (-259 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-263))))
- ((*1 *1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-263)))))
-(((*1 *2)
- (|partial| -12 (-4 *3 (-555)) (-4 *3 (-172))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -4315 (-640 *1))))
- (-4 *1 (-367 *3))))
- ((*1 *2)
- (|partial| -12
- (-5 *2
- (-2 (|:| |particular| (-453 *3 *4 *5 *6))
- (|:| -4315 (-640 (-453 *3 *4 *5 *6)))))
- (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-917))
- (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
- (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2
- (-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))))
- (-5 *1 (-205)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-552)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))
+ (-5 *2 (-2 (|:| -1442 (-640 *6)) (|:| -3409 (-640 *6)))))))
+(((*1 *2 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-1002)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-601 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1208))
+ (-5 *2 (-112)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-5 *1 (-330)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 (-563)))
- (-5 *2 (-1257 (-407 (-563)))) (-5 *1 (-1284 *4)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-640 (-640 *7)))
- (-5 *1 (-448 *4 *5 *6 *7)) (-5 *3 (-640 *7))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789))
- (-4 *7 (-846)) (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-640 (-640 *8)))
- (-5 *1 (-448 *5 *6 *7 *8)) (-5 *3 (-640 *8))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-640 (-640 *7)))
- (-5 *1 (-448 *4 *5 *6 *7)) (-5 *3 (-640 *7))))
+ (-12 (-4 *5 (-307)) (-4 *6 (-373 *5)) (-4 *4 (-373 *5))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4013 (-640 *4))))
+ (-5 *1 (-1117 *5 *6 *4 *3)) (-4 *3 (-682 *5 *6 *4)))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3)
+ (-12 (-5 *3 (-563)) (-5 *5 (-112)) (-5 *6 (-684 (-225)))
+ (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-751)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-418 *2)) (-4 *2 (-307)) (-5 *1 (-910 *2))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-307) (-147))) (-4 *6 (-789))
- (-4 *7 (-846)) (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-640 (-640 *8)))
- (-5 *1 (-448 *5 *6 *7 *8)) (-5 *3 (-640 *8)))))
-(((*1 *2)
- (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
- (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262))
- (-5 *1 (-1066 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
- (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-1262))
- (-5 *1 (-1101 *3 *4 *5 *6 *7)) (-4 *7 (-1065 *3 *4 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-555)) (-5 *1 (-41 *3 *2))
- (-4 *2
- (-13 (-363) (-302)
- (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $))
- (-15 -2154 ((-1118 *3 (-609 $)) $))
- (-15 -1693 ($ (-1118 *3 (-609 $))))))))))
+ (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169))
+ (-4 *5 (-13 (-307) (-147))) (-5 *2 (-52)) (-5 *1 (-911 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-418 (-948 *6))) (-5 *5 (-1169)) (-5 *3 (-948 *6))
+ (-4 *6 (-13 (-307) (-147))) (-5 *2 (-52)) (-5 *1 (-911 *6)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1257 (-1169))) (-5 *3 (-1257 (-453 *4 *5 *6 *7)))
+ (-5 *1 (-453 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-917))
+ (-14 *6 (-640 (-1169))) (-14 *7 (-1257 (-684 *4)))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-453 *4 *5 *6 *7)))
+ (-5 *1 (-453 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-917))
+ (-14 *6 (-640 *2)) (-14 *7 (-1257 (-684 *4)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1257 (-453 *3 *4 *5 *6))) (-5 *1 (-453 *3 *4 *5 *6))
+ (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169)))
+ (-14 *6 (-1257 (-684 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1257 (-1169))) (-5 *1 (-453 *3 *4 *5 *6))
+ (-4 *3 (-172)) (-14 *4 (-917)) (-14 *5 (-640 (-1169)))
+ (-14 *6 (-1257 (-684 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1169)) (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172))
+ (-14 *4 (-917)) (-14 *5 (-640 *2)) (-14 *6 (-1257 (-684 *3)))))
+ ((*1 *1)
+ (-12 (-5 *1 (-453 *2 *3 *4 *5)) (-4 *2 (-172)) (-14 *3 (-917))
+ (-14 *4 (-640 (-1169))) (-14 *5 (-1257 (-684 *2))))))
(((*1 *2 *1)
(-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-640 (-939 *3))))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *1 (-103 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-767))
- (-5 *1 (-449 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *6))
- (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5))))
+(((*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-5 *2 (-640 (-901 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-363)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-504 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))))
+ (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789))
+ (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1002))))
+ ((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1002)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-601 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1208))
+ (-5 *2 (-640 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-330)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1087 (-839 (-379)))) (-5 *2 (-1087 (-839 (-225))))
- (-5 *1 (-305)))))
-(((*1 *1 *1 *1) (-5 *1 (-162)))
- ((*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-162)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1149 *3)) (-4 *3 (-363)) (-4 *3 (-1045))
- (-5 *1 (-1153 *3)))))
+ (-12 (-4 *4 (-307)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4))
+ (-5 *2
+ (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3)))
+ (-5 *1 (-1117 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))))
+(((*1 *2 *3 *3 *4 *4 *3 *3 *5 *3)
+ (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1031)) (-5 *1 (-751)))))
(((*1 *1 *1) (-12 (-5 *1 (-910 *2)) (-4 *2 (-307)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-1165 (-948 *4))) (-5 *1 (-416 *3 *4))
+ (-4 *3 (-417 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-4 *3 (-363))
+ (-5 *2 (-1165 (-948 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6))
+ (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
(((*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-950)))))
-(((*1 *2 *3)
- (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-563))) (-5 *1 (-1043)))))
-(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1045))
- (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284)))
- (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-945 *3 *5 *4)) (-5 *1 (-983 *3 *4 *5 *2))
- (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-5 *2 (-640 *5))
- (-5 *1 (-886 *4 *5)) (-4 *5 (-1208)))))
+(((*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-307)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1 *4)
+ (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1201 *5 *6 *7 *3))
+ (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-407 (-563))) (-5 *4 (-563)) (-5 *2 (-52))
+ (-5 *1 (-1001)))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4408)) (-4 *1 (-601 *4 *3)) (-4 *4 (-1093))
+ (-4 *3 (-1208)) (-4 *3 (-1093)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-330)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-307)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3))
+ (-5 *1 (-1117 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
+(((*1 *2 *3 *4 *3 *4 *4 *4 *4 *4)
+ (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031))
+ (-5 *1 (-751)))))
+(((*1 *2 *1) (-12 (-5 *2 (-418 *3)) (-5 *1 (-910 *3)) (-4 *3 (-307)))))
(((*1 *2 *1)
- (-12 (|has| *1 (-6 -4407)) (-4 *1 (-489 *3)) (-4 *3 (-1208))
- (-5 *2 (-640 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-640 *3)) (-5 *1 (-733 *3)) (-4 *3 (-1093))))
- ((*1 *2 *1) (-12 (-5 *2 (-640 (-439))) (-5 *1 (-861)))))
-(((*1 *2 *3 *3 *3 *3)
- (-12 (-4 *4 (-452)) (-4 *3 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
- (-5 *1 (-449 *4 *3 *5 *6)) (-4 *6 (-945 *4 *3 *5)))))
+ (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6))
+ (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-335 *3 *4 *5 *6)) (-4 *3 (-363)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5)) (-5 *2 (-112)))))
+ (-12 (-5 *2 (-1149 (-407 *3))) (-5 *1 (-174 *3)) (-4 *3 (-307)))))
(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4407)) (-4 *1 (-151 *3))
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4408)) (-4 *1 (-151 *3))
(-4 *3 (-1208))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1208)) (-5 *1 (-598 *3))))
@@ -10893,43 +10718,40 @@
(-4 *5 (-789)) (-4 *3 (-846)) (-4 *2 (-1059 *4 *5 *3))))
((*1 *2 *1 *3)
(-12 (-5 *3 (-767)) (-5 *1 (-1205 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789))
+ (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
(((*1 *1) (-12 (-4 *1 (-465 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23))))
((*1 *1) (-5 *1 (-536))) ((*1 *1) (-4 *1 (-718)))
((*1 *1) (-4 *1 (-722)))
((*1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093))))
((*1 *1) (-12 (-5 *1 (-889 *2)) (-4 *2 (-846)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-555)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *3)
+(((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-601 *2 *3)) (-4 *3 (-1208)) (-4 *2 (-1093))
+ (-4 *2 (-846)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-330)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *2 *3 *3)
+ (-12 (|has| *2 (-6 (-4410 "*"))) (-4 *5 (-373 *2)) (-4 *6 (-373 *2))
+ (-4 *2 (-1045)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1233 *2))
+ (-4 *4 (-682 *2 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-307)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4))
+ (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3)))
+ (-5 *1 (-1117 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
(-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
(-5 *1 (-751)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-529)))))
-(((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-349)) (-5 *2 (-112)) (-5 *1 (-216 *4 *3))
- (-4 *3 (-1233 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-755)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1093)) (-4 *3 (-896 *5)) (-5 *2 (-684 *3))
- (-5 *1 (-687 *5 *3 *6 *4)) (-4 *6 (-373 *3))
- (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4407)))))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5
- (-1 (-2 (|:| |ans| *6) (|:| -1701 *6) (|:| |sol?| (-112))) (-563)
- *6))
- (-4 *6 (-363)) (-4 *7 (-1233 *6))
- (-5 *2
- (-3 (-2 (|:| |answer| (-407 *7)) (|:| |a0| *6))
- (-2 (|:| -3646 (-407 *7)) (|:| |coeff| (-407 *7))) "failed"))
- (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))))
+(((*1 *2 *1) (-12 (-5 *1 (-910 *2)) (-4 *2 (-307)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
+ (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 (-225) (-225))) (-5 *4 (-1087 (-379)))
(-5 *5 (-640 (-263))) (-5 *2 (-1258)) (-5 *1 (-255))))
@@ -11027,6 +10849,20 @@
((*1 *2 *3 *3 *3 *4)
(-12 (-5 *3 (-640 (-225))) (-5 *4 (-640 (-263))) (-5 *2 (-1259))
(-5 *1 (-260)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1149 (-407 *3))) (-5 *1 (-174 *3)) (-4 *3 (-307)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789))
+ (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
(((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1208)) (-5 *1 (-598 *3))))
((*1 *1 *2 *1)
@@ -11142,9 +10978,9 @@
(-4 *6 (-363)) (-5 *2 (-584 *6)) (-5 *1 (-583 *5 *6))))
((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-1 *6 *5))
- (-5 *4 (-3 (-2 (|:| -3646 *5) (|:| |coeff| *5)) "failed"))
+ (-5 *4 (-3 (-2 (|:| -2840 *5) (|:| |coeff| *5)) "failed"))
(-4 *5 (-363)) (-4 *6 (-363))
- (-5 *2 (-2 (|:| -3646 *6) (|:| |coeff| *6)))
+ (-5 *2 (-2 (|:| -2840 *6) (|:| |coeff| *6)))
(-5 *1 (-583 *5 *6))))
((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed"))
@@ -11263,7 +11099,7 @@
(-4 *8 (-1045)) (-4 *6 (-789))
(-4 *2
(-13 (-1093)
- (-10 -8 (-15 -1814 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-767))))))
+ (-10 -8 (-15 -1813 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-767))))))
(-5 *1 (-947 *6 *7 *8 *5 *2)) (-4 *5 (-945 *8 *6 *7))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-954 *5)) (-4 *5 (-1208))
@@ -11276,8 +11112,8 @@
(-4 *2 (-945 (-948 *4) *5 *6)) (-4 *5 (-789))
(-4 *6
(-13 (-846)
- (-10 -8 (-15 -2220 ((-1169) $))
- (-15 -2518 ((-3 $ "failed") (-1169))))))
+ (-10 -8 (-15 -2219 ((-1169) $))
+ (-15 -2517 ((-3 $ "failed") (-1169))))))
(-5 *1 (-980 *4 *5 *6 *2))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-555)) (-4 *6 (-555))
@@ -11365,24 +11201,10 @@
(-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-1280 *3 *4))
(-4 *4 (-842)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-418 *3)) (-4 *3 (-545)) (-4 *3 (-555))))
- ((*1 *2 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-793 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-829 *3)) (-4 *3 (-545)) (-4 *3 (-1093))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-545)) (-4 *3 (-1093))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-993 *3)) (-4 *3 (-172)) (-4 *3 (-545)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-1004 *3)) (-4 *3 (-1034 (-407 (-563)))))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-767)) (-4 *4 (-555)) (-5 *1 (-965 *4 *2))
- (-4 *2 (-1233 *4)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
+ (-12 (-5 *2 (-1149 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-601 *2 *3)) (-4 *3 (-1208)) (-4 *2 (-1093))
+ (-4 *2 (-846)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *5 (-1087 *3)) (-4 *3 (-945 *7 *6 *4)) (-4 *6 (-789))
(-4 *4 (-846)) (-4 *7 (-555))
@@ -11417,40 +11239,50 @@
(-12 (-5 *4 (-1085 (-407 (-948 *5)))) (-5 *3 (-407 (-948 *5)))
(-4 *5 (-13 (-555) (-846) (-1034 (-563)))) (-5 *2 (-3 *3 (-316 *5)))
(-5 *1 (-1162 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-112)) (-5 *1 (-825)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3)
- (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
- (-5 *2 (-1031)) (-5 *1 (-748)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-4 *1 (-107 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-330)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1045)) (-4 *2 (-682 *4 *5 *6))
+ (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1233 *4)) (-4 *5 (-373 *4))
+ (-4 *6 (-373 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-307)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3))
+ (-5 *1 (-1117 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-751)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-910 *3)) (-4 *3 (-307)))))
(((*1 *2 *1)
(-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
(-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
(-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-846) (-555))) (-5 *2 (-112)) (-5 *1 (-276 *4 *3))
- (-4 *3 (-13 (-430 *4) (-998))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-767)) (-5 *4 (-1257 *2)) (-4 *5 (-307))
- (-4 *6 (-988 *5)) (-4 *2 (-13 (-409 *6 *7) (-1034 *6)))
- (-5 *1 (-413 *5 *6 *7 *2)) (-4 *7 (-1233 *6)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368))
- (-5 *2 (-1165 *3)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-13 (-555) (-147))) (-5 *1 (-1227 *3 *2))
- (-4 *2 (-1233 *3)))))
(((*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-640 *1)) (-4 *1 (-302))))
((*1 *1 *2 *1) (-12 (-4 *1 (-302)) (-5 *2 (-114))))
((*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-609 *3)) (-4 *3 (-846))))
((*1 *1 *2 *3 *4)
(-12 (-5 *2 (-114)) (-5 *3 (-640 *5)) (-5 *4 (-767)) (-4 *5 (-846))
(-5 *1 (-609 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789))
+ (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (|[\|\|]| -1674)) (-5 *2 (-112)) (-5 *1 (-614))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -2484)) (-5 *2 (-112)) (-5 *1 (-614))))
+ (-12 (-5 *3 (|[\|\|]| -2483)) (-5 *2 (-112)) (-5 *1 (-614))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -3563)) (-5 *2 (-112)) (-5 *1 (-614))))
+ (-12 (-5 *3 (|[\|\|]| -3566)) (-5 *2 (-112)) (-5 *1 (-614))))
((*1 *2 *1 *3)
(-12 (-5 *3 (|[\|\|]| -2598)) (-5 *2 (-112)) (-5 *1 (-686 *4))
(-4 *4 (-610 (-858)))))
@@ -11531,17 +11363,15 @@
(-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1208)) (-5 *1 (-598 *3))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1208)) (-5 *1 (-1149 *3)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1248 *4)) (-5 *1 (-1250 *4 *2))
- (-4 *4 (-38 (-407 (-563)))))))
-(((*1 *2 *3 *4 *4 *5 *3 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
- (-5 *2 (-1031)) (-5 *1 (-748)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-363)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3))
- (-5 *1 (-521 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1208)) (-4 *3 (-373 *2))
+ (-4 *4 (-373 *2))))
+ ((*1 *1 *1 *2)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-601 *3 *2)) (-4 *3 (-1093))
+ (-4 *2 (-1208)))))
+(((*1 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-368)) (-4 *2 (-363)))))
(((*1 *2 *3)
(-12 (-4 *5 (-13 (-611 *2) (-172))) (-5 *2 (-888 *4))
(-5 *1 (-170 *4 *5 *3)) (-4 *4 (-1093)) (-4 *3 (-166 *5))))
@@ -11574,9 +11404,9 @@
(-12 (-5 *2 (-948 *3)) (-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5))
(-4 *5 (-611 (-1169))) (-4 *4 (-789)) (-4 *5 (-846))))
((*1 *1 *2)
- (-4032
+ (-4034
(-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5))
- (-12 (-2176 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563)))
+ (-12 (-2174 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563)))
(-4 *5 (-611 (-1169))))
(-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)))
(-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5))
@@ -11587,12 +11417,12 @@
(-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169))) (-4 *3 (-1045))
(-4 *4 (-789)) (-4 *5 (-846))))
((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2059 *8)))
+ (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2058 *8)))
(-4 *7 (-1059 *4 *5 *6)) (-4 *8 (-1065 *4 *5 *6 *7)) (-4 *4 (-452))
(-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1151))
(-5 *1 (-1063 *4 *5 *6 *7 *8))))
((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2059 *8)))
+ (-12 (-5 *3 (-2 (|:| |val| (-640 *7)) (|:| -2058 *8)))
(-4 *7 (-1059 *4 *5 *6)) (-4 *8 (-1102 *4 *5 *6 *7)) (-4 *4 (-452))
(-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1151))
(-5 *1 (-1138 *4 *5 *6 *7 *8))))
@@ -11625,24 +11455,27 @@
(-5 *2 (-640 (-776 *4 (-860 *6)))) (-5 *1 (-1283 *4 *5 *6))
(-14 *5 (-640 (-1169))))))
(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-125 *2)) (-4 *2 (-1093)))))
-(((*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5)
- (-12 (-5 *3 (-917)) (-5 *4 (-225)) (-5 *5 (-563)) (-5 *6 (-870))
- (-5 *2 (-1262)) (-5 *1 (-1258)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-839 (-225)))) (-5 *4 (-225)) (-5 *2 (-640 *4))
- (-5 *1 (-267)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-452)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1165 *3)) (-5 *1 (-910 *3)) (-4 *3 (-307)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *7)
- (|:| |polj| *7)))
- (-4 *5 (-789)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *6 (-846))
- (-5 *2 (-112)) (-5 *1 (-449 *4 *5 *6 *7)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-767)) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5))
+ (-4 *4 (-373 *3)) (-4 *5 (-373 *3))))
+ ((*1 *1 *2)
+ (-12 (-4 *2 (-1045)) (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
+ (-4 *5 (-238 *3 *2)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-751)))))
+(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-910 *3)) (-4 *3 (-307)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-1165 (-948 *4))) (-5 *1 (-416 *3 *4))
+ (-4 *3 (-417 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-4 *3 (-363))
+ (-5 *2 (-1165 (-948 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6))
+ (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-917)) (-4 *6 (-13 (-555) (-846)))
(-5 *2 (-640 (-316 *6))) (-5 *1 (-221 *5 *6)) (-5 *3 (-316 *6))
@@ -11669,111 +11502,84 @@
((*1 *2 *1)
(-12 (-5 *2 (-1272 *3 *4)) (-5 *1 (-1281 *3 *4)) (-4 *3 (-846))
(-4 *4 (-1045)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 (-112) *7 (-640 *7))) (-4 *1 (-1201 *4 *5 *6 *7))
+ (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123)))
((*1 *1 *1 *1) (-5 *1 (-1113))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-684 *5))) (-5 *4 (-563)) (-4 *5 (-363))
- (-4 *5 (-1045)) (-5 *2 (-112)) (-5 *1 (-1025 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-684 *4))) (-4 *4 (-363)) (-4 *4 (-1045))
- (-5 *2 (-112)) (-5 *1 (-1025 *4)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-1257 (-563))) (-5 *3 (-563)) (-5 *1 (-1103))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-1257 (-563))) (-5 *3 (-640 (-563))) (-5 *4 (-563))
- (-5 *1 (-1103)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-307)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3))
- (-5 *1 (-1117 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
- (-5 *2 (-640 (-2 (|:| |val| (-640 *3)) (|:| -2059 *4))))
- (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-5 *2 (-563))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858))))
- ((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-640 (-640 (-563)))) (-5 *1 (-967))
- (-5 *3 (-640 (-563))))))
-(((*1 *1) (-5 *1 (-799))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-767)) (-4 *5 (-555))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))))
+ (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-601 *3 *4)) (-4 *3 (-1093))
+ (-4 *4 (-1208)) (-5 *2 (-1262)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1165 *3)) (-4 *3 (-368)) (-4 *1 (-329 *3))
+ (-4 *3 (-363)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-640 *1)) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5))
+ (-4 *4 (-373 *3)) (-4 *5 (-373 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-640 *3)) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5))
+ (-4 *4 (-373 *3)) (-4 *5 (-373 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1045)) (-5 *1 (-684 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-640 *4)) (-4 *4 (-1045)) (-4 *1 (-1116 *3 *4 *5 *6))
+ (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *3 *4)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-751)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1165 *3)) (-5 *1 (-910 *3)) (-4 *3 (-307)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1165 (-407 (-948 *3)))) (-5 *1 (-453 *3 *4 *5 *6))
+ (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171)))))
+(((*1 *2 *2 *1 *3 *4)
+ (-12 (-5 *2 (-640 *8)) (-5 *3 (-1 *8 *8 *8))
+ (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1201 *5 *6 *7 *8)) (-4 *5 (-555))
+ (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)))))
(((*1 *1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1 *1) (-5 *1 (-858)))
((*1 *1 *1 *1) (-4 *1 (-963))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-609 *2))) (-5 *4 (-640 (-1169)))
+ (-4 *2 (-13 (-430 (-169 *5)) (-998) (-1193)))
+ (-4 *5 (-13 (-555) (-846))) (-5 *1 (-597 *5 *6 *2))
+ (-4 *6 (-13 (-430 *5) (-998) (-1193))))))
(((*1 *2 *3)
(-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-530 *3)) (-4 *3 (-13 (-722) (-25))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1149 *4)) (-5 *3 (-1 *4 (-563))) (-4 *4 (-1045))
- (-5 *1 (-1153 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-367 *2)) (-4 *2 (-172)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151))
- (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-939 *3)) (-4 *3 (-13 (-363) (-1193) (-998)))
- (-5 *1 (-176 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
- (-4 *4 (-1045)))))
-(((*1 *2 *3 *4 *4 *5 *6 *7)
- (-12 (-5 *5 (-1169))
- (-5 *6
- (-1
- (-3
- (-2 (|:| |mainpart| *4)
- (|:| |limitedlogs|
- (-640 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
- "failed")
- *4 (-640 *4)))
- (-5 *7
- (-1 (-3 (-2 (|:| -3646 *4) (|:| |coeff| *4)) "failed") *4 *4))
- (-4 *4 (-13 (-1193) (-27) (-430 *8)))
- (-4 *8 (-13 (-452) (-846) (-147) (-1034 *3) (-636 *3)))
- (-5 *3 (-563))
- (-5 *2 (-2 (|:| |ans| *4) (|:| -1701 *4) (|:| |sol?| (-112))))
- (-5 *1 (-1009 *8 *4)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-174 (-407 (-563)))) (-5 *1 (-117 *3)) (-14 *3 (-563))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *3 (-1149 *2)) (-4 *2 (-307)) (-5 *1 (-174 *2))))
- ((*1 *1 *2) (-12 (-5 *2 (-407 *3)) (-4 *3 (-307)) (-5 *1 (-174 *3))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-174 (-563))) (-5 *1 (-761 *3)) (-4 *3 (-404))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-174 (-407 (-563)))) (-5 *1 (-867 *3)) (-14 *3 (-563))))
- ((*1 *2 *1)
- (-12 (-14 *3 (-563)) (-5 *2 (-174 (-407 (-563))))
- (-5 *1 (-868 *3 *4)) (-4 *4 (-865 *3)))))
+ (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368))
+ (-5 *2 (-1165 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1116 *3 *4 *2 *5)) (-4 *4 (-1045)) (-4 *5 (-238 *3 *4))
+ (-4 *2 (-238 *3 *4)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-751)))))
+(((*1 *1 *1) (-12 (-5 *1 (-910 *2)) (-4 *2 (-307)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
+ (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
(((*1 *2) (-12 (-5 *2 (-829 (-563))) (-5 *1 (-534))))
((*1 *1) (-12 (-5 *1 (-829 *2)) (-4 *2 (-1093)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-171)))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))))
(((*1 *1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1 *1) (-5 *1 (-858)))
((*1 *1 *1 *1) (-4 *1 (-963))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 (-1169)))
- (-14 *4 (-640 (-1169))) (-4 *5 (-387))))
- ((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-339 *3 *4 *5)) (-14 *3 (-640 (-1169)))
- (-14 *4 (-640 (-1169))) (-4 *5 (-387)))))
-(((*1 *1) (-5 *1 (-1078))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
- (-5 *2 (-1031)) (-5 *1 (-748)))))
+(((*1 *1 *2 *2)
+ (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-555) (-846))) (-5 *2 (-169 *5))
+ (-5 *1 (-597 *4 *5 *3)) (-4 *5 (-13 (-430 *4) (-998) (-1193)))
+ (-4 *3 (-13 (-430 (-169 *4)) (-998) (-1193))))))
(((*1 *1 *1)
(-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169)))
(-14 *3 (-640 (-1169))) (-4 *4 (-387))))
@@ -11783,39 +11589,29 @@
((*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-4 *1 (-1008))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1008)) (-5 *2 (-917))))
((*1 *1 *1) (-4 *1 (-1008))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-379)) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
- ((*1 *1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-263)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-349)) (-5 *2 (-418 *3)) (-5 *1 (-216 *4 *3))
- (-4 *3 (-1233 *4))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-418 *3)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3))
- (-4 *3 (-1233 (-563)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 (-767))) (-5 *2 (-418 *3)) (-5 *1 (-442 *3))
- (-4 *3 (-1233 (-563)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-640 (-767))) (-5 *5 (-767)) (-5 *2 (-418 *3))
- (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-767)) (-5 *2 (-418 *3)) (-5 *1 (-442 *3))
- (-4 *3 (-1233 (-563)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-418 *3)) (-5 *1 (-1003 *3))
- (-4 *3 (-1233 (-407 (-563))))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-418 *3)) (-5 *1 (-1222 *3)) (-4 *3 (-1233 (-563))))))
+(((*1 *2 *1 *1)
+ (|partial| -12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368))
+ (-5 *2 (-1165 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368))
+ (-5 *2 (-1165 *3)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1149 (-563))) (-5 *1 (-1153 *4)) (-4 *4 (-1045))
- (-5 *3 (-563)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
- (-4 *3 (-367 *4))))
- ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-128)))))
+ (-12 (-5 *3 (-684 *2)) (-4 *4 (-1233 *2))
+ (-4 *2 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $)))))
+ (-5 *1 (-499 *2 *4 *5)) (-4 *5 (-409 *2 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
+ (-4 *5 (-238 *3 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-751)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1233 (-407 (-563)))) (-5 *1 (-909 *3 *2))
+ (-4 *2 (-1233 (-407 *3))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
+ (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
(((*1 *2)
(-12 (-4 *2 (-13 (-430 *3) (-998))) (-5 *1 (-276 *3 *2))
(-4 *3 (-13 (-846) (-555)))))
@@ -11823,13 +11619,16 @@
(-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169)))
(-14 *3 (-640 (-1169))) (-4 *4 (-387))))
((*1 *1) (-5 *1 (-477))) ((*1 *1) (-4 *1 (-1193))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-767)) (-4 *6 (-1093)) (-4 *3 (-896 *6))
- (-5 *2 (-684 *3)) (-5 *1 (-687 *6 *3 *7 *4)) (-4 *7 (-373 *3))
- (-4 *4 (-13 (-373 *6) (-10 -7 (-6 -4407)))))))
+(((*1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))))
(((*1 *1 *1) (-5 *1 (-858))) ((*1 *1 *1 *1) (-5 *1 (-858)))
((*1 *1 *2 *2) (-12 (-4 *1 (-1086 *2)) (-4 *2 (-1208))))
((*1 *1 *2) (-12 (-5 *1 (-1224 *2)) (-4 *2 (-1208)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846))))
+ ((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))))
(((*1 *2 *3 *3)
(-12 (-5 *3 (-767)) (-5 *2 (-1257 (-640 (-563)))) (-5 *1 (-480))))
((*1 *1 *2 *3)
@@ -11839,21 +11638,6 @@
((*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1208)) (-5 *1 (-1149 *3)))))
(((*1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1) (-5 *1 (-858)))
((*1 *1 *1) (-4 *1 (-963))) ((*1 *1 *1) (-5 *1 (-1113))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-640 *1)) (-5 *3 (-640 *7)) (-4 *1 (-1065 *4 *5 *6 *7))
- (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1))
- (-4 *1 (-1065 *4 *5 *6 *7))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1))
- (-4 *1 (-1065 *4 *5 *6 *3)))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-640 (-48))) (-5 *2 (-418 *3)) (-5 *1 (-39 *3))
(-4 *3 (-1233 (-48)))))
@@ -11902,8 +11686,8 @@
(-12
(-4 *4
(-13 (-846)
- (-10 -8 (-15 -2220 ((-1169) $))
- (-15 -2518 ((-3 $ "failed") (-1169))))))
+ (-10 -8 (-15 -2219 ((-1169) $))
+ (-15 -2517 ((-3 $ "failed") (-1169))))))
(-4 *5 (-789)) (-4 *7 (-555)) (-5 *2 (-418 *3))
(-5 *1 (-456 *4 *5 *6 *7 *3)) (-4 *6 (-555))
(-4 *3 (-945 *7 *5 *4))))
@@ -11952,13 +11736,13 @@
(-12 (-4 *4 (-789))
(-4 *5
(-13 (-846)
- (-10 -8 (-15 -2220 ((-1169) $))
- (-15 -2518 ((-3 $ "failed") (-1169))))))
+ (-10 -8 (-15 -2219 ((-1169) $))
+ (-15 -2517 ((-3 $ "failed") (-1169))))))
(-4 *6 (-307)) (-5 *2 (-418 *3)) (-5 *1 (-726 *4 *5 *6 *3))
(-4 *3 (-945 (-948 *6) *4 *5))))
((*1 *2 *3)
(-12 (-4 *4 (-789))
- (-4 *5 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $))))) (-4 *6 (-555))
+ (-4 *5 (-13 (-846) (-10 -8 (-15 -2219 ((-1169) $))))) (-4 *6 (-555))
(-5 *2 (-418 *3)) (-5 *1 (-728 *4 *5 *6 *3))
(-4 *3 (-945 (-407 (-948 *6)) *4 *5))))
((*1 *2 *3)
@@ -11994,66 +11778,80 @@
((*1 *2 *1) (-12 (-5 *2 (-418 *1)) (-4 *1 (-1212))))
((*1 *2 *3)
(-12 (-5 *2 (-418 *3)) (-5 *1 (-1222 *3)) (-4 *3 (-1233 (-563))))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *2 (-846))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)))))
-(((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7)
- (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225)))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))))
- (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-225))
- (-5 *2 (-1031)) (-5 *1 (-751))))
- ((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8)
- (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225)))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-67 DOT))))
- (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-388))
- (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-751)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *1) (-5 *1 (-437))))
-(((*1 *1 *1 *1 *1) (-5 *1 (-858))) ((*1 *1 *1 *1) (-5 *1 (-858)))
- ((*1 *1 *1) (-5 *1 (-858))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-363))
- (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-1169)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-973 *4 *5 *6 *3)) (-4 *3 (-1059 *4 *5 *6)))))
-(((*1 *1 *1) (-5 *1 (-225))) ((*1 *1 *1) (-5 *1 (-379)))
- ((*1 *1) (-5 *1 (-379))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 (-640 *8))) (-5 *3 (-640 *8))
- (-4 *8 (-1059 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789))
- (-4 *7 (-846)) (-5 *2 (-112)) (-5 *1 (-973 *5 *6 *7 *8)))))
+ (-12 (-5 *3 (-418 *5)) (-4 *5 (-555))
+ (-5 *2
+ (-2 (|:| -3311 (-767)) (|:| -2310 *5) (|:| |radicand| (-640 *5))))
+ (-5 *1 (-320 *5)) (-5 *4 (-767))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-998)) (-5 *2 (-563)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-555) (-846)))
+ (-4 *2 (-13 (-430 (-169 *4)) (-998) (-1193)))
+ (-5 *1 (-597 *4 *3 *2)) (-4 *3 (-13 (-430 *4) (-998) (-1193))))))
(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-563) (-563))) (-5 *1 (-361 *3)) (-4 *3 (-1093))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-767) (-767))) (-5 *1 (-386 *3)) (-4 *3 (-1093))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4)
- (-5 *1 (-644 *3 *4 *5)) (-4 *3 (-1093)))))
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-326 *3 *4)) (-4 *3 (-1045))
+ (-4 *4 (-788)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-363))
+ (-5 *1 (-521 *2 *4 *5 *3)) (-4 *3 (-682 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2))
+ (|has| *2 (-6 (-4410 "*"))) (-4 *2 (-1045))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-172))
+ (-5 *1 (-683 *2 *4 *5 *3)) (-4 *3 (-682 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
+ (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4410 "*"))) (-4 *2 (-1045)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-751)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1233 (-407 *2))) (-5 *2 (-563)) (-5 *1 (-909 *4 *3))
+ (-4 *3 (-1233 (-407 *4))))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
+ (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-767)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
- (-4 *4 (-1045)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-13 (-844) (-363))) (-5 *2 (-112)) (-5 *1 (-1055 *4 *3))
- (-4 *3 (-1233 *4)))))
+ (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-1054)) (-4 *3 (-1193))
+ (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846))))
+ ((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))))
(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-640 *3)) (-4 *3 (-1208)))))
-(((*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-1045)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-1258))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3)
- (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *6 (-225))
- (-5 *3 (-563)) (-5 *2 (-1031)) (-5 *1 (-747)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-1172))))
- ((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1173)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-640 (-52))) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-996 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-555) (-846)))
+ (-4 *2 (-13 (-430 *4) (-998) (-1193))) (-5 *1 (-597 *4 *2 *3))
+ (-4 *3 (-13 (-430 (-169 *4)) (-998) (-1193))))))
+(((*1 *1 *1 *2 *3 *1)
+ (-12 (-4 *1 (-326 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *3 (-373 *2)) (-4 *4 (-373 *2))
+ (|has| *2 (-6 (-4410 "*"))) (-4 *2 (-1045))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-373 *2)) (-4 *5 (-373 *2)) (-4 *2 (-172))
+ (-5 *1 (-683 *2 *4 *5 *3)) (-4 *3 (-682 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
+ (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4410 "*"))) (-4 *2 (-1045)))))
+(((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031))
+ (-5 *1 (-751)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-2 (|:| |den| (-563)) (|:| |gcdnum| (-563)))))
+ (-4 *4 (-1233 (-407 *2))) (-5 *2 (-563)) (-5 *1 (-909 *4 *5))
+ (-4 *5 (-1233 (-407 *4))))))
+(((*1 *2)
+ (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
+ (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
(((*1 *2 *1) (-12 (-5 *2 (-1118 (-563) (-609 (-48)))) (-5 *1 (-48))))
((*1 *2 *1)
(-12 (-4 *3 (-988 *2)) (-4 *4 (-1233 *3)) (-4 *2 (-307))
@@ -12069,41 +11867,40 @@
(-12 (-4 *4 (-172)) (-4 *2 (|SubsetCategory| (-722) *4))
(-5 *1 (-657 *3 *4 *2)) (-4 *3 (-713 *4))))
((*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))))
+(((*1 *1 *1 *1) (-5 *1 (-162)))
+ ((*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-162)))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))))
+(((*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172))))
+ ((*1 *1 *1 *1) (-4 *1 (-473)))
+ ((*1 *1 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172))))
+ ((*1 *2 *2) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-879))))
+ ((*1 *1 *1) (-5 *1 (-967)))
+ ((*1 *1 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-2 (|:| -2174 (-1165 *6)) (|:| -1654 (-563)))))
- (-4 *6 (-307)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-563))
- (-5 *1 (-738 *4 *5 *6 *7)) (-4 *7 (-945 *6 *4 *5)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-972 *4 *5 *6 *3)) (-4 *4 (-1045)) (-4 *5 (-789))
- (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-4 *4 (-555))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-640 (-316 (-225)))) (-5 *3 (-225)) (-5 *2 (-112))
- (-5 *1 (-210)))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-183))) (-5 *1 (-140)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1169))
- (-4 *5 (-13 (-555) (-1034 (-563)) (-147)))
- (-5 *2
- (-2 (|:| -3646 (-407 (-948 *5))) (|:| |coeff| (-407 (-948 *5)))))
- (-5 *1 (-569 *5)) (-5 *3 (-407 (-948 *5))))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-555))
- (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-1228 *4 *3))
- (-4 *3 (-1233 *4)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-1 (-225) (-225) (-225)))
- (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined"))
- (-5 *5 (-1087 (-225))) (-5 *6 (-640 (-263))) (-5 *2 (-1126 (-225)))
- (-5 *1 (-692)))))
-(((*1 *1 *1 *1) (-4 *1 (-473))) ((*1 *1 *1 *1) (-4 *1 (-757))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1233 *4)) (-4 *4 (-1212))
- (-4 *1 (-342 *4 *3 *5)) (-4 *5 (-1233 (-407 *3))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))
- (-5 *2 (-2 (|:| -1442 (-640 *6)) (|:| -3405 (-640 *6)))))))
+ (-12 (-5 *3 (-169 *5)) (-4 *5 (-13 (-430 *4) (-998) (-1193)))
+ (-4 *4 (-13 (-555) (-846)))
+ (-4 *2 (-13 (-430 (-169 *4)) (-998) (-1193)))
+ (-5 *1 (-597 *4 *5 *2)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-767)) (-4 *1 (-326 *3 *4)) (-4 *3 (-1045))
+ (-4 *4 (-788)) (-4 *3 (-172)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-1114 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-751)))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-1233 (-407 (-563))))
+ (-5 *2 (-2 (|:| |den| (-563)) (|:| |gcdnum| (-563))))
+ (-5 *1 (-909 *3 *4)) (-4 *4 (-1233 (-407 *3)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1233 (-407 *2))) (-5 *2 (-563)) (-5 *1 (-909 *4 *3))
+ (-4 *3 (-1233 (-407 *4))))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
+ (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
(((*1 *2 *1) (-12 (-5 *2 (-1118 (-563) (-609 (-48)))) (-5 *1 (-48))))
((*1 *2 *1)
(-12 (-4 *3 (-307)) (-4 *4 (-988 *3)) (-4 *5 (-1233 *4))
@@ -12120,12 +11917,23 @@
(-12 (-4 *3 (-172)) (-4 *2 (-713 *3)) (-5 *1 (-657 *2 *3 *4))
(-4 *4 (|SubsetCategory| (-722) *3))))
((*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))))
-(((*1 *1) (-5 *1 (-558))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
- (-4 *4 (-1045)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1165 (-563))) (-5 *2 (-563)) (-5 *1 (-938)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2))
+ (-4 *2 (-430 *4))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1169))))
+ ((*1 *1 *1) (-4 *1 (-160))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1201 *2 *3 *4 *5)) (-4 *2 (-555)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *5 (-1059 *2 *3 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172))))
+ ((*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1022 (-839 (-563))))
+ (-5 *3 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *4)))) (-4 *4 (-1045))
+ (-5 *1 (-593 *4)))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (-609 *1)) (-4 *1 (-430 *4)) (-4 *4 (-846))
(-4 *4 (-555)) (-5 *2 (-407 (-1165 *1)))))
@@ -12149,85 +11957,43 @@
(-5 *1 (-946 *5 *4 *6 *7 *3))
(-4 *3
(-13 (-363)
- (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $)) (-15 -2154 (*7 $)))))))
+ (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $)) (-15 -2153 (*7 $)))))))
((*1 *2 *3 *4 *2)
(-12 (-5 *2 (-1165 *3))
(-4 *3
(-13 (-363)
- (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $)) (-15 -2154 (*7 $)))))
+ (-10 -8 (-15 -1692 ($ *7)) (-15 -2143 (*7 $)) (-15 -2153 (*7 $)))))
(-4 *7 (-945 *6 *5 *4)) (-4 *5 (-789)) (-4 *4 (-846))
(-4 *6 (-1045)) (-5 *1 (-946 *5 *4 *6 *7 *3))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-1169)) (-4 *5 (-555))
(-5 *2 (-407 (-1165 (-407 (-948 *5))))) (-5 *1 (-1039 *5))
(-5 *3 (-407 (-948 *5))))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-640 (-1257 *4))) (-5 *1 (-366 *3 *4))
- (-4 *3 (-367 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-4 *3 (-555))
- (-5 *2 (-640 (-1257 *3))))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-506)) (-5 *3 (-1111)) (-5 *1 (-1108)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
- (-4 *3 (-367 *4))))
- ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225))
- (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
- (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
- (-5 *3 (-640 (-263))) (-5 *1 (-261))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225))
- (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
- (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
- (-5 *1 (-263))))
- ((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259))))
- ((*1 *2 *1 *3 *3 *4 *4 *4)
- (-12 (-5 *3 (-563)) (-5 *4 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259))))
- ((*1 *2 *1 *3)
- (-12
- (-5 *3
- (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225))
- (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
- (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
- (-5 *2 (-1262)) (-5 *1 (-1259))))
- ((*1 *2 *1)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4346 (-225))
- (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
- (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
- (-5 *1 (-1259))))
- ((*1 *2 *1 *3 *3 *3 *3 *3)
- (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1))
- (-4 *1 (-1059 *3 *4 *5)))))
-(((*1 *2)
- (|partial| -12 (-4 *3 (-555)) (-4 *3 (-172))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -4315 (-640 *1))))
- (-4 *1 (-367 *3))))
- ((*1 *2)
- (|partial| -12
- (-5 *2
- (-2 (|:| |particular| (-453 *3 *4 *5 *6))
- (|:| -4315 (-640 (-453 *3 *4 *5 *6)))))
- (-5 *1 (-453 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-917))
- (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-4 *1 (-323 *4 *2)) (-4 *4 (-1093))
+ (-4 *2 (-131)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1114 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-169 (-225))))
+ (-5 *2 (-1031)) (-5 *1 (-750)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 *4)) (-4 *4 (-1093)) (-5 *2 (-1262))
- (-5 *1 (-1209 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 *4)) (-4 *4 (-1093)) (-5 *2 (-1262))
- (-5 *1 (-1209 *4)))))
+ (-12 (-5 *3 (-563)) (-4 *4 (-1233 (-407 *3))) (-5 *2 (-917))
+ (-5 *1 (-909 *4 *5)) (-4 *5 (-1233 (-407 *4))))))
+(((*1 *2)
+ (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
+ (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2))
+ (-4 *2 (-430 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1085 *2)) (-4 *2 (-430 *4)) (-4 *4 (-13 (-846) (-555)))
+ (-5 *1 (-158 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-160))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1169)))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))))
(((*1 *2 *3)
(|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1208))))
((*1 *1 *2)
@@ -12303,26 +12069,26 @@
(-4 *1 (-972 *3 *4 *5 *6))))
((*1 *2 *1) (|partial| -12 (-4 *1 (-1034 *2)) (-4 *2 (-1208))))
((*1 *1 *2)
- (|partial| -4032
+ (|partial| -4034
(-12 (-5 *2 (-948 *3))
- (-12 (-2176 (-4 *3 (-38 (-407 (-563)))))
- (-2176 (-4 *3 (-38 (-563)))) (-4 *5 (-611 (-1169))))
+ (-12 (-2174 (-4 *3 (-38 (-407 (-563)))))
+ (-2174 (-4 *3 (-38 (-563)))) (-4 *5 (-611 (-1169))))
(-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789))
(-4 *5 (-846)))
(-12 (-5 *2 (-948 *3))
- (-12 (-2176 (-4 *3 (-545))) (-2176 (-4 *3 (-38 (-407 (-563)))))
+ (-12 (-2174 (-4 *3 (-545))) (-2174 (-4 *3 (-38 (-407 (-563)))))
(-4 *3 (-38 (-563))) (-4 *5 (-611 (-1169))))
(-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789))
(-4 *5 (-846)))
(-12 (-5 *2 (-948 *3))
- (-12 (-2176 (-4 *3 (-988 (-563)))) (-4 *3 (-38 (-407 (-563))))
+ (-12 (-2174 (-4 *3 (-988 (-563)))) (-4 *3 (-38 (-407 (-563))))
(-4 *5 (-611 (-1169))))
(-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789))
(-4 *5 (-846)))))
((*1 *1 *2)
- (|partial| -4032
+ (|partial| -4034
(-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5))
- (-12 (-2176 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563)))
+ (-12 (-2174 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563)))
(-4 *5 (-611 (-1169))))
(-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)))
(-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5))
@@ -12332,95 +12098,128 @@
(|partial| -12 (-5 *2 (-948 (-407 (-563)))) (-4 *1 (-1059 *3 *4 *5))
(-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169)))
(-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)))))
-(((*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1151)) (-5 *1 (-706)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-307))
- (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-447 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6))
- (-4 *4 (-307)) (-4 *5 (-789)) (-4 *6 (-846))
- (-5 *1 (-447 *4 *5 *6 *7))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-640 *7)) (-5 *3 (-1151)) (-4 *7 (-945 *4 *5 *6))
- (-4 *4 (-307)) (-4 *5 (-789)) (-4 *6 (-846))
- (-5 *1 (-447 *4 *5 *6 *7)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
- (-4 *3 (-367 *4))))
- ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172))))
+ ((*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1022 (-839 (-563)))) (-5 *1 (-593 *3)) (-4 *3 (-1045)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-323 *3 *4)) (-4 *3 (-1093))
+ (-4 *4 (-131)))))
(((*1 *2 *1) (-12 (-5 *2 (-640 (-609 *1))) (-4 *1 (-302)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-555)) (-5 *2 (-112)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-506)) (-5 *3 (-1111)) (-5 *1 (-1108)))))
+(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-169 (-225))))
+ (-5 *2 (-1031)) (-5 *1 (-750)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-452))
- (-5 *2
- (-640
- (-2 (|:| |eigval| (-3 (-407 (-948 *4)) (-1158 (-1169) (-948 *4))))
- (|:| |geneigvec| (-640 (-684 (-407 (-948 *4))))))))
- (-5 *1 (-292 *4)) (-5 *3 (-684 (-407 (-948 *4)))))))
-(((*1 *2 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-750)))))
+ (|partial| -12 (-5 *3 (-336 *5 *6 *7 *8)) (-4 *5 (-430 *4))
+ (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6)))
+ (-4 *8 (-342 *5 *6 *7))
+ (-4 *4 (-13 (-846) (-555) (-1034 (-563))))
+ (-5 *2 (-2 (|:| -1775 (-767)) (|:| -1518 *8)))
+ (-5 *1 (-907 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-336 (-407 (-563)) *4 *5 *6))
+ (-4 *4 (-1233 (-407 (-563)))) (-4 *5 (-1233 (-407 *4)))
+ (-4 *6 (-342 (-407 (-563)) *4 *5))
+ (-5 *2 (-2 (|:| -1775 (-767)) (|:| -1518 *6)))
+ (-5 *1 (-908 *4 *5 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-815 *4)) (-4 *4 (-846)) (-5 *2 (-112))
- (-5 *1 (-667 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-1207))) (-5 *1 (-603)))))
-(((*1 *2)
- (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-917)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1))
- (-4 *1 (-1059 *3 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-555)) (-4 *4 (-988 *3)) (-5 *1 (-142 *3 *4 *2))
- (-4 *2 (-373 *4))))
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
+ (-5 *2 (-640 (-948 *4)))))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-640 (-948 *4))) (-5 *1 (-416 *3 *4))
+ (-4 *3 (-417 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-640 (-948 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-640 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
+ (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
+ (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3)))))
((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *5 (-988 *4)) (-4 *2 (-373 *4))
- (-5 *1 (-503 *4 *5 *2 *3)) (-4 *3 (-373 *5))))
+ (-12 (-5 *3 (-1257 (-453 *4 *5 *6 *7))) (-5 *2 (-640 (-948 *4)))
+ (-5 *1 (-453 *4 *5 *6 *7)) (-4 *4 (-555)) (-4 *4 (-172))
+ (-14 *5 (-917)) (-14 *6 (-640 (-1169))) (-14 *7 (-1257 (-684 *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-1207))) (-5 *1 (-603)))))
+(((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
+ (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 *10))
+ (-5 *1 (-621 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1065 *5 *6 *7 *8))
+ (-4 *10 (-1102 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452))
+ (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1042 *5 *6)))
+ (-5 *1 (-625 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452))
+ (-14 *6 (-640 (-1169)))
+ (-5 *2
+ (-640 (-1139 *5 (-531 (-860 *6)) (-860 *6) (-776 *5 (-860 *6)))))
+ (-5 *1 (-625 *5 *6))))
+ ((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
+ (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-5 *2 (-640 (-1023 *5 *6 *7 *8))) (-5 *1 (-1023 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
+ (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-5 *2 (-640 (-1023 *5 *6 *7 *8))) (-5 *1 (-1023 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-640 (-776 *5 (-860 *6)))) (-5 *4 (-112)) (-4 *5 (-452))
+ (-14 *6 (-640 (-1169))) (-5 *2 (-640 (-1042 *5 *6)))
+ (-5 *1 (-1042 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
+ (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846)) (-5 *2 (-640 *1))
+ (-4 *1 (-1065 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
+ (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-5 *2 (-640 (-1139 *5 *6 *7 *8))) (-5 *1 (-1139 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
+ (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-5 *2 (-640 (-1139 *5 *6 *7 *8))) (-5 *1 (-1139 *5 *6 *7 *8))))
((*1 *2 *3)
- (-12 (-5 *3 (-684 *5)) (-4 *5 (-988 *4)) (-4 *4 (-555))
- (-5 *2 (-684 *4)) (-5 *1 (-688 *4 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-555)) (-4 *4 (-988 *3)) (-5 *1 (-1226 *3 *4 *2))
- (-4 *2 (-1233 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1224 *3)) (-4 *3 (-1208)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-555))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1))
+ (-4 *1 (-1201 *4 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172))))
+ ((*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
- (-4 *4 (-1045)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1045) (-846)))
- (-14 *3 (-640 (-1169))))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-789)) (-4 *4 (-846)) (-4 *5 (-307))
- (-5 *1 (-912 *3 *4 *5 *2)) (-4 *2 (-945 *5 *3 *4))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1165 *6)) (-4 *6 (-945 *5 *3 *4)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *5 (-307)) (-5 *1 (-912 *3 *4 *5 *6))))
+ (-12 (-5 *2 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *3))))
+ (-5 *1 (-593 *3)) (-4 *3 (-1045)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-323 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-131))
+ (-4 *3 (-788)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-452)) (-4 *4 (-816))
+ (-14 *5 (-1169)) (-5 *2 (-563)) (-5 *1 (-1107 *4 *5)))))
+(((*1 *2 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-169 (-225)))) (-5 *2 (-1031))
+ (-5 *1 (-750)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-336 *5 *6 *7 *8)) (-4 *5 (-430 *4)) (-4 *6 (-1233 *5))
+ (-4 *7 (-1233 (-407 *6))) (-4 *8 (-342 *5 *6 *7))
+ (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-112))
+ (-5 *1 (-907 *4 *5 *6 *7 *8))))
((*1 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *6 *4 *5))
- (-5 *1 (-912 *4 *5 *6 *2)) (-4 *4 (-789)) (-4 *5 (-846))
- (-4 *6 (-307)))))
+ (-12 (-5 *3 (-336 (-407 (-563)) *4 *5 *6))
+ (-4 *4 (-1233 (-407 (-563)))) (-4 *5 (-1233 (-407 *4)))
+ (-4 *6 (-342 (-407 (-563)) *4 *5)) (-5 *2 (-112))
+ (-5 *1 (-908 *4 *5 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-684 *4)) (-4 *4 (-363)) (-5 *2 (-1165 *4))
- (-5 *1 (-532 *4 *5 *6)) (-4 *5 (-363)) (-4 *6 (-13 (-363) (-844))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-349))
- (-5 *2
- (-2 (|:| |cont| *5)
- (|:| -2760 (-640 (-2 (|:| |irr| *3) (|:| -1650 (-563)))))))
- (-5 *1 (-216 *5 *3)) (-4 *3 (-1233 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-870)))))
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-767))
+ (-5 *1 (-449 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))))
+(((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6))
+ (-5 *2 (-640 (-2 (|:| -1442 *1) (|:| -3409 (-640 *7)))))
+ (-5 *3 (-640 *7)) (-4 *1 (-1201 *4 *5 *6 *7)))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))))
(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *2 (-846))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+ (|partial| -12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-1045)))))
(((*1 *2 *3)
(-12 (-5 *2 (-169 (-379))) (-5 *1 (-781 *3)) (-4 *3 (-611 (-379)))))
((*1 *2 *3 *4)
@@ -12469,278 +12268,323 @@
(-12 (-5 *3 (-316 (-169 *5))) (-5 *4 (-917)) (-4 *5 (-555))
(-4 *5 (-846)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379)))
(-5 *1 (-781 *5)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-640 (-961))) (-5 *1 (-291)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4407)) (-4 *1 (-601 *4 *3)) (-4 *4 (-1093))
- (-4 *3 (-1208)) (-4 *3 (-1093)) (-5 *2 (-112)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-640 *1)) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5))
- (-4 *4 (-373 *3)) (-4 *5 (-373 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-640 *3)) (-4 *3 (-1045)) (-4 *1 (-682 *3 *4 *5))
- (-4 *4 (-373 *3)) (-4 *5 (-373 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1257 *3)) (-4 *3 (-1045)) (-5 *1 (-684 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-640 *4)) (-4 *4 (-1045)) (-4 *1 (-1116 *3 *4 *5 *6))
- (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *3 *4)))))
-(((*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| (-1149 (-225)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -2516
- (-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 (-1031)) (-5 *1 (-305)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-815 *3)) (-4 *3 (-846)) (-5 *1 (-667 *3)))))
-(((*1 *1 *2)
- (-12
+ (-12 (-5 *3 (-563)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1045))
+ (-5 *1 (-321 *4 *5 *2 *6)) (-4 *6 (-945 *2 *4 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-452)) (-4 *4 (-816))
+ (-14 *5 (-1169)) (-5 *2 (-563)) (-5 *1 (-1107 *4 *5)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225)))
+ (-5 *2 (-1031)) (-5 *1 (-750)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-452))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1165 *6)) (-4 *6 (-945 *5 *3 *4)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *5 (-905)) (-5 *1 (-457 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-905)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-2 (|:| |totdeg| (-767)) (|:| -3929 *4))) (-5 *5 (-767))
+ (-4 *4 (-945 *6 *7 *8)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
(-5 *2
- (-640
- (-2
- (|:| -2387
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1257 (-316 (-225))))
- (|:| |yinit| (-640 (-225))) (|:| |intvals| (-640 (-225)))
- (|:| |g| (-316 (-225))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (|:| -2557
- (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379))
- (|:| |expense| (-379)) (|:| |accuracy| (-379))
- (|:| |intermediateResults| (-379)))))))
- (-5 *1 (-799)))))
+ (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-5 *1 (-449 *6 *7 *8 *4)))))
+(((*1 *1 *1 *1) (-4 *1 (-143)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-640 *5)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))))
+(((*1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-1045)))))
(((*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-330)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1165 *7)) (-5 *3 (-563)) (-4 *7 (-945 *6 *4 *5))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045))
+ (-5 *1 (-321 *4 *5 *6 *7)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-816)) (-14 *5 (-1169))
(-5 *2 (-563)) (-5 *1 (-1107 *4 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))))
-(((*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1 (-379))) (-5 *1 (-1036)))))
-(((*1 *2)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))))
+(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225)))
+ (-5 *2 (-1031)) (-5 *1 (-750)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-2 (|:| |den| (-563)) (|:| |gcdnum| (-563)))))
- (-4 *4 (-1233 (-407 *2))) (-5 *2 (-563)) (-5 *1 (-909 *4 *5))
- (-4 *5 (-1233 (-407 *4))))))
-(((*1 *2 *1)
- (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172))
- (-14 *6
- (-1 (-112) (-2 (|:| -2555 *5) (|:| -1654 *2))
- (-2 (|:| -2555 *5) (|:| -1654 *2))))
- (-4 *2 (-238 (-3608 *3) (-767))) (-5 *1 (-461 *3 *4 *5 *2 *6 *7))
- (-4 *5 (-846)) (-4 *7 (-945 *4 *2 (-860 *3))))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-767)) (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+ (-12 (-5 *2 (-418 (-1165 *1))) (-5 *1 (-316 *4)) (-5 *3 (-1165 *1))
+ (-4 *4 (-452)) (-4 *4 (-555)) (-4 *4 (-846))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-905)) (-5 *2 (-418 (-1165 *1))) (-5 *3 (-1165 *1)))))
+(((*1 *2 *3 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *7)
+ (|:| |polj| *7)))
+ (-4 *5 (-789)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452)) (-4 *6 (-846))
+ (-5 *2 (-112)) (-5 *1 (-449 *4 *5 *6 *7)))))
(((*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-1151)))))
-(((*1 *1) (-5 *1 (-141))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-545)) (-5 *1 (-159 *2)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-1045)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-609 *5))) (-4 *4 (-846)) (-5 *2 (-609 *5))
- (-5 *1 (-572 *4 *5)) (-4 *5 (-430 *4)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-109)) (-5 *1 (-175))))
- ((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1169)) (-5 *2 (-109)) (-5 *1 (-1078)))))
-(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-938)) (-5 *3 (-563)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563))))
- (-5 *4 (-316 (-169 (-379)))) (-5 *1 (-330))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563))))
- (-5 *4 (-316 (-379))) (-5 *1 (-330))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563))))
- (-5 *4 (-316 (-563))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-169 (-379)))))
- (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-379)))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-563)))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-169 (-379)))))
- (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-379)))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-563)))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-169 (-379)))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-379))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-563))) (-5 *1 (-330))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563))))
- (-5 *4 (-316 (-689))) (-5 *1 (-330))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563))))
- (-5 *4 (-316 (-694))) (-5 *1 (-330))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-948 (-563))))
- (-5 *4 (-316 (-696))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-689)))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-694)))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-316 (-696)))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-689)))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-694)))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-316 (-696)))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-689))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-694))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-1257 (-696))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-689))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-694))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-684 (-696))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-689))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-694))) (-5 *1 (-330))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-316 (-696))) (-5 *1 (-330))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1169)) (-5 *3 (-1151)) (-5 *1 (-330))))
- ((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1219 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1248 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-375 *4 *2))
- (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4408)))))))
+ (-12 (-5 *3 (-1165 *6)) (-4 *6 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *2 (-1165 *7)) (-5 *1 (-321 *4 *5 *6 *7))
+ (-4 *7 (-945 *6 *4 *5)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2742 *4)))
- (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
+ (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-816)) (-14 *5 (-1169))
+ (-5 *2 (-563)) (-5 *1 (-1107 *4 *5)))))
+(((*1 *2 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
+ (-5 *1 (-750)))))
(((*1 *2 *3)
- (-12 (|has| *2 (-6 (-4409 "*"))) (-4 *5 (-373 *2)) (-4 *6 (-373 *2))
- (-4 *2 (-1045)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1233 *2))
- (-4 *4 (-682 *2 *5 *6)))))
-(((*1 *2 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-563))
- (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191))))
- (-5 *2 (-1031)) (-5 *1 (-744)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
- (-4 *6 (-1059 *3 *4 *5)) (-5 *1 (-621 *3 *4 *5 *6 *7 *2))
- (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *2 (-1102 *3 *4 *5 *6)))))
-(((*1 *2)
- (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5)))
- (-5 *2 (-640 (-640 *4))) (-5 *1 (-341 *3 *4 *5 *6))
- (-4 *3 (-342 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-4 *3 (-368)) (-5 *2 (-640 (-640 *3))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-640 (-948 (-563)))) (-5 *4 (-640 (-1169)))
- (-5 *2 (-640 (-640 (-379)))) (-5 *1 (-1019)) (-5 *5 (-379))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1042 *4 *5)) (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
- (-14 *5 (-640 (-1169))) (-5 *2 (-640 (-640 (-1020 (-407 *4)))))
- (-5 *1 (-1283 *4 *5 *6)) (-14 *6 (-640 (-1169)))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
- (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7))
- (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
- (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7))
- (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
- (-5 *2 (-640 (-640 (-1020 (-407 *5))))) (-5 *1 (-1283 *5 *6 *7))
- (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
+ (-12 (-5 *2 (-418 (-1165 *1))) (-5 *1 (-316 *4)) (-5 *3 (-1165 *1))
+ (-4 *4 (-452)) (-4 *4 (-555)) (-4 *4 (-846))))
((*1 *2 *3)
- (-12 (-5 *3 (-640 (-948 *4)))
- (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
- (-5 *2 (-640 (-640 (-1020 (-407 *4))))) (-5 *1 (-1283 *4 *5 *6))
- (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
+ (-12 (-4 *1 (-905)) (-5 *2 (-418 (-1165 *1))) (-5 *3 (-1165 *1)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-5 *1 (-486 *2)) (-4 *2 (-1233 (-563))))))
-(((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-1151)) (-5 *4 (-169 (-225))) (-5 *5 (-563))
- (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1208)) (-5 *2 (-640 *1)) (-4 *1 (-1006 *3)))))
-(((*1 *2)
- (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-417 *3)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789))
- (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *3 (-1059 *4 *5 *6))
- (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2059 *1))))
- (-4 *1 (-1065 *4 *5 *6 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
+ (-12 (-5 *3 (-563)) (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-5 *2 (-1262)) (-5 *1 (-449 *4 *5 *6 *7)) (-4 *7 (-945 *4 *5 *6)))))
+(((*1 *1 *1) (-4 *1 (-143)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))))
+(((*1 *1 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *6))))
+ (-5 *4 (-1022 (-839 (-563)))) (-5 *5 (-1169)) (-5 *7 (-407 (-563)))
+ (-4 *6 (-1045)) (-5 *2 (-858)) (-5 *1 (-593 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-684 (-407 (-948 (-563)))))
- (-5 *2 (-640 (-684 (-316 (-563))))) (-5 *1 (-1027)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+ (-12 (-5 *3 (-1165 *7)) (-4 *7 (-945 *6 *4 *5)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *6 (-1045)) (-5 *2 (-1165 *6))
+ (-5 *1 (-321 *4 *5 *6 *7)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1230 *5 *4)) (-4 *4 (-816)) (-14 *5 (-1169))
+ (-5 *2 (-640 *4)) (-5 *1 (-1107 *4 *5)))))
+(((*1 *2 *3 *4 *3 *5 *3)
+ (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563))
+ (-5 *2 (-1031)) (-5 *1 (-750)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-948 *5)) (-4 *5 (-1045)) (-5 *2 (-481 *4 *5))
- (-5 *1 (-940 *4 *5)) (-14 *4 (-640 (-1169))))))
+ (-12 (-4 *1 (-905)) (-5 *2 (-418 (-1165 *1))) (-5 *3 (-1165 *1)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1262))
+ (-5 *1 (-449 *4 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2))
+ (-4 *4 (-13 (-846) (-555))))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-563))) (-4 *3 (-1045)) (-5 *1 (-593 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-563))) (-4 *1 (-1217 *3)) (-4 *3 (-1045))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-563))) (-4 *1 (-1248 *3)) (-4 *3 (-1045)))))
+(((*1 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1165 *9)) (-5 *4 (-640 *7)) (-5 *5 (-640 *8))
+ (-4 *7 (-846)) (-4 *8 (-1045)) (-4 *9 (-945 *8 *6 *7))
+ (-4 *6 (-789)) (-5 *2 (-1165 *8)) (-5 *1 (-321 *6 *7 *8 *9)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-640 (-1230 *5 *4)))
+ (-5 *1 (-1107 *4 *5)) (-5 *3 (-1230 *5 *4)))))
+(((*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3)
+ (-12 (-5 *4 (-640 (-112))) (-5 *5 (-684 (-225)))
+ (-5 *6 (-684 (-563))) (-5 *7 (-225)) (-5 *3 (-563)) (-5 *2 (-1031))
+ (-5 *1 (-750)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-640 (-1165 *5))) (-5 *3 (-1165 *5))
+ (-4 *5 (-166 *4)) (-4 *4 (-545)) (-5 *1 (-149 *4 *5))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-640 *3)) (-4 *3 (-1233 *5))
+ (-4 *5 (-1233 *4)) (-4 *4 (-349)) (-5 *1 (-358 *4 *5 *3))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-640 (-1165 (-563)))) (-5 *3 (-1165 (-563)))
+ (-5 *1 (-571))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-640 (-1165 *1))) (-5 *3 (-1165 *1))
+ (-4 *1 (-905)))))
+(((*1 *2 *3 *4 *4 *2 *2 *2 *2)
+ (-12 (-5 *2 (-563))
+ (-5 *3
+ (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-767)) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-4 *6 (-789)) (-4 *4 (-945 *5 *6 *7)) (-4 *5 (-452)) (-4 *7 (-846))
+ (-5 *1 (-449 *5 *6 *7 *4)))))
(((*1 *1) (-5 *1 (-330))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-640 (-481 *3 *4))) (-14 *3 (-640 (-1169)))
- (-4 *4 (-452)) (-5 *1 (-628 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2))
+ (-4 *4 (-13 (-846) (-555))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1085 (-839 *3))) (-4 *3 (-13 (-1193) (-955) (-29 *5)))
+ (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *2
+ (-3 (|:| |f1| (-839 *3)) (|:| |f2| (-640 (-839 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-219 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1085 (-839 *3))) (-5 *5 (-1151))
+ (-4 *3 (-13 (-1193) (-955) (-29 *6)))
+ (-4 *6 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *2
+ (-3 (|:| |f1| (-839 *3)) (|:| |f2| (-640 (-839 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-219 *6 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1085 (-839 (-316 *5))))
+ (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *2
+ (-3 (|:| |f1| (-839 (-316 *5))) (|:| |f2| (-640 (-839 (-316 *5))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-220 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-407 (-948 *6))) (-5 *4 (-1085 (-839 (-316 *6))))
+ (-5 *5 (-1151))
+ (-4 *6 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *2
+ (-3 (|:| |f1| (-839 (-316 *6))) (|:| |f2| (-640 (-839 (-316 *6))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-220 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1085 (-839 (-407 (-948 *5))))) (-5 *3 (-407 (-948 *5)))
+ (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *2
+ (-3 (|:| |f1| (-839 (-316 *5))) (|:| |f2| (-640 (-839 (-316 *5))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-220 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1085 (-839 (-407 (-948 *6))))) (-5 *5 (-1151))
+ (-5 *3 (-407 (-948 *6)))
+ (-4 *6 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *2
+ (-3 (|:| |f1| (-839 (-316 *6))) (|:| |f2| (-640 (-839 (-316 *6))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-220 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1169))
+ (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-5 *2 (-3 *3 (-640 *3))) (-5 *1 (-428 *5 *3))
+ (-4 *3 (-13 (-1193) (-955) (-29 *5)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-474 *3 *4 *5))
+ (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3)))
+ ((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379))))
+ (-5 *5 (-379)) (-5 *6 (-1057)) (-5 *2 (-1031)) (-5 *1 (-564))))
+ ((*1 *2 *3) (-12 (-5 *3 (-765)) (-5 *2 (-1031)) (-5 *1 (-564))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379))))
+ (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379))))
+ (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-316 (-379))) (-5 *4 (-1087 (-839 (-379))))
+ (-5 *2 (-1031)) (-5 *1 (-564))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379)))))
+ (-5 *2 (-1031)) (-5 *1 (-564))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379)))))
+ (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379)))))
+ (-5 *5 (-379)) (-5 *2 (-1031)) (-5 *1 (-564))))
+ ((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-316 (-379))) (-5 *4 (-640 (-1087 (-839 (-379)))))
+ (-5 *5 (-379)) (-5 *6 (-1057)) (-5 *2 (-1031)) (-5 *1 (-564))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-316 (-379))) (-5 *4 (-1085 (-839 (-379))))
+ (-5 *5 (-1151)) (-5 *2 (-1031)) (-5 *1 (-564))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-316 (-379))) (-5 *4 (-1085 (-839 (-379))))
+ (-5 *5 (-1169)) (-5 *2 (-1031)) (-5 *1 (-564))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-563)))) (-4 *5 (-1233 *4))
+ (-5 *2 (-584 (-407 *5))) (-5 *1 (-567 *4 *5)) (-5 *3 (-407 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-1169)) (-4 *5 (-147))
+ (-4 *5 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563))))
+ (-5 *2 (-3 (-316 *5) (-640 (-316 *5)))) (-5 *1 (-587 *5))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-736 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-846))
+ (-4 *3 (-38 (-407 (-563))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1169)) (-5 *1 (-948 *3)) (-4 *3 (-38 (-407 (-563))))
+ (-4 *3 (-1045))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-4 *2 (-846))
+ (-5 *1 (-1119 *3 *2 *4)) (-4 *4 (-945 *3 (-531 *2) *2))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045))
+ (-5 *1 (-1153 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1160 *3 *4 *5))
+ (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1166 *3 *4 *5))
+ (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1167 *3 *4 *5))
+ (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3)))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *1 (-1202 *3)) (-4 *3 (-38 (-407 (-563))))
+ (-4 *3 (-1045))))
+ ((*1 *1 *1 *2)
+ (-4034
+ (-12 (-5 *2 (-1169)) (-4 *1 (-1217 *3)) (-4 *3 (-1045))
+ (-12 (-4 *3 (-29 (-563))) (-4 *3 (-955)) (-4 *3 (-1193))
+ (-4 *3 (-38 (-407 (-563))))))
+ (-12 (-5 *2 (-1169)) (-4 *1 (-1217 *3)) (-4 *3 (-1045))
+ (-12 (|has| *3 (-15 -2605 ((-640 *2) *3)))
+ (|has| *3 (-15 -2062 (*3 *3 *2))) (-4 *3 (-38 (-407 (-563))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1217 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1221 *3 *4 *5))
+ (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563))))))
+ ((*1 *1 *1 *2)
+ (-4034
+ (-12 (-5 *2 (-1169)) (-4 *1 (-1238 *3)) (-4 *3 (-1045))
+ (-12 (-4 *3 (-29 (-563))) (-4 *3 (-955)) (-4 *3 (-1193))
+ (-4 *3 (-38 (-407 (-563))))))
+ (-12 (-5 *2 (-1169)) (-4 *1 (-1238 *3)) (-4 *3 (-1045))
+ (-12 (|has| *3 (-15 -2605 ((-640 *2) *3)))
+ (|has| *3 (-15 -2062 (*3 *3 *2))) (-4 *3 (-38 (-407 (-563))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1238 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1242 *3 *4 *5))
+ (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-4034
+ (-12 (-5 *2 (-1169)) (-4 *1 (-1248 *3)) (-4 *3 (-1045))
+ (-12 (-4 *3 (-29 (-563))) (-4 *3 (-955)) (-4 *3 (-1193))
+ (-4 *3 (-38 (-407 (-563))))))
+ (-12 (-5 *2 (-1169)) (-4 *1 (-1248 *3)) (-4 *3 (-1045))
+ (-12 (|has| *3 (-15 -2605 ((-640 *2) *3)))
+ (|has| *3 (-15 -2062 (*3 *3 *2))) (-4 *3 (-38 (-407 (-563))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1248 *2)) (-4 *2 (-1045)) (-4 *2 (-38 (-407 (-563))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1253 *4)) (-14 *4 (-1169)) (-5 *1 (-1249 *3 *4 *5))
+ (-4 *3 (-38 (-407 (-563)))) (-4 *3 (-1045)) (-14 *5 *3))))
+(((*1 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-407 (-563))) (-5 *1 (-593 *3)) (-4 *3 (-38 *2))
+ (-4 *3 (-1045)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)) (-5 *2 (-640 *6))
- (-5 *1 (-983 *3 *4 *5 *6)) (-4 *6 (-945 *3 *5 *4)))))
-(((*1 *2 *3 *3 *2 *4)
- (-12 (-5 *3 (-684 *2)) (-5 *4 (-563))
- (-4 *2 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $)))))
- (-4 *5 (-1233 *2)) (-5 *1 (-499 *2 *5 *6)) (-4 *6 (-409 *2 *5)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-452)))))
+ (-12 (-5 *2 (-407 (-563))) (-5 *1 (-319 *3 *4 *5))
+ (-4 *3 (-13 (-363) (-846))) (-14 *4 (-1169)) (-14 *5 *3))))
(((*1 *2 *1) (-12 (-5 *2 (-640 (-609 *1))) (-4 *1 (-302)))))
(((*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1208))))
((*1 *1 *2)
@@ -12797,11 +12641,11 @@
(-3
(|:| |nia|
(-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
(|:| |relerr| (-225))))
(|:| |mdnia|
(-2 (|:| |fn| (-316 (-225)))
- (|:| -2516 (-640 (-1087 (-839 (-225)))))
+ (|:| -4166 (-640 (-1087 (-839 (-225)))))
(|:| |abserr| (-225)) (|:| |relerr| (-225))))))
(-5 *1 (-765))))
((*1 *2 *1)
@@ -12817,13 +12661,13 @@
(-5 *2
(-3
(|:| |noa|
- (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225)))
+ (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225)))
(|:| |lb| (-640 (-839 (-225))))
(|:| |cf| (-640 (-316 (-225))))
(|:| |ub| (-640 (-839 (-225))))))
(|:| |lsa|
(-2 (|:| |lfn| (-640 (-316 (-225))))
- (|:| -2523 (-640 (-225)))))))
+ (|:| -2522 (-640 (-225)))))))
(-5 *1 (-837))))
((*1 *2 *1)
(-12
@@ -12842,26 +12686,26 @@
(-4 *4 (-789)) (-4 *5 (-846)) (-4 *1 (-972 *3 *4 *5 *6))))
((*1 *2 *1) (-12 (-4 *1 (-1034 *2)) (-4 *2 (-1208))))
((*1 *1 *2)
- (-4032
+ (-4034
(-12 (-5 *2 (-948 *3))
- (-12 (-2176 (-4 *3 (-38 (-407 (-563)))))
- (-2176 (-4 *3 (-38 (-563)))) (-4 *5 (-611 (-1169))))
+ (-12 (-2174 (-4 *3 (-38 (-407 (-563)))))
+ (-2174 (-4 *3 (-38 (-563)))) (-4 *5 (-611 (-1169))))
(-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789))
(-4 *5 (-846)))
(-12 (-5 *2 (-948 *3))
- (-12 (-2176 (-4 *3 (-545))) (-2176 (-4 *3 (-38 (-407 (-563)))))
+ (-12 (-2174 (-4 *3 (-545))) (-2174 (-4 *3 (-38 (-407 (-563)))))
(-4 *3 (-38 (-563))) (-4 *5 (-611 (-1169))))
(-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789))
(-4 *5 (-846)))
(-12 (-5 *2 (-948 *3))
- (-12 (-2176 (-4 *3 (-988 (-563)))) (-4 *3 (-38 (-407 (-563))))
+ (-12 (-2174 (-4 *3 (-988 (-563)))) (-4 *3 (-38 (-407 (-563))))
(-4 *5 (-611 (-1169))))
(-4 *3 (-1045)) (-4 *1 (-1059 *3 *4 *5)) (-4 *4 (-789))
(-4 *5 (-846)))))
((*1 *1 *2)
- (-4032
+ (-4034
(-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5))
- (-12 (-2176 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563)))
+ (-12 (-2174 (-4 *3 (-38 (-407 (-563))))) (-4 *3 (-38 (-563)))
(-4 *5 (-611 (-1169))))
(-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)))
(-12 (-5 *2 (-948 (-563))) (-4 *1 (-1059 *3 *4 *5))
@@ -12871,137 +12715,220 @@
(-12 (-5 *2 (-948 (-407 (-563)))) (-4 *1 (-1059 *3 *4 *5))
(-4 *3 (-38 (-407 (-563)))) (-4 *5 (-611 (-1169))) (-4 *3 (-1045))
(-4 *4 (-789)) (-4 *5 (-846)))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1 *8 *8))
- (-5 *5
- (-1 (-3 (-2 (|:| -3646 *7) (|:| |coeff| *7)) "failed") *7))
- (-5 *6 (-640 (-407 *8))) (-4 *7 (-363)) (-4 *8 (-1233 *7))
- (-5 *3 (-407 *8))
- (-5 *2
- (-2
- (|:| |answer|
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (|:| |a0| *7)))
- (-5 *1 (-573 *7 *8)))))
-(((*1 *2 *1 *2)
- (-12 (-4 *1 (-364 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1097)) (-5 *1 (-330)))))
-(((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-640 (-1230 *5 *4)))
+ (-5 *1 (-1107 *4 *5)) (-5 *3 (-1230 *5 *4)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3)
+ (-12 (-5 *4 (-684 (-563))) (-5 *5 (-112)) (-5 *7 (-684 (-225)))
+ (-5 *3 (-563)) (-5 *6 (-225)) (-5 *2 (-1031)) (-5 *1 (-750)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-684 *1)) (-4 *1 (-349)) (-5 *2 (-1257 *1))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-684 *1)) (-4 *1 (-145)) (-4 *1 (-905))
+ (-5 *2 (-1257 *1)))))
+(((*1 *2 *3 *4 *4 *2 *2 *2)
+ (-12 (-5 *2 (-563))
+ (-5 *3
+ (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-767)) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-4 *6 (-789)) (-4 *4 (-945 *5 *6 *7)) (-4 *5 (-452)) (-4 *7 (-846))
+ (-5 *1 (-449 *5 *6 *7 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2))
+ (-4 *4 (-13 (-846) (-555))))))
(((*1 *2 *1 *3)
- (-12 (-4 *1 (-553 *3)) (-4 *3 (-13 (-404) (-1193))) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-767)) (-5 *2 (-1230 *5 *4)) (-5 *1 (-1167 *4 *5 *6))
+ (-4 *4 (-1045)) (-14 *5 (-1169)) (-14 *6 *4)))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-767)) (-5 *2 (-1230 *5 *4)) (-5 *1 (-1249 *4 *5 *6))
+ (-4 *4 (-1045)) (-14 *5 (-1169)) (-14 *6 *4))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1135 *3 *4)) (-14 *3 (-917)) (-4 *4 (-363))
+ (-5 *1 (-989 *3 *4)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *3 *3 *3 *4 *5 *4 *6)
+ (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225)))
+ (-5 *5 (-1087 (-225))) (-5 *6 (-563)) (-5 *2 (-1203 (-922)))
+ (-5 *1 (-318))))
+ ((*1 *2 *3 *3 *3 *4 *5 *4 *6 *7)
+ (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225)))
+ (-5 *5 (-1087 (-225))) (-5 *6 (-563)) (-5 *7 (-1151))
+ (-5 *2 (-1203 (-922))) (-5 *1 (-318))))
+ ((*1 *2 *3 *3 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225)))
+ (-5 *5 (-1087 (-225))) (-5 *6 (-225)) (-5 *7 (-563))
+ (-5 *2 (-1203 (-922))) (-5 *1 (-318))))
+ ((*1 *2 *3 *3 *3 *4 *5 *6 *7 *8)
+ (-12 (-5 *3 (-316 (-563))) (-5 *4 (-1 (-225) (-225)))
+ (-5 *5 (-1087 (-225))) (-5 *6 (-225)) (-5 *7 (-563)) (-5 *8 (-1151))
+ (-5 *2 (-1203 (-922))) (-5 *1 (-318)))))
+(((*1 *1 *1) (|partial| -4 *1 (-145))) ((*1 *1 *1) (-4 *1 (-349)))
+ ((*1 *1 *1) (|partial| -12 (-4 *1 (-145)) (-4 *1 (-905)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1262))
+ (-5 *1 (-449 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2))
+ (-4 *4 (-13 (-846) (-555))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169))
+ (-14 *4 *2))))
+(((*1 *1 *1) (-12 (-4 *1 (-430 *2)) (-4 *2 (-846)) (-4 *2 (-1045))))
+ ((*1 *1 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-318)) (-5 *3 (-225)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-858)) (-5 *1 (-1149 *3)) (-4 *3 (-1093))
+ (-4 *3 (-1208)))))
+(((*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1151)) (-5 *1 (-782)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 *8)) (-5 *4 (-767)) (-4 *8 (-945 *5 *7 *6))
- (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169))))
- (-4 *7 (-789))
- (-5 *2
- (-640
- (-2 (|:| |det| *8) (|:| |rows| (-640 (-563)))
- (|:| |cols| (-640 (-563))))))
- (-5 *1 (-920 *5 *6 *7 *8)))))
-(((*1 *2 *3) (-12 (-5 *3 (-837)) (-5 *2 (-1031)) (-5 *1 (-836))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-316 (-379)))) (-5 *4 (-640 (-379)))
- (-5 *2 (-1031)) (-5 *1 (-836)))))
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-846)) (-4 *5 (-905)) (-4 *6 (-789))
+ (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-418 (-1165 *8)))
+ (-5 *1 (-902 *5 *6 *7 *8)) (-5 *4 (-1165 *8))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-905)) (-4 *5 (-1233 *4)) (-5 *2 (-418 (-1165 *5)))
+ (-5 *1 (-903 *4 *5)) (-5 *3 (-1165 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1151))
- (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *2 (-112)) (-5 *1 (-224 *4 *5)) (-4 *5 (-13 (-1193) (-29 *4))))))
-(((*1 *2 *1) (-12 (-4 *1 (-326 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788))))
- ((*1 *2 *1) (-12 (-4 *1 (-704 *3)) (-4 *3 (-1045)) (-5 *2 (-767))))
- ((*1 *2 *1) (-12 (-4 *1 (-848 *3)) (-4 *3 (-1045)) (-5 *2 (-767))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-640 *6)) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 (-767)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-945 *4 *5 *3)) (-4 *4 (-1045)) (-4 *5 (-789))
- (-4 *3 (-846)) (-5 *2 (-767)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
- (-4 *3 (-367 *4))))
- ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-563))
+ (-5 *1 (-449 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-27))
- (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
- (-4 *5 (-1233 *4)) (-5 *2 (-640 (-648 (-407 *5))))
- (-5 *1 (-652 *4 *5)) (-5 *3 (-648 (-407 *5))))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-767)) (-4 *5 (-555))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))))
-(((*1 *1 *2 *2) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))))
-(((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *4 (-1 (-3 (-563) "failed") *5)) (-4 *5 (-1045))
- (-5 *2 (-563)) (-5 *1 (-543 *5 *3)) (-4 *3 (-1233 *5))))
- ((*1 *2 *3 *4 *2 *5)
- (|partial| -12 (-5 *5 (-1 (-3 (-563) "failed") *4)) (-4 *4 (-1045))
- (-5 *2 (-563)) (-5 *1 (-543 *4 *3)) (-4 *3 (-1233 *4))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1 (-3 (-563) "failed") *4)) (-4 *4 (-1045))
- (-5 *2 (-563)) (-5 *1 (-543 *4 *3)) (-4 *3 (-1233 *4)))))
-(((*1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1172)))))
-(((*1 *1 *1 *1)
- (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767))
- (-4 *4 (-172))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-158 *4 *2))
- (-4 *2 (-430 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085 *2)) (-4 *2 (-430 *4)) (-4 *4 (-13 (-846) (-555)))
- (-5 *1 (-158 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-160))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1169))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-465 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-767)) (-5 *1 (-1277 *3 *4)) (-4 *3 (-846))
- (-4 *4 (-172)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1132))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-545))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1031)) (-5 *3 (-1169)) (-5 *1 (-192)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-640 *6)) (-4 *6 (-846)) (-4 *4 (-363)) (-4 *5 (-789))
- (-5 *1 (-504 *4 *5 *6 *2)) (-4 *2 (-945 *4 *5 *6))))
- ((*1 *1 *1 *2)
- (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *1 (-504 *3 *4 *5 *2)) (-4 *2 (-945 *3 *4 *5)))))
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2))
+ (-4 *4 (-13 (-846) (-555))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169))
+ (-14 *4 *2))))
(((*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-141))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-144)))))
+(((*1 *1 *1) (-12 (-4 *1 (-430 *2)) (-4 *2 (-846)) (-4 *2 (-555))))
+ ((*1 *1 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+(((*1 *2 *3 *4 *3 *3)
+ (-12 (-5 *3 (-294 *6)) (-5 *4 (-114)) (-4 *6 (-430 *5))
+ (-4 *5 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52))
+ (-5 *1 (-317 *5 *6))))
+ ((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-294 *7)) (-5 *4 (-114)) (-5 *5 (-640 *7))
+ (-4 *7 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536))))
+ (-5 *2 (-52)) (-5 *1 (-317 *6 *7))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-640 (-294 *7))) (-5 *4 (-640 (-114))) (-5 *5 (-294 *7))
+ (-4 *7 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536))))
+ (-5 *2 (-52)) (-5 *1 (-317 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-640 (-294 *8))) (-5 *4 (-640 (-114))) (-5 *5 (-294 *8))
+ (-5 *6 (-640 *8)) (-4 *8 (-430 *7))
+ (-4 *7 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52))
+ (-5 *1 (-317 *7 *8))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-640 *7)) (-5 *4 (-640 (-114))) (-5 *5 (-294 *7))
+ (-4 *7 (-430 *6)) (-4 *6 (-13 (-846) (-555) (-611 (-536))))
+ (-5 *2 (-52)) (-5 *1 (-317 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 (-114))) (-5 *6 (-640 (-294 *8)))
+ (-4 *8 (-430 *7)) (-5 *5 (-294 *8))
+ (-4 *7 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52))
+ (-5 *1 (-317 *7 *8))))
+ ((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-294 *5)) (-5 *4 (-114)) (-4 *5 (-430 *6))
+ (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52))
+ (-5 *1 (-317 *6 *5))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-114)) (-5 *5 (-294 *3)) (-4 *3 (-430 *6))
+ (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52))
+ (-5 *1 (-317 *6 *3))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-114)) (-5 *5 (-294 *3)) (-4 *3 (-430 *6))
+ (-4 *6 (-13 (-846) (-555) (-611 (-536)))) (-5 *2 (-52))
+ (-5 *1 (-317 *6 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-114)) (-5 *5 (-294 *3)) (-5 *6 (-640 *3))
+ (-4 *3 (-430 *7)) (-4 *7 (-13 (-846) (-555) (-611 (-536))))
+ (-5 *2 (-52)) (-5 *1 (-317 *7 *3)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3)) (-4 *3 (-1093))
+ (-4 *3 (-1208)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-917)) (-5 *1 (-782)))))
+(((*1 *2 *3) (-12 (-5 *3 (-536)) (-5 *1 (-535 *2)) (-4 *2 (-1208))))
+ ((*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-536)))))
+(((*1 *2)
+ (-12 (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-905))
+ (-5 *1 (-457 *3 *4 *2 *5)) (-4 *5 (-945 *2 *3 *4))))
+ ((*1 *2)
+ (-12 (-4 *3 (-789)) (-4 *4 (-846)) (-4 *2 (-905))
+ (-5 *1 (-902 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4))))
+ ((*1 *2) (-12 (-4 *2 (-905)) (-5 *1 (-903 *2 *3)) (-4 *3 (-1233 *2)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-449 *3 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 *2)) (-4 *2 (-430 *4)) (-5 *1 (-158 *4 *2))
+ (-4 *4 (-13 (-846) (-555))))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
+ (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169))
+ (-14 *4 *2))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-141))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-144)))))
+(((*1 *2 *2)
+ (-12
+ (-5 *2
+ (-983 (-407 (-563)) (-860 *3) (-240 *4 (-767))
+ (-247 *3 (-407 (-563)))))
+ (-14 *3 (-640 (-1169))) (-14 *4 (-767)) (-5 *1 (-982 *3 *4)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3))
- (-4 *3 (-1093)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-316 *3)) (-4 *3 (-555)) (-4 *3 (-846)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-563)) (-4 *4 (-13 (-555) (-147))) (-5 *1 (-537 *4 *2))
+ (-4 *2 (-1248 *4))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-563)) (-4 *4 (-13 (-363) (-368) (-611 *3)))
+ (-4 *5 (-1233 *4)) (-4 *6 (-720 *4 *5)) (-5 *1 (-541 *4 *5 *6 *2))
+ (-4 *2 (-1248 *6))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-563)) (-4 *4 (-13 (-363) (-368) (-611 *3)))
+ (-5 *1 (-542 *4 *2)) (-4 *2 (-1248 *4))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-13 (-555) (-147)))
+ (-5 *1 (-1145 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-1151)) (-5 *1 (-782)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-905)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-418 (-1165 *7)))
+ (-5 *1 (-902 *4 *5 *6 *7)) (-5 *3 (-1165 *7))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-905)) (-4 *5 (-1233 *4)) (-5 *2 (-418 (-1165 *5)))
+ (-5 *1 (-903 *4 *5)) (-5 *3 (-1165 *5)))))
+(((*1 *2 *2 *2)
+ (-12
+ (-5 *2
+ (-640
+ (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-767)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *4 (-789)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452)) (-4 *5 (-846))
+ (-5 *1 (-449 *3 *4 *5 *6)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2))
+ (-4 *2 (-430 *3)))))
+(((*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1093))))
+ ((*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1093)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169))
+ (-14 *4 *2))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34)))
- (-4 *4 (-13 (-1093) (-34))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-640 *1)) (-4 *1 (-1059 *4 *5 *6)) (-4 *4 (-1045))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1201 *4 *5 *6 *3)) (-4 *4 (-555)) (-4 *5 (-789))
- (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *2 *3) (-12 (-5 *3 (-536)) (-5 *1 (-535 *2)) (-4 *2 (-1208))))
- ((*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-536)))))
+ (-12 (-5 *2 (-563)) (-5 *1 (-316 *3)) (-4 *3 (-555)) (-4 *3 (-846)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-555) (-147))) (-5 *1 (-537 *3 *2))
(-4 *2 (-1248 *3))))
@@ -13014,374 +12941,264 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-13 (-555) (-147)))
(-5 *1 (-1145 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-452)) (-4 *3 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
- (-5 *1 (-449 *4 *3 *5 *6)) (-4 *6 (-945 *4 *3 *5)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-141))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-144)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *1 (-873 *2)) (-4 *2 (-1208))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *1 (-875 *2)) (-4 *2 (-1208))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-767)) (-5 *1 (-878 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *1) (-12 (-5 *2 (-213 4 (-129))) (-5 *1 (-578)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-640
- (-2 (|:| -2522 (-767))
- (|:| |eqns|
- (-640
- (-2 (|:| |det| *7) (|:| |rows| (-640 (-563)))
- (|:| |cols| (-640 (-563))))))
- (|:| |fgb| (-640 *7)))))
- (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147)))
- (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-767))
- (-5 *1 (-920 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-640 (-1165 (-563)))) (-5 *1 (-191)) (-5 *3 (-563)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1142 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-585 *2)) (-4 *2 (-545)))))
-(((*1 *2 *3 *4 *2 *2 *5)
- (|partial| -12 (-5 *2 (-839 *4)) (-5 *3 (-609 *4)) (-5 *5 (-112))
- (-4 *4 (-13 (-1193) (-29 *6)))
- (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-224 *6 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-363) (-844)))
- (-5 *2 (-2 (|:| |start| *3) (|:| -2760 (-418 *3))))
- (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-78 FUNCTN))))
- (-5 *2 (-1031)) (-5 *1 (-744)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-5 *2 (-563))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093))
- (-4 *4 (-1093)))))
-(((*1 *2)
- (-12 (-4 *3 (-555)) (-5 *2 (-640 (-684 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-417 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045))
- (-5 *2 (-640 (-640 (-939 *3))))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-640 (-640 (-939 *4)))) (-5 *3 (-112)) (-4 *4 (-1045))
- (-4 *1 (-1127 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-640 (-640 (-939 *3)))) (-4 *3 (-1045))
- (-4 *1 (-1127 *3))))
- ((*1 *1 *1 *2 *3 *3)
- (-12 (-5 *2 (-640 (-640 (-640 *4)))) (-5 *3 (-112))
- (-4 *1 (-1127 *4)) (-4 *4 (-1045))))
- ((*1 *1 *1 *2 *3 *3)
- (-12 (-5 *2 (-640 (-640 (-939 *4)))) (-5 *3 (-112))
- (-4 *1 (-1127 *4)) (-4 *4 (-1045))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-640 (-640 (-640 *5)))) (-5 *3 (-640 (-171)))
- (-5 *4 (-171)) (-4 *1 (-1127 *5)) (-4 *5 (-1045))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-640 (-640 (-939 *5)))) (-5 *3 (-640 (-171)))
- (-5 *4 (-171)) (-4 *1 (-1127 *5)) (-4 *5 (-1045)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-103 *3))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1093)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1151)) (-5 *3 (-819)) (-5 *1 (-818)))))
-(((*1 *2 *3) (-12 (-5 *3 (-112)) (-5 *2 (-1151)) (-5 *1 (-52)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-555) (-147))) (-5 *2 (-640 *3))
- (-5 *1 (-1227 *4 *3)) (-4 *3 (-1233 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-846)) (-4 *5 (-905)) (-4 *6 (-789))
- (-4 *8 (-945 *5 *6 *7)) (-5 *2 (-418 (-1165 *8)))
- (-5 *1 (-902 *5 *6 *7 *8)) (-5 *4 (-1165 *8))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-905)) (-4 *5 (-1233 *4)) (-5 *2 (-418 (-1165 *5)))
- (-5 *1 (-903 *4 *5)) (-5 *3 (-1165 *5)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1208)) (-5 *1 (-375 *4 *2))
- (-4 *2 (-13 (-373 *4) (-10 -7 (-6 -4408)))))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-555)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-755)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-735 *3)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-363)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4))
- (-5 *2 (-767)) (-5 *1 (-521 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-4 *3 (-555)) (-5 *2 (-767))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *4 (-172)) (-4 *5 (-373 *4))
- (-4 *6 (-373 *4)) (-5 *2 (-767)) (-5 *1 (-683 *4 *5 *6 *3))
- (-4 *3 (-682 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-555))
- (-5 *2 (-767)))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1169)) (-5 *2 (-1173)) (-5 *1 (-1172)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-1169))
- (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-4 *4 (-13 (-29 *6) (-1193) (-955)))
- (-5 *2 (-2 (|:| |particular| *4) (|:| -4315 (-640 *4))))
- (-5 *1 (-797 *6 *4 *3)) (-4 *3 (-651 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-765))
- (-5 *2
- (-2 (|:| -1994 (-379)) (|:| -3348 (-1151))
- (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))))
- (-5 *1 (-564))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-765)) (-5 *4 (-1057))
- (-5 *2
- (-2 (|:| -1994 (-379)) (|:| -3348 (-1151))
- (|:| |explanations| (-640 (-1151))) (|:| |extra| (-1031))))
- (-5 *1 (-564))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-783)) (-5 *3 (-1057))
- (-5 *4
- (-2 (|:| |fn| (-316 (-225)))
- (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *2
- (-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))
- (|:| |extra| (-1031))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-783)) (-5 *3 (-1057))
- (-5 *4
- (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *2
- (-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))
- (|:| |extra| (-1031))))))
+ (|partial| -12 (-5 *3 (-948 (-169 *4))) (-4 *4 (-172))
+ (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4))))
((*1 *2 *3 *4)
- (-12 (-4 *1 (-796)) (-5 *3 (-1057))
- (-5 *4
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
- (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2 (-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))))))
+ (|partial| -12 (-5 *3 (-948 (-169 *5))) (-5 *4 (-917)) (-4 *5 (-172))
+ (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-804))
- (-5 *2
- (-2 (|:| -1994 (-379)) (|:| -3348 (-1151))
- (|:| |explanations| (-640 (-1151)))))
- (-5 *1 (-801))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-804)) (-5 *4 (-1057))
- (-5 *2
- (-2 (|:| -1994 (-379)) (|:| -3348 (-1151))
- (|:| |explanations| (-640 (-1151)))))
- (-5 *1 (-801))))
+ (|partial| -12 (-5 *3 (-948 *4)) (-4 *4 (-1045))
+ (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4))))
((*1 *2 *3 *4)
- (-12 (-4 *1 (-835)) (-5 *3 (-1057))
- (-5 *4
- (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))
- (-5 *2 (-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))))))
+ (|partial| -12 (-5 *3 (-948 *5)) (-5 *4 (-917)) (-4 *5 (-1045))
+ (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555))
+ (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4))))
((*1 *2 *3 *4)
- (-12 (-4 *1 (-835)) (-5 *3 (-1057))
- (-5 *4
- (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225)))
- (|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225))))
- (|:| |ub| (-640 (-839 (-225))))))
- (-5 *2 (-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))))))
+ (|partial| -12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-917)) (-4 *5 (-555))
+ (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-837))
- (-5 *2
- (-2 (|:| -1994 (-379)) (|:| -3348 (-1151))
- (|:| |explanations| (-640 (-1151)))))
- (-5 *1 (-836))))
+ (|partial| -12 (-5 *3 (-407 (-948 (-169 *4)))) (-4 *4 (-555))
+ (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-837)) (-5 *4 (-1057))
- (-5 *2
- (-2 (|:| -1994 (-379)) (|:| -3348 (-1151))
- (|:| |explanations| (-640 (-1151)))))
- (-5 *1 (-836))))
+ (|partial| -12 (-5 *3 (-407 (-948 (-169 *5)))) (-5 *4 (-917))
+ (-4 *5 (-555)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379)))
+ (-5 *1 (-781 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-316 *4)) (-4 *4 (-555)) (-4 *4 (-846))
+ (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4))))
((*1 *2 *3 *4)
- (-12 (-4 *1 (-891)) (-5 *3 (-1057))
- (-5 *4
- (-2 (|:| |pde| (-640 (-316 (-225))))
- (|:| |constraints|
- (-640
- (-2 (|:| |start| (-225)) (|:| |finish| (-225))
- (|:| |grid| (-767)) (|:| |boundaryType| (-563))
- (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225))))))
- (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151))
- (|:| |tol| (-225))))
- (-5 *2 (-2 (|:| -1994 (-379)) (|:| |explanations| (-1151))))))
+ (|partial| -12 (-5 *3 (-316 *5)) (-5 *4 (-917)) (-4 *5 (-555))
+ (-4 *5 (-846)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379)))
+ (-5 *1 (-781 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-894))
- (-5 *2
- (-2 (|:| -1994 (-379)) (|:| -3348 (-1151))
- (|:| |explanations| (-640 (-1151)))))
- (-5 *1 (-893))))
+ (|partial| -12 (-5 *3 (-316 (-169 *4))) (-4 *4 (-555)) (-4 *4 (-846))
+ (-4 *4 (-611 (-379))) (-5 *2 (-169 (-379))) (-5 *1 (-781 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-894)) (-5 *4 (-1057))
- (-5 *2
- (-2 (|:| -1994 (-379)) (|:| -3348 (-1151))
- (|:| |explanations| (-640 (-1151)))))
- (-5 *1 (-893)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922))))
- ((*1 *2 *1) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-4 *1 (-323 *4 *2)) (-4 *4 (-1093))
- (-4 *2 (-131)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
- (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4))))
- (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-829 *3)) (-4 *3 (-1093))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1093)))))
+ (|partial| -12 (-5 *3 (-316 (-169 *5))) (-5 *4 (-917)) (-4 *5 (-555))
+ (-4 *5 (-846)) (-4 *5 (-611 (-379))) (-5 *2 (-169 (-379)))
+ (-5 *1 (-781 *5)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-417 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-316 (-225))) (-5 *2 (-225)) (-5 *1 (-305)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-767)) (-5 *2 (-1230 *5 *4)) (-5 *1 (-1167 *4 *5 *6))
- (-4 *4 (-1045)) (-14 *5 (-1169)) (-14 *6 *4)))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-767)) (-5 *2 (-1230 *5 *4)) (-5 *1 (-1249 *4 *5 *6))
- (-4 *4 (-1045)) (-14 *5 (-1169)) (-14 *6 *4))))
+ (-12 (-4 *4 (-905)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-418 (-1165 *7)))
+ (-5 *1 (-902 *4 *5 *6 *7)) (-5 *3 (-1165 *7))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-905)) (-4 *5 (-1233 *4)) (-5 *2 (-418 (-1165 *5)))
+ (-5 *1 (-903 *4 *5)) (-5 *3 (-1165 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-677 *2)) (-4 *2 (-1093))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-640 *5) (-640 *5))) (-5 *4 (-563))
- (-5 *2 (-640 *5)) (-5 *1 (-677 *5)) (-4 *5 (-1093)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-767)) (|:| |poli| *2)
+ (|:| |polj| *2)))
+ (-4 *5 (-789)) (-4 *2 (-945 *4 *5 *6)) (-5 *1 (-449 *4 *5 *6 *2))
+ (-4 *4 (-452)) (-4 *6 (-846)))))
+(((*1 *1) (-5 *1 (-157))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-1045))
+ (-5 *1 (-1153 *4))))
+ ((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-563)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045))
+ (-14 *4 (-1169)) (-14 *5 *3))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-862 *4 *5 *6 *7))
- (-4 *4 (-1045)) (-14 *5 (-640 (-1169))) (-14 *6 (-640 *3))
- (-14 *7 *3)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-767)) (-4 *4 (-1045)) (-4 *5 (-846)) (-4 *6 (-789))
- (-14 *8 (-640 *5)) (-5 *2 (-1262))
- (-5 *1 (-1269 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-945 *4 *6 *5))
- (-14 *9 (-640 *3)) (-14 *10 *3))))
+ (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1093)) (-4 *6 (-1093))
+ (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-679 *4 *5 *6)) (-4 *5 (-1093)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-307)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-555) (-147))) (-5 *1 (-537 *3 *2))
+ (-4 *2 (-1248 *3))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-4 *4 (-1233 *3))
+ (-4 *5 (-720 *3 *4)) (-5 *1 (-541 *3 *4 *5 *2)) (-4 *2 (-1248 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-5 *1 (-542 *3 *2))
+ (-4 *2 (-1248 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1149 *3)) (-4 *3 (-13 (-555) (-147)))
+ (-5 *1 (-1145 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1149 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-192))))
+ (|partial| -12 (-5 *3 (-948 *4)) (-4 *4 (-1045)) (-4 *4 (-611 *2))
+ (-5 *2 (-379)) (-5 *1 (-781 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-948 *5)) (-5 *4 (-917)) (-4 *5 (-1045))
+ (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-1149 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-300))))
+ (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555))
+ (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-407 (-948 *5))) (-5 *4 (-917)) (-4 *5 (-555))
+ (-4 *5 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-1149 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-305)))))
+ (|partial| -12 (-5 *3 (-316 *4)) (-4 *4 (-555)) (-4 *4 (-846))
+ (-4 *4 (-611 *2)) (-5 *2 (-379)) (-5 *1 (-781 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-316 *5)) (-5 *4 (-917)) (-4 *5 (-555))
+ (-4 *5 (-846)) (-4 *5 (-611 *2)) (-5 *2 (-379))
+ (-5 *1 (-781 *5)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-755)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-640 (-1165 *7))) (-5 *3 (-1165 *7))
+ (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-905)) (-4 *5 (-789))
+ (-4 *6 (-846)) (-5 *1 (-902 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-640 (-1165 *5))) (-5 *3 (-1165 *5))
+ (-4 *5 (-1233 *4)) (-4 *4 (-905)) (-5 *1 (-903 *4 *5)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-640 (-2 (|:| |totdeg| (-767)) (|:| -3929 *3))))
+ (-5 *4 (-767)) (-4 *3 (-945 *5 *6 *7)) (-4 *5 (-452)) (-4 *6 (-789))
+ (-4 *7 (-846)) (-5 *1 (-449 *5 *6 *7 *3)))))
+(((*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-157)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169))
+ (-14 *4 *2))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-5 *2 (-563))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1093)) (-4 *5 (-1093))
+ (-4 *6 (-1093)) (-5 *2 (-1 *6 *5)) (-5 *1 (-679 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-307)) (-5 *2 (-767)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-555) (-147))) (-5 *1 (-537 *3 *2))
+ (-4 *2 (-1248 *3))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-4 *4 (-1233 *3))
+ (-4 *5 (-720 *3 *4)) (-5 *1 (-541 *3 *4 *5 *2)) (-4 *2 (-1248 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-5 *1 (-542 *3 *2))
+ (-4 *2 (-1248 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1149 *3)) (-4 *3 (-13 (-555) (-147)))
+ (-5 *1 (-1145 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-767)) (-5 *1 (-779 *2)) (-4 *2 (-38 (-407 (-563))))
+ (-4 *2 (-172)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-640 (-1165 *7))) (-5 *3 (-1165 *7))
+ (-4 *7 (-945 *5 *6 *4)) (-4 *5 (-905)) (-4 *6 (-789))
+ (-4 *4 (-846)) (-5 *1 (-902 *5 *6 *4 *7)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-452)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *1 (-449 *3 *4 *5 *2)) (-4 *2 (-945 *3 *4 *5)))))
+(((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *4 (-225))
+ (-5 *2
+ (-2 (|:| |brans| (-640 (-640 (-939 *4))))
+ (|:| |xValues| (-1087 *4)) (|:| |yValues| (-1087 *4))))
+ (-5 *1 (-153)) (-5 *3 (-640 (-640 (-939 *4)))))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-1045))
+ (-5 *1 (-1153 *4))))
+ ((*1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-563)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045))
+ (-14 *4 (-1169)) (-14 *5 *3))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-5 *2 (-563))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1093)) (-4 *4 (-1093))
(-4 *6 (-1093)) (-5 *2 (-1 *6 *5)) (-5 *1 (-679 *5 *4 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1169)) (-4 *5 (-363)) (-5 *2 (-640 (-1202 *5)))
- (-5 *1 (-1265 *5)) (-5 *4 (-1202 *5)))))
-(((*1 *2 *2) (-12 (-5 *1 (-957 *2)) (-4 *2 (-545)))))
-(((*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-640 (-640 *3))) (-4 *3 (-1093)) (-5 *1 (-901 *3)))))
+(((*1 *2 *1 *1 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1)))
+ (-4 *1 (-307))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4334 *1)))
+ (-4 *1 (-307)))))
+(((*1 *1 *1) (|partial| -4 *1 (-1144))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-767)) (-5 *1 (-779 *2)) (-4 *2 (-38 (-407 (-563))))
+ (-4 *2 (-172)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-3
- (|:| |noa|
- (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225)))
- (|:| |lb| (-640 (-839 (-225))))
- (|:| |cf| (-640 (-316 (-225))))
- (|:| |ub| (-640 (-839 (-225))))))
- (|:| |lsa|
- (-2 (|:| |lfn| (-640 (-316 (-225))))
- (|:| -2523 (-640 (-225)))))))
- (-5 *2 (-640 (-1151))) (-5 *1 (-267)))))
-(((*1 *2 *1) (-12 (-5 *2 (-418 *3)) (-5 *1 (-910 *3)) (-4 *3 (-307)))))
+ (-12 (-5 *3 (-923))
+ (-5 *2
+ (-2 (|:| |brans| (-640 (-640 (-939 (-225)))))
+ (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))))
+ (-5 *1 (-153))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-923)) (-5 *4 (-407 (-563)))
+ (-5 *2
+ (-2 (|:| |brans| (-640 (-640 (-939 (-225)))))
+ (|:| |xValues| (-1087 (-225))) (|:| |yValues| (-1087 (-225)))))
+ (-5 *1 (-153)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-1045))
+ (-5 *1 (-1153 *4))))
+ ((*1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-563)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045))
+ (-14 *4 (-1169)) (-14 *5 *3))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-5 *2 (-563))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1093)) (-4 *5 (-1093))
+ (-5 *2 (-1 *5 *4)) (-5 *1 (-678 *4 *5)))))
+(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-640 *1)) (-4 *1 (-307)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1142 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-948 *5)) (-4 *5 (-1045)) (-5 *2 (-247 *4 *5))
+ (-5 *1 (-940 *4 *5)) (-14 *4 (-640 (-1169))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-525)))))
(((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-640 (-263))) (-5 *4 (-1169))
(-5 *1 (-262 *2)) (-4 *2 (-1208))))
((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-640 (-263))) (-5 *4 (-1169)) (-5 *2 (-52))
(-5 *1 (-263)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
- (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2 (-379)) (-5 *1 (-205)))))
(((*1 *2 *3 *1)
- (-12 (-4 *1 (-972 *4 *5 *6 *3)) (-4 *4 (-1045)) (-4 *5 (-789))
- (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-4 *4 (-555))
- (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-684 *6)) (-5 *5 (-1 (-418 (-1165 *6)) (-1165 *6)))
- (-4 *6 (-363))
- (-5 *2
- (-640
- (-2 (|:| |outval| *7) (|:| |outmult| (-563))
- (|:| |outvect| (-640 (-684 *7))))))
- (-5 *1 (-532 *6 *7 *4)) (-4 *7 (-363)) (-4 *4 (-13 (-363) (-844))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-846)) (-5 *4 (-640 *6))
- (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-640 *4))))
- (-5 *1 (-1179 *6)) (-5 *5 (-640 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4)
- (-247 *4 (-407 (-563)))))
- (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *2 (-112))
- (-5 *1 (-505 *4 *5)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-141))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-144)))))
+ (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-151 *2))
+ (-4 *2 (-1208)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-5 *2 (-563))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1093)) (-4 *5 (-1093))
+ (-5 *2 (-1 *5)) (-5 *1 (-678 *4 *5)))))
+(((*1 *2 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-844)) (-5 *1 (-303 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1142 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-1045)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-307)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4))
+ (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045))
+ (-5 *2 (-948 *5)) (-5 *1 (-940 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-525)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4))
(-5 *2
- (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3)))
- (-5 *1 (-1117 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-1 (-112) *8))) (-4 *8 (-1059 *5 *6 *7))
- (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846))
- (-5 *2 (-2 (|:| |goodPols| (-640 *8)) (|:| |badPols| (-640 *8))))
- (-5 *1 (-973 *5 *6 *7 *8)) (-5 *4 (-640 *8)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225)))
- (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-79 LSFUN1))))
- (-5 *2 (-1031)) (-5 *1 (-749)))))
-(((*1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-21)) (-4 *2 (-1208)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212))
- (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1 *8 *8))
- (-5 *5
- (-1 (-2 (|:| |ans| *7) (|:| -1701 *7) (|:| |sol?| (-112)))
- (-563) *7))
- (-5 *6 (-640 (-407 *8))) (-4 *7 (-363)) (-4 *8 (-1233 *7))
- (-5 *3 (-407 *8))
- (-5 *2
- (-2
- (|:| |answer|
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (|:| |a0| *7)))
- (-5 *1 (-573 *7 *8)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1151) (-770))) (-5 *1 (-114)))))
+ (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-407 *5))
+ (|:| |c2| (-407 *5)) (|:| |deg| (-767))))
+ (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1233 (-407 *5))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1245 *3)) (-4 *3 (-1208)) (-5 *2 (-767)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-4 *1 (-57 *4 *2 *5)) (-4 *4 (-1208))
+ (-4 *5 (-373 *4)) (-4 *2 (-373 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-4 *1 (-1048 *4 *5 *6 *2 *7)) (-4 *6 (-1045))
+ (-4 *7 (-238 *4 *6)) (-4 *2 (-238 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-678 *4 *3)) (-4 *4 (-1093))
+ (-4 *3 (-1093)))))
(((*1 *2 *2 *3)
(-12 (-5 *2 (-888 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1093))
(-4 *5 (-1208)) (-5 *1 (-886 *4 *5))))
@@ -13409,132 +13226,228 @@
(-4 *6 (-13 (-430 *5) (-882 *4) (-611 (-888 *4)))) (-4 *4 (-1093))
(-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4))))
(-5 *1 (-1069 *4 *5 *6)))))
-(((*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))))
-(((*1 *1) (-5 *1 (-157)))
- ((*1 *2 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1201 *3 *4 *5 *6)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-640 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-112))
- (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
- (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2059 *4))))
- (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-684 *5))) (-4 *5 (-307)) (-4 *5 (-1045))
- (-5 *2 (-1257 (-1257 *5))) (-5 *1 (-1025 *5)) (-5 *4 (-1257 *5)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1245 *3)) (-4 *3 (-1208)) (-5 *2 (-767)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-858)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1045)) (-14 *3 (-640 (-1169)))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1045) (-846)))
- (-14 *3 (-640 (-1169))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-917)) (-4 *1 (-238 *3 *4)) (-4 *4 (-1045))
- (-4 *4 (-1208))))
- ((*1 *1 *2)
- (-12 (-14 *3 (-640 (-1169))) (-4 *4 (-172))
- (-4 *5 (-238 (-3608 *3) (-767)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2555 *2) (|:| -1654 *5))
- (-2 (|:| -2555 *2) (|:| -1654 *5))))
- (-5 *1 (-461 *3 *4 *2 *5 *6 *7)) (-4 *2 (-846))
- (-4 *7 (-945 *4 *5 (-860 *3)))))
- ((*1 *2 *2) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-436)))))
+ (-12 (-5 *3 (-640 (-225))) (-5 *4 (-767)) (-5 *2 (-684 (-225)))
+ (-5 *1 (-305)))))
+(((*1 *2 *3 *1 *4 *4 *4 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-5 *2 (-640 (-1023 *5 *6 *7 *3))) (-5 *1 (-1023 *5 *6 *7 *3))
+ (-4 *3 (-1059 *5 *6 *7))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-640 *6)) (-4 *1 (-1065 *3 *4 *5 *6)) (-4 *3 (-452))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *1 (-1065 *3 *4 *5 *2)) (-4 *3 (-452)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5))))
+ ((*1 *2 *3 *1 *4 *4 *4 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-5 *2 (-640 (-1139 *5 *6 *7 *3))) (-5 *1 (-1139 *5 *6 *7 *3))
+ (-4 *3 (-1059 *5 *6 *7)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-640 (-778 *3))) (-5 *1 (-778 *3)) (-4 *3 (-555))
+ (-4 *3 (-1045)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-481 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045))
+ (-5 *2 (-948 *5)) (-5 *1 (-940 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-1207))) (-5 *1 (-524)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1233 *2)) (-4 *2 (-1212)) (-5 *1 (-148 *2 *4 *3))
+ (-4 *3 (-1233 (-407 *4))))))
+(((*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-4 *1 (-57 *4 *5 *2)) (-4 *4 (-1208))
+ (-4 *5 (-373 *4)) (-4 *2 (-373 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-4 *1 (-1048 *4 *5 *6 *7 *2)) (-4 *6 (-1045))
+ (-4 *7 (-238 *5 *6)) (-4 *2 (-238 *4 *6)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 (-767) *2)) (-5 *4 (-767)) (-4 *2 (-1093))
+ (-5 *1 (-673 *2))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1 *3 (-767) *3)) (-4 *3 (-1093)) (-5 *1 (-677 *3)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-103 *3)))))
+(((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
+ (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-5 *2 (-640 (-1023 *5 *6 *7 *8))) (-5 *1 (-1023 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-640 *8)) (-5 *4 (-112)) (-4 *8 (-1059 *5 *6 *7))
+ (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-5 *2 (-640 (-1139 *5 *6 *7 *8))) (-5 *1 (-1139 *5 *6 *7 *8)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -1612 *3) (|:| |coef1| (-778 *3)) (|:| |coef2| (-778 *3))))
+ (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-948 *5)) (-4 *5 (-1045)) (-5 *2 (-481 *4 *5))
+ (-5 *1 (-940 *4 *5)) (-14 *4 (-640 (-1169))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-363)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3))
+ (-5 *1 (-521 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
(((*1 *1 *2 *2 *2)
(-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193)))))
((*1 *2 *1 *3 *4 *4)
(-12 (-5 *3 (-917)) (-5 *4 (-379)) (-5 *2 (-1262)) (-5 *1 (-1258))))
((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-134)))))
-(((*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3)
- (-12 (-5 *4 (-684 (-225))) (-5 *5 (-684 (-563))) (-5 *3 (-563))
- (-5 *2 (-1031)) (-5 *1 (-752)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-555)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3))
- (-5 *1 (-1198 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-263))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225) (-225))) (-5 *1 (-263))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-263)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-52)) (-5 *1 (-825)))))
-(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-1137)) (-5 *2 (-1224 (-563))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-407 *6)) (-4 *5 (-1212)) (-4 *6 (-1233 *5))
+ (-5 *2 (-2 (|:| -3311 (-767)) (|:| -2310 *3) (|:| |radicand| *6)))
+ (-5 *1 (-148 *5 *6 *7)) (-5 *4 (-767)) (-4 *7 (-1233 *3)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-244 *2)) (-4 *2 (-1208))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208))))
+ ((*1 *1 *1 *2)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2)) (-4 *2 (-1208))))
+ ((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-363)) (-4 *4 (-373 *3)) (-4 *5 (-373 *3))
+ (-5 *1 (-521 *3 *4 *5 *2)) (-4 *2 (-682 *3 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4))
+ (-4 *7 (-988 *4)) (-4 *2 (-682 *7 *8 *9))
+ (-5 *1 (-522 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-682 *4 *5 *6))
+ (-4 *8 (-373 *7)) (-4 *9 (-373 *7))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2))
+ (-4 *4 (-373 *2)) (-4 *2 (-307))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-307)) (-4 *3 (-172)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-5 *1 (-683 *3 *4 *5 *2))
+ (-4 *2 (-682 *3 *4 *5))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-684 *3)) (-4 *3 (-307)) (-5 *1 (-695 *3))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1048 *2 *3 *4 *5 *6)) (-4 *4 (-1045))
+ (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *2 *4)) (-4 *4 (-307)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-677 *2)) (-4 *2 (-1093))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 (-640 *5) (-640 *5))) (-5 *4 (-563))
+ (-5 *2 (-640 *5)) (-5 *1 (-677 *5)) (-4 *5 (-1093)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
- (-4 *3 (-367 *4))))
- ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1169))
- (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *1 (-800 *4 *2)) (-4 *2 (-13 (-29 *4) (-1193) (-955))))))
+ (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-4 *3 (-555))
+ (-5 *2 (-1165 *3)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-103 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1093)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *8 (-1059 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |val| (-640 *8))
+ (|:| |towers| (-640 (-1023 *5 *6 *7 *8)))))
+ (-5 *1 (-1023 *5 *6 *7 *8)) (-5 *3 (-640 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *8 (-1059 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |val| (-640 *8))
+ (|:| |towers| (-640 (-1139 *5 *6 *7 *8)))))
+ (-5 *1 (-1139 *5 *6 *7 *8)) (-5 *3 (-640 *8)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -1612 *3) (|:| |coef1| (-778 *3))))
+ (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-481 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045))
+ (-5 *2 (-247 *4 *5)) (-5 *1 (-940 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-517)))))
(((*1 *2 *1) (-12 (-5 *2 (-640 (-961))) (-5 *1 (-109))))
((*1 *2 *1) (-12 (-5 *2 (-45 (-1151) (-770))) (-5 *1 (-114)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
- (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4))))
- ((*1 *2 *3 *3 *3 *3)
- (-12 (-4 *3 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
- (-5 *2 (-640 *3)) (-5 *1 (-1121 *4 *3)) (-4 *4 (-1233 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-917)) (-5 *2 (-468)) (-5 *1 (-1258)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1113)) (-5 *2 (-1262)) (-5 *1 (-827)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-767)) (-4 *5 (-555))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-965 *5 *3)) (-4 *3 (-1233 *5)))))
+ (|partial| -12 (-4 *4 (-1212)) (-4 *5 (-1233 *4))
+ (-5 *2 (-2 (|:| |radicand| (-407 *5)) (|:| |deg| (-767))))
+ (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1233 (-407 *5))))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-363)) (-4 *5 (-373 *4)) (-4 *6 (-373 *4))
+ (-5 *2 (-767)) (-5 *1 (-521 *4 *5 *6 *3)) (-4 *3 (-682 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-4 *3 (-555)) (-5 *2 (-767))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-4 *4 (-172)) (-4 *5 (-373 *4))
+ (-4 *6 (-373 *4)) (-5 *2 (-767)) (-5 *1 (-683 *4 *5 *6 *3))
+ (-4 *3 (-682 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-555))
+ (-5 *2 (-767)))))
+(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-677 *3)) (-4 *3 (-1093)))))
+(((*1 *1)
+ (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-555)) (-4 *2 (-172)))))
(((*1 *1 *2)
(-12 (-5 *2 (-640 (-1069 *3 *4 *5))) (-4 *3 (-1093))
(-4 *4 (-13 (-1045) (-882 *3) (-846) (-611 (-888 *3))))
(-4 *5 (-13 (-430 *4) (-882 *3) (-611 (-888 *3))))
(-5 *1 (-1070 *3 *4 *5)))))
+(((*1 *2 *3 *4 *2 *5 *6)
+ (-12
+ (-5 *5
+ (-2 (|:| |done| (-640 *11))
+ (|:| |todo| (-640 (-2 (|:| |val| *3) (|:| -2058 *11))))))
+ (-5 *6 (-767))
+ (-5 *2 (-640 (-2 (|:| |val| (-640 *10)) (|:| -2058 *11))))
+ (-5 *3 (-640 *10)) (-5 *4 (-640 *11)) (-4 *10 (-1059 *7 *8 *9))
+ (-4 *11 (-1065 *7 *8 *9 *10)) (-4 *7 (-452)) (-4 *8 (-789))
+ (-4 *9 (-846)) (-5 *1 (-1063 *7 *8 *9 *10 *11))))
+ ((*1 *2 *3 *4 *2 *5 *6)
+ (-12
+ (-5 *5
+ (-2 (|:| |done| (-640 *11))
+ (|:| |todo| (-640 (-2 (|:| |val| *3) (|:| -2058 *11))))))
+ (-5 *6 (-767))
+ (-5 *2 (-640 (-2 (|:| |val| (-640 *10)) (|:| -2058 *11))))
+ (-5 *3 (-640 *10)) (-5 *4 (-640 *11)) (-4 *10 (-1059 *7 *8 *9))
+ (-4 *11 (-1102 *7 *8 *9 *10)) (-4 *7 (-452)) (-4 *8 (-789))
+ (-4 *9 (-846)) (-5 *1 (-1138 *7 *8 *9 *10 *11)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -1612 *3) (|:| |coef2| (-778 *3))))
+ (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1093)) (-4 *6 (-1093))
- (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-679 *4 *5 *6)) (-4 *5 (-1093)))))
-(((*1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1201 *2 *3 *4 *5)) (-4 *2 (-555)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *5 (-1059 *2 *3 *4)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+ (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045))
+ (-5 *2 (-481 *4 *5)) (-5 *1 (-940 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-517)))))
(((*1 *2 *3) (-12 (-5 *3 (-640 (-52))) (-5 *2 (-1262)) (-5 *1 (-859)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4))))
+ (-12 (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4))))
(-5 *1 (-1134 *3 *4)) (-4 *3 (-13 (-1093) (-34)))
(-4 *4 (-13 (-1093) (-34))))))
-(((*1 *1) (-5 *1 (-577))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-307)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4))
+ (-5 *2 (-2 (|:| -2310 (-407 *5)) (|:| |poly| *3)))
+ (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1233 (-407 *5))))))
+(((*1 *2 *3)
+ (-12 (|has| *6 (-6 -4409)) (-4 *4 (-363)) (-4 *5 (-373 *4))
+ (-4 *6 (-373 *4)) (-5 *2 (-640 *6)) (-5 *1 (-521 *4 *5 *6 *3))
+ (-4 *3 (-682 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (|has| *9 (-6 -4409)) (-4 *4 (-555)) (-4 *5 (-373 *4))
+ (-4 *6 (-373 *4)) (-4 *7 (-988 *4)) (-4 *8 (-373 *7))
+ (-4 *9 (-373 *7)) (-5 *2 (-640 *6))
+ (-5 *1 (-522 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-682 *4 *5 *6))
+ (-4 *10 (-682 *7 *8 *9))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-373 *3))
+ (-4 *5 (-373 *3)) (-4 *3 (-555)) (-5 *2 (-640 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-4 *4 (-172)) (-4 *5 (-373 *4))
+ (-4 *6 (-373 *4)) (-5 *2 (-640 *6)) (-5 *1 (-683 *4 *5 *6 *3))
+ (-4 *3 (-682 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-555))
+ (-5 *2 (-640 *7)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-640 (-1207))) (-5 *3 (-1207)) (-5 *1 (-676)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-640 *5)) (-5 *4 (-640 *6)) (-4 *5 (-1093))
(-4 *6 (-1208)) (-5 *2 (-1 *6 *5)) (-5 *1 (-637 *5 *6))))
@@ -13554,34 +13467,84 @@
(-12 (-5 *3 (-640 *5)) (-5 *4 (-640 *2)) (-5 *6 (-1 *2 *5))
(-4 *5 (-1093)) (-4 *2 (-1208)) (-5 *1 (-637 *5 *2))))
((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1137)) (-5 *3 (-144)) (-5 *2 (-767)))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-563))) (-5 *1 (-275)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-817)) (-5 *4 (-52)) (-5 *2 (-1262)) (-5 *1 (-827)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-4 *1 (-57 *4 *5 *2)) (-4 *4 (-1208))
- (-4 *5 (-373 *4)) (-4 *2 (-373 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-4 *1 (-1048 *4 *5 *6 *7 *2)) (-4 *6 (-1045))
- (-4 *7 (-238 *5 *6)) (-4 *2 (-238 *4 *6)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-147))
- (-4 *3 (-307)) (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *1 (-973 *3 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
+(((*1 *1)
+ (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-555)) (-4 *2 (-172)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-335 *3 *4 *5 *6)) (-4 *3 (-363)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5))
+ (-5 *2
+ (-2 (|:| -1526 (-413 *4 (-407 *4) *5 *6)) (|:| |principalPart| *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1233 *5)) (-4 *5 (-363))
+ (-5 *2
+ (-2 (|:| |poly| *6) (|:| -2376 (-407 *6))
+ (|:| |special| (-407 *6))))
+ (-5 *1 (-723 *5 *6)) (-5 *3 (-407 *6))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-363)) (-5 *2 (-640 *3)) (-5 *1 (-892 *3 *4))
+ (-4 *3 (-1233 *4))))
+ ((*1 *2 *3 *4 *4)
+ (|partial| -12 (-5 *4 (-767)) (-4 *5 (-363))
+ (-5 *2 (-2 (|:| -1685 *3) (|:| -1700 *3))) (-5 *1 (-892 *3 *5))
+ (-4 *3 (-1233 *5))))
+ ((*1 *2 *3 *2 *4 *4)
+ (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112))
+ (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452))
+ (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1063 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
+ (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112))
+ (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452))
+ (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1063 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4)
+ (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112))
+ (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452))
+ (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1138 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
+ (-12 (-5 *2 (-640 *9)) (-5 *3 (-640 *8)) (-5 *4 (-112))
+ (-4 *8 (-1059 *5 *6 *7)) (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452))
+ (-4 *6 (-789)) (-4 *7 (-846)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+ (-12 (-5 *3 (-684 (-407 (-563))))
+ (-5 *2
+ (-640
+ (-2 (|:| |outval| *4) (|:| |outmult| (-563))
+ (|:| |outvect| (-640 (-684 *4))))))
+ (-5 *1 (-775 *4)) (-4 *4 (-13 (-363) (-844))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-938)) (-5 *3 (-563)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-327 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-516 *3 *4))
+ (-14 *4 (-563)))))
+(((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 (-563)) (-5 *1 (-1149 *3)) (-4 *3 (-1208))))
+ ((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1230 *4 *5)) (-5 *3 (-640 *5)) (-14 *4 (-1169))
+ (-4 *5 (-363)) (-5 *1 (-919 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 *5)) (-4 *5 (-363)) (-5 *2 (-1165 *5))
+ (-5 *1 (-919 *4 *5)) (-14 *4 (-1169))))
+ ((*1 *2 *3 *3 *4 *4)
+ (-12 (-5 *3 (-640 *6)) (-5 *4 (-767)) (-4 *6 (-363))
+ (-5 *2 (-407 (-948 *6))) (-5 *1 (-1046 *5 *6)) (-14 *5 (-1169)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1169)) (-5 *4 (-948 (-563))) (-5 *2 (-330))
+ (-5 *1 (-332))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1169)) (-5 *4 (-1085 (-948 (-563)))) (-5 *2 (-330))
+ (-5 *1 (-332))))
+ ((*1 *1 *2 *2 *2)
+ (-12 (-5 *2 (-767)) (-5 *1 (-670 *3)) (-4 *3 (-1045))
+ (-4 *3 (-1093)))))
(((*1 *2 *1)
(-12 (-5 *2 (-640 *4)) (-5 *1 (-1134 *3 *4))
(-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34))))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8))
- (-5 *4 (-684 (-1165 *8))) (-4 *5 (-1045)) (-4 *8 (-1045))
- (-4 *6 (-1233 *5)) (-5 *2 (-684 *6)) (-5 *1 (-501 *5 *6 *7 *8))
- (-4 *7 (-1233 *6)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1151)) (-4 *1 (-364 *3 *4)) (-4 *3 (-1093))
+ (-4 *4 (-1093)))))
(((*1 *2 *1) (-12 (-5 *1 (-686 *2)) (-4 *2 (-610 (-858)))))
((*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-563))))
((*1 *2 *1) (-12 (-4 *1 (-1130)) (-5 *2 (-1151))))
@@ -13618,30 +13581,72 @@
((*1 *2 *1) (-12 (-5 *2 (-1169)) (-5 *1 (-1174))))
((*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-1174))))
((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-1174)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045))))
- ((*1 *2)
- (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045)))))
-(((*1 *2 *1) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193)))))
- ((*1 *1 *1 *1) (-4 *1 (-789))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-767)) (-5 *6 (-112)) (-4 *7 (-452)) (-4 *8 (-789))
+ (-4 *9 (-846)) (-4 *3 (-1059 *7 *8 *9))
+ (-5 *2
+ (-2 (|:| |done| (-640 *4))
+ (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4))))))
+ (-5 *1 (-1063 *7 *8 *9 *3 *4)) (-4 *4 (-1065 *7 *8 *9 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
+ (-4 *3 (-1059 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-640 *4))
+ (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4))))))
+ (-5 *1 (-1063 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-640 *4))
+ (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4))))))
+ (-5 *1 (-1063 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-767)) (-5 *6 (-112)) (-4 *7 (-452)) (-4 *8 (-789))
+ (-4 *9 (-846)) (-4 *3 (-1059 *7 *8 *9))
+ (-5 *2
+ (-2 (|:| |done| (-640 *4))
+ (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4))))))
+ (-5 *1 (-1138 *7 *8 *9 *3 *4)) (-4 *4 (-1102 *7 *8 *9 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
+ (-4 *3 (-1059 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-640 *4))
+ (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4))))))
+ (-5 *1 (-1138 *6 *7 *8 *3 *4)) (-4 *4 (-1102 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-640 *4))
+ (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4))))))
+ (-5 *1 (-1138 *5 *6 *7 *3 *4)) (-4 *4 (-1102 *5 *6 *7 *3)))))
(((*1 *2 *3)
- (-12 (-4 *3 (-1233 (-407 (-563))))
- (-5 *2 (-2 (|:| |den| (-563)) (|:| |gcdnum| (-563))))
- (-5 *1 (-909 *3 *4)) (-4 *4 (-1233 (-407 *3)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-1233 (-407 *2))) (-5 *2 (-563)) (-5 *1 (-909 *4 *3))
- (-4 *3 (-1233 (-407 *4))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-363)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
- (-5 *1 (-504 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))))
+ (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-684 (-407 (-563)))) (-5 *2 (-640 *4)) (-5 *1 (-775 *4))
+ (-4 *4 (-13 (-363) (-844))))))
+(((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-327 *3)) (-4 *3 (-1208))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-767)) (-5 *1 (-516 *3 *4)) (-4 *3 (-1208))
+ (-14 *4 (-563)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1045))
+ (-14 *4 (-640 (-1169)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1045) (-846)))
+ (-14 *4 (-640 (-1169))))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1043)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-767)) (-5 *1 (-670 *3)) (-4 *3 (-1045))
+ (-4 *3 (-1093)))))
+(((*1 *1 *1) (-4 *1 (-173)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-364 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))))
(((*1 *1 *2 *3)
(-12 (-5 *2 (-1169)) (-5 *3 (-640 *1)) (-4 *1 (-430 *4))
(-4 *4 (-846))))
@@ -13652,112 +13657,143 @@
((*1 *1 *2 *1 *1)
(-12 (-5 *2 (-1169)) (-4 *1 (-430 *3)) (-4 *3 (-846))))
((*1 *1 *2 *1) (-12 (-5 *2 (-1169)) (-4 *1 (-430 *3)) (-4 *3 (-846)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379))))
- ((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-379)))))
-(((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
+ (-4 *3 (-1059 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-640 *4))
+ (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4))))))
+ (-5 *1 (-1063 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-640 *4))
+ (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4))))))
+ (-5 *1 (-1063 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-767)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
+ (-4 *3 (-1059 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-640 *4))
+ (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4))))))
+ (-5 *1 (-1138 *6 *7 *8 *3 *4)) (-4 *4 (-1102 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-640 *4))
+ (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4))))))
+ (-5 *1 (-1138 *5 *6 *7 *3 *4)) (-4 *4 (-1102 *5 *6 *7 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-684 *2)) (-4 *2 (-172)) (-5 *1 (-146 *2))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-172)) (-4 *2 (-1233 *4)) (-5 *1 (-177 *4 *2 *3))
+ (-4 *3 (-720 *4 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-684 (-407 (-948 *5)))) (-5 *4 (-1169))
+ (-5 *2 (-948 *5)) (-5 *1 (-292 *5)) (-4 *5 (-452))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-684 (-407 (-948 *4)))) (-5 *2 (-948 *4))
+ (-5 *1 (-292 *4)) (-4 *4 (-452))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-370 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1233 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-684 (-169 (-407 (-563)))))
+ (-5 *2 (-948 (-169 (-407 (-563))))) (-5 *1 (-760 *4))
+ (-4 *4 (-13 (-363) (-844)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-684 (-169 (-407 (-563))))) (-5 *4 (-1169))
+ (-5 *2 (-948 (-169 (-407 (-563))))) (-5 *1 (-760 *5))
+ (-4 *5 (-13 (-363) (-844)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-684 (-407 (-563)))) (-5 *2 (-948 (-407 (-563))))
+ (-5 *1 (-775 *4)) (-4 *4 (-13 (-363) (-844)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-684 (-407 (-563)))) (-5 *4 (-1169))
+ (-5 *2 (-948 (-407 (-563)))) (-5 *1 (-775 *5))
+ (-4 *5 (-13 (-363) (-844))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1165 *6)) (-4 *6 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *2 (-1165 *7)) (-5 *1 (-321 *4 *5 *6 *7))
- (-4 *7 (-945 *6 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
- (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-640 *6)) (-4 *6 (-846)) (-4 *4 (-363)) (-4 *5 (-789))
- (-5 *2 (-112)) (-5 *1 (-504 *4 *5 *6 *7)) (-4 *7 (-945 *4 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-307))
- (-5 *2 (-767)) (-5 *1 (-455 *5 *3)))))
+ (-12 (-5 *3 (-1165 (-563))) (-5 *2 (-563)) (-5 *1 (-938)))))
+(((*1 *1 *1 *1) (-5 *1 (-858))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-327 *3)) (-4 *3 (-1208))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-563)) (-5 *1 (-516 *3 *4)) (-4 *3 (-1208)) (-14 *4 *2))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-316 *3)) (-4 *3 (-13 (-1045) (-846)))
+ (-5 *1 (-223 *3 *4)) (-14 *4 (-640 (-1169))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-563)) (|has| *1 (-6 -4409)) (-4 *1 (-1245 *3))
+ (-4 *3 (-1208)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1045))
- (-4 *2 (-13 (-404) (-1034 *4) (-363) (-1193) (-284)))
- (-5 *1 (-443 *4 *3 *2)) (-4 *3 (-1233 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-917)) (-4 *5 (-1045))
- (-4 *2 (-13 (-404) (-1034 *5) (-363) (-1193) (-284)))
- (-5 *1 (-443 *5 *3 *2)) (-4 *3 (-1233 *5)))))
-(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1002))))
- ((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-1002)))))
+ (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-563))) (-5 *1 (-1043)))))
+(((*1 *2 *1 *3 *3 *3 *2)
+ (-12 (-5 *3 (-767)) (-5 *1 (-670 *2)) (-4 *2 (-1093)))))
(((*1 *2 *3 *2)
(-12 (-5 *1 (-674 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-364 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093))
+ (-5 *2 (-1151)))))
(((*1 *2 *2)
(-12 (-4 *3 (-846)) (-5 *1 (-925 *3 *2)) (-4 *2 (-430 *3))))
((*1 *2 *3)
(-12 (-5 *3 (-1169)) (-5 *2 (-316 (-563))) (-5 *1 (-926)))))
(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-640 *3))
- (-4 *3 (-13 (-27) (-1193) (-430 *6)))
- (-4 *6 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-556 *6 *3)))))
-(((*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-363) (-1193))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-939 (-225)) (-939 (-225)))) (-5 *1 (-263))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-329 *4)) (-4 *4 (-363))
- (-5 *2 (-684 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-1257 *3))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
- (-5 *2 (-684 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
- (-5 *2 (-1257 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172))
- (-4 *5 (-1233 *4)) (-5 *2 (-684 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *4 *5)) (-4 *4 (-172))
- (-4 *5 (-1233 *4)) (-5 *2 (-1257 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-409 *4 *5)) (-4 *4 (-172))
- (-4 *5 (-1233 *4)) (-5 *2 (-684 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-409 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1233 *3))
- (-5 *2 (-1257 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-417 *4)) (-4 *4 (-172))
- (-5 *2 (-684 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-1257 *3))))
+ (-12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
+ (-4 *3 (-1059 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-640 *4))
+ (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4))))))
+ (-5 *1 (-1063 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 (-684 *5))) (-5 *3 (-684 *5)) (-4 *5 (-363))
- (-5 *2 (-1257 *5)) (-5 *1 (-1079 *5)))))
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-640 *4))
+ (|:| |todo| (-640 (-2 (|:| |val| (-640 *3)) (|:| -2058 *4))))))
+ (-5 *1 (-1138 *5 *6 *7 *3 *4)) (-4 *4 (-1102 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-307))
+ (-5 *2 (-640 (-767))) (-5 *1 (-774 *3 *4 *5 *6 *7))
+ (-4 *3 (-1233 *6)) (-4 *7 (-945 *6 *4 *5)))))
+(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-938)) (-5 *3 (-563)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-327 *3)) (-4 *3 (-1208))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-516 *3 *4)) (-4 *3 (-1208))
+ (-14 *4 (-563)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1045) (-846)))
+ (-14 *3 (-640 (-1169))))))
(((*1 *2 *1)
(|partial| -12
- (-5 *2 (-2 (|:| -2517 (-114)) (|:| |arg| (-640 (-888 *3)))))
- (-5 *1 (-888 *3)) (-4 *3 (-1093))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-114)) (-5 *2 (-640 (-888 *4)))
- (-5 *1 (-888 *4)) (-4 *4 (-1093)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-563)) (-4 *4 (-789)) (-4 *5 (-846)) (-4 *2 (-1045))
- (-5 *1 (-321 *4 *5 *2 *6)) (-4 *6 (-945 *2 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3)) (-4 *3 (-970)))))
+ (-4 *3 (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452)))
+ (-5 *2 (-839 *4)) (-5 *1 (-313 *3 *4 *5 *6))
+ (-4 *4 (-13 (-27) (-1193) (-430 *3))) (-14 *5 (-1169))
+ (-14 *6 *4)))
+ ((*1 *2 *1)
+ (|partial| -12
+ (-4 *3 (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452)))
+ (-5 *2 (-839 *4)) (-5 *1 (-1243 *3 *4 *5 *6))
+ (-4 *4 (-13 (-27) (-1193) (-430 *3))) (-14 *5 (-1169))
+ (-14 *6 *4))))
(((*1 *2 *3)
- (-12 (-4 *1 (-905)) (-5 *2 (-418 (-1165 *1))) (-5 *3 (-1165 *1)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
- (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
- (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-984 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1100 *4 *5 *6 *7 *3)) (-4 *3 (-1065 *4 *5 *6 *7)))))
+ (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-563))) (-5 *1 (-1043)))))
+(((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1169)) (-5 *1 (-670 *3)) (-4 *3 (-1093)))))
(((*1 *2 *2 *3)
(-12 (-5 *1 (-674 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-364 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7))
+ (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789))
+ (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1063 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7))
+ (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789))
+ (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))))
(((*1 *1 *1) (-4 *1 (-34))) ((*1 *1 *1) (-5 *1 (-114)))
((*1 *1 *1) (-5 *1 (-171))) ((*1 *1 *1) (-4 *1 (-545)))
((*1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-1093))))
@@ -13765,83 +13801,56 @@
((*1 *1 *1)
(-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34)))
(-4 *3 (-13 (-1093) (-34))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1065 *3 *4 *5 *6)) (-4 *3 (-452)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452)) (-4 *5 (-789))
- (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 (-169 (-407 (-563)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-191)) (-5 *3 (-563))))
+ ((*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-779 *2)) (-4 *2 (-172))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-4 *6 (-1233 *9)) (-4 *7 (-789)) (-4 *8 (-846)) (-4 *9 (-307))
+ (-4 *10 (-945 *9 *7 *8))
(-5 *2
- (-640
- (-2 (|:| |outval| (-169 *4)) (|:| |outmult| (-563))
- (|:| |outvect| (-640 (-684 (-169 *4)))))))
- (-5 *1 (-760 *4)) (-4 *4 (-13 (-363) (-844))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-525)))))
-(((*1 *1 *2)
- (-12
+ (-2 (|:| |deter| (-640 (-1165 *10)))
+ (|:| |dterm|
+ (-640 (-640 (-2 (|:| -1646 (-767)) (|:| |pcoef| *10)))))
+ (|:| |nfacts| (-640 *6)) (|:| |nlead| (-640 *10))))
+ (-5 *1 (-774 *6 *7 *8 *9 *10)) (-5 *3 (-1165 *10)) (-5 *4 (-640 *6))
+ (-5 *5 (-640 *10)))))
+(((*1 *2 *1) (-12 (-4 *1 (-509 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-846)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *4 (-1169)) (-5 *6 (-112))
+ (-4 *7 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
+ (-4 *3 (-13 (-1193) (-955) (-29 *7)))
(-5 *2
- (-640
- (-2
- (|:| -2387
- (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (|:| -2557
- (-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| (-1149 (-225)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -2516
- (-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 (-558)))))
+ (-3 (|:| |f1| (-839 *3)) (|:| |f2| (-640 (-839 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-219 *7 *3)) (-5 *5 (-839 *3)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-363)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4)))
- (-5 *2 (-1257 *6)) (-5 *1 (-336 *3 *4 *5 *6))
- (-4 *6 (-342 *3 *4 *5)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-640 *6)) (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045))
- (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))
- (-4 *3 (-555)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *5 *6)) (-4 *4 (-452))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1262))
- (-5 *1 (-449 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
- (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2 (-379)) (-5 *1 (-205)))))
-(((*1 *2)
- (-12 (-5 *2 (-954 (-1113))) (-5 *1 (-343 *3 *4)) (-14 *3 (-917))
- (-14 *4 (-917))))
- ((*1 *2)
- (-12 (-5 *2 (-954 (-1113))) (-5 *1 (-344 *3 *4)) (-4 *3 (-349))
- (-14 *4 (-1165 *3))))
- ((*1 *2)
- (-12 (-5 *2 (-954 (-1113))) (-5 *1 (-345 *3 *4)) (-4 *3 (-349))
- (-14 *4 (-917)))))
+ (|partial| -12
+ (-4 *3 (-13 (-846) (-1034 (-563)) (-636 (-563)) (-452)))
+ (-5 *2
+ (-2
+ (|:| |%term|
+ (-2 (|:| |%coef| (-1242 *4 *5 *6))
+ (|:| |%expon| (-319 *4 *5 *6))
+ (|:| |%expTerms|
+ (-640 (-2 (|:| |k| (-407 (-563))) (|:| |c| *4))))))
+ (|:| |%type| (-1151))))
+ (-5 *1 (-1243 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1193) (-430 *3)))
+ (-14 *5 (-1169)) (-14 *6 *4))))
+(((*1 *1 *1 *1) (-4 *1 (-143)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-158 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545))))
+ ((*1 *1 *1 *1) (-5 *1 (-858)))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-563))) (-5 *1 (-1043))
+ (-5 *3 (-563)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1257 (-767))) (-5 *1 (-670 *3)) (-4 *3 (-1093)))))
+(((*1 *2 *1 *2)
+ (-12 (-4 *1 (-364 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
@@ -13858,63 +13867,54 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
-(((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-545)))))
-(((*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-157)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1208)) (-4 *4 (-373 *3))
- (-4 *5 (-373 *3)) (-5 *2 (-563))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1048 *3 *4 *5 *6 *7)) (-4 *5 (-1045))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-563)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879))
- (-5 *3 (-640 (-563))))))
-(((*1 *2 *1) (-12 (-4 *1 (-844)) (-5 *2 (-563))))
- ((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-901 *3)) (-4 *3 (-1093))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1062 *4 *3)) (-4 *4 (-13 (-844) (-363)))
- (-4 *3 (-1233 *4)) (-5 *2 (-563))))
- ((*1 *2 *3)
- (|partial| -12
- (-4 *4 (-13 (-555) (-846) (-1034 *2) (-636 *2) (-452)))
- (-5 *2 (-563)) (-5 *1 (-1109 *4 *3))
- (-4 *3 (-13 (-27) (-1193) (-430 *4)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-839 *3))
- (-4 *3 (-13 (-27) (-1193) (-430 *6)))
- (-4 *6 (-13 (-555) (-846) (-1034 *2) (-636 *2) (-452)))
- (-5 *2 (-563)) (-5 *1 (-1109 *6 *3))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-1151))
- (-4 *6 (-13 (-555) (-846) (-1034 *2) (-636 *2) (-452)))
- (-5 *2 (-563)) (-5 *1 (-1109 *6 *3))
- (-4 *3 (-13 (-27) (-1193) (-430 *6)))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-452)) (-5 *2 (-563))
- (-5 *1 (-1110 *4))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-839 (-407 (-948 *6))))
- (-5 *3 (-407 (-948 *6))) (-4 *6 (-452)) (-5 *2 (-563))
- (-5 *1 (-1110 *6))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *3 (-407 (-948 *6))) (-5 *4 (-1169))
- (-5 *5 (-1151)) (-4 *6 (-452)) (-5 *2 (-563)) (-5 *1 (-1110 *6))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7))
+ (-4 *9 (-1065 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789))
+ (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1063 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *9)) (-4 *8 (-1059 *5 *6 *7))
+ (-4 *9 (-1102 *5 *6 *7 *8)) (-4 *5 (-452)) (-4 *6 (-789))
+ (-4 *7 (-846)) (-5 *2 (-767)) (-5 *1 (-1138 *5 *6 *7 *8 *9)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-349)) (-4 *5 (-329 *4)) (-4 *6 (-1233 *5))
+ (-5 *2 (-640 *3)) (-5 *1 (-773 *4 *5 *6 *3 *7)) (-4 *3 (-1233 *6))
+ (-14 *7 (-917)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172))))
((*1 *2 *3)
- (|partial| -12 (-5 *2 (-563)) (-5 *1 (-1190 *3)) (-4 *3 (-1045)))))
+ (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-563)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-767)) (-4 *5 (-172))))
+ ((*1 *1 *1 *2 *1 *2)
+ (-12 (-5 *2 (-563)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-767)) (-4 *5 (-172))))
+ ((*1 *2 *2 *3)
+ (-12
+ (-5 *2
+ (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4)
+ (-247 *4 (-407 (-563)))))
+ (-5 *3 (-640 (-860 *4))) (-14 *4 (-640 (-1169))) (-14 *5 (-767))
+ (-5 *1 (-505 *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-217)))))
(((*1 *2 *1) (-12 (-5 *2 (-640 (-183))) (-5 *1 (-140)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 *5)) (-4 *5 (-1233 *3)) (-4 *3 (-307))
- (-5 *2 (-112)) (-5 *1 (-455 *3 *5)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-640 (-948 *4))) (-5 *3 (-640 (-1169))) (-4 *4 (-452))
- (-5 *1 (-914 *4)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-330)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1240 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1217 *3))
+ (-5 *2 (-407 (-563))))))
(((*1 *2 *3)
- (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4))
- (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112))))
+ (-12 (-5 *3 (-1095 *4)) (-4 *4 (-1093)) (-5 *2 (-1 *4))
+ (-5 *1 (-1013 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-379))) (-5 *1 (-1036)) (-5 *3 (-379))))
((*1 *2 *3)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-1087 (-563))) (-5 *2 (-1 (-563))) (-5 *1 (-1043)))))
+(((*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349))
+ (-4 *2
+ (-13 (-402)
+ (-10 -7 (-15 -1692 (*2 *4)) (-15 -3990 ((-917) *2))
+ (-15 -4013 ((-1257 *2) (-917))) (-15 -3715 (*2 *2)))))
+ (-5 *1 (-356 *2 *4)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
@@ -13931,83 +13931,70 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
-(((*1 *1) (-5 *1 (-1258))))
(((*1 *2 *1 *3 *3 *2)
(-12 (-5 *3 (-563)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1208))
(-4 *4 (-373 *2)) (-4 *5 (-373 *2))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "right") (|has| *1 (-6 -4408)) (-4 *1 (-119 *3))
+ (-12 (-5 *2 "right") (|has| *1 (-6 -4409)) (-4 *1 (-119 *3))
(-4 *3 (-1208))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "left") (|has| *1 (-6 -4408)) (-4 *1 (-119 *3))
+ (-12 (-5 *2 "left") (|has| *1 (-6 -4409)) (-4 *1 (-119 *3))
(-4 *3 (-1208))))
((*1 *2 *1 *3 *2)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-288 *3 *2)) (-4 *3 (-1093))
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-288 *3 *2)) (-4 *3 (-1093))
(-4 *2 (-1208))))
((*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1169)) (-5 *1 (-629))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 (-1224 (-563))) (|has| *1 (-6 -4408)) (-4 *1 (-646 *2))
+ (-12 (-5 *3 (-1224 (-563))) (|has| *1 (-6 -4409)) (-4 *1 (-646 *2))
(-4 *2 (-1208))))
((*1 *1 *1 *2 *2 *1)
(-12 (-5 *2 (-640 (-563))) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045))
(-4 *4 (-373 *3)) (-4 *5 (-373 *3))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "value") (|has| *1 (-6 -4408)) (-4 *1 (-1006 *2))
+ (-12 (-5 *3 "value") (|has| *1 (-6 -4409)) (-4 *1 (-1006 *2))
(-4 *2 (-1208))))
((*1 *2 *1 *2) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208))))
((*1 *2 *1 *3 *2)
(-12 (-4 *1 (-1184 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "last") (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2))
+ (-12 (-5 *3 "last") (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2))
(-4 *2 (-1208))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "rest") (|has| *1 (-6 -4408)) (-4 *1 (-1245 *3))
+ (-12 (-5 *2 "rest") (|has| *1 (-6 -4409)) (-4 *1 (-1245 *3))
(-4 *3 (-1208))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "first") (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2))
+ (-12 (-5 *3 "first") (|has| *1 (-6 -4409)) (-4 *1 (-1245 *2))
(-4 *2 (-1208)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1045)) (-4 *3 (-846))
- (-5 *2 (-2 (|:| |val| *1) (|:| -1654 (-563)))) (-4 *1 (-430 *3))))
- ((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| |val| (-888 *3)) (|:| -1654 (-888 *3))))
- (-5 *1 (-888 *3)) (-4 *3 (-1093))))
+(((*1 *1) (-5 *1 (-141))) ((*1 *1 *1) (-5 *1 (-144)))
+ ((*1 *1 *1) (-4 *1 (-1137))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-767)) (-5 *1 (-852 *2)) (-4 *2 (-172))))
((*1 *2 *3)
- (|partial| -12 (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1045))
- (-4 *7 (-945 *6 *4 *5))
- (-5 *2 (-2 (|:| |val| *3) (|:| -1654 (-563))))
- (-5 *1 (-946 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-363)
- (-10 -8 (-15 -1693 ($ *7)) (-15 -2143 (*7 $))
- (-15 -2154 (*7 $))))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-563)) (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-307))
- (-4 *9 (-945 *8 *6 *7))
- (-5 *2 (-2 (|:| -1574 (-1165 *9)) (|:| |polval| (-1165 *8))))
- (-5 *1 (-738 *6 *7 *8 *9)) (-5 *3 (-1165 *9)) (-5 *4 (-1165 *8)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452))
- (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))
- (-5 *1 (-984 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-640 *7)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452))
- (-4 *4 (-789)) (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5))
- (-5 *1 (-1100 *3 *4 *5 *6 *7)))))
-(((*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-391)))))
+ (-12 (-5 *2 (-1165 (-563))) (-5 *1 (-938)) (-5 *3 (-563)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *6)) (-5 *4 (-640 (-1169))) (-4 *6 (-363))
- (-5 *2 (-640 (-294 (-948 *6)))) (-5 *1 (-538 *5 *6 *7))
- (-4 *5 (-452)) (-4 *7 (-13 (-363) (-844))))))
-(((*1 *2 *2 *3 *4 *4)
- (-12 (-5 *4 (-563)) (-4 *3 (-172)) (-4 *5 (-373 *3))
- (-4 *6 (-373 *3)) (-5 *1 (-683 *3 *5 *6 *2))
- (-4 *2 (-682 *3 *5 *6)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-945 *4 *5 *6)) (-4 *4 (-307))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-447 *4 *5 *6 *2)))))
-(((*1 *2 *2) (-12 (-5 *2 (-684 (-316 (-563)))) (-5 *1 (-1027)))))
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2058 *4))))
+ (-5 *1 (-772 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-14 *4 (-640 (-1169))) (-14 *5 (-767))
+ (-5 *2
+ (-640
+ (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4)
+ (-247 *4 (-407 (-563))))))
+ (-5 *1 (-505 *4 *5))
+ (-5 *3
+ (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4)
+ (-247 *4 (-407 (-563))))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-349)) (-5 *2 (-112)) (-5 *1 (-216 *4 *3))
+ (-4 *3 (-1233 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1240 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-1217 *3)))))
+(((*1 *1) (-12 (-4 *1 (-1041 *2)) (-4 *2 (-23)))))
+(((*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-349)) (-5 *2 (-954 (-1165 *4))) (-5 *1 (-357 *4))
+ (-5 *3 (-1165 *4)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
@@ -14024,14 +14011,17 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *1 *1) (-12 (-5 *1 (-418 *2)) (-4 *2 (-555)))))
+(((*1 *1 *1) (-4 *1 (-1137))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-1151)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
+ (-4 *4 (-1059 *6 *7 *8)) (-5 *2 (-1262))
+ (-5 *1 (-772 *6 *7 *8 *4 *5)) (-4 *5 (-1065 *6 *7 *8 *4)))))
(((*1 *1 *1 *2)
(-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788))
(-4 *2 (-363))))
((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-225))))
((*1 *1 *1 *1)
- (-4032 (-12 (-5 *1 (-294 *2)) (-4 *2 (-363)) (-4 *2 (-1208)))
+ (-4034 (-12 (-5 *1 (-294 *2)) (-4 *2 (-363)) (-4 *2 (-1208)))
(-12 (-5 *1 (-294 *2)) (-4 *2 (-473)) (-4 *2 (-1208)))))
((*1 *1 *1 *1) (-4 *1 (-363)))
((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-379))))
@@ -14079,39 +14069,26 @@
((*1 *1 *1 *2)
(-12 (-5 *1 (-1280 *2 *3)) (-4 *2 (-363)) (-4 *2 (-1045))
(-4 *3 (-842)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-326 *2 *3)) (-4 *3 (-788)) (-4 *2 (-1045))
- (-4 *2 (-452))))
+(((*1 *2 *3) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-560)) (-5 *3 (-563))))
((*1 *2 *3)
- (-12 (-5 *3 (-640 *4)) (-4 *4 (-1233 (-563))) (-5 *2 (-640 (-563)))
- (-5 *1 (-486 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-452))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *2 (-846)) (-4 *3 (-452)))))
+ (-12 (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-938)) (-5 *3 (-563)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4)
+ (-247 *4 (-407 (-563)))))
+ (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *2 (-112))
+ (-5 *1 (-505 *4 *5)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-767)) (-4 *4 (-349)) (-5 *1 (-216 *4 *2))
+ (-4 *2 (-1233 *4)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |preimage| (-640 *3)) (|:| |image| (-640 *3))))
- (-5 *1 (-901 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-112)) (-5 *5 (-1095 (-767))) (-5 *6 (-767))
- (-5 *2
- (-2 (|:| |contp| (-563))
- (|:| -2760 (-640 (-2 (|:| |irr| *3) (|:| -1650 (-563)))))))
- (-5 *1 (-442 *3)) (-4 *3 (-1233 (-563))))))
-(((*1 *2 *2 *1 *3 *4)
- (-12 (-5 *2 (-640 *8)) (-5 *3 (-1 *8 *8 *8))
- (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1201 *5 *6 *7 *8)) (-4 *5 (-555))
- (-4 *6 (-789)) (-4 *7 (-846)) (-4 *8 (-1059 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
- (-4 *2 (-430 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-643 *3)) (-4 *3 (-1045))
- (-5 *1 (-710 *3 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-832 *3)))))
+ (|partial| -12 (-4 *1 (-1240 *3 *2)) (-4 *3 (-1045))
+ (-4 *2 (-1217 *3)))))
+(((*1 *1) (-5 *1 (-157)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))))
+(((*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-112)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
@@ -14128,17 +14105,29 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
-(((*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260))))
- ((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-1078))) (-5 *1 (-291)))))
+(((*1 *1) (-5 *1 (-141))) ((*1 *1 *1) (-5 *1 (-144)))
+ ((*1 *1 *1) (-4 *1 (-1137))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1169))
+ (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *1 (-277 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4)))))
+ ((*1 *1 *1) (-5 *1 (-379)))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *3 (-1059 *5 *6 *7))
+ (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *4))))
+ (-5 *1 (-772 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
(((*1 *1 *1 *1) (-4 *1 (-21))) ((*1 *1 *1) (-4 *1 (-21)))
((*1 *1 *1 *1) (|partial| -5 *1 (-134)))
((*1 *1 *1 *1)
(-12 (-5 *1 (-214 *2))
(-4 *2
(-13 (-846)
- (-10 -8 (-15 -2309 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $))
- (-15 -2807 ((-1262) $)))))))
+ (-10 -8 (-15 -2308 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $))
+ (-15 -1651 ((-1262) $)))))))
((*1 *1 *1 *2) (-12 (-5 *1 (-294 *2)) (-4 *2 (-21)) (-4 *2 (-1208))))
((*1 *1 *2 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-21)) (-4 *2 (-1208))))
((*1 *1 *1 *1)
@@ -14158,27 +14147,37 @@
((*1 *2 *2 *2) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204))))
((*1 *1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-21))))
((*1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-21)))))
+(((*1 *2 *3 *4 *2 *5)
+ (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 (-888 *6)))
+ (-5 *5 (-1 (-885 *6 *8) *8 (-888 *6) (-885 *6 *8))) (-4 *6 (-1093))
+ (-4 *8 (-13 (-1045) (-611 (-888 *6)) (-1034 *7)))
+ (-5 *2 (-885 *6 *8)) (-4 *7 (-13 (-1045) (-846)))
+ (-5 *1 (-937 *6 *7 *8)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-563)) (-5 *1 (-486 *4))
- (-4 *4 (-1233 *2)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *2)) (-4 *2 (-172))))
- ((*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-416 *3 *2)) (-4 *3 (-417 *2))))
- ((*1 *2) (-12 (-4 *1 (-417 *2)) (-4 *2 (-172)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1257 *1)) (-4 *1 (-367 *4)) (-4 *4 (-172))
- (-5 *2 (-684 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-417 *3)) (-4 *3 (-172)) (-5 *2 (-684 *3)))))
-(((*1 *1) (-5 *1 (-1057))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-640 (-640 (-640 *5)))) (-5 *3 (-1 (-112) *5 *5))
- (-5 *4 (-640 *5)) (-4 *5 (-846)) (-5 *1 (-1179 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-5 *1 (-330)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
+ (-12
+ (-5 *3
+ (-504 (-407 (-563)) (-240 *5 (-767)) (-860 *4)
+ (-247 *4 (-407 (-563)))))
+ (-14 *4 (-640 (-1169))) (-14 *5 (-767)) (-5 *2 (-112))
+ (-5 *1 (-505 *4 *5)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-767)) (-4 *4 (-349)) (-5 *1 (-216 *4 *2))
+ (-4 *2 (-1233 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-917)) (-4 *1 (-1235 *3 *4)) (-4 *3 (-1045))
+ (-4 *4 (-788))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-407 (-563))) (-4 *1 (-1238 *3)) (-4 *3 (-1045)))))
+(((*1 *1) (-5 *1 (-157)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))))
+(((*1 *1 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208)))))
(((*1 *2 *3)
(|partial| -12
(-5 *3
(-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
(|:| |relerr| (-225))))
(-5 *2
(-2
@@ -14196,7 +14195,7 @@
(-3 (|:| |str| (-1149 (-225)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -2516
+ (|:| -4166
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite| "The bottom of range is infinite")
(|:| |upperInfinite| "The top of range is infinite")
@@ -14204,6 +14203,8 @@
"Both top and bottom points are infinite")
(|:| |notEvaluated| "Range not yet evaluated")))))
(-5 *1 (-558)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
@@ -14220,19 +14221,18 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-379)) (-5 *1 (-1057)))))
+(((*1 *1 *1) (-4 *1 (-1137))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-609 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4)))
- (-4 *4 (-13 (-555) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-277 *4 *2)))))
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *2 (-1059 *4 *5 *6)) (-5 *1 (-772 *4 *5 *6 *2 *3))
+ (-4 *3 (-1065 *4 *5 *6 *2)))))
(((*1 *1 *1 *1) (-4 *1 (-25))) ((*1 *1 *1 *1) (-5 *1 (-157)))
((*1 *1 *1 *1)
(-12 (-5 *1 (-214 *2))
(-4 *2
(-13 (-846)
- (-10 -8 (-15 -2309 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $))
- (-15 -2807 ((-1262) $)))))))
+ (-10 -8 (-15 -2308 ((-1151) $ (-1169))) (-15 -1463 ((-1262) $))
+ (-15 -1651 ((-1262) $)))))))
((*1 *1 *1 *2) (-12 (-5 *1 (-294 *2)) (-4 *2 (-25)) (-4 *2 (-1208))))
((*1 *1 *2 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-25)) (-4 *2 (-1208))))
((*1 *1 *2 *1)
@@ -14255,106 +14255,76 @@
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3))))
((*1 *2 *2 *2) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204))))
((*1 *1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-25)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-555))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3548 *3)))
- (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
-(((*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1208))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-846))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-846))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-563)) (-4 *1 (-282 *3)) (-4 *3 (-1208))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-563)) (-4 *1 (-282 *2)) (-4 *2 (-1208))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2
- (|:| -2387
- (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (|:| -2557
- (-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| (-1149 (-225)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -2516
- (-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 (-558))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-767)) (-4 *1 (-690 *2)) (-4 *2 (-1093))))
- ((*1 *1 *2)
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-885 *5 *3)) (-5 *4 (-888 *5)) (-4 *5 (-1093))
+ (-4 *3 (-166 *6)) (-4 (-948 *6) (-882 *5))
+ (-4 *6 (-13 (-882 *5) (-172))) (-5 *1 (-178 *5 *6 *3))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *2 (-885 *4 *1)) (-5 *3 (-888 *4)) (-4 *1 (-882 *4))
+ (-4 *4 (-1093))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-885 *5 *6)) (-5 *4 (-888 *5)) (-4 *5 (-1093))
+ (-4 *6 (-13 (-1093) (-1034 *3))) (-4 *3 (-882 *5))
+ (-5 *1 (-927 *5 *3 *6))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-885 *5 *3)) (-4 *5 (-1093))
+ (-4 *3 (-13 (-430 *6) (-611 *4) (-882 *5) (-1034 (-609 $))))
+ (-5 *4 (-888 *5)) (-4 *6 (-13 (-555) (-846) (-882 *5)))
+ (-5 *1 (-928 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-885 (-563) *3)) (-5 *4 (-888 (-563))) (-4 *3 (-545))
+ (-5 *1 (-929 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-885 *5 *6)) (-5 *3 (-609 *6)) (-4 *5 (-1093))
+ (-4 *6 (-13 (-846) (-1034 (-609 $)) (-611 *4) (-882 *5)))
+ (-5 *4 (-888 *5)) (-5 *1 (-930 *5 *6))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-881 *5 *6 *3)) (-5 *4 (-888 *5)) (-4 *5 (-1093))
+ (-4 *6 (-882 *5)) (-4 *3 (-661 *6)) (-5 *1 (-931 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2 *5)
+ (-12 (-5 *5 (-1 (-885 *6 *3) *8 (-888 *6) (-885 *6 *3)))
+ (-4 *8 (-846)) (-5 *2 (-885 *6 *3)) (-5 *4 (-888 *6))
+ (-4 *6 (-1093)) (-4 *3 (-13 (-945 *9 *7 *8) (-611 *4)))
+ (-4 *7 (-789)) (-4 *9 (-13 (-1045) (-846) (-882 *6)))
+ (-5 *1 (-932 *6 *7 *8 *9 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-885 *5 *3)) (-4 *5 (-1093))
+ (-4 *3 (-13 (-945 *8 *6 *7) (-611 *4))) (-5 *4 (-888 *5))
+ (-4 *7 (-882 *5)) (-4 *6 (-789)) (-4 *7 (-846))
+ (-4 *8 (-13 (-1045) (-846) (-882 *5)))
+ (-5 *1 (-932 *5 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-885 *5 *3)) (-4 *5 (-1093)) (-4 *3 (-988 *6))
+ (-4 *6 (-13 (-555) (-882 *5) (-611 *4))) (-5 *4 (-888 *5))
+ (-5 *1 (-935 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-885 *5 (-1169))) (-5 *3 (-1169)) (-5 *4 (-888 *5))
+ (-4 *5 (-1093)) (-5 *1 (-936 *5))))
+ ((*1 *2 *3 *4 *5 *2 *6)
+ (-12 (-5 *4 (-640 (-888 *7))) (-5 *5 (-1 *9 (-640 *9)))
+ (-5 *6 (-1 (-885 *7 *9) *9 (-888 *7) (-885 *7 *9))) (-4 *7 (-1093))
+ (-4 *9 (-13 (-1045) (-611 (-888 *7)) (-1034 *8)))
+ (-5 *2 (-885 *7 *9)) (-5 *3 (-640 *9)) (-4 *8 (-13 (-1045) (-846)))
+ (-5 *1 (-937 *7 *8 *9)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-363)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
+ (-5 *1 (-504 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-349))
+ (-5 *2 (-640 (-2 (|:| |deg| (-767)) (|:| -3248 *3))))
+ (-5 *1 (-216 *4 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *2 *2)
(-12
(-5 *2
- (-2
- (|:| -2387
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
- (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (|:| -2557
- (-2 (|:| |stiffness| (-379)) (|:| |stability| (-379))
- (|:| |expense| (-379)) (|:| |accuracy| (-379))
- (|:| |intermediateResults| (-379))))))
- (-5 *1 (-799))))
- ((*1 *2 *3 *4)
- (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093))
- (-4 *4 (-1093)))))
-(((*1 *2 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225)))
- (-5 *2 (-1031)) (-5 *1 (-743)))))
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4)
+ (|:| |xpnt| (-563))))
+ (-4 *4 (-13 (-1233 *3) (-555) (-10 -8 (-15 -3551 ($ $ $)))))
+ (-4 *3 (-555)) (-5 *1 (-1236 *3 *4)))))
+(((*1 *1) (-5 *1 (-157)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))))
+(((*1 *2 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-640 *10)) (-5 *5 (-112)) (-4 *10 (-1065 *6 *7 *8 *9))
- (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
- (-4 *9 (-1059 *6 *7 *8))
- (-5 *2
- (-640
- (-2 (|:| -1420 (-640 *9)) (|:| -2059 *10) (|:| |ineq| (-640 *9)))))
- (-5 *1 (-984 *6 *7 *8 *9 *10)) (-5 *3 (-640 *9))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-640 *10)) (-5 *5 (-112)) (-4 *10 (-1065 *6 *7 *8 *9))
- (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
- (-4 *9 (-1059 *6 *7 *8))
- (-5 *2
- (-640
- (-2 (|:| -1420 (-640 *9)) (|:| -2059 *10) (|:| |ineq| (-640 *9)))))
- (-5 *1 (-1100 *6 *7 *8 *9 *10)) (-5 *3 (-640 *9)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-644 *3 *4 *5)) (-4 *3 (-1093))
- (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *2 *3 *2)
- (-12 (-4 *1 (-783)) (-5 *2 (-1031))
- (-5 *3
- (-2 (|:| |fn| (-316 (-225)))
- (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))))
- ((*1 *2 *3 *2)
- (-12 (-4 *1 (-783)) (-5 *2 (-1031))
- (-5 *3
- (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225)))))))
+ (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
(-4 *2 (-13 (-430 *3) (-998)))))
@@ -14371,31 +14341,50 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
+(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-1137)) (-5 *2 (-1224 (-563))))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4))
- (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 (-640 *2))) (-5 *4 (-640 *5))
- (-4 *5 (-38 (-407 (-563)))) (-4 *2 (-1248 *5))
- (-5 *1 (-1250 *5 *2)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-857))))
- ((*1 *1 *2) (-12 (-5 *2 (-388)) (-5 *1 (-857)))))
-(((*1 *1 *1) (-12 (-4 *1 (-430 *2)) (-4 *2 (-846)) (-4 *2 (-555))))
- ((*1 *1 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)))))
+ (-12 (-5 *3 (-491)) (-5 *4 (-950)) (-5 *2 (-686 (-533)))
+ (-5 *1 (-533))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-950)) (-4 *3 (-1093)) (-5 *2 (-686 *1))
+ (-4 *1 (-763 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1093) (-1034 *5)))
+ (-4 *5 (-882 *4)) (-4 *4 (-1093)) (-5 *2 (-1 (-112) *5))
+ (-5 *1 (-927 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-299 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3)))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1087 (-839 (-225)))) (-5 *3 (-225)) (-5 *2 (-112))
+ (-5 *1 (-305))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
+ (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))))
(((*1 *2 *2 *3)
(-12 (-4 *3 (-363)) (-5 *1 (-285 *3 *2)) (-4 *2 (-1248 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174)))))
-(((*1 *2 *1 *1 *3 *4)
- (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6))
- (-4 *5 (-13 (-1093) (-34))) (-4 *6 (-13 (-1093) (-34)))
- (-5 *2 (-112)) (-5 *1 (-1133 *5 *6)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-330)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-563)) (-4 *4 (-172)) (-4 *5 (-373 *4))
- (-4 *6 (-373 *4)) (-5 *1 (-683 *4 *5 *6 *2))
- (-4 *2 (-682 *4 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-349))
+ (-5 *2
+ (-2 (|:| |cont| *5)
+ (|:| -1337 (-640 (-2 (|:| |irr| *3) (|:| -3259 (-563)))))))
+ (-5 *1 (-216 *5 *3)) (-4 *3 (-1233 *5)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-945 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *2 (-452))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *3 (-1059 *4 *5 *6))
+ (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2058 *1))))
+ (-4 *1 (-1065 *4 *5 *6 *3))))
+ ((*1 *1 *1) (-4 *1 (-1212)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-555)) (-5 *1 (-1236 *3 *2))
+ (-4 *2 (-13 (-1233 *3) (-555) (-10 -8 (-15 -3551 ($ $ $))))))))
+(((*1 *2) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))))
+(((*1 *1 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))))
(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-248)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
@@ -14413,255 +14402,58 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-407 (-948 (-563)))))
- (-5 *2 (-640 (-640 (-294 (-948 *4))))) (-5 *1 (-380 *4))
- (-4 *4 (-13 (-844) (-363)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-294 (-407 (-948 (-563))))))
- (-5 *2 (-640 (-640 (-294 (-948 *4))))) (-5 *1 (-380 *4))
- (-4 *4 (-13 (-844) (-363)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-407 (-948 (-563)))) (-5 *2 (-640 (-294 (-948 *4))))
- (-5 *1 (-380 *4)) (-4 *4 (-13 (-844) (-363)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-294 (-407 (-948 (-563)))))
- (-5 *2 (-640 (-294 (-948 *4)))) (-5 *1 (-380 *4))
- (-4 *4 (-13 (-844) (-363)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1169))
- (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-4 *4 (-13 (-29 *6) (-1193) (-955)))
- (-5 *2 (-2 (|:| |particular| *4) (|:| -4315 (-640 *4))))
- (-5 *1 (-647 *6 *4 *3)) (-4 *3 (-651 *4))))
- ((*1 *2 *3 *2 *4 *2 *5)
- (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-640 *2))
- (-4 *2 (-13 (-29 *6) (-1193) (-955)))
- (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *1 (-647 *6 *2 *3)) (-4 *3 (-651 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 *5)) (-4 *5 (-363))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1257 *5) "failed"))
- (|:| -4315 (-640 (-1257 *5)))))
- (-5 *1 (-662 *5)) (-5 *4 (-1257 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-640 *5))) (-4 *5 (-363))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1257 *5) "failed"))
- (|:| -4315 (-640 (-1257 *5)))))
- (-5 *1 (-662 *5)) (-5 *4 (-1257 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 *5)) (-4 *5 (-363))
- (-5 *2
- (-640
- (-2 (|:| |particular| (-3 (-1257 *5) "failed"))
- (|:| -4315 (-640 (-1257 *5))))))
- (-5 *1 (-662 *5)) (-5 *4 (-640 (-1257 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-640 *5))) (-4 *5 (-363))
- (-5 *2
- (-640
- (-2 (|:| |particular| (-3 (-1257 *5) "failed"))
- (|:| -4315 (-640 (-1257 *5))))))
- (-5 *1 (-662 *5)) (-5 *4 (-640 (-1257 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4408))))
- (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4408))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4))))
- (-5 *1 (-663 *5 *6 *4 *3)) (-4 *3 (-682 *5 *6 *4))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4408))))
- (-4 *7 (-13 (-373 *5) (-10 -7 (-6 -4408))))
- (-5 *2
- (-640
- (-2 (|:| |particular| (-3 *7 "failed")) (|:| -4315 (-640 *7)))))
- (-5 *1 (-663 *5 *6 *7 *3)) (-5 *4 (-640 *7))
- (-4 *3 (-682 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-640 (-1169))) (-4 *5 (-555))
- (-5 *2 (-640 (-640 (-294 (-407 (-948 *5)))))) (-5 *1 (-766 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-555))
- (-5 *2 (-640 (-640 (-294 (-407 (-948 *4)))))) (-5 *1 (-766 *4))))
- ((*1 *2 *2 *2 *3 *4)
- (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1169))
- (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *1 (-768 *5 *2)) (-4 *2 (-13 (-29 *5) (-1193) (-955)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-684 *7)) (-5 *5 (-1169))
- (-4 *7 (-13 (-29 *6) (-1193) (-955)))
- (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *2
- (-2 (|:| |particular| (-1257 *7)) (|:| -4315 (-640 (-1257 *7)))))
- (-5 *1 (-798 *6 *7)) (-5 *4 (-1257 *7))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-684 *6)) (-5 *4 (-1169))
- (-4 *6 (-13 (-29 *5) (-1193) (-955)))
- (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *2 (-640 (-1257 *6))) (-5 *1 (-798 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-640 (-294 *7))) (-5 *4 (-640 (-114)))
- (-5 *5 (-1169)) (-4 *7 (-13 (-29 *6) (-1193) (-955)))
- (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *2
- (-2 (|:| |particular| (-1257 *7)) (|:| -4315 (-640 (-1257 *7)))))
- (-5 *1 (-798 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-640 *7)) (-5 *4 (-640 (-114)))
- (-5 *5 (-1169)) (-4 *7 (-13 (-29 *6) (-1193) (-955)))
- (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *2
- (-2 (|:| |particular| (-1257 *7)) (|:| -4315 (-640 (-1257 *7)))))
- (-5 *1 (-798 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-294 *7)) (-5 *4 (-114)) (-5 *5 (-1169))
- (-4 *7 (-13 (-29 *6) (-1193) (-955)))
- (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *2
- (-3 (-2 (|:| |particular| *7) (|:| -4315 (-640 *7))) *7 "failed"))
- (-5 *1 (-798 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-114)) (-5 *5 (-1169))
- (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *2
- (-3 (-2 (|:| |particular| *3) (|:| -4315 (-640 *3))) *3 "failed"))
- (-5 *1 (-798 *6 *3)) (-4 *3 (-13 (-29 *6) (-1193) (-955)))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *3 (-294 *2)) (-5 *4 (-114)) (-5 *5 (-640 *2))
- (-4 *2 (-13 (-29 *6) (-1193) (-955))) (-5 *1 (-798 *6 *2))
- (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))))
- ((*1 *2 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-114)) (-5 *4 (-294 *2)) (-5 *5 (-640 *2))
- (-4 *2 (-13 (-29 *6) (-1193) (-955)))
- (-4 *6 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *1 (-798 *6 *2))))
- ((*1 *2 *3) (-12 (-5 *3 (-804)) (-5 *2 (-1031)) (-5 *1 (-801))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-804)) (-5 *4 (-1057)) (-5 *2 (-1031)) (-5 *1 (-801))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1257 (-316 (-379)))) (-5 *4 (-379)) (-5 *5 (-640 *4))
- (-5 *2 (-1031)) (-5 *1 (-801))))
- ((*1 *2 *3 *4 *4 *5 *4)
- (-12 (-5 *3 (-1257 (-316 (-379)))) (-5 *4 (-379)) (-5 *5 (-640 *4))
- (-5 *2 (-1031)) (-5 *1 (-801))))
- ((*1 *2 *3 *4 *4 *5 *6 *4)
- (-12 (-5 *3 (-1257 (-316 *4))) (-5 *5 (-640 (-379)))
- (-5 *6 (-316 (-379))) (-5 *4 (-379)) (-5 *2 (-1031)) (-5 *1 (-801))))
- ((*1 *2 *3 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1257 (-316 (-379)))) (-5 *4 (-379)) (-5 *5 (-640 *4))
- (-5 *2 (-1031)) (-5 *1 (-801))))
- ((*1 *2 *3 *4 *4 *5 *6 *5 *4)
- (-12 (-5 *3 (-1257 (-316 *4))) (-5 *5 (-640 (-379)))
- (-5 *6 (-316 (-379))) (-5 *4 (-379)) (-5 *2 (-1031)) (-5 *1 (-801))))
- ((*1 *2 *3 *4 *4 *5 *6 *5 *4 *4)
- (-12 (-5 *3 (-1257 (-316 *4))) (-5 *5 (-640 (-379)))
- (-5 *6 (-316 (-379))) (-5 *4 (-379)) (-5 *2 (-1031)) (-5 *1 (-801))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12
- (-5 *5
- (-1
- (-3 (-2 (|:| |particular| *6) (|:| -4315 (-640 *6))) "failed")
- *7 *6))
- (-4 *6 (-363)) (-4 *7 (-651 *6))
- (-5 *2 (-2 (|:| |particular| (-1257 *6)) (|:| -4315 (-684 *6))))
- (-5 *1 (-809 *6 *7)) (-5 *3 (-684 *6)) (-5 *4 (-1257 *6))))
- ((*1 *2 *3) (-12 (-5 *3 (-894)) (-5 *2 (-1031)) (-5 *1 (-893))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-894)) (-5 *4 (-1057)) (-5 *2 (-1031)) (-5 *1 (-893))))
- ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8)
- (-12 (-5 *4 (-767)) (-5 *6 (-640 (-640 (-316 *3)))) (-5 *7 (-1151))
- (-5 *8 (-225)) (-5 *5 (-640 (-316 (-379)))) (-5 *3 (-379))
- (-5 *2 (-1031)) (-5 *1 (-893))))
- ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7)
- (-12 (-5 *4 (-767)) (-5 *6 (-640 (-640 (-316 *3)))) (-5 *7 (-1151))
- (-5 *5 (-640 (-316 (-379)))) (-5 *3 (-379)) (-5 *2 (-1031))
- (-5 *1 (-893))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-948 (-407 (-563)))) (-5 *2 (-640 (-379)))
- (-5 *1 (-1019)) (-5 *4 (-379))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-948 (-563))) (-5 *2 (-640 (-379))) (-5 *1 (-1019))
- (-5 *4 (-379))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
- (-5 *2 (-640 *4)) (-5 *1 (-1121 *3 *4)) (-4 *3 (-1233 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *2 (-640 (-294 (-316 *4)))) (-5 *1 (-1124 *4))
- (-5 *3 (-316 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *2 (-640 (-294 (-316 *4)))) (-5 *1 (-1124 *4))
- (-5 *3 (-294 (-316 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169))
- (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *2 (-640 (-294 (-316 *5)))) (-5 *1 (-1124 *5))
- (-5 *3 (-294 (-316 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169))
- (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *2 (-640 (-294 (-316 *5)))) (-5 *1 (-1124 *5))
- (-5 *3 (-316 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 (-1169)))
- (-4 *5 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *2 (-640 (-640 (-294 (-316 *5))))) (-5 *1 (-1124 *5))
- (-5 *3 (-640 (-294 (-316 *5))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-407 (-948 *5)))) (-5 *4 (-640 (-1169)))
- (-4 *5 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *5))))))
- (-5 *1 (-1177 *5))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-418 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1233 (-48)))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3))))
+ (-5 *1 (-121 *3)) (-4 *3 (-846))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-584 *4)) (-4 *4 (-13 (-29 *3) (-1193)))
+ (-4 *3 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563))))
+ (-5 *1 (-582 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-584 (-407 (-948 *3))))
+ (-4 *3 (-13 (-452) (-1034 (-563)) (-846) (-636 (-563))))
+ (-5 *1 (-587 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-640 (-1169))) (-4 *5 (-555))
- (-5 *2 (-640 (-640 (-294 (-407 (-948 *5)))))) (-5 *1 (-1177 *5))
- (-5 *3 (-640 (-294 (-407 (-948 *5)))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-407 (-948 *4)))) (-4 *4 (-555))
- (-5 *2 (-640 (-640 (-294 (-407 (-948 *4)))))) (-5 *1 (-1177 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-640 (-640 (-294 (-407 (-948 *4))))))
- (-5 *1 (-1177 *4)) (-5 *3 (-640 (-294 (-407 (-948 *4)))))))
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1233 *5)) (-4 *5 (-363))
+ (-5 *2 (-2 (|:| -2376 *3) (|:| |special| *3))) (-5 *1 (-723 *5 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169)) (-4 *5 (-555))
- (-5 *2 (-640 (-294 (-407 (-948 *5))))) (-5 *1 (-1177 *5))
- (-5 *3 (-407 (-948 *5)))))
+ (-12 (-5 *4 (-1257 *5)) (-4 *5 (-363)) (-4 *5 (-1045))
+ (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5))
+ (-5 *3 (-640 (-684 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169)) (-4 *5 (-555))
- (-5 *2 (-640 (-294 (-407 (-948 *5))))) (-5 *1 (-1177 *5))
- (-5 *3 (-294 (-407 (-948 *5))))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-640 (-294 (-407 (-948 *4)))))
- (-5 *1 (-1177 *4)) (-5 *3 (-407 (-948 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-640 (-294 (-407 (-948 *4)))))
- (-5 *1 (-1177 *4)) (-5 *3 (-294 (-407 (-948 *4)))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
- (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-1045))))
- ((*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-445 *3)) (-4 *3 (-1045)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
- (-4 *3 (-367 *4))))
- ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+ (-12 (-5 *4 (-1257 (-1257 *5))) (-4 *5 (-363)) (-4 *5 (-1045))
+ (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5))
+ (-5 *3 (-640 (-684 *5)))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-141)) (-5 *2 (-640 *1)) (-4 *1 (-1137))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-144)) (-5 *2 (-640 *1)) (-4 *1 (-1137)))))
+(((*1 *2 *1) (-12 (-4 *1 (-763 *3)) (-4 *3 (-1093)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-407 (-563)))
- (-5 *1 (-433 *4 *3)) (-4 *3 (-430 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-609 *3)) (-4 *3 (-430 *5))
- (-4 *5 (-13 (-846) (-555) (-1034 (-563))))
- (-5 *2 (-1165 (-407 (-563)))) (-5 *1 (-433 *5 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1165 *3)) (-4 *3 (-1045)) (-4 *1 (-1233 *3)))))
-(((*1 *1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-1045)))))
-(((*1 *1 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208)))))
+ (-12 (-5 *3 (-640 (-640 (-939 (-225)))))
+ (-5 *2 (-640 (-1087 (-225)))) (-5 *1 (-924)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-363)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-112))
+ (-5 *1 (-504 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-363)) (-4 *6 (-1233 (-407 *2)))
+ (-4 *2 (-1233 *5)) (-5 *1 (-215 *5 *2 *6 *3))
+ (-4 *3 (-342 *5 *2 *6)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-323 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-131))
+ (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3372 *4))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-2 (|:| -2310 *3) (|:| -4223 *4))))
+ (-5 *1 (-731 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-722))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1235 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788))
+ (-5 *2 (-1149 (-2 (|:| |k| *4) (|:| |c| *3)))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-307))
+ (-5 *2 (-407 (-418 (-948 *4)))) (-5 *1 (-1038 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-669 *3)) (-4 *3 (-1208)) (-5 *2 (-767)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
(-4 *2 (-13 (-430 *3) (-998)))))
@@ -14678,64 +14470,111 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-684 *3))
- (-4 *3 (-13 (-307) (-10 -8 (-15 -3205 ((-418 $) $)))))
- (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))))
-(((*1 *2 *2)
- (-12
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-141))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1137)) (-5 *2 (-144)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-684 (-169 (-407 (-563)))))
(-5 *2
(-640
- (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-767)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *4 (-789)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452)) (-4 *5 (-846))
- (-5 *1 (-449 *3 *4 *5 *6)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-640 (-939 *4))) (-4 *1 (-1127 *4)) (-4 *4 (-1045))
- (-5 *2 (-767)))))
-(((*1 *1 *1 *1 *1) (-5 *1 (-858)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-640 *6)) (-4 *1 (-945 *4 *5 *6)) (-4 *4 (-1045))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-767))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-945 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-5 *2 (-767)))))
+ (-2 (|:| |outval| (-169 *4)) (|:| |outmult| (-563))
+ (|:| |outvect| (-640 (-684 (-169 *4)))))))
+ (-5 *1 (-760 *4)) (-4 *4 (-13 (-363) (-844))))))
+(((*1 *1 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225)))
+ (-5 *1 (-922))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225)))
+ (-5 *1 (-922))))
+ ((*1 *1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225)))
+ (-5 *1 (-923))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-939 (-225)) (-225))) (-5 *3 (-1087 (-225)))
+ (-5 *1 (-923)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-846)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-858))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
+ (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-640 *6)) (-4 *6 (-846)) (-4 *4 (-363)) (-4 *5 (-789))
+ (-5 *2 (-112)) (-5 *1 (-504 *4 *5 *6 *7)) (-4 *7 (-945 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |pde| (-640 (-316 (-225))))
+ (|:| |constraints|
+ (-640
+ (-2 (|:| |start| (-225)) (|:| |finish| (-225))
+ (|:| |grid| (-767)) (|:| |boundaryType| (-563))
+ (|:| |dStart| (-684 (-225))) (|:| |dFinish| (-684 (-225))))))
+ (|:| |f| (-640 (-640 (-316 (-225))))) (|:| |st| (-1151))
+ (|:| |tol| (-225))))
+ (-5 *2 (-112)) (-5 *1 (-210)))))
(((*1 *1)
- (-12 (-4 *1 (-404)) (-2176 (|has| *1 (-6 -4398)))
- (-2176 (|has| *1 (-6 -4390)))))
+ (-12 (-4 *1 (-404)) (-2174 (|has| *1 (-6 -4399)))
+ (-2174 (|has| *1 (-6 -4391)))))
((*1 *2 *1) (-12 (-4 *1 (-425 *2)) (-4 *2 (-1093)) (-4 *2 (-846))))
((*1 *1) (-4 *1 (-840))) ((*1 *1 *1 *1) (-4 *1 (-846)))
((*1 *2 *1) (-12 (-4 *1 (-964 *2)) (-4 *2 (-846)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-335 *3 *4 *5 *6)) (-4 *3 (-363)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5))
- (-5 *2 (-413 *4 (-407 *4) *5 *6))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1257 *6)) (-4 *6 (-13 (-409 *4 *5) (-1034 *4)))
- (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-4 *3 (-307))
- (-5 *1 (-413 *3 *4 *5 *6))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-363))
- (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)))))
+ (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846))
+ (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-767))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846))
+ (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-767))))
+ ((*1 *2 *1) (-12 (-4 *1 (-266 *3)) (-4 *3 (-846)) (-5 *2 (-767))))
+ ((*1 *2 *1) (-12 (-4 *1 (-349)) (-5 *2 (-917))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-336 *4 *5 *6 *7)) (-4 *4 (-13 (-368) (-363)))
+ (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5))) (-4 *7 (-342 *4 *5 *6))
+ (-5 *2 (-767)) (-5 *1 (-392 *4 *5 *6 *7))))
+ ((*1 *2 *1) (-12 (-4 *1 (-402)) (-5 *2 (-829 (-917)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-404)) (-5 *2 (-563))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-594 *3)) (-4 *3 (-1045))))
+ ((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-594 *3)) (-4 *3 (-1045))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-555)) (-5 *2 (-563)) (-5 *1 (-620 *3 *4))
+ (-4 *4 (-1233 *3))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *2 (-767)) (-4 *1 (-736 *4 *3)) (-4 *4 (-1045))
+ (-4 *3 (-846))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-736 *4 *3)) (-4 *4 (-1045)) (-4 *3 (-846))
+ (-5 *2 (-767))))
+ ((*1 *2 *1) (-12 (-4 *1 (-865 *3)) (-5 *2 (-767))))
+ ((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-900 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-901 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-336 *5 *6 *7 *8)) (-4 *5 (-430 *4))
+ (-4 *6 (-1233 *5)) (-4 *7 (-1233 (-407 *6)))
+ (-4 *8 (-342 *5 *6 *7))
+ (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-767))
+ (-5 *1 (-907 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-336 (-407 (-563)) *4 *5 *6))
+ (-4 *4 (-1233 (-407 (-563)))) (-4 *5 (-1233 (-407 *4)))
+ (-4 *6 (-342 (-407 (-563)) *4 *5)) (-5 *2 (-767))
+ (-5 *1 (-908 *4 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-336 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-363))
+ (-4 *7 (-1233 *6)) (-4 *4 (-1233 (-407 *7))) (-4 *8 (-342 *6 *7 *4))
+ (-4 *9 (-13 (-368) (-363))) (-5 *2 (-767))
+ (-5 *1 (-1014 *6 *7 *4 *8 *9))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1233 *3)) (-4 *3 (-1045)) (-4 *3 (-555))
+ (-5 *2 (-767))))
+ ((*1 *2 *1 *2)
+ (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-121 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1 (-379))) (-5 *1 (-1036)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
- (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2 (-379)) (-5 *1 (-205)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-684 (-407 (-948 (-563)))))
- (-5 *2 (-640 (-684 (-316 (-563))))) (-5 *1 (-1027))
- (-5 *3 (-316 (-563))))))
-(((*1 *1) (-5 *1 (-157))))
-(((*1 *2 *3 *2 *2)
- (-12 (-5 *2 (-640 (-481 *4 *5))) (-5 *3 (-860 *4))
- (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *1 (-628 *4 *5)))))
+ (-12 (-5 *3 (-815 *4)) (-4 *4 (-846)) (-5 *2 (-112))
+ (-5 *1 (-667 *4)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
(-4 *2 (-13 (-430 *3) (-998)))))
@@ -14755,39 +14594,81 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1093)) (-5 *1 (-960 *3 *2)) (-4 *3 (-1093)))))
-(((*1 *2)
- (-12 (-4 *3 (-555)) (-5 *2 (-640 (-684 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-417 *3)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-563)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-767)) (-4 *5 (-172))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-563)) (-14 *3 (-767))
+ (-4 *4 (-172))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-682 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-373 *2))
+ (-4 *4 (-373 *2))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-1045)) (-4 *1 (-682 *3 *2 *4)) (-4 *2 (-373 *3))
+ (-4 *4 (-373 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1135 *2 *3)) (-14 *2 (-767)) (-4 *3 (-1045)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-684 (-169 (-407 (-563))))) (-5 *2 (-640 (-169 *4)))
+ (-5 *1 (-760 *4)) (-4 *4 (-13 (-363) (-844))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1169)) (-5 *5 (-1087 (-225))) (-5 *2 (-923))
+ (-5 *1 (-921 *3)) (-4 *3 (-611 (-536)))))
+ ((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *4 (-1169)) (-5 *5 (-1087 (-225))) (-5 *2 (-923))
+ (-5 *1 (-921 *3)) (-4 *3 (-611 (-536)))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922))))
+ ((*1 *1 *2 *2 *2 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225)))
+ (-5 *1 (-922))))
+ ((*1 *1 *2 *2 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225)))
+ (-5 *1 (-922))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923))))
+ ((*1 *1 *2 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225)))
+ (-5 *1 (-923))))
+ ((*1 *1 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225)))
+ (-5 *1 (-923))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-640 (-1 (-225) (-225)))) (-5 *3 (-1087 (-225)))
+ (-5 *1 (-923))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-640 (-1 (-225) (-225)))) (-5 *3 (-1087 (-225)))
+ (-5 *1 (-923))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225)))
+ (-5 *1 (-923))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225)))
+ (-5 *1 (-923)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-846)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-858)))
((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7)
- (-12 (-5 *4 (-563)) (-5 *5 (-684 (-225)))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))))
- (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))
- (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))))
-(((*1 *2)
- (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-417 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1149 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
- (-5 *2 (-112)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-858)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *1 (-504 *3 *4 *5 *2)) (-4 *2 (-945 *3 *4 *5))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846))
+ (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-640 (-316 (-225)))) (-5 *3 (-225)) (-5 *2 (-112))
+ (-5 *1 (-210)))))
+(((*1 *1 *1) (-4 *1 (-1054)))
+ ((*1 *1 *1 *2 *2)
+ (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))))
+(((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-846)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1242 *3 *4 *5)) (-4 *3 (-13 (-363) (-846)))
+ (-14 *4 (-1169)) (-14 *5 *3) (-5 *1 (-319 *3 *4 *5))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1 (-379))) (-5 *1 (-1036)) (-5 *3 (-379)))))
+(((*1 *1 *2) (-12 (-5 *2 (-815 *3)) (-4 *3 (-846)) (-5 *1 (-667 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-417 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *1 *1) (-4 *1 (-1132))))
+ (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4))
+ (-4 *4 (-349)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
(-4 *2 (-13 (-430 *3) (-998)))))
@@ -14807,51 +14688,55 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
-(((*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10)
- (-12 (-5 *4 (-563)) (-5 *5 (-1151)) (-5 *6 (-684 (-225)))
- (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-89 G))))
- (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN))))
- (-5 *9 (-3 (|:| |fn| (-388)) (|:| |fp| (-71 PEDERV))))
- (-5 *10 (-3 (|:| |fn| (-388)) (|:| |fp| (-88 OUTPUT))))
- (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-745)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-640 *7)) (-5 *5 (-640 (-640 *8))) (-4 *7 (-846))
- (-4 *8 (-307)) (-4 *6 (-789)) (-4 *9 (-945 *8 *6 *7))
- (-5 *2
- (-2 (|:| |unitPart| *9)
- (|:| |suPart|
- (-640 (-2 (|:| -2174 (-1165 *9)) (|:| -1654 (-563)))))))
- (-5 *1 (-738 *6 *7 *8 *9)) (-5 *3 (-1165 *9)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-684 *4)) (-4 *4 (-1045)) (-5 *1 (-1135 *3 *4))
+ (-14 *3 (-767)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-757))))
+(((*1 *2 *1) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-846)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-1 (-584 *3) *3 (-1169)))
- (-5 *6
- (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3
- (-1169)))
- (-4 *3 (-284)) (-4 *3 (-626)) (-4 *3 (-1034 *4)) (-4 *3 (-430 *7))
- (-5 *4 (-1169)) (-4 *7 (-611 (-888 (-563)))) (-4 *7 (-452))
- (-4 *7 (-882 (-563))) (-4 *7 (-846)) (-5 *2 (-584 *3))
- (-5 *1 (-572 *7 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34)))
- (-4 *3 (-13 (-1093) (-34))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-640 *6)) (-4 *6 (-846)) (-4 *4 (-363)) (-4 *5 (-789))
+ (-5 *2
+ (-2 (|:| |mval| (-684 *4)) (|:| |invmval| (-684 *4))
+ (|:| |genIdeal| (-504 *4 *5 *6 *7))))
+ (-5 *1 (-504 *4 *5 *6 *7)) (-4 *7 (-945 *4 *5 *6)))))
+(((*1 *2 *2) (-12 (-5 *2 (-316 (-225))) (-5 *1 (-210)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-174 *3)) (-4 *3 (-307))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-669 *3)) (-4 *3 (-1208))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-767)) (-4 *1 (-736 *3 *4)) (-4 *3 (-1045))
+ (-4 *4 (-846))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-865 *3)) (-5 *2 (-563))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-640 *3)) (-4 *1 (-976 *3)) (-4 *3 (-1045))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-640 *1)) (-5 *3 (-640 *7)) (-4 *1 (-1065 *4 *5 *6 *7))
+ (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *7 (-1059 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-1059 *4 *5 *6)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-640 *1))
+ (-4 *1 (-1065 *4 *5 *6 *7))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-640 *1)) (-4 *1 (-1065 *4 *5 *6 *3)) (-4 *4 (-452))
+ (-4 *5 (-789)) (-4 *6 (-846)) (-4 *3 (-1059 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-640 *1))
+ (-4 *1 (-1065 *4 *5 *6 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1235 *3 *2)) (-4 *3 (-1045)) (-4 *2 (-788)))))
+(((*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-379)) (-5 *1 (-1036)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-815 *3)) (-4 *3 (-846)) (-5 *1 (-667 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-2 (|:| -2174 *4) (|:| -4167 (-563)))))
- (-4 *4 (-1233 (-563))) (-5 *2 (-733 (-767))) (-5 *1 (-442 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-418 *5)) (-4 *5 (-1233 *4)) (-4 *4 (-1045))
- (-5 *2 (-733 (-767))) (-5 *1 (-444 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-1174))) (-5 *1 (-1174))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-1174))) (-5 *1 (-1174)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1233 (-407 (-563)))) (-5 *1 (-909 *3 *2))
- (-4 *2 (-1233 (-407 *3))))))
-(((*1 *2 *1) (-12 (-4 *1 (-991 *2)) (-4 *2 (-1208)))))
+ (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4))
+ (-4 *4 (-349)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
(-4 *2 (-13 (-430 *3) (-998)))))
@@ -14871,72 +14756,43 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
-(((*1 *2 *3 *4 *5 *4 *4 *4)
- (-12 (-4 *6 (-846)) (-5 *3 (-640 *6)) (-5 *5 (-640 *3))
- (-5 *2
- (-2 (|:| |f1| *3) (|:| |f2| (-640 *5)) (|:| |f3| *5)
- (|:| |f4| (-640 *5))))
- (-5 *1 (-1179 *6)) (-5 *4 (-640 *5)))))
-(((*1 *1) (-5 *1 (-468))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-1134 *2 *3)) (-4 *2 (-13 (-1093) (-34)))
+ (-4 *3 (-13 (-1093) (-34))))))
+(((*1 *1 *1 *1) (-4 *1 (-473))) ((*1 *1 *1 *1) (-4 *1 (-757))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-640 (-225)))) (-5 *1 (-922)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-846)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-858)))
((*1 *2 *1 *1) (-12 (-4 *1 (-899 *3)) (-4 *3 (-1093)) (-5 *2 (-112))))
((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1267)))))
-(((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7)
- (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-225))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))))
- (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL))))
- (-5 *2 (-1031)) (-5 *1 (-745))))
- ((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8)
- (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-225))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-61 COEFFN))))
- (-5 *7 (-3 (|:| |fn| (-388)) (|:| |fp| (-87 BDYVAL))))
- (-5 *8 (-388)) (-5 *2 (-1031)) (-5 *1 (-745)))))
-(((*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-307))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563))))
- ((*1 *1 *1) (-12 (-4 *1 (-669 *2)) (-4 *2 (-1208))))
- ((*1 *1 *1) (-4 *1 (-865 *2)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-969 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-788))
- (-4 *4 (-846)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
- (-5 *2 (-640 (-1042 *5 *6))) (-5 *1 (-1283 *5 *6 *7))
- (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-844) (-307) (-147) (-1018)))
- (-5 *2 (-640 (-1042 *5 *6))) (-5 *1 (-1283 *5 *6 *7))
- (-14 *6 (-640 (-1169))) (-14 *7 (-640 (-1169)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-948 *4)))
- (-4 *4 (-13 (-844) (-307) (-147) (-1018)))
- (-5 *2 (-640 (-1042 *4 *5))) (-5 *1 (-1283 *4 *5 *6))
- (-14 *5 (-640 (-1169))) (-14 *6 (-640 (-1169))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
+(((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |mval| (-684 *3)) (|:| |invmval| (-684 *3))
+ (|:| |genIdeal| (-504 *3 *4 *5 *6))))
+ (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
+ (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *2 (-379)) (-5 *1 (-205)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-767)) (-4 *1 (-1233 *4)) (-4 *4 (-1045))
+ (-5 *2 (-1257 *4)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-536)))))
-(((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
- (|partial| -12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789))
- (-4 *8 (-846)) (-4 *9 (-1059 *6 *7 *8))
- (-5 *2
- (-2 (|:| -1420 (-640 *9)) (|:| -2059 *4) (|:| |ineq| (-640 *9))))
- (-5 *1 (-984 *6 *7 *8 *9 *4)) (-5 *3 (-640 *9))
- (-4 *4 (-1065 *6 *7 *8 *9))))
- ((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
- (|partial| -12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789))
- (-4 *8 (-846)) (-4 *9 (-1059 *6 *7 *8))
- (-5 *2
- (-2 (|:| -1420 (-640 *9)) (|:| -2059 *4) (|:| |ineq| (-640 *9))))
- (-5 *1 (-1100 *6 *7 *8 *9 *4)) (-5 *3 (-640 *9))
- (-4 *4 (-1065 *6 *7 *8 *9)))))
+(((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1036)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 *5)) (-5 *4 (-917)) (-4 *5 (-846))
+ (-5 *2 (-59 (-640 (-667 *5)))) (-5 *1 (-667 *5)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-563)) (-5 *1 (-445 *3)) (-4 *3 (-404)) (-4 *3 (-1045)))))
+ (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4))
+ (-4 *4 (-349)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))))
(((*1 *1 *1) (-4 *1 (-95)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
@@ -14953,9 +14809,14 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *3 (-112)) (-5 *1 (-110))))
- ((*1 *2 *2) (-12 (-5 *2 (-917)) (|has| *1 (-6 -4398)) (-4 *1 (-404))))
- ((*1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-917)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3 (-563))) (-4 *3 (-1045)) (-5 *1 (-99 *3))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-99 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1045)) (-5 *1 (-99 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1134 *2 *3)) (-4 *2 (-13 (-1093) (-34)))
+ (-4 *3 (-13 (-1093) (-34))))))
(((*1 *1 *1 *2)
(-12 (-5 *2 (-917)) (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368))))
((*1 *2 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-363))))
@@ -14967,35 +14828,30 @@
((*1 *2 *1)
(-12 (-4 *1 (-1116 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
(-4 *5 (-238 *3 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-979 *2)) (-4 *2 (-1193)))))
-(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4407)) (-4 *1 (-489 *3)) (-4 *3 (-1208))
- (-4 *3 (-1093)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-901 *4)) (-4 *4 (-1093)) (-5 *2 (-112))
- (-5 *1 (-900 *4))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-917)) (-5 *2 (-112)) (-5 *1 (-1094 *4 *5)) (-14 *4 *3)
- (-14 *5 *3))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3)))))
-(((*1 *2 *3 *3 *4 *4)
- (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031))
- (-5 *1 (-744)))))
-(((*1 *1) (-5 *1 (-437))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879))
- (-5 *3 (-640 (-563)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1149 (-640 (-563)))) (-5 *1 (-879))
- (-5 *3 (-640 (-563))))))
-(((*1 *2)
- (-12 (-4 *2 (-13 (-430 *3) (-998))) (-5 *1 (-276 *3 *2))
- (-4 *3 (-13 (-846) (-555))))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-467)))))
+(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))))
+(((*1 *1 *1 *1) (-4 *1 (-757))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-363)) (-4 *3 (-789)) (-4 *4 (-846))
+ (-5 *1 (-504 *2 *3 *4 *5)) (-4 *5 (-945 *2 *3 *4)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
+ (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *2 (-379)) (-5 *1 (-205)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1233 *3)) (-4 *3 (-1045)) (-5 *2 (-1165 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))))
+(((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1036)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 *5)) (-5 *4 (-917)) (-4 *5 (-846))
+ (-5 *2 (-640 (-667 *5))) (-5 *1 (-667 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4))
+ (-4 *4 (-349)))))
(((*1 *1 *1) (-4 *1 (-95)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
@@ -15012,50 +14868,51 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-640 (-1230 *5 *4)))
- (-5 *1 (-1107 *4 *5)) (-5 *3 (-1230 *5 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1169)) (-4 *4 (-452)) (-4 *4 (-846))
- (-5 *1 (-572 *4 *2)) (-4 *2 (-284)) (-4 *2 (-430 *4)))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1201 *3 *4 *5 *2)) (-4 *3 (-555)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *2 (-1059 *3 *4 *5)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1133 *4 *5)) (-4 *4 (-13 (-1093) (-34)))
+ (-4 *5 (-13 (-1093) (-34))) (-5 *2 (-112)) (-5 *1 (-1134 *4 *5)))))
+(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-755)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112))))
((*1 *1 *2 *2) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208))))
((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-434))))
((*1 *1 *1 *1) (-5 *1 (-858)))
((*1 *2 *1 *1)
(-12 (-5 *2 (-112)) (-5 *1 (-1022 *3)) (-4 *3 (-1208)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-856)) (-5 *2 (-686 (-129))) (-5 *3 (-129)))))
+(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-335 *3 *4 *5 *6)) (-4 *3 (-363)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-4 *6 (-342 *3 *4 *5))
+ (-5 *2 (-413 *4 (-407 *4) *5 *6))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1257 *6)) (-4 *6 (-13 (-409 *4 *5) (-1034 *4)))
+ (-4 *4 (-988 *3)) (-4 *5 (-1233 *4)) (-4 *3 (-307))
+ (-5 *1 (-413 *3 *4 *5 *6))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-363))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
- (-4 *6 (-789)) (-5 *2 (-640 *3)) (-5 *1 (-920 *4 *5 *6 *3))
- (-4 *3 (-945 *4 *6 *5)))))
-(((*1 *2 *3 *4 *4 *2 *2 *2)
- (-12 (-5 *2 (-563))
- (-5 *3
- (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-767)) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-4 *6 (-789)) (-4 *4 (-945 *5 *6 *7)) (-4 *5 (-452)) (-4 *7 (-846))
- (-5 *1 (-449 *5 *6 *7 *4)))))
-(((*1 *2 *3 *2)
(-12
+ (-5 *3
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
+ (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *2 (-379)) (-5 *1 (-205)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1165 *3)) (-4 *3 (-1045)) (-4 *1 (-1233 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))))
+(((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1036)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 *7)) (-4 *7 (-846))
+ (-4 *8 (-945 *5 *6 *7)) (-4 *5 (-555)) (-4 *6 (-789))
(-5 *2
- (-640
- (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-767)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *3 (-789)) (-4 *6 (-945 *4 *3 *5)) (-4 *4 (-452)) (-4 *5 (-846))
- (-5 *1 (-449 *4 *3 *5 *6)))))
-(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-747)))))
+ (-2 (|:| |particular| (-3 (-1257 (-407 *8)) "failed"))
+ (|:| -4013 (-640 (-1257 (-407 *8))))))
+ (-5 *1 (-664 *5 *6 *7 *8)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-767)) (-4 *4 (-363)) (-4 *5 (-1233 *4)) (-5 *2 (-1262))
- (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1233 (-407 *5))) (-14 *7 *6))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1045)) (-5 *1 (-1229 *3 *2)) (-4 *2 (-1233 *3)))))
+ (-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4))
+ (-4 *4 (-349)))))
(((*1 *1 *1) (-4 *1 (-95)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
@@ -15073,23 +14930,23 @@
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4407)) (-4 *1 (-489 *3)) (-4 *3 (-1208))
+ (-12 (|has| *1 (-6 -4408)) (-4 *1 (-489 *3)) (-4 *3 (-1208))
(-4 *3 (-1093)) (-5 *2 (-767))))
((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4407)) (-4 *1 (-489 *4))
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4408)) (-4 *1 (-489 *4))
(-4 *4 (-1208)) (-5 *2 (-767)))))
(((*1 *2 *1 *3 *4)
(-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258)))))
(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-4 *1 (-151 *3))))
((*1 *1 *2)
(-12
- (-5 *2 (-640 (-2 (|:| -1654 (-767)) (|:| -3408 *4) (|:| |num| *4))))
+ (-5 *2 (-640 (-2 (|:| -3311 (-767)) (|:| -3412 *4) (|:| |num| *4))))
(-4 *4 (-1233 *3)) (-4 *3 (-13 (-363) (-147))) (-5 *1 (-399 *3 *4))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-12 (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-5 *3 (-640 (-948 (-563)))) (-5 *4 (-112)) (-5 *1 (-437))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-12 (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-5 *3 (-640 (-1169))) (-5 *4 (-112)) (-5 *1 (-437))))
((*1 *2 *1)
(-12 (-5 *2 (-1149 *3)) (-5 *1 (-598 *3)) (-4 *3 (-1208))))
@@ -15109,24 +14966,24 @@
((*1 *1 *2 *3)
(-12 (-5 *1 (-709 *2 *3 *4)) (-4 *2 (-846)) (-4 *3 (-1093))
(-14 *4
- (-1 (-112) (-2 (|:| -2555 *2) (|:| -1654 *3))
- (-2 (|:| -2555 *2) (|:| -1654 *3))))))
+ (-1 (-112) (-2 (|:| -2552 *2) (|:| -3311 *3))
+ (-2 (|:| -2552 *2) (|:| -3311 *3))))))
((*1 *1 *2 *3) (-12 (-5 *2 (-506)) (-5 *3 (-1111)) (-5 *1 (-834))))
((*1 *1 *2 *3)
(-12 (-5 *1 (-869 *2 *3)) (-4 *2 (-1208)) (-4 *3 (-1208))))
((*1 *1 *2)
- (-12 (-5 *2 (-640 (-2 (|:| -2387 (-1169)) (|:| -2557 *4))))
+ (-12 (-5 *2 (-640 (-2 (|:| -2387 (-1169)) (|:| -2556 *4))))
(-4 *4 (-1093)) (-5 *1 (-885 *3 *4)) (-4 *3 (-1093))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-640 *5)) (-4 *5 (-13 (-1093) (-34)))
(-5 *2 (-640 (-1133 *3 *5))) (-5 *1 (-1133 *3 *5))
(-4 *3 (-13 (-1093) (-34)))))
((*1 *2 *3)
- (-12 (-5 *3 (-640 (-2 (|:| |val| *4) (|:| -2059 *5))))
+ (-12 (-5 *3 (-640 (-2 (|:| |val| *4) (|:| -2058 *5))))
(-4 *4 (-13 (-1093) (-34))) (-4 *5 (-13 (-1093) (-34)))
(-5 *2 (-640 (-1133 *4 *5))) (-5 *1 (-1133 *4 *5))))
((*1 *1 *2)
- (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -2059 *4)))
+ (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -2058 *4)))
(-4 *3 (-13 (-1093) (-34))) (-4 *4 (-13 (-1093) (-34)))
(-5 *1 (-1133 *3 *4))))
((*1 *1 *2 *3)
@@ -15149,29 +15006,29 @@
(-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1134 *3 *4))))
((*1 *1 *2 *3)
(-12 (-5 *1 (-1158 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
- (-5 *2 (-1031)) (-5 *1 (-748)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-767)) (-4 *4 (-349)) (-5 *1 (-216 *4 *2))
- (-4 *2 (-1233 *4))))
- ((*1 *2 *2 *3 *2 *3)
- (-12 (-5 *3 (-563)) (-5 *1 (-691 *2)) (-4 *2 (-1233 *3)))))
+(((*1 *2 *3 *1 *4)
+ (-12 (-5 *3 (-1133 *5 *6)) (-5 *4 (-1 (-112) *6 *6))
+ (-4 *5 (-13 (-1093) (-34))) (-4 *6 (-13 (-1093) (-34)))
+ (-5 *2 (-112)) (-5 *1 (-1134 *5 *6)))))
+(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))))
+(((*1 *2 *1) (-12 (-5 *2 (-640 (-948 (-563)))) (-5 *1 (-437))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1169)) (-5 *4 (-684 (-225))) (-5 *2 (-1097))
+ (-5 *1 (-755))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1169)) (-5 *4 (-684 (-563))) (-5 *2 (-1097))
+ (-5 *1 (-755)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-640 *6)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-363))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-504 *3 *4 *5 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1169))
- (-5 *2
- (-2 (|:| |zeros| (-1149 (-225))) (|:| |ones| (-1149 (-225)))
- (|:| |singularities| (-1149 (-225)))))
- (-5 *1 (-105)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-363)) (-4 *5 (-555))
- (-5 *2
- (-2 (|:| |minor| (-640 (-917))) (|:| -1420 *3)
- (|:| |minors| (-640 (-640 (-917)))) (|:| |ops| (-640 *3))))
- (-5 *1 (-90 *5 *3)) (-5 *4 (-917)) (-4 *3 (-651 *5)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
+ (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *2 (-379)) (-5 *1 (-205)))))
(((*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1208))))
((*1 *1 *1) (-12 (-5 *1 (-667 *2)) (-4 *2 (-846))))
((*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846))))
@@ -15180,23 +15037,30 @@
((*1 *2 *1)
(-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3))
(-4 *3 (-1233 *2)))))
-(((*1 *2 *3 *4 *3 *4 *4 *4)
- (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031))
- (-5 *1 (-752)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1180 (-640 *4))) (-4 *4 (-846))
- (-5 *2 (-640 (-640 *4))) (-5 *1 (-1179 *4)))))
-(((*1 *2 *2 *3 *4 *4)
- (-12 (-5 *4 (-563)) (-4 *3 (-172)) (-4 *5 (-373 *3))
- (-4 *6 (-373 *3)) (-5 *1 (-683 *3 *5 *6 *2))
- (-4 *2 (-682 *3 *5 *6)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-555))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2742 *4)))
- (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
-(((*1 *2)
- (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-417 *3)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *2 (-846))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-789)) (-4 *5 (-1045)) (-4 *6 (-945 *5 *4 *2))
+ (-4 *2 (-846)) (-5 *1 (-946 *4 *2 *5 *6 *3))
+ (-4 *3
+ (-13 (-363)
+ (-10 -8 (-15 -1692 ($ *6)) (-15 -2143 (*6 $))
+ (-15 -2153 (*6 $)))))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-555))
+ (-5 *2 (-1169)) (-5 *1 (-1039 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-684 *5)) (-5 *4 (-1257 *5)) (-4 *5 (-363))
+ (-5 *2 (-112)) (-5 *1 (-662 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-363)) (-4 *6 (-13 (-373 *5) (-10 -7 (-6 -4409))))
+ (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4409)))) (-5 *2 (-112))
+ (-5 *1 (-663 *5 *6 *4 *3)) (-4 *3 (-682 *5 *6 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-357 *3)) (-4 *3 (-349)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-379)) (-5 *1 (-97)))))
(((*1 *1 *1) (-4 *1 (-95))) ((*1 *1 *1 *1) (-5 *1 (-225)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
@@ -15225,63 +15089,63 @@
((*1 *1 *2) (-12 (-5 *2 (-1118 (-563) (-609 (-48)))) (-5 *1 (-48))))
((*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1208))))
((*1 *1 *2)
- (-12 (-5 *2 (-1257 (-339 (-1707 'JINT 'X 'ELAM) (-1707) (-694))))
+ (-12 (-5 *2 (-1257 (-339 (-1706 'JINT 'X 'ELAM) (-1706) (-694))))
(-5 *1 (-61 *3)) (-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-1257 (-339 (-1707) (-1707 'XC) (-694))))
+ (-12 (-5 *2 (-1257 (-339 (-1706) (-1706 'XC) (-694))))
(-5 *1 (-63 *3)) (-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-339 (-1707 'X) (-1707) (-694))) (-5 *1 (-64 *3))
+ (-12 (-5 *2 (-339 (-1706 'X) (-1706) (-694))) (-5 *1 (-64 *3))
(-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-339 (-1707) (-1707 'XC) (-694))) (-5 *1 (-66 *3))
+ (-12 (-5 *2 (-339 (-1706) (-1706 'XC) (-694))) (-5 *1 (-66 *3))
(-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-1257 (-339 (-1707 'X) (-1707 '-3170) (-694))))
+ (-12 (-5 *2 (-1257 (-339 (-1706 'X) (-1706 '-3174) (-694))))
(-5 *1 (-71 *3)) (-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-1257 (-339 (-1707) (-1707 'X) (-694))))
+ (-12 (-5 *2 (-1257 (-339 (-1706) (-1706 'X) (-694))))
(-5 *1 (-74 *3)) (-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-1257 (-339 (-1707 'X 'EPS) (-1707 '-3170) (-694))))
+ (-12 (-5 *2 (-1257 (-339 (-1706 'X 'EPS) (-1706 '-3174) (-694))))
(-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1169)) (-14 *4 (-1169))
(-14 *5 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-1257 (-339 (-1707 'EPS) (-1707 'YA 'YB) (-694))))
+ (-12 (-5 *2 (-1257 (-339 (-1706 'EPS) (-1706 'YA 'YB) (-694))))
(-5 *1 (-76 *3 *4 *5)) (-14 *3 (-1169)) (-14 *4 (-1169))
(-14 *5 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-339 (-1707) (-1707 'X) (-694))) (-5 *1 (-77 *3))
+ (-12 (-5 *2 (-339 (-1706) (-1706 'X) (-694))) (-5 *1 (-77 *3))
(-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-339 (-1707) (-1707 'X) (-694))) (-5 *1 (-78 *3))
+ (-12 (-5 *2 (-339 (-1706) (-1706 'X) (-694))) (-5 *1 (-78 *3))
(-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-1257 (-339 (-1707) (-1707 'XC) (-694))))
+ (-12 (-5 *2 (-1257 (-339 (-1706) (-1706 'XC) (-694))))
(-5 *1 (-79 *3)) (-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-1257 (-339 (-1707) (-1707 'X) (-694))))
+ (-12 (-5 *2 (-1257 (-339 (-1706) (-1706 'X) (-694))))
(-5 *1 (-80 *3)) (-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-1257 (-339 (-1707 'X '-3170) (-1707) (-694))))
+ (-12 (-5 *2 (-1257 (-339 (-1706 'X '-3174) (-1706) (-694))))
(-5 *1 (-82 *3)) (-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-684 (-339 (-1707 'X '-3170) (-1707) (-694))))
+ (-12 (-5 *2 (-684 (-339 (-1706 'X '-3174) (-1706) (-694))))
(-5 *1 (-83 *3)) (-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-684 (-339 (-1707 'X) (-1707) (-694)))) (-5 *1 (-84 *3))
+ (-12 (-5 *2 (-684 (-339 (-1706 'X) (-1706) (-694)))) (-5 *1 (-84 *3))
(-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-1257 (-339 (-1707 'X) (-1707) (-694))))
+ (-12 (-5 *2 (-1257 (-339 (-1706 'X) (-1706) (-694))))
(-5 *1 (-85 *3)) (-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-1257 (-339 (-1707 'X) (-1707 '-3170) (-694))))
+ (-12 (-5 *2 (-1257 (-339 (-1706 'X) (-1706 '-3174) (-694))))
(-5 *1 (-86 *3)) (-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-684 (-339 (-1707 'XL 'XR 'ELAM) (-1707) (-694))))
+ (-12 (-5 *2 (-684 (-339 (-1706 'XL 'XR 'ELAM) (-1706) (-694))))
(-5 *1 (-87 *3)) (-14 *3 (-1169))))
((*1 *1 *2)
- (-12 (-5 *2 (-339 (-1707 'X) (-1707 '-3170) (-694))) (-5 *1 (-89 *3))
+ (-12 (-5 *2 (-339 (-1706 'X) (-1706 '-3174) (-694))) (-5 *1 (-89 *3))
(-14 *3 (-1169))))
((*1 *1 *2)
(-12 (-5 *2 (-640 (-136 *3 *4 *5))) (-5 *1 (-136 *3 *4 *5))
@@ -15332,85 +15196,85 @@
((*1 *1 *2) (-12 (-4 *1 (-374 *2 *3)) (-4 *2 (-846)) (-4 *3 (-172))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330)))))
(-4 *1 (-383))))
((*1 *1 *2) (-12 (-5 *2 (-330)) (-4 *1 (-383))))
((*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-4 *1 (-383))))
((*1 *1 *2) (-12 (-5 *2 (-684 (-694))) (-4 *1 (-383))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330)))))
(-4 *1 (-384))))
((*1 *1 *2) (-12 (-5 *2 (-330)) (-4 *1 (-384))))
((*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-4 *1 (-384))))
((*1 *2 *3) (-12 (-5 *2 (-394)) (-5 *1 (-393 *3)) (-4 *3 (-1093))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330)))))
(-4 *1 (-396))))
((*1 *1 *2) (-12 (-5 *2 (-330)) (-4 *1 (-396))))
((*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-4 *1 (-396))))
((*1 *1 *2)
(-12 (-5 *2 (-294 (-316 (-169 (-379))))) (-5 *1 (-398 *3 *4 *5 *6))
- (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-14 *5 (-640 (-1169))) (-14 *6 (-1173))))
((*1 *1 *2)
(-12 (-5 *2 (-294 (-316 (-379)))) (-5 *1 (-398 *3 *4 *5 *6))
- (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-14 *5 (-640 (-1169))) (-14 *6 (-1173))))
((*1 *1 *2)
(-12 (-5 *2 (-294 (-316 (-563)))) (-5 *1 (-398 *3 *4 *5 *6))
- (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-14 *5 (-640 (-1169))) (-14 *6 (-1173))))
((*1 *1 *2)
(-12 (-5 *2 (-316 (-169 (-379)))) (-5 *1 (-398 *3 *4 *5 *6))
- (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-14 *5 (-640 (-1169))) (-14 *6 (-1173))))
((*1 *1 *2)
(-12 (-5 *2 (-316 (-379))) (-5 *1 (-398 *3 *4 *5 *6))
- (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-14 *5 (-640 (-1169))) (-14 *6 (-1173))))
((*1 *1 *2)
(-12 (-5 *2 (-316 (-563))) (-5 *1 (-398 *3 *4 *5 *6))
- (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-14 *5 (-640 (-1169))) (-14 *6 (-1173))))
((*1 *1 *2)
(-12 (-5 *2 (-294 (-316 (-689)))) (-5 *1 (-398 *3 *4 *5 *6))
- (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-14 *5 (-640 (-1169))) (-14 *6 (-1173))))
((*1 *1 *2)
(-12 (-5 *2 (-294 (-316 (-694)))) (-5 *1 (-398 *3 *4 *5 *6))
- (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-14 *5 (-640 (-1169))) (-14 *6 (-1173))))
((*1 *1 *2)
(-12 (-5 *2 (-294 (-316 (-696)))) (-5 *1 (-398 *3 *4 *5 *6))
- (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-14 *5 (-640 (-1169))) (-14 *6 (-1173))))
((*1 *1 *2)
(-12 (-5 *2 (-316 (-689))) (-5 *1 (-398 *3 *4 *5 *6))
- (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-14 *5 (-640 (-1169))) (-14 *6 (-1173))))
((*1 *1 *2)
(-12 (-5 *2 (-316 (-694))) (-5 *1 (-398 *3 *4 *5 *6))
- (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-14 *5 (-640 (-1169))) (-14 *6 (-1173))))
((*1 *1 *2)
(-12 (-5 *2 (-316 (-696))) (-5 *1 (-398 *3 *4 *5 *6))
- (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-14 *5 (-640 (-1169))) (-14 *6 (-1173))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330)))))
(-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169))
- (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-14 *5 (-640 (-1169))) (-14 *6 (-1173))))
((*1 *1 *2)
(-12 (-5 *2 (-640 (-330))) (-5 *1 (-398 *3 *4 *5 *6))
- (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-14 *3 (-1169)) (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-14 *5 (-640 (-1169))) (-14 *6 (-1173))))
((*1 *1 *2)
(-12 (-5 *2 (-330)) (-5 *1 (-398 *3 *4 *5 *6)) (-14 *3 (-1169))
- (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3784 "void")))
+ (-14 *4 (-3 (|:| |fst| (-434)) (|:| -3785 "void")))
(-14 *5 (-640 (-1169))) (-14 *6 (-1173))))
((*1 *1 *2)
(-12 (-5 *2 (-331 *4)) (-4 *4 (-13 (-846) (-21)))
@@ -15437,14 +15301,14 @@
((*1 *1 *2) (-12 (-5 *2 (-434)) (-5 *1 (-437))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330)))))
(-4 *1 (-440))))
((*1 *1 *2) (-12 (-5 *2 (-330)) (-4 *1 (-440))))
((*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-4 *1 (-440))))
((*1 *1 *2) (-12 (-5 *2 (-1257 (-694))) (-4 *1 (-440))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2412 (-640 (-330)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1173)) (|:| -2409 (-640 (-330)))))
(-4 *1 (-441))))
((*1 *1 *2) (-12 (-5 *2 (-330)) (-4 *1 (-441))))
((*1 *1 *2) (-12 (-5 *2 (-640 (-330))) (-4 *1 (-441))))
@@ -15513,7 +15377,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 (-640 (-2 (|:| -2311 *3) (|:| -4222 *4))))
+ (-12 (-5 *2 (-640 (-2 (|:| -2310 *3) (|:| -4223 *4))))
(-4 *3 (-1045)) (-4 *4 (-722)) (-5 *1 (-731 *3 *4))))
((*1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-759))))
((*1 *1 *2)
@@ -15522,25 +15386,25 @@
(-3
(|:| |nia|
(-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
(|:| |relerr| (-225))))
(|:| |mdnia|
(-2 (|:| |fn| (-316 (-225)))
- (|:| -2516 (-640 (-1087 (-839 (-225)))))
+ (|:| -4166 (-640 (-1087 (-839 (-225)))))
(|:| |abserr| (-225)) (|:| |relerr| (-225))))))
(-5 *1 (-765))))
((*1 *1 *2)
(-12
(-5 *2
(-2 (|:| |fn| (-316 (-225)))
- (|:| -2516 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225))
+ (|:| -4166 (-640 (-1087 (-839 (-225))))) (|:| |abserr| (-225))
(|:| |relerr| (-225))))
(-5 *1 (-765))))
((*1 *1 *2)
(-12
(-5 *2
(-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
(|:| |relerr| (-225))))
(-5 *1 (-765))))
((*1 *2 *3) (-12 (-5 *2 (-770)) (-5 *1 (-769 *3)) (-4 *3 (-1208))))
@@ -15558,23 +15422,23 @@
(-5 *2
(-3
(|:| |noa|
- (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225)))
+ (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225)))
(|:| |lb| (-640 (-839 (-225))))
(|:| |cf| (-640 (-316 (-225))))
(|:| |ub| (-640 (-839 (-225))))))
(|:| |lsa|
(-2 (|:| |lfn| (-640 (-316 (-225))))
- (|:| -2523 (-640 (-225)))))))
+ (|:| -2522 (-640 (-225)))))))
(-5 *1 (-837))))
((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2523 (-640 (-225)))))
+ (-2 (|:| |lfn| (-640 (-316 (-225)))) (|:| -2522 (-640 (-225)))))
(-5 *1 (-837))))
((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |fn| (-316 (-225))) (|:| -2523 (-640 (-225)))
+ (-2 (|:| |fn| (-316 (-225))) (|:| -2522 (-640 (-225)))
(|:| |lb| (-640 (-839 (-225)))) (|:| |cf| (-640 (-316 (-225))))
(|:| |ub| (-640 (-839 (-225))))))
(-5 *1 (-837))))
@@ -15677,10 +15541,25 @@
((*1 *1 *2)
(-12 (-5 *2 (-659 *3 *4)) (-4 *3 (-846)) (-4 *4 (-172))
(-5 *1 (-1277 *3 *4)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-563)))) (-4 *5 (-1233 *4))
- (-5 *2 (-2 (|:| |ans| (-407 *5)) (|:| |nosol| (-112))))
- (-5 *1 (-1011 *4 *5)) (-5 *3 (-407 *5)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4408)) (-4 *1 (-235 *3))
+ (-4 *3 (-1093))))
+ ((*1 *1 *2 *1)
+ (-12 (|has| *1 (-6 -4408)) (-4 *1 (-235 *2)) (-4 *2 (-1093))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *1 (-282 *2)) (-4 *2 (-1208)) (-4 *2 (-1093))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-282 *3)) (-4 *3 (-1208))))
+ ((*1 *2 *3 *1)
+ (|partial| -12 (-4 *1 (-607 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-563)) (-4 *4 (-1093))
+ (-5 *1 (-733 *4))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-5 *1 (-733 *2)) (-4 *2 (-1093))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34)))
+ (-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1134 *3 *4)))))
(((*1 *2 *3)
(-12 (-5 *3 (-917)) (-5 *2 (-1165 *4)) (-5 *1 (-357 *4))
(-4 *4 (-349))))
@@ -15698,12 +15577,21 @@
(-12 (-5 *3 (-563)) (-5 *2 (-901 *4)) (-5 *1 (-900 *4))
(-4 *4 (-1093))))
((*1 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-545)) (-4 *2 (-555)))))
-(((*1 *2 *3 *2 *4 *5)
- (-12 (-5 *2 (-640 *3)) (-5 *5 (-917)) (-4 *3 (-1233 *4))
- (-4 *4 (-307)) (-5 *1 (-460 *4 *3)))))
-(((*1 *1) (-5 *1 (-1078))))
-(((*1 *1) (-5 *1 (-437))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-755)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112))
+ (-5 *1 (-504 *3 *4 *5 *6)) (-4 *6 (-945 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1257 (-316 (-225)))) (|:| |yinit| (-640 (-225)))
+ (|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *2
+ (-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))))
+ (-5 *1 (-205)))))
(((*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1208))))
((*1 *1 *1) (-12 (-5 *1 (-667 *2)) (-4 *2 (-846))))
((*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-846))))
@@ -15712,31 +15600,21 @@
((*1 *2 *1)
(-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3))
(-4 *3 (-1233 *2)))))
-(((*1 *2 *3 *4 *4 *3 *5)
- (-12 (-5 *4 (-609 *3)) (-5 *5 (-1165 *3))
- (-4 *3 (-13 (-430 *6) (-27) (-1193)))
- (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
- (-5 *2 (-584 *3)) (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093))))
- ((*1 *2 *3 *4 *4 *4 *3 *5)
- (-12 (-5 *4 (-609 *3)) (-5 *5 (-407 (-1165 *3)))
- (-4 *3 (-13 (-430 *6) (-27) (-1193)))
- (-4 *6 (-13 (-452) (-1034 (-563)) (-846) (-147) (-636 (-563))))
- (-5 *2 (-584 *3)) (-5 *1 (-559 *6 *3 *7)) (-4 *7 (-1093)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
- (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4))))
- (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *3 *4 *2 *5)
- (-12 (-5 *3 (-640 *8)) (-5 *4 (-640 (-888 *6)))
- (-5 *5 (-1 (-885 *6 *8) *8 (-888 *6) (-885 *6 *8))) (-4 *6 (-1093))
- (-4 *8 (-13 (-1045) (-611 (-888 *6)) (-1034 *7)))
- (-5 *2 (-885 *6 *8)) (-4 *7 (-13 (-1045) (-846)))
- (-5 *1 (-937 *6 *7 *8)))))
-(((*1 *2)
- (-12 (-4 *3 (-555)) (-5 *2 (-640 (-684 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-417 *3)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846))
+ (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-945 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1045)) (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1)))
+ (-4 *1 (-1233 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-948 *6))) (-5 *4 (-640 (-1169)))
+ (-4 *6 (-13 (-555) (-1034 *5))) (-4 *5 (-555))
+ (-5 *2 (-640 (-640 (-294 (-407 (-948 *6)))))) (-5 *1 (-1035 *5 *6)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-640 (-1165 *4))) (-5 *3 (-1165 *4))
+ (-4 *4 (-905)) (-5 *1 (-658 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-357 *3)) (-4 *3 (-349)))))
+(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-97)))))
(((*1 *1 *1) (-4 *1 (-95)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
@@ -15756,84 +15634,39 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-555))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2742 *4)))
- (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-640 (-948 *4))) (-5 *3 (-640 (-1169))) (-4 *4 (-452))
- (-5 *1 (-914 *4)))))
+(((*1 *1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-640 (-1133 *4 *5))) (-5 *3 (-1 (-112) *5 *5))
+ (-4 *4 (-13 (-1093) (-34))) (-4 *5 (-13 (-1093) (-34)))
+ (-5 *1 (-1134 *4 *5))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-640 (-1133 *3 *4))) (-4 *3 (-13 (-1093) (-34)))
+ (-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1134 *3 *4)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-858))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-112)) (-5 *5 (-684 (-225)))
- (-5 *2 (-1031)) (-5 *1 (-751)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-767)) (-5 *1 (-165 *3 *4))
- (-4 *3 (-166 *4))))
- ((*1 *2)
- (-12 (-14 *4 *2) (-4 *5 (-1208)) (-5 *2 (-767))
- (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5))))
- ((*1 *2)
- (-12 (-4 *4 (-846)) (-5 *2 (-767)) (-5 *1 (-429 *3 *4))
- (-4 *3 (-430 *4))))
- ((*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-544 *3)) (-4 *3 (-545))))
- ((*1 *2) (-12 (-4 *1 (-759)) (-5 *2 (-767))))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-767)) (-5 *1 (-792 *3 *4))
- (-4 *3 (-793 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-555)) (-5 *2 (-767)) (-5 *1 (-987 *3 *4))
- (-4 *3 (-988 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-767)) (-5 *1 (-992 *3 *4))
- (-4 *3 (-993 *4))))
- ((*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1007 *3)) (-4 *3 (-1008))))
- ((*1 *2) (-12 (-4 *1 (-1045)) (-5 *2 (-767))))
- ((*1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-1053 *3)) (-4 *3 (-1054)))))
+(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))))
+(((*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-755)))))
(((*1 *1) (-5 *1 (-112))) ((*1 *1) (-5 *1 (-614))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-961))) (-5 *1 (-291)))))
-(((*1 *2 *3 *4 *2 *5 *6)
- (-12
- (-5 *5
- (-2 (|:| |done| (-640 *11))
- (|:| |todo| (-640 (-2 (|:| |val| *3) (|:| -2059 *11))))))
- (-5 *6 (-767))
- (-5 *2 (-640 (-2 (|:| |val| (-640 *10)) (|:| -2059 *11))))
- (-5 *3 (-640 *10)) (-5 *4 (-640 *11)) (-4 *10 (-1059 *7 *8 *9))
- (-4 *11 (-1065 *7 *8 *9 *10)) (-4 *7 (-452)) (-4 *8 (-789))
- (-4 *9 (-846)) (-5 *1 (-1063 *7 *8 *9 *10 *11))))
- ((*1 *2 *3 *4 *2 *5 *6)
- (-12
- (-5 *5
- (-2 (|:| |done| (-640 *11))
- (|:| |todo| (-640 (-2 (|:| |val| *3) (|:| -2059 *11))))))
- (-5 *6 (-767))
- (-5 *2 (-640 (-2 (|:| |val| (-640 *10)) (|:| -2059 *11))))
- (-5 *3 (-640 *10)) (-5 *4 (-640 *11)) (-4 *10 (-1059 *7 *8 *9))
- (-4 *11 (-1102 *7 *8 *9 *10)) (-4 *7 (-452)) (-4 *8 (-789))
- (-4 *9 (-846)) (-5 *1 (-1138 *7 *8 *9 *10 *11)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-640 *6)) (-4 *6 (-846)) (-4 *4 (-363)) (-4 *5 (-789))
+ (-5 *1 (-504 *4 *5 *6 *2)) (-4 *2 (-945 *4 *5 *6))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *3 (-363)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *1 (-504 *3 *4 *5 *2)) (-4 *2 (-945 *3 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-1171 (-407 (-563))))
- (-5 *1 (-190)))))
-(((*1 *2 *3 *4)
- (-12
- (-5 *3
- (-640
- (-2 (|:| |eqzro| (-640 *8)) (|:| |neqzro| (-640 *8))
- (|:| |wcond| (-640 (-948 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1257 (-407 (-948 *5))))
- (|:| -4315 (-640 (-1257 (-407 (-948 *5))))))))))
- (-5 *4 (-1151)) (-4 *5 (-13 (-307) (-147))) (-4 *8 (-945 *5 *7 *6))
- (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-563))
- (-5 *1 (-920 *5 *6 *7 *8)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *1 *1 *2 *2)
- (|partial| -12 (-5 *2 (-917)) (-5 *1 (-1094 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
+ (-12 (-5 *3 (-684 (-316 (-225))))
+ (-5 *2
+ (-2 (|:| |stiffnessFactor| (-379)) (|:| |stabilityFactor| (-379))))
+ (-5 *1 (-205)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-767)) (-4 *4 (-1045))
+ (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-1233 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-97)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1031)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)) (-4 *2 (-363))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-363)) (-5 *1 (-654 *4 *2))
+ (-4 *2 (-651 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-357 *3)) (-4 *3 (-349)))))
(((*1 *1 *1) (-4 *1 (-95)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
@@ -15853,55 +15686,36 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-961))) (-5 *1 (-109)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-563)) (-4 *2 (-430 *3)) (-5 *1 (-32 *3 *2))
- (-4 *3 (-1034 *4)) (-4 *3 (-13 (-846) (-555))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-427 *3 *2)) (-4 *3 (-13 (-172) (-38 (-407 (-563)))))
- (-4 *2 (-13 (-846) (-21))))))
-(((*1 *2 *1) (-12 (-4 *1 (-425 *3)) (-4 *3 (-1093)) (-5 *2 (-767)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1093)) (-4 *6 (-882 *5)) (-5 *2 (-881 *5 *6 (-640 *6)))
- (-5 *1 (-883 *5 *6 *4)) (-5 *3 (-640 *6)) (-4 *4 (-611 (-888 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1093)) (-5 *2 (-640 (-294 *3))) (-5 *1 (-883 *5 *3 *4))
- (-4 *3 (-1034 (-1169))) (-4 *3 (-882 *5)) (-4 *4 (-611 (-888 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1093)) (-5 *2 (-640 (-294 (-948 *3))))
- (-5 *1 (-883 *5 *3 *4)) (-4 *3 (-1045))
- (-2176 (-4 *3 (-1034 (-1169)))) (-4 *3 (-882 *5))
- (-4 *4 (-611 (-888 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1093)) (-5 *2 (-885 *5 *3)) (-5 *1 (-883 *5 *3 *4))
- (-2176 (-4 *3 (-1034 (-1169)))) (-2176 (-4 *3 (-1045)))
- (-4 *3 (-882 *5)) (-4 *4 (-611 (-888 *5))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-436)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-407 (-948 (-169 (-563))))))
- (-5 *2 (-640 (-640 (-294 (-948 (-169 *4)))))) (-5 *1 (-378 *4))
- (-4 *4 (-13 (-363) (-844)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-294 (-407 (-948 (-169 (-563)))))))
- (-5 *2 (-640 (-640 (-294 (-948 (-169 *4)))))) (-5 *1 (-378 *4))
- (-4 *4 (-13 (-363) (-844)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-407 (-948 (-169 (-563)))))
- (-5 *2 (-640 (-294 (-948 (-169 *4))))) (-5 *1 (-378 *4))
- (-4 *4 (-13 (-363) (-844)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-294 (-407 (-948 (-169 (-563))))))
- (-5 *2 (-640 (-294 (-948 (-169 *4))))) (-5 *1 (-378 *4))
- (-4 *4 (-13 (-363) (-844))))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-821)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1093)) (-4 *2 (-896 *5)) (-5 *1 (-687 *5 *2 *3 *4))
- (-4 *3 (-373 *2)) (-4 *4 (-13 (-373 *5) (-10 -7 (-6 -4407)))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-452)) (-4 *4 (-555))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -4354 *4)))
- (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-452)) (-4 *4 (-846)) (-4 *5 (-789)) (-5 *2 (-112))
+ (-5 *1 (-983 *3 *4 *5 *6)) (-4 *6 (-945 *3 *5 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34)))
+ (-4 *4 (-13 (-1093) (-34))))))
+(((*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-755)))))
+(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *5 *6)) (-4 *6 (-611 (-1169)))
+ (-4 *4 (-363)) (-4 *5 (-789)) (-4 *6 (-846))
+ (-5 *2 (-1158 (-640 (-948 *4)) (-640 (-294 (-948 *4)))))
+ (-5 *1 (-504 *4 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-684 (-316 (-225)))) (-5 *2 (-379)) (-5 *1 (-205)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))))
+(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-379)) (-5 *3 (-1151)) (-5 *1 (-97))))
+ ((*1 *2 *3 *2) (-12 (-5 *2 (-379)) (-5 *3 (-1151)) (-5 *1 (-97)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1031)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-767)) (-4 *1 (-651 *3)) (-4 *3 (-1045)) (-4 *3 (-363))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-767)) (-5 *4 (-1 *5 *5)) (-4 *5 (-363))
+ (-5 *1 (-654 *5 *2)) (-4 *2 (-651 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-349)) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-5 *2 (-112))
+ (-5 *1 (-357 *4)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
(-4 *2 (-13 (-430 *3) (-998)))))
@@ -15918,60 +15732,59 @@
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3))))
((*1 *1 *1) (-4 *1 (-1196))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-307)) (-4 *6 (-373 *5)) (-4 *4 (-373 *5))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4315 (-640 *4))))
- (-5 *1 (-1117 *5 *6 *4 *3)) (-4 *3 (-682 *5 *6 *4)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1242 *3 *4 *5)) (-5 *1 (-319 *3 *4 *5))
- (-4 *3 (-13 (-363) (-846))) (-14 *4 (-1169)) (-14 *5 *3)))
- ((*1 *2 *1) (-12 (-4 *1 (-404)) (-5 *2 (-563))))
- ((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-418 *3)) (-4 *3 (-555))))
- ((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-694))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34)))
+ (-4 *3 (-13 (-1093) (-34))))))
+(((*1 *2 *3 *3 *3 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-917)) (-5 *2 (-1262)) (-5 *1 (-214 *4))
+ (-4 *4
+ (-13 (-846)
+ (-10 -8 (-15 -2308 ((-1151) $ (-1169))) (-15 -1463 (*2 $))
+ (-15 -1651 (*2 $)))))))
((*1 *2 *1)
- (-12 (-4 *2 (-1093)) (-5 *1 (-709 *3 *2 *4)) (-4 *3 (-846))
- (-14 *4
- (-1 (-112) (-2 (|:| -2555 *3) (|:| -1654 *2))
- (-2 (|:| -2555 *3) (|:| -1654 *2)))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *1) (-5 *1 (-141))) ((*1 *1 *1) (-5 *1 (-144)))
- ((*1 *1 *1) (-4 *1 (-1137))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *2 (-1031))
- (-5 *1 (-751)))))
-(((*1 *2)
- (-12 (-4 *3 (-1045)) (-5 *2 (-954 (-708 *3 *4))) (-5 *1 (-708 *3 *4))
- (-4 *4 (-1233 *3)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1149 *4)) (-5 *3 (-563)) (-4 *4 (-1045))
- (-5 *1 (-1153 *4))))
- ((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-563)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1045))
- (-14 *4 (-1169)) (-14 *5 *3))))
+ (-12 (-5 *2 (-1262)) (-5 *1 (-214 *3))
+ (-4 *3
+ (-13 (-846)
+ (-10 -8 (-15 -2308 ((-1151) $ (-1169))) (-15 -1463 (*2 $))
+ (-15 -1651 (*2 $)))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-502)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-379)) (-5 *1 (-205))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-640 (-379))) (-5 *2 (-379)) (-5 *1 (-205)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-555)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-363) (-302)
+ (-10 -8 (-15 -2143 ((-1118 *3 (-609 $)) $))
+ (-15 -2153 ((-1118 *3 (-609 $)) $))
+ (-15 -1692 ($ (-1118 *3 (-609 $))))))))))
(((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-917)) (-5 *2 (-767)) (-5 *1 (-1094 *4 *5)) (-14 *4 *3)
(-14 *5 *3))))
-(((*1 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260))))
- ((*1 *2 *2) (-12 (-5 *2 (-870)) (-5 *1 (-1260)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-917)) (-5 *1 (-1028 *2))
+ (-4 *2 (-13 (-1093) (-10 -8 (-15 * ($ $ $))))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)) (-4 *2 (-363))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-363)) (-5 *1 (-654 *4 *2))
+ (-4 *2 (-651 *4)))))
(((*1 *2)
- (-12 (-5 *2 (-1262)) (-5 *1 (-1185 *3 *4)) (-4 *3 (-1093))
- (-4 *4 (-1093)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-418 *5)) (-4 *5 (-555))
+ (-12
(-5 *2
- (-2 (|:| -1654 (-767)) (|:| -2311 *5) (|:| |radicand| (-640 *5))))
- (-5 *1 (-320 *5)) (-5 *4 (-767))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-998)) (-5 *2 (-563)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-640 (-1 *4 (-640 *4)))) (-4 *4 (-1093))
- (-5 *1 (-113 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1093))
- (-5 *1 (-113 *4))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-114)) (-5 *2 (-640 (-1 *4 (-640 *4))))
- (-5 *1 (-113 *4)) (-4 *4 (-1093)))))
+ (-1257 (-640 (-2 (|:| -2618 (-906 *3)) (|:| -2552 (-1113))))))
+ (-5 *1 (-351 *3 *4)) (-14 *3 (-917)) (-14 *4 (-917))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1257 (-640 (-2 (|:| -2618 *3) (|:| -2552 (-1113))))))
+ (-5 *1 (-352 *3 *4)) (-4 *3 (-349)) (-14 *4 (-3 (-1165 *3) *2))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1257 (-640 (-2 (|:| -2618 *3) (|:| -2552 (-1113))))))
+ (-5 *1 (-353 *3 *4)) (-4 *3 (-349)) (-14 *4 (-917)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-91 *3)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
(-4 *2 (-13 (-430 *3) (-998)))))
@@ -15988,6 +15801,9 @@
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3))))
((*1 *1 *1) (-4 *1 (-1196))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1133 *3 *2)) (-4 *3 (-13 (-1093) (-34)))
+ (-4 *2 (-13 (-1093) (-34))))))
(((*1 *1 *1) (-12 (-4 *1 (-373 *2)) (-4 *2 (-1208)) (-4 *2 (-846))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-373 *3)) (-4 *3 (-1208))))
@@ -15996,55 +15812,51 @@
((*1 *2 *1 *3)
(-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846))
(-4 *6 (-1059 *4 *5 *3))
- (-5 *2 (-2 (|:| |under| *1) (|:| -1583 *1) (|:| |upper| *1)))
+ (-5 *2 (-2 (|:| |under| *1) (|:| -3954 *1) (|:| |upper| *1)))
(-4 *1 (-972 *4 *5 *3 *6)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452))
- (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *1 (-973 *3 *4 *5 *6)))))
-(((*1 *1 *1 *1 *2 *3)
- (-12 (-5 *2 (-640 (-1133 *4 *5))) (-5 *3 (-1 (-112) *5 *5))
- (-4 *4 (-13 (-1093) (-34))) (-4 *5 (-13 (-1093) (-34)))
- (-5 *1 (-1134 *4 *5))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-640 (-1133 *3 *4))) (-4 *3 (-13 (-1093) (-34)))
- (-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1134 *3 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-640 *2)) (-4 *2 (-1059 *4 *5 *6)) (-4 *4 (-555))
- (-4 *5 (-789)) (-4 *6 (-846)) (-5 *1 (-973 *4 *5 *6 *2)))))
-(((*1 *2 *3 *4)
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
+(((*1 *2 *3 *3 *3 *4)
(-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-402)) (-5 *2 (-767))))
- ((*1 *1 *1) (-4 *1 (-402))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1045)) (-4 *7 (-1045))
+ (-4 *6 (-1233 *5)) (-5 *2 (-1165 (-1165 *7)))
+ (-5 *1 (-501 *5 *6 *4 *7)) (-4 *4 (-1233 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-192))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-300))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-225))) (-5 *2 (-640 (-1151))) (-5 *1 (-305)))))
-(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-878 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-1194 *3))) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-323 *3 *4)) (-4 *3 (-1093))
- (-4 *4 (-131))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-361 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-386 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-644 *3 *4 *5))
- (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1045)) (-4 *2 (-682 *4 *5 *6))
- (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1233 *4)) (-4 *5 (-373 *4))
- (-4 *6 (-373 *4)))))
-(((*1 *2 *1 *1)
- (|partial| -12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368))
- (-5 *2 (-1165 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-4 *3 (-368))
- (-5 *2 (-1165 *3)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2 (-563)) (-5 *1 (-204)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-767)) (-4 *4 (-363)) (-4 *5 (-1233 *4)) (-5 *2 (-1262))
+ (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1233 (-407 *5))) (-14 *7 *6))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-363)) (-4 *5 (-555))
+ (-5 *2
+ (-2 (|:| |minor| (-640 (-917))) (|:| -1420 *3)
+ (|:| |minors| (-640 (-640 (-917)))) (|:| |ops| (-640 *3))))
+ (-5 *1 (-90 *5 *3)) (-5 *4 (-917)) (-4 *3 (-651 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-1257 *5))) (-5 *4 (-563)) (-5 *2 (-1257 *5))
+ (-5 *1 (-1025 *5)) (-4 *5 (-363)) (-4 *5 (-368)) (-4 *5 (-1045)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-27))
+ (-4 *4 (-13 (-363) (-147) (-1034 (-563)) (-1034 (-407 (-563)))))
+ (-4 *5 (-1233 *4)) (-5 *2 (-640 (-648 (-407 *5))))
+ (-5 *1 (-652 *4 *5)) (-5 *3 (-648 (-407 *5))))))
+(((*1 *2)
+ (-12 (-5 *2 (-684 (-906 *3))) (-5 *1 (-351 *3 *4)) (-14 *3 (-917))
+ (-14 *4 (-917))))
+ ((*1 *2)
+ (-12 (-5 *2 (-684 *3)) (-5 *1 (-352 *3 *4)) (-4 *3 (-349))
+ (-14 *4
+ (-3 (-1165 *3)
+ (-1257 (-640 (-2 (|:| -2618 *3) (|:| -2552 (-1113)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-684 *3)) (-5 *1 (-353 *3 *4)) (-4 *3 (-349))
+ (-14 *4 (-917)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
(-4 *2 (-13 (-430 *3) (-998)))))
@@ -16061,38 +15873,75 @@
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3))))
((*1 *1 *1) (-4 *1 (-1196))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-578)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-976 *2)) (-4 *2 (-1045))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-939 (-225))) (-5 *1 (-1204))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-1045)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
- (-5 *2 (-112)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-818)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-563)) (|has| *1 (-6 -4408)) (-4 *1 (-1245 *3))
- (-4 *3 (-1208)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-555)) (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *2 (-640 *1)) (-4 *1 (-1059 *3 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-555) (-147))) (-5 *1 (-537 *3 *2))
- (-4 *2 (-1248 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-4 *4 (-1233 *3))
- (-4 *5 (-720 *3 *4)) (-5 *1 (-541 *3 *4 *5 *2)) (-4 *2 (-1248 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-363) (-368) (-611 (-563)))) (-5 *1 (-542 *3 *2))
- (-4 *2 (-1248 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1149 *3)) (-4 *3 (-13 (-555) (-147)))
- (-5 *1 (-1145 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-923)))))
-(((*1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-755)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34)))
+ (-4 *4 (-13 (-1093) (-34))))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8))
+ (-5 *4 (-684 (-1165 *8))) (-4 *5 (-1045)) (-4 *8 (-1045))
+ (-4 *6 (-1233 *5)) (-5 *2 (-684 *6)) (-5 *1 (-501 *5 *6 *7 *8))
+ (-4 *7 (-1233 *6)))))
+(((*1 *2 *3)
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2 (-640 (-225))) (-5 *1 (-204)))))
+(((*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-165 *3 *2)) (-4 *3 (-166 *2))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1257 *1)) (-4 *1 (-370 *2 *4)) (-4 *4 (-1233 *2))
+ (-4 *2 (-172))))
+ ((*1 *2)
+ (-12 (-4 *4 (-1233 *2)) (-4 *2 (-172)) (-5 *1 (-408 *3 *2 *4))
+ (-4 *3 (-409 *2 *4))))
+ ((*1 *2) (-12 (-4 *1 (-409 *2 *3)) (-4 *3 (-1233 *2)) (-4 *2 (-172))))
+ ((*1 *2)
+ (-12 (-4 *3 (-1233 *2)) (-5 *2 (-563)) (-5 *1 (-764 *3 *4))
+ (-4 *4 (-409 *2 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *2 (-846)) (-4 *3 (-172))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-555)) (-5 *1 (-965 *2 *3)) (-4 *3 (-1233 *2))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-172)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-5 *2 (-1257 (-684 *4))) (-5 *1 (-90 *4 *5))
+ (-5 *3 (-684 *4)) (-4 *5 (-651 *4)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-112)) (-5 *5 (-563)) (-4 *6 (-363)) (-4 *6 (-368))
+ (-4 *6 (-1045)) (-5 *2 (-640 (-640 (-684 *6)))) (-5 *1 (-1025 *6))
+ (-5 *3 (-640 (-684 *6)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-363)) (-4 *4 (-368)) (-4 *4 (-1045))
+ (-5 *2 (-640 (-640 (-684 *4)))) (-5 *1 (-1025 *4))
+ (-5 *3 (-640 (-684 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-363)) (-4 *5 (-368)) (-4 *5 (-1045))
+ (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5))
+ (-5 *3 (-640 (-684 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-917)) (-4 *5 (-363)) (-4 *5 (-368)) (-4 *5 (-1045))
+ (-5 *2 (-640 (-640 (-684 *5)))) (-5 *1 (-1025 *5))
+ (-5 *3 (-640 (-684 *5))))))
+(((*1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1257 (-640 (-2 (|:| -2618 *4) (|:| -2552 (-1113))))))
+ (-4 *4 (-349)) (-5 *2 (-767)) (-5 *1 (-346 *4))))
+ ((*1 *2)
+ (-12 (-5 *2 (-767)) (-5 *1 (-351 *3 *4)) (-14 *3 (-917))
+ (-14 *4 (-917))))
+ ((*1 *2)
+ (-12 (-5 *2 (-767)) (-5 *1 (-352 *3 *4)) (-4 *3 (-349))
+ (-14 *4
+ (-3 (-1165 *3)
+ (-1257 (-640 (-2 (|:| -2618 *3) (|:| -2552 (-1113)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-767)) (-5 *1 (-353 *3 *4)) (-4 *3 (-349))
+ (-14 *4 (-917)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
(-4 *2 (-13 (-430 *3) (-998)))))
@@ -16112,32 +15961,49 @@
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3))))
((*1 *1 *1) (-4 *1 (-1196))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1257 *6)) (-5 *4 (-1257 (-563))) (-5 *5 (-563))
- (-4 *6 (-1093)) (-5 *2 (-1 *6)) (-5 *1 (-1013 *6)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1093) (-34)))
+ (-4 *3 (-13 (-1093) (-34))))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1045)) (-4 *7 (-1045))
- (-4 *6 (-1233 *5)) (-5 *2 (-1165 (-1165 *7)))
- (-5 *1 (-501 *5 *6 *4 *7)) (-4 *4 (-1233 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-175))) (-5 *1 (-1078)))))
-(((*1 *2 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-1002)))))
+ (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1165 *7))
+ (-4 *5 (-1045)) (-4 *7 (-1045)) (-4 *2 (-1233 *5))
+ (-5 *1 (-501 *5 *2 *6 *7)) (-4 *6 (-1233 *2)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-363)) (-5 *2 (-640 *3)) (-5 *1 (-941 *4 *3))
- (-4 *3 (-1233 *4)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
- (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4))))
- (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-112))
- (-5 *2 (-1031)) (-5 *1 (-741)))))
-(((*1 *1) (-5 *1 (-141))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2 (-2 (|:| -2516 (-114)) (|:| |w| (-225)))) (-5 *1 (-204)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *2 (-846)) (-4 *3 (-172))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *2 (-555)) (-5 *1 (-965 *2 *3)) (-4 *3 (-1233 *2))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *2 (-555))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-172)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-555))
+ (-5 *2 (-2 (|:| -1957 (-684 *5)) (|:| |vec| (-1257 (-640 (-917))))))
+ (-5 *1 (-90 *5 *3)) (-5 *4 (-917)) (-4 *3 (-651 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-684 *5))) (-5 *4 (-563)) (-4 *5 (-363))
+ (-4 *5 (-1045)) (-5 *2 (-112)) (-5 *1 (-1025 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-684 *4))) (-4 *4 (-363)) (-4 *4 (-1045))
+ (-5 *2 (-112)) (-5 *1 (-1025 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3372 *4))))
+ (-5 *1 (-644 *3 *4 *5)) (-4 *3 (-1093)) (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *2)
+ (-12 (-4 *1 (-349))
+ (-5 *2 (-640 (-2 (|:| -2173 (-563)) (|:| -3311 (-563))))))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
(-4 *2 (-13 (-430 *3) (-998)))))
@@ -16158,65 +16024,55 @@
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3))))
((*1 *1 *1) (-4 *1 (-1196))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1208)) (-4 *2 (-998))
- (-4 *2 (-1045)))))
+(((*1 *2 *1 *1 *3 *4)
+ (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6))
+ (-4 *5 (-13 (-1093) (-34))) (-4 *6 (-13 (-1093) (-34)))
+ (-5 *2 (-112)) (-5 *1 (-1133 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1169)) (-5 *5 (-640 (-407 (-948 *6))))
- (-5 *3 (-407 (-948 *6)))
- (-4 *6 (-13 (-555) (-1034 (-563)) (-147)))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-640 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-569 *6)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
- (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-973 *3 *4 *5 *6))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-640 *7)) (-5 *3 (-112)) (-4 *7 (-1059 *4 *5 *6))
- (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
- (-5 *1 (-973 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-4 *1 (-389)) (-5 *2 (-1151)))))
-(((*1 *2 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-747)))))
+ (-12 (-5 *4 (-1169)) (-5 *5 (-1087 (-225))) (-5 *2 (-923))
+ (-5 *1 (-921 *3)) (-4 *3 (-611 (-536)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1169)) (-5 *2 (-923)) (-5 *1 (-921 *3))
+ (-4 *3 (-611 (-536)))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-923))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1087 (-225)))
+ (-5 *1 (-923)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-407 (-948 (-169 (-563))))) (-5 *2 (-640 (-169 *4)))
- (-5 *1 (-378 *4)) (-4 *4 (-13 (-363) (-844)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-640 (-407 (-948 (-169 (-563))))))
- (-5 *4 (-640 (-1169))) (-5 *2 (-640 (-640 (-169 *5))))
- (-5 *1 (-378 *5)) (-4 *5 (-13 (-363) (-844))))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-114)) (-5 *4 (-767)) (-4 *5 (-452)) (-4 *5 (-846))
- (-4 *5 (-1034 (-563))) (-4 *5 (-555)) (-5 *1 (-41 *5 *2))
- (-4 *2 (-430 *5))
- (-4 *2
- (-13 (-363) (-302)
- (-10 -8 (-15 -2143 ((-1118 *5 (-609 $)) $))
- (-15 -2154 ((-1118 *5 (-609 $)) $))
- (-15 -1693 ($ (-1118 *5 (-609 $))))))))))
-(((*1 *2 *3 *4 *4 *4 *5 *6 *7)
- (|partial| -12 (-5 *5 (-1169))
- (-5 *6
- (-1
- (-3
- (-2 (|:| |mainpart| *4)
- (|:| |limitedlogs|
- (-640 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
- "failed")
- *4 (-640 *4)))
- (-5 *7
- (-1 (-3 (-2 (|:| -3646 *4) (|:| |coeff| *4)) "failed") *4 *4))
- (-4 *4 (-13 (-1193) (-27) (-430 *8)))
- (-4 *8 (-13 (-452) (-846) (-147) (-1034 *3) (-636 *3)))
- (-5 *3 (-563)) (-5 *2 (-640 *4)) (-5 *1 (-1010 *8 *4)))))
-(((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1169))
- (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3784 "void"))) (-5 *1 (-1172)))))
+ (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1165 *7)) (-4 *5 (-1045))
+ (-4 *7 (-1045)) (-4 *2 (-1233 *5)) (-5 *1 (-501 *5 *2 *6 *7))
+ (-4 *6 (-1233 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1045)) (-4 *7 (-1045))
+ (-4 *4 (-1233 *5)) (-5 *2 (-1165 *7)) (-5 *1 (-501 *5 *4 *6 *7))
+ (-4 *6 (-1233 *4)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1031)) (-5 *3 (-1169)) (-5 *1 (-192)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-555)) (-5 *1 (-965 *3 *2)) (-4 *2 (-1233 *3))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)) (-4 *2 (-555))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-555)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-767)) (-5 *1 (-59 *3)) (-4 *3 (-1208))))
+ ((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-5 *1 (-59 *3)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-640 (-684 *6))) (-5 *4 (-112)) (-5 *5 (-563))
+ (-5 *2 (-684 *6)) (-5 *1 (-1025 *6)) (-4 *6 (-363)) (-4 *6 (-1045))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 (-684 *4))) (-5 *2 (-684 *4)) (-5 *1 (-1025 *4))
+ (-4 *4 (-363)) (-4 *4 (-1045))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-640 (-684 *5))) (-5 *4 (-563)) (-5 *2 (-684 *5))
+ (-5 *1 (-1025 *5)) (-4 *5 (-363)) (-4 *5 (-1045)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-349)) (-5 *3 (-563)) (-5 *2 (-1181 (-917) (-767))))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
(-4 *2 (-13 (-430 *3) (-998)))))
@@ -16237,142 +16093,131 @@
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3))))
((*1 *1 *1) (-4 *1 (-1196))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-834))) (-5 *1 (-140)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-640 *6)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-452))
- (-4 *3 (-555)) (-4 *4 (-789)) (-4 *5 (-846))
- (-5 *1 (-973 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-640 *7)) (-5 *3 (-112)) (-4 *7 (-1059 *4 *5 *6))
- (-4 *4 (-452)) (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
- (-5 *1 (-973 *4 *5 *6 *7)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-972 *3 *4 *2 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *2 (-846)) (-4 *5 (-1059 *3 *4 *2)))))
-(((*1 *2 *2 *3) (-12 (-5 *2 (-563)) (-5 *3 (-767)) (-5 *1 (-560)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-640 *7)) (|:| |badPols| (-640 *7))))
- (-5 *1 (-973 *4 *5 *6 *7)) (-5 *3 (-640 *7)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1093) (-34)))
+ (-5 *2 (-112)) (-5 *1 (-1133 *4 *5)) (-4 *4 (-13 (-1093) (-34))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-923)))))
+(((*1 *2 *2 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| -4013 (-684 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-684 *3))))
+ (-4 *3 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $)))))
+ (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-563)) (-5 *2 (-640 (-640 (-225)))) (-5 *1 (-1204)))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-743)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1022 (-839 (-563))))
- (-5 *3 (-1149 (-2 (|:| |k| (-563)) (|:| |c| *4)))) (-4 *4 (-1045))
- (-5 *1 (-593 *4)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2 (-379)) (-5 *1 (-192)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)) (-4 *3 (-1045))))
+ ((*1 *2 *2 *1)
+ (|partial| -12 (-5 *2 (-407 *1)) (-4 *1 (-1233 *3)) (-4 *3 (-1045))
+ (-4 *3 (-555))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-555)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-563)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1208))
+ (-4 *3 (-373 *4)) (-4 *5 (-373 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-684 *5))) (-5 *4 (-1257 *5)) (-4 *5 (-307))
+ (-4 *5 (-1045)) (-5 *2 (-684 *5)) (-5 *1 (-1025 *5)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3372 *4))))
+ (-4 *3 (-1093)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-644 *3 *4 *5)))))
+(((*1 *1) (-4 *1 (-349))))
(((*1 *1 *1) (-4 *1 (-626)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2))
(-4 *2 (-13 (-430 *3) (-998) (-1193))))))
(((*1 *2) (-12 (-5 *2 (-640 *3)) (-5 *1 (-1077 *3)) (-4 *3 (-132)))))
+(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *1 *1) (-4 *1 (-1132))))
(((*1 *1 *2)
(-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-4 *1 (-1091 *3))))
((*1 *1) (-12 (-4 *1 (-1091 *2)) (-4 *2 (-1093)))))
-(((*1 *2 *1) (-12 (-4 *1 (-988 *2)) (-4 *2 (-555)) (-4 *2 (-545))))
- ((*1 *1 *1) (-4 *1 (-1054))))
-(((*1 *1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1169)) (-5 *3 (-112)) (-5 *1 (-888 *4))
- (-4 *4 (-1093)))))
-(((*1 *2)
- (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5)))
- (-5 *2 (-112)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *3 (-342 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1233 *3)) (-4 *3 (-1045)) (-5 *2 (-1165 *3)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467))))
+ ((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467))))
+ ((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-684 *3))
+ (-4 *3 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $)))))
+ (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-555)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-1059 *4 *5 *6))
- (-5 *2 (-640 (-2 (|:| -1442 *1) (|:| -3405 (-640 *7)))))
- (-5 *3 (-640 *7)) (-4 *1 (-1201 *4 *5 *6 *7)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-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 (-192)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-555)))))
(((*1 *2 *3 *1)
(|partial| -12 (-4 *1 (-607 *3 *2)) (-4 *3 (-1093)) (-4 *2 (-1093)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-555)) (-5 *2 (-640 (-767))) (-5 *1 (-965 *4 *3))
- (-4 *3 (-1233 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-922)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-1165 *4))
- (-5 *1 (-528 *4)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-640 *3)) (-4 *3 (-1233 (-563))) (-5 *1 (-486 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-684 *5))) (-4 *5 (-307)) (-4 *5 (-1045))
+ (-5 *2 (-1257 (-1257 *5))) (-5 *1 (-1025 *5)) (-5 *4 (-1257 *5)))))
+(((*1 *1 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208))))
+ ((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4409)) (-4 *1 (-373 *2)) (-4 *2 (-1208))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2)
+ (-12 (-4 *1 (-349))
+ (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-563)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1208))
+ (-4 *5 (-373 *4)) (-4 *3 (-373 *4)))))
(((*1 *2 *1) (-12 (-5 *2 (-770)) (-5 *1 (-52)))))
-(((*1 *1) (-4 *1 (-349)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 *5)) (-4 *5 (-430 *4))
- (-4 *4 (-13 (-555) (-846) (-147)))
- (-5 *2
- (-2 (|:| |primelt| *5) (|:| |poly| (-640 (-1165 *5)))
- (|:| |prim| (-1165 *5))))
- (-5 *1 (-432 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-555) (-846) (-147)))
- (-5 *2
- (-2 (|:| |primelt| *3) (|:| |pol1| (-1165 *3))
- (|:| |pol2| (-1165 *3)) (|:| |prim| (-1165 *3))))
- (-5 *1 (-432 *4 *3)) (-4 *3 (-27)) (-4 *3 (-430 *4))))
- ((*1 *2 *3 *4 *3 *4)
- (-12 (-5 *3 (-948 *5)) (-5 *4 (-1169)) (-4 *5 (-13 (-363) (-147)))
- (-5 *2
- (-2 (|:| |coef1| (-563)) (|:| |coef2| (-563))
- (|:| |prim| (-1165 *5))))
- (-5 *1 (-956 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-640 (-1169)))
- (-4 *5 (-13 (-363) (-147)))
- (-5 *2
- (-2 (|:| -2311 (-640 (-563))) (|:| |poly| (-640 (-1165 *5)))
- (|:| |prim| (-1165 *5))))
- (-5 *1 (-956 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-640 (-948 *6))) (-5 *4 (-640 (-1169))) (-5 *5 (-1169))
- (-4 *6 (-13 (-363) (-147)))
- (-5 *2
- (-2 (|:| -2311 (-640 (-563))) (|:| |poly| (-640 (-1165 *6)))
- (|:| |prim| (-1165 *6))))
- (-5 *1 (-956 *6)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-545)) (-5 *2 (-112)))))
+(((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *1 *1) (-4 *1 (-1132))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-684 *3))
+ (-4 *3 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $)))))
+ (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-684 *3))
+ (-4 *3 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $)))))
+ (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-1045))
- (-5 *2 (-481 *4 *5)) (-5 *1 (-940 *4 *5)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-1151)) (-5 *5 (-684 (-225)))
- (-5 *2 (-1031)) (-5 *1 (-743)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1208))
- (-4 *5 (-1208)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-240 *6 *7)) (-14 *6 (-767))
- (-4 *7 (-1208)) (-4 *5 (-1208)) (-5 *2 (-240 *6 *5))
- (-5 *1 (-239 *6 *7 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1208)) (-4 *5 (-1208))
- (-4 *2 (-373 *5)) (-5 *1 (-371 *6 *4 *5 *2)) (-4 *4 (-373 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1093)) (-4 *5 (-1093))
- (-4 *2 (-425 *5)) (-5 *1 (-423 *6 *4 *5 *2)) (-4 *4 (-425 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-640 *6)) (-4 *6 (-1208))
- (-4 *5 (-1208)) (-5 *2 (-640 *5)) (-5 *1 (-638 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-954 *6)) (-4 *6 (-1208))
- (-4 *5 (-1208)) (-5 *2 (-954 *5)) (-5 *1 (-953 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1149 *6)) (-4 *6 (-1208))
- (-4 *3 (-1208)) (-5 *2 (-1149 *3)) (-5 *1 (-1147 *6 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1257 *6)) (-4 *6 (-1208))
- (-4 *5 (-1208)) (-5 *2 (-1257 *5)) (-5 *1 (-1256 *6 *5)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-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 (-192)))))
(((*1 *1 *2 *2 *3)
(-12 (-5 *2 (-767)) (-4 *3 (-1208)) (-4 *1 (-57 *3 *4 *5))
(-4 *4 (-373 *3)) (-4 *5 (-373 *3))))
@@ -16390,34 +16235,47 @@
((*1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045))))
((*1 *1 *1) (-5 *1 (-1169))) ((*1 *1) (-5 *1 (-1169)))
((*1 *1) (-5 *1 (-1188))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-640 (-563))) (-5 *1 (-1000 *3)) (-14 *3 (-563)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-563))
- (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 -3191))))
- (-5 *2 (-1031)) (-5 *1 (-744)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-640 (-888 *3))) (-5 *1 (-888 *3))
- (-4 *3 (-1093)))))
-(((*1 *1 *1) (-4 *1 (-626)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998) (-1193))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-52)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-555))
+ (-5 *2 (-2 (|:| -2310 *4) (|:| -1765 *3) (|:| -3443 *3)))
+ (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *2 (-2 (|:| -1765 *1) (|:| -3443 *1))) (-4 *1 (-1059 *3 *4 *5))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-555)) (-4 *3 (-1045))
+ (-5 *2 (-2 (|:| -2310 *3) (|:| -1765 *1) (|:| -3443 *1)))
+ (-4 *1 (-1233 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-640 (-684 *4))) (-5 *2 (-684 *4)) (-4 *4 (-1045))
+ (-5 *1 (-1025 *4)))))
+(((*1 *1)
+ (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23))
+ (-14 *4 *3))))
(((*1 *2 *3)
- (-12 (-5 *3 (-336 *5 *6 *7 *8)) (-4 *5 (-430 *4)) (-4 *6 (-1233 *5))
- (-4 *7 (-1233 (-407 *6))) (-4 *8 (-342 *5 *6 *7))
- (-4 *4 (-13 (-846) (-555) (-1034 (-563)))) (-5 *2 (-112))
- (-5 *1 (-907 *4 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-336 (-407 (-563)) *4 *5 *6))
- (-4 *4 (-1233 (-407 (-563)))) (-4 *5 (-1233 (-407 *4)))
- (-4 *6 (-342 (-407 (-563)) *4 *5)) (-5 *2 (-112))
- (-5 *1 (-908 *4 *5 *6)))))
+ (-12 (-5 *3 (-917))
+ (-5 *2
+ (-3 (-1165 *4)
+ (-1257 (-640 (-2 (|:| -2618 *4) (|:| -2552 (-1113)))))))
+ (-5 *1 (-346 *4)) (-4 *4 (-349)))))
+(((*1 *1) (-5 *1 (-55))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1165 *1)) (-5 *3 (-1169)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1165 *1)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-948 *1)) (-4 *1 (-27))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1169)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-846) (-555)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-846) (-555))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1132))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467))))
+ ((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467))))
+ ((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))))
(((*1 *2 *2 *3)
(-12 (-5 *2 (-1169)) (-5 *3 (-640 (-536))) (-5 *1 (-536)))))
(((*1 *1) (-5 *1 (-577)))
@@ -16428,79 +16286,51 @@
((*1 *2 *3 *1)
(-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-1149 *4))
(-4 *4 (-1093)) (-4 *4 (-1208)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-563))
- (-5 *5 (-3 (|:| |fn| (-388)) (|:| |fp| (-64 G)))) (-5 *2 (-1031))
- (-5 *1 (-744)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-640 (-1069 *4 *5 *2))) (-4 *4 (-1093))
- (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4))))
- (-4 *2 (-13 (-430 *5) (-882 *4) (-611 (-888 *4))))
- (-5 *1 (-54 *4 *5 *2))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-640 (-1069 *5 *6 *2))) (-5 *4 (-917)) (-4 *5 (-1093))
- (-4 *6 (-13 (-1045) (-882 *5) (-846) (-611 (-888 *5))))
- (-4 *2 (-13 (-430 *6) (-882 *5) (-611 (-888 *5))))
- (-5 *1 (-54 *5 *6 *2)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-767))
+ (-4 *3 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $)))))
+ (-4 *4 (-1233 *3)) (-5 *1 (-499 *3 *4 *5)) (-4 *5 (-409 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-418 (-1165 (-563)))) (-5 *1 (-191)) (-5 *3 (-563)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-640 (-2 (|:| -2387 *3) (|:| -2557 *4))))
+ (-12 (-5 *2 (-640 (-2 (|:| -2387 *3) (|:| -2556 *4))))
(-4 *3 (-1093)) (-4 *4 (-1093)) (-4 *1 (-1184 *3 *4))))
((*1 *1) (-12 (-4 *1 (-1184 *2 *3)) (-4 *2 (-1093)) (-4 *3 (-1093)))))
-(((*1 *2 *3) (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-379))))
- ((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-379)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-667 *3)) (-4 *3 (-846))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-846))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-815 *3)) (-4 *3 (-846)))))
-(((*1 *2 *3 *2)
- (|partial| -12 (-5 *3 (-917)) (-5 *1 (-442 *2))
- (-4 *2 (-1233 (-563)))))
- ((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-917)) (-5 *4 (-767)) (-5 *1 (-442 *2))
- (-4 *2 (-1233 (-563)))))
- ((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-917)) (-5 *4 (-640 (-767))) (-5 *1 (-442 *2))
- (-4 *2 (-1233 (-563)))))
- ((*1 *2 *3 *2 *4 *5)
- (|partial| -12 (-5 *3 (-917)) (-5 *4 (-640 (-767))) (-5 *5 (-767))
- (-5 *1 (-442 *2)) (-4 *2 (-1233 (-563)))))
- ((*1 *2 *3 *2 *4 *5 *6)
- (|partial| -12 (-5 *3 (-917)) (-5 *4 (-640 (-767))) (-5 *5 (-767))
- (-5 *6 (-112)) (-5 *1 (-442 *2)) (-4 *2 (-1233 (-563)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-917)) (-5 *4 (-418 *2)) (-4 *2 (-1233 *5))
- (-5 *1 (-444 *5 *2)) (-4 *5 (-1045)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-640 *6) "failed") (-563) *6 *6)) (-4 *6 (-363))
- (-4 *7 (-1233 *6))
- (-5 *2 (-2 (|:| |answer| (-584 (-407 *7))) (|:| |a0| *6)))
- (-5 *1 (-573 *6 *7)) (-5 *3 (-407 *7)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-939 *3) (-939 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-363) (-1193) (-998))))))
-(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *1 *1 *1) (-4 *1 (-545))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-555) (-846) (-1034 (-563)))) (-5 *1 (-188 *3 *2))
- (-4 *2 (-13 (-27) (-1193) (-430 (-169 *3))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-555) (-846) (-1034 (-563))))
- (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 (-169 *4))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-1197 *3 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1169))
- (-4 *4 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-1197 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))))
+ (-12 (-4 *4 (-363)) (-4 *4 (-555)) (-4 *5 (-1233 *4))
+ (-5 *2 (-2 (|:| -3169 (-620 *4 *5)) (|:| -4388 (-407 *5))))
+ (-5 *1 (-620 *4 *5)) (-5 *3 (-407 *5))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-640 (-1157 *3 *4))) (-5 *1 (-1157 *3 *4))
+ (-14 *3 (-917)) (-4 *4 (-1045))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-452)) (-4 *3 (-1045))
+ (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1)))
+ (-4 *1 (-1233 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1257 (-1257 *4))) (-4 *4 (-1045)) (-5 *2 (-684 *4))
+ (-5 *1 (-1025 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-917))
+ (-5 *2 (-1257 (-640 (-2 (|:| -2618 *4) (|:| -2552 (-1113))))))
+ (-5 *1 (-346 *4)) (-4 *4 (-349)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-640 (-1169))) (-4 *4 (-1093))
+ (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4))))
+ (-5 *1 (-54 *4 *5 *2))
+ (-4 *2 (-13 (-430 *5) (-882 *4) (-611 (-888 *4)))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1132))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))))
(((*1 *2 *2 *3 *3)
(-12 (-5 *3 (-407 *5)) (-4 *4 (-1212)) (-4 *5 (-1233 *4))
(-5 *1 (-148 *4 *5 *2)) (-4 *2 (-1233 *3))))
@@ -16600,89 +16430,93 @@
((*1 *2 *1 *3)
(-12 (-4 *1 (-1235 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788))
(|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1149 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-323 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-131))
- (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3368 *4))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-640 (-2 (|:| -2311 *3) (|:| -4222 *4))))
- (-5 *1 (-731 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-722))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1235 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788))
- (-5 *2 (-1149 (-2 (|:| |k| *4) (|:| |c| *3)))))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-1085 (-948 (-563)))) (-5 *3 (-948 (-563)))
- (-5 *1 (-330))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-1085 (-948 (-563)))) (-5 *1 (-330)))))
-(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-560)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1045)) (-4 *4 (-1233 *3)) (-5 *1 (-164 *3 *4 *2))
- (-4 *2 (-1233 *4))))
- ((*1 *1 *1) (-12 (-5 *1 (-294 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *3 *3 *2 *4)
+ (-12 (-5 *3 (-684 *2)) (-5 *4 (-563))
+ (-4 *2 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $)))))
+ (-4 *5 (-1233 *2)) (-5 *1 (-499 *2 *5 *6)) (-4 *6 (-409 *2 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-640 (-1165 (-563)))) (-5 *1 (-191)) (-5 *3 (-563)))))
+(((*1 *2 *2 *2 *3 *3)
+ (-12 (-5 *3 (-767)) (-4 *4 (-1045)) (-5 *1 (-1229 *4 *2))
+ (-4 *2 (-1233 *4)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-640 (-1069 *4 *5 *2))) (-4 *4 (-1093))
+ (-4 *5 (-13 (-1045) (-882 *4) (-846) (-611 (-888 *4))))
+ (-4 *2 (-13 (-430 *5) (-882 *4) (-611 (-888 *4))))
+ (-5 *1 (-54 *4 *5 *2))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-640 (-1069 *5 *6 *2))) (-5 *4 (-917)) (-4 *5 (-1093))
+ (-4 *6 (-13 (-1045) (-882 *5) (-846) (-611 (-888 *5))))
+ (-4 *2 (-13 (-430 *6) (-882 *5) (-611 (-888 *5))))
+ (-5 *1 (-54 *5 *6 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-901 (-563))) (-5 *4 (-563)) (-5 *2 (-684 *4))
+ (-5 *1 (-1024 *5)) (-4 *5 (-1045))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-684 (-563))) (-5 *1 (-1024 *4))
+ (-4 *4 (-1045))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 (-901 (-563)))) (-5 *4 (-563))
+ (-5 *2 (-640 (-684 *4))) (-5 *1 (-1024 *5)) (-4 *5 (-1045))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-640 (-563)))) (-5 *2 (-640 (-684 (-563))))
+ (-5 *1 (-1024 *4)) (-4 *4 (-1045)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *1 (-644 *2 *3 *4)) (-4 *2 (-1093)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1257 (-640 (-2 (|:| -2618 *4) (|:| -2552 (-1113))))))
+ (-4 *4 (-349)) (-5 *2 (-684 *4)) (-5 *1 (-346 *4)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1132))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151))
+ (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))))
(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467))))
((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-467))))
((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))))
(((*1 *1 *1 *1) (-4 *1 (-656))))
(((*1 *1 *2) (-12 (-5 *2 (-388)) (-5 *1 (-629)))))
-(((*1 *1) (-12 (-4 *1 (-1041 *2)) (-4 *2 (-23)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093))
- (-5 *2 (-640 (-2 (|:| |k| *4) (|:| |c| *3))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-640 (-2 (|:| |k| (-889 *3)) (|:| |c| *4))))
- (-5 *1 (-624 *3 *4 *5)) (-4 *3 (-846))
- (-4 *4 (-13 (-172) (-713 (-407 (-563))))) (-14 *5 (-917))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-640 (-667 *3))) (-5 *1 (-889 *3)) (-4 *3 (-846)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-640 (-2 (|:| |val| (-640 *6)) (|:| -2059 *7))))
- (-4 *6 (-1059 *3 *4 *5)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452))
- (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-984 *3 *4 *5 *6 *7))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-684 *2)) (-5 *4 (-767))
+ (-4 *2 (-13 (-307) (-10 -8 (-15 -2802 ((-418 $) $)))))
+ (-4 *5 (-1233 *2)) (-5 *1 (-499 *2 *5 *6)) (-4 *6 (-409 *2 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-1171 (-407 (-563))))
+ (-5 *1 (-190)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1045)) (-5 *1 (-1229 *3 *2)) (-4 *2 (-1233 *3)))))
+(((*1 *2 *2) (-12 (-5 *1 (-677 *2)) (-4 *2 (-1093)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-1024 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-640 (-684 *3))) (-4 *3 (-1045)) (-5 *1 (-1024 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-640 (-2 (|:| |val| (-640 *6)) (|:| -2059 *7))))
- (-4 *6 (-1059 *3 *4 *5)) (-4 *7 (-1065 *3 *4 *5 *6)) (-4 *3 (-452))
- (-4 *4 (-789)) (-4 *5 (-846)) (-5 *1 (-1100 *3 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *5 *6)) (-4 *6 (-611 (-1169)))
- (-4 *4 (-363)) (-4 *5 (-789)) (-4 *6 (-846))
- (-5 *2 (-1158 (-640 (-948 *4)) (-640 (-294 (-948 *4)))))
- (-5 *1 (-504 *4 *5 *6 *7)))))
+ (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-1024 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-640 (-684 *3))) (-4 *3 (-1045)) (-5 *1 (-1024 *3)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-644 *3 *4 *5)) (-4 *3 (-1093))
+ (-4 *4 (-23)) (-14 *5 *4))))
(((*1 *2 *3)
- (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4))
- (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1095 (-1095 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *2 *3)
- (-12
- (-5 *2
- (-2 (|:| |partsol| (-1257 (-407 (-948 *4))))
- (|:| -4315 (-640 (-1257 (-407 (-948 *4)))))))
- (-5 *3 (-640 *7)) (-4 *4 (-13 (-307) (-147)))
- (-4 *7 (-945 *4 *6 *5)) (-4 *5 (-13 (-846) (-611 (-1169))))
- (-4 *6 (-789)) (-5 *1 (-920 *4 *5 *6 *7)))))
-(((*1 *2 *2) (-12 (-5 *1 (-677 *2)) (-4 *2 (-1093)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-1 (-640 *2) *2 *2 *2)) (-4 *2 (-1093))
- (-5 *1 (-103 *2))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1093)) (-5 *1 (-103 *2)))))
-(((*1 *1 *1 *1) (-4 *1 (-656))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1 (-536) (-640 (-536)))) (-5 *1 (-114))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-536) (-640 (-536)))) (-5 *1 (-114))))
- ((*1 *1) (-5 *1 (-577))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-816)) (-14 *5 (-1169)) (-5 *2 (-640 (-1230 *5 *4)))
- (-5 *1 (-1107 *4 *5)) (-5 *3 (-1230 *5 *4)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-748)))))
-(((*1 *2 *3 *3 *3 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+ (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349))
+ (-5 *2 (-1257 (-640 (-2 (|:| -2618 *4) (|:| -2552 (-1113))))))
+ (-5 *1 (-346 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-52)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1132))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151))
+ (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))))
(((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-640 (-1169))) (-5 *3 (-1169)) (-5 *1 (-536))))
((*1 *2 *3 *2)
@@ -16694,117 +16528,143 @@
((*1 *2 *3 *2 *4)
(-12 (-5 *4 (-640 (-1169))) (-5 *2 (-1169)) (-5 *1 (-700 *3))
(-4 *3 (-611 (-536))))))
+(((*1 *1 *1 *1) (-4 *1 (-656))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-1 (-536) (-640 (-536)))) (-5 *1 (-114))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-536) (-640 (-536)))) (-5 *1 (-114))))
+ ((*1 *1) (-5 *1 (-577))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-767)) (-4 *5 (-349)) (-4 *6 (-1233 *5))
+ (-5 *2
+ (-640
+ (-2 (|:| -4013 (-684 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-684 *6)))))
+ (-5 *1 (-498 *5 *6 *7))
+ (-5 *3
+ (-2 (|:| -4013 (-684 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-684 *6))))
+ (-4 *7 (-1233 *6)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1045)) (-5 *2 (-563)) (-5 *1 (-443 *4 *3 *5))
- (-4 *3 (-1233 *4))
- (-4 *5 (-13 (-404) (-1034 *4) (-363) (-1193) (-284))))))
-(((*1 *1 *2 *3 *3 *4 *4)
- (-12 (-5 *2 (-948 (-563))) (-5 *3 (-1169))
- (-5 *4 (-1087 (-407 (-563)))) (-5 *1 (-30)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-684 *3)) (-4 *3 (-1045)) (-5 *1 (-685 *3)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-640 (-563))) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-563))
- (-14 *4 (-767)) (-4 *5 (-172)))))
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-1171 (-407 (-563))))
+ (-5 *1 (-190)))))
(((*1 *2 *2 *2)
- (-12 (-4 *3 (-363)) (-5 *1 (-762 *2 *3)) (-4 *2 (-704 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-363)))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1169)) (-5 *6 (-640 (-609 *3)))
- (-5 *5 (-609 *3)) (-4 *3 (-13 (-27) (-1193) (-430 *7)))
- (-4 *7 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *2 (-2 (|:| -3646 *3) (|:| |coeff| *3)))
- (-5 *1 (-556 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-1173)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-126 *3)))))
-(((*1 *1) (-5 *1 (-1075))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1257 (-640 *3))) (-4 *4 (-307))
- (-5 *2 (-640 *3)) (-5 *1 (-455 *4 *3)) (-4 *3 (-1233 *4)))))
+ (-12 (-4 *3 (-1045)) (-5 *1 (-1229 *3 *2)) (-4 *2 (-1233 *3)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1151) (-770))) (-5 *1 (-114)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-684 *4)) (-5 *3 (-917)) (-4 *4 (-1045))
+ (-5 *1 (-1024 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-640 (-684 *4))) (-5 *3 (-917)) (-4 *4 (-1045))
+ (-5 *1 (-1024 *4)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-563) (-563))) (-5 *1 (-361 *3)) (-4 *3 (-1093))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-767) (-767))) (-5 *1 (-386 *3)) (-4 *3 (-1093))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4)
+ (-5 *1 (-644 *3 *4 *5)) (-4 *3 (-1093)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1165 *4)) (-4 *4 (-349)) (-5 *2 (-954 (-1113)))
+ (-5 *1 (-346 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-858)) (-5 *1 (-52)))))
+(((*1 *1 *1) (-5 *1 (-225)))
+ ((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *1 *1) (-4 *1 (-1132))) ((*1 *1 *1 *1) (-4 *1 (-1132))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *5 *5))
- (-4 *5 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-923)))))
+(((*1 *2 *1)
+ (-12
(-5 *2
- (-2 (|:| |solns| (-640 *5))
- (|:| |maps| (-640 (-2 (|:| |arg| *5) (|:| |res| *5))))))
- (-5 *1 (-1121 *3 *5)) (-4 *3 (-1233 *5)))))
+ (-640
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3)
+ (|:| |xpnt| (-563)))))
+ (-5 *1 (-418 *3)) (-4 *3 (-555))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *4 (-767)) (-4 *3 (-349)) (-4 *5 (-1233 *3))
+ (-5 *2 (-640 (-1165 *3))) (-5 *1 (-498 *3 *5 *6))
+ (-4 *6 (-1233 *5)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-555))
+ (-5 *2 (-2 (|:| -1765 *3) (|:| -3443 *3))) (-5 *1 (-1228 *4 *3))
+ (-4 *3 (-1233 *4)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1169)) (-5 *3 (-640 (-961))) (-5 *1 (-109)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-767)) (-5 *2 (-684 (-948 *4))) (-5 *1 (-1024 *4))
+ (-4 *4 (-1045)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-323 *3 *4)) (-4 *3 (-1093))
+ (-4 *4 (-131))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-361 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-386 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1093)) (-5 *1 (-644 *3 *4 *5))
+ (-4 *4 (-23)) (-14 *5 *4))))
(((*1 *2)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-529))))
- ((*1 *1 *2) (-12 (-5 *2 (-388)) (-5 *1 (-529)))))
-(((*1 *2 *1 *3 *3 *4 *4)
- (-12 (-5 *3 (-767)) (-5 *4 (-917)) (-5 *2 (-1262)) (-5 *1 (-1258))))
- ((*1 *2 *1 *3 *3 *4 *4)
- (-12 (-5 *3 (-767)) (-5 *4 (-917)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *2 *3) (-12 (-5 *3 (-917)) (-5 *2 (-900 (-563))) (-5 *1 (-913))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-900 (-563))) (-5 *1 (-913)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
- (-5 *2 (-640 (-2 (|:| |val| (-112)) (|:| -2059 *4))))
- (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
+ (-12 (-5 *2 (-954 (-1113))) (-5 *1 (-343 *3 *4)) (-14 *3 (-917))
+ (-14 *4 (-917))))
+ ((*1 *2)
+ (-12 (-5 *2 (-954 (-1113))) (-5 *1 (-344 *3 *4)) (-4 *3 (-349))
+ (-14 *4 (-1165 *3))))
+ ((*1 *2)
+ (-12 (-5 *2 (-954 (-1113))) (-5 *1 (-345 *3 *4)) (-4 *3 (-349))
+ (-14 *4 (-917)))))
+(((*1 *2 *3) (-12 (-5 *3 (-112)) (-5 *2 (-1151)) (-5 *1 (-52)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-225)) (-5 *3 (-767)) (-5 *1 (-226))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-169 (-225))) (-5 *3 (-767)) (-5 *1 (-226))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1132))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-684 *8)) (-4 *8 (-945 *5 *7 *6))
- (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169))))
- (-4 *7 (-789))
- (-5 *2
- (-640
- (-2 (|:| -2522 (-767))
- (|:| |eqns|
- (-640
- (-2 (|:| |det| *8) (|:| |rows| (-640 (-563)))
- (|:| |cols| (-640 (-563))))))
- (|:| |fgb| (-640 *8)))))
- (-5 *1 (-920 *5 *6 *7 *8)) (-5 *4 (-767)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-640 *6)) (-5 *4 (-640 (-247 *5 *6))) (-4 *6 (-452))
- (-5 *2 (-247 *5 *6)) (-14 *5 (-640 (-1169))) (-5 *1 (-628 *5 *6)))))
-(((*1 *2 *1) (-12 (-4 *1 (-527)) (-5 *2 (-686 (-547))))))
-(((*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-487)))))
-(((*1 *1 *1 *1) (|partial| -4 *1 (-131))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-716)) (-5 *2 (-917))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-718)) (-5 *2 (-767)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-923)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-495)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)))))
(((*1 *2 *3 *1)
(|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1093)) (-4 *4 (-1093))
- (-5 *2 (-2 (|:| -2387 *3) (|:| -2557 *4))))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-363)) (-4 *3 (-1045))
- (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-848 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-363)) (-4 *5 (-1045))
- (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-849 *5 *3))
- (-4 *3 (-848 *5)))))
+ (-5 *2 (-2 (|:| -2387 *3) (|:| -2556 *4))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-555) (-147))) (-5 *2 (-640 *3))
+ (-5 *1 (-1227 *4 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *2)
+ (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-417 *3)))))
(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-1169))
- (-4 *4 (-13 (-452) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *1 (-556 *4 *2)) (-4 *2 (-13 (-27) (-1193) (-430 *4))))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-1151)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
- (-4 *4 (-1059 *6 *7 *8)) (-5 *2 (-1262))
- (-5 *1 (-772 *6 *7 *8 *4 *5)) (-4 *5 (-1065 *6 *7 *8 *4)))))
-(((*1 *2 *3 *3)
- (-12 (|has| *2 (-6 (-4409 "*"))) (-4 *5 (-373 *2)) (-4 *6 (-373 *2))
- (-4 *2 (-1045)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1233 *2))
- (-4 *4 (-682 *2 *5 *6)))))
-(((*1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1260))))
- ((*1 *2 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-1260)))))
-(((*1 *1) (-12 (-4 *1 (-329 *2)) (-4 *2 (-368)) (-4 *2 (-363)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-972 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *5 (-846)) (-4 *6 (-1059 *3 *4 *5)) (-4 *3 (-555))
- (-5 *2 (-112)))))
-(((*1 *1 *1) (-4 *1 (-626)))
+ (-12 (-5 *2 (-684 *4)) (-5 *3 (-917)) (|has| *4 (-6 (-4410 "*")))
+ (-4 *4 (-1045)) (-5 *1 (-1024 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-640 (-684 *4))) (-5 *3 (-917))
+ (|has| *4 (-6 (-4410 "*"))) (-4 *4 (-1045)) (-5 *1 (-1024 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-642 *3)) (-4 *3 (-1093)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5)))
+ (-5 *2 (-767)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *3 (-342 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-767)))))
+(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-627 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998) (-1193))))))
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *1 *1) (-4 *1 (-1132))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-923)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-491)))))
(((*1 *2 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208))))
((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1089))))
((*1 *2 *1)
@@ -16813,77 +16673,76 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-767)) (-4 *1 (-1245 *3)) (-4 *3 (-1208))))
((*1 *2 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-323 *3 *4)) (-4 *3 (-1093))
- (-4 *4 (-131)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1169))
- (-4 *4 (-13 (-846) (-307) (-1034 (-563)) (-636 (-563)) (-147)))
- (-5 *1 (-800 *4 *2)) (-4 *2 (-13 (-29 *4) (-1193) (-955)))))
- ((*1 *1 *1 *1 *1) (-5 *1 (-858))) ((*1 *1 *1 *1) (-5 *1 (-858)))
- ((*1 *1 *1) (-5 *1 (-858)))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1149 *3)) (-5 *1 (-1153 *3)) (-4 *3 (-1045)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1165 *5)) (-4 *5 (-363)) (-5 *2 (-640 *6))
- (-5 *1 (-532 *5 *6 *4)) (-4 *6 (-363)) (-4 *4 (-13 (-363) (-844))))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
- (-4 *6 (-789)) (-5 *2 (-640 (-640 (-563))))
- (-5 *1 (-920 *4 *5 *6 *7)) (-5 *3 (-563)) (-4 *7 (-945 *4 *6 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-368)) (-5 *2 (-917))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1257 *4)) (-4 *4 (-349)) (-5 *2 (-917))
- (-5 *1 (-528 *4)))))
+ (-12 (-5 *3 (-1171 (-407 (-563)))) (-5 *2 (-407 (-563)))
+ (-5 *1 (-190)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1257 (-3 (-468) "undefined"))) (-5 *1 (-1258)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3)) (-4 *3 (-970)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3)
- (-12 (-5 *3 (-563)) (-5 *5 (-112)) (-5 *6 (-684 (-225)))
- (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-751)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2742 *3) (|:| |coef2| (-778 *3))))
- (-5 *1 (-778 *3)) (-4 *3 (-555)) (-4 *3 (-1045)))))
-(((*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10)
- (|partial| -12 (-5 *2 (-640 (-1165 *13))) (-5 *3 (-1165 *13))
- (-5 *4 (-640 *12)) (-5 *5 (-640 *10)) (-5 *6 (-640 *13))
- (-5 *7 (-640 (-640 (-2 (|:| -4008 (-767)) (|:| |pcoef| *13)))))
- (-5 *8 (-640 (-767))) (-5 *9 (-1257 (-640 (-1165 *10))))
- (-4 *12 (-846)) (-4 *10 (-307)) (-4 *13 (-945 *10 *11 *12))
- (-4 *11 (-789)) (-5 *1 (-703 *11 *12 *10 *13)))))
+ (|partial| -12 (-4 *4 (-13 (-555) (-147)))
+ (-5 *2 (-2 (|:| -1685 *3) (|:| -1700 *3))) (-5 *1 (-1227 *4 *3))
+ (-4 *3 (-1233 *4)))))
+(((*1 *2)
+ (-12 (-4 *3 (-555)) (-5 *2 (-640 (-684 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-417 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-555) (-846))) (-5 *2 (-169 *5))
- (-5 *1 (-597 *4 *5 *3)) (-4 *5 (-13 (-430 *4) (-998) (-1193)))
- (-4 *3 (-13 (-430 (-169 *4)) (-998) (-1193))))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-4 *3 (-1093))
- (-5 *2 (-112)))))
+ (-12 (-5 *3 (-684 (-407 (-948 (-563)))))
+ (-5 *2 (-640 (-684 (-316 (-563))))) (-5 *1 (-1027)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1169)) (-4 *5 (-611 (-888 (-563))))
- (-4 *5 (-882 (-563)))
- (-4 *5 (-13 (-846) (-1034 (-563)) (-452) (-636 (-563))))
- (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
- (-5 *1 (-566 *5 *3)) (-4 *3 (-626))
- (-4 *3 (-13 (-27) (-1193) (-430 *5)))))
- ((*1 *2 *2 *3 *4 *4)
- (|partial| -12 (-5 *3 (-1169)) (-5 *4 (-839 *2)) (-4 *2 (-1132))
- (-4 *2 (-13 (-27) (-1193) (-430 *5)))
- (-4 *5 (-611 (-888 (-563)))) (-4 *5 (-882 (-563)))
- (-4 *5 (-13 (-846) (-1034 (-563)) (-452) (-636 (-563))))
- (-5 *1 (-566 *5 *2)))))
+ (-12 (-5 *3 (-684 *1)) (-5 *4 (-1257 *1)) (-4 *1 (-636 *5))
+ (-4 *5 (-1045))
+ (-5 *2 (-2 (|:| -1957 (-684 *5)) (|:| |vec| (-1257 *5))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-684 *1)) (-4 *1 (-636 *4)) (-4 *4 (-1045))
+ (-5 *2 (-684 *4)))))
(((*1 *2)
- (-12 (-4 *4 (-363)) (-5 *2 (-917)) (-5 *1 (-328 *3 *4))
- (-4 *3 (-329 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-363)) (-5 *2 (-829 (-917))) (-5 *1 (-328 *3 *4))
- (-4 *3 (-329 *4))))
- ((*1 *2) (-12 (-4 *1 (-329 *3)) (-4 *3 (-363)) (-5 *2 (-917))))
+ (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5)))
+ (-5 *2 (-112)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *3 (-342 *4 *5 *6))))
((*1 *2)
- (-12 (-4 *1 (-1276 *3)) (-4 *3 (-363)) (-5 *2 (-829 (-917))))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-128)))))
-(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-640 *1)) (-4 *1 (-916)))))
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
+(((*1 *1 *1 *1) (-5 *1 (-225)))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-767)) (-5 *2 (-1 (-379))) (-5 *1 (-1036))))
+ ((*1 *1 *1 *1) (-4 *1 (-1132))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *6 *5))
+ (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
+ (-4 *6 (-789)) (-5 *2 (-112)) (-5 *1 (-920 *4 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-13 (-307) (-147)))
+ (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-112))
+ (-5 *1 (-920 *4 *5 *6 *7)) (-4 *7 (-945 *4 *6 *5)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4408)) (-4 *1 (-489 *4))
+ (-4 *4 (-1208)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-13 (-555) (-147))) (-5 *1 (-1227 *3 *2))
+ (-4 *2 (-1233 *3)))))
+(((*1 *2)
+ (-12 (-4 *3 (-555)) (-5 *2 (-640 (-684 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-417 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-640 (-684 (-316 (-563))))) (-5 *1 (-1027)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 *5)) (-4 *5 (-363))
+ (-4 *5 (-555)) (-5 *2 (-1257 *5)) (-5 *1 (-635 *5 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1257 *4)) (-4 *4 (-636 *5))
+ (-2174 (-4 *5 (-363))) (-4 *5 (-555)) (-5 *2 (-1257 (-407 *5)))
+ (-5 *1 (-635 *5 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *3 (-1212)) (-4 *5 (-1233 *3)) (-4 *6 (-1233 (-407 *5)))
+ (-5 *2 (-112)) (-5 *1 (-341 *4 *3 *5 *6)) (-4 *4 (-342 *3 *5 *6))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
(((*1 *1 *1 *2)
(-12 (-5 *2 (-563)) (-4 *1 (-1086 *3)) (-4 *3 (-1208)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-858) (-858))) (-5 *1 (-114))))
@@ -16894,27 +16753,36 @@
(-12 (-5 *2 (-1262)) (-5 *1 (-214 *3))
(-4 *3
(-13 (-846)
- (-10 -8 (-15 -2309 ((-1151) $ (-1169))) (-15 -1463 (*2 $))
- (-15 -2807 (*2 $)))))))
+ (-10 -8 (-15 -2308 ((-1151) $ (-1169))) (-15 -1463 (*2 $))
+ (-15 -1651 (*2 $)))))))
((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-394))))
((*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-394))))
((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-502))))
((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-706))))
((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1188))))
((*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-1188)))))
+(((*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-1054))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-339 *2 *3 *4)) (-14 *2 (-640 (-1169)))
+ (-14 *3 (-640 (-1169))) (-4 *4 (-387))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
+ (-4 *2 (-430 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172)) (-4 *2 (-1054))))
+ ((*1 *1 *1) (-4 *1 (-844)))
+ ((*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)) (-4 *2 (-1054))))
+ ((*1 *1 *1) (-4 *1 (-1054))) ((*1 *1 *1) (-4 *1 (-1132))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1165 *3)) (-4 *3 (-349)) (-5 *1 (-357 *3)))))
-(((*1 *1 *1 *2 *2 *2 *2)
- (-12 (-5 *2 (-563)) (-4 *1 (-682 *3 *4 *5)) (-4 *3 (-1045))
- (-4 *4 (-373 *3)) (-4 *5 (-373 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
+ (-12 (-4 *3 (-13 (-307) (-147))) (-4 *4 (-13 (-846) (-611 (-1169))))
+ (-4 *5 (-789)) (-5 *1 (-920 *3 *4 *5 *2)) (-4 *2 (-945 *3 *5 *4)))))
+(((*1 *2 *3 *4 *5 *3 *6 *3)
+ (-12 (-5 *3 (-563)) (-5 *5 (-169 (-225))) (-5 *6 (-1151))
+ (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))))
(((*1 *1 *2 *1)
- (-12 (|has| *1 (-6 -4407)) (-4 *1 (-151 *2)) (-4 *2 (-1208))
+ (-12 (|has| *1 (-6 -4408)) (-4 *1 (-151 *2)) (-4 *2 (-1208))
(-4 *2 (-1093))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4407)) (-4 *1 (-151 *3))
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4408)) (-4 *1 (-151 *3))
(-4 *3 (-1208))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-669 *3)) (-4 *3 (-1208))))
@@ -16926,191 +16794,242 @@
((*1 *1 *2 *1)
(-12 (-5 *2 (-1133 *3 *4)) (-4 *3 (-13 (-1093) (-34)))
(-4 *4 (-13 (-1093) (-34))) (-5 *1 (-1134 *3 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 *5)) (-5 *4 (-917)) (-4 *5 (-846))
- (-5 *2 (-640 (-667 *5))) (-5 *1 (-667 *5)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-870)) (-5 *3 (-640 (-263))) (-5 *1 (-261)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
- (-4 *6 (-789)) (-4 *7 (-945 *4 *6 *5))
- (-5 *2
- (-2 (|:| |sysok| (-112)) (|:| |z0| (-640 *7)) (|:| |n0| (-640 *7))))
- (-5 *1 (-920 *4 *5 *6 *7)) (-5 *3 (-640 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-563)) (-5 *4 (-418 *2)) (-4 *2 (-945 *7 *5 *6))
- (-5 *1 (-738 *5 *6 *7 *2)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-307)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-858)))))
-(((*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *5 (-225))
- (-5 *2 (-1031)) (-5 *1 (-747)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7)) (-5 *2 (-640 *4))
- (-5 *1 (-1066 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(((*1 *2) (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1260))))
- ((*1 *2 *2) (-12 (-5 *2 (-640 (-917))) (-5 *1 (-1260)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-1057)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-1194 *3))) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-640 *6)) (-4 *6 (-846)) (-4 *4 (-363)) (-4 *5 (-789))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4408)) (-4 *1 (-489 *4))
+ (-4 *4 (-1208)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-767)) (-4 *4 (-13 (-555) (-147)))
+ (-5 *1 (-1227 *4 *2)) (-4 *2 (-1233 *4)))))
+(((*1 *2)
+ (-12 (-4 *3 (-555)) (-5 *2 (-640 (-684 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-417 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-684 (-316 (-563)))) (-5 *1 (-1027)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-1257 *5)) (-4 *5 (-636 *4)) (-4 *4 (-555))
+ (-5 *2 (-1257 *4)) (-5 *1 (-635 *4 *5)))))
+(((*1 *2)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-1131))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-858))) (-5 *2 (-1262)) (-5 *1 (-1131)))))
+(((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-1151)) (-5 *4 (-169 (-225))) (-5 *5 (-563))
+ (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3 *4 *5 *6 *7 *7 *8)
+ (-12
+ (-5 *3
+ (-2 (|:| |det| *12) (|:| |rows| (-640 (-563)))
+ (|:| |cols| (-640 (-563)))))
+ (-5 *4 (-684 *12)) (-5 *5 (-640 (-407 (-948 *9))))
+ (-5 *6 (-640 (-640 *12))) (-5 *7 (-767)) (-5 *8 (-563))
+ (-4 *9 (-13 (-307) (-147))) (-4 *12 (-945 *9 *11 *10))
+ (-4 *10 (-13 (-846) (-611 (-1169)))) (-4 *11 (-789))
(-5 *2
- (-2 (|:| |mval| (-684 *4)) (|:| |invmval| (-684 *4))
- (|:| |genIdeal| (-504 *4 *5 *6 *7))))
- (-5 *1 (-504 *4 *5 *6 *7)) (-4 *7 (-945 *4 *5 *6)))))
-(((*1 *2 *2 *3 *3 *4)
- (-12 (-5 *4 (-767)) (-4 *3 (-555)) (-5 *1 (-965 *3 *2))
- (-4 *2 (-1233 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1140 (-1151))) (-5 *1 (-391)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *2 (-13 (-363) (-10 -8 (-15 ** ($ $ (-407 (-563)))))))
- (-5 *1 (-1121 *3 *2)) (-4 *3 (-1233 *2)))))
-(((*1 *1 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858)))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-640 (-939 (-225))))) (-5 *1 (-468)))))
+ (-2 (|:| |eqzro| (-640 *12)) (|:| |neqzro| (-640 *12))
+ (|:| |wcond| (-640 (-948 *9)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1257 (-407 (-948 *9))))
+ (|:| -4013 (-640 (-1257 (-407 (-948 *9)))))))))
+ (-5 *1 (-920 *9 *10 *11 *12)))))
+(((*1 *1 *2) (-12 (-5 *2 (-407 (-563))) (-5 *1 (-487)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))))
+(((*1 *2)
+ (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-417 *3)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-684 (-407 (-948 (-563)))))
+ (-5 *2 (-684 (-316 (-563)))) (-5 *1 (-1027)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1257 *5)) (-4 *5 (-636 *4)) (-4 *4 (-555))
+ (-5 *2 (-112)) (-5 *1 (-635 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4))
+ (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-171))))
((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1258))))
((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-30))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-418 *4) *4)) (-4 *4 (-555)) (-5 *2 (-418 *4))
- (-5 *1 (-419 *4))))
- ((*1 *1 *1) (-5 *1 (-922)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922))))
- ((*1 *1 *1) (-5 *1 (-923)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))
- (-5 *4 (-407 (-563))) (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563)))))
- ((*1 *2 *3 *2 *2)
- (|partial| -12
- (-5 *2 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))
- (-5 *1 (-1016 *3)) (-4 *3 (-1233 (-563)))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))
- (-5 *4 (-407 (-563))) (-5 *1 (-1017 *3)) (-4 *3 (-1233 *4))))
- ((*1 *2 *3 *2 *2)
- (|partial| -12
- (-5 *2 (-2 (|:| -1686 (-407 (-563))) (|:| -1701 (-407 (-563)))))
- (-5 *1 (-1017 *3)) (-4 *3 (-1233 (-407 (-563))))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3))
- (-4 *3 (-1233 *2)))))
+(((*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1262)) (-5 *1 (-1131))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-858))) (-5 *2 (-1262)) (-5 *1 (-1131)))))
(((*1 *2 *2 *3)
- (-12 (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563)))))
- (-4 *3 (-1233 *4)) (-5 *1 (-805 *4 *3 *2 *5)) (-4 *2 (-651 *3))
- (-4 *5 (-651 (-407 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-407 *5))
- (-4 *4 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *5 (-1233 *4))
- (-5 *1 (-805 *4 *5 *2 *6)) (-4 *2 (-651 *5)) (-4 *6 (-651 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-799)))))
-(((*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1257 *1)) (-4 *1 (-367 *3)))))
+ (-12 (-5 *2 (-684 *7)) (-5 *3 (-640 *7)) (-4 *7 (-945 *4 *6 *5))
+ (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
+ (-4 *6 (-789)) (-5 *1 (-920 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-1151)) (-5 *4 (-169 (-225))) (-5 *5 (-563))
+ (-5 *2 (-1031)) (-5 *1 (-754)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1233 (-563))))))
-(((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1169)) (-5 *1 (-670 *3)) (-4 *3 (-1093)))))
+ (-12 (-5 *3 (-640 (-563))) (-5 *2 (-563)) (-5 *1 (-486 *4))
+ (-4 *4 (-1233 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))))
+(((*1 *1) (-5 *1 (-1259))))
+(((*1 *2)
+ (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-417 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-684 (-407 (-948 (-563))))) (-5 *2 (-640 (-316 (-563))))
+ (-5 *1 (-1027)))))
(((*1 *2 *3 *4)
- (-12 (-5 *2 (-640 (-169 *4))) (-5 *1 (-155 *3 *4))
- (-4 *3 (-1233 (-169 (-563)))) (-4 *4 (-13 (-363) (-844)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-640 (-169 *4)))
- (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4)))))
+ (-12 (-5 *4 (-294 (-839 *3))) (-4 *3 (-13 (-27) (-1193) (-430 *5)))
+ (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *2
+ (-3 (-839 *3)
+ (-2 (|:| |leftHandLimit| (-3 (-839 *3) "failed"))
+ (|:| |rightHandLimit| (-3 (-839 *3) "failed")))
+ "failed"))
+ (-5 *1 (-633 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-294 *3)) (-5 *5 (-1151))
+ (-4 *3 (-13 (-27) (-1193) (-430 *6)))
+ (-4 *6 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *2 (-839 *3)) (-5 *1 (-633 *6 *3))))
((*1 *2 *3 *4)
- (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-640 (-169 *4)))
- (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1194 *3)) (-4 *3 (-1093)))))
-(((*1 *1 *1 *1) (-4 *1 (-545))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
+ (-12 (-5 *4 (-294 (-839 (-948 *5)))) (-4 *5 (-452))
+ (-5 *2
+ (-3 (-839 (-407 (-948 *5)))
+ (-2 (|:| |leftHandLimit| (-3 (-839 (-407 (-948 *5))) "failed"))
+ (|:| |rightHandLimit| (-3 (-839 (-407 (-948 *5))) "failed")))
+ "failed"))
+ (-5 *1 (-634 *5)) (-5 *3 (-407 (-948 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-294 (-407 (-948 *5)))) (-5 *3 (-407 (-948 *5)))
+ (-4 *5 (-452))
+ (-5 *2
+ (-3 (-839 *3)
+ (-2 (|:| |leftHandLimit| (-3 (-839 *3) "failed"))
+ (|:| |rightHandLimit| (-3 (-839 *3) "failed")))
+ "failed"))
+ (-5 *1 (-634 *5))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-294 (-407 (-948 *6)))) (-5 *5 (-1151))
+ (-5 *3 (-407 (-948 *6))) (-4 *6 (-452)) (-5 *2 (-839 *3))
+ (-5 *1 (-634 *6)))))
+(((*1 *2)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
(((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-767)) (-4 *2 (-1093))
(-5 *1 (-673 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1203 *3)) (-4 *3 (-970)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-1149 *3))) (-5 *1 (-1149 *3)) (-4 *3 (-1208)))))
+ (-12 (-5 *2 (-1157 3 *3)) (-4 *3 (-1045)) (-4 *1 (-1127 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1127 *2)) (-4 *2 (-1045)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151))
+ (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-563)) (-5 *2 (-1031)) (-5 *1 (-754)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1233 *2)) (-4 *2 (-1212)) (-5 *1 (-148 *2 *4 *3))
- (-4 *3 (-1233 (-407 *4))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *2 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
+ (-12 (-5 *3 (-684 *8)) (-5 *4 (-767)) (-4 *8 (-945 *5 *7 *6))
+ (-4 *5 (-13 (-307) (-147))) (-4 *6 (-13 (-846) (-611 (-1169))))
+ (-4 *7 (-789))
+ (-5 *2
+ (-640
+ (-2 (|:| |det| *8) (|:| |rows| (-640 (-563)))
+ (|:| |cols| (-640 (-563))))))
+ (-5 *1 (-920 *5 *6 *7 *8)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-640 *3)) (-4 *3 (-1233 (-563))) (-5 *1 (-486 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1257 (-684 *4))) (-4 *4 (-172))
- (-5 *2 (-1257 (-684 (-948 *4)))) (-5 *1 (-189 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-349)) (-5 *2 (-767))))
- ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-402)) (-5 *2 (-767)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-778 *2)) (-4 *2 (-1045))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)))))
+ (-12 (-5 *2 (-1171 (-407 (-563)))) (-5 *1 (-190)) (-5 *3 (-563)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1126 (-225))) (-5 *3 (-640 (-263))) (-5 *1 (-1259))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1126 (-225))) (-5 *3 (-1151)) (-5 *1 (-1259))))
+ ((*1 *1 *1) (-5 *1 (-1259))))
+(((*1 *2)
+ (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-417 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-684 (-407 (-948 (-563)))))
+ (-5 *2 (-640 (-684 (-316 (-563))))) (-5 *1 (-1027))
+ (-5 *3 (-316 (-563))))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-294 (-829 *3)))
+ (-4 *5 (-13 (-452) (-846) (-1034 (-563)) (-636 (-563))))
+ (-5 *2 (-829 *3)) (-5 *1 (-633 *5 *3))
+ (-4 *3 (-13 (-27) (-1193) (-430 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-294 (-829 (-948 *5)))) (-4 *5 (-452))
+ (-5 *2 (-829 (-407 (-948 *5)))) (-5 *1 (-634 *5))
+ (-5 *3 (-407 (-948 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-294 (-407 (-948 *5)))) (-5 *3 (-407 (-948 *5)))
+ (-4 *5 (-452)) (-5 *2 (-829 *3)) (-5 *1 (-634 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4))
+ (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
(((*1 *2 *1 *1)
(-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
(-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-553 *3)) (-4 *3 (-13 (-404) (-1193))) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-844)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1062 *4 *3)) (-4 *4 (-13 (-844) (-363)))
- (-4 *3 (-1233 *4)) (-5 *2 (-112)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-1151)) (-5 *4 (-1113)) (-5 *2 (-112)) (-5 *1 (-817)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1212)) (-4 *5 (-1233 *4)) (-4 *6 (-1233 (-407 *5)))
+ (-5 *2 (-767)) (-5 *1 (-341 *3 *4 *5 *6)) (-4 *3 (-342 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-767))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-767)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-169 (-225))) (-5 *5 (-563)) (-5 *6 (-1151))
+ (-5 *3 (-225)) (-5 *2 (-1031)) (-5 *1 (-754)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 (-640 *8))) (-5 *3 (-640 *8))
+ (-4 *8 (-945 *5 *7 *6)) (-4 *5 (-13 (-307) (-147)))
+ (-4 *6 (-13 (-846) (-611 (-1169)))) (-4 *7 (-789)) (-5 *2 (-112))
+ (-5 *1 (-920 *5 *6 *7 *8)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-640 *3)) (-4 *3 (-1233 (-563))) (-5 *1 (-486 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-988 *2)) (-4 *2 (-555)) (-5 *1 (-142 *2 *4 *3))
- (-4 *3 (-373 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-988 *2)) (-4 *2 (-555)) (-5 *1 (-503 *2 *4 *5 *3))
- (-4 *5 (-373 *2)) (-4 *3 (-373 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-684 *4)) (-4 *4 (-988 *2)) (-4 *2 (-555))
- (-5 *1 (-688 *2 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-988 *2)) (-4 *2 (-555)) (-5 *1 (-1226 *2 *4 *3))
- (-4 *3 (-1233 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-962 *3)) (-4 *3 (-963)))))
-(((*1 *2 *3 *4 *5 *5 *5 *5 *4 *6)
- (-12 (-5 *4 (-563)) (-5 *6 (-1 (-1262) (-1257 *5) (-1257 *5) (-379)))
- (-5 *3 (-1257 (-379))) (-5 *5 (-379)) (-5 *2 (-1262))
- (-5 *1 (-784)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 (-379))) (-5 *1 (-263))))
- ((*1 *1)
- (|partial| -12 (-4 *1 (-367 *2)) (-4 *2 (-555)) (-4 *2 (-172))))
- ((*1 *2 *1) (-12 (-5 *1 (-418 *2)) (-4 *2 (-555)))))
+ (-12 (-5 *3 (-1257 (-684 *4))) (-4 *4 (-172))
+ (-5 *2 (-1257 (-684 (-948 *4)))) (-5 *1 (-189 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-1157 3 *3))))
+ ((*1 *1) (-12 (-5 *1 (-1157 *2 *3)) (-14 *2 (-917)) (-4 *3 (-1045))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-1259))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-1259)))))
(((*1 *1 *2 *2) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))))
(((*1 *2)
(-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4))
(-4 *4 (-417 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-789))
- (-4 *5 (-13 (-846) (-10 -8 (-15 -2220 ((-1169) $))))) (-4 *6 (-555))
- (-5 *2 (-2 (|:| -1901 (-948 *6)) (|:| -3388 (-948 *6))))
- (-5 *1 (-728 *4 *5 *6 *3)) (-4 *3 (-945 (-407 (-948 *6)) *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-678 *4 *3)) (-4 *4 (-1093))
- (-4 *3 (-1093)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-888 *4)) (-4 *4 (-1093)) (-5 *1 (-886 *4 *3))
- (-4 *3 (-1208))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-888 *3)) (-4 *3 (-1093)))))
+ (-12 (-5 *3 (-684 (-407 (-948 (-563)))))
+ (-5 *2
+ (-640
+ (-2 (|:| |radval| (-316 (-563))) (|:| |radmult| (-563))
+ (|:| |radvect| (-640 (-684 (-316 (-563))))))))
+ (-5 *1 (-1027)))))
+(((*1 *1 *1) (-12 (-5 *1 (-605 *2)) (-4 *2 (-1093))))
+ ((*1 *1 *1) (-5 *1 (-629))))
+(((*1 *2)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
(((*1 *1 *2) (-12 (-5 *2 (-640 (-1151))) (-5 *1 (-330))))
((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-330)))))
(((*1 *2 *1) (-12 (-5 *2 (-563)) (-5 *1 (-311))))
((*1 *2 *1)
(-12 (-5 *2 (-767)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
(-4 *4 (-1045)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-748)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-363) (-844))) (-5 *1 (-181 *3 *2))
- (-4 *2 (-1233 (-169 *3))))))
-(((*1 *2 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260))))
- ((*1 *2) (-12 (-5 *2 (-917)) (-5 *1 (-1260)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
+ (-4 *6 (-789)) (-5 *2 (-640 (-640 (-563))))
+ (-5 *1 (-920 *4 *5 *6 *7)) (-5 *3 (-563)) (-4 *7 (-945 *4 *6 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 *2)) (-5 *1 (-486 *2)) (-4 *2 (-1233 (-563))))))
+(((*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-640 (-112))))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-767)) (-5 *3 (-939 *4)) (-4 *1 (-1127 *4))
+ (-4 *4 (-1045))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-767)) (-5 *4 (-939 (-225))) (-5 *2 (-1262))
+ (-5 *1 (-1259)))))
(((*1 *2 *1 *3)
(-12 (-5 *2 (-407 (-563))) (-5 *1 (-117 *4)) (-14 *4 *3)
(-5 *3 (-563))))
@@ -17127,357 +17046,391 @@
(-4 *3 (-1233 *2))))
((*1 *2 *1 *3)
(-12 (-4 *1 (-1235 *2 *3)) (-4 *3 (-788))
- (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -1693 (*2 (-1169))))
+ (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -1692 (*2 (-1169))))
(-4 *2 (-1045)))))
(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-366 *3 *4))
- (-4 *3 (-367 *4))))
- ((*1 *2) (-12 (-4 *1 (-367 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-684 (-407 (-948 (-563))))) (-5 *2 (-640 (-316 (-563))))
- (-5 *1 (-1027)))))
-(((*1 *2 *3 *4 *5 *6 *7 *7 *8)
- (-12
- (-5 *3
- (-2 (|:| |det| *12) (|:| |rows| (-640 (-563)))
- (|:| |cols| (-640 (-563)))))
- (-5 *4 (-684 *12)) (-5 *5 (-640 (-407 (-948 *9))))
- (-5 *6 (-640 (-640 *12))) (-5 *7 (-767)) (-5 *8 (-563))
- (-4 *9 (-13 (-307) (-147))) (-4 *12 (-945 *9 *11 *10))
- (-4 *10 (-13 (-846) (-611 (-1169)))) (-4 *11 (-789))
- (-5 *2
- (-2 (|:| |eqzro| (-640 *12)) (|:| |neqzro| (-640 *12))
- (|:| |wcond| (-640 (-948 *9)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1257 (-407 (-948 *9))))
- (|:| -4315 (-640 (-1257 (-407 (-948 *9)))))))))
- (-5 *1 (-920 *9 *10 *11 *12)))))
+ (-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-417 *3)))))
+(((*1 *1 *2) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846)) (-5 *2 (-1262))
- (-5 *1 (-449 *4 *5 *6 *3)) (-4 *3 (-945 *4 *5 *6)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-640 (-563))) (-5 *3 (-112)) (-5 *1 (-1103)))))
+ (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-640 (-1169))) (-4 *5 (-452))
+ (-5 *2 (-481 *4 *5)) (-5 *1 (-628 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1151)) (-5 *2 (-563)) (-5 *1 (-1190 *4))
- (-4 *4 (-1045)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-767)) (-5 *1 (-114))))
- ((*1 *2 *1) (-12 (-4 *1 (-831 *3)) (-4 *3 (-1093)) (-5 *2 (-55)))))
-(((*1 *2 *2 *2 *3 *3)
- (-12 (-5 *3 (-767)) (-4 *4 (-1045)) (-5 *1 (-1229 *4 *2))
- (-4 *2 (-1233 *4)))))
+ (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4))
+ (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1169))
+ (-5 *2 (-3 (|:| |fst| (-434)) (|:| -3785 "void"))) (-5 *1 (-1172)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-667 *3)) (-4 *3 (-846))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-846))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-815 *3)) (-4 *3 (-846)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-640 (-640 *6))) (-4 *6 (-945 *3 *5 *4))
+ (-4 *3 (-13 (-307) (-147))) (-4 *4 (-13 (-846) (-611 (-1169))))
+ (-4 *5 (-789)) (-5 *1 (-920 *3 *4 *5 *6)))))
(((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-517))))
((*1 *2 *1)
(-12 (-4 *2 (-13 (-1093) (-34))) (-5 *1 (-1133 *3 *2))
(-4 *3 (-13 (-1093) (-34)))))
((*1 *2 *1) (-12 (-5 *2 (-1128)) (-5 *1 (-1268)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-379) (-379))) (-5 *4 (-379))
- (-5 *2
- (-2 (|:| -2619 *4) (|:| -4076 *4) (|:| |totalpts| (-563))
- (|:| |success| (-112))))
- (-5 *1 (-785)) (-5 *5 (-563)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-112))
- (-5 *2 (-1031)) (-5 *1 (-741)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-316 (-225))) (-5 *2 (-316 (-379))) (-5 *1 (-305)))))
+(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-846)) (-5 *1 (-484 *3)))))
(((*1 *2 *3)
- (-12 (-4 *3 (-1233 *2)) (-4 *2 (-1233 *4)) (-5 *1 (-981 *4 *2 *3 *5))
- (-4 *4 (-349)) (-4 *5 (-720 *2 *3)))))
+ (-12 (-5 *3 (-1169)) (-5 *2 (-686 (-187))) (-5 *1 (-187)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-1258))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-767)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-905)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-418 (-1165 *7)))
- (-5 *1 (-902 *4 *5 *6 *7)) (-5 *3 (-1165 *7))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-905)) (-4 *5 (-1233 *4)) (-5 *2 (-418 (-1165 *5)))
- (-5 *1 (-903 *4 *5)) (-5 *3 (-1165 *5)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1151)) (-5 *4 (-563)) (-5 *5 (-684 (-225)))
- (-5 *2 (-1031)) (-5 *1 (-753)))))
+ (-12 (-4 *4 (-555)) (-5 *2 (-640 *3)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-417 *4)))))
+(((*1 *2 *1) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-640 (-247 *4 *5))) (-5 *2 (-247 *4 *5))
+ (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *1 (-628 *4 *5)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1212)) (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4)))
+ (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)))))
(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-888 *4)) (-4 *4 (-1093)) (-4 *2 (-1093))
- (-5 *1 (-885 *4 *2)))))
-(((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1093)) (-5 *1 (-222 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-640 *3)) (-4 *3 (-1208)) (-4 *1 (-254 *3))))
- ((*1 *1) (-12 (-4 *1 (-254 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-452))) (-5 *1 (-1199 *3 *2))
- (-4 *2 (-13 (-430 *3) (-1193))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
+ (-12 (-5 *2 (-640 (-1169))) (-5 *1 (-1172)) (-5 *3 (-1169)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-386 *2)) (-4 *2 (-1093))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-640
+ (-2 (|:| -2521 (-767))
+ (|:| |eqns|
+ (-640
+ (-2 (|:| |det| *7) (|:| |rows| (-640 (-563)))
+ (|:| |cols| (-640 (-563))))))
+ (|:| |fgb| (-640 *7)))))
+ (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147)))
+ (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-767))
+ (-5 *1 (-920 *4 *5 *6 *7)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-640 (-506))) (-5 *2 (-506)) (-5 *1 (-483)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1208)) (-5 *1 (-182 *3 *2)) (-4 *2 (-669 *3)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-917)) (-5 *2 (-1262)) (-5 *1 (-1258))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-917)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-555)) (-5 *2 (-640 *3)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-417 *4)))))
+(((*1 *2 *1 *2) (-12 (-5 *1 (-1022 *2)) (-4 *2 (-1208)))))
+(((*1 *2 *3 *2 *2)
+ (-12 (-5 *2 (-640 (-481 *4 *5))) (-5 *3 (-860 *4))
+ (-14 *4 (-640 (-1169))) (-4 *5 (-452)) (-5 *1 (-628 *4 *5)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-407 (-948 *3))) (-5 *1 (-453 *3 *4 *5 *6))
- (-4 *3 (-555)) (-4 *3 (-172)) (-14 *4 (-917))
- (-14 *5 (-640 (-1169))) (-14 *6 (-1257 (-684 *3))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-437)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-901 (-563))) (-5 *4 (-563)) (-5 *2 (-684 *4))
- (-5 *1 (-1024 *5)) (-4 *5 (-1045))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-563))) (-5 *2 (-684 (-563))) (-5 *1 (-1024 *4))
- (-4 *4 (-1045))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-901 (-563)))) (-5 *4 (-563))
- (-5 *2 (-640 (-684 *4))) (-5 *1 (-1024 *5)) (-4 *5 (-1045))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-640 (-563)))) (-5 *2 (-640 (-684 (-563))))
- (-5 *1 (-1024 *4)) (-4 *4 (-1045)))))
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3 *1) (-12 (-5 *3 (-1169)) (-5 *2 (-1173)) (-5 *1 (-1172)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-386 *2)) (-4 *2 (-1093))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-815 *2)) (-4 *2 (-846)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-905)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *7 (-945 *4 *5 *6)) (-5 *2 (-418 (-1165 *7)))
- (-5 *1 (-902 *4 *5 *6 *7)) (-5 *3 (-1165 *7))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-905)) (-4 *5 (-1233 *4)) (-5 *2 (-418 (-1165 *5)))
- (-5 *1 (-903 *4 *5)) (-5 *3 (-1165 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-584 *3)) (-4 *3 (-363)))))
+ (-12
+ (-5 *3
+ (-640
+ (-2 (|:| -2521 (-767))
+ (|:| |eqns|
+ (-640
+ (-2 (|:| |det| *7) (|:| |rows| (-640 (-563)))
+ (|:| |cols| (-640 (-563))))))
+ (|:| |fgb| (-640 *7)))))
+ (-4 *7 (-945 *4 *6 *5)) (-4 *4 (-13 (-307) (-147)))
+ (-4 *5 (-13 (-846) (-611 (-1169)))) (-4 *6 (-789)) (-5 *2 (-767))
+ (-5 *1 (-920 *4 *5 *6 *7)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-640 (-563))) (-5 *1 (-247 *3 *4))
+ (-14 *3 (-640 (-1169))) (-4 *4 (-1045))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-640 (-563))) (-14 *3 (-640 (-1169)))
+ (-5 *1 (-454 *3 *4 *5)) (-4 *4 (-1045))
+ (-4 *5 (-238 (-3610 *3) (-767)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-640 (-563))) (-5 *1 (-481 *3 *4))
+ (-14 *3 (-640 (-1169))) (-4 *4 (-1045)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-684 *1)) (-4 *1 (-349)) (-5 *2 (-1257 *1))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-684 *1)) (-4 *1 (-145)) (-4 *1 (-905))
- (-5 *2 (-1257 *1)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-829 *3)) (-4 *3 (-1093))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1093)))))
+ (-12 (-4 *4 (-1208)) (-5 *2 (-767)) (-5 *1 (-182 *4 *3))
+ (-4 *3 (-669 *4)))))
+(((*1 *2 *1 *3 *3 *4 *4)
+ (-12 (-5 *3 (-767)) (-5 *4 (-917)) (-5 *2 (-1262)) (-5 *1 (-1258))))
+ ((*1 *2 *1 *3 *3 *4 *4)
+ (-12 (-5 *3 (-767)) (-5 *4 (-917)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1208)))))
(((*1 *2)
(-12 (-4 *3 (-555)) (-5 *2 (-640 *4)) (-5 *1 (-43 *3 *4))
(-4 *4 (-417 *3)))))
-(((*1 *2 *3 *4 *5 *6 *2 *7 *8)
- (|partial| -12 (-5 *2 (-640 (-1165 *11))) (-5 *3 (-1165 *11))
- (-5 *4 (-640 *10)) (-5 *5 (-640 *8)) (-5 *6 (-640 (-767)))
- (-5 *7 (-1257 (-640 (-1165 *8)))) (-4 *10 (-846))
- (-4 *8 (-307)) (-4 *11 (-945 *8 *9 *10)) (-4 *9 (-789))
- (-5 *1 (-703 *9 *10 *8 *11)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1169))
- (-4 *5 (-13 (-307) (-846) (-147) (-1034 (-563)) (-636 (-563))))
- (-5 *2 (-584 *3)) (-5 *1 (-426 *5 *3))
- (-4 *3 (-13 (-1193) (-29 *5))))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-302)) (-5 *3 (-1169)) (-5 *2 (-112))))
- ((*1 *2 *1 *1) (-12 (-4 *1 (-302)) (-5 *2 (-112)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1169)) (-5 *2 (-379)) (-5 *1 (-1057)))))
-(((*1 *1) (-12 (-5 *1 (-640 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-1031)) (-5 *3 (-1169)) (-5 *1 (-267)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1045)) (-4 *4 (-1093)) (-5 *2 (-640 *1))
- (-4 *1 (-382 *3 *4))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4))
+ (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-5 *2 (-640 (-731 *3 *4))) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045))
- (-4 *4 (-722))))
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-640 *4)) (-4 *4 (-1045)) (-5 *2 (-1257 *4))
+ (-5 *1 (-1170 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-917)) (-5 *2 (-1257 *3)) (-5 *1 (-1170 *3))
+ (-4 *3 (-1045)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |lm| (-386 *3)) (|:| |mm| (-386 *3)) (|:| |rm| (-386 *3))))
+ (-5 *1 (-386 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |lm| (-815 *3)) (|:| |mm| (-815 *3)) (|:| |rm| (-815 *3))))
+ (-5 *1 (-815 *3)) (-4 *3 (-846)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
+ (-4 *6 (-789)) (-5 *2 (-640 *3)) (-5 *1 (-920 *4 *5 *6 *3))
+ (-4 *3 (-945 *4 *6 *5)))))
+(((*1 *2 *3 *3 *3 *3)
+ (-12 (-5 *3 (-563)) (-5 *2 (-112)) (-5 *1 (-480)))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-1208)) (-5 *1 (-182 *3 *2))
+ (-4 *2 (-669 *3)))))
+(((*1 *2 *3 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225))
+ (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
+ (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
+ (-5 *3 (-640 (-263))) (-5 *1 (-261))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225))
+ (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
+ (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
+ (-5 *1 (-263))))
+ ((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259))))
+ ((*1 *2 *1 *3 *3 *4 *4 *4)
+ (-12 (-5 *3 (-563)) (-5 *4 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259))))
+ ((*1 *2 *1 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225))
+ (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
+ (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
+ (-5 *2 (-1262)) (-5 *1 (-1259))))
((*1 *2 *1)
- (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-640 *1))
- (-4 *1 (-945 *3 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-869 (-962 *3) (-962 *3))) (-5 *1 (-962 *3))
- (-4 *3 (-963)))))
+ (-12
+ (-5 *2
+ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -4165 (-225))
+ (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
+ (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
+ (-5 *1 (-1259))))
+ ((*1 *2 *1 *3 *3 *3 *3 *3)
+ (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *2 *1 *1)
+ (|partial| -12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045))
+ (-4 *4 (-789)) (-4 *5 (-846)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1151)) (-5 *1 (-706)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212))
+ (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))))))
+(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1169)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-361 *3)) (-4 *3 (-1093))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-5 *2 (-767)) (-5 *1 (-386 *4)) (-4 *4 (-1093))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-4 *2 (-23)) (-5 *1 (-644 *4 *2 *5))
+ (-4 *4 (-1093)) (-14 *5 *2)))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-5 *2 (-767)) (-5 *1 (-815 *4)) (-4 *4 (-846)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-948 *5)) (-4 *5 (-1045)) (-5 *2 (-247 *4 *5))
- (-5 *1 (-940 *4 *5)) (-14 *4 (-640 (-1169))))))
-(((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-901 *3)) (-4 *3 (-1093)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *2 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-1182 *2)) (-4 *2 (-363)))))
-(((*1 *2) (-12 (-5 *2 (-379)) (-5 *1 (-1036)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-757))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-529)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-593 *2)) (-4 *2 (-38 (-407 (-563)))) (-4 *2 (-1045)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1127 *3)) (-4 *3 (-1045)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1149 *3)) (-5 *1 (-174 *3)) (-4 *3 (-307)))))
+ (-12
+ (-5 *3
+ (-2 (|:| -1957 (-684 (-407 (-948 *4))))
+ (|:| |vec| (-640 (-407 (-948 *4)))) (|:| -2521 (-767))
+ (|:| |rows| (-640 (-563))) (|:| |cols| (-640 (-563)))))
+ (-4 *4 (-13 (-307) (-147))) (-4 *5 (-13 (-846) (-611 (-1169))))
+ (-4 *6 (-789))
+ (-5 *2
+ (-2 (|:| |partsol| (-1257 (-407 (-948 *4))))
+ (|:| -4013 (-640 (-1257 (-407 (-948 *4)))))))
+ (-5 *1 (-920 *4 *5 *6 *7)) (-4 *7 (-945 *4 *6 *5)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379)))
+ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379)))
(|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168))))
(-5 *1 (-1168)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-563)) (-5 *4 (-684 (-225))) (-5 *2 (-1031))
- (-5 *1 (-743)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-13 (-844) (-363))) (-5 *1 (-1055 *2 *3))
- (-4 *3 (-1233 *2)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *3 (-640 (-263))) (-5 *1 (-261))))
- ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-263)))))
-(((*1 *2 *3 *4 *4 *5 *6)
- (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-870))
- (-5 *5 (-917)) (-5 *6 (-640 (-263))) (-5 *2 (-468)) (-5 *1 (-1261))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *2 (-468))
- (-5 *1 (-1261))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-640 (-939 (-225))))) (-5 *4 (-640 (-263)))
- (-5 *2 (-468)) (-5 *1 (-1261)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-767)) (-4 *1 (-1233 *3)) (-4 *3 (-1045))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-917)) (-4 *1 (-1235 *3 *4)) (-4 *3 (-1045))
- (-4 *4 (-788))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-407 (-563))) (-4 *1 (-1238 *3)) (-4 *3 (-1045)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-1169))) (-5 *2 (-1262)) (-5 *1 (-1210))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-640 (-1169))) (-5 *2 (-1262)) (-5 *1 (-1210)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-563)) (-5 *1 (-480)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-640 (-481 *4 *5))) (-14 *4 (-640 (-1169)))
- (-4 *5 (-452))
+ (-12 (-4 *4 (-13 (-363) (-844)))
+ (-5 *2 (-2 (|:| |start| *3) (|:| -1337 (-418 *3))))
+ (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *5 (-846)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1151)) (-5 *1 (-706)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212))
+ (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1169)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-4 *1 (-323 *2 *4)) (-4 *4 (-131))
+ (-4 *2 (-1093))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-361 *2)) (-4 *2 (-1093))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-386 *2)) (-4 *2 (-1093))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-563)) (-4 *2 (-1093)) (-5 *1 (-644 *2 *4 *5))
+ (-4 *4 (-23)) (-14 *5 *4)))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-563)) (-5 *1 (-815 *2)) (-4 *2 (-846)))))
+(((*1 *2 *2 *3)
+ (-12
(-5 *2
- (-2 (|:| |gblist| (-640 (-247 *4 *5)))
- (|:| |gvlist| (-640 (-563)))))
- (-5 *1 (-628 *4 *5)))))
-(((*1 *1 *1) (-5 *1 (-1057))))
-(((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-640 *1)) (-4 *1 (-1127 *3)) (-4 *3 (-1045))))
- ((*1 *2 *2 *1)
- (|partial| -12 (-5 *2 (-407 *1)) (-4 *1 (-1233 *3)) (-4 *3 (-1045))
- (-4 *3 (-555))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-1233 *2)) (-4 *2 (-1045)) (-4 *2 (-555)))))
+ (-2 (|:| |partsol| (-1257 (-407 (-948 *4))))
+ (|:| -4013 (-640 (-1257 (-407 (-948 *4)))))))
+ (-5 *3 (-640 *7)) (-4 *4 (-13 (-307) (-147)))
+ (-4 *7 (-945 *4 *6 *5)) (-4 *5 (-13 (-846) (-611 (-1169))))
+ (-4 *6 (-789)) (-5 *1 (-920 *4 *5 *6 *7)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379)))
+ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379)))
(|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168))))
(-5 *1 (-1168)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-820)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
- (-4 *2 (-13 (-430 *3) (-998))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *1 *1) (-5 *1 (-225)))
- ((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-431 *3 *2))
- (-4 *2 (-430 *3))))
- ((*1 *1 *1) (-4 *1 (-1132))) ((*1 *1 *1 *1) (-4 *1 (-1132))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-563)) (-5 *1 (-418 *2)) (-4 *2 (-555)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-640 (-860 *5))) (-14 *5 (-640 (-1169))) (-4 *6 (-452))
+ (-5 *2
+ (-2 (|:| |dpolys| (-640 (-247 *5 *6)))
+ (|:| |coords| (-640 (-563)))))
+ (-5 *1 (-471 *5 *6 *7)) (-5 *3 (-640 (-247 *5 *6))) (-4 *7 (-452)))))
(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-1208)) (-5 *1 (-182 *3 *2))
- (-4 *2 (-669 *3)))))
+ (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3))
+ (-4 *3 (-1233 (-169 *2))))))
(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-468)) (-5 *4 (-917)) (-5 *2 (-1262)) (-5 *1 (-1258)))))
+ (-12 (-5 *3 (-917)) (-5 *4 (-870)) (-5 *2 (-1262)) (-5 *1 (-1258))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-917)) (-5 *4 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1258))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *2 (-846))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)))))
+(((*1 *2 *3) (-12 (-5 *3 (-858)) (-5 *2 (-1151)) (-5 *1 (-706)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1257 *1)) (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212))
+ (-4 *4 (-1233 *3)) (-4 *5 (-1233 (-407 *4))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-1169)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-326 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-788))
- (-5 *2 (-640 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-382 *3 *4)) (-4 *3 (-1045)) (-4 *4 (-1093))
- (-5 *2 (-640 *3))))
+ (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3372 (-563)))))
+ (-5 *1 (-361 *3)) (-4 *3 (-1093))))
((*1 *2 *1)
- (-12 (-5 *2 (-1149 *3)) (-5 *1 (-594 *3)) (-4 *3 (-1045))))
+ (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3372 (-767)))))
+ (-5 *1 (-386 *3)) (-4 *3 (-1093))))
((*1 *2 *1)
- (-12 (-5 *2 (-640 *3)) (-5 *1 (-731 *3 *4)) (-4 *3 (-1045))
- (-4 *4 (-722))))
- ((*1 *2 *1) (-12 (-4 *1 (-848 *3)) (-4 *3 (-1045)) (-5 *2 (-640 *3))))
+ (-12 (-5 *2 (-640 (-2 (|:| -2173 *3) (|:| -3311 (-563)))))
+ (-5 *1 (-418 *3)) (-4 *3 (-555))))
((*1 *2 *1)
- (-12 (-4 *1 (-1248 *3)) (-4 *3 (-1045)) (-5 *2 (-1149 *3)))))
+ (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3372 (-767)))))
+ (-5 *1 (-815 *3)) (-4 *3 (-846)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379)))
+ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379)))
(|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168))))
(-5 *1 (-1168)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1169)) (-5 *1 (-584 *2)) (-4 *2 (-1034 *3))
- (-4 *2 (-363))))
- ((*1 *1 *2 *2) (-12 (-5 *1 (-584 *2)) (-4 *2 (-363))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1169)) (-4 *4 (-13 (-846) (-555))) (-5 *1 (-627 *4 *2))
- (-4 *2 (-13 (-430 *4) (-998) (-1193)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1085 *2)) (-4 *2 (-13 (-430 *4) (-998) (-1193)))
- (-4 *4 (-13 (-846) (-555))) (-5 *1 (-627 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-955)) (-5 *2 (-1169))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1085 *1)) (-4 *1 (-955)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-452)) (-4 *5 (-789)) (-4 *6 (-846))
- (-4 *3 (-1059 *4 *5 *6)) (-5 *2 (-3 (-112) (-640 *1)))
- (-4 *1 (-1065 *4 *5 *6 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-169 *4)) (-5 *1 (-181 *4 *3))
+ (-4 *4 (-13 (-363) (-844))) (-4 *3 (-1233 *2)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
(((*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1208)))))
-(((*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-157))))
- ((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *1) (-12 (-5 *2 (-640 (-640 (-225)))) (-5 *1 (-922)))))
-(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-1169)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-452)) (-4 *6 (-789)) (-4 *7 (-846))
- (-4 *3 (-1059 *5 *6 *7))
- (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4))))
- (-5 *1 (-1101 *5 *6 *7 *3 *4)) (-4 *4 (-1065 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1262)) (-5 *1 (-818)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-555))))
- ((*1 *1 *1 *2)
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *2 (-846))))
+ ((*1 *1 *1 *1)
(-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-555)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-767)) (-5 *1 (-114))))
- ((*1 *2 *1) (-12 (-5 *2 (-767)) (-5 *1 (-114))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-253 *4 *3 *5 *6)) (-4 *4 (-1045)) (-4 *3 (-846))
- (-4 *5 (-266 *3)) (-4 *6 (-789)) (-5 *2 (-767))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-253 *3 *4 *5 *6)) (-4 *3 (-1045)) (-4 *4 (-846))
- (-4 *5 (-266 *4)) (-4 *6 (-789)) (-5 *2 (-767))))
- ((*1 *2 *1) (-12 (-4 *1 (-266 *3)) (-4 *3 (-846)) (-5 *2 (-767)))))
+ (-4 *4 (-846)))))
+(((*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10)
+ (|partial| -12 (-5 *2 (-640 (-1165 *13))) (-5 *3 (-1165 *13))
+ (-5 *4 (-640 *12)) (-5 *5 (-640 *10)) (-5 *6 (-640 *13))
+ (-5 *7 (-640 (-640 (-2 (|:| -1646 (-767)) (|:| |pcoef| *13)))))
+ (-5 *8 (-640 (-767))) (-5 *9 (-1257 (-640 (-1165 *10))))
+ (-4 *12 (-846)) (-4 *10 (-307)) (-4 *13 (-945 *10 *11 *12))
+ (-4 *11 (-789)) (-5 *1 (-703 *11 *12 *10 *13)))))
+(((*1 *2)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-1169)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-640 *4)) (-4 *4 (-363)) (-5 *2 (-1257 *4))
+ (-5 *1 (-810 *4 *3)) (-4 *3 (-651 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-555))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1623 *4)))
+ (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *1 *2 *2) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-316 (-563))) (|:| -3191 (-316 (-379)))
+ (-3 (|:| I (-316 (-563))) (|:| -3195 (-316 (-379)))
(|:| CF (-316 (-169 (-379)))) (|:| |switch| (-1168))))
(-5 *1 (-1168)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3)
- (-12 (-5 *3 (-563)) (-5 *5 (-684 (-225))) (-5 *4 (-225))
- (-5 *2 (-1031)) (-5 *1 (-748)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1096 *3 *4 *5 *6 *7)) (-4 *3 (-1093)) (-4 *4 (-1093))
- (-4 *5 (-1093)) (-4 *6 (-1093)) (-4 *7 (-1093)) (-5 *2 (-112)))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4408)) (-4 *1 (-1245 *2)) (-4 *2 (-1208)))))
-(((*1 *2 *3 *3 *4 *5 *5)
- (-12 (-5 *5 (-112)) (-4 *6 (-452)) (-4 *7 (-789)) (-4 *8 (-846))
- (-4 *3 (-1059 *6 *7 *8))
- (-5 *2 (-640 (-2 (|:| |val| *3) (|:| -2059 *4))))
- (-5 *1 (-1066 *6 *7 *8 *3 *4)) (-4 *4 (-1065 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-640 (-2 (|:| |val| (-640 *8)) (|:| -2059 *9))))
- (-5 *5 (-112)) (-4 *8 (-1059 *6 *7 *4)) (-4 *9 (-1065 *6 *7 *4 *8))
- (-4 *6 (-452)) (-4 *7 (-789)) (-4 *4 (-846))
- (-5 *2 (-640 (-2 (|:| |val| *8) (|:| -2059 *9))))
- (-5 *1 (-1066 *6 *7 *4 *8 *9)))))
-(((*1 *1 *1) (-5 *1 (-1057))))
+(((*1 *2 *3 *2)
+ (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3))
+ (-4 *3 (-1233 (-169 *2)))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-363) (-844))) (-5 *1 (-181 *2 *3))
+ (-4 *3 (-1233 (-169 *2))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *2 (-846))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)))))
+(((*1 *2 *3 *4 *5 *6 *7 *8 *9)
+ (|partial| -12 (-5 *4 (-640 *11)) (-5 *5 (-640 (-1165 *9)))
+ (-5 *6 (-640 *9)) (-5 *7 (-640 *12)) (-5 *8 (-640 (-767)))
+ (-4 *11 (-846)) (-4 *9 (-307)) (-4 *12 (-945 *9 *10 *11))
+ (-4 *10 (-789)) (-5 *2 (-640 (-1165 *12)))
+ (-5 *1 (-703 *10 *11 *9 *12)) (-5 *3 (-1165 *12)))))
(((*1 *2) (-12 (-5 *2 (-1262)) (-5 *1 (-391)))))
-(((*1 *2 *2 *2)
- (-12
- (-5 *2
- (-640
- (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-767)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *4 (-789)) (-4 *6 (-945 *3 *4 *5)) (-4 *3 (-452)) (-4 *5 (-846))
- (-5 *1 (-449 *3 *4 *5 *6)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-767)) (-4 *4 (-349)) (-5 *1 (-216 *4 *2))
- (-4 *2 (-1233 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-939 *2)) (-5 *1 (-978 *2)) (-4 *2 (-1045)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-1 (-225) (-225) (-225)))
- (-5 *4 (-1 (-225) (-225) (-225) (-225)))
- (-5 *2 (-1 (-939 (-225)) (-225) (-225))) (-5 *1 (-692)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1224 (-563))) (-4 *1 (-282 *3)) (-4 *3 (-1208))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-563)) (-4 *1 (-282 *3)) (-4 *3 (-1208)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6)
- (-12 (-5 *3 (-684 (-225))) (-5 *4 (-563)) (-5 *5 (-225))
- (-5 *6 (-3 (|:| |fn| (-388)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1031))
- (-5 *1 (-745)))))
+(((*1 *2)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-640 (-858))) (-5 *1 (-1169)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-407 (-948 *4))) (-4 *4 (-307))
- (-5 *2 (-407 (-418 (-948 *4)))) (-5 *1 (-1038 *4)))))
+ (-12 (-5 *3 (-640 *4)) (-4 *4 (-363)) (-5 *2 (-684 *4))
+ (-5 *1 (-810 *4 *5)) (-4 *5 (-651 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-640 *5)) (-5 *4 (-767)) (-4 *5 (-363))
+ (-5 *2 (-684 *5)) (-5 *1 (-810 *5 *6)) (-4 *6 (-651 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -3551 *3)))
+ (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-553 *2)) (-4 *2 (-13 (-404) (-1193))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-363) (-844))) (-5 *1 (-181 *3 *2))
+ (-4 *2 (-1233 (-169 *3))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1059 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
+ (-4 *2 (-846))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1059 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
+ (-4 *4 (-846)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-846) (-555))) (-5 *1 (-276 *3 *2))
@@ -17494,28 +17447,54 @@
((*1 *2 *2)
(-12 (-5 *2 (-1149 *3)) (-4 *3 (-38 (-407 (-563))))
(-5 *1 (-1155 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-767)) (-5 *2 (-112)) (-5 *1 (-585 *3)) (-4 *3 (-545)))))
-(((*1 *1) (-5 *1 (-437))))
+(((*1 *2 *3 *4 *5 *6 *2 *7 *8)
+ (|partial| -12 (-5 *2 (-640 (-1165 *11))) (-5 *3 (-1165 *11))
+ (-5 *4 (-640 *10)) (-5 *5 (-640 *8)) (-5 *6 (-640 (-767)))
+ (-5 *7 (-1257 (-640 (-1165 *8)))) (-4 *10 (-846))
+ (-4 *8 (-307)) (-4 *11 (-945 *8 *9 *10)) (-4 *9 (-789))
+ (-5 *1 (-703 *9 *10 *8 *11)))))
(((*1 *2 *3) (-12 (-5 *3 (-388)) (-5 *2 (-1262)) (-5 *1 (-391))))
((*1 *2 *3) (-12 (-5 *3 (-1151)) (-5 *2 (-1262)) (-5 *1 (-391)))))
-(((*1 *2 *1) (-12 (-4 *1 (-793 *2)) (-4 *2 (-172))))
- ((*1 *2 *1) (-12 (-4 *1 (-993 *2)) (-4 *2 (-172)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-640 (-1 (-112) *8))) (-4 *8 (-1059 *5 *6 *7))
- (-4 *5 (-555)) (-4 *6 (-789)) (-4 *7 (-846))
- (-5 *2 (-2 (|:| |goodPols| (-640 *8)) (|:| |badPols| (-640 *8))))
- (-5 *1 (-973 *5 *6 *7 *8)) (-5 *4 (-640 *8)))))
+(((*1 *2)
+ (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
+ (-4 *5 (-1233 (-407 *4))) (-5 *2 (-684 (-407 *4))))))
+(((*1 *2 *1 *3 *3 *4)
+ (-12 (-5 *3 (-1 (-858) (-858) (-858))) (-5 *4 (-563)) (-5 *2 (-858))
+ (-5 *1 (-644 *5 *6 *7)) (-4 *5 (-1093)) (-4 *6 (-23)) (-14 *7 *6)))
+ ((*1 *2 *1 *2)
+ (-12 (-5 *2 (-858)) (-5 *1 (-850 *3 *4 *5)) (-4 *3 (-1045))
+ (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-858))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1151)) (-5 *1 (-858))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1169)) (-5 *1 (-858))))
+ ((*1 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-858))))
+ ((*1 *2 *1 *2)
+ (-12 (-5 *2 (-858)) (-5 *1 (-1165 *3)) (-4 *3 (-1045)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-563)) (-4 *5 (-349)) (-5 *2 (-418 (-1165 (-1165 *5))))
- (-5 *1 (-1206 *5)) (-5 *3 (-1165 (-1165 *5))))))
-(((*1 *1) (-5 *1 (-1057))))
+ (-12 (-5 *3 (-640 (-948 *5))) (-5 *4 (-640 (-1169))) (-4 *5 (-555))
+ (-5 *2 (-640 (-640 (-294 (-407 (-948 *5)))))) (-5 *1 (-766 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-640 (-948 *4))) (-4 *4 (-555))
+ (-5 *2 (-640 (-640 (-294 (-407 (-948 *4)))))) (-5 *1 (-766 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-684 *7))
+ (-5 *5
+ (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -4013 (-640 *6)))
+ *7 *6))
+ (-4 *6 (-363)) (-4 *7 (-651 *6))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1257 *6) "failed"))
+ (|:| -4013 (-640 (-1257 *6)))))
+ (-5 *1 (-809 *6 *7)) (-5 *4 (-1257 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-555)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3551 *3)))
+ (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
(((*1 *2 *1)
(-12
(-5 *2
(-640
(-2 (|:| |var| (-1169)) (|:| |fn| (-316 (-225)))
- (|:| -2516 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
+ (|:| -4166 (-1087 (-839 (-225)))) (|:| |abserr| (-225))
(|:| |relerr| (-225)))))
(-5 *1 (-558))))
((*1 *2 *1)
@@ -17530,840 +17509,861 @@
(|:| |intvals| (-640 (-225))) (|:| |g| (-316 (-225)))
(|:| |abserr| (-225)) (|:| |relerr| (-225)))))
(-5 *1 (-799)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
-(((*1 *2) (-12 (-5 *2 (-1126 (-225))) (-5 *1 (-1191)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-326 *2 *3)) (-4 *2 (-1045)) (-4 *3 (-788))
- (-4 *2 (-452))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-342 *2 *3 *4)) (-4 *2 (-1212)) (-4 *3 (-1233 *2))
- (-4 *4 (-1233 (-407 *3)))))
- ((*1 *1 *1) (-12 (-4 *1 (-848 *2)) (-4 *2 (-1045)) (-4 *2 (-452))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-945 *3 *4 *2)) (-4 *3 (-1045)) (-4 *4 (-789))
- (-4 *2 (-846)) (-4 *3 (-452))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-945 *2 *3 *4)) (-4 *2 (-1045)) (-4 *3 (-789))
- (-4 *4 (-846)) (-4 *2 (-452))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-307)) (-4 *3 (-555)) (-5 *1 (-1156 *3 *2))
- (-4 *2 (-1233 *3)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-563)) (-5 *1 (-418 *3)) (-4 *3 (-555)))))
-(((*1 *1 *1 *1 *1 *2)
- (-12 (-5 *2 (-767)) (-4 *1 (-1059 *3 *4 *5)) (-4 *3 (-1045))
- (-4 *4 (-789)) (-4 *5 (-846)) (-4 *3 (-555)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-917)) (-5 *4 (-418 *6)) (-4 *6 (-1233 *5))
- (-4 *5 (-1045)) (-5 *2 (-640 *6)) (-5 *1 (-444 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-640 *5) *6))
- (-4 *5 (-13 (-363) (-147) (-1034 (-407 (-563))))) (-4 *6 (-1233 *5))
- (-5 *2 (-640 (-2 (|:| -2669 *5) (|:| -1420 *3))))
- (-5 *1 (-805 *5 *6 *3 *7)) (-4 *3 (-651 *6))
- (-4 *7 (-651 (-407 *6))))))
-(((*1 *2 *2) (-12 (-5 *2 (-388)) (-5 *1 (-436))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-388)) (-5 *1 (-436)))))
(((*1 *2 *1 *3)
- (-12 (-4 *1 (-342 *4 *3 *5)) (-4 *4 (-1212)) (-4 *3 (-1233 *4))
- (-4 *5 (-1233 (-407 *3))) (-5 *2 (-112))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-553 *3)) (-4 *3 (-13 (-404) (-1193))) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-112)) (-4 *4 (-13 (-363) (-844))) (-5 *2 (-418 *3))
+ (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *4 (-13 (-363) (-844))) (-5 *2 (-418 *3))
+ (-5 *1 (-181 *4 *3)) (-4 *3 (-1233 (-169 *4))))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-563)) (-5 *2 (-1262)) (-5 *1 (-1259))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846))
+ (-5 *2 (-2 (|:| -2310 *1) (|:| |gap| (-767)) (|:| -3443 *1)))
+ (-4 *1 (-1059 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *2 (-2 (|:| -2310 *1) (|:| |gap| (-767)) (|:| -3443 *1)))
+ (-4 *1 (-1059 *3 *4 *5)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1169)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-697 *3 *5 *6 *7))
+ (-4 *3 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208))
+ (-4 *7 (-1208))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1169)) (-5 *2 (-1 *6 *5)) (-5 *1 (-702 *3 *5 *6))
+ (-4 *3 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-1208)) (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-4 *1 (-342 *3 *4 *5)) (-4 *3 (-1212)) (-4 *4 (-1233 *3))
- (-4 *5 (-1233 (-407 *4))) (-5 *2 (-112)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-555)) (-4 *3 (-1045))
- (-5 *2 (-2 (|:| -3490 *1) (|:| -1972 *1))) (-4 *1 (-848 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-555)) (-4 *5 (-1045))
- (-5 *2 (-2 (|:| -3490 *3) (|:| -1972 *3))) (-5 *1 (-849 *5 *3))
- (-4 *3 (-848 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-640 (-2 (|:| |gen| *3) (|:| -3368 *4))))
- (-5 *1 (-644 *3 *4 *5)) (-4 *3 (-1093)) (-4 *4 (-23)) (-14 *5 *4))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-14 *3 (-917))
+ (-4 *4 (-1045)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-363))
+ (-5 *2
+ (-2 (|:| A (-684 *5))
+ (|:| |eqs|
+ (-640
+ (-2 (|:| C (-684 *5)) (|:| |g| (-1257 *5)) (|:| -1420 *6)
+ (|:| |rh| *5))))))
+ (-5 *1 (-809 *5 *6)) (-5 *3 (-684 *5)) (-5 *4 (-1257 *5))
+ (-4 *6 (-651 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-363)) (-4 *6 (-651 *5))
+ (-5 *2 (-2 (|:| -1957 (-684 *6)) (|:| |vec| (-1257 *5))))
+ (-5 *1 (-809 *5 *6)) (-5 *3 (-684 *6)) (-5 *4 (-1257 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-555))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3551 *3)))
+ (-5 *1 (-965 *4 *3)) (-4 *3 (-1233 *4)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-563)) (-5 *2 (-112)) (-5 *1 (-552)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-363) (-1034 (-407 *2)))) (-5 *2 (-563))
+ (-5 *1 (-115 *4 *3)) (-4 *3 (-1233 *4)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-1149 *3)) (-4 *3 (-1045)) (-5 *1 (-1153 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1249 *2 *3 *4)) (-4 *2 (-1045)) (-14 *3 (-1169))
- (-14 *4 *2))))
-(((*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 (-684 (-225))) (-5 *6 (-112)) (-5 *7 (-684 (-563)))
- (-5 *8 (-3 (|:| |fn| (-388)) (|:| |fp| (-65 QPHESS))))
- (-5 *3 (-563)) (-5 *4 (-225)) (-5 *2 (-1031)) (-5 *1 (-749)))))
-((-1290 . 735440) (-1291 . 735267) (-1292 . 735124) (-1293 . 734838)
- (-1294 . 734455) (-1295 . 734350) (-1296 . 734096) (-1297 . 733959)
- (-1298 . 733822) (-1299 . 733749) (-1300 . 733154) (-1301 . 733096)
- (-1302 . 733024) (-1303 . 732429) (-1304 . 732400) (-1305 . 732260)
- (-1306 . 732013) (-1307 . 731905) (-1308 . 731770) (-1309 . 731742)
- (-1310 . 731652) (-1311 . 731078) (-1312 . 730960) (-1313 . 730759)
- (-1314 . 730603) (-1315 . 730433) (-1316 . 730359) (-1317 . 730256)
- (-1318 . 730017) (-1319 . 729967) (-1320 . 729935) (-1321 . 729405)
- (-1322 . 729324) (-1323 . 729171) (-1324 . 729034) (-1325 . 728862)
- (-1326 . 728424) (-1327 . 728194) (-1328 . 728141) (-1329 . 727923)
- (-1330 . 727872) (-1331 . 727806) (-1332 . 727682) (-1333 . 727626)
- (-1334 . 727465) (-1335 . 726933) (-1336 . 726761) (-1337 . 726250)
- (-1338 . 726158) (-1339 . 726063) (-1340 . 725990) (-1341 . 725603)
- (-1342 . 725550) (-1343 . 725443) (-1344 . 725391) (-1345 . 725219)
- (-1346 . 724948) (-1347 . 724874) (-1348 . 724842) (-1349 . 724635)
- (-1350 . 724476) (-1351 . 724221) (-1352 . 723854) (-1353 . 723725)
- (-1354 . 723629) (-1355 . 723528) (-1356 . 723356) (-1357 . 723282)
- (-1358 . 723210) (-1359 . 723124) (-1360 . 723068) (-1361 . 723031)
- (-1362 . 722981) (-1363 . 722907) (-1364 . 722821) (-1365 . 722750)
- (-1366 . 722623) (-1367 . 722528) (-1368 . 722212) (-1369 . 722140)
- (-1370 . 722087) (-1371 . 722015) (-1372 . 721891) (-1373 . 721705)
- (-1374 . 721360) (-1375 . 721265) (-1376 . 721075) (-1377 . 720884)
- (-1378 . 720814) (-1379 . 720518) (-1380 . 720044) (-1381 . 719992)
- (-1382 . 719813) (-1383 . 719727) (-1384 . 719618) (-1385 . 719421)
- (-1386 . 719307) (-1387 . 719187) (-1388 . 718891) (-1389 . 718763)
- (-1390 . 718680) (-1391 . 718561) (-1392 . 718475) (-1393 . 718256)
- (-1394 . 718048) (-1395 . 717940) (-1396 . 717810) (-1397 . 717717)
- (-1398 . 717634) (-1399 . 717495) (-1400 . 716861) (-1401 . 716753)
- (-1402 . 716595) (-1403 . 715919) (-1404 . 715818) (-1405 . 715716)
- (-1406 . 715603) (-1407 . 715457) (-1408 . 715346) (-1409 . 715174)
- (-1410 . 715075) (-1411 . 714836) (-1412 . 714741) (-1413 . 714683)
- (-1414 . 714494) (-1415 . 714309) (-1416 . 714239) (-1417 . 713817)
- (-1418 . 713725) (-1419 . 713477) (-1420 . 713321) (-1421 . 713163)
- (-1422 . 713111) (-1423 . 712996) (-1424 . 712877) (-1425 . 712821)
- (-1426 . 712768) (-1427 . 712653) (-1428 . 712565) (-1429 . 712482)
- (-1430 . 712411) (-1431 . 712310) (-1432 . 712203) (-1433 . 712169)
- (-1434 . 712027) (-1435 . 711640) (-1436 . 711560) (-1437 . 711480)
- (-1438 . 711409) (-1439 . 711359) (-1440 . 711006) (-1441 . 709936)
- (-1442 . 709777) (-1443 . 709704) (-1444 . 709649) (-1445 . 709519)
- (-1446 . 709461) (-1447 . 709355) (-1448 . 709101) (-1449 . 709016)
- (-1450 . 708959) (-1451 . 708844) (-1452 . 708664) (-1453 . 708530)
- (-1454 . 708477) (-1455 . 708315) (-1456 . 708051) (-1457 . 707972)
- (-1458 . 707851) (-1459 . 707252) (-1460 . 707145) (-1461 . 707015)
- (-1462 . 706929) (-1463 . 706175) (-1464 . 706098) (-1465 . 706030)
- (-1466 . 705975) (-1467 . 705644) (-1468 . 705044) (-1469 . 704948)
- (-1470 . 704763) (-1471 . 704342) (-1472 . 704211) (-1473 . 704062)
- (-1474 . 703988) (-1475 . 703826) (-1476 . 703682) (-1477 . 703475)
- (-1478 . 703326) (-1479 . 702983) (-1480 . 702882) (-1481 . 702508)
- (-1482 . 702364) (-1483 . 702206) (-1484 . 702139) (-1485 . 702022)
- (-1486 . 701836) (-1487 . 701637) (-1488 . 701585) (-1489 . 701397)
- (-1490 . 701111) (-1491 . 700973) (-1492 . 700887) (-1493 . 700780)
- (-1494 . 700672) (-1495 . 700628) (-1496 . 700569) (-1497 . 700510)
- (-1498 . 700350) (-1499 . 699936) (-1500 . 699717) (-1501 . 699562)
- (-1502 . 699368) (-1503 . 699265) (-1504 . 699141) (-1505 . 698885)
- (-1506 . 698740) (-1507 . 698711) (-1508 . 698638) (-1509 . 698577)
- (-1510 . 698283) (-1511 . 698130) (-1512 . 698007) (-1513 . 697925)
- (-1514 . 697804) (-1515 . 697646) (-1516 . 697200) (-1517 . 697103)
- (-1518 . 696999) (-1519 . 696864) (-1520 . 696683) (-1521 . 696649)
- (-1522 . 696466) (-1523 . 696392) (-1524 . 696336) (-1525 . 696042)
- (-1526 . 695957) (-1527 . 695905) (-1528 . 695653) (-1529 . 695426)
- (-1530 . 694997) (-1531 . 694613) (-1532 . 694561) (-1533 . 694509)
- (-1534 . 694475) (-1535 . 694329) (-1536 . 694170) (-1537 . 694118)
- (-1538 . 693950) (-1539 . 693569) (-1540 . 689571) (-1541 . 688976)
- (-1542 . 688867) (-1543 . 688783) (-1544 . 688749) (-1545 . 688640)
- (-1546 . 688575) (-1547 . 688461) (-1548 . 688218) (-1549 . 687467)
- (-1550 . 687252) (-1551 . 687136) (-1552 . 686934) (-1553 . 686490)
- (-1554 . 686325) (-1555 . 685967) (-1556 . 685887) (-1557 . 685453)
- (-1558 . 685402) (-1559 . 685349) (-1560 . 685263) (-1561 . 685119)
- (-1562 . 685020) (-1563 . 684854) (-1564 . 684773) (-1565 . 684703)
- (-1566 . 683933) (-1567 . 682752) (-1568 . 682620) (-1569 . 682490)
- (-1570 . 682435) (-1571 . 681270) (-1572 . 681219) (-1573 . 681136)
- (-1574 . 681038) (-1575 . 680986) (-1576 . 680879) (-1577 . 680789)
- (-1578 . 680583) (-1579 . 680512) (-1580 . 680434) (-1581 . 680161)
- (-1582 . 680060) (-1583 . 679960) (-1584 . 679831) (-1585 . 679760)
- (-1586 . 679616) (-1587 . 679468) (-1588 . 679364) (-1589 . 679300)
- (-1590 . 679216) (-1591 . 679002) (-1592 . 678932) (-1593 . 678804)
- (-1594 . 678468) (-1595 . 678409) (-1596 . 678300) (-1597 . 677559)
- (-1598 . 677446) (-1599 . 677360) (-1600 . 676838) (-1601 . 676497)
- (-1602 . 676182) (-1603 . 676075) (-1604 . 676022) (-1605 . 675713)
- (-1606 . 675387) (-1607 . 675294) (-1608 . 674553) (-1609 . 674467)
- (-1610 . 674439) (-1611 . 674320) (-1612 . 674102) (-1613 . 674002)
- (-1614 . 673933) (-1615 . 673873) (-1616 . 673764) (-1617 . 673588)
- (-1618 . 673447) (-1619 . 672759) (-1620 . 672709) (-1621 . 672657)
- (-1622 . 672211) (-1623 . 672077) (-1624 . 671975) (-1625 . 671903)
- (-1626 . 671742) (-1627 . 671546) (-1628 . 671493) (-1629 . 671375)
- (-1630 . 670799) (-1631 . 670597) (-1632 . 670439) (-1633 . 670069)
- (-1634 . 669984) (-1635 . 669922) (-1636 . 669674) (-1637 . 669590)
- (-1638 . 669502) (-1639 . 669357) (-1640 . 669047) (-1641 . 668884)
- (-1642 . 668453) (-1643 . 667877) (-1644 . 667549) (-1645 . 667319)
- (-1646 . 667225) (-1647 . 667124) (-1648 . 667015) (-1649 . 666797)
- (-1650 . 666689) (-1651 . 666582) (-1652 . 666496) (-1653 . 666424)
- (-1654 . 665943) (-1655 . 665732) (-1656 . 665156) (-1657 . 664991)
- (-1658 . 664838) (-1659 . 664778) (-1660 . 664126) (-1661 . 664057)
- (-1662 . 663347) (-1663 . 663276) (-1664 . 663157) (-1665 . 663027)
- (-1666 . 662947) (-1667 . 662261) (-1668 . 662154) (-1669 . 662068)
- (-1670 . 661620) (-1671 . 661526) (-1672 . 660724) (-1673 . 660641)
- (-1674 . 660588) (-1675 . 659727) (-1676 . 659584) (-1677 . 659497)
- (-1678 . 659386) (-1679 . 659236) (-1680 . 658550) (-1681 . 658448)
- (-1682 . 658168) (-1683 . 658115) (-1684 . 657897) (-1685 . 657405)
- (-1686 . 657067) (-1687 . 657015) (-1688 . 656987) (-1689 . 656958)
- (-1690 . 656834) (-1691 . 656184) (-1692 . 655993) (-1693 . 637279)
- (-1694 . 637160) (-1695 . 636411) (-1696 . 636316) (-1697 . 636166)
- (-1698 . 636010) (-1699 . 635898) (-1700 . 635788) (-1701 . 635450)
- (-1702 . 635211) (-1703 . 635034) (-1704 . 634848) (-1705 . 634720)
- (-1706 . 634580) (-1707 . 631759) (-1708 . 631666) (-1709 . 631427)
- (-1710 . 630853) (-1711 . 630769) (-1712 . 630613) (-1713 . 630500)
- (-1714 . 630261) (-1715 . 630008) (-1716 . 629830) (-1717 . 629751)
- (-1718 . 629479) (-1719 . 629351) (-1720 . 629221) (-1721 . 629086)
- (-1722 . 628512) (-1723 . 628413) (-1724 . 628309) (-1725 . 628120)
- (-1726 . 628092) (-1727 . 627988) (-1728 . 627910) (-1729 . 627594)
- (-1730 . 627521) (-1731 . 627469) (-1732 . 627403) (-1733 . 626977)
- (-1734 . 626788) (-1735 . 626214) (-1736 . 626126) (-1737 . 625487)
- (-1738 . 625424) (-1739 . 625358) (-1740 . 624714) (-1741 . 624396)
- (-1742 . 623853) (-1743 . 623799) (-1744 . 623568) (-1745 . 623459)
- (-1746 . 623431) (-1747 . 623206) (-1748 . 622519) (-1749 . 622463)
- (-1750 . 622359) (-1751 . 622215) (-1752 . 622108) (-1753 . 621843)
- (-1754 . 621738) (-1755 . 621361) (-1756 . 621274) (-1757 . 620956)
- (-1758 . 620568) (-1759 . 619881) (-1760 . 619650) (-1761 . 619555)
- (-1762 . 619496) (-1763 . 619338) (-1764 . 619256) (-1765 . 619161)
- (-1766 . 618911) (-1767 . 618858) (-1768 . 618699) (-1769 . 618597)
- (-1770 . 618520) (-1771 . 617833) (-1772 . 617694) (-1773 . 617666)
- (-1774 . 617523) (-1775 . 617231) (-1776 . 616753) (-1777 . 616475)
- (-1778 . 616388) (-1779 . 616145) (-1780 . 616048) (-1781 . 615943)
- (-1782 . 615707) (-1783 . 615537) (-1784 . 614962) (-1785 . 614906)
- (-1786 . 614817) (-1787 . 614739) (-1788 . 614447) (-1789 . 614289)
- (-1790 . 614152) (-1791 . 614010) (-1792 . 613903) (-1793 . 604341)
- (-1794 . 603766) (-1795 . 603713) (-1796 . 603560) (-1797 . 603507)
- (-1798 . 603323) (-1799 . 603270) (-1800 . 603188) (-1801 . 603065)
- (-1802 . 602962) (-1803 . 602816) (-1804 . 602782) (-1805 . 602602)
- (-1806 . 602027) (-1807 . 601620) (-1808 . 601509) (-1809 . 600876)
- (-1810 . 600767) (-1811 . 600641) (-1812 . 598226) (-1813 . 598076)
- (-1814 . 596890) (-1815 . 596723) (-1816 . 596646) (-1817 . 596072)
- (-1818 . 594776) (-1819 . 594723) (-1820 . 594664) (-1821 . 594521)
- (-1822 . 594492) (-1823 . 594321) (-1824 . 594126) (-1825 . 594025)
- (-1826 . 592843) (-1827 . 592783) (-1828 . 592682) (-1829 . 592108)
- (-1830 . 591926) (-1831 . 591791) (-1832 . 591697) (-1833 . 591494)
- (-1834 . 591260) (-1835 . 591135) (-1836 . 590753) (-1837 . 588547)
- (-1838 . 588492) (-1839 . 588439) (-1840 . 587865) (-1841 . 587798)
- (-1842 . 587654) (-1843 . 587498) (-1844 . 587310) (-1845 . 587260)
- (-1846 . 586909) (-1847 . 586659) (-1848 . 586074) (-1849 . 584770)
- (-1850 . 584741) (-1851 . 584167) (-1852 . 583915) (-1853 . 583859)
- (-1854 . 583748) (-1855 . 583630) (-1856 . 583571) (-1857 . 582195)
- (-1858 . 582098) (-1859 . 581852) (-1860 . 581803) (-1861 . 581745)
- (-1862 . 581171) (-1863 . 580873) (-1864 . 580581) (-1865 . 580421)
- (-1866 . 580257) (-1867 . 580097) (-1868 . 578651) (-1869 . 578598)
- (-1870 . 578360) (-1871 . 578079) (-1872 . 577752) (-1873 . 577672)
- (-1874 . 577321) (-1875 . 577142) (-1876 . 577058) (-1877 . 576937)
- (-1878 . 576798) (-1879 . 576542) (-1880 . 575350) (-1881 . 575281)
- (-1882 . 574932) (-1883 . 574779) (-1884 . 574699) (-1885 . 574598)
- (-1886 . 574296) (-1887 . 574178) (-1888 . 573883) (-1889 . 573718)
- (-1890 . 573663) (-1891 . 573577) (-1892 . 573543) (-1893 . 573427)
- (-1894 . 573341) (-1895 . 572932) (-1896 . 572851) (-1897 . 572710)
- (-1898 . 572624) (-1899 . 572350) (-1900 . 572277) (-1901 . 572176)
- (-1902 . 572005) (-1903 . 571919) (-1904 . 571866) (-1905 . 570008)
- (-1906 . 569779) (-1907 . 569656) (-1908 . 569568) (-1909 . 569415)
- (-1910 . 569359) (-1911 . 569181) (-1912 . 568929) (-1913 . 568842)
- (-1914 . 568770) (-1915 . 568711) (-1916 . 567838) (-1917 . 567786)
- (-1918 . 567435) (-1919 . 567380) (-1920 . 567352) (-1921 . 567194)
- (-1922 . 567120) (-1923 . 567054) (-1924 . 566929) (-1925 . 566858)
- (-1926 . 566718) (-1927 . 566505) (-1928 . 566324) (-1929 . 566252)
- (-1930 . 566181) (-1931 . 566093) (-1932 . 565796) (-1933 . 565673)
- (-1934 . 565501) (-1935 . 565403) (-1936 . 565245) (-1937 . 564998)
- (-1938 . 564931) (-1939 . 564864) (-1940 . 564653) (-1941 . 564520)
- (-1942 . 564364) (-1943 . 564312) (-1944 . 564067) (-1945 . 563998)
- (-1946 . 563560) (-1947 . 563377) (-1948 . 563325) (-1949 . 563243)
- (-1950 . 563171) (-1951 . 563099) (-1952 . 562948) (-1953 . 562874)
- (-1954 . 562480) (-1955 . 562337) (-1956 . 562249) (-1957 . 562168)
- (-1958 . 562099) (-1959 . 560942) (-1960 . 560873) (-1961 . 560387)
- (-1962 . 560256) (-1963 . 560186) (-1964 . 560015) (-1965 . 559768)
- (-1966 . 559558) (-1967 . 559448) (-1968 . 559250) (-1969 . 559180)
- (-1970 . 558982) (-1971 . 558692) (-1972 . 558484) (-1973 . 558192)
- (-1974 . 557969) (-1975 . 557896) (-1976 . 557497) (-1977 . 557414)
- (-1978 . 557318) (-1979 . 557163) (-1980 . 557108) (-1981 . 556983)
- (-1982 . 556840) (-1983 . 556589) (-1984 . 556209) (-1985 . 556157)
- (-1986 . 555952) (-1987 . 555680) (-1988 . 555606) (-1989 . 555511)
- (-1990 . 555371) (-1991 . 555156) (-1992 . 555059) (-1993 . 554941)
- (-1994 . 551642) (-1995 . 551383) (-1996 . 551310) (-1997 . 550728)
- (-1998 . 550654) (-1999 . 550576) (-2000 . 550510) (-2001 . 550461)
- (-2002 . 550395) (-2003 . 550282) (-2004 . 550145) (-2005 . 549828)
- (-2006 . 549714) (-2007 . 549647) (-2008 . 549576) (-2009 . 549403)
- (-2010 . 548596) (-2011 . 548494) (-2012 . 548401) (-2013 . 548155)
- (-2014 . 547963) (-2015 . 547806) (-2016 . 547582) (-2017 . 547517)
- (-2018 . 547445) (-2019 . 547361) (-2020 . 546968) (-2021 . 546909)
- (-2022 . 546848) (-2023 . 546795) (-2024 . 546577) (-2025 . 546467)
- (-2026 . 546413) (-2027 . 546272) (-2028 . 545826) (-2029 . 545706)
- (-2030 . 545640) (-2031 . 545113) (-2032 . 544990) (-2033 . 544891)
- (-2034 . 544782) (-2035 . 544675) (-2036 . 544565) (-2037 . 544294)
- (-2038 . 544217) (-2039 . 544180) (-2040 . 543937) (-2041 . 543327)
- (-2042 . 543276) (-2043 . 542815) (-2044 . 542743) (-2045 . 542583)
- (-2046 . 542374) (-2047 . 542216) (-2048 . 541753) (-2049 . 541583)
- (-2050 . 541405) (-2051 . 541099) (-2052 . 541010) (-2053 . 540936)
- (-2054 . 540883) (-2055 . 540830) (-2056 . 540750) (-2057 . 540283)
- (-2058 . 534945) (-2059 . 534883) (-2060 . 534770) (-2061 . 534579)
- (-2062 . 534438) (-2063 . 534323) (-2064 . 534295) (-2065 . 534168)
- (-2066 . 534080) (-2067 . 533965) (-2068 . 533909) (-2069 . 533580)
- (-2070 . 533485) (-2071 . 533408) (-2072 . 533299) (-2073 . 533179)
- (-2074 . 533096) (-2075 . 532989) (-2076 . 531727) (-2077 . 531416)
- (-2078 . 531227) (-2079 . 531061) (-2080 . 530878) (-2081 . 530798)
- (-2082 . 530668) (-2083 . 530531) (-2084 . 530450) (-2085 . 527669)
- (-2086 . 527535) (-2087 . 527370) (-2088 . 527246) (-2089 . 527173)
- (-2090 . 527145) (-2091 . 527092) (-2092 . 527006) (-2093 . 526722)
- (-2094 . 526543) (-2095 . 526409) (-2096 . 526336) (-2097 . 526201)
- (-2098 . 526083) (-2099 . 526030) (-2100 . 525484) (-2101 . 525399)
- (-2102 . 525319) (-2103 . 524254) (-2104 . 523810) (-2105 . 523674)
- (-2106 . 523608) (-2107 . 523518) (-2108 . 521386) (-2109 . 521300)
- (-2110 . 521097) (-2111 . 521045) (-2112 . 520846) (-2113 . 520700)
- (-2114 . 520289) (-2115 . 520188) (-2116 . 520092) (-2117 . 519985)
- (-2118 . 519913) (-2119 . 519473) (-2120 . 519357) (-2121 . 519202)
- (-2122 . 519142) (-2123 . 519049) (-2124 . 518942) (-2125 . 518700)
- (-2126 . 518645) (-2127 . 518583) (-2128 . 518425) (-2129 . 517959)
- (-2130 . 517891) (-2131 . 513349) (-2132 . 513156) (-2133 . 512748)
- (-2134 . 512632) (-2135 . 511292) (-2136 . 511134) (-2137 . 511062)
- (-2138 . 510862) (-2139 . 509454) (-2140 . 509377) (-2141 . 509281)
- (-2142 . 509253) (-2143 . 508552) (-2144 . 508367) (-2145 . 508233)
- (-2146 . 508168) (-2147 . 507948) (-2148 . 507800) (-2149 . 507560)
- (-2150 . 507501) (-2151 . 507394) (-2152 . 507205) (-2153 . 507002)
- (-2154 . 506324) (-2155 . 506242) (-2156 . 506120) (-2157 . 505964)
- (-2158 . 505812) (-2159 . 505744) (-2160 . 505673) (-2161 . 505559)
- (-2162 . 505463) (-2163 . 505176) (-2164 . 504988) (-2165 . 504903)
- (-2166 . 504764) (-2167 . 504701) (-2168 . 504560) (-2169 . 504463)
- (-2170 . 504435) (-2171 . 504349) (-2172 . 503811) (-2173 . 503608)
- (-2174 . 498094) (-2175 . 497471) (-2176 . 497354) (-2177 . 497039)
- (-2178 . 496864) (-2179 . 496672) (-2180 . 496407) (-2181 . 496355)
- (-2182 . 496197) (-2183 . 496097) (-2184 . 495299) (-2185 . 495170)
- (-2186 . 494778) (-2187 . 494659) (-2188 . 494630) (-2189 . 494377)
- (-2190 . 494280) (-2191 . 494173) (-2192 . 493664) (-2193 . 493143)
- (-2194 . 492977) (-2195 . 492878) (-2196 . 492780) (-2197 . 492694)
- (-2198 . 492556) (-2199 . 492501) (-2200 . 492394) (-2201 . 492306)
- (-2202 . 492209) (-2203 . 492049) (-2204 . 492021) (-2205 . 491928)
- (-2206 . 491837) (-2207 . 491591) (-2208 . 491366) (-2209 . 491161)
- (-2210 . 490970) (-2211 . 490720) (-2212 . 490622) (-2213 . 489612)
- (-2214 . 489374) (-2215 . 489295) (-2216 . 489182) (-2217 . 489075)
- (-2218 . 488917) (-2219 . 488855) (-2220 . 485189) (-2221 . 485060)
- (-2222 . 484974) (-2223 . 484849) (-2224 . 484725) (-2225 . 484558)
- (-2226 . 481222) (-2227 . 480915) (-2228 . 480803) (-2229 . 480709)
- (-2230 . 480525) (-2231 . 480403) (-2232 . 480224) (-2233 . 480150)
- (-2234 . 480016) (-2235 . 479948) (-2236 . 478478) (-2237 . 478404)
- (-2238 . 478301) (-2239 . 477651) (-2240 . 463537) (-2241 . 463366)
- (-2242 . 463199) (-2243 . 459136) (-2244 . 458786) (-2245 . 458612)
- (-2246 . 458559) (-2247 . 458462) (-2248 . 458385) (-2249 . 458311)
- (-2250 . 458244) (-2251 . 458192) (-2252 . 458076) (-2253 . 457963)
- (-2254 . 457716) (-2255 . 457607) (-2256 . 457120) (-2257 . 456967)
- (-2258 . 456820) (-2259 . 456590) (-2260 . 456474) (-2261 . 456351)
- (-2262 . 456208) (-2263 . 456155) (-2264 . 456106) (-2265 . 456021)
- (-2266 . 455968) (-2267 . 455915) (-2268 . 455860) (-2269 . 455761)
- (-2270 . 455677) (-2271 . 455575) (-2272 . 455434) (-2273 . 455363)
- (-2274 . 455141) (-2275 . 455003) (-2276 . 454929) (-2277 . 454845)
- (-2278 . 454617) (-2279 . 454275) (-2280 . 453511) (-2281 . 453378)
- (-2282 . 453323) (-2283 . 452964) (-2284 . 452556) (-2285 . 452454)
- (-2286 . 450109) (-2287 . 450036) (-2288 . 449963) (-2289 . 449808)
- (-2290 . 449562) (-2291 . 449493) (-2292 . 449394) (-2293 . 449250)
- (-2294 . 449108) (-2295 . 448857) (-2296 . 448521) (-2297 . 446743)
- (-2298 . 446624) (-2299 . 446097) (-2300 . 445989) (-2301 . 445875)
- (-2302 . 445779) (-2303 . 445678) (-2304 . 445607) (-2305 . 445491)
- (-2306 . 445311) (-2307 . 445081) (-2308 . 444993) (-2309 . 439880)
- (-2310 . 439824) (-2311 . 439466) (-2312 . 439382) (-2313 . 439239)
- (-2314 . 439112) (-2315 . 438409) (-2316 . 438241) (-2317 . 438171)
- (-2318 . 438064) (-2319 . 438012) (-2320 . 437882) (-2321 . 437711)
- (-2322 . 437616) (-2323 . 437463) (-2324 . 437302) (-2325 . 436989)
- (-2326 . 436955) (-2327 . 436682) (-2328 . 436423) (-2329 . 436204)
- (-2330 . 436151) (-2331 . 435824) (-2332 . 435725) (-2333 . 435550)
- (-2334 . 435460) (-2335 . 434351) (-2336 . 434142) (-2337 . 433980)
- (-2338 . 433920) (-2339 . 433846) (-2340 . 433280) (-2341 . 433127)
- (-2342 . 433074) (-2343 . 432850) (-2344 . 432728) (-2345 . 431841)
- (-2346 . 431772) (-2347 . 431673) (-2348 . 431606) (-2349 . 431042)
- (-2350 . 430740) (-2351 . 430174) (-2352 . 430044) (-2353 . 429942)
- (-2354 . 429860) (-2355 . 429714) (-2356 . 429631) (-2357 . 429400)
- (-2358 . 429192) (-2359 . 428996) (-2360 . 428964) (-2361 . 427876)
- (-2362 . 427604) (-2363 . 427279) (-2364 . 427168) (-2365 . 426622)
- (-2366 . 426478) (-2367 . 426450) (-2368 . 426198) (-2369 . 426110)
- (-2370 . 425969) (-2371 . 425917) (-2372 . 425608) (-2373 . 425522)
- (-2374 . 425282) (-2375 . 425102) (-2376 . 424790) (-2377 . 424712)
- (-2378 . 424485) (-2379 . 424192) (-2380 . 424137) (-2381 . 423891)
- (-2382 . 423630) (-2383 . 423499) (-2384 . 423431) (-2385 . 423283)
- (-2386 . 422626) (-2387 . 422472) (-2388 . 422401) (-2389 . 422348)
- (-2390 . 422267) (-2391 . 422142) (-2392 . 422002) (-2393 . 421756)
- (-2394 . 421237) (-2395 . 421096) (-2396 . 420944) (-2397 . 420761)
- (-2398 . 420639) (-2399 . 420587) (-2400 . 420517) (-2401 . 420420)
- (-2402 . 420219) (-2403 . 420115) (-2404 . 420056) (-2405 . 419977)
- (-2406 . 419772) (-2407 . 419740) (-2408 . 419698) (-2409 . 419508)
- (-2410 . 419445) (-2411 . 419350) (-2412 . 418169) (-2413 . 418060)
- (-2414 . 417973) (-2415 . 417459) (-2416 . 417313) (-2417 . 417243)
- (-2418 . 417159) (-2419 . 417007) (-2420 . 416711) (-2421 . 416520)
- (-2422 . 416376) (-2423 . 416171) (-2424 . 415954) (-2425 . 415810)
- (-2426 . 415715) (-2427 . 415688) (-2428 . 415615) (-2429 . 415559)
- (-2430 . 415214) (-2431 . 415126) (-2432 . 415047) (-2433 . 414198)
- (-2434 . 413963) (-2435 . 413884) (-2436 . 413697) (-2437 . 413539)
- (-2438 . 413322) (-2439 . 413209) (-2440 . 412976) (-2441 . 412429)
- (-2442 . 412370) (-2443 . 412164) (-2444 . 408543) (-2445 . 408482)
- (-2446 . 408414) (-2447 . 408263) (-2448 . 408226) (-2449 . 408038)
- (-2450 . 407986) (-2451 . 407903) (-2452 . 407468) (-2453 . 407359)
- (-2454 . 407277) (-2455 . 407119) (-2456 . 406867) (-2457 . 406271)
- (-2458 . 406212) (-2459 . 406156) (-2460 . 406066) (-2461 . 405872)
- (-2462 . 405742) (-2463 . 405583) (-2464 . 404976) (-2465 . 404906)
- (-2466 . 404688) (-2467 . 404589) (-2468 . 404200) (-2469 . 403987)
- (-2470 . 403935) (-2471 . 403687) (-2472 . 403397) (-2473 . 403311)
- (-2474 . 403173) (-2475 . 402916) (-2476 . 402552) (-2477 . 402436)
- (-2478 . 402382) (-2479 . 402288) (-2480 . 402233) (-2481 . 402182)
- (-2482 . 402052) (-2483 . 401894) (-2484 . 401866) (-2485 . 401703)
- (-2486 . 401531) (-2487 . 401243) (-2488 . 401055) (-2489 . 400600)
- (-2490 . 400433) (-2491 . 400216) (-2492 . 400165) (-2493 . 400112)
- (-2494 . 400059) (-2495 . 399982) (-2496 . 399908) (-2497 . 399634)
- (-2498 . 399602) (-2499 . 399253) (-2500 . 399046) (-2501 . 398853)
- (-2502 . 398797) (-2503 . 398769) (-2504 . 398666) (-2505 . 398611)
- (-2506 . 398508) (-2507 . 398233) (-2508 . 398154) (-2509 . 397653)
- (-2510 . 397573) (-2511 . 397416) (-2512 . 397339) (-2513 . 397269)
- (-2514 . 397056) (-2515 . 397022) (-2516 . 396883) (-2517 . 396804)
- (-2518 . 396315) (-2519 . 396035) (-2520 . 395381) (-2521 . 394954)
- (-2522 . 393704) (-2523 . 393579) (-2524 . 393509) (-2525 . 393391)
- (-2526 . 393312) (-2527 . 393202) (-2528 . 393119) (-2529 . 393021)
- (-2530 . 392902) (-2531 . 392744) (-2532 . 392617) (-2533 . 392589)
- (-2534 . 392374) (-2535 . 392300) (-2536 . 392172) (-2537 . 392098)
- (-2538 . 391935) (-2539 . 391858) (-2540 . 391340) (-2541 . 391266)
- (-2542 . 391214) (-2543 . 391092) (-2544 . 391033) (-2545 . 390917)
- (-2546 . 390628) (-2547 . 390355) (-2548 . 390299) (-2549 . 390066)
- (-2550 . 389106) (-2551 . 388999) (-2552 . 388892) (-2553 . 388813)
- (-2554 . 388761) (-2555 . 388434) (-2556 . 388346) (-2557 . 387144)
- (-2558 . 387024) (-2559 . 386968) (-2560 . 386875) (-2561 . 385024)
- (-2562 . 384996) (-2563 . 384892) (-2564 . 384739) (-2565 . 382883)
- (-2566 . 382817) (-2567 . 382522) (-2568 . 382396) (-2569 . 382302)
- (-2570 . 382250) (-2571 . 382182) (-2572 . 381967) (-2573 . 381842)
- (-2574 . 381450) (-2575 . 381378) (-2576 . 381350) (-2577 . 381269)
- (-2578 . 381214) (-2579 . 381083) (-2580 . 381027) (-2581 . 380865)
- (-2582 . 380777) (-2583 . 380416) (-2584 . 380297) (-2585 . 379818)
- (-2586 . 379738) (-2587 . 379677) (-2588 . 378048) (-2589 . 377954)
- (-2590 . 377901) (-2591 . 376935) (-2592 . 376660) (-2593 . 376608)
- (-2594 . 376480) (-2595 . 376358) (-2596 . 375492) (-2597 . 375390)
- (-2598 . 375331) (-2599 . 375278) (-2600 . 373976) (-2601 . 373844)
- (-2602 . 373596) (-2603 . 373342) (-2604 . 373248) (-2605 . 373066)
- (-2606 . 371692) (-2607 . 371567) (-2608 . 371468) (-2609 . 371136)
- (-2610 . 371033) (-2611 . 370917) (-2612 . 370840) (-2613 . 370812)
- (-2614 . 370714) (-2615 . 370163) (-2616 . 370097) (-2617 . 370038)
- (-2618 . 369961) (-2619 . 369649) (-2620 . 369368) (-2621 . 368981)
- (-2622 . 368806) (-2623 . 368661) (-2624 . 368579) (-2625 . 368327)
- (-2626 . 367015) (-2627 . 366929) (-2628 . 366877) (-2629 . 366768)
- (-2630 . 366675) (-2631 . 366563) (-2632 . 366253) (-2633 . 366170)
- (-2634 . 366064) (-2635 . 365481) (-2636 . 365424) (-2637 . 365372)
- (-2638 . 365265) (-2639 . 365177) (-2640 . 365108) (-2641 . 365025)
- (-2642 . 364958) (-2643 . 364665) (-2644 . 364582) (-2645 . 364466)
- (-2646 . 364435) (-2647 . 364241) (-2648 . 364088) (-2649 . 364010)
- (-2650 . 363912) (-2651 . 363199) (-2652 . 361361) (-2653 . 360333)
- (-2654 . 360230) (-2655 . 360173) (-2656 . 360124) (-2657 . 360022)
- (-2658 . 359867) (-2659 . 359648) (-2660 . 358138) (-2661 . 357994)
- (-2662 . 357920) (-2663 . 357752) (-2664 . 357696) (-2665 . 357622)
- (-2666 . 357461) (-2667 . 357383) (-2668 . 357237) (-2669 . 356821)
- (-2670 . 355273) (-2671 . 355199) (-2672 . 354695) (-2673 . 353731)
- (-2674 . 353646) (-2675 . 353545) (-2676 . 353463) (-2677 . 353392)
- (-2678 . 353272) (-2679 . 353069) (-2680 . 352847) (-2681 . 352241)
- (-2682 . 352191) (-2683 . 351922) (-2684 . 351873) (-2685 . 351546)
- (-2686 . 351494) (-2687 . 351371) (-2688 . 350635) (-2689 . 350534)
- (-2690 . 350043) (-2691 . 349864) (-2692 . 349827) (-2693 . 349739)
- (-2694 . 349687) (-2695 . 349621) (-2696 . 349459) (-2697 . 349314)
- (-2698 . 349240) (-2699 . 348955) (-2700 . 348858) (-2701 . 348802)
- (-2702 . 348612) (-2703 . 348509) (-2704 . 348406) (-2705 . 347663)
- (-2706 . 347536) (-2707 . 347442) (-2708 . 347390) (-2709 . 347277)
- (-2710 . 347021) (-2711 . 346897) (-2712 . 346815) (-2713 . 346742)
- (-2714 . 346627) (-2715 . 346400) (-2716 . 345756) (-2717 . 345509)
- (-2718 . 345304) (-2719 . 345241) (-2720 . 345147) (-2721 . 344980)
- (-2722 . 344909) (-2723 . 344753) (-2724 . 344466) (-2725 . 344367)
- (-2726 . 343195) (-2727 . 343098) (-2728 . 342885) (-2729 . 342832)
- (-2730 . 342731) (-2731 . 342648) (-2732 . 342422) (-2733 . 342147)
- (-2734 . 341259) (-2735 . 341182) (-2736 . 340939) (-2737 . 340820)
- (-2738 . 340736) (-2739 . 340621) (-2740 . 340392) (-2741 . 340152)
- (-2742 . 339765) (-2743 . 339658) (-2744 . 339476) (-2745 . 338961)
- (-2746 . 338901) (-2747 . 337616) (-2748 . 337128) (-2749 . 337071)
- (-2750 . 336942) (-2751 . 335805) (-2752 . 335721) (-2753 . 335510)
- (-2754 . 335414) (-2755 . 335222) (-2756 . 334950) (-2757 . 334835)
- (-2758 . 334482) (-2759 . 334413) (-2760 . 333961) (-2761 . 333831)
- (-2762 . 333778) (-2763 . 333656) (-2764 . 333535) (-2765 . 333455)
- (-2766 . 333237) (-2767 . 333134) (-2768 . 332642) (-2769 . 331726)
- (-2770 . 331518) (-2771 . 331384) (-2772 . 331226) (-2773 . 331082)
- (-2774 . 330934) (-2775 . 330825) (-2776 . 330629) (-2777 . 330525)
- (-2778 . 330423) (-2779 . 330294) (-2780 . 330151) (-2781 . 330038)
- (-2782 . 329965) (-2783 . 329376) (-2784 . 329095) (-2785 . 329000)
- (-2786 . 328871) (-2787 . 328819) (-2788 . 328638) (-2789 . 328559)
- (-2790 . 328417) (-2791 . 328346) (-2792 . 328137) (-2793 . 328022)
- (-2794 . 327504) (-2795 . 327408) (-2796 . 327290) (-2797 . 326948)
- (-2798 . 326738) (-2799 . 326083) (-2800 . 326017) (-2801 . 325916)
- (-2802 . 325342) (-2803 . 325241) (-2804 . 325153) (-2805 . 325062)
- (-2806 . 324829) (-2807 . 324407) (-2808 . 324336) (-2809 . 324171)
- (-2810 . 324112) (-2811 . 324007) (-2812 . 323816) (-2813 . 323693)
- (-2814 . 323563) (-2815 . 323460) (-2816 . 323094) (-2817 . 322981)
- (-2818 . 322871) (-2819 . 322805) (-2820 . 322662) (-2821 . 322562)
- (-2822 . 322506) (-2823 . 322422) (-2824 . 322391) (-2825 . 322163)
- (-2826 . 321409) (-2827 . 321353) (-2828 . 321282) (-2829 . 321083)
- (-2830 . 321016) (-2831 . 320766) (-2832 . 320627) (-2833 . 320555)
- (-2834 . 320448) (-2835 . 320344) (-2836 . 318802) (-2837 . 317938)
- (-2838 . 317886) (-2839 . 317831) (-2840 . 317797) (-2841 . 317765)
- (-2842 . 317710) (-2843 . 317650) (-2844 . 317594) (-2845 . 317535)
- (-2846 . 317435) (-2847 . 317349) (-2848 . 317246) (-2849 . 317191)
- (-2850 . 317108) (-2851 . 316728) (-2852 . 316623) (-2853 . 315993)
- (-2854 . 315871) (-2855 . 315730) (-2856 . 315570) (-2857 . 315472)
- (-2858 . 315388) (-2859 . 315281) (-2860 . 315143) (-2861 . 314715)
- (-2862 . 314517) (-2863 . 314435) (-2864 . 314313) (-2865 . 314220)
- (-2866 . 314025) (-2867 . 313951) (-2868 . 313867) (-2869 . 313546)
- (-2870 . 313432) (-2871 . 313353) (-2872 . 313161) (-2873 . 313084)
- (-2874 . 313028) (-2875 . 312963) (-2876 . 312889) (-2877 . 312836)
- (-2878 . 312618) (-2879 . 312494) (-2880 . 312295) (-2881 . 312224)
- (-2882 . 312136) (-2883 . 312031) (-2884 . 311740) (-2885 . 311605)
- (-2886 . 311289) (-2887 . 311180) (-2888 . 310849) (-2889 . 310795)
- (-2890 . 310524) (-2891 . 310305) (-2892 . 310149) (-2893 . 310069)
- (-2894 . 309889) (-2895 . 309787) (-2896 . 309681) (-2897 . 309543)
- (-2898 . 309090) (-2899 . 308763) (-2900 . 308106) (-2901 . 308007)
- (-2902 . 307893) (-2903 . 307810) (-2904 . 307697) (-2905 . 307614)
- (-2906 . 307537) (-2907 . 307312) (-2908 . 306633) (-2909 . 306550)
- (-2910 . 306480) (-2911 . 306371) (-2912 . 306036) (-2913 . 305695)
- (-2914 . 305511) (-2915 . 305445) (-2916 . 305191) (-2917 . 304939)
- (-2918 . 304652) (-2919 . 304045) (-2920 . 303899) (-2921 . 303786)
- (-2922 . 303643) (-2923 . 303591) (-2924 . 303450) (-2925 . 302920)
- (-2926 . 302751) (-2927 . 301174) (-2928 . 301045) (-2929 . 300709)
- (-2930 . 300646) (-2931 . 300587) (-2932 . 300480) (-2933 . 300303)
- (-2934 . 300171) (-2935 . 299956) (-2936 . 299872) (-2937 . 299778)
- (-2938 . 299351) (-2939 . 298966) (-2940 . 298800) (-2941 . 298732)
- (-2942 . 298622) (-2943 . 298452) (-2944 . 298400) (-2945 . 298319)
- (-2946 . 298231) (-2947 . 298179) (-2948 . 298072) (-2949 . 297780)
- (-2950 . 297523) (-2951 . 297457) (-2952 . 297070) (-2953 . 297018)
- (-2954 . 296932) (-2955 . 296865) (-2956 . 296587) (-2957 . 296366)
- (-2958 . 296313) (-2959 . 296186) (-2960 . 295890) (-2961 . 295751)
- (-2962 . 295655) (-2963 . 295499) (-2964 . 295443) (-2965 . 295300)
- (-2966 . 295188) (-2967 . 294893) (-2968 . 294727) (-2969 . 294663)
- (-2970 . 294287) (-2971 . 294235) (-2972 . 294116) (-2973 . 293906)
- (-2974 . 293729) (-2975 . 293583) (-2976 . 293457) (-2977 . 293269)
- (-2978 . 292963) (-2979 . 292634) (-2980 . 292579) (-2981 . 292454)
- (-2982 . 292357) (-2983 . 292248) (-2984 . 291738) (-2985 . 291634)
- (-2986 . 291424) (-2987 . 291371) (-2988 . 291290) (-2989 . 291124)
- (-2990 . 290981) (-2991 . 290903) (-2992 . 290840) (-2993 . 290712)
- (-2994 . 290487) (-2995 . 289774) (-2996 . 289686) (-2997 . 289612)
- (-2998 . 289267) (-2999 . 289122) (-3000 . 288953) (-3001 . 288859)
- (-3002 . 288787) (-3003 . 288690) (-3004 . 288584) (-3005 . 288512)
- (-3006 . 288429) (-3007 . 288339) (-3008 . 287478) (-3009 . 286836)
- (-3010 . 286737) (-3011 . 286670) (-3012 . 286636) (-3013 . 286565)
- (-3014 . 285927) (-3015 . 285833) (-3016 . 285608) (-3017 . 285551)
- (-3018 . 285128) (-3019 . 284909) (-3020 . 284805) (-3021 . 284527)
- (-3022 . 284308) (-3023 . 284148) (-3024 . 284120) (-3025 . 283941)
- (-3026 . 283884) (-3027 . 283855) (-3028 . 283692) (-3029 . 283333)
- (-3030 . 282991) (-3031 . 282876) (-3032 . 282743) (-3033 . 282554)
- (-3034 . 282520) (-3035 . 282399) (-3036 . 282232) (-3037 . 282119)
- (-3038 . 282046) (-3039 . 281933) (-3040 . 281331) (-3041 . 281190)
- (-3042 . 280913) (-3043 . 280742) (-3044 . 280401) (-3045 . 277474)
- (-3046 . 276888) (-3047 . 276815) (-3048 . 276711) (-3049 . 276639)
- (-3050 . 276542) (-3051 . 276463) (-3052 . 276392) (-3053 . 276304)
- (-3054 . 276216) (-3055 . 276079) (-3056 . 275917) (-3057 . 275793)
- (-3058 . 275681) (-3059 . 275482) (-3060 . 275410) (-3061 . 275223)
- (-3062 . 275128) (-3063 . 275057) (-3064 . 274944) (-3065 . 274708)
- (-3066 . 274611) (-3067 . 274556) (-3068 . 274461) (-3069 . 274383)
- (-3070 . 274053) (-3071 . 273991) (-3072 . 273913) (-3073 . 273821)
- (-3074 . 273642) (-3075 . 273267) (-3076 . 273163) (-3077 . 273059)
- (-3078 . 272960) (-3079 . 272848) (-3080 . 272697) (-3081 . 272534)
- (-3082 . 272232) (-3083 . 272072) (-3084 . 271794) (-3085 . 271723)
- (-3086 . 271653) (-3087 . 271292) (-3088 . 271151) (-3089 . 271085)
- (-3090 . 270988) (-3091 . 270902) (-3092 . 270781) (-3093 . 270676)
- (-3094 . 270578) (-3095 . 270495) (-3096 . 270417) (-3097 . 270220)
- (-3098 . 270122) (-3099 . 269793) (-3100 . 269420) (-3101 . 269172)
- (-3102 . 268954) (-3103 . 268857) (-3104 . 268699) (-3105 . 268626)
- (-3106 . 268514) (-3107 . 268396) (-3108 . 268252) (-3109 . 268062)
- (-3110 . 267974) (-3111 . 267850) (-3112 . 267603) (-3113 . 267517)
- (-3114 . 267284) (-3115 . 267165) (-3116 . 266948) (-3117 . 266606)
- (-3118 . 266291) (-3119 . 266101) (-3120 . 266007) (-3121 . 265832)
- (-3122 . 265574) (-3123 . 265252) (-3124 . 265167) (-3125 . 265133)
- (-3126 . 265081) (-3127 . 265029) (-3128 . 264869) (-3129 . 264622)
- (-3130 . 264536) (-3131 . 264340) (-3132 . 264209) (-3133 . 264159)
- (-3134 . 263623) (-3135 . 263247) (-3136 . 262693) (-3137 . 262627)
- (-3138 . 262503) (-3139 . 262384) (-3140 . 262109) (-3141 . 261949)
- (-3142 . 261847) (-3143 . 261667) (-3144 . 261559) (-3145 . 261500)
- (-3146 . 261413) (-3147 . 261266) (-3148 . 261148) (-3149 . 261089)
- (-3150 . 260632) (-3151 . 260579) (-3152 . 260367) (-3153 . 260293)
- (-3154 . 260180) (-3155 . 260086) (-3156 . 260034) (-3157 . 259981)
- (-3158 . 259925) (-3159 . 259817) (-3160 . 259731) (-3161 . 259291)
- (-3162 . 259257) (-3163 . 258876) (-3164 . 258338) (-3165 . 258310)
- (-3166 . 258149) (-3167 . 258091) (-3168 . 257954) (-3169 . 257850)
- (-3170 . 257581) (-3171 . 257483) (-3172 . 256888) (-3173 . 256781)
- (-3174 . 256627) (-3175 . 256517) (-3176 . 256108) (-3177 . 255846)
- (-3178 . 255682) (-3179 . 255460) (-3180 . 255214) (-3181 . 254657)
- (-3182 . 254476) (-3183 . 254176) (-3184 . 254011) (-3185 . 253693)
- (-3186 . 253641) (-3187 . 253500) (-3188 . 253028) (-3189 . 252929)
- (-3190 . 252861) (-3191 . 252783) (-3192 . 252685) (-3193 . 252562)
- (-3194 . 252492) (-3195 . 252332) (-3196 . 252072) (-3197 . 251975)
- (-3198 . 251631) (-3199 . 251579) (-3200 . 251505) (-3201 . 251251)
- (-3202 . 251003) (-3203 . 250891) (-3204 . 250812) (-3205 . 249539)
- (-3206 . 249223) (-3207 . 249171) (-3208 . 249058) (-3209 . 248226)
- (-3210 . 248117) (-3211 . 247709) (-3212 . 247502) (-3213 . 247452)
- (-3214 . 247308) (-3215 . 247225) (-3216 . 246874) (-3217 . 246843)
- (-3218 . 246772) (-3219 . 246596) (-3220 . 246467) (-3221 . 246412)
- (-3222 . 246318) (-3223 . 246232) (-3224 . 245729) (-3225 . 245659)
- (-3226 . 245516) (-3227 . 245364) (-3228 . 245193) (-3229 . 245114)
- (-3230 . 245031) (-3231 . 244939) (-3232 . 244911) (-3233 . 244494)
- (-3234 . 244460) (-3235 . 244394) (-3236 . 244052) (-3237 . 243857)
- (-3238 . 243720) (-3239 . 243667) (-3240 . 243601) (-3241 . 243443)
- (-3242 . 243351) (-3243 . 243198) (-3244 . 243141) (-3245 . 242780)
- (-3246 . 242718) (-3247 . 242547) (-3248 . 242445) (-3249 . 242259)
- (-3250 . 241913) (-3251 . 241835) (-3252 . 241749) (-3253 . 241675)
- (-3254 . 239406) (-3255 . 239296) (-3256 . 239245) (-3257 . 239174)
- (-3258 . 239077) (-3259 . 238918) (-3260 . 238638) (-3261 . 238554)
- (-3262 . 238494) (-3263 . 238104) (-3264 . 237882) (-3265 . 237734)
- (-3266 . 236864) (-3267 . 236751) (-3268 . 236571) (** . 233482)
- (-3270 . 233392) (-3271 . 233254) (-3272 . 233155) (-3273 . 232812)
- (-3274 . 232612) (-3275 . 232498) (-3276 . 232376) (-3277 . 232178)
- (-3278 . 232097) (-3279 . 231993) (-3280 . 231746) (-3281 . 231693)
- (-3282 . 231168) (-3283 . 231094) (-3284 . 231037) (-3285 . 230855)
- (-3286 . 230745) (-3287 . 230570) (-3288 . 230167) (-3289 . 230110)
- (-3290 . 229936) (-3291 . 229276) (-3292 . 229172) (-3293 . 229065)
- (-3294 . 229013) (-3295 . 228879) (-3296 . 228793) (-3297 . 228581)
- (-3298 . 228509) (-3299 . 228337) (-3300 . 228193) (-3301 . 228020)
- (-3302 . 227924) (-3303 . 227805) (-3304 . 227753) (-3305 . 227669)
- (-3306 . 227601) (-3307 . 227469) (-3308 . 227311) (-3309 . 227260)
- (-3310 . 226899) (-3311 . 226825) (-3312 . 226666) (-3313 . 226550)
- (-3314 . 226480) (-3315 . 226424) (-3316 . 226325) (-3317 . 226144)
- (-3318 . 226070) (-3319 . 224102) (-3320 . 222904) (-3321 . 222835)
- (-3322 . 222783) (-3323 . 222407) (-3324 . 222313) (-3325 . 222225)
- (-3326 . 222157) (-3327 . 221879) (-3328 . 221545) (-3329 . 221380)
- (-3330 . 221261) (-3331 . 221124) (-3332 . 221031) (-3333 . 220901)
- (-3334 . 220791) (-3335 . 220720) (-3336 . 220489) (-3337 . 220316)
- (-3338 . 219563) (-3339 . 219410) (-3340 . 219338) (-3341 . 219244)
- (-3342 . 219086) (-3343 . 219013) (-3344 . 218947) (-3345 . 218880)
- (-3346 . 218743) (-3347 . 218591) (-3348 . 217823) (-3349 . 217625)
- (-3350 . 217435) (-3351 . 217376) (-3352 . 217274) (-3353 . 217154)
- (-3354 . 217103) (-3355 . 216624) (-3356 . 216562) (-3357 . 216394)
- (-3358 . 216196) (-3359 . 215604) (-3360 . 215061) (-3361 . 214898)
- (-3362 . 214753) (-3363 . 214656) (-3364 . 214622) (-3365 . 214412)
- (-3366 . 214317) (-3367 . 214178) (-3368 . 212966) (-9 . 212938)
- (-3370 . 212586) (-3371 . 212534) (-3372 . 212385) (-3373 . 212041)
- (-3374 . 211871) (-3375 . 211816) (-3376 . 211450) (-3377 . 211369)
- (-3378 . 211044) (-3379 . 210937) (-3380 . 210906) (-8 . 210878)
- (-3382 . 210771) (-3383 . 210698) (-3384 . 210566) (-3385 . 210307)
- (-3386 . 206147) (-3387 . 206031) (-3388 . 205962) (-3389 . 205812)
- (-3390 . 205315) (-3391 . 205232) (-3392 . 205166) (-3393 . 205138)
- (-7 . 205110) (-3395 . 205036) (-3396 . 204880) (-3397 . 204689)
- (-3398 . 204433) (-3399 . 204399) (-3400 . 203183) (-3401 . 202956)
- (-3402 . 202900) (-3403 . 202060) (-3404 . 201930) (-3405 . 201756)
- (-3406 . 201690) (-3407 . 201635) (-3408 . 201304) (-3409 . 201238)
- (-3410 . 200878) (-3411 . 200579) (-3412 . 200480) (-3413 . 200371)
- (-3414 . 200206) (-3415 . 199532) (-3416 . 199425) (-3417 . 199355)
- (-3418 . 199284) (-3419 . 199141) (-3420 . 199022) (-3421 . 197937)
- (-3422 . 197567) (-3423 . 197452) (-3424 . 197381) (-3425 . 197328)
- (-3426 . 197271) (-3427 . 197194) (-3428 . 196927) (-3429 . 196868)
- (-3430 . 196764) (-3431 . 196632) (-3432 . 196532) (-3433 . 196454)
- (-3434 . 196197) (-3435 . 195318) (-3436 . 195176) (-3437 . 194977)
- (-3438 . 194906) (-3439 . 194349) (-3440 . 194267) (-3441 . 194146)
- (-3442 . 194089) (-3443 . 193942) (-3444 . 193889) (-3445 . 193665)
- (-3446 . 193597) (-3447 . 193431) (-3448 . 192978) (-3449 . 192908)
- (-3450 . 192682) (-3451 . 192300) (-3452 . 192229) (-3453 . 192170)
- (-3454 . 192069) (-3455 . 191998) (-3456 . 191882) (-3457 . 191104)
- (-3458 . 190855) (-3459 . 190641) (-3460 . 190248) (-3461 . 190162)
- (-3462 . 189716) (-3463 . 189523) (-3464 . 189470) (-3465 . 189307)
- (-3466 . 189119) (-3467 . 188939) (-3468 . 188887) (-3469 . 188835)
- (-3470 . 188778) (-3471 . 188583) (-3472 . 188534) (-3473 . 188389)
- (-3474 . 188280) (-3475 . 188229) (-3476 . 187737) (-3477 . 187640)
- (-3478 . 187539) (-3479 . 187398) (-3480 . 187345) (-3481 . 187155)
- (-3482 . 186788) (-3483 . 186414) (-3484 . 186204) (-3485 . 186103)
- (-3486 . 186053) (-3487 . 185980) (-3488 . 185804) (-3489 . 185725)
- (-3490 . 185475) (-3491 . 185398) (-3492 . 185175) (-3493 . 184686)
- (-3494 . 184559) (-3495 . 184406) (-3496 . 184313) (-3497 . 183862)
- (-3498 . 183806) (-3499 . 183734) (-3500 . 183600) (-3501 . 183531)
- (-3502 . 183140) (-3503 . 182824) (-3504 . 182743) (-3505 . 182691)
- (-3506 . 182308) (-3507 . 181607) (-3508 . 181471) (-3509 . 181139)
- (-3510 . 181016) (-3511 . 180935) (-3512 . 180861) (-3513 . 180774)
- (-3514 . 180673) (-3515 . 180411) (-3516 . 180207) (-3517 . 180052)
- (-3518 . 179507) (-3519 . 179403) (-3520 . 179324) (-3521 . 179147)
- (-3522 . 178707) (-3523 . 178516) (-3524 . 178338) (-3525 . 178194)
- (-3526 . 178117) (-3527 . 177810) (-3528 . 177426) (-3529 . 177241)
- (-3530 . 177037) (-3531 . 176927) (-3532 . 176646) (-3533 . 175911)
- (-3534 . 175883) (-3535 . 175806) (-3536 . 175747) (-3537 . 175667)
- (-3538 . 175590) (-3539 . 175490) (-3540 . 175421) (-3541 . 175333)
- (-3542 . 175171) (-3543 . 175139) (-3544 . 174722) (-3545 . 174671)
- (-3546 . 174432) (-3547 . 174404) (-3548 . 173302) (-3549 . 173250)
- (-3550 . 173163) (-3551 . 173034) (-3552 . 172748) (-3553 . 172693)
- (-3554 . 172608) (-3555 . 172465) (-3556 . 172387) (-3557 . 172109)
- (-3558 . 172054) (-3559 . 171994) (-3560 . 171899) (-3561 . 171566)
- (-3562 . 171448) (-3563 . 171395) (-3564 . 171297) (-3565 . 171231)
- (-3566 . 171082) (-3567 . 171027) (-3568 . 170999) (-3569 . 170895)
- (-3570 . 170722) (-3571 . 170606) (-3572 . 170541) (-3573 . 170487)
- (-3574 . 170413) (-3575 . 170145) (-3576 . 169783) (-3577 . 169655)
- (-3578 . 169461) (-3579 . 169346) (-3580 . 169257) (-3581 . 169134)
- (-3582 . 169067) (-3583 . 168904) (-3584 . 168803) (-3585 . 168753)
- (-3586 . 168150) (-3587 . 168062) (-3588 . 168008) (-3589 . 167786)
- (-3590 . 166606) (-3591 . 166313) (-3592 . 166168) (-3593 . 166107)
- (-3594 . 165725) (-3595 . 165598) (-3596 . 165352) (-3597 . 165248)
- (-3598 . 164957) (-3599 . 164884) (-3600 . 164465) (-3601 . 164291)
- (-3602 . 164239) (-3603 . 164122) (-3604 . 163915) (-3605 . 163856)
- (-3606 . 163785) (-3607 . 163049) (-3608 . 162682) (-3609 . 162601)
- (-3610 . 162421) (-3611 . 162268) (-3612 . 161971) (-3613 . 161918)
- (-3614 . 161755) (-3615 . 161659) (-3616 . 161565) (-3617 . 161247)
- (-3618 . 161108) (-3619 . 160682) (-3620 . 160599) (-3621 . 160455)
- (-3622 . 160365) (-3623 . 160075) (-3624 . 160022) (-3625 . 159915)
- (-3626 . 159669) (-3627 . 159607) (-3628 . 159524) (-3629 . 159439)
- (-3630 . 159387) (-3631 . 159335) (-3632 . 159050) (-3633 . 158997)
- (-3634 . 158924) (-3635 . 158859) (-3636 . 158706) (-3637 . 158599)
- (-3638 . 158248) (-3639 . 158120) (-3640 . 157929) (-3641 . 157880)
- (-3642 . 157677) (-3643 . 157609) (-3644 . 157552) (-3645 . 157173)
- (-3646 . 157118) (-3647 . 157035) (-3648 . 156921) (-3649 . 156813)
- (-3650 . 156567) (-3651 . 156452) (-3652 . 156348) (-3653 . 156290)
- (-3654 . 155971) (-3655 . 155633) (-3656 . 155563) (-3657 . 155467)
- (-3658 . 155397) (-3659 . 155020) (-3660 . 154950) (-3661 . 154749)
- (-3662 . 154611) (-3663 . 154562) (-3664 . 154232) (-3665 . 154131)
- (-3666 . 154057) (-3667 . 153843) (-3668 . 153736) (-3669 . 153656)
- (-3670 . 153564) (-3671 . 153434) (-3672 . 153349) (-3673 . 153211)
- (-3674 . 153073) (-3675 . 152895) (-3676 . 152807) (-3677 . 152562)
- (-3678 . 152349) (-3679 . 152028) (-3680 . 151975) (-3681 . 151872)
- (-3682 . 151795) (-3683 . 151662) (-3684 . 151549) (-3685 . 151239)
- (-3686 . 151109) (-3687 . 150918) (-3688 . 150526) (-3689 . 150362)
- (-3690 . 150252) (-3691 . 150129) (-3692 . 149967) (-3693 . 149631)
- (-3694 . 149358) (-3695 . 149251) (-3696 . 149174) (-3697 . 149088)
- (-3698 . 142089) (-3699 . 141849) (-3700 . 141817) (-3701 . 141607)
- (-3702 . 141513) (-3703 . 141084) (-3704 . 141006) (-3705 . 140446)
- (-3706 . 140330) (-3707 . 140253) (-3708 . 140158) (-3709 . 139766)
- (-3710 . 139665) (-3711 . 139574) (-3712 . 139497) (-3713 . 139388)
- (-3714 . 139269) (-3715 . 139185) (-3716 . 139040) (-3717 . 138911)
- (-3718 . 138692) (-3719 . 138639) (-3720 . 138266) (-3721 . 138214)
- (-3722 . 138027) (-3723 . 137868) (-3724 . 137597) (-3725 . 137544)
- (-3726 . 137153) (-3727 . 137054) (-3728 . 136939) (-3729 . 136862)
- (-3730 . 136794) (-3731 . 136463) (-3732 . 136296) (-3733 . 135687)
- (-3734 . 134783) (-3735 . 134706) (-3736 . 134436) (-3737 . 134362)
- (-3738 . 134233) (-3739 . 134148) (-3740 . 134041) (-3741 . 133228)
- (-3742 . 133061) (-3743 . 132723) (-3744 . 132608) (-3745 . 132472)
- (-3746 . 132308) (-3747 . 132153) (-3748 . 132010) (-3749 . 131006)
- (-3750 . 130825) (-3751 . 130723) (-3752 . 130666) (-3753 . 130272)
- (-3754 . 129978) (-3755 . 129922) (-3756 . 129617) (-3757 . 129511)
- (-3758 . 129402) (-3759 . 129284) (-3760 . 129224) (-3761 . 129051)
- (-3762 . 128899) (-3763 . 128805) (-3764 . 128656) (-3765 . 128511)
- (-3766 . 128367) (-3767 . 128157) (-3768 . 128027) (-3769 . 127893)
- (-3770 . 127810) (-3771 . 127637) (-3772 . 127485) (-3773 . 127390)
- (-3774 . 127295) (-3775 . 127240) (-3776 . 127104) (-3777 . 126946)
- (-3778 . 126858) (-3779 . 126776) (-3780 . 126661) (-3781 . 126048)
- (-3782 . 125962) (-3783 . 125841) (-3784 . 125812) (-3785 . 125706)
- (-3786 . 125523) (-3787 . 123260) (-3788 . 123086) (-3789 . 122967)
- (-3790 . 122861) (-3791 . 122784) (-3792 . 122357) (-3793 . 120574)
- (-3794 . 120467) (-3795 . 120365) (-3796 . 120333) (-3797 . 120281)
- (-3798 . 120154) (-3799 . 120120) (-3800 . 119443) (-3801 . 119290)
- (-3802 . 119228) (-3803 . 119010) (-3804 . 118951) (-3805 . 118804)
- (-3806 . 117883) (-3807 . 117489) (-3808 . 117401) (-3809 . 117320)
- (-3810 . 117237) (-3811 . 117185) (-3812 . 117111) (-3813 . 117012)
- (-3814 . 116918) (-3815 . 115920) (-3816 . 115783) (-3817 . 115286)
- (-3818 . 115258) (-3819 . 115078) (-3820 . 114864) (-3821 . 114771)
- (-3822 . 114613) (-3823 . 114412) (-3824 . 114339) (-3825 . 114207)
- (-3826 . 113885) (-3827 . 113647) (-3828 . 113424) (-3829 . 113317)
- (-3830 . 113262) (-3831 . 112678) (-3832 . 112628) (-3833 . 112410)
- (-3834 . 112296) (-3835 . 112130) (-3836 . 112077) (-3837 . 112009)
- (-3838 . 111866) (-3839 . 111743) (-3840 . 111646) (-3841 . 111475)
- (-3842 . 111423) (-3843 . 111092) (-3844 . 110868) (-3845 . 110636)
- (-3846 . 110582) (-3847 . 110523) (-3848 . 109999) (-3849 . 109821)
- (-3850 . 109723) (-3851 . 109643) (-3852 . 109486) (-3853 . 109343)
- (-3854 . 109185) (-3855 . 109119) (-3856 . 108998) (-3857 . 108867)
- (-3858 . 108796) (-3859 . 108659) (-3860 . 108564) (-3861 . 108411)
- (-3862 . 108324) (-3863 . 108214) (-3864 . 108130) (-3865 . 108075)
- (-3866 . 108019) (-3867 . 107595) (-3868 . 107532) (-3869 . 107407)
- (-3870 . 107355) (-3871 . 107222) (-3872 . 107191) (-3873 . 106971)
- (-3874 . 106905) (-3875 . 106472) (-3876 . 105899) (-3877 . 105811)
- (-3878 . 105738) (-3879 . 105584) (-3880 . 105471) (-3881 . 105363)
- (-3882 . 105222) (-3883 . 105136) (-3884 . 104876) (-3885 . 104574)
- (-3886 . 104467) (-3887 . 104436) (-3888 . 104330) (-3889 . 104246)
- (-3890 . 104121) (-3891 . 103943) (-3892 . 103813) (-3893 . 103646)
- (-3894 . 103471) (-3895 . 103168) (-3896 . 103055) (-3897 . 102876)
- (-3898 . 102803) (-3899 . 102045) (-3900 . 101986) (-3901 . 101828)
- (-3902 . 101675) (-3903 . 101535) (-3904 . 101075) (-3905 . 100951)
- (-3906 . 100748) (-3907 . 100675) (-3908 . 100567) (-3909 . 99750)
- (-3910 . 99651) (-3911 . 99498) (-3912 . 99188) (-3913 . 98764)
- (-3914 . 98544) (-3915 . 98489) (-3916 . 98374) (-3917 . 98165)
- (-3918 . 98099) (-3919 . 97877) (-3920 . 97342) (-3921 . 97241)
- (-3922 . 97098) (-3923 . 96805) (-3924 . 96756) (-3925 . 96642)
- (-3926 . 96424) (-3927 . 96364) (-3928 . 96308) (-3929 . 95957)
- (-3930 . 95879) (-3931 . 95811) (-3932 . 95663) (-3933 . 95415)
- (-3934 . 94813) (-3935 . 94598) (-3936 . 94489) (-3937 . 93892)
- (-3938 . 93794) (-3939 . 93654) (-3940 . 93522) (-3941 . 93147)
- (-3942 . 93029) (-3943 . 92921) (-3944 . 92871) (-3945 . 92708)
- (-3946 . 92327) (-3947 . 92264) (-3948 . 92136) (-3949 . 92028)
- (-3950 . 91919) (-3951 . 91613) (-3952 . 91390) (-3953 . 91248)
- (-3954 . 91157) (-3955 . 90991) (-3956 . 90911) (-3957 . 90774)
- (-3958 . 90715) (-3959 . 90533) (-3960 . 90283) (-3961 . 90175)
- (-3962 . 89860) (-3963 . 89744) (-3964 . 89387) (-3965 . 89036)
- (-3966 . 88786) (-3967 . 88623) (-3968 . 88453) (-3969 . 88308)
- (-3970 . 87921) (-3971 . 87766) (-3972 . 87581) (-3973 . 87532)
- (-3974 . 87373) (-3975 . 87196) (-3976 . 87084) (-3977 . 86687)
- (-3978 . 86589) (-3979 . 86493) (-3980 . 86416) (-3981 . 86315)
- (-3982 . 86216) (-3983 . 86115) (-3984 . 86003) (-3985 . 85823)
- (-3986 . 85338) (-3987 . 85286) (-3988 . 85043) (-3989 . 84929)
- (-3990 . 84508) (-3991 . 84336) (-3992 . 84283) (-3993 . 83467)
- (-3994 . 83409) (-3995 . 83223) (-3996 . 83120) (-3997 . 83012)
- (-3998 . 82921) (-3999 . 82814) (-4000 . 82740) (-4001 . 82709)
- (-4002 . 82656) (-4003 . 82538) (-4004 . 82414) (-4005 . 82288)
- (-4006 . 82214) (-4007 . 82070) (-4008 . 81959) (-4009 . 81717)
- (-4010 . 81510) (-4011 . 81364) (-4012 . 81206) (-4013 . 81073)
- (-4014 . 80821) (-4015 . 80703) (-4016 . 80651) (-4017 . 80528)
- (-4018 . 80221) (-4019 . 80155) (-4020 . 80024) (-4021 . 79404)
- (-4022 . 79205) (-4023 . 79074) (-4024 . 79010) (-4025 . 78873)
- (-4026 . 78790) (-4027 . 78638) (-4028 . 78552) (-4029 . 78451)
- (-4030 . 78352) (-4031 . 78246) (-4032 . 78074) (-4033 . 77856)
- (-4034 . 77785) (-4035 . 77753) (-4036 . 77633) (-4037 . 76515)
- (-4038 . 76082) (-4039 . 75978) (-4040 . 75841) (-4041 . 75645)
- (-4042 . 75521) (-4043 . 75437) (-4044 . 75364) (-12 . 75192)
- (-4046 . 75087) (-4047 . 74636) (-4048 . 74277) (-4049 . 74219)
- (-4050 . 74117) (-4051 . 74001) (-4052 . 73913) (-4053 . 73785)
- (-4054 . 73706) (-4055 . 73628) (-4056 . 73401) (-4057 . 73258)
- (-4058 . 73120) (-4059 . 72303) (-4060 . 72148) (-4061 . 72120)
- (-4062 . 71516) (-4063 . 71399) (-4064 . 71158) (-4065 . 71012)
- (-4066 . 70896) (-4067 . 70730) (-4068 . 70677) (-4069 . 69859)
- (-4070 . 69595) (-4071 . 69518) (-4072 . 69365) (-4073 . 69282)
- (-4074 . 69216) (-4075 . 69114) (-4076 . 68805) (-4077 . 68681)
- (-4078 . 68629) (-4079 . 68556) (-4080 . 68404) (-4081 . 68311)
- (-4082 . 68169) (-4083 . 68105) (-4084 . 67947) (-4085 . 67810)
- (-4086 . 66735) (-4087 . 66657) (-4088 . 66604) (-4089 . 66399)
- (-4090 . 66289) (-4091 . 66063) (-4092 . 65747) (-4093 . 65687)
- (-4094 . 65483) (-4095 . 65409) (-4096 . 65130) (-4097 . 65060)
- (-4098 . 64828) (-4099 . 64715) (-4100 . 64496) (-4101 . 64336)
- (-4102 . 64269) (-4103 . 63465) (-4104 . 63388) (-4105 . 63151)
- (-4106 . 63042) (-4107 . 62794) (-4108 . 62722) (-4109 . 62607)
- (-4110 . 62307) (-4111 . 62112) (-4112 . 62060) (-4113 . 61745)
- (-4114 . 61636) (-4115 . 61548) (-4116 . 61439) (-4117 . 61387)
- (-4118 . 61299) (-4119 . 61248) (-4120 . 61107) (-4121 . 61038)
- (-4122 . 60967) (-4123 . 60791) (-4124 . 60491) (-4125 . 60346)
- (-4126 . 60191) (-4127 . 60093) (-4128 . 59970) (-4129 . 59918)
- (-4130 . 59799) (-4131 . 59700) (-4132 . 59421) (-4133 . 59292)
- (-4134 . 58788) (-4135 . 58700) (-4136 . 58351) (-4137 . 58117)
- (-4138 . 57962) (-4139 . 57694) (-4140 . 57526) (-4141 . 57400)
- (-4142 . 57312) (-4143 . 57238) (-4144 . 56808) (-4145 . 56718)
- (* . 52172) (-4147 . 51860) (-4148 . 51805) (-4149 . 51728)
- (-4150 . 51592) (-4151 . 51387) (-4152 . 50719) (-4153 . 50667)
- (-4154 . 50546) (-4155 . 50407) (-4156 . 50284) (-4157 . 49913)
- (-4158 . 49825) (-4159 . 49584) (-4160 . 49391) (-4161 . 49253)
- (-4162 . 48994) (-4163 . 48863) (-4164 . 48831) (-4165 . 48774)
- (-4166 . 48677) (-4167 . 46563) (-4168 . 46486) (-4169 . 46404)
- (-4170 . 46311) (-4171 . 46118) (-4172 . 45981) (-4173 . 45883)
- (-4174 . 45815) (-4175 . 45692) (-4176 . 45519) (-4177 . 45303)
- (-4178 . 45251) (-4179 . 45124) (-4180 . 44954) (-4181 . 44759)
- (-4182 . 44595) (-4183 . 44336) (-4184 . 44056) (-4185 . 43570)
- (-4186 . 43427) (-4187 . 43223) (-4188 . 43058) (-4189 . 42855)
- (-4190 . 42772) (-4191 . 42678) (-4192 . 42550) (-4193 . 42476)
- (-4194 . 42376) (-4195 . 42270) (-4196 . 42191) (-4197 . 41664)
- (-4198 . 41512) (-4199 . 41406) (-4200 . 41229) (-4201 . 41054)
- (-4202 . 38892) (-4203 . 38792) (-4204 . 38664) (-4205 . 38446)
- (-4206 . 38232) (-4207 . 38014) (-4208 . 37654) (-4209 . 37518)
- (-4210 . 37400) (-4211 . 37154) (-4212 . 35722) (-4213 . 35594)
- (-4214 . 35514) (-4215 . 35164) (-4216 . 35066) (-4217 . 34982)
- (-4218 . 34848) (-4219 . 34661) (-4220 . 34402) (-4221 . 34241)
- (-4222 . 33965) (-4223 . 33934) (-4224 . 33755) (-4225 . 33672)
- (-4226 . 33615) (-4227 . 33282) (-4228 . 32995) (-4229 . 32886)
- (-4230 . 32770) (-4231 . 32742) (-4232 . 32250) (-4233 . 32191)
- (-4234 . 31713) (-4235 . 31664) (-4236 . 31237) (-4237 . 31136)
- (-4238 . 31083) (-4239 . 30729) (-4240 . 30622) (-4241 . 30569)
- (-4242 . 30503) (-4243 . 30437) (-4244 . 30269) (-4245 . 30127)
- (-4246 . 30011) (-4247 . 29873) (-4248 . 29793) (-4249 . 29660)
- (-4250 . 29516) (-4251 . 29367) (-4252 . 29136) (-4253 . 29034)
- (-4254 . 28953) (-4255 . 28649) (-4256 . 28248) (-4257 . 28161)
- (-4258 . 27976) (-4259 . 27942) (-4260 . 27751) (-4261 . 27667)
- (-4262 . 27256) (-4263 . 26260) (-4264 . 26207) (-4265 . 26155)
- (-4266 . 25941) (-4267 . 25723) (-4268 . 25429) (-4269 . 25302)
- (-4270 . 25233) (-4271 . 24990) (-4272 . 24878) (-4273 . 24733)
- (-4274 . 24680) (-4275 . 24603) (-4276 . 24205) (-4277 . 23631)
- (-4278 . 23554) (-4279 . 23411) (-4280 . 23328) (-4281 . 23206)
- (-4282 . 23111) (-4283 . 23008) (-4284 . 22980) (-4285 . 22930)
- (-4286 . 22849) (-4287 . 22771) (-4288 . 22719) (-4289 . 22564)
- (-4290 . 22360) (-4291 . 22308) (-4292 . 22124) (-4293 . 21692)
- (-4294 . 21622) (-4295 . 21542) (-4296 . 21468) (-4297 . 21020)
- (-4298 . 20873) (-4299 . 20839) (-4300 . 20738) (-4301 . 20623)
- (-4302 . 20416) (-4303 . 20234) (-4304 . 19942) (-4305 . 19890)
- (-4306 . 19736) (-4307 . 19419) (-4308 . 19338) (-4309 . 18966)
- (-4310 . 18799) (-4311 . 18675) (-4312 . 18376) (-4313 . 18258)
- (-4314 . 18198) (-4315 . 17332) (-4316 . 17240) (-4317 . 17188)
- (-4318 . 17090) (-4319 . 15502) (-4320 . 15407) (-4321 . 15301)
- (-4322 . 14641) (-4323 . 13758) (-4324 . 13640) (-4325 . 13580)
- (-4326 . 13407) (-4327 . 13284) (-4328 . 13250) (-4329 . 13129)
- (-4330 . 12887) (-4331 . 12831) (-4332 . 12779) (-4333 . 12168)
- (-4334 . 12108) (-4335 . 11661) (-4336 . 11539) (-4337 . 11163)
- (-4338 . 11008) (-4339 . 10729) (-4340 . 10467) (-4341 . 10415)
- (-4342 . 10028) (-4343 . 9975) (-4344 . 9879) (-4345 . 9652)
- (-4346 . 9373) (-4347 . 9154) (-4348 . 9057) (-4349 . 8984)
- (-4350 . 8723) (-4351 . 8671) (-4352 . 8195) (-4353 . 8127)
- (-4354 . 8027) (-4355 . 7795) (-4356 . 7668) (-4357 . 7585)
- (-4358 . 7374) (-4359 . 7172) (-4360 . 7068) (-4361 . 5338)
- (-4362 . 5301) (-4363 . 4848) (-4364 . 4717) (-4365 . 4593)
- (-4366 . 4506) (-4367 . 4432) (-4368 . 3911) (-4369 . 3851)
- (-4370 . 3789) (-4371 . 2551) (-4372 . 2445) (-4373 . 2416)
- (-4374 . 2363) (-4375 . 2236) (-4376 . 2133) (-4377 . 2063)
- (-4378 . 1939) (-4379 . 1809) (-4380 . 1715) (-4381 . 1413)
- (-4382 . 1188) (-4383 . 1064) (-4384 . 660) (-4385 . 594)
- (-4386 . 421) (-4387 . 30)) \ No newline at end of file
+ (-12 (-4 *3 (-13 (-363) (-844))) (-5 *1 (-181 *3 *2))
+ (-4 *2 (-1233 (-169 *3))))))
+(((*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-922))))
+ ((*1 *1 *1 *2 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1087 (-225))) (-5 *1 (-923))))
+ ((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-379)) (-5 *2 (-1262)) (-5 *1 (-1259)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -2310 *3) (|:| |gap| (-767)) (|:| -1765 (-778 *3))
+ (|:| -3443 (-778 *3))))
+ (-5 *1 (-778 *3)) (-4 *3 (-1045))))
+ ((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1045)) (-4 *5 (-789)) (-4 *3 (-846))
+ (-5 *2
+ (-2 (|:| -2310 *1) (|:| |gap| (-767)) (|:| -1765 *1)
+ (|:| -3443 *1)))
+ (-4 *1 (-1059 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1045)) (-4 *4 (-789)) (-4 *5 (-846))
+ (-5 *2
+ (-2 (|:| -2310 *1) (|:| |gap| (-767)) (|:| -1765 *1)
+ (|:| -3443 *1)))
+ (-4 *1 (-1059 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1169)) (-5 *2 (-1 *6 *5)) (-5 *1 (-702 *4 *5 *6))
+ (-4 *4 (-611 (-536))) (-4 *5 (-1208)) (-4 *6 (-1208)))))
+((-1290 . 735580) (-1291 . 735034) (-1292 . 734692) (-1293 . 734590)
+ (-1294 . 734469) (-1295 . 734399) (-1296 . 734249) (-1297 . 733777)
+ (-1298 . 733611) (-1299 . 733299) (-1300 . 732966) (-1301 . 732814)
+ (-1302 . 732552) (-1303 . 732463) (-1304 . 731868) (-1305 . 731738)
+ (-1306 . 731134) (-1307 . 730570) (-1308 . 730436) (-1309 . 730301)
+ (-1310 . 729956) (-1311 . 729382) (-1312 . 729179) (-1313 . 729106)
+ (-1314 . 729004) (-1315 . 728935) (-1316 . 728805) (-1317 . 728555)
+ (-1318 . 728492) (-1319 . 728358) (-1320 . 728308) (-1321 . 727977)
+ (-1322 . 727774) (-1323 . 727701) (-1324 . 727496) (-1325 . 727324)
+ (-1326 . 727252) (-1327 . 727105) (-1328 . 726968) (-1329 . 726905)
+ (-1330 . 726771) (-1331 . 726350) (-1332 . 726147) (-1333 . 726091)
+ (-1334 . 726018) (-1335 . 725905) (-1336 . 725733) (-1337 . 725281)
+ (-1338 . 725218) (-1339 . 725087) (-1340 . 725019) (-1341 . 724816)
+ (-1342 . 724562) (-1343 . 724460) (-1344 . 724210) (-1345 . 724038)
+ (-1346 . 723744) (-1347 . 723252) (-1348 . 723199) (-1349 . 723068)
+ (-1350 . 723000) (-1351 . 722884) (-1352 . 722740) (-1353 . 722583)
+ (-1354 . 722528) (-1355 . 722356) (-1356 . 721908) (-1357 . 721548)
+ (-1358 . 721497) (-1359 . 721366) (-1360 . 721298) (-1361 . 721169)
+ (-1362 . 719829) (-1363 . 719734) (-1364 . 719656) (-1365 . 719478)
+ (-1366 . 719187) (-1367 . 718991) (-1368 . 718608) (-1369 . 718513)
+ (-1370 . 718460) (-1371 . 718266) (-1372 . 718169) (-1373 . 717795)
+ (-1374 . 717402) (-1375 . 717287) (-1376 . 717214) (-1377 . 717087)
+ (-1378 . 716948) (-1379 . 716888) (-1380 . 716790) (-1381 . 716638)
+ (-1382 . 716556) (-1383 . 716477) (-1384 . 716084) (-1385 . 715969)
+ (-1386 . 715887) (-1387 . 715759) (-1388 . 715620) (-1389 . 715563)
+ (-1390 . 715465) (-1391 . 715313) (-1392 . 715236) (-1393 . 715163)
+ (-1394 . 714955) (-1395 . 714770) (-1396 . 714555) (-1397 . 714442)
+ (-1398 . 714190) (-1399 . 714061) (-1400 . 714004) (-1401 . 713909)
+ (-1402 . 713233) (-1403 . 713032) (-1404 . 712973) (-1405 . 712890)
+ (-1406 . 712683) (-1407 . 712537) (-1408 . 712426) (-1409 . 712302)
+ (-1410 . 712217) (-1411 . 712004) (-1412 . 711909) (-1413 . 711851)
+ (-1414 . 711579) (-1415 . 711460) (-1416 . 711377) (-1417 . 711153)
+ (-1418 . 711015) (-1419 . 710672) (-1420 . 710516) (-1421 . 710264)
+ (-1422 . 709761) (-1423 . 709618) (-1424 . 709523) (-1425 . 709325)
+ (-1426 . 709241) (-1427 . 709158) (-1428 . 708852) (-1429 . 708714)
+ (-1430 . 708582) (-1431 . 708481) (-1432 . 708357) (-1433 . 707045)
+ (-1434 . 706937) (-1435 . 706842) (-1436 . 706813) (-1437 . 706729)
+ (-1438 . 706628) (-1439 . 706508) (-1440 . 706309) (-1441 . 706164)
+ (-1442 . 706005) (-1443 . 705753) (-1444 . 705638) (-1445 . 705517)
+ (-1446 . 705422) (-1447 . 705338) (-1448 . 705279) (-1449 . 704645)
+ (-1450 . 704525) (-1451 . 704380) (-1452 . 704256) (-1453 . 704124)
+ (-1454 . 704057) (-1455 . 703955) (-1456 . 703825) (-1457 . 703741)
+ (-1458 . 703617) (-1459 . 703018) (-1460 . 702877) (-1461 . 702720)
+ (-1462 . 702219) (-1463 . 701465) (-1464 . 701388) (-1465 . 701103)
+ (-1466 . 700784) (-1467 . 700710) (-1468 . 700608) (-1469 . 700496)
+ (-1470 . 700412) (-1471 . 700288) (-1472 . 699897) (-1473 . 699809)
+ (-1474 . 699458) (-1475 . 699185) (-1476 . 698928) (-1477 . 698813)
+ (-1478 . 698711) (-1479 . 698553) (-1480 . 698456) (-1481 . 698082)
+ (-1482 . 698029) (-1483 . 697980) (-1484 . 697892) (-1485 . 697661)
+ (-1486 . 697388) (-1487 . 697317) (-1488 . 697060) (-1489 . 696965)
+ (-1490 . 696851) (-1491 . 696713) (-1492 . 696643) (-1493 . 696588)
+ (-1494 . 696536) (-1495 . 696448) (-1496 . 696173) (-1497 . 696106)
+ (-1498 . 695808) (-1499 . 695438) (-1500 . 695336) (-1501 . 695256)
+ (-1502 . 695108) (-1503 . 695038) (-1504 . 694703) (-1505 . 694654)
+ (-1506 . 694566) (-1507 . 694179) (-1508 . 694128) (-1509 . 694026)
+ (-1510 . 693739) (-1511 . 693538) (-1512 . 693469) (-1513 . 693385)
+ (-1514 . 693291) (-1515 . 692962) (-1516 . 692781) (-1517 . 692747)
+ (-1518 . 692301) (-1519 . 692249) (-1520 . 692111) (-1521 . 691868)
+ (-1522 . 691817) (-1523 . 691672) (-1524 . 691561) (-1525 . 691239)
+ (-1526 . 691183) (-1527 . 691099) (-1528 . 691002) (-1529 . 690814)
+ (-1530 . 690762) (-1531 . 690728) (-1532 . 690582) (-1533 . 690444)
+ (-1534 . 690201) (-1535 . 690060) (-1536 . 689964) (-1537 . 689490)
+ (-1538 . 689046) (-1539 . 688938) (-1540 . 688854) (-1541 . 688663)
+ (-1542 . 684665) (-1543 . 684613) (-1544 . 684525) (-1545 . 684282)
+ (-1546 . 684077) (-1547 . 683920) (-1548 . 683824) (-1549 . 683717)
+ (-1550 . 683294) (-1551 . 683092) (-1552 . 683008) (-1553 . 682841)
+ (-1554 . 682483) (-1555 . 682403) (-1556 . 682257) (-1557 . 682169)
+ (-1558 . 681926) (-1559 . 681596) (-1560 . 681569) (-1561 . 681403)
+ (-1562 . 681313) (-1563 . 681205) (-1564 . 680778) (-1565 . 680008)
+ (-1566 . 679517) (-1567 . 679176) (-1568 . 679124) (-1569 . 679036)
+ (-1570 . 678805) (-1571 . 678754) (-1572 . 678631) (-1573 . 678540)
+ (-1574 . 678315) (-1575 . 678164) (-1576 . 678074) (-1577 . 677997)
+ (-1578 . 677424) (-1579 . 677254) (-1580 . 677166) (-1581 . 677020)
+ (-1582 . 676891) (-1583 . 676660) (-1584 . 676589) (-1585 . 676445)
+ (-1586 . 676417) (-1587 . 676274) (-1588 . 676132) (-1589 . 676009)
+ (-1590 . 675738) (-1591 . 675528) (-1592 . 675282) (-1593 . 675230)
+ (-1594 . 675142) (-1595 . 674990) (-1596 . 674249) (-1597 . 674165)
+ (-1598 . 674069) (-1599 . 673650) (-1600 . 673506) (-1601 . 673235)
+ (-1602 . 673158) (-1603 . 672824) (-1604 . 672443) (-1605 . 672355)
+ (-1606 . 672171) (-1607 . 671430) (-1608 . 671333) (-1609 . 671190)
+ (-1610 . 670940) (-1611 . 670770) (-1612 . 670383) (-1613 . 670114)
+ (-1614 . 669916) (-1615 . 669864) (-1616 . 669773) (-1617 . 669668)
+ (-1618 . 668980) (-1619 . 668501) (-1620 . 668430) (-1621 . 667753)
+ (-1622 . 667629) (-1623 . 666926) (-1624 . 666684) (-1625 . 666455)
+ (-1626 . 666406) (-1627 . 666312) (-1628 . 666189) (-1629 . 665613)
+ (-1630 . 665254) (-1631 . 665045) (-1632 . 664890) (-1633 . 664651)
+ (-1634 . 664591) (-1635 . 664435) (-1636 . 664225) (-1637 . 664049)
+ (-1638 . 663955) (-1639 . 663903) (-1640 . 663472) (-1641 . 663364)
+ (-1642 . 662788) (-1643 . 662715) (-1644 . 662275) (-1645 . 662097)
+ (-1646 . 661986) (-1647 . 661909) (-1648 . 661800) (-1649 . 661572)
+ (-1650 . 661440) (-1651 . 661018) (-1652 . 660969) (-1653 . 660872)
+ (-1654 . 660764) (-1655 . 660188) (-1656 . 660044) (-1657 . 659834)
+ (-1658 . 659781) (-1659 . 659640) (-1660 . 659563) (-1661 . 659480)
+ (-1662 . 659253) (-1663 . 659201) (-1664 . 659151) (-1665 . 658846)
+ (-1666 . 658160) (-1667 . 658090) (-1668 . 657912) (-1669 . 657859)
+ (-1670 . 657808) (-1671 . 657685) (-1672 . 657532) (-1673 . 657261)
+ (-1674 . 657208) (-1675 . 657158) (-1676 . 657109) (-1677 . 657022)
+ (-1678 . 656712) (-1679 . 656026) (-1680 . 655977) (-1681 . 655907)
+ (-1682 . 655786) (-1683 . 655590) (-1684 . 655338) (-1685 . 655000)
+ (-1686 . 654641) (-1687 . 654503) (-1688 . 654450) (-1689 . 654398)
+ (-1690 . 653748) (-1691 . 653005) (-1692 . 634291) (-1693 . 634172)
+ (-1694 . 633423) (-1695 . 633353) (-1696 . 633283) (-1697 . 632968)
+ (-1698 . 632490) (-1699 . 632403) (-1700 . 632065) (-1701 . 631773)
+ (-1702 . 631632) (-1703 . 631372) (-1704 . 631323) (-1705 . 631146)
+ (-1706 . 628325) (-1707 . 628232) (-1708 . 627993) (-1709 . 627419)
+ (-1710 . 627325) (-1711 . 627047) (-1712 . 626997) (-1713 . 626862)
+ (-1714 . 626784) (-1715 . 626492) (-1716 . 626014) (-1717 . 625962)
+ (-1718 . 625690) (-1719 . 625640) (-1720 . 625495) (-1721 . 624921)
+ (-1722 . 624827) (-1723 . 624706) (-1724 . 624656) (-1725 . 624521)
+ (-1726 . 624443) (-1727 . 624151) (-1728 . 624028) (-1729 . 623994)
+ (-1730 . 623945) (-1731 . 623519) (-1732 . 623414) (-1733 . 623182)
+ (-1734 . 622608) (-1735 . 622528) (-1736 . 622434) (-1737 . 622307)
+ (-1738 . 622257) (-1739 . 622194) (-1740 . 622095) (-1741 . 621803)
+ (-1742 . 621567) (-1743 . 621336) (-1744 . 621270) (-1745 . 621205)
+ (-1746 . 621087) (-1747 . 620400) (-1748 . 620306) (-1749 . 620221)
+ (-1750 . 620153) (-1751 . 618955) (-1752 . 618896) (-1753 . 618642)
+ (-1754 . 618555) (-1755 . 618437) (-1756 . 618400) (-1757 . 618301)
+ (-1758 . 617614) (-1759 . 617520) (-1760 . 617447) (-1761 . 617243)
+ (-1762 . 617185) (-1763 . 616994) (-1764 . 616887) (-1765 . 616637)
+ (-1766 . 616478) (-1767 . 615298) (-1768 . 615161) (-1769 . 614672)
+ (-1770 . 613985) (-1771 . 613899) (-1772 . 613806) (-1773 . 613733)
+ (-1774 . 613660) (-1775 . 611391) (-1776 . 611113) (-1777 . 610685)
+ (-1778 . 610390) (-1779 . 610303) (-1780 . 609886) (-1781 . 609648)
+ (-1782 . 609538) (-1783 . 608963) (-1784 . 608877) (-1785 . 608806)
+ (-1786 . 608688) (-1787 . 608307) (-1788 . 608144) (-1789 . 608003)
+ (-1790 . 607895) (-1791 . 607824) (-1792 . 606715) (-1793 . 606140)
+ (-1794 . 606087) (-1795 . 606001) (-1796 . 605945) (-1797 . 605893)
+ (-1798 . 605446) (-1799 . 605247) (-1800 . 605165) (-1801 . 604821)
+ (-1802 . 604654) (-1803 . 604462) (-1804 . 604395) (-1805 . 603820)
+ (-1806 . 603734) (-1807 . 603678) (-1808 . 603597) (-1809 . 603362)
+ (-1810 . 603223) (-1811 . 603082) (-1812 . 600819) (-1813 . 599633)
+ (-1814 . 599472) (-1815 . 599440) (-1816 . 598866) (-1817 . 598780)
+ (-1818 . 597484) (-1819 . 597428) (-1820 . 597347) (-1821 . 597092)
+ (-1822 . 596989) (-1823 . 596791) (-1824 . 596511) (-1825 . 595329)
+ (-1826 . 594782) (-1827 . 594696) (-1828 . 594122) (-1829 . 594048)
+ (-1830 . 593977) (-1831 . 593896) (-1832 . 593799) (-1833 . 593696)
+ (-1834 . 593498) (-1835 . 593342) (-1836 . 591136) (-1837 . 590937)
+ (-1838 . 590905) (-1839 . 590331) (-1840 . 590226) (-1841 . 590155)
+ (-1842 . 590103) (-1843 . 590022) (-1844 . 589925) (-1845 . 589640)
+ (-1846 . 589422) (-1847 . 589274) (-1848 . 589188) (-1849 . 587884)
+ (-1850 . 587310) (-1851 . 587084) (-1852 . 587013) (-1853 . 586759)
+ (-1854 . 586653) (-1855 . 586594) (-1856 . 586535) (-1857 . 586095)
+ (-1858 . 585947) (-1859 . 585782) (-1860 . 585358) (-1861 . 584784)
+ (-1862 . 584704) (-1863 . 584623) (-1864 . 584302) (-1865 . 583826)
+ (-1866 . 583484) (-1867 . 583410) (-1868 . 583001) (-1869 . 582778)
+ (-1870 . 582451) (-1871 . 582027) (-1872 . 581950) (-1873 . 581870)
+ (-1874 . 581790) (-1875 . 581705) (-1876 . 581252) (-1877 . 581151)
+ (-1878 . 580987) (-1879 . 580853) (-1880 . 580683) (-1881 . 580123)
+ (-1882 . 579970) (-1883 . 579874) (-1884 . 579794) (-1885 . 579709)
+ (-1886 . 579624) (-1887 . 579522) (-1888 . 579403) (-1889 . 579240)
+ (-1890 . 579206) (-1891 . 579129) (-1892 . 578044) (-1893 . 576926)
+ (-1894 . 576517) (-1895 . 576411) (-1896 . 576319) (-1897 . 576257)
+ (-1898 . 576173) (-1899 . 575957) (-1900 . 575793) (-1901 . 575670)
+ (-1902 . 575593) (-1903 . 573863) (-1904 . 572005) (-1905 . 571906)
+ (-1906 . 571783) (-1907 . 571479) (-1908 . 571089) (-1909 . 570927)
+ (-1910 . 570757) (-1911 . 570620) (-1912 . 570403) (-1913 . 568826)
+ (-1914 . 568747) (-1915 . 567874) (-1916 . 567793) (-1917 . 566906)
+ (-1918 . 566740) (-1919 . 566656) (-1920 . 566498) (-1921 . 566424)
+ (-1922 . 566371) (-1923 . 566241) (-1924 . 566110) (-1925 . 565308)
+ (-1926 . 565095) (-1927 . 565016) (-1928 . 564944) (-1929 . 564362)
+ (-1930 . 564281) (-1931 . 564091) (-1932 . 563968) (-1933 . 563915)
+ (-1934 . 563785) (-1935 . 563654) (-1936 . 563144) (-1937 . 562971)
+ (-1938 . 562877) (-1939 . 562672) (-1940 . 561854) (-1941 . 561493)
+ (-1942 . 561282) (-1943 . 561037) (-1944 . 560908) (-1945 . 560781)
+ (-1946 . 560619) (-1947 . 560211) (-1948 . 560132) (-1949 . 559942)
+ (-1950 . 559690) (-1951 . 559633) (-1952 . 559518) (-1953 . 559458)
+ (-1954 . 559331) (-1955 . 559227) (-1956 . 558567) (-1957 . 558463)
+ (-1958 . 557306) (-1959 . 557207) (-1960 . 556955) (-1961 . 556883)
+ (-1962 . 556650) (-1963 . 556597) (-1964 . 556470) (-1965 . 556411)
+ (-1966 . 556339) (-1967 . 556266) (-1968 . 556148) (-1969 . 555902)
+ (-1970 . 555845) (-1971 . 555745) (-1972 . 555522) (-1973 . 555469)
+ (-1974 . 555342) (-1975 . 555283) (-1976 . 555211) (-1977 . 555143)
+ (-1978 . 555022) (-1979 . 554776) (-1980 . 554558) (-1981 . 554160)
+ (-1982 . 554054) (-1983 . 554012) (-1984 . 553799) (-1985 . 553656)
+ (-1986 . 553410) (-1987 . 553192) (-1988 . 552974) (-1989 . 552851)
+ (-1990 . 552658) (-1991 . 552552) (-1992 . 552106) (-1993 . 552054)
+ (-1994 . 551911) (-1995 . 551665) (-1996 . 551492) (-1997 . 551443)
+ (-1998 . 551239) (-1999 . 550908) (-2000 . 550859) (-2001 . 550019)
+ (-2002 . 549573) (-2003 . 549518) (-2004 . 549378) (-2005 . 549131)
+ (-2006 . 548913) (-2007 . 548885) (-2008 . 548662) (-2009 . 548366)
+ (-2010 . 546510) (-2011 . 546064) (-2012 . 545974) (-2013 . 545801)
+ (-2014 . 545685) (-2015 . 545591) (-2016 . 545352) (-2017 . 545056)
+ (-2018 . 544988) (-2019 . 544463) (-2020 . 544376) (-2021 . 544290)
+ (-2022 . 544110) (-2023 . 544000) (-2024 . 543827) (-2025 . 543715)
+ (-2026 . 543574) (-2027 . 543264) (-2028 . 543144) (-2029 . 543076)
+ (-2030 . 542986) (-2031 . 541135) (-2032 . 541049) (-2033 . 540926)
+ (-2034 . 540816) (-2035 . 540643) (-2036 . 540531) (-2037 . 540393)
+ (-2038 . 540076) (-2039 . 540008) (-2040 . 539915) (-2041 . 539834)
+ (-2042 . 539748) (-2043 . 539624) (-2044 . 539451) (-2045 . 539339)
+ (-2046 . 539200) (-2047 . 539071) (-2048 . 538317) (-2049 . 538231)
+ (-2050 . 538130) (-2051 . 537858) (-2052 . 537746) (-2053 . 537493)
+ (-2054 . 537302) (-2055 . 537119) (-2056 . 536984) (-2057 . 531646)
+ (-2058 . 531584) (-2059 . 531454) (-2060 . 531351) (-2061 . 531295)
+ (-2062 . 524296) (-2063 . 524184) (-2064 . 524156) (-2065 . 523900)
+ (-2066 . 523412) (-2067 . 523225) (-2068 . 523090) (-2069 . 522883)
+ (-2070 . 522794) (-2071 . 522738) (-2072 . 522488) (-2073 . 522376)
+ (-2074 . 522216) (-2075 . 522132) (-2076 . 522003) (-2077 . 521879)
+ (-2078 . 521714) (-2079 . 521504) (-2080 . 521448) (-2081 . 521272)
+ (-2082 . 521118) (-2083 . 520901) (-2084 . 520794) (-2085 . 520673)
+ (-2086 . 520508) (-2087 . 520449) (-2088 . 520393) (-2089 . 520252)
+ (-2090 . 520174) (-2091 . 520121) (-2092 . 519880) (-2093 . 519663)
+ (-2094 . 519522) (-2095 . 519404) (-2096 . 519240) (-2097 . 519187)
+ (-2098 . 519131) (-2099 . 519072) (-2100 . 518929) (-2101 . 518744)
+ (-2102 . 518454) (-2103 . 518195) (-2104 . 518063) (-2105 . 517927)
+ (-2106 . 517788) (-2107 . 515656) (-2108 . 515567) (-2109 . 515503)
+ (-2110 . 515297) (-2111 . 515239) (-2112 . 515101) (-2113 . 514667)
+ (-2114 . 514553) (-2115 . 514420) (-2116 . 514323) (-2117 . 514211)
+ (-2118 . 514103) (-2119 . 512135) (-2120 . 512077) (-2121 . 512017)
+ (-2122 . 511349) (-2123 . 510795) (-2124 . 510647) (-2125 . 510575)
+ (-2126 . 510513) (-2127 . 510412) (-2128 . 510324) (-2129 . 510216)
+ (-2130 . 505674) (-2131 . 505546) (-2132 . 505208) (-2133 . 505032)
+ (-2134 . 504902) (-2135 . 504763) (-2136 . 504706) (-2137 . 504609)
+ (-2138 . 503201) (-2139 . 503053) (-2140 . 502945) (-2141 . 502820)
+ (-2142 . 502532) (-2143 . 501831) (-2144 . 501649) (-2145 . 501375)
+ (-2146 . 501271) (-2147 . 501211) (-2148 . 501096) (-2149 . 500908)
+ (-2150 . 500629) (-2151 . 500501) (-2152 . 500417) (-2153 . 499739)
+ (-2154 . 499563) (-2155 . 499384) (-2156 . 499277) (-2157 . 498880)
+ (-2158 . 498806) (-2159 . 498721) (-2160 . 498554) (-2161 . 498480)
+ (-2162 . 498409) (-2163 . 498182) (-2164 . 498049) (-2165 . 497867)
+ (-2166 . 497752) (-2167 . 497642) (-2168 . 497118) (-2169 . 497066)
+ (-2170 . 496965) (-2171 . 496798) (-2172 . 496568) (-2173 . 491054)
+ (-2174 . 490937) (-2175 . 490622) (-2176 . 490395) (-2177 . 490220)
+ (-2178 . 490168) (-2179 . 489903) (-2180 . 489724) (-2181 . 489620)
+ (-2182 . 489507) (-2183 . 489229) (-2184 . 489027) (-2185 . 488635)
+ (-2186 . 488450) (-2187 . 488366) (-2188 . 488269) (-2189 . 488141)
+ (-2190 . 488086) (-2191 . 487979) (-2192 . 487800) (-2193 . 487745)
+ (-2194 . 487641) (-2195 . 487528) (-2196 . 487434) (-2197 . 487346)
+ (-2198 . 487122) (-2199 . 487041) (-2200 . 486944) (-2201 . 486741)
+ (-2202 . 486689) (-2203 . 486502) (-2204 . 486423) (-2205 . 486313)
+ (-2206 . 485869) (-2207 . 485772) (-2208 . 485648) (-2209 . 485567)
+ (-2210 . 485469) (-2211 . 485290) (-2212 . 484280) (-2213 . 484206)
+ (-2214 . 483824) (-2215 . 483754) (-2216 . 483644) (-2217 . 483412)
+ (-2218 . 483350) (-2219 . 479684) (-2220 . 479617) (-2221 . 479409)
+ (-2222 . 479328) (-2223 . 479161) (-2224 . 475825) (-2225 . 475298)
+ (-2226 . 475224) (-2227 . 474917) (-2228 . 474738) (-2229 . 474665)
+ (-2230 . 474549) (-2231 . 474344) (-2232 . 474186) (-2233 . 474134)
+ (-2234 . 474081) (-2235 . 472611) (-2236 . 472516) (-2237 . 472434)
+ (-2238 . 458320) (-2239 . 458149) (-2240 . 457982) (-2241 . 457455)
+ (-2242 . 457372) (-2243 . 453309) (-2244 . 453130) (-2245 . 453075)
+ (-2246 . 452965) (-2247 . 452783) (-2248 . 452597) (-2249 . 452545)
+ (-2250 . 452492) (-2251 . 452397) (-2252 . 452316) (-2253 . 452069)
+ (-2254 . 451788) (-2255 . 451301) (-2256 . 451218) (-2257 . 451031)
+ (-2258 . 450958) (-2259 . 450842) (-2260 . 450712) (-2261 . 450659)
+ (-2262 . 450523) (-2263 . 450426) (-2264 . 450005) (-2265 . 449950)
+ (-2266 . 449897) (-2267 . 449515) (-2268 . 449460) (-2269 . 449329)
+ (-2270 . 449119) (-2271 . 449060) (-2272 . 448962) (-2273 . 448861)
+ (-2274 . 448334) (-2275 . 448260) (-2276 . 448176) (-2277 . 447180)
+ (-2278 . 446823) (-2279 . 446674) (-2280 . 446463) (-2281 . 446404)
+ (-2282 . 446306) (-2283 . 446237) (-2284 . 446052) (-2285 . 445978)
+ (-2286 . 443633) (-2287 . 443560) (-2288 . 443152) (-2289 . 442741)
+ (-2290 . 442203) (-2291 . 442012) (-2292 . 441947) (-2293 . 441570)
+ (-2294 . 441319) (-2295 . 439777) (-2296 . 439727) (-2297 . 439584)
+ (-2298 . 439510) (-2299 . 439102) (-2300 . 438947) (-2301 . 438804)
+ (-2302 . 438221) (-2303 . 438156) (-2304 . 438103) (-2305 . 438005)
+ (-2306 . 437292) (-2307 . 436774) (-2308 . 431661) (-2309 . 431582)
+ (-2310 . 431224) (-2311 . 431106) (-2312 . 430951) (-2313 . 430801)
+ (-2314 . 430545) (-2315 . 430489) (-2316 . 430406) (-2317 . 429756)
+ (-2318 . 429626) (-2319 . 428984) (-2320 . 428929) (-2321 . 428769)
+ (-2322 . 428686) (-2323 . 428563) (-2324 . 428269) (-2325 . 428213)
+ (-2326 . 428018) (-2327 . 427201) (-2328 . 427145) (-2329 . 427086)
+ (-2330 . 426941) (-2331 . 426786) (-2332 . 426679) (-2333 . 426382)
+ (-2334 . 426214) (-2335 . 426118) (-2336 . 426034) (-2337 . 425974)
+ (-2338 . 425877) (-2339 . 425311) (-2340 . 425212) (-2341 . 425094)
+ (-2342 . 424939) (-2343 . 424832) (-2344 . 424532) (-2345 . 424462)
+ (-2346 . 424393) (-2347 . 424284) (-2348 . 424179) (-2349 . 424058)
+ (-2350 . 423492) (-2351 . 423393) (-2352 . 423211) (-2353 . 423074)
+ (-2354 . 422964) (-2355 . 422834) (-2356 . 422736) (-2357 . 422303)
+ (-2358 . 422207) (-2359 . 422136) (-2360 . 422037) (-2361 . 421913)
+ (-2362 . 421776) (-2363 . 421638) (-2364 . 421505) (-2365 . 421407)
+ (-2366 . 421232) (-2367 . 421136) (-2368 . 421062) (-2369 . 420921)
+ (-2370 . 420822) (-2371 . 420529) (-2372 . 420392) (-2373 . 420282)
+ (-2374 . 420146) (-2375 . 420048) (-2376 . 419970) (-2377 . 419743)
+ (-2378 . 419664) (-2379 . 419587) (-2380 . 419341) (-2381 . 419110)
+ (-2382 . 419011) (-2383 . 418718) (-2384 . 418587) (-2385 . 418450)
+ (-2386 . 418311) (-2387 . 418157) (-2388 . 417997) (-2389 . 417808)
+ (-2390 . 417731) (-2391 . 417485) (-2392 . 417047) (-2393 . 416948)
+ (-2394 . 416661) (-2395 . 416524) (-2396 . 416368) (-2397 . 415083)
+ (-2398 . 414923) (-2399 . 414743) (-2400 . 414687) (-2401 . 414603)
+ (-2402 . 413639) (-2403 . 413540) (-2404 . 413481) (-2405 . 413197)
+ (-2406 . 413060) (-2407 . 412787) (-2408 . 412462) (-2409 . 411281)
+ (-2410 . 411128) (-2411 . 410677) (-2412 . 410621) (-2413 . 410479)
+ (-2414 . 410232) (-2415 . 410118) (-2416 . 409812) (-2417 . 409665)
+ (-2418 . 409609) (-2419 . 409539) (-2420 . 409158) (-2421 . 408400)
+ (-2422 . 408248) (-2423 . 408181) (-2424 . 408059) (-2425 . 407757)
+ (-2426 . 407643) (-2427 . 407555) (-2428 . 407352) (-2429 . 407197)
+ (-2430 . 407084) (-2431 . 407005) (-2432 . 406752) (-2433 . 405903)
+ (-2434 . 405723) (-2435 . 405656) (-2436 . 405534) (-2437 . 405232)
+ (-2438 . 405118) (-2439 . 405033) (-2440 . 404922) (-2441 . 404818)
+ (-2442 . 404564) (-2443 . 404253) (-2444 . 400632) (-2445 . 400459)
+ (-2446 . 400396) (-2447 . 400256) (-2448 . 399954) (-2449 . 399840)
+ (-2450 . 399741) (-2451 . 399630) (-2452 . 399476) (-2453 . 399180)
+ (-2454 . 398828) (-2455 . 398566) (-2456 . 398045) (-2457 . 397852)
+ (-2458 . 397511) (-2459 . 397397) (-2460 . 397298) (-2461 . 397230)
+ (-2462 . 397110) (-2463 . 396814) (-2464 . 396744) (-2465 . 396518)
+ (-2466 . 396260) (-2467 . 395738) (-2468 . 395410) (-2469 . 395294)
+ (-2470 . 395199) (-2471 . 395085) (-2472 . 394859) (-2473 . 394721)
+ (-2474 . 394611) (-2475 . 394482) (-2476 . 394221) (-2477 . 393946)
+ (-2478 . 393129) (-2479 . 392854) (-2480 . 392766) (-2481 . 392505)
+ (-2482 . 392388) (-2483 . 392360) (-2484 . 392260) (-2485 . 392157)
+ (-2486 . 392059) (-2487 . 391978) (-2488 . 391523) (-2489 . 391136)
+ (-2490 . 390964) (-2491 . 390773) (-2492 . 390704) (-2493 . 390626)
+ (-2494 . 390523) (-2495 . 386363) (-2496 . 386275) (-2497 . 386187)
+ (-2498 . 385838) (-2499 . 385654) (-2500 . 385431) (-2501 . 385087)
+ (-2502 . 384885) (-2503 . 384807) (-2504 . 384704) (-2505 . 384624)
+ (-2506 . 384176) (-2507 . 384088) (-2508 . 383987) (-2509 . 383907)
+ (-2510 . 383773) (-2511 . 383696) (-2512 . 382792) (-2513 . 382479)
+ (-2514 . 382317) (-2515 . 381990) (-2516 . 381911) (-2517 . 381422)
+ (-2518 . 380995) (-2519 . 380907) (-2520 . 380809) (-2521 . 379559)
+ (-2522 . 379434) (-2523 . 379251) (-2524 . 379085) (-2525 . 378941)
+ (-2526 . 378762) (-2527 . 378603) (-2528 . 378308) (-2529 . 378189)
+ (-2530 . 377569) (-2531 . 377481) (-2532 . 377409) (-2533 . 377194)
+ (-2534 . 377017) (-2535 . 376851) (-2536 . 376707) (-2537 . 376633)
+ (-2538 . 376501) (-2539 . 376391) (-2540 . 376317) (-2541 . 376244)
+ (-2542 . 375637) (-2543 . 375549) (-2544 . 374742) (-2545 . 374453)
+ (-2546 . 374319) (-2547 . 374175) (-2548 . 374034) (-2549 . 373983)
+ (-2550 . 373927) (-2551 . 373542) (-2552 . 373215) (-2553 . 372997)
+ (-2554 . 372903) (-2555 . 372831) (-2556 . 371629) (-2557 . 371422)
+ (-2558 . 371366) (-2559 . 370278) (-2560 . 369889) (-2561 . 369794)
+ (-2562 . 369766) (-2563 . 369588) (-2564 . 369500) (-2565 . 369164)
+ (-2566 . 369081) (-2567 . 368883) (-2568 . 368727) (-2569 . 368373)
+ (-2570 . 368278) (-2571 . 368079) (-2572 . 367815) (-2573 . 367727)
+ (-2574 . 367655) (-2575 . 367627) (-2576 . 367537) (-2577 . 367394)
+ (-2578 . 367338) (-2579 . 367158) (-2580 . 366917) (-2581 . 366737)
+ (-2582 . 366376) (-2583 . 366288) (-2584 . 365874) (-2585 . 365794)
+ (-2586 . 365458) (-2587 . 363829) (-2588 . 363749) (-2589 . 363428)
+ (-2590 . 361996) (-2591 . 361899) (-2592 . 361811) (-2593 . 361739)
+ (-2594 . 361617) (-2595 . 360751) (-2596 . 360664) (-2597 . 360549)
+ (-2598 . 360490) (-2599 . 360349) (-2600 . 359753) (-2601 . 359725)
+ (-2602 . 359070) (-2603 . 358982) (-2604 . 358529) (-2605 . 357155)
+ (-2606 . 357095) (-2607 . 356750) (-2608 . 356604) (-2609 . 356523)
+ (-2610 . 356495) (-2611 . 355785) (-2612 . 355697) (-2613 . 355625)
+ (-2614 . 355467) (-2615 . 354916) (-2616 . 354756) (-2617 . 354523)
+ (-2618 . 354211) (-2619 . 353413) (-2620 . 353356) (-2621 . 353328)
+ (-2622 . 353221) (-2623 . 353133) (-2624 . 353028) (-2625 . 352835)
+ (-2626 . 352456) (-2627 . 352400) (-2628 . 352372) (-2629 . 352268)
+ (-2630 . 352180) (-2631 . 352103) (-2632 . 351618) (-2633 . 351375)
+ (-2634 . 351176) (-2635 . 351119) (-2636 . 351067) (-2637 . 350995)
+ (-2638 . 350943) (-2639 . 350839) (-2640 . 350751) (-2641 . 350674)
+ (-2642 . 350432) (-2643 . 350102) (-2644 . 349942) (-2645 . 349911)
+ (-2646 . 349414) (-2647 . 349321) (-2648 . 349207) (-2649 . 349119)
+ (-2650 . 349047) (-2651 . 347209) (-2652 . 346941) (-2653 . 346591)
+ (-2654 . 346255) (-2655 . 345833) (-2656 . 345783) (-2657 . 345574)
+ (-2658 . 345355) (-2659 . 343845) (-2660 . 343744) (-2661 . 343277)
+ (-2662 . 343114) (-2663 . 342674) (-2664 . 342605) (-2665 . 342506)
+ (-2666 . 342338) (-2667 . 342022) (-2668 . 341606) (-2669 . 340058)
+ (-2670 . 339975) (-2671 . 339471) (-2672 . 338985) (-2673 . 338822)
+ (-2674 . 337952) (-2675 . 337883) (-2676 . 337804) (-2677 . 337633)
+ (-2678 . 337525) (-2679 . 337442) (-2680 . 337239) (-2681 . 337076)
+ (-2682 . 336949) (-2683 . 336844) (-2684 . 336788) (-2685 . 336623)
+ (-2686 . 336520) (-2687 . 335784) (-2688 . 335714) (-2689 . 335411)
+ (-2690 . 335236) (-2691 . 334865) (-2692 . 334794) (-2693 . 334629)
+ (-2694 . 334468) (-2695 . 334306) (-2696 . 334236) (-2697 . 334055)
+ (-2698 . 333880) (-2699 . 333828) (-2700 . 333703) (-2701 . 333548)
+ (-2702 . 333428) (-2703 . 333328) (-2704 . 333221) (-2705 . 333094)
+ (-2706 . 332935) (-2707 . 332717) (-2708 . 332539) (-2709 . 332487)
+ (-2710 . 332423) (-2711 . 332268) (-2712 . 332164) (-2713 . 331972)
+ (-2714 . 331868) (-2715 . 331224) (-2716 . 330978) (-2717 . 330756)
+ (-2718 . 330397) (-2719 . 330345) (-2720 . 330220) (-2721 . 330015)
+ (-2722 . 329914) (-2723 . 329810) (-2724 . 329657) (-2725 . 328485)
+ (-2726 . 328361) (-2727 . 328148) (-2728 . 327990) (-2729 . 327796)
+ (-2730 . 327744) (-2731 . 327625) (-2732 . 327503) (-2733 . 327228)
+ (-2734 . 327146) (-2735 . 326951) (-2736 . 326670) (-2737 . 326414)
+ (-2738 . 326299) (-2739 . 326240) (-2740 . 326035) (-2741 . 325873)
+ (-2742 . 325060) (-2743 . 324941) (-2744 . 324426) (-2745 . 324349)
+ (-2746 . 324267) (-2747 . 324017) (-2748 . 323795) (-2749 . 323609)
+ (-2750 . 322472) (-2751 . 322407) (-2752 . 322304) (-2753 . 322230)
+ (-2754 . 322151) (-2755 . 322098) (-2756 . 322018) (-2757 . 321939)
+ (-2758 . 321694) (-2759 . 321541) (-2760 . 320897) (-2761 . 320835)
+ (-2762 . 320807) (-2763 . 320733) (-2764 . 320667) (-2765 . 320539)
+ (-2766 . 320462) (-2767 . 320391) (-2768 . 320069) (-2769 . 319916)
+ (-2770 . 318614) (-2771 . 318404) (-2772 . 318260) (-2773 . 318199)
+ (-2774 . 318125) (-2775 . 318058) (-2776 . 317994) (-2777 . 317914)
+ (-2778 . 317812) (-2779 . 317741) (-2780 . 317353) (-2781 . 317200)
+ (-2782 . 315938) (-2783 . 315664) (-2784 . 315611) (-2785 . 315537)
+ (-2786 . 315470) (-2787 . 315416) (-2788 . 315336) (-2789 . 315265)
+ (-2790 . 315064) (-2791 . 314911) (-2792 . 314028) (-2793 . 313454)
+ (-2794 . 313385) (-2795 . 313311) (-2796 . 313254) (-2797 . 313145)
+ (-2798 . 313068) (-2799 . 312997) (-2800 . 312733) (-2801 . 312580)
+ (-2802 . 311307) (-2803 . 310793) (-2804 . 310723) (-2805 . 310649)
+ (-2806 . 310571) (-2807 . 309195) (-2808 . 309139) (-2809 . 309059)
+ (-2810 . 308988) (-2811 . 308445) (-2812 . 308054) (-2813 . 307952)
+ (-2814 . 307807) (-2815 . 307688) (-2816 . 307620) (-2817 . 307496)
+ (-2818 . 307412) (-2819 . 307299) (-2820 . 307225) (-2821 . 306991)
+ (-2822 . 306920) (-2823 . 306626) (-2824 . 306285) (-2825 . 306190)
+ (-2826 . 306067) (-2827 . 306036) (-2828 . 305969) (-2829 . 305791)
+ (-2830 . 305617) (-2831 . 305546) (-2832 . 305453) (-2833 . 305295)
+ (-2834 . 305196) (-2835 . 305059) (-2836 . 304708) (-2837 . 304613)
+ (-2838 . 304480) (-2839 . 304397) (-2840 . 304342) (-2841 . 304218)
+ (-2842 . 304147) (-2843 . 304089) (-2844 . 303787) (-2845 . 303531)
+ (-2846 . 303285) (-2847 . 302934) (-2848 . 302851) (-2849 . 302605)
+ (-2850 . 302519) (-2851 . 302453) (-2852 . 302368) (-2853 . 302210)
+ (-2854 . 302003) (-2855 . 301628) (-2856 . 301277) (-2857 . 300647)
+ (-2858 . 300545) (-2859 . 300455) (-2860 . 300389) (-2861 . 300302)
+ (-2862 . 300225) (-2863 . 299893) (-2864 . 299721) (-2865 . 299611)
+ (-2866 . 299260) (-2867 . 299186) (-2868 . 298996) (-2869 . 298930)
+ (-2870 . 298858) (-2871 . 298773) (-2872 . 298630) (-2873 . 298514)
+ (-2874 . 298410) (-2875 . 298023) (-2876 . 297940) (-2877 . 297867)
+ (-2878 . 297801) (-2879 . 297613) (-2880 . 297556) (-2881 . 297413)
+ (-2882 . 296909) (-2883 . 296796) (-2884 . 296409) (-2885 . 296335)
+ (-2886 . 296265) (-2887 . 296199) (-2888 . 296027) (-2889 . 295885)
+ (-2890 . 295802) (-2891 . 295418) (-2892 . 295305) (-2893 . 294918)
+ (-2894 . 294700) (-2895 . 294635) (-2896 . 294569) (-2897 . 294387)
+ (-2898 . 293792) (-2899 . 293709) (-2900 . 293280) (-2901 . 293152)
+ (-2902 . 292769) (-2903 . 292556) (-2904 . 292501) (-2905 . 292435)
+ (-2906 . 291833) (-2907 . 291238) (-2908 . 290973) (-2909 . 290863)
+ (-2910 . 290765) (-2911 . 290086) (-2912 . 289350) (-2913 . 289257)
+ (-2914 . 289163) (-2915 . 289097) (-2916 . 288931) (-2917 . 288653)
+ (-2918 . 287902) (-2919 . 287802) (-2920 . 287695) (-2921 . 287344)
+ (-2922 . 287057) (-2923 . 286990) (-2924 . 286680) (-2925 . 286614)
+ (-2926 . 286030) (-2927 . 285669) (-2928 . 285532) (-2929 . 282233)
+ (-2930 . 282077) (-2931 . 281620) (-2932 . 281477) (-2933 . 281132)
+ (-2934 . 281066) (-2935 . 280936) (-2936 . 280609) (-2937 . 280518)
+ (-2938 . 280444) (-2939 . 280310) (-2940 . 279881) (-2941 . 279827)
+ (-2942 . 279760) (-2943 . 279686) (-2944 . 279620) (-2945 . 279543)
+ (-2946 . 279410) (-2947 . 279273) (-2948 . 279178) (-2949 . 279044)
+ (-2950 . 278411) (-2951 . 278333) (-2952 . 278249) (-2953 . 277924)
+ (-2954 . 277858) (-2955 . 277488) (-2956 . 277355) (-2957 . 277303)
+ (-2958 . 277235) (-2959 . 277039) (-2960 . 276926) (-2961 . 276287)
+ (-2962 . 276204) (-2963 . 275994) (-2964 . 275928) (-2965 . 275750)
+ (-2966 . 275418) (-2967 . 275262) (-2968 . 275193) (-2969 . 274997)
+ (-2970 . 274878) (-2971 . 274486) (-2972 . 274384) (-2973 . 274298)
+ (-2974 . 274232) (-2975 . 274160) (-2976 . 274051) (-2977 . 273963)
+ (-2978 . 273892) (-2979 . 273715) (-2980 . 273373) (-2981 . 273173)
+ (-2982 . 273087) (-2983 . 273021) (-2984 . 272881) (-2985 . 272772)
+ (-2986 . 272684) (-2987 . 272613) (-2988 . 272479) (-2989 . 272087)
+ (-2990 . 271957) (-2991 . 271889) (-2992 . 271803) (-2993 . 271737)
+ (-2994 . 271547) (-2995 . 271438) (-2996 . 271355) (-2997 . 271184)
+ (-2998 . 271101) (-2999 . 270964) (-3000 . 270622) (-3001 . 270553)
+ (-3002 . 270305) (-3003 . 270219) (-3004 . 270153) (-3005 . 270037)
+ (-3006 . 269928) (-3007 . 269845) (-3008 . 269771) (-3009 . 269688)
+ (-3010 . 269557) (-3011 . 269332) (-3012 . 268471) (-3013 . 268220)
+ (-3014 . 268134) (-3015 . 268068) (-3016 . 267952) (-3017 . 267843)
+ (-3018 . 267205) (-3019 . 267061) (-3020 . 266936) (-3021 . 266823)
+ (-3022 . 266293) (-3023 . 266045) (-3024 . 265959) (-3025 . 265893)
+ (-3026 . 265777) (-3027 . 265668) (-3028 . 265202) (-3029 . 265065)
+ (-3030 . 264943) (-3031 . 264725) (-3032 . 264562) (-3033 . 264314)
+ (-3034 . 264228) (-3035 . 264162) (-3036 . 264009) (-3037 . 263900)
+ (-3038 . 263520) (-3039 . 263437) (-3040 . 263312) (-3041 . 263094)
+ (-3042 . 263021) (-3043 . 262908) (-3044 . 262840) (-3045 . 262754)
+ (-3046 . 262688) (-3047 . 262544) (-3048 . 262435) (-3049 . 259508)
+ (-3050 . 258744) (-3051 . 258670) (-3052 . 258566) (-3053 . 258347)
+ (-3054 . 258250) (-3055 . 257914) (-3056 . 257828) (-3057 . 257762)
+ (-3058 . 257688) (-3059 . 257579) (-3060 . 257435) (-3061 . 257267)
+ (-3062 . 257083) (-3063 . 256903) (-3064 . 255838) (-3065 . 255752)
+ (-3066 . 255686) (-3067 . 255600) (-3068 . 255491) (-3069 . 255347)
+ (-3070 . 255195) (-3071 . 255021) (-3072 . 254802) (-3073 . 254582)
+ (-3074 . 254496) (-3075 . 254430) (-3076 . 254356) (-3077 . 254247)
+ (-3078 . 254082) (-3079 . 253978) (-3080 . 253779) (-3081 . 253599)
+ (-3082 . 253516) (-3083 . 253404) (-3084 . 253318) (-3085 . 253252)
+ (-3086 . 253178) (-3087 . 253069) (-3088 . 252791) (-3089 . 252630)
+ (-3090 . 252392) (-3091 . 252288) (-3092 . 252114) (-3093 . 251720)
+ (-3094 . 251623) (-3095 . 251549) (-3096 . 251463) (-3097 . 251397)
+ (-3098 . 251323) (-3099 . 251214) (-3100 . 251059) (-3101 . 250862)
+ (-3102 . 250721) (-3103 . 250636) (-3104 . 250517) (-3105 . 250337)
+ (-3106 . 250263) (-3107 . 250045) (-3108 . 249959) (-3109 . 249893)
+ (-3110 . 249749) (-3111 . 249640) (-3112 . 249493) (-3113 . 249303)
+ (-3114 . 249159) (-3115 . 248787) (-3116 . 248659) (-3117 . 248444)
+ (-3118 . 248370) (-3119 . 248284) (-3120 . 247627) (-3121 . 247474)
+ (-3122 . 247365) (-3123 . 247175) (-3124 . 246936) (-3125 . 246853)
+ (-3126 . 246725) (-3127 . 246635) (-3128 . 246561) (-3129 . 246527)
+ (-3130 . 246441) (-3131 . 245784) (-3132 . 245609) (-3133 . 245500)
+ (-3134 . 245264) (-3135 . 245177) (-3136 . 245055) (-3137 . 244965)
+ (-3138 . 244807) (-3139 . 244588) (-3140 . 244502) (-3141 . 244374)
+ (-3142 . 244221) (-3143 . 244112) (-3144 . 243873) (-3145 . 243790)
+ (-3146 . 243565) (-3147 . 243471) (-3148 . 243402) (-3149 . 243316)
+ (-3150 . 243193) (-3151 . 243040) (-3152 . 242931) (-3153 . 242736)
+ (-3154 . 242514) (-3155 . 242343) (-3156 . 242256) (-3157 . 242197)
+ (-3158 . 242111) (-3159 . 241988) (-3160 . 241702) (-3161 . 241593)
+ (-3162 . 241422) (-3163 . 241332) (-3164 . 241249) (-3165 . 241163)
+ (-3166 . 241022) (-3167 . 240736) (-3168 . 240627) (-3169 . 240532)
+ (-3170 . 240380) (-3171 . 240203) (-3172 . 240120) (-3173 . 240009)
+ (-3174 . 239740) (-3175 . 239654) (-3176 . 239499) (-3177 . 239088)
+ (-3178 . 238979) (-3179 . 238866) (-3180 . 238763) (-3181 . 238611)
+ (-3182 . 238420) (-3183 . 238354) (-3184 . 238268) (-3185 . 238124)
+ (-3186 . 237838) (-3187 . 237729) (-3188 . 237645) (-3189 . 237586)
+ (-3190 . 237306) (-3191 . 237250) (-3192 . 237184) (-3193 . 237111)
+ (-3194 . 237002) (-3195 . 236924) (-3196 . 236809) (-3197 . 236750)
+ (-3198 . 236346) (-3199 . 236263) (-3200 . 236189) (-3201 . 235956)
+ (-3202 . 235829) (-3203 . 235777) (-3204 . 235628) (-3205 . 235519)
+ (-3206 . 235425) (-3207 . 235290) (-3208 . 235159) (-3209 . 235076)
+ (-3210 . 235004) (-3211 . 234952) (-3212 . 234849) (-3213 . 234017)
+ (-3214 . 233911) (-3215 . 233802) (-3216 . 233595) (-3217 . 233501)
+ (-3218 . 233442) (-3219 . 233237) (-3220 . 233154) (-3221 . 233123)
+ (-3222 . 232724) (-3223 . 232669) (-3224 . 232562) (-3225 . 232492)
+ (-3226 . 232291) (-3227 . 232102) (-3228 . 231932) (-3229 . 231862)
+ (-3230 . 231810) (-3231 . 231779) (-3232 . 231679) (-3233 . 231598)
+ (-3234 . 231283) (-3235 . 231191) (-3236 . 231136) (-3237 . 231048)
+ (-3238 . 230950) (-3239 . 230834) (-3240 . 230775) (-3241 . 230669)
+ (-3242 . 230504) (-3243 . 230425) (-3244 . 228837) (-3245 . 228648)
+ (-3246 . 228556) (-3247 . 228448) (-3248 . 228351) (-3249 . 228235)
+ (-3250 . 228173) (-3251 . 228069) (-3252 . 227827) (-3253 . 227679)
+ (-3254 . 227600) (-3255 . 227442) (-3256 . 227356) (-3257 . 227233)
+ (-3258 . 227199) (-3259 . 227091) (-3260 . 226993) (-3261 . 226889)
+ (-3262 . 226540) (-3263 . 226105) (-3264 . 226032) (-3265 . 226001)
+ (-3266 . 225899) (-3267 . 225801) (-3268 . 225694) (-3269 . 225506)
+ (-3270 . 225403) (-3271 . 225350) (-3272 . 225160) (** . 222071)
+ (-3274 . 221998) (-3275 . 221914) (-3276 . 221812) (-3277 . 221699)
+ (-3278 . 221592) (-3279 . 221399) (-3280 . 221293) (-3281 . 221240)
+ (-3282 . 220867) (-3283 . 220747) (-3284 . 220691) (-3285 . 220589)
+ (-3286 . 220380) (-3287 . 220132) (-3288 . 220025) (-3289 . 219968)
+ (-3290 . 219674) (-3291 . 219586) (-3292 . 219534) (-3293 . 219254)
+ (-3294 . 219181) (-3295 . 219119) (-3296 . 219039) (-3297 . 218941)
+ (-3298 . 218758) (-3299 . 218651) (-3300 . 218578) (-3301 . 218405)
+ (-3302 . 218333) (-3303 . 218161) (-3304 . 218109) (-3305 . 218027)
+ (-3306 . 217976) (-3307 . 217857) (-3308 . 217805) (-3309 . 217732)
+ (-3310 . 217698) (-3311 . 217217) (-3312 . 217101) (-3313 . 217000)
+ (-3314 . 216893) (-3315 . 216828) (-3316 . 216754) (-3317 . 216604)
+ (-3318 . 216512) (-3319 . 216461) (-3320 . 216388) (-3321 . 216354)
+ (-3322 . 215694) (-3323 . 215596) (-3324 . 215495) (-3325 . 215388)
+ (-3326 . 215360) (-3327 . 215230) (-3328 . 215159) (-3329 . 215089)
+ (-3330 . 214869) (-3331 . 214835) (-3332 . 214771) (-3333 . 214519)
+ (-3334 . 214418) (-3335 . 214311) (-3336 . 214261) (-3337 . 214209)
+ (-3338 . 214135) (-3339 . 214016) (-3340 . 213683) (-3341 . 213649)
+ (-3342 . 213528) (-3343 . 213415) (-3344 . 213314) (-3345 . 213207)
+ (-3346 . 211761) (-3347 . 211668) (-3348 . 211597) (-3349 . 211568)
+ (-3350 . 211384) (-3351 . 208603) (-3352 . 207835) (-3353 . 207714)
+ (-3354 . 207493) (-3355 . 207392) (-3356 . 207285) (-3357 . 206793)
+ (-3358 . 206681) (-3359 . 206628) (-3360 . 206506) (-3361 . 206362)
+ (-3362 . 206328) (-3363 . 205736) (-3364 . 205628) (-3365 . 205321)
+ (-3366 . 205220) (-3367 . 205113) (-3368 . 204511) (-3369 . 204193)
+ (-3370 . 204122) (-3371 . 204068) (-3372 . 202856) (-9 . 202828)
+ (-3374 . 202467) (-3375 . 202433) (-3376 . 202325) (-3377 . 201547)
+ (-3378 . 201446) (-3379 . 201339) (-3380 . 200535) (-3381 . 200354)
+ (-3382 . 200301) (-3383 . 200124) (-3384 . 200093) (-8 . 200065)
+ (-3386 . 199894) (-3387 . 199860) (-3388 . 199701) (-3389 . 199112)
+ (-3390 . 199011) (-3391 . 198904) (-3392 . 198788) (-3393 . 198182)
+ (-3394 . 198038) (-3395 . 197985) (-3396 . 197924) (-7 . 197896)
+ (-3398 . 197725) (-3399 . 197569) (-3400 . 197535) (-3401 . 197297)
+ (-3402 . 196800) (-3403 . 196699) (-3404 . 196592) (-3405 . 195938)
+ (-3406 . 195780) (-3407 . 195727) (-3408 . 195546) (-3409 . 195372)
+ (-3410 . 195113) (-3411 . 195016) (-3412 . 194685) (-3413 . 194517)
+ (-3414 . 194269) (-3415 . 194168) (-3416 . 194061) (-3417 . 193475)
+ (-3418 . 193311) (-3419 . 192637) (-3420 . 192584) (-3421 . 192523)
+ (-3422 . 192264) (-3423 . 192173) (-3424 . 192054) (-3425 . 191932)
+ (-3426 . 191684) (-3427 . 191569) (-3428 . 191462) (-3429 . 191388)
+ (-3430 . 191331) (-3431 . 191167) (-3432 . 190900) (-3433 . 190847)
+ (-3434 . 190775) (-3435 . 190643) (-3436 . 190448) (-3437 . 190357)
+ (-3438 . 190118) (-3439 . 189819) (-3440 . 189704) (-3441 . 189597)
+ (-3442 . 189545) (-3443 . 189337) (-3444 . 189284) (-3445 . 188908)
+ (-3446 . 188851) (-3447 . 188656) (-3448 . 188601) (-3449 . 188397)
+ (-3450 . 187774) (-3451 . 187723) (-3452 . 187616) (-3453 . 187564)
+ (-3454 . 187375) (-3455 . 187322) (-3456 . 187269) (-3457 . 187210)
+ (-3458 . 186613) (-3459 . 186561) (-3460 . 186350) (-3461 . 185897)
+ (-3462 . 185648) (-3463 . 185531) (-3464 . 185424) (-3465 . 185350)
+ (-3466 . 185192) (-3467 . 185139) (-3468 . 185011) (-3469 . 184933)
+ (-3470 . 184881) (-3471 . 184688) (-3472 . 184528) (-3473 . 184470)
+ (-3474 . 184363) (-3475 . 184308) (-3476 . 184147) (-3477 . 184094)
+ (-3478 . 183939) (-3479 . 183792) (-3480 . 183740) (-3481 . 183461)
+ (-3482 . 183312) (-3483 . 183211) (-3484 . 183104) (-3485 . 183052)
+ (-3486 . 182891) (-3487 . 182838) (-3488 . 182785) (-3489 . 182456)
+ (-3490 . 182404) (-3491 . 182225) (-3492 . 181896) (-3493 . 181795)
+ (-3494 . 181688) (-3495 . 181636) (-3496 . 181478) (-3497 . 181425)
+ (-3498 . 181281) (-3499 . 181128) (-3500 . 180636) (-3501 . 180583)
+ (-3502 . 180505) (-3503 . 180344) (-3504 . 180243) (-3505 . 180174)
+ (-3506 . 180067) (-3507 . 180015) (-3508 . 179875) (-3509 . 179822)
+ (-3510 . 170260) (-3511 . 169768) (-3512 . 169699) (-3513 . 169558)
+ (-3514 . 169415) (-3515 . 169299) (-3516 . 169192) (-3517 . 169105)
+ (-3518 . 169035) (-3519 . 168907) (-3520 . 168854) (-3521 . 168703)
+ (-3522 . 168185) (-3523 . 167955) (-3524 . 167752) (-3525 . 167609)
+ (-3526 . 166874) (-3527 . 166767) (-3528 . 166316) (-3529 . 166188)
+ (-3530 . 166135) (-3531 . 166084) (-3532 . 165700) (-3533 . 165632)
+ (-3534 . 165473) (-3535 . 165329) (-3536 . 165186) (-3537 . 165061)
+ (-3538 . 164984) (-3539 . 164877) (-3540 . 164818) (-3541 . 164604)
+ (-3542 . 164476) (-3543 . 164405) (-3544 . 164355) (-3545 . 164284)
+ (-3546 . 163748) (-3547 . 163498) (-3548 . 163217) (-3549 . 163092)
+ (-3550 . 162985) (-3551 . 161883) (-3552 . 161611) (-3553 . 161468)
+ (-3554 . 161397) (-3555 . 161346) (-3556 . 161275) (-3557 . 161132)
+ (-3558 . 160989) (-3559 . 160711) (-3560 . 160393) (-3561 . 160168)
+ (-3562 . 160028) (-3563 . 159957) (-3564 . 159839) (-3565 . 159648)
+ (-3566 . 159595) (-3567 . 159222) (-3568 . 159079) (-3569 . 159007)
+ (-3570 . 158956) (-3571 . 158770) (-3572 . 158736) (-3573 . 158370)
+ (-3574 . 157840) (-3575 . 157722) (-3576 . 157648) (-3577 . 157526)
+ (-3578 . 157249) (-3579 . 157107) (-3580 . 157035) (-3581 . 156837)
+ (-3582 . 156718) (-3583 . 156663) (-3584 . 156501) (-3585 . 156283)
+ (-3586 . 156158) (-3587 . 155899) (-3588 . 155582) (-3589 . 155437)
+ (-3590 . 155360) (-3591 . 155217) (-3592 . 155098) (-3593 . 154385)
+ (-3594 . 154324) (-3595 . 154118) (-3596 . 153900) (-3597 . 153742)
+ (-3598 . 153436) (-3599 . 153145) (-3600 . 152931) (-3601 . 152178)
+ (-3602 . 152125) (-3603 . 152011) (-3604 . 151917) (-3605 . 151602)
+ (-3606 . 151442) (-3607 . 151048) (-3608 . 150050) (-3609 . 149835)
+ (-3610 . 149518) (-3611 . 149200) (-3612 . 149037) (-3613 . 148984)
+ (-3614 . 148863) (-3615 . 148769) (-3616 . 148260) (-3617 . 148187)
+ (-3618 . 148007) (-3619 . 147128) (-3620 . 146961) (-3621 . 146535)
+ (-3622 . 145935) (-3623 . 145747) (-3624 . 145694) (-3625 . 145576)
+ (-3626 . 145469) (-3627 . 145177) (-3628 . 145125) (-3629 . 145006)
+ (-3630 . 144791) (-3631 . 144737) (-3632 . 144685) (-3633 . 144514)
+ (-3634 . 144373) (-3635 . 144213) (-3636 . 144160) (-3637 . 144048)
+ (-3638 . 143941) (-3639 . 143819) (-3640 . 143767) (-3641 . 143648)
+ (-3642 . 143444) (-3643 . 143390) (-3644 . 143338) (-3645 . 143123)
+ (-3646 . 142883) (-3647 . 142830) (-3648 . 142712) (-3649 . 142660)
+ (-3650 . 142500) (-3651 . 142448) (-3652 . 142333) (-3653 . 141469)
+ (-3654 . 141089) (-3655 . 141026) (-3656 . 140717) (-3657 . 140470)
+ (-3658 . 140417) (-3659 . 140312) (-3660 . 140260) (-3661 . 140080)
+ (-3662 . 140002) (-3663 . 139864) (-3664 . 139835) (-3665 . 139418)
+ (-3666 . 139355) (-3667 . 139269) (-3668 . 139022) (-3669 . 138969)
+ (-3670 . 138886) (-3671 . 138834) (-3672 . 138651) (-3673 . 138589)
+ (-3674 . 138451) (-3675 . 138313) (-3676 . 138144) (-3677 . 137768)
+ (-3678 . 137577) (-3679 . 137226) (-3680 . 137012) (-3681 . 136959)
+ (-3682 . 136855) (-3683 . 136803) (-3684 . 136726) (-3685 . 136625)
+ (-3686 . 136407) (-3687 . 136097) (-3688 . 136068) (-3689 . 135692)
+ (-3690 . 135536) (-3691 . 135391) (-3692 . 135252) (-3693 . 135199)
+ (-3694 . 134233) (-3695 . 133960) (-3696 . 133908) (-3697 . 133831)
+ (-3698 . 133730) (-3699 . 133473) (-3700 . 133233) (-3701 . 133204)
+ (-3702 . 132994) (-3703 . 132841) (-3704 . 132759) (-3705 . 132433)
+ (-3706 . 132219) (-3707 . 132166) (-3708 . 131941) (-3709 . 131792)
+ (-3710 . 131400) (-3711 . 131323) (-3712 . 131256) (-3713 . 131152)
+ (-3714 . 131096) (-3715 . 130794) (-3716 . 130649) (-3717 . 130567)
+ (-3718 . 130327) (-3719 . 130035) (-3720 . 129982) (-3721 . 129898)
+ (-3722 . 129846) (-3723 . 129659) (-3724 . 129552) (-3725 . 129455)
+ (-3726 . 129290) (-3727 . 128899) (-3728 . 128740) (-3729 . 128625)
+ (-3730 . 128495) (-3731 . 128370) (-3732 . 128156) (-3733 . 128103)
+ (-3734 . 127754) (-3735 . 127514) (-3736 . 127417) (-3737 . 127147)
+ (-3738 . 127021) (-3739 . 126961) (-3740 . 126630) (-3741 . 126602)
+ (-3742 . 126478) (-3743 . 126339) (-3744 . 126286) (-3745 . 126212)
+ (-3746 . 126005) (-3747 . 125879) (-3748 . 125690) (-3749 . 124989)
+ (-3750 . 123985) (-3751 . 123914) (-3752 . 123768) (-3753 . 123554)
+ (-3754 . 123501) (-3755 . 123403) (-3756 . 123375) (-3757 . 123291)
+ (-3758 . 123162) (-3759 . 121970) (-3760 . 121852) (-3761 . 121781)
+ (-3762 . 121598) (-3763 . 121446) (-3764 . 121303) (-3765 . 120994)
+ (-3766 . 120942) (-3767 . 120868) (-3768 . 120840) (-3769 . 120718)
+ (-3770 . 120586) (-3771 . 120525) (-3772 . 120313) (-3773 . 120143)
+ (-3774 . 120028) (-3775 . 119883) (-3776 . 119831) (-3777 . 119737)
+ (-3778 . 119709) (-3779 . 119608) (-3780 . 119462) (-3781 . 119405)
+ (-3782 . 118792) (-3783 . 118583) (-3784 . 118359) (-3785 . 118330)
+ (-3786 . 118224) (-3787 . 118094) (-3788 . 117952) (-3789 . 117899)
+ (-3790 . 117783) (-3791 . 117682) (-3792 . 117625) (-3793 . 117198)
+ (-3794 . 116822) (-3795 . 116362) (-3796 . 115985) (-3797 . 115752)
+ (-3798 . 115699) (-3799 . 115586) (-3800 . 115513) (-3801 . 115419)
+ (-3802 . 115357) (-3803 . 115253) (-3804 . 115176) (-3805 . 114641)
+ (-3806 . 114532) (-3807 . 113611) (-3808 . 113217) (-3809 . 112957)
+ (-3810 . 112815) (-3811 . 112721) (-3812 . 112627) (-3813 . 112427)
+ (-3814 . 112328) (-3815 . 112224) (-3816 . 112164) (-3817 . 111607)
+ (-3818 . 111492) (-3819 . 111464) (-3820 . 111284) (-3821 . 111004)
+ (-3822 . 110776) (-3823 . 110723) (-3824 . 110629) (-3825 . 110471)
+ (-3826 . 110305) (-3827 . 110187) (-3828 . 109630) (-3829 . 109561)
+ (-3830 . 109533) (-3831 . 109440) (-3832 . 109282) (-3833 . 109116)
+ (-3834 . 108156) (-3835 . 107990) (-3836 . 107864) (-3837 . 107795)
+ (-3838 . 107742) (-3839 . 107672) (-3840 . 107569) (-3841 . 107541)
+ (-3842 . 107448) (-3843 . 107290) (-3844 . 107096) (-3845 . 107019)
+ (-3846 . 106409) (-3847 . 106340) (-3848 . 106280) (-3849 . 106180)
+ (-3850 . 106152) (-3851 . 106059) (-3852 . 105901) (-3853 . 105735)
+ (-3854 . 105681) (-3855 . 105457) (-3856 . 105391) (-3857 . 105332)
+ (-3858 . 105235) (-3859 . 105207) (-3860 . 105119) (-3861 . 104961)
+ (-3862 . 104769) (-3863 . 104644) (-3864 . 104584) (-3865 . 104454)
+ (-3866 . 104374) (-3867 . 101959) (-3868 . 101801) (-3869 . 101661)
+ (-3870 . 101414) (-3871 . 99300) (-3872 . 99083) (-3873 . 99052)
+ (-3874 . 98993) (-3875 . 98842) (-3876 . 98814) (-3877 . 98754)
+ (-3878 . 98686) (-3879 . 98619) (-3880 . 98476) (-3881 . 98229)
+ (-3882 . 98077) (-3883 . 98027) (-3884 . 97967) (-3885 . 97585)
+ (-3886 . 97557) (-3887 . 97526) (-3888 . 97474) (-3889 . 97420)
+ (-3890 . 97368) (-3891 . 97210) (-3892 . 97083) (-3893 . 96836)
+ (-3894 . 96648) (-3895 . 96577) (-3896 . 96518) (-3897 . 96275)
+ (-3898 . 96247) (-3899 . 96192) (-3900 . 96034) (-3901 . 95904)
+ (-3902 . 95786) (-3903 . 95633) (-3904 . 95326) (-3905 . 95282)
+ (-3906 . 95139) (-3907 . 95080) (-3908 . 94617) (-3909 . 94549)
+ (-3910 . 94466) (-3911 . 94414) (-3912 . 94256) (-3913 . 94132)
+ (-3914 . 93271) (-3915 . 93098) (-3916 . 93027) (-3917 . 92944)
+ (-3918 . 92802) (-3919 . 92486) (-3920 . 92418) (-3921 . 92255)
+ (-3922 . 92203) (-3923 . 92045) (-3924 . 91921) (-3925 . 91889)
+ (-3926 . 91716) (-3927 . 91664) (-3928 . 91581) (-3929 . 91483)
+ (-3930 . 90876) (-3931 . 90796) (-3932 . 90682) (-3933 . 90524)
+ (-3934 . 90418) (-3935 . 90068) (-3936 . 90019) (-3937 . 89873)
+ (-3938 . 89779) (-3939 . 89170) (-3940 . 88763) (-3941 . 88686)
+ (-3942 . 88528) (-3943 . 88422) (-3944 . 88195) (-3945 . 88138)
+ (-3946 . 88086) (-3947 . 88034) (-3948 . 87918) (-3949 . 86843)
+ (-3950 . 86481) (-3951 . 85265) (-3952 . 85107) (-3953 . 85004)
+ (-3954 . 84904) (-3955 . 84393) (-3956 . 84341) (-3957 . 84289)
+ (-3958 . 84192) (-3959 . 83607) (-3960 . 83425) (-3961 . 83240)
+ (-3962 . 83140) (-3963 . 82982) (-3964 . 82829) (-3965 . 82729)
+ (-3966 . 82576) (-3967 . 82460) (-3968 . 82342) (-3969 . 82241)
+ (-3970 . 81925) (-3971 . 81382) (-3972 . 81282) (-3973 . 81208)
+ (-3974 . 81052) (-3975 . 79269) (-3976 . 79102) (-3977 . 79007)
+ (-3978 . 78874) (-3979 . 78777) (-3980 . 78439) (-3981 . 78260)
+ (-3982 . 77917) (-3983 . 77818) (-3984 . 77744) (-3985 . 77588)
+ (-3986 . 77474) (-3987 . 77307) (-3988 . 77212) (-3989 . 76931)
+ (-3990 . 76787) (-3991 . 76456) (-3992 . 76234) (-3993 . 76153)
+ (-3994 . 75337) (-3995 . 75282) (-3996 . 75096) (-3997 . 74949)
+ (-3998 . 73879) (-3999 . 73780) (-4000 . 73657) (-4001 . 73521)
+ (-4002 . 73250) (-4003 . 73197) (-4004 . 72870) (-4005 . 72648)
+ (-4006 . 72570) (-4007 . 72515) (-4008 . 72352) (-4009 . 72256)
+ (-4010 . 72138) (-4011 . 72079) (-4012 . 72023) (-4013 . 71157)
+ (-4014 . 71027) (-4015 . 70805) (-4016 . 70698) (-4017 . 70643)
+ (-4018 . 70564) (-4019 . 70459) (-4020 . 70335) (-4021 . 70276)
+ (-4022 . 70220) (-4023 . 70021) (-4024 . 69862) (-4025 . 69330)
+ (-4026 . 69111) (-4027 . 68949) (-4028 . 68894) (-4029 . 68812)
+ (-4030 . 68725) (-4031 . 68579) (-4032 . 68551) (-4033 . 68492)
+ (-4034 . 68320) (-4035 . 67945) (-4036 . 66780) (-4037 . 66561)
+ (-4038 . 66453) (-4039 . 66382) (-4040 . 65949) (-4041 . 65790)
+ (-4042 . 65761) (-4043 . 65590) (-4044 . 65562) (-4045 . 65503)
+ (-12 . 65331) (-4047 . 65275) (-4048 . 65220) (-4049 . 65001)
+ (-4050 . 64865) (-4051 . 64763) (-4052 . 64555) (-4053 . 64473)
+ (-4054 . 64416) (-4055 . 64289) (-4056 . 64261) (-4057 . 64205)
+ (-4058 . 64153) (-4059 . 64098) (-4060 . 63879) (-4061 . 63743)
+ (-4062 . 63639) (-4063 . 63557) (-4064 . 63475) (-4065 . 63358)
+ (-4066 . 63213) (-4067 . 63185) (-4068 . 63129) (-4069 . 63026)
+ (-4070 . 62948) (-4071 . 62729) (-4072 . 62606) (-4073 . 62415)
+ (-4074 . 62333) (-4075 . 62261) (-4076 . 62108) (-4077 . 61998)
+ (-4078 . 61801) (-4079 . 61492) (-4080 . 61407) (-4081 . 61330)
+ (-4082 . 61111) (-4083 . 61012) (-4084 . 60916) (-4085 . 60810)
+ (-4086 . 60733) (-4087 . 60570) (-4088 . 60518) (-4089 . 60391)
+ (-4090 . 60245) (-4091 . 60168) (-4092 . 60067) (-4093 . 59918)
+ (-4094 . 59858) (-4095 . 59721) (-4096 . 59659) (-4097 . 59582)
+ (-4098 . 59489) (-4099 . 59437) (-4100 . 59291) (-4101 . 59142)
+ (-4102 . 59062) (-4103 . 59007) (-4104 . 58908) (-4105 . 58831)
+ (-4106 . 58594) (-4107 . 58457) (-4108 . 58282) (-4109 . 58250)
+ (-4110 . 58135) (-4111 . 57939) (-4112 . 57887) (-4113 . 57759)
+ (-4114 . 57469) (-4115 . 57374) (-4116 . 57319) (-4117 . 57164)
+ (-4118 . 57027) (-4119 . 56874) (-4120 . 56842) (-4121 . 56526)
+ (-4122 . 56474) (-4123 . 56422) (-4124 . 56369) (-4125 . 56299)
+ (-4126 . 56244) (-4127 . 56089) (-4128 . 56021) (-4129 . 55868)
+ (-4130 . 55836) (-4131 . 55717) (-4132 . 54536) (-4133 . 54484)
+ (-4134 . 54432) (-4135 . 54153) (-4136 . 54100) (-4137 . 54005)
+ (-4138 . 53950) (-4139 . 53846) (-4140 . 53578) (-4141 . 53462)
+ (-4142 . 53288) (-4143 . 53256) (-4144 . 52889) (-4145 . 52861)
+ (-4146 . 52809) (* . 48263) (-4148 . 48144) (-4149 . 48074)
+ (-4150 . 47920) (-4151 . 47325) (-4152 . 47209) (-4153 . 47017)
+ (-4154 . 46985) (-4155 . 46705) (-4156 . 46653) (-4157 . 46555)
+ (-4158 . 46463) (-4159 . 46368) (-4160 . 46075) (-4161 . 45969)
+ (-4162 . 45853) (-4163 . 45554) (-4164 . 45522) (-4165 . 45243)
+ (-4166 . 45104) (-4167 . 44809) (-4168 . 44739) (-4169 . 44480)
+ (-4170 . 44402) (-4171 . 44349) (-4172 . 44154) (-4173 . 44122)
+ (-4174 . 44029) (-4175 . 43818) (-4176 . 43624) (-4177 . 43529)
+ (-4178 . 43501) (-4179 . 43405) (-4180 . 43278) (-4181 . 43193)
+ (-4182 . 43078) (-4183 . 43046) (-4184 . 42787) (-4185 . 42301)
+ (-4186 . 42208) (-4187 . 42106) (-4188 . 41902) (-4189 . 41714)
+ (-4190 . 41644) (-4191 . 41594) (-4192 . 41498) (-4193 . 41182)
+ (-4194 . 41056) (-4195 . 41027) (-4196 . 40934) (-4197 . 40832)
+ (-4198 . 40687) (-4199 . 40141) (-4200 . 40086) (-4201 . 39911)
+ (-4202 . 39815) (-4203 . 37653) (-4204 . 37598) (-4205 . 37519)
+ (-4206 . 37406) (-4207 . 37335) (-4208 . 36419) (-4209 . 36274)
+ (-4210 . 35795) (-4211 . 35675) (-4212 . 35429) (-4213 . 35330)
+ (-4214 . 34678) (-4215 . 34546) (-4216 . 34433) (-4217 . 34341)
+ (-4218 . 34262) (-4219 . 33972) (-4220 . 33917) (-4221 . 33745)
+ (-4222 . 33639) (-4223 . 33363) (-4224 . 33048) (-4225 . 32736)
+ (-4226 . 32623) (-4227 . 32461) (-4228 . 32330) (-4229 . 31869)
+ (-4230 . 31799) (-4231 . 31608) (-4232 . 31484) (-4233 . 31197)
+ (-4234 . 31011) (-4235 . 30898) (-4236 . 30538) (-4237 . 30409)
+ (-4238 . 29982) (-4239 . 29948) (-4240 . 29914) (-4241 . 29621)
+ (-4242 . 29497) (-4243 . 29378) (-4244 . 28833) (-4245 . 28665)
+ (-4246 . 28543) (-4247 . 28427) (-4248 . 28269) (-4249 . 27839)
+ (-4250 . 27760) (-4251 . 27723) (-4252 . 27689) (-4253 . 27286)
+ (-4254 . 26919) (-4255 . 26838) (-4256 . 26786) (-4257 . 26566)
+ (-4258 . 26165) (-4259 . 26028) (-4260 . 25837) (-4261 . 25727)
+ (-4262 . 25606) (-4263 . 25527) (-4264 . 25490) (-4265 . 25272)
+ (-4266 . 24384) (-4267 . 24261) (-4268 . 24043) (-4269 . 23991)
+ (-4270 . 23814) (-4271 . 23680) (-4272 . 23651) (-4273 . 23536)
+ (-4274 . 23407) (-4275 . 23370) (-4276 . 23220) (-4277 . 22878)
+ (-4278 . 22776) (-4279 . 22699) (-4280 . 22647) (-4281 . 22477)
+ (-4282 . 22343) (-4283 . 22276) (-4284 . 22150) (-4285 . 22047)
+ (-4286 . 21918) (-4287 . 21881) (-4288 . 21751) (-4289 . 21582)
+ (-4290 . 21218) (-4291 . 21165) (-4292 . 21066) (-4293 . 20634)
+ (-4294 . 20334) (-4295 . 20257) (-4296 . 20089) (-4297 . 20055)
+ (-4298 . 19925) (-4299 . 19696) (-4300 . 19158) (-4301 . 19057)
+ (-4302 . 18944) (-4303 . 18737) (-4304 . 18638) (-4305 . 18338)
+ (-4306 . 18266) (-4307 . 18137) (-4308 . 18103) (-4309 . 18000)
+ (-4310 . 17746) (-4311 . 17668) (-4312 . 17555) (-4313 . 17482)
+ (-4314 . 17364) (-4315 . 17011) (-4316 . 16919) (-4317 . 16839)
+ (-4318 . 16710) (-4319 . 16655) (-4320 . 16474) (-4321 . 16121)
+ (-4322 . 16043) (-4323 . 15985) (-4324 . 15907) (-4325 . 15789)
+ (-4326 . 15559) (-4327 . 15486) (-4328 . 15430) (-4329 . 14992)
+ (-4330 . 14803) (-4331 . 14643) (-4332 . 13615) (-4333 . 13519)
+ (-4334 . 12908) (-4335 . 12850) (-4336 . 12769) (-4337 . 12709)
+ (-4338 . 12479) (-4339 . 12406) (-4340 . 12040) (-4341 . 11778)
+ (-4342 . 11530) (-4343 . 11427) (-4344 . 11109) (-4345 . 10924)
+ (-4346 . 10874) (-4347 . 10647) (-4348 . 10350) (-4349 . 10237)
+ (-4350 . 10164) (-4351 . 10057) (-4352 . 9809) (-4353 . 9628)
+ (-4354 . 9416) (-4355 . 9317) (-4356 . 9085) (-4357 . 9022)
+ (-4358 . 8923) (-4359 . 8810) (-4360 . 8738) (-4361 . 8486)
+ (-4362 . 8326) (-4363 . 7752) (-4364 . 7674) (-4365 . 7071)
+ (-4366 . 6906) (-4367 . 6590) (-4368 . 6516) (-4369 . 5995)
+ (-4370 . 5923) (-4371 . 5536) (-4372 . 4298) (-4373 . 4246)
+ (-4374 . 4083) (-4375 . 3564) (-4376 . 3468) (-4377 . 3408)
+ (-4378 . 3174) (-4379 . 3016) (-4380 . 2943) (-4381 . 2597)
+ (-4382 . 2493) (-4383 . 2268) (-4384 . 2213) (-4385 . 2071)
+ (-4386 . 293) (-4387 . 197) (-4388 . 30)) \ No newline at end of file